{"id":"76cbba6822de023abaa80dde8b4be240","_format":"hh-sol-build-info-1","solcVersion":"0.8.28","solcLongVersion":"0.8.28+commit.7893614a","input":{"language":"Solidity","sources":{"@account-abstraction/contracts/core/BaseAccount.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable no-empty-blocks */\n\nimport \"../interfaces/IAccount.sol\";\nimport \"../interfaces/IEntryPoint.sol\";\nimport \"./UserOperationLib.sol\";\n\n/**\n * Basic account implementation.\n * This contract provides the basic logic for implementing the IAccount interface - validateUserOp\n * Specific account implementation should inherit it and provide the account-specific logic.\n */\nabstract contract BaseAccount is IAccount {\n    using UserOperationLib for PackedUserOperation;\n\n    /**\n     * Return the account nonce.\n     * This method returns the next sequential nonce.\n     * For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\n     */\n    function getNonce() public view virtual returns (uint256) {\n        return entryPoint().getNonce(address(this), 0);\n    }\n\n    /**\n     * Return the entryPoint used by this account.\n     * Subclass should return the current entryPoint used by this account.\n     */\n    function entryPoint() public view virtual returns (IEntryPoint);\n\n    /// @inheritdoc IAccount\n    function validateUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash,\n        uint256 missingAccountFunds\n    ) external virtual override returns (uint256 validationData) {\n        _requireFromEntryPoint();\n        validationData = _validateSignature(userOp, userOpHash);\n        _validateNonce(userOp.nonce);\n        _payPrefund(missingAccountFunds);\n    }\n\n    /**\n     * Ensure the request comes from the known entrypoint.\n     */\n    function _requireFromEntryPoint() internal view virtual {\n        require(\n            msg.sender == address(entryPoint()),\n            \"account: not from EntryPoint\"\n        );\n    }\n\n    /**\n     * Validate the signature is valid for this message.\n     * @param userOp          - Validate the userOp.signature field.\n     * @param userOpHash      - Convenient field: the hash of the request, to check the signature against.\n     *                          (also hashes the entrypoint and chain id)\n     * @return validationData - Signature and time-range of this operation.\n     *                          <20-byte> aggregatorOrSigFail - 0 for valid signature, 1 to mark signature failure,\n     *                                    otherwise, an address of an aggregator contract.\n     *                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n     *                          <6-byte> validAfter - first timestamp this operation is valid\n     *                          If the account doesn't use time-range, it is enough to return\n     *                          SIG_VALIDATION_FAILED value (1) for signature failure.\n     *                          Note that the validation code cannot use block.timestamp (or block.number) directly.\n     */\n    function _validateSignature(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash\n    ) internal virtual returns (uint256 validationData);\n\n    /**\n     * Validate the nonce of the UserOperation.\n     * This method may validate the nonce requirement of this account.\n     * e.g.\n     * To limit the nonce to use sequenced UserOps only (no \"out of order\" UserOps):\n     *      `require(nonce < type(uint64).max)`\n     * For a hypothetical account that *requires* the nonce to be out-of-order:\n     *      `require(nonce & type(uint64).max == 0)`\n     *\n     * The actual nonce uniqueness is managed by the EntryPoint, and thus no other\n     * action is needed by the account itself.\n     *\n     * @param nonce to validate\n     *\n     * solhint-disable-next-line no-empty-blocks\n     */\n    function _validateNonce(uint256 nonce) internal view virtual {\n    }\n\n    /**\n     * Sends to the entrypoint (msg.sender) the missing funds for this transaction.\n     * SubClass MAY override this method for better funds management\n     * (e.g. send to the entryPoint more than the minimum required, so that in future transactions\n     * it will not be required to send again).\n     * @param missingAccountFunds - The minimum value this method should send the entrypoint.\n     *                              This value MAY be zero, in case there is enough deposit,\n     *                              or the userOp has a paymaster.\n     */\n    function _payPrefund(uint256 missingAccountFunds) internal virtual {\n        if (missingAccountFunds != 0) {\n            (bool success, ) = payable(msg.sender).call{\n                value: missingAccountFunds,\n                gas: type(uint256).max\n            }(\"\");\n            (success);\n            //ignore failure (its EntryPoint's job to verify, not account.)\n        }\n    }\n}\n"},"@account-abstraction/contracts/core/EntryPoint.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable no-inline-assembly */\n\nimport \"../interfaces/IAccount.sol\";\nimport \"../interfaces/IAccountExecute.sol\";\nimport \"../interfaces/IPaymaster.sol\";\nimport \"../interfaces/IEntryPoint.sol\";\n\nimport \"../utils/Exec.sol\";\nimport \"./StakeManager.sol\";\nimport \"./SenderCreator.sol\";\nimport \"./Helpers.sol\";\nimport \"./NonceManager.sol\";\nimport \"./UserOperationLib.sol\";\n\nimport \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport \"@openzeppelin/contracts/utils/ReentrancyGuard.sol\";\n\n/*\n * Account-Abstraction (EIP-4337) singleton EntryPoint implementation.\n * Only one instance required on each chain.\n */\n\n/// @custom:security-contact https://bounty.ethereum.org\ncontract EntryPoint is IEntryPoint, StakeManager, NonceManager, ReentrancyGuard, ERC165 {\n\n    using UserOperationLib for PackedUserOperation;\n\n    SenderCreator private immutable _senderCreator = new SenderCreator();\n\n    function senderCreator() internal view virtual returns (SenderCreator) {\n        return _senderCreator;\n    }\n\n    //compensate for innerHandleOps' emit message and deposit refund.\n    // allow some slack for future gas price changes.\n    uint256 private constant INNER_GAS_OVERHEAD = 10000;\n\n    // Marker for inner call revert on out of gas\n    bytes32 private constant INNER_OUT_OF_GAS = hex\"deaddead\";\n    bytes32 private constant INNER_REVERT_LOW_PREFUND = hex\"deadaa51\";\n\n    uint256 private constant REVERT_REASON_MAX_LEN = 2048;\n    uint256 private constant PENALTY_PERCENT = 10;\n\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        // note: solidity \"type(IEntryPoint).interfaceId\" is without inherited methods but we want to check everything\n        return interfaceId == (type(IEntryPoint).interfaceId ^ type(IStakeManager).interfaceId ^ type(INonceManager).interfaceId) ||\n            interfaceId == type(IEntryPoint).interfaceId ||\n            interfaceId == type(IStakeManager).interfaceId ||\n            interfaceId == type(INonceManager).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * Compensate the caller's beneficiary address with the collected fees of all UserOperations.\n     * @param beneficiary - The address to receive the fees.\n     * @param amount      - Amount to transfer.\n     */\n    function _compensate(address payable beneficiary, uint256 amount) internal {\n        require(beneficiary != address(0), \"AA90 invalid beneficiary\");\n        (bool success, ) = beneficiary.call{value: amount}(\"\");\n        require(success, \"AA91 failed send to beneficiary\");\n    }\n\n    /**\n     * Execute a user operation.\n     * @param opIndex    - Index into the opInfo array.\n     * @param userOp     - The userOp to execute.\n     * @param opInfo     - The opInfo filled by validatePrepayment for this userOp.\n     * @return collected - The total amount this userOp paid.\n     */\n    function _executeUserOp(\n        uint256 opIndex,\n        PackedUserOperation calldata userOp,\n        UserOpInfo memory opInfo\n    )\n    internal\n    returns\n    (uint256 collected) {\n        uint256 preGas = gasleft();\n        bytes memory context = getMemoryBytesFromOffset(opInfo.contextOffset);\n        bool success;\n        {\n            uint256 saveFreePtr;\n            assembly (\"memory-safe\") {\n                saveFreePtr := mload(0x40)\n            }\n            bytes calldata callData = userOp.callData;\n            bytes memory innerCall;\n            bytes4 methodSig;\n            assembly {\n                let len := callData.length\n                if gt(len, 3) {\n                    methodSig := calldataload(callData.offset)\n                }\n            }\n            if (methodSig == IAccountExecute.executeUserOp.selector) {\n                bytes memory executeUserOp = abi.encodeCall(IAccountExecute.executeUserOp, (userOp, opInfo.userOpHash));\n                innerCall = abi.encodeCall(this.innerHandleOp, (executeUserOp, opInfo, context));\n            } else\n            {\n                innerCall = abi.encodeCall(this.innerHandleOp, (callData, opInfo, context));\n            }\n            assembly (\"memory-safe\") {\n                success := call(gas(), address(), 0, add(innerCall, 0x20), mload(innerCall), 0, 32)\n                collected := mload(0)\n                mstore(0x40, saveFreePtr)\n            }\n        }\n        if (!success) {\n            bytes32 innerRevertCode;\n            assembly (\"memory-safe\") {\n                let len := returndatasize()\n                if eq(32,len) {\n                    returndatacopy(0, 0, 32)\n                    innerRevertCode := mload(0)\n                }\n            }\n            if (innerRevertCode == INNER_OUT_OF_GAS) {\n                // handleOps was called with gas limit too low. abort entire bundle.\n                //can only be caused by bundler (leaving not enough gas for inner call)\n                revert FailedOp(opIndex, \"AA95 out of gas\");\n            } else if (innerRevertCode == INNER_REVERT_LOW_PREFUND) {\n                // innerCall reverted on prefund too low. treat entire prefund as \"gas cost\"\n                uint256 actualGas = preGas - gasleft() + opInfo.preOpGas;\n                uint256 actualGasCost = opInfo.prefund;\n                emitPrefundTooLow(opInfo);\n                emitUserOperationEvent(opInfo, false, actualGasCost, actualGas);\n                collected = actualGasCost;\n            } else {\n                emit PostOpRevertReason(\n                    opInfo.userOpHash,\n                    opInfo.mUserOp.sender,\n                    opInfo.mUserOp.nonce,\n                    Exec.getReturnData(REVERT_REASON_MAX_LEN)\n                );\n\n                uint256 actualGas = preGas - gasleft() + opInfo.preOpGas;\n                collected = _postExecution(\n                    IPaymaster.PostOpMode.postOpReverted,\n                    opInfo,\n                    context,\n                    actualGas\n                );\n            }\n        }\n    }\n\n    function emitUserOperationEvent(UserOpInfo memory opInfo, bool success, uint256 actualGasCost, uint256 actualGas) internal virtual {\n        emit UserOperationEvent(\n            opInfo.userOpHash,\n            opInfo.mUserOp.sender,\n            opInfo.mUserOp.paymaster,\n            opInfo.mUserOp.nonce,\n            success,\n            actualGasCost,\n            actualGas\n        );\n    }\n\n    function emitPrefundTooLow(UserOpInfo memory opInfo) internal virtual {\n        emit UserOperationPrefundTooLow(\n            opInfo.userOpHash,\n            opInfo.mUserOp.sender,\n            opInfo.mUserOp.nonce\n        );\n    }\n\n    /// @inheritdoc IEntryPoint\n    function handleOps(\n        PackedUserOperation[] calldata ops,\n        address payable beneficiary\n    ) public nonReentrant {\n        uint256 opslen = ops.length;\n        UserOpInfo[] memory opInfos = new UserOpInfo[](opslen);\n\n        unchecked {\n            for (uint256 i = 0; i < opslen; i++) {\n                UserOpInfo memory opInfo = opInfos[i];\n                (\n                    uint256 validationData,\n                    uint256 pmValidationData\n                ) = _validatePrepayment(i, ops[i], opInfo);\n                _validateAccountAndPaymasterValidationData(\n                    i,\n                    validationData,\n                    pmValidationData,\n                    address(0)\n                );\n            }\n\n            uint256 collected = 0;\n            emit BeforeExecution();\n\n            for (uint256 i = 0; i < opslen; i++) {\n                collected += _executeUserOp(i, ops[i], opInfos[i]);\n            }\n\n            _compensate(beneficiary, collected);\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function handleAggregatedOps(\n        UserOpsPerAggregator[] calldata opsPerAggregator,\n        address payable beneficiary\n    ) public nonReentrant {\n\n        uint256 opasLen = opsPerAggregator.length;\n        uint256 totalOps = 0;\n        for (uint256 i = 0; i < opasLen; i++) {\n            UserOpsPerAggregator calldata opa = opsPerAggregator[i];\n            PackedUserOperation[] calldata ops = opa.userOps;\n            IAggregator aggregator = opa.aggregator;\n\n            //address(1) is special marker of \"signature error\"\n            require(\n                address(aggregator) != address(1),\n                \"AA96 invalid aggregator\"\n            );\n\n            if (address(aggregator) != address(0)) {\n                // solhint-disable-next-line no-empty-blocks\n                try aggregator.validateSignatures(ops, opa.signature) {} catch {\n                    revert SignatureValidationFailed(address(aggregator));\n                }\n            }\n\n            totalOps += ops.length;\n        }\n\n        UserOpInfo[] memory opInfos = new UserOpInfo[](totalOps);\n\n        uint256 opIndex = 0;\n        for (uint256 a = 0; a < opasLen; a++) {\n            UserOpsPerAggregator calldata opa = opsPerAggregator[a];\n            PackedUserOperation[] calldata ops = opa.userOps;\n            IAggregator aggregator = opa.aggregator;\n\n            uint256 opslen = ops.length;\n            for (uint256 i = 0; i < opslen; i++) {\n                UserOpInfo memory opInfo = opInfos[opIndex];\n                (\n                    uint256 validationData,\n                    uint256 paymasterValidationData\n                ) = _validatePrepayment(opIndex, ops[i], opInfo);\n                _validateAccountAndPaymasterValidationData(\n                    i,\n                    validationData,\n                    paymasterValidationData,\n                    address(aggregator)\n                );\n                opIndex++;\n            }\n        }\n\n        emit BeforeExecution();\n\n        uint256 collected = 0;\n        opIndex = 0;\n        for (uint256 a = 0; a < opasLen; a++) {\n            UserOpsPerAggregator calldata opa = opsPerAggregator[a];\n            emit SignatureAggregatorChanged(address(opa.aggregator));\n            PackedUserOperation[] calldata ops = opa.userOps;\n            uint256 opslen = ops.length;\n\n            for (uint256 i = 0; i < opslen; i++) {\n                collected += _executeUserOp(opIndex, ops[i], opInfos[opIndex]);\n                opIndex++;\n            }\n        }\n        emit SignatureAggregatorChanged(address(0));\n\n        _compensate(beneficiary, collected);\n    }\n\n    /**\n     * A memory copy of UserOp static fields only.\n     * Excluding: callData, initCode and signature. Replacing paymasterAndData with paymaster.\n     */\n    struct MemoryUserOp {\n        address sender;\n        uint256 nonce;\n        uint256 verificationGasLimit;\n        uint256 callGasLimit;\n        uint256 paymasterVerificationGasLimit;\n        uint256 paymasterPostOpGasLimit;\n        uint256 preVerificationGas;\n        address paymaster;\n        uint256 maxFeePerGas;\n        uint256 maxPriorityFeePerGas;\n    }\n\n    struct UserOpInfo {\n        MemoryUserOp mUserOp;\n        bytes32 userOpHash;\n        uint256 prefund;\n        uint256 contextOffset;\n        uint256 preOpGas;\n    }\n\n    /**\n     * Inner function to handle a UserOperation.\n     * Must be declared \"external\" to open a call context, but it can only be called by handleOps.\n     * @param callData - The callData to execute.\n     * @param opInfo   - The UserOpInfo struct.\n     * @param context  - The context bytes.\n     * @return actualGasCost - the actual cost in eth this UserOperation paid for gas\n     */\n    function innerHandleOp(\n        bytes memory callData,\n        UserOpInfo memory opInfo,\n        bytes calldata context\n    ) external returns (uint256 actualGasCost) {\n        uint256 preGas = gasleft();\n        require(msg.sender == address(this), \"AA92 internal call only\");\n        MemoryUserOp memory mUserOp = opInfo.mUserOp;\n\n        uint256 callGasLimit = mUserOp.callGasLimit;\n        unchecked {\n            // handleOps was called with gas limit too low. abort entire bundle.\n            if (\n                gasleft() * 63 / 64 <\n                callGasLimit +\n                mUserOp.paymasterPostOpGasLimit +\n                INNER_GAS_OVERHEAD\n            ) {\n                assembly (\"memory-safe\") {\n                    mstore(0, INNER_OUT_OF_GAS)\n                    revert(0, 32)\n                }\n            }\n        }\n\n        IPaymaster.PostOpMode mode = IPaymaster.PostOpMode.opSucceeded;\n        if (callData.length > 0) {\n            bool success = Exec.call(mUserOp.sender, 0, callData, callGasLimit);\n            if (!success) {\n                bytes memory result = Exec.getReturnData(REVERT_REASON_MAX_LEN);\n                if (result.length > 0) {\n                    emit UserOperationRevertReason(\n                        opInfo.userOpHash,\n                        mUserOp.sender,\n                        mUserOp.nonce,\n                        result\n                    );\n                }\n                mode = IPaymaster.PostOpMode.opReverted;\n            }\n        }\n\n        unchecked {\n            uint256 actualGas = preGas - gasleft() + opInfo.preOpGas;\n            return _postExecution(mode, opInfo, context, actualGas);\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function getUserOpHash(\n        PackedUserOperation calldata userOp\n    ) public view returns (bytes32) {\n        return\n            keccak256(abi.encode(userOp.hash(), address(this), block.chainid));\n    }\n\n    /**\n     * Copy general fields from userOp into the memory opInfo structure.\n     * @param userOp  - The user operation.\n     * @param mUserOp - The memory user operation.\n     */\n    function _copyUserOpToMemory(\n        PackedUserOperation calldata userOp,\n        MemoryUserOp memory mUserOp\n    ) internal pure {\n        mUserOp.sender = userOp.sender;\n        mUserOp.nonce = userOp.nonce;\n        (mUserOp.verificationGasLimit, mUserOp.callGasLimit) = UserOperationLib.unpackUints(userOp.accountGasLimits);\n        mUserOp.preVerificationGas = userOp.preVerificationGas;\n        (mUserOp.maxPriorityFeePerGas, mUserOp.maxFeePerGas) = UserOperationLib.unpackUints(userOp.gasFees);\n        bytes calldata paymasterAndData = userOp.paymasterAndData;\n        if (paymasterAndData.length > 0) {\n            require(\n                paymasterAndData.length >= UserOperationLib.PAYMASTER_DATA_OFFSET,\n                \"AA93 invalid paymasterAndData\"\n            );\n            (mUserOp.paymaster, mUserOp.paymasterVerificationGasLimit, mUserOp.paymasterPostOpGasLimit) = UserOperationLib.unpackPaymasterStaticFields(paymasterAndData);\n        } else {\n            mUserOp.paymaster = address(0);\n            mUserOp.paymasterVerificationGasLimit = 0;\n            mUserOp.paymasterPostOpGasLimit = 0;\n        }\n    }\n\n    /**\n     * Get the required prefunded gas fee amount for an operation.\n     * @param mUserOp - The user operation in memory.\n     */\n    function _getRequiredPrefund(\n        MemoryUserOp memory mUserOp\n    ) internal pure returns (uint256 requiredPrefund) {\n        unchecked {\n            uint256 requiredGas = mUserOp.verificationGasLimit +\n                mUserOp.callGasLimit +\n                mUserOp.paymasterVerificationGasLimit +\n                mUserOp.paymasterPostOpGasLimit +\n                mUserOp.preVerificationGas;\n\n            requiredPrefund = requiredGas * mUserOp.maxFeePerGas;\n        }\n    }\n\n    /**\n     * Create sender smart contract account if init code is provided.\n     * @param opIndex  - The operation index.\n     * @param opInfo   - The operation info.\n     * @param initCode - The init code for the smart contract account.\n     */\n    function _createSenderIfNeeded(\n        uint256 opIndex,\n        UserOpInfo memory opInfo,\n        bytes calldata initCode\n    ) internal {\n        if (initCode.length != 0) {\n            address sender = opInfo.mUserOp.sender;\n            if (sender.code.length != 0)\n                revert FailedOp(opIndex, \"AA10 sender already constructed\");\n            address sender1 = senderCreator().createSender{\n                gas: opInfo.mUserOp.verificationGasLimit\n            }(initCode);\n            if (sender1 == address(0))\n                revert FailedOp(opIndex, \"AA13 initCode failed or OOG\");\n            if (sender1 != sender)\n                revert FailedOp(opIndex, \"AA14 initCode must return sender\");\n            if (sender1.code.length == 0)\n                revert FailedOp(opIndex, \"AA15 initCode must create sender\");\n            address factory = address(bytes20(initCode[0:20]));\n            emit AccountDeployed(\n                opInfo.userOpHash,\n                sender,\n                factory,\n                opInfo.mUserOp.paymaster\n            );\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function getSenderAddress(bytes calldata initCode) public {\n        address sender = senderCreator().createSender(initCode);\n        revert SenderAddressResult(sender);\n    }\n\n    /**\n     * Call account.validateUserOp.\n     * Revert (with FailedOp) in case validateUserOp reverts, or account didn't send required prefund.\n     * Decrement account's deposit if needed.\n     * @param opIndex         - The operation index.\n     * @param op              - The user operation.\n     * @param opInfo          - The operation info.\n     * @param requiredPrefund - The required prefund amount.\n     */\n    function _validateAccountPrepayment(\n        uint256 opIndex,\n        PackedUserOperation calldata op,\n        UserOpInfo memory opInfo,\n        uint256 requiredPrefund,\n        uint256 verificationGasLimit\n    )\n        internal\n        returns (\n            uint256 validationData\n        )\n    {\n        unchecked {\n            MemoryUserOp memory mUserOp = opInfo.mUserOp;\n            address sender = mUserOp.sender;\n            _createSenderIfNeeded(opIndex, opInfo, op.initCode);\n            address paymaster = mUserOp.paymaster;\n            uint256 missingAccountFunds = 0;\n            if (paymaster == address(0)) {\n                uint256 bal = balanceOf(sender);\n                missingAccountFunds = bal > requiredPrefund\n                    ? 0\n                    : requiredPrefund - bal;\n            }\n            try\n                IAccount(sender).validateUserOp{\n                    gas: verificationGasLimit\n                }(op, opInfo.userOpHash, missingAccountFunds)\n            returns (uint256 _validationData) {\n                validationData = _validationData;\n            } catch {\n                revert FailedOpWithRevert(opIndex, \"AA23 reverted\", Exec.getReturnData(REVERT_REASON_MAX_LEN));\n            }\n            if (paymaster == address(0)) {\n                DepositInfo storage senderInfo = deposits[sender];\n                uint256 deposit = senderInfo.deposit;\n                if (requiredPrefund > deposit) {\n                    revert FailedOp(opIndex, \"AA21 didn't pay prefund\");\n                }\n                senderInfo.deposit = deposit - requiredPrefund;\n            }\n        }\n    }\n\n    /**\n     * In case the request has a paymaster:\n     *  - Validate paymaster has enough deposit.\n     *  - Call paymaster.validatePaymasterUserOp.\n     *  - Revert with proper FailedOp in case paymaster reverts.\n     *  - Decrement paymaster's deposit.\n     * @param opIndex                            - The operation index.\n     * @param op                                 - The user operation.\n     * @param opInfo                             - The operation info.\n     * @param requiredPreFund                    - The required prefund amount.\n     */\n    function _validatePaymasterPrepayment(\n        uint256 opIndex,\n        PackedUserOperation calldata op,\n        UserOpInfo memory opInfo,\n        uint256 requiredPreFund\n    ) internal returns (bytes memory context, uint256 validationData) {\n        unchecked {\n            uint256 preGas = gasleft();\n            MemoryUserOp memory mUserOp = opInfo.mUserOp;\n            address paymaster = mUserOp.paymaster;\n            DepositInfo storage paymasterInfo = deposits[paymaster];\n            uint256 deposit = paymasterInfo.deposit;\n            if (deposit < requiredPreFund) {\n                revert FailedOp(opIndex, \"AA31 paymaster deposit too low\");\n            }\n            paymasterInfo.deposit = deposit - requiredPreFund;\n            uint256 pmVerificationGasLimit = mUserOp.paymasterVerificationGasLimit;\n            try\n                IPaymaster(paymaster).validatePaymasterUserOp{gas: pmVerificationGasLimit}(\n                    op,\n                    opInfo.userOpHash,\n                    requiredPreFund\n                )\n            returns (bytes memory _context, uint256 _validationData) {\n                context = _context;\n                validationData = _validationData;\n            } catch {\n                revert FailedOpWithRevert(opIndex, \"AA33 reverted\", Exec.getReturnData(REVERT_REASON_MAX_LEN));\n            }\n            if (preGas - gasleft() > pmVerificationGasLimit) {\n                revert FailedOp(opIndex, \"AA36 over paymasterVerificationGasLimit\");\n            }\n        }\n    }\n\n    /**\n     * Revert if either account validationData or paymaster validationData is expired.\n     * @param opIndex                 - The operation index.\n     * @param validationData          - The account validationData.\n     * @param paymasterValidationData - The paymaster validationData.\n     * @param expectedAggregator      - The expected aggregator.\n     */\n    function _validateAccountAndPaymasterValidationData(\n        uint256 opIndex,\n        uint256 validationData,\n        uint256 paymasterValidationData,\n        address expectedAggregator\n    ) internal view {\n        (address aggregator, bool outOfTimeRange) = _getValidationData(\n            validationData\n        );\n        if (expectedAggregator != aggregator) {\n            revert FailedOp(opIndex, \"AA24 signature error\");\n        }\n        if (outOfTimeRange) {\n            revert FailedOp(opIndex, \"AA22 expired or not due\");\n        }\n        // pmAggregator is not a real signature aggregator: we don't have logic to handle it as address.\n        // Non-zero address means that the paymaster fails due to some signature check (which is ok only during estimation).\n        address pmAggregator;\n        (pmAggregator, outOfTimeRange) = _getValidationData(\n            paymasterValidationData\n        );\n        if (pmAggregator != address(0)) {\n            revert FailedOp(opIndex, \"AA34 signature error\");\n        }\n        if (outOfTimeRange) {\n            revert FailedOp(opIndex, \"AA32 paymaster expired or not due\");\n        }\n    }\n\n    /**\n     * Parse validationData into its components.\n     * @param validationData - The packed validation data (sigFailed, validAfter, validUntil).\n     * @return aggregator the aggregator of the validationData\n     * @return outOfTimeRange true if current time is outside the time range of this validationData.\n     */\n    function _getValidationData(\n        uint256 validationData\n    ) internal view returns (address aggregator, bool outOfTimeRange) {\n        if (validationData == 0) {\n            return (address(0), false);\n        }\n        ValidationData memory data = _parseValidationData(validationData);\n        // solhint-disable-next-line not-rely-on-time\n        outOfTimeRange = block.timestamp > data.validUntil || block.timestamp < data.validAfter;\n        aggregator = data.aggregator;\n    }\n\n    /**\n     * Validate account and paymaster (if defined) and\n     * also make sure total validation doesn't exceed verificationGasLimit.\n     * This method is called off-chain (simulateValidation()) and on-chain (from handleOps)\n     * @param opIndex - The index of this userOp into the \"opInfos\" array.\n     * @param userOp  - The userOp to validate.\n     */\n    function _validatePrepayment(\n        uint256 opIndex,\n        PackedUserOperation calldata userOp,\n        UserOpInfo memory outOpInfo\n    )\n        internal\n        returns (uint256 validationData, uint256 paymasterValidationData)\n    {\n        uint256 preGas = gasleft();\n        MemoryUserOp memory mUserOp = outOpInfo.mUserOp;\n        _copyUserOpToMemory(userOp, mUserOp);\n        outOpInfo.userOpHash = getUserOpHash(userOp);\n\n        // Validate all numeric values in userOp are well below 128 bit, so they can safely be added\n        // and multiplied without causing overflow.\n        uint256 verificationGasLimit = mUserOp.verificationGasLimit;\n        uint256 maxGasValues = mUserOp.preVerificationGas |\n            verificationGasLimit |\n            mUserOp.callGasLimit |\n            mUserOp.paymasterVerificationGasLimit |\n            mUserOp.paymasterPostOpGasLimit |\n            mUserOp.maxFeePerGas |\n            mUserOp.maxPriorityFeePerGas;\n        require(maxGasValues <= type(uint120).max, \"AA94 gas values overflow\");\n\n        uint256 requiredPreFund = _getRequiredPrefund(mUserOp);\n        validationData = _validateAccountPrepayment(\n            opIndex,\n            userOp,\n            outOpInfo,\n            requiredPreFund,\n            verificationGasLimit\n        );\n\n        if (!_validateAndUpdateNonce(mUserOp.sender, mUserOp.nonce)) {\n            revert FailedOp(opIndex, \"AA25 invalid account nonce\");\n        }\n\n        unchecked {\n            if (preGas - gasleft() > verificationGasLimit) {\n                revert FailedOp(opIndex, \"AA26 over verificationGasLimit\");\n            }\n        }\n\n        bytes memory context;\n        if (mUserOp.paymaster != address(0)) {\n            (context, paymasterValidationData) = _validatePaymasterPrepayment(\n                opIndex,\n                userOp,\n                outOpInfo,\n                requiredPreFund\n            );\n        }\n        unchecked {\n            outOpInfo.prefund = requiredPreFund;\n            outOpInfo.contextOffset = getOffsetOfMemoryBytes(context);\n            outOpInfo.preOpGas = preGas - gasleft() + userOp.preVerificationGas;\n        }\n    }\n\n    /**\n     * Process post-operation, called just after the callData is executed.\n     * If a paymaster is defined and its validation returned a non-empty context, its postOp is called.\n     * The excess amount is refunded to the account (or paymaster - if it was used in the request).\n     * @param mode      - Whether is called from innerHandleOp, or outside (postOpReverted).\n     * @param opInfo    - UserOp fields and info collected during validation.\n     * @param context   - The context returned in validatePaymasterUserOp.\n     * @param actualGas - The gas used so far by this user operation.\n     */\n    function _postExecution(\n        IPaymaster.PostOpMode mode,\n        UserOpInfo memory opInfo,\n        bytes memory context,\n        uint256 actualGas\n    ) private returns (uint256 actualGasCost) {\n        uint256 preGas = gasleft();\n        unchecked {\n            address refundAddress;\n            MemoryUserOp memory mUserOp = opInfo.mUserOp;\n            uint256 gasPrice = getUserOpGasPrice(mUserOp);\n\n            address paymaster = mUserOp.paymaster;\n            if (paymaster == address(0)) {\n                refundAddress = mUserOp.sender;\n            } else {\n                refundAddress = paymaster;\n                if (context.length > 0) {\n                    actualGasCost = actualGas * gasPrice;\n                    if (mode != IPaymaster.PostOpMode.postOpReverted) {\n                        try IPaymaster(paymaster).postOp{\n                            gas: mUserOp.paymasterPostOpGasLimit\n                        }(mode, context, actualGasCost, gasPrice)\n                        // solhint-disable-next-line no-empty-blocks\n                        {} catch {\n                            bytes memory reason = Exec.getReturnData(REVERT_REASON_MAX_LEN);\n                            revert PostOpReverted(reason);\n                        }\n                    }\n                }\n            }\n            actualGas += preGas - gasleft();\n\n            // Calculating a penalty for unused execution gas\n            {\n                uint256 executionGasLimit = mUserOp.callGasLimit + mUserOp.paymasterPostOpGasLimit;\n                uint256 executionGasUsed = actualGas - opInfo.preOpGas;\n                // this check is required for the gas used within EntryPoint and not covered by explicit gas limits\n                if (executionGasLimit > executionGasUsed) {\n                    uint256 unusedGas = executionGasLimit - executionGasUsed;\n                    uint256 unusedGasPenalty = (unusedGas * PENALTY_PERCENT) / 100;\n                    actualGas += unusedGasPenalty;\n                }\n            }\n\n            actualGasCost = actualGas * gasPrice;\n            uint256 prefund = opInfo.prefund;\n            if (prefund < actualGasCost) {\n                if (mode == IPaymaster.PostOpMode.postOpReverted) {\n                    actualGasCost = prefund;\n                    emitPrefundTooLow(opInfo);\n                    emitUserOperationEvent(opInfo, false, actualGasCost, actualGas);\n                } else {\n                    assembly (\"memory-safe\") {\n                        mstore(0, INNER_REVERT_LOW_PREFUND)\n                        revert(0, 32)\n                    }\n                }\n            } else {\n                uint256 refund = prefund - actualGasCost;\n                _incrementDeposit(refundAddress, refund);\n                bool success = mode == IPaymaster.PostOpMode.opSucceeded;\n                emitUserOperationEvent(opInfo, success, actualGasCost, actualGas);\n            }\n        } // unchecked\n    }\n\n    /**\n     * The gas price this UserOp agrees to pay.\n     * Relayer/block builder might submit the TX with higher priorityFee, but the user should not.\n     * @param mUserOp - The userOp to get the gas price from.\n     */\n    function getUserOpGasPrice(\n        MemoryUserOp memory mUserOp\n    ) internal view returns (uint256) {\n        unchecked {\n            uint256 maxFeePerGas = mUserOp.maxFeePerGas;\n            uint256 maxPriorityFeePerGas = mUserOp.maxPriorityFeePerGas;\n            if (maxFeePerGas == maxPriorityFeePerGas) {\n                //legacy mode (for networks that don't support basefee opcode)\n                return maxFeePerGas;\n            }\n            return min(maxFeePerGas, maxPriorityFeePerGas + block.basefee);\n        }\n    }\n\n    /**\n     * The offset of the given bytes in memory.\n     * @param data - The bytes to get the offset of.\n     */\n    function getOffsetOfMemoryBytes(\n        bytes memory data\n    ) internal pure returns (uint256 offset) {\n        assembly {\n            offset := data\n        }\n    }\n\n    /**\n     * The bytes in memory at the given offset.\n     * @param offset - The offset to get the bytes from.\n     */\n    function getMemoryBytesFromOffset(\n        uint256 offset\n    ) internal pure returns (bytes memory data) {\n        assembly (\"memory-safe\") {\n            data := offset\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function delegateAndRevert(address target, bytes calldata data) external {\n        (bool success, bytes memory ret) = target.delegatecall(data);\n        revert DelegateAndRevert(success, ret);\n    }\n}\n"},"@account-abstraction/contracts/core/Helpers.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/* solhint-disable no-inline-assembly */\n\n\n /*\n  * For simulation purposes, validateUserOp (and validatePaymasterUserOp)\n  * must return this value in case of signature failure, instead of revert.\n  */\nuint256 constant SIG_VALIDATION_FAILED = 1;\n\n\n/*\n * For simulation purposes, validateUserOp (and validatePaymasterUserOp)\n * return this value on success.\n */\nuint256 constant SIG_VALIDATION_SUCCESS = 0;\n\n\n/**\n * Returned data from validateUserOp.\n * validateUserOp returns a uint256, which is created by `_packedValidationData` and\n * parsed by `_parseValidationData`.\n * @param aggregator  - address(0) - The account validated the signature by itself.\n *                      address(1) - The account failed to validate the signature.\n *                      otherwise - This is an address of a signature aggregator that must\n *                                  be used to validate the signature.\n * @param validAfter  - This UserOp is valid only after this timestamp.\n * @param validaUntil - This UserOp is valid only up to this timestamp.\n */\nstruct ValidationData {\n    address aggregator;\n    uint48 validAfter;\n    uint48 validUntil;\n}\n\n/**\n * Extract sigFailed, validAfter, validUntil.\n * Also convert zero validUntil to type(uint48).max.\n * @param validationData - The packed validation data.\n */\nfunction _parseValidationData(\n    uint256 validationData\n) pure returns (ValidationData memory data) {\n    address aggregator = address(uint160(validationData));\n    uint48 validUntil = uint48(validationData >> 160);\n    if (validUntil == 0) {\n        validUntil = type(uint48).max;\n    }\n    uint48 validAfter = uint48(validationData >> (48 + 160));\n    return ValidationData(aggregator, validAfter, validUntil);\n}\n\n/**\n * Helper to pack the return value for validateUserOp.\n * @param data - The ValidationData to pack.\n */\nfunction _packValidationData(\n    ValidationData memory data\n) pure returns (uint256) {\n    return\n        uint160(data.aggregator) |\n        (uint256(data.validUntil) << 160) |\n        (uint256(data.validAfter) << (160 + 48));\n}\n\n/**\n * Helper to pack the return value for validateUserOp, when not using an aggregator.\n * @param sigFailed  - True for signature failure, false for success.\n * @param validUntil - Last timestamp this UserOperation is valid (or zero for infinite).\n * @param validAfter - First timestamp this UserOperation is valid.\n */\nfunction _packValidationData(\n    bool sigFailed,\n    uint48 validUntil,\n    uint48 validAfter\n) pure returns (uint256) {\n    return\n        (sigFailed ? 1 : 0) |\n        (uint256(validUntil) << 160) |\n        (uint256(validAfter) << (160 + 48));\n}\n\n/**\n * keccak function over calldata.\n * @dev copy calldata into memory, do keccak and drop allocated memory. Strangely, this is more efficient than letting solidity do it.\n */\n    function calldataKeccak(bytes calldata data) pure returns (bytes32 ret) {\n        assembly (\"memory-safe\") {\n            let mem := mload(0x40)\n            let len := data.length\n            calldatacopy(mem, data.offset, len)\n            ret := keccak256(mem, len)\n        }\n    }\n\n\n/**\n * The minimum of two numbers.\n * @param a - First number.\n * @param b - Second number.\n */\n    function min(uint256 a, uint256 b) pure returns (uint256) {\n        return a < b ? a : b;\n    }\n"},"@account-abstraction/contracts/core/NonceManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\nimport \"../interfaces/INonceManager.sol\";\n\n/**\n * nonce management functionality\n */\nabstract contract NonceManager is INonceManager {\n\n    /**\n     * The next valid sequence number for a given nonce key.\n     */\n    mapping(address => mapping(uint192 => uint256)) public nonceSequenceNumber;\n\n    /// @inheritdoc INonceManager\n    function getNonce(address sender, uint192 key)\n    public view override returns (uint256 nonce) {\n        return nonceSequenceNumber[sender][key] | (uint256(key) << 64);\n    }\n\n    // allow an account to manually increment its own nonce.\n    // (mainly so that during construction nonce can be made non-zero,\n    // to \"absorb\" the gas cost of first nonce increment to 1st transaction (construction),\n    // not to 2nd transaction)\n    function incrementNonce(uint192 key) public override {\n        nonceSequenceNumber[msg.sender][key]++;\n    }\n\n    /**\n     * validate nonce uniqueness for this account.\n     * called just after validateUserOp()\n     * @return true if the nonce was incremented successfully.\n     *         false if the current nonce doesn't match the given one.\n     */\n    function _validateAndUpdateNonce(address sender, uint256 nonce) internal returns (bool) {\n\n        uint192 key = uint192(nonce >> 64);\n        uint64 seq = uint64(nonce);\n        return nonceSequenceNumber[sender][key]++ == seq;\n    }\n\n}\n"},"@account-abstraction/contracts/core/SenderCreator.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/**\n * Helper contract for EntryPoint, to call userOp.initCode from a \"neutral\" address,\n * which is explicitly not the entryPoint itself.\n */\ncontract SenderCreator {\n    /**\n     * Call the \"initCode\" factory to create and return the sender account address.\n     * @param initCode - The initCode value from a UserOp. contains 20 bytes of factory address,\n     *                   followed by calldata.\n     * @return sender  - The returned address of the created account, or zero address on failure.\n     */\n    function createSender(\n        bytes calldata initCode\n    ) external returns (address sender) {\n        address factory = address(bytes20(initCode[0:20]));\n        bytes memory initCallData = initCode[20:];\n        bool success;\n        /* solhint-disable no-inline-assembly */\n        assembly (\"memory-safe\") {\n            success := call(\n                gas(),\n                factory,\n                0,\n                add(initCallData, 0x20),\n                mload(initCallData),\n                0,\n                32\n            )\n            sender := mload(0)\n        }\n        if (!success) {\n            sender = address(0);\n        }\n    }\n}\n"},"@account-abstraction/contracts/core/StakeManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0-only\npragma solidity ^0.8.23;\n\nimport \"../interfaces/IStakeManager.sol\";\n\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable not-rely-on-time */\n\n/**\n * Manage deposits and stakes.\n * Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account).\n * Stake is value locked for at least \"unstakeDelay\" by a paymaster.\n */\nabstract contract StakeManager is IStakeManager {\n    /// maps paymaster to their deposits and stakes\n    mapping(address => DepositInfo) public deposits;\n\n    /// @inheritdoc IStakeManager\n    function getDepositInfo(\n        address account\n    ) public view returns (DepositInfo memory info) {\n        return deposits[account];\n    }\n\n    /**\n     * Internal method to return just the stake info.\n     * @param addr - The account to query.\n     */\n    function _getStakeInfo(\n        address addr\n    ) internal view returns (StakeInfo memory info) {\n        DepositInfo storage depositInfo = deposits[addr];\n        info.stake = depositInfo.stake;\n        info.unstakeDelaySec = depositInfo.unstakeDelaySec;\n    }\n\n    /// @inheritdoc IStakeManager\n    function balanceOf(address account) public view returns (uint256) {\n        return deposits[account].deposit;\n    }\n\n    receive() external payable {\n        depositTo(msg.sender);\n    }\n\n    /**\n     * Increments an account's deposit.\n     * @param account - The account to increment.\n     * @param amount  - The amount to increment by.\n     * @return the updated deposit of this account\n     */\n    function _incrementDeposit(address account, uint256 amount) internal returns (uint256) {\n        DepositInfo storage info = deposits[account];\n        uint256 newAmount = info.deposit + amount;\n        info.deposit = newAmount;\n        return newAmount;\n    }\n\n    /**\n     * Add to the deposit of the given account.\n     * @param account - The account to add to.\n     */\n    function depositTo(address account) public virtual payable {\n        uint256 newDeposit = _incrementDeposit(account, msg.value);\n        emit Deposited(account, newDeposit);\n    }\n\n    /**\n     * Add to the account's stake - amount and delay\n     * any pending unstake is first cancelled.\n     * @param unstakeDelaySec The new lock duration before the deposit can be withdrawn.\n     */\n    function addStake(uint32 unstakeDelaySec) public payable {\n        DepositInfo storage info = deposits[msg.sender];\n        require(unstakeDelaySec > 0, \"must specify unstake delay\");\n        require(\n            unstakeDelaySec >= info.unstakeDelaySec,\n            \"cannot decrease unstake time\"\n        );\n        uint256 stake = info.stake + msg.value;\n        require(stake > 0, \"no stake specified\");\n        require(stake <= type(uint112).max, \"stake overflow\");\n        deposits[msg.sender] = DepositInfo(\n            info.deposit,\n            true,\n            uint112(stake),\n            unstakeDelaySec,\n            0\n        );\n        emit StakeLocked(msg.sender, stake, unstakeDelaySec);\n    }\n\n    /**\n     * Attempt to unlock the stake.\n     * The value can be withdrawn (using withdrawStake) after the unstake delay.\n     */\n    function unlockStake() external {\n        DepositInfo storage info = deposits[msg.sender];\n        require(info.unstakeDelaySec != 0, \"not staked\");\n        require(info.staked, \"already unstaking\");\n        uint48 withdrawTime = uint48(block.timestamp) + info.unstakeDelaySec;\n        info.withdrawTime = withdrawTime;\n        info.staked = false;\n        emit StakeUnlocked(msg.sender, withdrawTime);\n    }\n\n    /**\n     * Withdraw from the (unlocked) stake.\n     * Must first call unlockStake and wait for the unstakeDelay to pass.\n     * @param withdrawAddress - The address to send withdrawn value.\n     */\n    function withdrawStake(address payable withdrawAddress) external {\n        DepositInfo storage info = deposits[msg.sender];\n        uint256 stake = info.stake;\n        require(stake > 0, \"No stake to withdraw\");\n        require(info.withdrawTime > 0, \"must call unlockStake() first\");\n        require(\n            info.withdrawTime <= block.timestamp,\n            \"Stake withdrawal is not due\"\n        );\n        info.unstakeDelaySec = 0;\n        info.withdrawTime = 0;\n        info.stake = 0;\n        emit StakeWithdrawn(msg.sender, withdrawAddress, stake);\n        (bool success,) = withdrawAddress.call{value: stake}(\"\");\n        require(success, \"failed to withdraw stake\");\n    }\n\n    /**\n     * Withdraw from the deposit.\n     * @param withdrawAddress - The address to send withdrawn value.\n     * @param withdrawAmount  - The amount to withdraw.\n     */\n    function withdrawTo(\n        address payable withdrawAddress,\n        uint256 withdrawAmount\n    ) external {\n        DepositInfo storage info = deposits[msg.sender];\n        require(withdrawAmount <= info.deposit, \"Withdraw amount too large\");\n        info.deposit = info.deposit - withdrawAmount;\n        emit Withdrawn(msg.sender, withdrawAddress, withdrawAmount);\n        (bool success,) = withdrawAddress.call{value: withdrawAmount}(\"\");\n        require(success, \"failed to withdraw\");\n    }\n}\n"},"@account-abstraction/contracts/core/UserOperationLib.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/* solhint-disable no-inline-assembly */\n\nimport \"../interfaces/PackedUserOperation.sol\";\nimport {calldataKeccak, min} from \"./Helpers.sol\";\n\n/**\n * Utility functions helpful when working with UserOperation structs.\n */\nlibrary UserOperationLib {\n\n    uint256 public constant PAYMASTER_VALIDATION_GAS_OFFSET = 20;\n    uint256 public constant PAYMASTER_POSTOP_GAS_OFFSET = 36;\n    uint256 public constant PAYMASTER_DATA_OFFSET = 52;\n    /**\n     * Get sender from user operation data.\n     * @param userOp - The user operation data.\n     */\n    function getSender(\n        PackedUserOperation calldata userOp\n    ) internal pure returns (address) {\n        address data;\n        //read sender from userOp, which is first userOp member (saves 800 gas...)\n        assembly {\n            data := calldataload(userOp)\n        }\n        return address(uint160(data));\n    }\n\n    /**\n     * Relayer/block builder might submit the TX with higher priorityFee,\n     * but the user should not pay above what he signed for.\n     * @param userOp - The user operation data.\n     */\n    function gasPrice(\n        PackedUserOperation calldata userOp\n    ) internal view returns (uint256) {\n        unchecked {\n            (uint256 maxPriorityFeePerGas, uint256 maxFeePerGas) = unpackUints(userOp.gasFees);\n            if (maxFeePerGas == maxPriorityFeePerGas) {\n                //legacy mode (for networks that don't support basefee opcode)\n                return maxFeePerGas;\n            }\n            return min(maxFeePerGas, maxPriorityFeePerGas + block.basefee);\n        }\n    }\n\n    /**\n     * Pack the user operation data into bytes for hashing.\n     * @param userOp - The user operation data.\n     */\n    function encode(\n        PackedUserOperation calldata userOp\n    ) internal pure returns (bytes memory ret) {\n        address sender = getSender(userOp);\n        uint256 nonce = userOp.nonce;\n        bytes32 hashInitCode = calldataKeccak(userOp.initCode);\n        bytes32 hashCallData = calldataKeccak(userOp.callData);\n        bytes32 accountGasLimits = userOp.accountGasLimits;\n        uint256 preVerificationGas = userOp.preVerificationGas;\n        bytes32 gasFees = userOp.gasFees;\n        bytes32 hashPaymasterAndData = calldataKeccak(userOp.paymasterAndData);\n\n        return abi.encode(\n            sender, nonce,\n            hashInitCode, hashCallData,\n            accountGasLimits, preVerificationGas, gasFees,\n            hashPaymasterAndData\n        );\n    }\n\n    function unpackUints(\n        bytes32 packed\n    ) internal pure returns (uint256 high128, uint256 low128) {\n        return (uint128(bytes16(packed)), uint128(uint256(packed)));\n    }\n\n    //unpack just the high 128-bits from a packed value\n    function unpackHigh128(bytes32 packed) internal pure returns (uint256) {\n        return uint256(packed) >> 128;\n    }\n\n    // unpack just the low 128-bits from a packed value\n    function unpackLow128(bytes32 packed) internal pure returns (uint256) {\n        return uint128(uint256(packed));\n    }\n\n    function unpackMaxPriorityFeePerGas(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackHigh128(userOp.gasFees);\n    }\n\n    function unpackMaxFeePerGas(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackLow128(userOp.gasFees);\n    }\n\n    function unpackVerificationGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackHigh128(userOp.accountGasLimits);\n    }\n\n    function unpackCallGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return unpackLow128(userOp.accountGasLimits);\n    }\n\n    function unpackPaymasterVerificationGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return uint128(bytes16(userOp.paymasterAndData[PAYMASTER_VALIDATION_GAS_OFFSET : PAYMASTER_POSTOP_GAS_OFFSET]));\n    }\n\n    function unpackPostOpGasLimit(PackedUserOperation calldata userOp)\n    internal pure returns (uint256) {\n        return uint128(bytes16(userOp.paymasterAndData[PAYMASTER_POSTOP_GAS_OFFSET : PAYMASTER_DATA_OFFSET]));\n    }\n\n    function unpackPaymasterStaticFields(\n        bytes calldata paymasterAndData\n    ) internal pure returns (address paymaster, uint256 validationGasLimit, uint256 postOpGasLimit) {\n        return (\n            address(bytes20(paymasterAndData[: PAYMASTER_VALIDATION_GAS_OFFSET])),\n            uint128(bytes16(paymasterAndData[PAYMASTER_VALIDATION_GAS_OFFSET : PAYMASTER_POSTOP_GAS_OFFSET])),\n            uint128(bytes16(paymasterAndData[PAYMASTER_POSTOP_GAS_OFFSET : PAYMASTER_DATA_OFFSET]))\n        );\n    }\n\n    /**\n     * Hash the user operation data.\n     * @param userOp - The user operation data.\n     */\n    function hash(\n        PackedUserOperation calldata userOp\n    ) internal pure returns (bytes32) {\n        return keccak256(encode(userOp));\n    }\n}\n"},"@account-abstraction/contracts/interfaces/IAccount.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\ninterface IAccount {\n    /**\n     * Validate user's signature and nonce\n     * the entryPoint will make the call to the recipient only if this validation call returns successfully.\n     * signature failure should be reported by returning SIG_VALIDATION_FAILED (1).\n     * This allows making a \"simulation call\" without a valid signature\n     * Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\n     *\n     * @dev Must validate caller is the entryPoint.\n     *      Must validate the signature and nonce\n     * @param userOp              - The operation that is about to be executed.\n     * @param userOpHash          - Hash of the user's request data. can be used as the basis for signature.\n     * @param missingAccountFunds - Missing funds on the account's deposit in the entrypoint.\n     *                              This is the minimum amount to transfer to the sender(entryPoint) to be\n     *                              able to make the call. The excess is left as a deposit in the entrypoint\n     *                              for future calls. Can be withdrawn anytime using \"entryPoint.withdrawTo()\".\n     *                              In case there is a paymaster in the request (or the current deposit is high\n     *                              enough), this value will be zero.\n     * @return validationData       - Packaged ValidationData structure. use `_packValidationData` and\n     *                              `_unpackValidationData` to encode and decode.\n     *                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n     *                                 otherwise, an address of an \"authorizer\" contract.\n     *                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \"indefinite\"\n     *                              <6-byte> validAfter - First timestamp this operation is valid\n     *                                                    If an account doesn't use time-range, it is enough to\n     *                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.\n     *                              Note that the validation code cannot use block.timestamp (or block.number) directly.\n     */\n    function validateUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash,\n        uint256 missingAccountFunds\n    ) external returns (uint256 validationData);\n}\n"},"@account-abstraction/contracts/interfaces/IAccountExecute.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\ninterface IAccountExecute {\n    /**\n     * Account may implement this execute method.\n     * passing this methodSig at the beginning of callData will cause the entryPoint to pass the full UserOp (and hash)\n     * to the account.\n     * The account should skip the methodSig, and use the callData (and optionally, other UserOp fields)\n     *\n     * @param userOp              - The operation that was just validated.\n     * @param userOpHash          - Hash of the user's request data.\n     */\n    function executeUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash\n    ) external;\n}\n"},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\n/**\n * Aggregated Signatures validator.\n */\ninterface IAggregator {\n    /**\n     * Validate aggregated signature.\n     * Revert if the aggregated signature does not match the given list of operations.\n     * @param userOps   - Array of UserOperations to validate the signature for.\n     * @param signature - The aggregated signature.\n     */\n    function validateSignatures(\n        PackedUserOperation[] calldata userOps,\n        bytes calldata signature\n    ) external view;\n\n    /**\n     * Validate signature of a single userOp.\n     * This method should be called by bundler after EntryPointSimulation.simulateValidation() returns\n     * the aggregator this account uses.\n     * First it validates the signature over the userOp. Then it returns data to be used when creating the handleOps.\n     * @param userOp        - The userOperation received from the user.\n     * @return sigForUserOp - The value to put into the signature field of the userOp when calling handleOps.\n     *                        (usually empty, unless account and aggregator support some kind of \"multisig\".\n     */\n    function validateUserOpSignature(\n        PackedUserOperation calldata userOp\n    ) external view returns (bytes memory sigForUserOp);\n\n    /**\n     * Aggregate multiple signatures into a single value.\n     * This method is called off-chain to calculate the signature to pass with handleOps()\n     * bundler MAY use optimized custom code perform this aggregation.\n     * @param userOps              - Array of UserOperations to collect the signatures from.\n     * @return aggregatedSignature - The aggregated signature.\n     */\n    function aggregateSignatures(\n        PackedUserOperation[] calldata userOps\n    ) external view returns (bytes memory aggregatedSignature);\n}\n"},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"content":"/**\n ** Account-Abstraction (EIP-4337) singleton EntryPoint implementation.\n ** Only one instance required on each chain.\n **/\n// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable no-inline-assembly */\n/* solhint-disable reason-string */\n\nimport \"./PackedUserOperation.sol\";\nimport \"./IStakeManager.sol\";\nimport \"./IAggregator.sol\";\nimport \"./INonceManager.sol\";\n\ninterface IEntryPoint is IStakeManager, INonceManager {\n    /***\n     * An event emitted after each successful request.\n     * @param userOpHash    - Unique identifier for the request (hash its entire content, except signature).\n     * @param sender        - The account that generates this request.\n     * @param paymaster     - If non-null, the paymaster that pays for this request.\n     * @param nonce         - The nonce value from the request.\n     * @param success       - True if the sender transaction succeeded, false if reverted.\n     * @param actualGasCost - Actual amount paid (by account or paymaster) for this UserOperation.\n     * @param actualGasUsed - Total gas used by this UserOperation (including preVerification, creation,\n     *                        validation and execution).\n     */\n    event UserOperationEvent(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        address indexed paymaster,\n        uint256 nonce,\n        bool success,\n        uint256 actualGasCost,\n        uint256 actualGasUsed\n    );\n\n    /**\n     * Account \"sender\" was deployed.\n     * @param userOpHash - The userOp that deployed this account. UserOperationEvent will follow.\n     * @param sender     - The account that is deployed\n     * @param factory    - The factory used to deploy this account (in the initCode)\n     * @param paymaster  - The paymaster used by this UserOp\n     */\n    event AccountDeployed(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        address factory,\n        address paymaster\n    );\n\n    /**\n     * An event emitted if the UserOperation \"callData\" reverted with non-zero length.\n     * @param userOpHash   - The request unique identifier.\n     * @param sender       - The sender of this request.\n     * @param nonce        - The nonce used in the request.\n     * @param revertReason - The return bytes from the (reverted) call to \"callData\".\n     */\n    event UserOperationRevertReason(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        uint256 nonce,\n        bytes revertReason\n    );\n\n    /**\n     * An event emitted if the UserOperation Paymaster's \"postOp\" call reverted with non-zero length.\n     * @param userOpHash   - The request unique identifier.\n     * @param sender       - The sender of this request.\n     * @param nonce        - The nonce used in the request.\n     * @param revertReason - The return bytes from the (reverted) call to \"callData\".\n     */\n    event PostOpRevertReason(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        uint256 nonce,\n        bytes revertReason\n    );\n\n    /**\n     * UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\n     * @param userOpHash   - The request unique identifier.\n     * @param sender       - The sender of this request.\n     * @param nonce        - The nonce used in the request.\n     */\n    event UserOperationPrefundTooLow(\n        bytes32 indexed userOpHash,\n        address indexed sender,\n        uint256 nonce\n    );\n\n    /**\n     * An event emitted by handleOps(), before starting the execution loop.\n     * Any event emitted before this event, is part of the validation.\n     */\n    event BeforeExecution();\n\n    /**\n     * Signature aggregator used by the following UserOperationEvents within this bundle.\n     * @param aggregator - The aggregator used for the following UserOperationEvents.\n     */\n    event SignatureAggregatorChanged(address indexed aggregator);\n\n    /**\n     * A custom revert error of handleOps, to identify the offending op.\n     * Should be caught in off-chain handleOps simulation and not happen on-chain.\n     * Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts.\n     * NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\n     * @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n     * @param reason  - Revert reason. The string starts with a unique code \"AAmn\",\n     *                  where \"m\" is \"1\" for factory, \"2\" for account and \"3\" for paymaster issues,\n     *                  so a failure can be attributed to the correct entity.\n     */\n    error FailedOp(uint256 opIndex, string reason);\n\n    /**\n     * A custom revert error of handleOps, to report a revert by account or paymaster.\n     * @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n     * @param reason  - Revert reason. see FailedOp(uint256,string), above\n     * @param inner   - data from inner cought revert reason\n     * @dev note that inner is truncated to 2048 bytes\n     */\n    error FailedOpWithRevert(uint256 opIndex, string reason, bytes inner);\n\n    error PostOpReverted(bytes returnData);\n\n    /**\n     * Error case when a signature aggregator fails to verify the aggregated signature it had created.\n     * @param aggregator The aggregator that failed to verify the signature\n     */\n    error SignatureValidationFailed(address aggregator);\n\n    // Return value of getSenderAddress.\n    error SenderAddressResult(address sender);\n\n    // UserOps handled, per aggregator.\n    struct UserOpsPerAggregator {\n        PackedUserOperation[] userOps;\n        // Aggregator address\n        IAggregator aggregator;\n        // Aggregated signature\n        bytes signature;\n    }\n\n    /**\n     * Execute a batch of UserOperations.\n     * No signature aggregator is used.\n     * If any account requires an aggregator (that is, it returned an aggregator when\n     * performing simulateValidation), then handleAggregatedOps() must be used instead.\n     * @param ops         - The operations to execute.\n     * @param beneficiary - The address to receive the fees.\n     */\n    function handleOps(\n        PackedUserOperation[] calldata ops,\n        address payable beneficiary\n    ) external;\n\n    /**\n     * Execute a batch of UserOperation with Aggregators\n     * @param opsPerAggregator - The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\n     * @param beneficiary      - The address to receive the fees.\n     */\n    function handleAggregatedOps(\n        UserOpsPerAggregator[] calldata opsPerAggregator,\n        address payable beneficiary\n    ) external;\n\n    /**\n     * Generate a request Id - unique identifier for this request.\n     * The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\n     * @param userOp - The user operation to generate the request ID for.\n     * @return hash the hash of this UserOperation\n     */\n    function getUserOpHash(\n        PackedUserOperation calldata userOp\n    ) external view returns (bytes32);\n\n    /**\n     * Gas and return values during simulation.\n     * @param preOpGas         - The gas used for validation (including preValidationGas)\n     * @param prefund          - The required prefund for this operation\n     * @param accountValidationData   - returned validationData from account.\n     * @param paymasterValidationData - return validationData from paymaster.\n     * @param paymasterContext - Returned by validatePaymasterUserOp (to be passed into postOp)\n     */\n    struct ReturnInfo {\n        uint256 preOpGas;\n        uint256 prefund;\n        uint256 accountValidationData;\n        uint256 paymasterValidationData;\n        bytes paymasterContext;\n    }\n\n    /**\n     * Returned aggregated signature info:\n     * The aggregator returned by the account, and its current stake.\n     */\n    struct AggregatorStakeInfo {\n        address aggregator;\n        StakeInfo stakeInfo;\n    }\n\n    /**\n     * Get counterfactual sender address.\n     * Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation.\n     * This method always revert, and returns the address in SenderAddressResult error\n     * @param initCode - The constructor code to be passed into the UserOperation.\n     */\n    function getSenderAddress(bytes memory initCode) external;\n\n    error DelegateAndRevert(bool success, bytes ret);\n\n    /**\n     * Helper method for dry-run testing.\n     * @dev calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.\n     *  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace\n     *  actual EntryPoint code is less convenient.\n     * @param target a target contract to make a delegatecall from entrypoint\n     * @param data data to pass to target in a delegatecall\n     */\n    function delegateAndRevert(address target, bytes calldata data) external;\n}\n"},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\ninterface INonceManager {\n\n    /**\n     * Return the next nonce for this sender.\n     * Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop)\n     * But UserOp with different keys can come with arbitrary order.\n     *\n     * @param sender the account address\n     * @param key the high 192 bit of the nonce\n     * @return nonce a full nonce to pass for next UserOp with this sender.\n     */\n    function getNonce(address sender, uint192 key)\n    external view returns (uint256 nonce);\n\n    /**\n     * Manually increment the nonce of the sender.\n     * This method is exposed just for completeness..\n     * Account does NOT need to call it, neither during validation, nor elsewhere,\n     * as the EntryPoint will update the nonce regardless.\n     * Possible use-case is call it with various keys to \"initialize\" their nonces to one, so that future\n     * UserOperations will not pay extra for the first transaction with a given key.\n     */\n    function incrementNonce(uint192 key) external;\n}\n"},"@account-abstraction/contracts/interfaces/IPaymaster.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\n/**\n * The interface exposed by a paymaster contract, who agrees to pay the gas for user's operations.\n * A paymaster must hold a stake to cover the required entrypoint stake and also the gas for the transaction.\n */\ninterface IPaymaster {\n    enum PostOpMode {\n        // User op succeeded.\n        opSucceeded,\n        // User op reverted. Still has to pay for gas.\n        opReverted,\n        // Only used internally in the EntryPoint (cleanup after postOp reverts). Never calling paymaster with this value\n        postOpReverted\n    }\n\n    /**\n     * Payment validation: check if paymaster agrees to pay.\n     * Must verify sender is the entryPoint.\n     * Revert to reject this request.\n     * Note that bundlers will reject this method if it changes the state, unless the paymaster is trusted (whitelisted).\n     * The paymaster pre-pays using its deposit, and receive back a refund after the postOp method returns.\n     * @param userOp          - The user operation.\n     * @param userOpHash      - Hash of the user's request data.\n     * @param maxCost         - The maximum cost of this transaction (based on maximum gas and gas price from userOp).\n     * @return context        - Value to send to a postOp. Zero length to signify postOp is not required.\n     * @return validationData - Signature and time-range of this operation, encoded the same as the return\n     *                          value of validateUserOperation.\n     *                          <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n     *                                                    other values are invalid for paymaster.\n     *                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n     *                          <6-byte> validAfter - first timestamp this operation is valid\n     *                          Note that the validation code cannot use block.timestamp (or block.number) directly.\n     */\n    function validatePaymasterUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash,\n        uint256 maxCost\n    ) external returns (bytes memory context, uint256 validationData);\n\n    /**\n     * Post-operation handler.\n     * Must verify sender is the entryPoint.\n     * @param mode          - Enum with the following options:\n     *                        opSucceeded - User operation succeeded.\n     *                        opReverted  - User op reverted. The paymaster still has to pay for gas.\n     *                        postOpReverted - never passed in a call to postOp().\n     * @param context       - The context value returned by validatePaymasterUserOp\n     * @param actualGasCost - Actual gas used so far (without this postOp call).\n     * @param actualUserOpFeePerGas - the gas price this UserOp pays. This value is based on the UserOp's maxFeePerGas\n     *                        and maxPriorityFee (and basefee)\n     *                        It is not the same as tx.gasprice, which is what the bundler pays.\n     */\n    function postOp(\n        PostOpMode mode,\n        bytes calldata context,\n        uint256 actualGasCost,\n        uint256 actualUserOpFeePerGas\n    ) external;\n}\n"},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0-only\npragma solidity >=0.7.5;\n\n/**\n * Manage deposits and stakes.\n * Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account).\n * Stake is value locked for at least \"unstakeDelay\" by the staked entity.\n */\ninterface IStakeManager {\n    event Deposited(address indexed account, uint256 totalDeposit);\n\n    event Withdrawn(\n        address indexed account,\n        address withdrawAddress,\n        uint256 amount\n    );\n\n    // Emitted when stake or unstake delay are modified.\n    event StakeLocked(\n        address indexed account,\n        uint256 totalStaked,\n        uint256 unstakeDelaySec\n    );\n\n    // Emitted once a stake is scheduled for withdrawal.\n    event StakeUnlocked(address indexed account, uint256 withdrawTime);\n\n    event StakeWithdrawn(\n        address indexed account,\n        address withdrawAddress,\n        uint256 amount\n    );\n\n    /**\n     * @param deposit         - The entity's deposit.\n     * @param staked          - True if this entity is staked.\n     * @param stake           - Actual amount of ether staked for this entity.\n     * @param unstakeDelaySec - Minimum delay to withdraw the stake.\n     * @param withdrawTime    - First block timestamp where 'withdrawStake' will be callable, or zero if already locked.\n     * @dev Sizes were chosen so that deposit fits into one cell (used during handleOp)\n     *      and the rest fit into a 2nd cell (used during stake/unstake)\n     *      - 112 bit allows for 10^15 eth\n     *      - 48 bit for full timestamp\n     *      - 32 bit allows 150 years for unstake delay\n     */\n    struct DepositInfo {\n        uint256 deposit;\n        bool staked;\n        uint112 stake;\n        uint32 unstakeDelaySec;\n        uint48 withdrawTime;\n    }\n\n    // API struct used by getStakeInfo and simulateValidation.\n    struct StakeInfo {\n        uint256 stake;\n        uint256 unstakeDelaySec;\n    }\n\n    /**\n     * Get deposit info.\n     * @param account - The account to query.\n     * @return info   - Full deposit information of given account.\n     */\n    function getDepositInfo(\n        address account\n    ) external view returns (DepositInfo memory info);\n\n    /**\n     * Get account balance.\n     * @param account - The account to query.\n     * @return        - The deposit (for gas payment) of the account.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * Add to the deposit of the given account.\n     * @param account - The account to add to.\n     */\n    function depositTo(address account) external payable;\n\n    /**\n     * Add to the account's stake - amount and delay\n     * any pending unstake is first cancelled.\n     * @param _unstakeDelaySec - The new lock duration before the deposit can be withdrawn.\n     */\n    function addStake(uint32 _unstakeDelaySec) external payable;\n\n    /**\n     * Attempt to unlock the stake.\n     * The value can be withdrawn (using withdrawStake) after the unstake delay.\n     */\n    function unlockStake() external;\n\n    /**\n     * Withdraw from the (unlocked) stake.\n     * Must first call unlockStake and wait for the unstakeDelay to pass.\n     * @param withdrawAddress - The address to send withdrawn value.\n     */\n    function withdrawStake(address payable withdrawAddress) external;\n\n    /**\n     * Withdraw from the deposit.\n     * @param withdrawAddress - The address to send withdrawn value.\n     * @param withdrawAmount  - The amount to withdraw.\n     */\n    function withdrawTo(\n        address payable withdrawAddress,\n        uint256 withdrawAmount\n    ) external;\n}\n"},"@account-abstraction/contracts/interfaces/PackedUserOperation.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\n/**\n * User Operation struct\n * @param sender                - The sender account of this request.\n * @param nonce                 - Unique value the sender uses to verify it is not a replay.\n * @param initCode              - If set, the account contract will be created by this constructor/\n * @param callData              - The method call to execute on this account.\n * @param accountGasLimits      - Packed gas limits for validateUserOp and gas limit passed to the callData method call.\n * @param preVerificationGas    - Gas not calculated by the handleOps method, but added to the gas paid.\n *                                Covers batch overhead.\n * @param gasFees               - packed gas fields maxPriorityFeePerGas and maxFeePerGas - Same as EIP-1559 gas parameters.\n * @param paymasterAndData      - If set, this field holds the paymaster address, verification gas limit, postOp gas limit and paymaster-specific extra data\n *                                The paymaster will pay for the transaction instead of the sender.\n * @param signature             - Sender-verified signature over the entire request, the EntryPoint address and the chain ID.\n */\nstruct PackedUserOperation {\n    address sender;\n    uint256 nonce;\n    bytes initCode;\n    bytes callData;\n    bytes32 accountGasLimits;\n    uint256 preVerificationGas;\n    bytes32 gasFees;\n    bytes paymasterAndData;\n    bytes signature;\n}\n"},"@account-abstraction/contracts/utils/Exec.sol":{"content":"// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity ^0.8.23;\n\n// solhint-disable no-inline-assembly\n\n/**\n * Utility functions helpful when making different kinds of contract calls in Solidity.\n */\nlibrary Exec {\n\n    function call(\n        address to,\n        uint256 value,\n        bytes memory data,\n        uint256 txGas\n    ) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := call(txGas, to, value, add(data, 0x20), mload(data), 0, 0)\n        }\n    }\n\n    function staticcall(\n        address to,\n        bytes memory data,\n        uint256 txGas\n    ) internal view returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := staticcall(txGas, to, add(data, 0x20), mload(data), 0, 0)\n        }\n    }\n\n    function delegateCall(\n        address to,\n        bytes memory data,\n        uint256 txGas\n    ) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := delegatecall(txGas, to, add(data, 0x20), mload(data), 0, 0)\n        }\n    }\n\n    // get returned data from last call or calldelegate\n    function getReturnData(uint256 maxLen) internal pure returns (bytes memory returnData) {\n        assembly (\"memory-safe\") {\n            let len := returndatasize()\n            if gt(len, maxLen) {\n                len := maxLen\n            }\n            let ptr := mload(0x40)\n            mstore(0x40, add(ptr, add(len, 0x20)))\n            mstore(ptr, len)\n            returndatacopy(add(ptr, 0x20), 0, len)\n            returnData := ptr\n        }\n    }\n\n    // revert with explicit byte array (probably reverted info from call)\n    function revertWithData(bytes memory returnData) internal pure {\n        assembly (\"memory-safe\") {\n            revert(add(returnData, 32), mload(returnData))\n        }\n    }\n\n    function callAndRevert(address to, bytes memory data, uint256 maxLen) internal {\n        bool success = call(to,0,data,gasleft());\n        if (!success) {\n            revertWithData(getReturnData(maxLen));\n        }\n    }\n}\n"},"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.23;\n\nimport {AccessControl} from \"@openzeppelin/contracts/access/AccessControl.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {ERC2771Context} from \"@openzeppelin/contracts/metatx/ERC2771Context.sol\";\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {BaseAccount} from \"@account-abstraction/contracts/core/BaseAccount.sol\";\nimport {SIG_VALIDATION_SUCCESS, SIG_VALIDATION_FAILED} from \"@account-abstraction/contracts/core/Helpers.sol\";\nimport {IEntryPoint} from \"@account-abstraction/contracts/interfaces/IEntryPoint.sol\";\nimport {PackedUserOperation} from \"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\";\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\n\n/**\n * @title ERC2771ForwarderAccount\n *\n * @dev Smart Account that acts as an ERC2771 Trusted Forwarder, forwarding calls to other contract(s) where\n *      the account is the trusted forwarder, on behalf of the signer of the userOp.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract ERC2771ForwarderAccount is AccessControl, BaseAccount {\n  bytes32 public constant WITHDRAW_ROLE = keccak256(\"WITHDRAW_ROLE\");\n  bytes32 public constant EXECUTOR_ROLE = keccak256(\"EXECUTOR_ROLE\");\n\n  IEntryPoint private immutable _entryPoint;\n  address internal transient _userOpSigner;\n\n  error RequiredEntryPointOrExecutor(address sender);\n  error UserOpSignerNotSet();\n  error CanCallOnlyIfTrustedForwarder(address target);\n  error WrongArrayLength();\n\n  /// @inheritdoc BaseAccount\n  function entryPoint() public view virtual override returns (IEntryPoint) {\n    return _entryPoint;\n  }\n\n  // solhint-disable-next-line no-empty-blocks\n  receive() external payable {}\n\n  constructor(IEntryPoint anEntryPoint, address admin, address[] memory executors) {\n    _entryPoint = anEntryPoint;\n    _grantRole(DEFAULT_ADMIN_ROLE, admin);\n    for (uint256 i; i < executors.length; i++) {\n      _grantRole(EXECUTOR_ROLE, executors[i]);\n    }\n  }\n\n  // Require the function call went through EntryPoint or authorized executor\n  function _requireFromEntryPointOrExecutor() internal returns (address sender) {\n    if (msg.sender == address(entryPoint())) {\n      require(_userOpSigner != address(0), UserOpSignerNotSet());\n      sender = _userOpSigner;\n      // Since _userOpSigner is only used in `execute` and `executeBatch` methods, when the caller is\n      // the entryPoint. And since the entryPoint only calls these functions after calling _validateSignature,\n      // then not cleaning the _userOpSigner (something that might happen if the exec call fails), shouldn't have\n      // any effect, but I do it anyway, just in case.\n      _userOpSigner = address(0);\n      return sender;\n    }\n    require(hasRole(EXECUTOR_ROLE, msg.sender), RequiredEntryPointOrExecutor(msg.sender));\n    return msg.sender;\n  }\n\n  /**\n   * execute a transaction (called directly from owner, or by entryPoint)\n   * @param dest destination address to call\n   * @param value the value to pass in this call\n   * @param func the calldata to pass in this call\n   */\n  function execute(address dest, uint256 value, bytes calldata func) external {\n    address sender = _requireFromEntryPointOrExecutor();\n    require(_isTrustedByTarget(dest), CanCallOnlyIfTrustedForwarder(dest));\n    Address.functionCallWithValue(dest, abi.encodePacked(func, sender), value);\n  }\n\n  /**\n   * execute a sequence of transactions\n   * @dev to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\n   * @param dest an array of destination addresses\n   * @param value an array of values to pass to each call. can be zero-length for no-value calls\n   * @param func an array of calldata to pass to each call\n   */\n  function executeBatch(address[] calldata dest, uint256[] calldata value, bytes[] calldata func) external {\n    address sender = _requireFromEntryPointOrExecutor();\n    if (dest.length != func.length || (value.length != 0 && value.length != func.length)) revert WrongArrayLength();\n    for (uint256 i = 0; i < dest.length; i++) {\n      require(\n        i == 0 ? _isTrustedByTarget(dest[0]) : (dest[i - 1] == dest[i] || _isTrustedByTarget(dest[i])),\n        CanCallOnlyIfTrustedForwarder(dest[i])\n      );\n      Address.functionCallWithValue(dest[i], abi.encodePacked(func[i], sender), value.length == 0 ? 0 : value[i]);\n    }\n  }\n\n  /// implement template method of BaseAccount\n  function _validateSignature(\n    PackedUserOperation calldata userOp,\n    bytes32 userOpHash\n  ) internal virtual override returns (uint256 validationData) {\n    bytes32 hash = MessageHashUtils.toEthSignedMessageHash(userOpHash);\n    address recovered = ECDSA.recover(hash, userOp.signature);\n    if (!hasRole(EXECUTOR_ROLE, recovered)) return SIG_VALIDATION_FAILED;\n    // Store the _userOpSigner so it can be used as _msgSender by execute and executeBatch\n    _userOpSigner = recovered;\n    return SIG_VALIDATION_SUCCESS;\n  }\n\n  /**\n   * @dev Returns whether the target trusts this forwarder.\n   *\n   * This function performs a static call to the target contract calling the\n   * {ERC2771Context-isTrustedForwarder} function.\n   *\n   * Copied from ERC2771Forwarder.sol (OZ-contracts)\n   */\n  function _isTrustedByTarget(address target) private view returns (bool) {\n    bytes memory encodedParams = abi.encodeCall(ERC2771Context.isTrustedForwarder, (address(this)));\n\n    bool success;\n    uint256 returnSize;\n    uint256 returnValue;\n    // solhint-disable-next-line no-inline-assembly\n    assembly (\"memory-safe\") {\n      // Perform the staticcall and save the result in the scratch space.\n      // | Location  | Content  | Content (Hex)                                                      |\n      // |-----------|----------|--------------------------------------------------------------------|\n      // |           |          |                                                           result ↓ |\n      // | 0x00:0x1F | selector | 0x0000000000000000000000000000000000000000000000000000000000000001 |\n      success := staticcall(gas(), target, add(encodedParams, 0x20), mload(encodedParams), 0, 0x20)\n      returnSize := returndatasize()\n      returnValue := mload(0)\n    }\n\n    return success && returnSize >= 0x20 && returnValue > 0;\n  }\n\n  /**\n   * check current account deposit in the entryPoint\n   */\n  function getDeposit() public view returns (uint256) {\n    return entryPoint().balanceOf(address(this));\n  }\n\n  /**\n   * deposit more funds for this account in the entryPoint\n   */\n  function addDeposit() public payable {\n    entryPoint().depositTo{value: msg.value}(address(this));\n  }\n\n  /**\n   * withdraw value from the account's deposit\n   * @param withdrawAddress target to send to\n   * @param amount to withdraw\n   */\n  function withdrawDepositTo(address payable withdrawAddress, uint256 amount) public onlyRole(WITHDRAW_ROLE) {\n    entryPoint().withdrawTo(withdrawAddress, amount);\n  }\n}\n"},"@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IERC721Receiver} from \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\n\n/**\n * @title Policy holder interface\n * @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts\n */\ninterface IPolicyHolder is IERC721Receiver {\n  /**\n   * @dev Whenever an Policy is expired or resolved with payout = 0, this function is called\n   *\n   * It should return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n   * No mather what's the return value or even if this function reverts, this function will not revert the policy\n   * expiration.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\n   */\n  function onPolicyExpired(address operator, address from, uint256 policyId) external returns (bytes4);\n\n  /**\n   * @dev Whenever an Policy is resolved with payout > 0, this function is called\n   *\n   * It must return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n   * If any other value is returned or it reverts, the policy resolution / payout will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\n   */\n  function onPayoutReceived(address operator, address from, uint256 policyId, uint256 amount) external returns (bytes4);\n}\n"},"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IPolicyHolder} from \"./IPolicyHolder.sol\";\n\n/**\n * @title Policy holder interface - V2 of the interface that adds onPolicyReplaced endpoint\n * @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive notification of payouts and\n *      replacements.\n *\n *      Implementors of this interface MUST return true on supportsInterface for both IPolicyHolder and IPolicyHolderV2.\n */\ninterface IPolicyHolderV2 is IPolicyHolder {\n  /**\n   * @dev Whenever a policy is replaced, this function is called\n   *\n   * It must return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the replacement will be successful.\n   * If any other value is returned or it reverts, the policy replacement will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolderV2.onPolicyReplaced.selector`.\n   */\n  function onPolicyReplaced(\n    address operator,\n    address from,\n    uint256 oldPolicyId,\n    uint256 newPolicyId\n  ) external returns (bytes4);\n}\n"},"@ensuro/utils/contracts/TestCurrency.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {AccessControl} from \"@openzeppelin/contracts/access/AccessControl.sol\";\n\ncontract TestCurrency is ERC20, AccessControl {\n  bytes32 public constant MINTER_ROLE = keccak256(\"MINTER_ROLE\");\n  bytes32 public constant BURNER_ROLE = keccak256(\"BURNER_ROLE\");\n\n  uint8 internal immutable _decimals;\n\n  constructor(\n    string memory name_,\n    string memory symbol_,\n    uint256 initialSupply,\n    uint8 decimals_,\n    address admin\n  ) ERC20(name_, symbol_) {\n    _decimals = decimals_;\n    _mint(msg.sender, initialSupply);\n    _grantRole(DEFAULT_ADMIN_ROLE, admin);\n  }\n\n  function decimals() public view virtual override returns (uint8) {\n    return _decimals;\n  }\n\n  function mint(address recipient, uint256 amount) external onlyRole(MINTER_ROLE) {\n    // require(msg.sender == _owner, \"Only owner can mint\");\n    return _mint(recipient, amount);\n  }\n\n  function burn(address recipient, uint256 amount) external onlyRole(BURNER_ROLE) {\n    // require(msg.sender == _owner, \"Only owner can burn\");\n    return _burn(recipient, amount);\n  }\n}\n"},"@ensuro/utils/contracts/TestERC4626.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {ERC4626} from \"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {TestCurrency} from \"./TestCurrency.sol\";\n\ncontract TestERC4626 is ERC4626 {\n  bool internal _broken;\n\n  uint256 public overrideMaxDeposit;\n  uint256 public overrideMaxMint;\n  uint256 public overrideMaxWithdraw;\n  uint256 public overrideMaxRedeem;\n\n  uint256 public constant OVERRIDE_UNSET = type(uint256).max - 99;\n\n  enum OverrideOption {\n    deposit,\n    mint,\n    withdraw,\n    redeem\n  }\n\n  error VaultIsBroken(bytes4 selector);\n\n  modifier isBroken() {\n    require(!_broken, VaultIsBroken(bytes4(msg.data[0:4])));\n    _;\n  }\n\n  constructor(string memory name_, string memory symbol_, IERC20Metadata asset_) ERC20(name_, symbol_) ERC4626(asset_) {\n    overrideMaxRedeem = overrideMaxWithdraw = overrideMaxMint = overrideMaxDeposit = OVERRIDE_UNSET;\n  }\n\n  function _deposit(\n    address caller,\n    address receiver,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override isBroken {\n    super._deposit(caller, receiver, assets, shares);\n  }\n\n  function _withdraw(\n    address caller,\n    address receiver,\n    address owner,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override isBroken {\n    super._withdraw(caller, receiver, owner, assets, shares);\n  }\n\n  /*\n   * @dev Adds or remove assets not generated by deposits/withdraw - For testing discrete earnings/losses\n   */\n  function discreteEarning(int256 assets) external {\n    if (assets > 0) {\n      TestCurrency(asset()).mint(address(this), uint256(assets));\n    } else {\n      TestCurrency(asset()).burn(address(this), uint256(-assets));\n    }\n  }\n\n  function setBroken(bool broken_) external {\n    _broken = broken_;\n  }\n\n  function broken() external view returns (bool) {\n    return _broken;\n  }\n\n  function maxDeposit(address owner) public view override returns (uint256) {\n    return overrideMaxDeposit == OVERRIDE_UNSET ? super.maxDeposit(owner) : overrideMaxDeposit;\n  }\n\n  function maxMint(address owner) public view override returns (uint256) {\n    return overrideMaxMint == OVERRIDE_UNSET ? super.maxMint(owner) : overrideMaxMint;\n  }\n\n  function maxWithdraw(address owner) public view override returns (uint256) {\n    return overrideMaxWithdraw == OVERRIDE_UNSET ? super.maxWithdraw(owner) : overrideMaxWithdraw;\n  }\n\n  function maxRedeem(address owner) public view override returns (uint256) {\n    return overrideMaxRedeem == OVERRIDE_UNSET ? super.maxRedeem(owner) : overrideMaxRedeem;\n  }\n\n  function setOverride(OverrideOption option, uint256 newValue) external {\n    if (option == OverrideOption.deposit) overrideMaxDeposit = newValue;\n    if (option == OverrideOption.mint) overrideMaxMint = newValue;\n    if (option == OverrideOption.withdraw) overrideMaxWithdraw = newValue;\n    if (option == OverrideOption.redeem) overrideMaxRedeem = newValue;\n  }\n}\n"},"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (metatx/ERC2771Context.sol)\n\npragma solidity ^0.8.20;\n\nimport {ContextUpgradeable} from \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Context variant with ERC-2771 support.\n *\n * WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll\n * be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771\n * specification adding the address size in bytes (20) to the calldata size. An example of an unexpected\n * behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive`\n * function only accessible if `msg.data.length == 0`.\n *\n * WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption.\n * Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender}\n * recovery.\n */\nabstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable {\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n    address private immutable _trustedForwarder;\n\n    /**\n     * @dev Initializes the contract with a trusted forwarder, which will be able to\n     * invoke functions on this contract on behalf of other accounts.\n     *\n     * NOTE: The trusted forwarder can be replaced by overriding {trustedForwarder}.\n     */\n    /// @custom:oz-upgrades-unsafe-allow constructor\n    constructor(address trustedForwarder_) {\n        _trustedForwarder = trustedForwarder_;\n    }\n\n    /**\n     * @dev Returns the address of the trusted forwarder.\n     */\n    function trustedForwarder() public view virtual returns (address) {\n        return _trustedForwarder;\n    }\n\n    /**\n     * @dev Indicates whether any particular address is the trusted forwarder.\n     */\n    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {\n        return forwarder == trustedForwarder();\n    }\n\n    /**\n     * @dev Override for `msg.sender`. Defaults to the original `msg.sender` whenever\n     * a call is not performed by the trusted forwarder or the calldata length is less than\n     * 20 bytes (an address length).\n     */\n    function _msgSender() internal view virtual override returns (address) {\n        uint256 calldataLength = msg.data.length;\n        uint256 contextSuffixLength = _contextSuffixLength();\n        if (isTrustedForwarder(msg.sender) && calldataLength >= contextSuffixLength) {\n            return address(bytes20(msg.data[calldataLength - contextSuffixLength:]));\n        } else {\n            return super._msgSender();\n        }\n    }\n\n    /**\n     * @dev Override for `msg.data`. Defaults to the original `msg.data` whenever\n     * a call is not performed by the trusted forwarder or the calldata length is less than\n     * 20 bytes (an address length).\n     */\n    function _msgData() internal view virtual override returns (bytes calldata) {\n        uint256 calldataLength = msg.data.length;\n        uint256 contextSuffixLength = _contextSuffixLength();\n        if (isTrustedForwarder(msg.sender) && calldataLength >= contextSuffixLength) {\n            return msg.data[:calldataLength - contextSuffixLength];\n        } else {\n            return super._msgData();\n        }\n    }\n\n    /**\n     * @dev ERC-2771 specifies the context as being a single address (20 bytes).\n     */\n    function _contextSuffixLength() internal view virtual override returns (uint256) {\n        return 20;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Storage of the initializable contract.\n     *\n     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n     * when using with upgradeable contracts.\n     *\n     * @custom:storage-location erc7201:openzeppelin.storage.Initializable\n     */\n    struct InitializableStorage {\n        /**\n         * @dev Indicates that the contract has been initialized.\n         */\n        uint64 _initialized;\n        /**\n         * @dev Indicates that the contract is in the process of being initialized.\n         */\n        bool _initializing;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Initializable\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;\n\n    /**\n     * @dev The contract is already initialized.\n     */\n    error InvalidInitialization();\n\n    /**\n     * @dev The contract is not initializing.\n     */\n    error NotInitializing();\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint64 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts.\n     *\n     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n     * production.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier initializer() {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        // Cache values to avoid duplicated sloads\n        bool isTopLevelCall = !$._initializing;\n        uint64 initialized = $._initialized;\n\n        // Allowed calls:\n        // - initialSetup: the contract is not in the initializing state and no previous version was\n        //                 initialized\n        // - construction: the contract is initialized at version 1 (no reininitialization) and the\n        //                 current contract is just being deployed\n        bool initialSetup = initialized == 0 && isTopLevelCall;\n        bool construction = initialized == 1 && address(this).code.length == 0;\n\n        if (!initialSetup && !construction) {\n            revert InvalidInitialization();\n        }\n        $._initialized = 1;\n        if (isTopLevelCall) {\n            $._initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            $._initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n     * are added through upgrades and that require initialization.\n     *\n     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n     * cannot be nested. If one is invoked in the context of another, execution will revert.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     *\n     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier reinitializer(uint64 version) {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing || $._initialized >= version) {\n            revert InvalidInitialization();\n        }\n        $._initialized = version;\n        $._initializing = true;\n        _;\n        $._initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        _checkInitializing();\n        _;\n    }\n\n    /**\n     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.\n     */\n    function _checkInitializing() internal view virtual {\n        if (!_isInitializing()) {\n            revert NotInitializing();\n        }\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     *\n     * Emits an {Initialized} event the first time it is successfully executed.\n     */\n    function _disableInitializers() internal virtual {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing) {\n            revert InvalidInitialization();\n        }\n        if ($._initialized != type(uint64).max) {\n            $._initialized = type(uint64).max;\n            emit Initialized(type(uint64).max);\n        }\n    }\n\n    /**\n     * @dev Returns the highest version that has been initialized. See {reinitializer}.\n     */\n    function _getInitializedVersion() internal view returns (uint64) {\n        return _getInitializableStorage()._initialized;\n    }\n\n    /**\n     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n     */\n    function _isInitializing() internal view returns (bool) {\n        return _getInitializableStorage()._initializing;\n    }\n\n    /**\n     * @dev Returns a pointer to the storage namespace.\n     */\n    // solhint-disable-next-line var-name-mixedcase\n    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {\n        assembly {\n            $.slot := INITIALIZABLE_STORAGE\n        }\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.22;\n\nimport {IERC1822Proxiable} from \"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\";\nimport {ERC1967Utils} from \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\";\nimport {Initializable} from \"./Initializable.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n */\nabstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n    address private immutable __self = address(this);\n\n    /**\n     * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n     * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n     * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n     * If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n     * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n     * during an upgrade.\n     */\n    string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\";\n\n    /**\n     * @dev The call is from an unauthorized context.\n     */\n    error UUPSUnauthorizedCallContext();\n\n    /**\n     * @dev The storage `slot` is unsupported as a UUID.\n     */\n    error UUPSUnsupportedProxiableUUID(bytes32 slot);\n\n    /**\n     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n     * a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n     * function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n     * fail.\n     */\n    modifier onlyProxy() {\n        _checkProxy();\n        _;\n    }\n\n    /**\n     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n     * callable on the implementing contract but not through proxies.\n     */\n    modifier notDelegated() {\n        _checkNotDelegated();\n        _;\n    }\n\n    function __UUPSUpgradeable_init() internal onlyInitializing {\n    }\n\n    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n     */\n    function proxiableUUID() external view virtual notDelegated returns (bytes32) {\n        return ERC1967Utils.IMPLEMENTATION_SLOT;\n    }\n\n    /**\n     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n     * encoded in `data`.\n     *\n     * Calls {_authorizeUpgrade}.\n     *\n     * Emits an {Upgraded} event.\n     *\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n        _authorizeUpgrade(newImplementation);\n        _upgradeToAndCallUUPS(newImplementation, data);\n    }\n\n    /**\n     * @dev Reverts if the execution is not performed via delegatecall or the execution\n     * context is not of a proxy with an ERC-1967 compliant implementation pointing to self.\n     * See {_onlyProxy}.\n     */\n    function _checkProxy() internal view virtual {\n        if (\n            address(this) == __self || // Must be called through delegatecall\n            ERC1967Utils.getImplementation() != __self // Must be called through an active proxy\n        ) {\n            revert UUPSUnauthorizedCallContext();\n        }\n    }\n\n    /**\n     * @dev Reverts if the execution is performed via delegatecall.\n     * See {notDelegated}.\n     */\n    function _checkNotDelegated() internal view virtual {\n        if (address(this) != __self) {\n            // Must not be called through delegatecall\n            revert UUPSUnauthorizedCallContext();\n        }\n    }\n\n    /**\n     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n     * {upgradeToAndCall}.\n     *\n     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n     *\n     * ```solidity\n     * function _authorizeUpgrade(address) internal onlyOwner {}\n     * ```\n     */\n    function _authorizeUpgrade(address newImplementation) internal virtual;\n\n    /**\n     * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n     *\n     * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n     * is expected to be the implementation slot in ERC-1967.\n     *\n     * Emits an {IERC1967-Upgraded} event.\n     */\n    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {\n        try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n            if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {\n                revert UUPSUnsupportedProxiableUUID(slot);\n            }\n            ERC1967Utils.upgradeToAndCall(newImplementation, data);\n        } catch {\n            // The implementation is not UUPS\n            revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);\n        }\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ContextUpgradeable} from \"../../utils/ContextUpgradeable.sol\";\nimport {IERC20Errors} from \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport {Initializable} from \"../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC-20\n * applications.\n */\nabstract contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors {\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC20\n    struct ERC20Storage {\n        mapping(address account => uint256) _balances;\n\n        mapping(address account => mapping(address spender => uint256)) _allowances;\n\n        uint256 _totalSupply;\n\n        string _name;\n        string _symbol;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC20\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;\n\n    function _getERC20Storage() private pure returns (ERC20Storage storage $) {\n        assembly {\n            $.slot := ERC20StorageLocation\n        }\n    }\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {\n        __ERC20_init_unchained(name_, symbol_);\n    }\n\n    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {\n        ERC20Storage storage $ = _getERC20Storage();\n        $._name = name_;\n        $._symbol = symbol_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual returns (string memory) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the default value returned by this function, unless\n     * it's overridden.\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return 18;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `value`.\n     */\n    function transfer(address to, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Skips emitting an {Approval} event indicating an allowance update. This is not\n     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n     *\n     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `value`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `value`.\n     */\n    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, value);\n        _transfer(from, to, value);\n        return true;\n    }\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _transfer(address from, address to, uint256 value) internal {\n        if (from == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        if (to == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(from, to, value);\n    }\n\n    /**\n     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n     * this function.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _update(address from, address to, uint256 value) internal virtual {\n        ERC20Storage storage $ = _getERC20Storage();\n        if (from == address(0)) {\n            // Overflow check required: The rest of the code assumes that totalSupply never overflows\n            $._totalSupply += value;\n        } else {\n            uint256 fromBalance = $._balances[from];\n            if (fromBalance < value) {\n                revert ERC20InsufficientBalance(from, fromBalance, value);\n            }\n            unchecked {\n                // Overflow not possible: value <= fromBalance <= totalSupply.\n                $._balances[from] = fromBalance - value;\n            }\n        }\n\n        if (to == address(0)) {\n            unchecked {\n                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n                $._totalSupply -= value;\n            }\n        } else {\n            unchecked {\n                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n                $._balances[to] += value;\n            }\n        }\n\n        emit Transfer(from, to, value);\n    }\n\n    /**\n     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n     * Relies on the `_update` mechanism\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _mint(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(address(0), account, value);\n    }\n\n    /**\n     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n     * Relies on the `_update` mechanism.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead\n     */\n    function _burn(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        _update(account, address(0), value);\n    }\n\n    /**\n     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     *\n     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address owner, address spender, uint256 value) internal {\n        _approve(owner, spender, value, true);\n    }\n\n    /**\n     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n     *\n     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n     * `Approval` event during `transferFrom` operations.\n     *\n     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n     * true using the following override:\n     *\n     * ```solidity\n     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     *     super._approve(owner, spender, value, true);\n     * }\n     * ```\n     *\n     * Requirements are the same as {_approve}.\n     */\n    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n        ERC20Storage storage $ = _getERC20Storage();\n        if (owner == address(0)) {\n            revert ERC20InvalidApprover(address(0));\n        }\n        if (spender == address(0)) {\n            revert ERC20InvalidSpender(address(0));\n        }\n        $._allowances[owner][spender] = value;\n        if (emitEvent) {\n            emit Approval(owner, spender, value);\n        }\n    }\n\n    /**\n     * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n     *\n     * Does not update the allowance value in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Does not emit an {Approval} event.\n     */\n    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance < type(uint256).max) {\n            if (currentAllowance < value) {\n                revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n            }\n            unchecked {\n                _approve(owner, spender, currentAllowance - value, false);\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC4626.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ERC20Upgradeable} from \"../ERC20Upgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {Initializable} from \"../../../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n *\n * This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n * underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n * the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n * contract and not the \"assets\" token which is an independent contract.\n *\n * [CAUTION]\n * ====\n * In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n * with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n * attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n * deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n * similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n * verifying the amount received is as expected, using a wrapper that performs these checks such as\n * https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n *\n * Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n * The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n * and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n * itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n * offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n * of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n * With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n * underlying math can be found xref:erc4626.adoc#inflation-attack[here].\n *\n * The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n * to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n * will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n * bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n * `_convertToShares` and `_convertToAssets` functions.\n *\n * To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n * ====\n */\nabstract contract ERC4626Upgradeable is Initializable, ERC20Upgradeable, IERC4626 {\n    using Math for uint256;\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC4626\n    struct ERC4626Storage {\n        IERC20 _asset;\n        uint8 _underlyingDecimals;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC4626\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC4626StorageLocation = 0x0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00;\n\n    function _getERC4626Storage() private pure returns (ERC4626Storage storage $) {\n        assembly {\n            $.slot := ERC4626StorageLocation\n        }\n    }\n\n    /**\n     * @dev Attempted to deposit more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxDeposit(address receiver, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to mint more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxMint(address receiver, uint256 shares, uint256 max);\n\n    /**\n     * @dev Attempted to withdraw more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxWithdraw(address owner, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to redeem more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxRedeem(address owner, uint256 shares, uint256 max);\n\n    /**\n     * @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\n     */\n    function __ERC4626_init(IERC20 asset_) internal onlyInitializing {\n        __ERC4626_init_unchained(asset_);\n    }\n\n    function __ERC4626_init_unchained(IERC20 asset_) internal onlyInitializing {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        (bool success, uint8 assetDecimals) = _tryGetAssetDecimals(asset_);\n        $._underlyingDecimals = success ? assetDecimals : 18;\n        $._asset = asset_;\n    }\n\n    /**\n     * @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way.\n     */\n    function _tryGetAssetDecimals(IERC20 asset_) private view returns (bool ok, uint8 assetDecimals) {\n        (bool success, bytes memory encodedDecimals) = address(asset_).staticcall(\n            abi.encodeCall(IERC20Metadata.decimals, ())\n        );\n        if (success && encodedDecimals.length >= 32) {\n            uint256 returnedDecimals = abi.decode(encodedDecimals, (uint256));\n            if (returnedDecimals <= type(uint8).max) {\n                return (true, uint8(returnedDecimals));\n            }\n        }\n        return (false, 0);\n    }\n\n    /**\n     * @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n     * \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n     * asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n     *\n     * See {IERC20Metadata-decimals}.\n     */\n    function decimals() public view virtual override(IERC20Metadata, ERC20Upgradeable) returns (uint8) {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        return $._underlyingDecimals + _decimalsOffset();\n    }\n\n    /** @dev See {IERC4626-asset}. */\n    function asset() public view virtual returns (address) {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        return address($._asset);\n    }\n\n    /** @dev See {IERC4626-totalAssets}. */\n    function totalAssets() public view virtual returns (uint256) {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        return $._asset.balanceOf(address(this));\n    }\n\n    /** @dev See {IERC4626-convertToShares}. */\n    function convertToShares(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-convertToAssets}. */\n    function convertToAssets(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-maxDeposit}. */\n    function maxDeposit(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /** @dev See {IERC4626-maxMint}. */\n    function maxMint(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /** @dev See {IERC4626-maxWithdraw}. */\n    function maxWithdraw(address owner) public view virtual returns (uint256) {\n        return _convertToAssets(balanceOf(owner), Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-maxRedeem}. */\n    function maxRedeem(address owner) public view virtual returns (uint256) {\n        return balanceOf(owner);\n    }\n\n    /** @dev See {IERC4626-previewDeposit}. */\n    function previewDeposit(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-previewMint}. */\n    function previewMint(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Ceil);\n    }\n\n    /** @dev See {IERC4626-previewWithdraw}. */\n    function previewWithdraw(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Ceil);\n    }\n\n    /** @dev See {IERC4626-previewRedeem}. */\n    function previewRedeem(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-deposit}. */\n    function deposit(uint256 assets, address receiver) public virtual returns (uint256) {\n        uint256 maxAssets = maxDeposit(receiver);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxDeposit(receiver, assets, maxAssets);\n        }\n\n        uint256 shares = previewDeposit(assets);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return shares;\n    }\n\n    /** @dev See {IERC4626-mint}. */\n    function mint(uint256 shares, address receiver) public virtual returns (uint256) {\n        uint256 maxShares = maxMint(receiver);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxMint(receiver, shares, maxShares);\n        }\n\n        uint256 assets = previewMint(shares);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return assets;\n    }\n\n    /** @dev See {IERC4626-withdraw}. */\n    function withdraw(uint256 assets, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxAssets = maxWithdraw(owner);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxWithdraw(owner, assets, maxAssets);\n        }\n\n        uint256 shares = previewWithdraw(assets);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return shares;\n    }\n\n    /** @dev See {IERC4626-redeem}. */\n    function redeem(uint256 shares, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxShares = maxRedeem(owner);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxRedeem(owner, shares, maxShares);\n        }\n\n        uint256 assets = previewRedeem(shares);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return assets;\n    }\n\n    /**\n     * @dev Internal conversion function (from assets to shares) with support for rounding direction.\n     */\n    function _convertToShares(uint256 assets, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return assets.mulDiv(totalSupply() + 10 ** _decimalsOffset(), totalAssets() + 1, rounding);\n    }\n\n    /**\n     * @dev Internal conversion function (from shares to assets) with support for rounding direction.\n     */\n    function _convertToAssets(uint256 shares, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return shares.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), rounding);\n    }\n\n    /**\n     * @dev Deposit/mint common workflow.\n     */\n    function _deposit(address caller, address receiver, uint256 assets, uint256 shares) internal virtual {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        // If _asset is ERC-777, `transferFrom` can trigger a reentrancy BEFORE the transfer happens through the\n        // `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the\n        // assets are transferred and before the shares are minted, which is a valid state.\n        // slither-disable-next-line reentrancy-no-eth\n        SafeERC20.safeTransferFrom($._asset, caller, address(this), assets);\n        _mint(receiver, shares);\n\n        emit Deposit(caller, receiver, assets, shares);\n    }\n\n    /**\n     * @dev Withdraw/redeem common workflow.\n     */\n    function _withdraw(\n        address caller,\n        address receiver,\n        address owner,\n        uint256 assets,\n        uint256 shares\n    ) internal virtual {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        if (caller != owner) {\n            _spendAllowance(owner, caller, shares);\n        }\n\n        // If _asset is ERC-777, `transfer` can trigger a reentrancy AFTER the transfer happens through the\n        // `tokensReceived` hook. On the other hand, the `tokensToSend` hook, that is triggered before the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer after the burn so that any reentrancy would happen after the\n        // shares are burned and after the assets are transferred, which is a valid state.\n        _burn(owner, shares);\n        SafeERC20.safeTransfer($._asset, receiver, assets);\n\n        emit Withdraw(caller, receiver, owner, assets, shares);\n    }\n\n    function _decimalsOffset() internal view virtual returns (uint8) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract ContextUpgradeable is Initializable {\n    function __Context_init() internal onlyInitializing {\n    }\n\n    function __Context_init_unchained() internal onlyInitializing {\n    }\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n\n    function _contextSuffixLength() internal view virtual returns (uint256) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/access/AccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessControl} from \"./IAccessControl.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {ERC165} from \"../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Contract module that allows children to implement role-based access\n * control mechanisms. This is a lightweight version that doesn't allow enumerating role\n * members except through off-chain means by accessing the contract event logs. Some\n * applications may benefit from on-chain enumerability, for those cases see\n * {AccessControlEnumerable}.\n *\n * Roles are referred to by their `bytes32` identifier. These should be exposed\n * in the external API and be unique. The best way to achieve this is by\n * using `public constant` hash digests:\n *\n * ```solidity\n * bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n * ```\n *\n * Roles can be used to represent a set of permissions. To restrict access to a\n * function call, use {hasRole}:\n *\n * ```solidity\n * function foo() public {\n *     require(hasRole(MY_ROLE, msg.sender));\n *     ...\n * }\n * ```\n *\n * Roles can be granted and revoked dynamically via the {grantRole} and\n * {revokeRole} functions. Each role has an associated admin role, and only\n * accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n *\n * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n * that only accounts with this role will be able to grant or revoke other\n * roles. More complex role relationships can be created by using\n * {_setRoleAdmin}.\n *\n * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n * grant and revoke this role. Extra precautions should be taken to secure\n * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n * to enforce additional security measures for this role.\n */\nabstract contract AccessControl is Context, IAccessControl, ERC165 {\n    struct RoleData {\n        mapping(address account => bool) hasRole;\n        bytes32 adminRole;\n    }\n\n    mapping(bytes32 role => RoleData) private _roles;\n\n    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;\n\n    /**\n     * @dev Modifier that checks that an account has a specific role. Reverts\n     * with an {AccessControlUnauthorizedAccount} error including the required role.\n     */\n    modifier onlyRole(bytes32 role) {\n        _checkRole(role);\n        _;\n    }\n\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) public view virtual returns (bool) {\n        return _roles[role].hasRole[account];\n    }\n\n    /**\n     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.\n     */\n    function _checkRole(bytes32 role) internal view virtual {\n        _checkRole(role, _msgSender());\n    }\n\n    /**\n     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n     * is missing `role`.\n     */\n    function _checkRole(bytes32 role, address account) internal view virtual {\n        if (!hasRole(role, account)) {\n            revert AccessControlUnauthorizedAccount(account, role);\n        }\n    }\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {\n        return _roles[role].adminRole;\n    }\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     *\n     * May emit a {RoleGranted} event.\n     */\n    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n        _grantRole(role, account);\n    }\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n        _revokeRole(role, account);\n    }\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been revoked `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function renounceRole(bytes32 role, address callerConfirmation) public virtual {\n        if (callerConfirmation != _msgSender()) {\n            revert AccessControlBadConfirmation();\n        }\n\n        _revokeRole(role, callerConfirmation);\n    }\n\n    /**\n     * @dev Sets `adminRole` as ``role``'s admin role.\n     *\n     * Emits a {RoleAdminChanged} event.\n     */\n    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {\n        bytes32 previousAdminRole = getRoleAdmin(role);\n        _roles[role].adminRole = adminRole;\n        emit RoleAdminChanged(role, previousAdminRole, adminRole);\n    }\n\n    /**\n     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n     *\n     * Internal function without access restriction.\n     *\n     * May emit a {RoleGranted} event.\n     */\n    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {\n        if (!hasRole(role, account)) {\n            _roles[role].hasRole[account] = true;\n            emit RoleGranted(role, account, _msgSender());\n            return true;\n        } else {\n            return false;\n        }\n    }\n\n    /**\n     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.\n     *\n     * Internal function without access restriction.\n     *\n     * May emit a {RoleRevoked} event.\n     */\n    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {\n        if (hasRole(role, account)) {\n            _roles[role].hasRole[account] = false;\n            emit RoleRevoked(role, account, _msgSender());\n            return true;\n        } else {\n            return false;\n        }\n    }\n}\n"},"@openzeppelin/contracts/access/IAccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev External interface of AccessControl declared to support ERC-165 detection.\n */\ninterface IAccessControl {\n    /**\n     * @dev The `account` is missing a role.\n     */\n    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);\n\n    /**\n     * @dev The caller of a function is not the expected one.\n     *\n     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\n     */\n    error AccessControlBadConfirmation();\n\n    /**\n     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n     *\n     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n     * {RoleAdminChanged} not being emitted signaling this.\n     */\n    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n    /**\n     * @dev Emitted when `account` is granted `role`.\n     *\n     * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n     * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\n     */\n    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Emitted when `account` is revoked `role`.\n     *\n     * `sender` is the account that originated the contract call:\n     *   - if using `revokeRole`, it is the admin role bearer\n     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)\n     */\n    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n    /**\n     * @dev Returns `true` if `account` has been granted `role`.\n     */\n    function hasRole(bytes32 role, address account) external view returns (bool);\n\n    /**\n     * @dev Returns the admin role that controls `role`. See {grantRole} and\n     * {revokeRole}.\n     *\n     * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n     */\n    function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n    /**\n     * @dev Grants `role` to `account`.\n     *\n     * If `account` had not been already granted `role`, emits a {RoleGranted}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function grantRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from `account`.\n     *\n     * If `account` had been granted `role`, emits a {RoleRevoked} event.\n     *\n     * Requirements:\n     *\n     * - the caller must have ``role``'s admin role.\n     */\n    function revokeRole(bytes32 role, address account) external;\n\n    /**\n     * @dev Revokes `role` from the calling account.\n     *\n     * Roles are often managed via {grantRole} and {revokeRole}: this function's\n     * purpose is to provide a mechanism for accounts to lose their privileges\n     * if they are compromised (such as when a trusted device is misplaced).\n     *\n     * If the calling account had been granted `role`, emits a {RoleRevoked}\n     * event.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     */\n    function renounceRole(bytes32 role, address callerConfirmation) external;\n}\n"},"@openzeppelin/contracts/access/manager/AccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/manager/AccessManager.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessManager} from \"./IAccessManager.sol\";\nimport {IAccessManaged} from \"./IAccessManaged.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {Multicall} from \"../../utils/Multicall.sol\";\nimport {Math} from \"../../utils/math/Math.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\n\n/**\n * @dev AccessManager is a central contract to store the permissions of a system.\n *\n * A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the\n * {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted}\n * modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be\n * effectively restricted.\n *\n * The restriction rules for such functions are defined in terms of \"roles\" identified by an `uint64` and scoped\n * by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be\n * configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}).\n *\n * For each target contract, admins can configure the following without any delay:\n *\n * * The target's {AccessManaged-authority} via {updateAuthority}.\n * * Close or open a target via {setTargetClosed} keeping the permissions intact.\n * * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}.\n *\n * By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise.\n * Additionally, each role has the following configuration options restricted to this manager's admins:\n *\n * * A role's admin role via {setRoleAdmin} who can grant or revoke roles.\n * * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations.\n * * A delay in which a role takes effect after being granted through {setGrantDelay}.\n * * A delay of any target's admin action via {setTargetAdminDelay}.\n * * A role label for discoverability purposes with {labelRole}.\n *\n * Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions\n * restricted to each role's admin (see {getRoleAdmin}).\n *\n * Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that\n * they will be highly secured (e.g., a multisig or a well-configured DAO).\n *\n * NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it\n * doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of\n * the return data are a boolean as expected by that interface.\n *\n * NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an\n * {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}.\n * Users will be able to interact with these contracts through the {execute} function, following the access rules\n * registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions\n * will be {AccessManager} itself.\n *\n * WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very\n * mindful of the danger associated with functions such as {Ownable-renounceOwnership} or\n * {AccessControl-renounceRole}.\n */\ncontract AccessManager is Context, Multicall, IAccessManager {\n    using Time for *;\n\n    // Structure that stores the details for a target contract.\n    struct TargetConfig {\n        mapping(bytes4 selector => uint64 roleId) allowedRoles;\n        Time.Delay adminDelay;\n        bool closed;\n    }\n\n    // Structure that stores the details for a role/account pair. This structures fit into a single slot.\n    struct Access {\n        // Timepoint at which the user gets the permission.\n        // If this is either 0 or in the future, then the role permission is not available.\n        uint48 since;\n        // Delay for execution. Only applies to restricted() / execute() calls.\n        Time.Delay delay;\n    }\n\n    // Structure that stores the details of a role.\n    struct Role {\n        // Members of the role.\n        mapping(address user => Access access) members;\n        // Admin who can grant or revoke permissions.\n        uint64 admin;\n        // Guardian who can cancel operations targeting functions that need this role.\n        uint64 guardian;\n        // Delay in which the role takes effect after being granted.\n        Time.Delay grantDelay;\n    }\n\n    // Structure that stores the details for a scheduled operation. This structure fits into a single slot.\n    struct Schedule {\n        // Moment at which the operation can be executed.\n        uint48 timepoint;\n        // Operation nonce to allow third-party contracts to identify the operation.\n        uint32 nonce;\n    }\n\n    /**\n     * @dev The identifier of the admin role. Required to perform most configuration operations including\n     * other roles' management and target restrictions.\n     */\n    uint64 public constant ADMIN_ROLE = type(uint64).min; // 0\n\n    /**\n     * @dev The identifier of the public role. Automatically granted to all addresses with no delay.\n     */\n    uint64 public constant PUBLIC_ROLE = type(uint64).max; // 2**64-1\n\n    mapping(address target => TargetConfig mode) private _targets;\n    mapping(uint64 roleId => Role) private _roles;\n    mapping(bytes32 operationId => Schedule) private _schedules;\n\n    // Used to identify operations that are currently being executed via {execute}.\n    // This should be transient storage when supported by the EVM.\n    bytes32 private _executionId;\n\n    /**\n     * @dev Check that the caller is authorized to perform the operation.\n     * See {AccessManager} description for a detailed breakdown of the authorization logic.\n     */\n    modifier onlyAuthorized() {\n        _checkAuthorized();\n        _;\n    }\n\n    constructor(address initialAdmin) {\n        if (initialAdmin == address(0)) {\n            revert AccessManagerInvalidInitialAdmin(address(0));\n        }\n\n        // admin is active immediately and without any execution delay.\n        _grantRole(ADMIN_ROLE, initialAdmin, 0, 0);\n    }\n\n    // =================================================== GETTERS ====================================================\n    /// @inheritdoc IAccessManager\n    function canCall(\n        address caller,\n        address target,\n        bytes4 selector\n    ) public view virtual returns (bool immediate, uint32 delay) {\n        if (isTargetClosed(target)) {\n            return (false, 0);\n        } else if (caller == address(this)) {\n            // Caller is AccessManager, this means the call was sent through {execute} and it already checked\n            // permissions. We verify that the call \"identifier\", which is set during {execute}, is correct.\n            return (_isExecuting(target, selector), 0);\n        } else {\n            uint64 roleId = getTargetFunctionRole(target, selector);\n            (bool isMember, uint32 currentDelay) = hasRole(roleId, caller);\n            return isMember ? (currentDelay == 0, currentDelay) : (false, 0);\n        }\n    }\n\n    /// @inheritdoc IAccessManager\n    function expiration() public view virtual returns (uint32) {\n        return 1 weeks;\n    }\n\n    /// @inheritdoc IAccessManager\n    function minSetback() public view virtual returns (uint32) {\n        return 5 days;\n    }\n\n    /// @inheritdoc IAccessManager\n    function isTargetClosed(address target) public view virtual returns (bool) {\n        return _targets[target].closed;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getTargetFunctionRole(address target, bytes4 selector) public view virtual returns (uint64) {\n        return _targets[target].allowedRoles[selector];\n    }\n\n    /// @inheritdoc IAccessManager\n    function getTargetAdminDelay(address target) public view virtual returns (uint32) {\n        return _targets[target].adminDelay.get();\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleAdmin(uint64 roleId) public view virtual returns (uint64) {\n        return _roles[roleId].admin;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleGuardian(uint64 roleId) public view virtual returns (uint64) {\n        return _roles[roleId].guardian;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getRoleGrantDelay(uint64 roleId) public view virtual returns (uint32) {\n        return _roles[roleId].grantDelay.get();\n    }\n\n    /// @inheritdoc IAccessManager\n    function getAccess(\n        uint64 roleId,\n        address account\n    ) public view virtual returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect) {\n        Access storage access = _roles[roleId].members[account];\n\n        since = access.since;\n        (currentDelay, pendingDelay, effect) = access.delay.getFull();\n\n        return (since, currentDelay, pendingDelay, effect);\n    }\n\n    /// @inheritdoc IAccessManager\n    function hasRole(\n        uint64 roleId,\n        address account\n    ) public view virtual returns (bool isMember, uint32 executionDelay) {\n        if (roleId == PUBLIC_ROLE) {\n            return (true, 0);\n        } else {\n            (uint48 hasRoleSince, uint32 currentDelay, , ) = getAccess(roleId, account);\n            return (hasRoleSince != 0 && hasRoleSince <= Time.timestamp(), currentDelay);\n        }\n    }\n\n    // =============================================== ROLE MANAGEMENT ===============================================\n    /// @inheritdoc IAccessManager\n    function labelRole(uint64 roleId, string calldata label) public virtual onlyAuthorized {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n        emit RoleLabel(roleId, label);\n    }\n\n    /// @inheritdoc IAccessManager\n    function grantRole(uint64 roleId, address account, uint32 executionDelay) public virtual onlyAuthorized {\n        _grantRole(roleId, account, getRoleGrantDelay(roleId), executionDelay);\n    }\n\n    /// @inheritdoc IAccessManager\n    function revokeRole(uint64 roleId, address account) public virtual onlyAuthorized {\n        _revokeRole(roleId, account);\n    }\n\n    /// @inheritdoc IAccessManager\n    function renounceRole(uint64 roleId, address callerConfirmation) public virtual {\n        if (callerConfirmation != _msgSender()) {\n            revert AccessManagerBadConfirmation();\n        }\n        _revokeRole(roleId, callerConfirmation);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setRoleAdmin(uint64 roleId, uint64 admin) public virtual onlyAuthorized {\n        _setRoleAdmin(roleId, admin);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setRoleGuardian(uint64 roleId, uint64 guardian) public virtual onlyAuthorized {\n        _setRoleGuardian(roleId, guardian);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setGrantDelay(uint64 roleId, uint32 newDelay) public virtual onlyAuthorized {\n        _setGrantDelay(roleId, newDelay);\n    }\n\n    /**\n     * @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n     *\n     * Emits a {RoleGranted} event.\n     */\n    function _grantRole(\n        uint64 roleId,\n        address account,\n        uint32 grantDelay,\n        uint32 executionDelay\n    ) internal virtual returns (bool) {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        bool newMember = _roles[roleId].members[account].since == 0;\n        uint48 since;\n\n        if (newMember) {\n            since = Time.timestamp() + grantDelay;\n            _roles[roleId].members[account] = Access({since: since, delay: executionDelay.toDelay()});\n        } else {\n            // No setback here. Value can be reset by doing revoke + grant, effectively allowing the admin to perform\n            // any change to the execution delay within the duration of the role admin delay.\n            (_roles[roleId].members[account].delay, since) = _roles[roleId].members[account].delay.withUpdate(\n                executionDelay,\n                0\n            );\n        }\n\n        emit RoleGranted(roleId, account, executionDelay, since, newMember);\n        return newMember;\n    }\n\n    /**\n     * @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.\n     * Returns true if the role was previously granted.\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function _revokeRole(uint64 roleId, address account) internal virtual returns (bool) {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        if (_roles[roleId].members[account].since == 0) {\n            return false;\n        }\n\n        delete _roles[roleId].members[account];\n\n        emit RoleRevoked(roleId, account);\n        return true;\n    }\n\n    /**\n     * @dev Internal version of {setRoleAdmin} without access control.\n     *\n     * Emits a {RoleAdminChanged} event.\n     *\n     * NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n     * anyone to set grant or revoke such role.\n     */\n    function _setRoleAdmin(uint64 roleId, uint64 admin) internal virtual {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        _roles[roleId].admin = admin;\n\n        emit RoleAdminChanged(roleId, admin);\n    }\n\n    /**\n     * @dev Internal version of {setRoleGuardian} without access control.\n     *\n     * Emits a {RoleGuardianChanged} event.\n     *\n     * NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n     * anyone to cancel any scheduled operation for such role.\n     */\n    function _setRoleGuardian(uint64 roleId, uint64 guardian) internal virtual {\n        if (roleId == ADMIN_ROLE || roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        _roles[roleId].guardian = guardian;\n\n        emit RoleGuardianChanged(roleId, guardian);\n    }\n\n    /**\n     * @dev Internal version of {setGrantDelay} without access control.\n     *\n     * Emits a {RoleGrantDelayChanged} event.\n     */\n    function _setGrantDelay(uint64 roleId, uint32 newDelay) internal virtual {\n        if (roleId == PUBLIC_ROLE) {\n            revert AccessManagerLockedRole(roleId);\n        }\n\n        uint48 effect;\n        (_roles[roleId].grantDelay, effect) = _roles[roleId].grantDelay.withUpdate(newDelay, minSetback());\n\n        emit RoleGrantDelayChanged(roleId, newDelay, effect);\n    }\n\n    // ============================================= FUNCTION MANAGEMENT ==============================================\n    /// @inheritdoc IAccessManager\n    function setTargetFunctionRole(\n        address target,\n        bytes4[] calldata selectors,\n        uint64 roleId\n    ) public virtual onlyAuthorized {\n        for (uint256 i = 0; i < selectors.length; ++i) {\n            _setTargetFunctionRole(target, selectors[i], roleId);\n        }\n    }\n\n    /**\n     * @dev Internal version of {setTargetFunctionRole} without access control.\n     *\n     * Emits a {TargetFunctionRoleUpdated} event.\n     */\n    function _setTargetFunctionRole(address target, bytes4 selector, uint64 roleId) internal virtual {\n        _targets[target].allowedRoles[selector] = roleId;\n        emit TargetFunctionRoleUpdated(target, selector, roleId);\n    }\n\n    /// @inheritdoc IAccessManager\n    function setTargetAdminDelay(address target, uint32 newDelay) public virtual onlyAuthorized {\n        _setTargetAdminDelay(target, newDelay);\n    }\n\n    /**\n     * @dev Internal version of {setTargetAdminDelay} without access control.\n     *\n     * Emits a {TargetAdminDelayUpdated} event.\n     */\n    function _setTargetAdminDelay(address target, uint32 newDelay) internal virtual {\n        uint48 effect;\n        (_targets[target].adminDelay, effect) = _targets[target].adminDelay.withUpdate(newDelay, minSetback());\n\n        emit TargetAdminDelayUpdated(target, newDelay, effect);\n    }\n\n    // =============================================== MODE MANAGEMENT ================================================\n    /// @inheritdoc IAccessManager\n    function setTargetClosed(address target, bool closed) public virtual onlyAuthorized {\n        _setTargetClosed(target, closed);\n    }\n\n    /**\n     * @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n     *\n     * Emits a {TargetClosed} event.\n     */\n    function _setTargetClosed(address target, bool closed) internal virtual {\n        _targets[target].closed = closed;\n        emit TargetClosed(target, closed);\n    }\n\n    // ============================================== DELAYED OPERATIONS ==============================================\n    /// @inheritdoc IAccessManager\n    function getSchedule(bytes32 id) public view virtual returns (uint48) {\n        uint48 timepoint = _schedules[id].timepoint;\n        return _isExpired(timepoint) ? 0 : timepoint;\n    }\n\n    /// @inheritdoc IAccessManager\n    function getNonce(bytes32 id) public view virtual returns (uint32) {\n        return _schedules[id].nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function schedule(\n        address target,\n        bytes calldata data,\n        uint48 when\n    ) public virtual returns (bytes32 operationId, uint32 nonce) {\n        address caller = _msgSender();\n\n        // Fetch restrictions that apply to the caller on the targeted function\n        (, uint32 setback) = _canCallExtended(caller, target, data);\n\n        uint48 minWhen = Time.timestamp() + setback;\n\n        // If call with delay is not authorized, or if requested timing is too soon, revert\n        if (setback == 0 || (when > 0 && when < minWhen)) {\n            revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));\n        }\n\n        // Reuse variable due to stack too deep\n        when = uint48(Math.max(when, minWhen)); // cast is safe: both inputs are uint48\n\n        // If caller is authorised, schedule operation\n        operationId = hashOperation(caller, target, data);\n\n        _checkNotScheduled(operationId);\n\n        unchecked {\n            // It's not feasible to overflow the nonce in less than 1000 years\n            nonce = _schedules[operationId].nonce + 1;\n        }\n        _schedules[operationId].timepoint = when;\n        _schedules[operationId].nonce = nonce;\n        emit OperationScheduled(operationId, nonce, when, caller, target, data);\n\n        // Using named return values because otherwise we get stack too deep\n    }\n\n    /**\n     * @dev Reverts if the operation is currently scheduled and has not expired.\n     *\n     * NOTE: This function was introduced due to stack too deep errors in schedule.\n     */\n    function _checkNotScheduled(bytes32 operationId) private view {\n        uint48 prevTimepoint = _schedules[operationId].timepoint;\n        if (prevTimepoint != 0 && !_isExpired(prevTimepoint)) {\n            revert AccessManagerAlreadyScheduled(operationId);\n        }\n    }\n\n    /// @inheritdoc IAccessManager\n    // Reentrancy is not an issue because permissions are checked on msg.sender. Additionally,\n    // _consumeScheduledOp guarantees a scheduled operation is only executed once.\n    // slither-disable-next-line reentrancy-no-eth\n    function execute(address target, bytes calldata data) public payable virtual returns (uint32) {\n        address caller = _msgSender();\n\n        // Fetch restrictions that apply to the caller on the targeted function\n        (bool immediate, uint32 setback) = _canCallExtended(caller, target, data);\n\n        // If call is not authorized, revert\n        if (!immediate && setback == 0) {\n            revert AccessManagerUnauthorizedCall(caller, target, _checkSelector(data));\n        }\n\n        bytes32 operationId = hashOperation(caller, target, data);\n        uint32 nonce;\n\n        // If caller is authorised, check operation was scheduled early enough\n        // Consume an available schedule even if there is no currently enforced delay\n        if (setback != 0 || getSchedule(operationId) != 0) {\n            nonce = _consumeScheduledOp(operationId);\n        }\n\n        // Mark the target and selector as authorised\n        bytes32 executionIdBefore = _executionId;\n        _executionId = _hashExecutionId(target, _checkSelector(data));\n\n        // Perform call\n        Address.functionCallWithValue(target, data, msg.value);\n\n        // Reset execute identifier\n        _executionId = executionIdBefore;\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function cancel(address caller, address target, bytes calldata data) public virtual returns (uint32) {\n        address msgsender = _msgSender();\n        bytes4 selector = _checkSelector(data);\n\n        bytes32 operationId = hashOperation(caller, target, data);\n        if (_schedules[operationId].timepoint == 0) {\n            revert AccessManagerNotScheduled(operationId);\n        } else if (caller != msgsender) {\n            // calls can only be canceled by the account that scheduled them, a global admin, or by a guardian of the required role.\n            (bool isAdmin, ) = hasRole(ADMIN_ROLE, msgsender);\n            (bool isGuardian, ) = hasRole(getRoleGuardian(getTargetFunctionRole(target, selector)), msgsender);\n            if (!isAdmin && !isGuardian) {\n                revert AccessManagerUnauthorizedCancel(msgsender, caller, target, selector);\n            }\n        }\n\n        delete _schedules[operationId].timepoint; // reset the timepoint, keep the nonce\n        uint32 nonce = _schedules[operationId].nonce;\n        emit OperationCanceled(operationId, nonce);\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function consumeScheduledOp(address caller, bytes calldata data) public virtual {\n        address target = _msgSender();\n        if (IAccessManaged(target).isConsumingScheduledOp() != IAccessManaged.isConsumingScheduledOp.selector) {\n            revert AccessManagerUnauthorizedConsume(target);\n        }\n        _consumeScheduledOp(hashOperation(caller, target, data));\n    }\n\n    /**\n     * @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n     *\n     * Returns the nonce of the scheduled operation that is consumed.\n     */\n    function _consumeScheduledOp(bytes32 operationId) internal virtual returns (uint32) {\n        uint48 timepoint = _schedules[operationId].timepoint;\n        uint32 nonce = _schedules[operationId].nonce;\n\n        if (timepoint == 0) {\n            revert AccessManagerNotScheduled(operationId);\n        } else if (timepoint > Time.timestamp()) {\n            revert AccessManagerNotReady(operationId);\n        } else if (_isExpired(timepoint)) {\n            revert AccessManagerExpired(operationId);\n        }\n\n        delete _schedules[operationId].timepoint; // reset the timepoint, keep the nonce\n        emit OperationExecuted(operationId, nonce);\n\n        return nonce;\n    }\n\n    /// @inheritdoc IAccessManager\n    function hashOperation(address caller, address target, bytes calldata data) public view virtual returns (bytes32) {\n        return keccak256(abi.encode(caller, target, data));\n    }\n\n    // ==================================================== OTHERS ====================================================\n    /// @inheritdoc IAccessManager\n    function updateAuthority(address target, address newAuthority) public virtual onlyAuthorized {\n        IAccessManaged(target).setAuthority(newAuthority);\n    }\n\n    // ================================================= ADMIN LOGIC ==================================================\n    /**\n     * @dev Check if the current call is authorized according to admin and roles logic.\n     *\n     * WARNING: Carefully review the considerations of {AccessManaged-restricted} since they apply to this modifier.\n     */\n    function _checkAuthorized() private {\n        address caller = _msgSender();\n        (bool immediate, uint32 delay) = _canCallSelf(caller, _msgData());\n        if (!immediate) {\n            if (delay == 0) {\n                (, uint64 requiredRole, ) = _getAdminRestrictions(_msgData());\n                revert AccessManagerUnauthorizedAccount(caller, requiredRole);\n            } else {\n                _consumeScheduledOp(hashOperation(caller, address(this), _msgData()));\n            }\n        }\n    }\n\n    /**\n     * @dev Get the admin restrictions of a given function call based on the function and arguments involved.\n     *\n     * Returns:\n     * - bool restricted: does this data match a restricted operation\n     * - uint64: which role is this operation restricted to\n     * - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)\n     */\n    function _getAdminRestrictions(\n        bytes calldata data\n    ) private view returns (bool adminRestricted, uint64 roleAdminId, uint32 executionDelay) {\n        if (data.length < 4) {\n            return (false, 0, 0);\n        }\n\n        bytes4 selector = _checkSelector(data);\n\n        // Restricted to ADMIN with no delay beside any execution delay the caller may have\n        if (\n            selector == this.labelRole.selector ||\n            selector == this.setRoleAdmin.selector ||\n            selector == this.setRoleGuardian.selector ||\n            selector == this.setGrantDelay.selector ||\n            selector == this.setTargetAdminDelay.selector\n        ) {\n            return (true, ADMIN_ROLE, 0);\n        }\n\n        // Restricted to ADMIN with the admin delay corresponding to the target\n        if (\n            selector == this.updateAuthority.selector ||\n            selector == this.setTargetClosed.selector ||\n            selector == this.setTargetFunctionRole.selector\n        ) {\n            // First argument is a target.\n            address target = abi.decode(data[0x04:0x24], (address));\n            uint32 delay = getTargetAdminDelay(target);\n            return (true, ADMIN_ROLE, delay);\n        }\n\n        // Restricted to that role's admin with no delay beside any execution delay the caller may have.\n        if (selector == this.grantRole.selector || selector == this.revokeRole.selector) {\n            // First argument is a roleId.\n            uint64 roleId = abi.decode(data[0x04:0x24], (uint64));\n            return (true, getRoleAdmin(roleId), 0);\n        }\n\n        return (false, getTargetFunctionRole(address(this), selector), 0);\n    }\n\n    // =================================================== HELPERS ====================================================\n    /**\n     * @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}\n     * when the target is this contract.\n     *\n     * Returns:\n     * - bool immediate: whether the operation can be executed immediately (with no delay)\n     * - uint32 delay: the execution delay\n     */\n    function _canCallExtended(\n        address caller,\n        address target,\n        bytes calldata data\n    ) private view returns (bool immediate, uint32 delay) {\n        if (target == address(this)) {\n            return _canCallSelf(caller, data);\n        } else {\n            return data.length < 4 ? (false, 0) : canCall(caller, target, _checkSelector(data));\n        }\n    }\n\n    /**\n     * @dev A version of {canCall} that checks for restrictions in this contract.\n     */\n    function _canCallSelf(address caller, bytes calldata data) private view returns (bool immediate, uint32 delay) {\n        if (data.length < 4) {\n            return (false, 0);\n        }\n\n        if (caller == address(this)) {\n            // Caller is AccessManager, this means the call was sent through {execute} and it already checked\n            // permissions. We verify that the call \"identifier\", which is set during {execute}, is correct.\n            return (_isExecuting(address(this), _checkSelector(data)), 0);\n        }\n\n        (bool adminRestricted, uint64 roleId, uint32 operationDelay) = _getAdminRestrictions(data);\n\n        // isTargetClosed apply to non-admin-restricted function\n        if (!adminRestricted && isTargetClosed(address(this))) {\n            return (false, 0);\n        }\n\n        (bool inRole, uint32 executionDelay) = hasRole(roleId, caller);\n        if (!inRole) {\n            return (false, 0);\n        }\n\n        // downcast is safe because both options are uint32\n        delay = uint32(Math.max(operationDelay, executionDelay));\n        return (delay == 0, delay);\n    }\n\n    /**\n     * @dev Returns true if a call with `target` and `selector` is being executed via {executed}.\n     */\n    function _isExecuting(address target, bytes4 selector) private view returns (bool) {\n        return _executionId == _hashExecutionId(target, selector);\n    }\n\n    /**\n     * @dev Returns true if a schedule timepoint is past its expiration deadline.\n     */\n    function _isExpired(uint48 timepoint) private view returns (bool) {\n        return timepoint + expiration() <= Time.timestamp();\n    }\n\n    /**\n     * @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes\n     */\n    function _checkSelector(bytes calldata data) private pure returns (bytes4) {\n        return bytes4(data[0:4]);\n    }\n\n    /**\n     * @dev Hashing function for execute protection\n     */\n    function _hashExecutionId(address target, bytes4 selector) private pure returns (bytes32) {\n        return keccak256(abi.encode(target, selector));\n    }\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/manager/IAccessManaged.sol)\n\npragma solidity ^0.8.20;\n\ninterface IAccessManaged {\n    /**\n     * @dev Authority that manages this contract was updated.\n     */\n    event AuthorityUpdated(address authority);\n\n    error AccessManagedUnauthorized(address caller);\n    error AccessManagedRequiredDelay(address caller, uint32 delay);\n    error AccessManagedInvalidAuthority(address authority);\n\n    /**\n     * @dev Returns the current authority.\n     */\n    function authority() external view returns (address);\n\n    /**\n     * @dev Transfers control to a new authority. The caller must be the current authority.\n     */\n    function setAuthority(address) external;\n\n    /**\n     * @dev Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is\n     * being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs\n     * attacker controlled calls.\n     */\n    function isConsumingScheduledOp() external view returns (bytes4);\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/manager/IAccessManager.sol)\n\npragma solidity ^0.8.20;\n\nimport {Time} from \"../../utils/types/Time.sol\";\n\ninterface IAccessManager {\n    /**\n     * @dev A delayed operation was scheduled.\n     */\n    event OperationScheduled(\n        bytes32 indexed operationId,\n        uint32 indexed nonce,\n        uint48 schedule,\n        address caller,\n        address target,\n        bytes data\n    );\n\n    /**\n     * @dev A scheduled operation was executed.\n     */\n    event OperationExecuted(bytes32 indexed operationId, uint32 indexed nonce);\n\n    /**\n     * @dev A scheduled operation was canceled.\n     */\n    event OperationCanceled(bytes32 indexed operationId, uint32 indexed nonce);\n\n    /**\n     * @dev Informational labelling for a roleId.\n     */\n    event RoleLabel(uint64 indexed roleId, string label);\n\n    /**\n     * @dev Emitted when `account` is granted `roleId`.\n     *\n     * NOTE: The meaning of the `since` argument depends on the `newMember` argument.\n     * If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role,\n     * otherwise it indicates the execution delay for this account and roleId is updated.\n     */\n    event RoleGranted(uint64 indexed roleId, address indexed account, uint32 delay, uint48 since, bool newMember);\n\n    /**\n     * @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\n     */\n    event RoleRevoked(uint64 indexed roleId, address indexed account);\n\n    /**\n     * @dev Role acting as admin over a given `roleId` is updated.\n     */\n    event RoleAdminChanged(uint64 indexed roleId, uint64 indexed admin);\n\n    /**\n     * @dev Role acting as guardian over a given `roleId` is updated.\n     */\n    event RoleGuardianChanged(uint64 indexed roleId, uint64 indexed guardian);\n\n    /**\n     * @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\n     */\n    event RoleGrantDelayChanged(uint64 indexed roleId, uint32 delay, uint48 since);\n\n    /**\n     * @dev Target mode is updated (true = closed, false = open).\n     */\n    event TargetClosed(address indexed target, bool closed);\n\n    /**\n     * @dev Role required to invoke `selector` on `target` is updated to `roleId`.\n     */\n    event TargetFunctionRoleUpdated(address indexed target, bytes4 selector, uint64 indexed roleId);\n\n    /**\n     * @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached.\n     */\n    event TargetAdminDelayUpdated(address indexed target, uint32 delay, uint48 since);\n\n    error AccessManagerAlreadyScheduled(bytes32 operationId);\n    error AccessManagerNotScheduled(bytes32 operationId);\n    error AccessManagerNotReady(bytes32 operationId);\n    error AccessManagerExpired(bytes32 operationId);\n    error AccessManagerLockedRole(uint64 roleId);\n    error AccessManagerBadConfirmation();\n    error AccessManagerUnauthorizedAccount(address msgsender, uint64 roleId);\n    error AccessManagerUnauthorizedCall(address caller, address target, bytes4 selector);\n    error AccessManagerUnauthorizedConsume(address target);\n    error AccessManagerUnauthorizedCancel(address msgsender, address caller, address target, bytes4 selector);\n    error AccessManagerInvalidInitialAdmin(address initialAdmin);\n\n    /**\n     * @dev Check if an address (`caller`) is authorised to call a given function on a given contract directly (with\n     * no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule}\n     * & {execute} workflow.\n     *\n     * This function is usually called by the targeted contract to control immediate execution of restricted functions.\n     * Therefore we only return true if the call can be performed without any delay. If the call is subject to a\n     * previously set delay (not zero), then the function should return false and the caller should schedule the operation\n     * for future execution.\n     *\n     * If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise\n     * the operation can be executed if and only if delay is greater than 0.\n     *\n     * NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that\n     * is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail\n     * to identify the indirect workflow, and will consider calls that require a delay to be forbidden.\n     *\n     * NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the\n     * {AccessManager} documentation.\n     */\n    function canCall(\n        address caller,\n        address target,\n        bytes4 selector\n    ) external view returns (bool allowed, uint32 delay);\n\n    /**\n     * @dev Expiration delay for scheduled proposals. Defaults to 1 week.\n     *\n     * IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately,\n     * disabling any scheduling usage.\n     */\n    function expiration() external view returns (uint32);\n\n    /**\n     * @dev Minimum setback for all delay updates, with the exception of execution delays. It\n     * can be increased without setback (and reset via {revokeRole} in the case event of an\n     * accidental increase). Defaults to 5 days.\n     */\n    function minSetback() external view returns (uint32);\n\n    /**\n     * @dev Get whether the contract is closed disabling any access. Otherwise role permissions are applied.\n     *\n     * NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\n     */\n    function isTargetClosed(address target) external view returns (bool);\n\n    /**\n     * @dev Get the role required to call a function.\n     */\n    function getTargetFunctionRole(address target, bytes4 selector) external view returns (uint64);\n\n    /**\n     * @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\n     */\n    function getTargetAdminDelay(address target) external view returns (uint32);\n\n    /**\n     * @dev Get the id of the role that acts as an admin for the given role.\n     *\n     * The admin permission is required to grant the role, revoke the role and update the execution delay to execute\n     * an operation that is restricted to this role.\n     */\n    function getRoleAdmin(uint64 roleId) external view returns (uint64);\n\n    /**\n     * @dev Get the role that acts as a guardian for a given role.\n     *\n     * The guardian permission allows canceling operations that have been scheduled under the role.\n     */\n    function getRoleGuardian(uint64 roleId) external view returns (uint64);\n\n    /**\n     * @dev Get the role current grant delay.\n     *\n     * Its value may change at any point without an event emitted following a call to {setGrantDelay}.\n     * Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\n     */\n    function getRoleGrantDelay(uint64 roleId) external view returns (uint32);\n\n    /**\n     * @dev Get the access details for a given account for a given role. These details include the timepoint at which\n     * membership becomes active, and the delay applied to all operation by this user that requires this permission\n     * level.\n     *\n     * Returns:\n     * [0] Timestamp at which the account membership becomes valid. 0 means role is not granted.\n     * [1] Current execution delay for the account.\n     * [2] Pending execution delay for the account.\n     * [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\n     */\n    function getAccess(\n        uint64 roleId,\n        address account\n    ) external view returns (uint48 since, uint32 currentDelay, uint32 pendingDelay, uint48 effect);\n\n    /**\n     * @dev Check if a given account currently has the permission level corresponding to a given role. Note that this\n     * permission might be associated with an execution delay. {getAccess} can provide more details.\n     */\n    function hasRole(uint64 roleId, address account) external view returns (bool isMember, uint32 executionDelay);\n\n    /**\n     * @dev Give a label to a role, for improved role discoverability by UIs.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleLabel} event.\n     */\n    function labelRole(uint64 roleId, string calldata label) external;\n\n    /**\n     * @dev Add `account` to `roleId`, or change its execution delay.\n     *\n     * This gives the account the authorization to call any function that is restricted to this role. An optional\n     * execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation\n     * that is restricted to members of this role. The user will only be able to execute the operation after the delay has\n     * passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}).\n     *\n     * If the account has already been granted this role, the execution delay will be updated. This update is not\n     * immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is\n     * called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any\n     * operation executed in the 3 hours that follows this update was indeed scheduled before this update.\n     *\n     * Requirements:\n     *\n     * - the caller must be an admin for the role (see {getRoleAdmin})\n     * - granted role must not be the `PUBLIC_ROLE`\n     *\n     * Emits a {RoleGranted} event.\n     */\n    function grantRole(uint64 roleId, address account, uint32 executionDelay) external;\n\n    /**\n     * @dev Remove an account from a role, with immediate effect. If the account does not have the role, this call has\n     * no effect.\n     *\n     * Requirements:\n     *\n     * - the caller must be an admin for the role (see {getRoleAdmin})\n     * - revoked role must not be the `PUBLIC_ROLE`\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function revokeRole(uint64 roleId, address account) external;\n\n    /**\n     * @dev Renounce role permissions for the calling account with immediate effect. If the sender is not in\n     * the role this call has no effect.\n     *\n     * Requirements:\n     *\n     * - the caller must be `callerConfirmation`.\n     *\n     * Emits a {RoleRevoked} event if the account had the role.\n     */\n    function renounceRole(uint64 roleId, address callerConfirmation) external;\n\n    /**\n     * @dev Change admin role for a given role.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleAdminChanged} event\n     */\n    function setRoleAdmin(uint64 roleId, uint64 admin) external;\n\n    /**\n     * @dev Change guardian role for a given role.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleGuardianChanged} event\n     */\n    function setRoleGuardian(uint64 roleId, uint64 guardian) external;\n\n    /**\n     * @dev Update the delay for granting a `roleId`.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {RoleGrantDelayChanged} event.\n     */\n    function setGrantDelay(uint64 roleId, uint32 newDelay) external;\n\n    /**\n     * @dev Set the role required to call functions identified by the `selectors` in the `target` contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetFunctionRoleUpdated} event per selector.\n     */\n    function setTargetFunctionRole(address target, bytes4[] calldata selectors, uint64 roleId) external;\n\n    /**\n     * @dev Set the delay for changing the configuration of a given target contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetAdminDelayUpdated} event.\n     */\n    function setTargetAdminDelay(address target, uint32 newDelay) external;\n\n    /**\n     * @dev Set the closed flag for a contract.\n     *\n     * Closing the manager itself won't disable access to admin methods to avoid locking the contract.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     *\n     * Emits a {TargetClosed} event.\n     */\n    function setTargetClosed(address target, bool closed) external;\n\n    /**\n     * @dev Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the\n     * operation is not yet scheduled, has expired, was executed, or was canceled.\n     */\n    function getSchedule(bytes32 id) external view returns (uint48);\n\n    /**\n     * @dev Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never\n     * been scheduled.\n     */\n    function getNonce(bytes32 id) external view returns (uint32);\n\n    /**\n     * @dev Schedule a delayed operation for future execution, and return the operation identifier. It is possible to\n     * choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays\n     * required for the caller. The special value zero will automatically set the earliest possible time.\n     *\n     * Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when\n     * the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this\n     * scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}.\n     *\n     * Emits a {OperationScheduled} event.\n     *\n     * NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If\n     * this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target\n     * contract if it is using standard Solidity ABI encoding.\n     */\n    function schedule(\n        address target,\n        bytes calldata data,\n        uint48 when\n    ) external returns (bytes32 operationId, uint32 nonce);\n\n    /**\n     * @dev Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the\n     * execution delay is 0.\n     *\n     * Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the\n     * operation wasn't previously scheduled (if the caller doesn't have an execution delay).\n     *\n     * Emits an {OperationExecuted} event only if the call was scheduled and delayed.\n     */\n    function execute(address target, bytes calldata data) external payable returns (uint32);\n\n    /**\n     * @dev Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled\n     * operation that is cancelled.\n     *\n     * Requirements:\n     *\n     * - the caller must be the proposer, a guardian of the targeted function, or a global admin\n     *\n     * Emits a {OperationCanceled} event.\n     */\n    function cancel(address caller, address target, bytes calldata data) external returns (uint32);\n\n    /**\n     * @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed\n     * (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.\n     *\n     * This is useful for contract that want to enforce that calls targeting them were scheduled on the manager,\n     * with all the verifications that it implies.\n     *\n     * Emit a {OperationExecuted} event.\n     */\n    function consumeScheduledOp(address caller, bytes calldata data) external;\n\n    /**\n     * @dev Hashing function for delayed operations.\n     */\n    function hashOperation(address caller, address target, bytes calldata data) external view returns (bytes32);\n\n    /**\n     * @dev Changes the authority of a target managed by this manager instance.\n     *\n     * Requirements:\n     *\n     * - the caller must be a global admin\n     */\n    function updateAuthority(address target, address newAuthority) external;\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822Proxiable {\n    /**\n     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n     * address.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy.\n     */\n    function proxiableUUID() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC20InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC20InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     * @param allowance Amount of tokens a `spender` is allowed to operate with.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC20InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n    /**\n     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n     * Used in balance queries.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC721InvalidOwner(address owner);\n\n    /**\n     * @dev Indicates a `tokenId` whose `owner` is the zero address.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC721NonexistentToken(uint256 tokenId);\n\n    /**\n     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param tokenId Identifier number of a token.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC721InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC721InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC721InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC1155InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC1155InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC1155MissingApprovalForAll(address operator, address owner);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC1155InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC1155InvalidOperator(address operator);\n\n    /**\n     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n     * Used in batch transfers.\n     * @param idsLength Length of the array of token identifiers\n     * @param valuesLength Length of the array of token amounts\n     */\n    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @title IERC1363\n * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n *\n * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\n */\ninterface IERC1363 is IERC20, IERC165 {\n    /*\n     * Note: the ERC-165 identifier for this interface is 0xb0202a11.\n     * 0xb0202a11 ===\n     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^\n     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^\n     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^\n     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^\n     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^\n     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))\n     */\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferAndCall(address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @param data Additional data with no specified format, sent in call to `to`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param from The address which you want to send tokens from.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param from The address which you want to send tokens from.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @param data Additional data with no specified format, sent in call to `to`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n     * @param spender The address which will spend the funds.\n     * @param value The amount of tokens to be spent.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function approveAndCall(address spender, uint256 value) external returns (bool);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n     * @param spender The address which will spend the funds.\n     * @param value The amount of tokens to be spent.\n     * @param data Additional data with no specified format, sent in call to `spender`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n */\ninterface IERC1967 {\n    /**\n     * @dev Emitted when the implementation is upgraded.\n     */\n    event Upgraded(address indexed implementation);\n\n    /**\n     * @dev Emitted when the admin account has changed.\n     */\n    event AdminChanged(address previousAdmin, address newAdmin);\n\n    /**\n     * @dev Emitted when the beacon is changed.\n     */\n    event BeaconUpgraded(address indexed beacon);\n}\n"},"@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20Metadata} from \"../token/ERC20/extensions/IERC20Metadata.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC4626.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"../token/ERC20/extensions/IERC20Metadata.sol\";\n\n/**\n * @dev Interface of the ERC-4626 \"Tokenized Vault Standard\", as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n */\ninterface IERC4626 is IERC20, IERC20Metadata {\n    event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);\n\n    event Withdraw(\n        address indexed sender,\n        address indexed receiver,\n        address indexed owner,\n        uint256 assets,\n        uint256 shares\n    );\n\n    /**\n     * @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.\n     *\n     * - MUST be an ERC-20 token contract.\n     * - MUST NOT revert.\n     */\n    function asset() external view returns (address assetTokenAddress);\n\n    /**\n     * @dev Returns the total amount of the underlying asset that is “managed” by Vault.\n     *\n     * - SHOULD include any compounding that occurs from yield.\n     * - MUST be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT revert.\n     */\n    function totalAssets() external view returns (uint256 totalManagedAssets);\n\n    /**\n     * @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal\n     * scenario where all the conditions are met.\n     *\n     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT show any variations depending on the caller.\n     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n     * - MUST NOT revert.\n     *\n     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n     * from.\n     */\n    function convertToShares(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal\n     * scenario where all the conditions are met.\n     *\n     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT show any variations depending on the caller.\n     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n     * - MUST NOT revert.\n     *\n     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n     * from.\n     */\n    function convertToAssets(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,\n     * through a deposit call.\n     *\n     * - MUST return a limited value if receiver is subject to some deposit limit.\n     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.\n     * - MUST NOT revert.\n     */\n    function maxDeposit(address receiver) external view returns (uint256 maxAssets);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given\n     * current on-chain conditions.\n     *\n     * - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit\n     *   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called\n     *   in the same transaction.\n     * - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the\n     *   deposit would be accepted, regardless if the user has enough tokens approved, etc.\n     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by depositing.\n     */\n    function previewDeposit(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens.\n     *\n     * - MUST emit the Deposit event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   deposit execution, and are accounted for during deposit.\n     * - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not\n     *   approving enough underlying tokens to the Vault contract, etc).\n     *\n     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.\n     */\n    function deposit(uint256 assets, address receiver) external returns (uint256 shares);\n\n    /**\n     * @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.\n     * - MUST return a limited value if receiver is subject to some mint limit.\n     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.\n     * - MUST NOT revert.\n     */\n    function maxMint(address receiver) external view returns (uint256 maxShares);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given\n     * current on-chain conditions.\n     *\n     * - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call\n     *   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the\n     *   same transaction.\n     * - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint\n     *   would be accepted, regardless if the user has enough tokens approved, etc.\n     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by minting.\n     */\n    function previewMint(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens.\n     *\n     * - MUST emit the Deposit event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint\n     *   execution, and are accounted for during mint.\n     * - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not\n     *   approving enough underlying tokens to the Vault contract, etc).\n     *\n     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.\n     */\n    function mint(uint256 shares, address receiver) external returns (uint256 assets);\n\n    /**\n     * @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the\n     * Vault, through a withdraw call.\n     *\n     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n     * - MUST NOT revert.\n     */\n    function maxWithdraw(address owner) external view returns (uint256 maxAssets);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,\n     * given current on-chain conditions.\n     *\n     * - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw\n     *   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if\n     *   called\n     *   in the same transaction.\n     * - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though\n     *   the withdrawal would be accepted, regardless if the user has enough shares, etc.\n     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by depositing.\n     */\n    function previewWithdraw(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.\n     *\n     * - MUST emit the Withdraw event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   withdraw execution, and are accounted for during withdraw.\n     * - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner\n     *   not having enough shares, etc).\n     *\n     * Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n     * Those methods should be performed separately.\n     */\n    function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares);\n\n    /**\n     * @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,\n     * through a redeem call.\n     *\n     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n     * - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.\n     * - MUST NOT revert.\n     */\n    function maxRedeem(address owner) external view returns (uint256 maxShares);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block,\n     * given current on-chain conditions.\n     *\n     * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call\n     *   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the\n     *   same transaction.\n     * - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the\n     *   redemption would be accepted, regardless if the user has enough shares, etc.\n     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by redeeming.\n     */\n    function previewRedeem(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.\n     *\n     * - MUST emit the Withdraw event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   redeem execution, and are accounted for during redeem.\n     * - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner\n     *   not having enough shares, etc).\n     *\n     * NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n     * Those methods should be performed separately.\n     */\n    function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets);\n}\n"},"@openzeppelin/contracts/interfaces/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721} from \"../token/ERC721/IERC721.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721Receiver.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../token/ERC721/IERC721Receiver.sol\";\n"},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (metatx/ERC2771Context.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Context variant with ERC-2771 support.\n *\n * WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll\n * be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771\n * specification adding the address size in bytes (20) to the calldata size. An example of an unexpected\n * behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive`\n * function only accessible if `msg.data.length == 0`.\n *\n * WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption.\n * Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender}\n * recovery.\n */\nabstract contract ERC2771Context is Context {\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n    address private immutable _trustedForwarder;\n\n    /**\n     * @dev Initializes the contract with a trusted forwarder, which will be able to\n     * invoke functions on this contract on behalf of other accounts.\n     *\n     * NOTE: The trusted forwarder can be replaced by overriding {trustedForwarder}.\n     */\n    /// @custom:oz-upgrades-unsafe-allow constructor\n    constructor(address trustedForwarder_) {\n        _trustedForwarder = trustedForwarder_;\n    }\n\n    /**\n     * @dev Returns the address of the trusted forwarder.\n     */\n    function trustedForwarder() public view virtual returns (address) {\n        return _trustedForwarder;\n    }\n\n    /**\n     * @dev Indicates whether any particular address is the trusted forwarder.\n     */\n    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {\n        return forwarder == trustedForwarder();\n    }\n\n    /**\n     * @dev Override for `msg.sender`. Defaults to the original `msg.sender` whenever\n     * a call is not performed by the trusted forwarder or the calldata length is less than\n     * 20 bytes (an address length).\n     */\n    function _msgSender() internal view virtual override returns (address) {\n        uint256 calldataLength = msg.data.length;\n        uint256 contextSuffixLength = _contextSuffixLength();\n        if (isTrustedForwarder(msg.sender) && calldataLength >= contextSuffixLength) {\n            return address(bytes20(msg.data[calldataLength - contextSuffixLength:]));\n        } else {\n            return super._msgSender();\n        }\n    }\n\n    /**\n     * @dev Override for `msg.data`. Defaults to the original `msg.data` whenever\n     * a call is not performed by the trusted forwarder or the calldata length is less than\n     * 20 bytes (an address length).\n     */\n    function _msgData() internal view virtual override returns (bytes calldata) {\n        uint256 calldataLength = msg.data.length;\n        uint256 contextSuffixLength = _contextSuffixLength();\n        if (isTrustedForwarder(msg.sender) && calldataLength >= contextSuffixLength) {\n            return msg.data[:calldataLength - contextSuffixLength];\n        } else {\n            return super._msgData();\n        }\n    }\n\n    /**\n     * @dev ERC-2771 specifies the context as being a single address (20 bytes).\n     */\n    function _contextSuffixLength() internal view virtual override returns (uint256) {\n        return 20;\n    }\n}\n"},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n    /**\n     * @dev Must return an address that can be used as a delegate call target.\n     *\n     * {UpgradeableBeacon} will check that this address is a contract.\n     */\n    function implementation() external view returns (address);\n}\n"},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"./ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy {\n    /**\n     * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n     *\n     * If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n     * encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n     *\n     * Requirements:\n     *\n     * - If `data` is empty, `msg.value` must be zero.\n     */\n    constructor(address implementation, bytes memory _data) payable {\n        ERC1967Utils.upgradeToAndCall(implementation, _data);\n    }\n\n    /**\n     * @dev Returns the current implementation address.\n     *\n     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n     * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n     */\n    function _implementation() internal view virtual override returns (address) {\n        return ERC1967Utils.getImplementation();\n    }\n}\n"},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Utils.sol)\n\npragma solidity ^0.8.22;\n\nimport {IBeacon} from \"../beacon/IBeacon.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {StorageSlot} from \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This library provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\n */\nlibrary ERC1967Utils {\n    /**\n     * @dev Storage slot with the address of the current implementation.\n     * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n    /**\n     * @dev The `implementation` of the proxy is invalid.\n     */\n    error ERC1967InvalidImplementation(address implementation);\n\n    /**\n     * @dev The `admin` of the proxy is invalid.\n     */\n    error ERC1967InvalidAdmin(address admin);\n\n    /**\n     * @dev The `beacon` of the proxy is invalid.\n     */\n    error ERC1967InvalidBeacon(address beacon);\n\n    /**\n     * @dev An upgrade function sees `msg.value > 0` that may be lost.\n     */\n    error ERC1967NonPayable();\n\n    /**\n     * @dev Returns the current implementation address.\n     */\n    function getImplementation() internal view returns (address) {\n        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the ERC-1967 implementation slot.\n     */\n    function _setImplementation(address newImplementation) private {\n        if (newImplementation.code.length == 0) {\n            revert ERC1967InvalidImplementation(newImplementation);\n        }\n        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;\n    }\n\n    /**\n     * @dev Performs implementation upgrade with additional setup call if data is nonempty.\n     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n     * to avoid stuck value in the contract.\n     *\n     * Emits an {IERC1967-Upgraded} event.\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) internal {\n        _setImplementation(newImplementation);\n        emit IERC1967.Upgraded(newImplementation);\n\n        if (data.length > 0) {\n            Address.functionDelegateCall(newImplementation, data);\n        } else {\n            _checkNonPayable();\n        }\n    }\n\n    /**\n     * @dev Storage slot with the admin of the contract.\n     * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n    /**\n     * @dev Returns the current admin.\n     *\n     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n     */\n    function getAdmin() internal view returns (address) {\n        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the ERC-1967 admin slot.\n     */\n    function _setAdmin(address newAdmin) private {\n        if (newAdmin == address(0)) {\n            revert ERC1967InvalidAdmin(address(0));\n        }\n        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;\n    }\n\n    /**\n     * @dev Changes the admin of the proxy.\n     *\n     * Emits an {IERC1967-AdminChanged} event.\n     */\n    function changeAdmin(address newAdmin) internal {\n        emit IERC1967.AdminChanged(getAdmin(), newAdmin);\n        _setAdmin(newAdmin);\n    }\n\n    /**\n     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n     * This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n    /**\n     * @dev Returns the current beacon.\n     */\n    function getBeacon() internal view returns (address) {\n        return StorageSlot.getAddressSlot(BEACON_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new beacon in the ERC-1967 beacon slot.\n     */\n    function _setBeacon(address newBeacon) private {\n        if (newBeacon.code.length == 0) {\n            revert ERC1967InvalidBeacon(newBeacon);\n        }\n\n        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;\n\n        address beaconImplementation = IBeacon(newBeacon).implementation();\n        if (beaconImplementation.code.length == 0) {\n            revert ERC1967InvalidImplementation(beaconImplementation);\n        }\n    }\n\n    /**\n     * @dev Change the beacon and trigger a setup call if data is nonempty.\n     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n     * to avoid stuck value in the contract.\n     *\n     * Emits an {IERC1967-BeaconUpgraded} event.\n     *\n     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n     * efficiency.\n     */\n    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {\n        _setBeacon(newBeacon);\n        emit IERC1967.BeaconUpgraded(newBeacon);\n\n        if (data.length > 0) {\n            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n        } else {\n            _checkNonPayable();\n        }\n    }\n\n    /**\n     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n     * if an upgrade doesn't perform an initialization call.\n     */\n    function _checkNonPayable() private {\n        if (msg.value > 0) {\n            revert ERC1967NonPayable();\n        }\n    }\n}\n"},"@openzeppelin/contracts/proxy/Proxy.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n    /**\n     * @dev Delegates the current call to `implementation`.\n     *\n     * This function does not return to its internal call site, it will return directly to the external caller.\n     */\n    function _delegate(address implementation) internal virtual {\n        assembly {\n            // Copy msg.data. We take full control of memory in this inline assembly\n            // block because it will not return to Solidity code. We overwrite the\n            // Solidity scratch pad at memory position 0.\n            calldatacopy(0, 0, calldatasize())\n\n            // Call the implementation.\n            // out and outsize are 0 because we don't know the size yet.\n            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)\n\n            // Copy the returned data.\n            returndatacopy(0, 0, returndatasize())\n\n            switch result\n            // delegatecall returns 0 on error.\n            case 0 {\n                revert(0, returndatasize())\n            }\n            default {\n                return(0, returndatasize())\n            }\n        }\n    }\n\n    /**\n     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n     * function and {_fallback} should delegate.\n     */\n    function _implementation() internal view virtual returns (address);\n\n    /**\n     * @dev Delegates the current call to the address returned by `_implementation()`.\n     *\n     * This function does not return to its internal call site, it will return directly to the external caller.\n     */\n    function _fallback() internal virtual {\n        _delegate(_implementation());\n    }\n\n    /**\n     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n     * function in the contract matches the call data.\n     */\n    fallback() external payable virtual {\n        _fallback();\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC-20\n * applications.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n    mapping(address account => uint256) private _balances;\n\n    mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(string memory name_, string memory symbol_) {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the default value returned by this function, unless\n     * it's overridden.\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return 18;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `value`.\n     */\n    function transfer(address to, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Skips emitting an {Approval} event indicating an allowance update. This is not\n     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n     *\n     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `value`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `value`.\n     */\n    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, value);\n        _transfer(from, to, value);\n        return true;\n    }\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _transfer(address from, address to, uint256 value) internal {\n        if (from == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        if (to == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(from, to, value);\n    }\n\n    /**\n     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n     * this function.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _update(address from, address to, uint256 value) internal virtual {\n        if (from == address(0)) {\n            // Overflow check required: The rest of the code assumes that totalSupply never overflows\n            _totalSupply += value;\n        } else {\n            uint256 fromBalance = _balances[from];\n            if (fromBalance < value) {\n                revert ERC20InsufficientBalance(from, fromBalance, value);\n            }\n            unchecked {\n                // Overflow not possible: value <= fromBalance <= totalSupply.\n                _balances[from] = fromBalance - value;\n            }\n        }\n\n        if (to == address(0)) {\n            unchecked {\n                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n                _totalSupply -= value;\n            }\n        } else {\n            unchecked {\n                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n                _balances[to] += value;\n            }\n        }\n\n        emit Transfer(from, to, value);\n    }\n\n    /**\n     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n     * Relies on the `_update` mechanism\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _mint(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(address(0), account, value);\n    }\n\n    /**\n     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n     * Relies on the `_update` mechanism.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead\n     */\n    function _burn(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        _update(account, address(0), value);\n    }\n\n    /**\n     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     *\n     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address owner, address spender, uint256 value) internal {\n        _approve(owner, spender, value, true);\n    }\n\n    /**\n     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n     *\n     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n     * `Approval` event during `transferFrom` operations.\n     *\n     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n     * true using the following override:\n     *\n     * ```solidity\n     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     *     super._approve(owner, spender, value, true);\n     * }\n     * ```\n     *\n     * Requirements are the same as {_approve}.\n     */\n    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n        if (owner == address(0)) {\n            revert ERC20InvalidApprover(address(0));\n        }\n        if (spender == address(0)) {\n            revert ERC20InvalidSpender(address(0));\n        }\n        _allowances[owner][spender] = value;\n        if (emitEvent) {\n            emit Approval(owner, spender, value);\n        }\n    }\n\n    /**\n     * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n     *\n     * Does not update the allowance value in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Does not emit an {Approval} event.\n     */\n    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance < type(uint256).max) {\n            if (currentAllowance < value) {\n                revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n            }\n            unchecked {\n                _approve(owner, spender, currentAllowance - value, false);\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC4626.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20, IERC20Metadata, ERC20} from \"../ERC20.sol\";\nimport {SafeERC20} from \"../utils/SafeERC20.sol\";\nimport {IERC4626} from \"../../../interfaces/IERC4626.sol\";\nimport {Math} from \"../../../utils/math/Math.sol\";\n\n/**\n * @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n *\n * This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n * underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n * the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n * contract and not the \"assets\" token which is an independent contract.\n *\n * [CAUTION]\n * ====\n * In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n * with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n * attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n * deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n * similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n * verifying the amount received is as expected, using a wrapper that performs these checks such as\n * https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n *\n * Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n * The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n * and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n * itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n * offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n * of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n * With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n * underlying math can be found xref:erc4626.adoc#inflation-attack[here].\n *\n * The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n * to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n * will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n * bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n * `_convertToShares` and `_convertToAssets` functions.\n *\n * To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n * ====\n */\nabstract contract ERC4626 is ERC20, IERC4626 {\n    using Math for uint256;\n\n    IERC20 private immutable _asset;\n    uint8 private immutable _underlyingDecimals;\n\n    /**\n     * @dev Attempted to deposit more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxDeposit(address receiver, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to mint more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxMint(address receiver, uint256 shares, uint256 max);\n\n    /**\n     * @dev Attempted to withdraw more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxWithdraw(address owner, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to redeem more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxRedeem(address owner, uint256 shares, uint256 max);\n\n    /**\n     * @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\n     */\n    constructor(IERC20 asset_) {\n        (bool success, uint8 assetDecimals) = _tryGetAssetDecimals(asset_);\n        _underlyingDecimals = success ? assetDecimals : 18;\n        _asset = asset_;\n    }\n\n    /**\n     * @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way.\n     */\n    function _tryGetAssetDecimals(IERC20 asset_) private view returns (bool ok, uint8 assetDecimals) {\n        (bool success, bytes memory encodedDecimals) = address(asset_).staticcall(\n            abi.encodeCall(IERC20Metadata.decimals, ())\n        );\n        if (success && encodedDecimals.length >= 32) {\n            uint256 returnedDecimals = abi.decode(encodedDecimals, (uint256));\n            if (returnedDecimals <= type(uint8).max) {\n                return (true, uint8(returnedDecimals));\n            }\n        }\n        return (false, 0);\n    }\n\n    /**\n     * @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n     * \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n     * asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n     *\n     * See {IERC20Metadata-decimals}.\n     */\n    function decimals() public view virtual override(IERC20Metadata, ERC20) returns (uint8) {\n        return _underlyingDecimals + _decimalsOffset();\n    }\n\n    /** @dev See {IERC4626-asset}. */\n    function asset() public view virtual returns (address) {\n        return address(_asset);\n    }\n\n    /** @dev See {IERC4626-totalAssets}. */\n    function totalAssets() public view virtual returns (uint256) {\n        return _asset.balanceOf(address(this));\n    }\n\n    /** @dev See {IERC4626-convertToShares}. */\n    function convertToShares(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-convertToAssets}. */\n    function convertToAssets(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-maxDeposit}. */\n    function maxDeposit(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /** @dev See {IERC4626-maxMint}. */\n    function maxMint(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /** @dev See {IERC4626-maxWithdraw}. */\n    function maxWithdraw(address owner) public view virtual returns (uint256) {\n        return _convertToAssets(balanceOf(owner), Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-maxRedeem}. */\n    function maxRedeem(address owner) public view virtual returns (uint256) {\n        return balanceOf(owner);\n    }\n\n    /** @dev See {IERC4626-previewDeposit}. */\n    function previewDeposit(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-previewMint}. */\n    function previewMint(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Ceil);\n    }\n\n    /** @dev See {IERC4626-previewWithdraw}. */\n    function previewWithdraw(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Ceil);\n    }\n\n    /** @dev See {IERC4626-previewRedeem}. */\n    function previewRedeem(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /** @dev See {IERC4626-deposit}. */\n    function deposit(uint256 assets, address receiver) public virtual returns (uint256) {\n        uint256 maxAssets = maxDeposit(receiver);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxDeposit(receiver, assets, maxAssets);\n        }\n\n        uint256 shares = previewDeposit(assets);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return shares;\n    }\n\n    /** @dev See {IERC4626-mint}. */\n    function mint(uint256 shares, address receiver) public virtual returns (uint256) {\n        uint256 maxShares = maxMint(receiver);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxMint(receiver, shares, maxShares);\n        }\n\n        uint256 assets = previewMint(shares);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return assets;\n    }\n\n    /** @dev See {IERC4626-withdraw}. */\n    function withdraw(uint256 assets, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxAssets = maxWithdraw(owner);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxWithdraw(owner, assets, maxAssets);\n        }\n\n        uint256 shares = previewWithdraw(assets);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return shares;\n    }\n\n    /** @dev See {IERC4626-redeem}. */\n    function redeem(uint256 shares, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxShares = maxRedeem(owner);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxRedeem(owner, shares, maxShares);\n        }\n\n        uint256 assets = previewRedeem(shares);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return assets;\n    }\n\n    /**\n     * @dev Internal conversion function (from assets to shares) with support for rounding direction.\n     */\n    function _convertToShares(uint256 assets, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return assets.mulDiv(totalSupply() + 10 ** _decimalsOffset(), totalAssets() + 1, rounding);\n    }\n\n    /**\n     * @dev Internal conversion function (from shares to assets) with support for rounding direction.\n     */\n    function _convertToAssets(uint256 shares, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return shares.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), rounding);\n    }\n\n    /**\n     * @dev Deposit/mint common workflow.\n     */\n    function _deposit(address caller, address receiver, uint256 assets, uint256 shares) internal virtual {\n        // If _asset is ERC-777, `transferFrom` can trigger a reentrancy BEFORE the transfer happens through the\n        // `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the\n        // assets are transferred and before the shares are minted, which is a valid state.\n        // slither-disable-next-line reentrancy-no-eth\n        SafeERC20.safeTransferFrom(_asset, caller, address(this), assets);\n        _mint(receiver, shares);\n\n        emit Deposit(caller, receiver, assets, shares);\n    }\n\n    /**\n     * @dev Withdraw/redeem common workflow.\n     */\n    function _withdraw(\n        address caller,\n        address receiver,\n        address owner,\n        uint256 assets,\n        uint256 shares\n    ) internal virtual {\n        if (caller != owner) {\n            _spendAllowance(owner, caller, shares);\n        }\n\n        // If _asset is ERC-777, `transfer` can trigger a reentrancy AFTER the transfer happens through the\n        // `tokensReceived` hook. On the other hand, the `tokensToSend` hook, that is triggered before the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer after the burn so that any reentrancy would happen after the\n        // shares are burned and after the assets are transferred, which is a valid state.\n        _burn(owner, shares);\n        SafeERC20.safeTransfer(_asset, receiver, assets);\n\n        emit Withdraw(caller, receiver, owner, assets, shares);\n    }\n\n    function _decimalsOffset() internal view virtual returns (uint8) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC-20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the symbol of the token.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the decimals places of the token.\n     */\n    function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-20 standard as defined in the ERC.\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 value of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the value of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves a `value` amount of 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 value) 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) external view returns (uint256);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * 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 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the\n     * allowance mechanism. `value` 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(address from, address to, uint256 value) external returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\nimport {IERC1363} from \"../../../interfaces/IERC1363.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC-20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n    /**\n     * @dev An operation with an ERC-20 token failed.\n     */\n    error SafeERC20FailedOperation(address token);\n\n    /**\n     * @dev Indicates a failed `decreaseAllowance` request.\n     */\n    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);\n\n    /**\n     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     */\n    function safeTransfer(IERC20 token, address to, uint256 value) internal {\n        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));\n    }\n\n    /**\n     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n     */\n    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));\n    }\n\n    /**\n     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     *\n     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n     * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n     */\n    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n        uint256 oldAllowance = token.allowance(address(this), spender);\n        forceApprove(token, spender, oldAllowance + value);\n    }\n\n    /**\n     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n     * value, non-reverting calls are assumed to be successful.\n     *\n     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n     * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n     */\n    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {\n        unchecked {\n            uint256 currentAllowance = token.allowance(address(this), spender);\n            if (currentAllowance < requestedDecrease) {\n                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);\n            }\n            forceApprove(token, spender, currentAllowance - requestedDecrease);\n        }\n    }\n\n    /**\n     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n     * to be set to zero before setting it to a non-zero value, such as USDT.\n     *\n     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n     * only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n     * set here.\n     */\n    function forceApprove(IERC20 token, address spender, uint256 value) internal {\n        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));\n\n        if (!_callOptionalReturnBool(token, approvalCall)) {\n            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));\n            _callOptionalReturn(token, approvalCall);\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n        if (to.code.length == 0) {\n            safeTransfer(token, to, value);\n        } else if (!token.transferAndCall(to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function transferFromAndCallRelaxed(\n        IERC1363 token,\n        address from,\n        address to,\n        uint256 value,\n        bytes memory data\n    ) internal {\n        if (to.code.length == 0) {\n            safeTransferFrom(token, from, to, value);\n        } else if (!token.transferFromAndCall(from, to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n     * once without retrying, and relies on the returned value to be true.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n        if (to.code.length == 0) {\n            forceApprove(token, to, value);\n        } else if (!token.approveAndCall(to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\n     * @param token The token targeted by the call.\n     * @param data The call data (encoded using abi.encode or one of its variants).\n     *\n     * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.\n     */\n    function _callOptionalReturn(IERC20 token, bytes memory data) private {\n        uint256 returnSize;\n        uint256 returnValue;\n        assembly (\"memory-safe\") {\n            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)\n            // bubble errors\n            if iszero(success) {\n                let ptr := mload(0x40)\n                returndatacopy(ptr, 0, returndatasize())\n                revert(ptr, returndatasize())\n            }\n            returnSize := returndatasize()\n            returnValue := mload(0)\n        }\n\n        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n     * on the return value: the return value is optional (but if data is returned, it must not be false).\n     * @param token The token targeted by the call.\n     * @param data The call data (encoded using abi.encode or one of its variants).\n     *\n     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.\n     */\n    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\n        bool success;\n        uint256 returnSize;\n        uint256 returnValue;\n        assembly (\"memory-safe\") {\n            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)\n            returnSize := returndatasize()\n            returnValue := mload(0)\n        }\n        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);\n    }\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC-721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n    /**\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n     */\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n     */\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n    /**\n     * @dev Returns the number of tokens in ``owner``'s account.\n     */\n    function balanceOf(address owner) external view returns (uint256 balance);\n\n    /**\n     * @dev Returns the owner of the `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function ownerOf(uint256 tokenId) external view returns (address owner);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n     *   a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n     *   {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n     *   a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId) external;\n\n    /**\n     * @dev Transfers `tokenId` token from `from` to `to`.\n     *\n     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n     * understand this adds an external call which potentially creates a reentrancy vulnerability.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(address from, address to, uint256 tokenId) external;\n\n    /**\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n     * The approval is cleared when the token is transferred.\n     *\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n     *\n     * Requirements:\n     *\n     * - The caller must own the token or be an approved operator.\n     * - `tokenId` must exist.\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address to, uint256 tokenId) external;\n\n    /**\n     * @dev Approve or remove `operator` as an operator for the caller.\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n     *\n     * Requirements:\n     *\n     * - The `operator` cannot be the address zero.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function setApprovalForAll(address operator, bool approved) external;\n\n    /**\n     * @dev Returns the account approved for `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function getApproved(uint256 tokenId) external view returns (address operator);\n\n    /**\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n     *\n     * See {setApprovalForAll}\n     */\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @title ERC-721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC-721 asset contracts.\n */\ninterface IERC721Receiver {\n    /**\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n     * by `operator` from `from`, this function is called.\n     *\n     * It must return its Solidity selector to confirm the token transfer.\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n     * reverted.\n     *\n     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n     */\n    function onERC721Received(\n        address operator,\n        address from,\n        uint256 tokenId,\n        bytes calldata data\n    ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev There's no code at `target` (it is not a contract).\n     */\n    error AddressEmptyCode(address target);\n\n    /**\n     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n     * `recipient`, forwarding all available gas and reverting on errors.\n     *\n     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n     * of certain opcodes, possibly making contracts go over the 2300 gas limit\n     * imposed by `transfer`, making them unable to receive funds via\n     * `transfer`. {sendValue} removes this limitation.\n     *\n     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n     *\n     * IMPORTANT: because control is transferred to `recipient`, care must be\n     * taken to not create reentrancy vulnerabilities. Consider using\n     * {ReentrancyGuard} or the\n     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        if (address(this).balance < amount) {\n            revert Errors.InsufficientBalance(address(this).balance, amount);\n        }\n\n        (bool success, bytes memory returndata) = recipient.call{value: amount}(\"\");\n        if (!success) {\n            _revert(returndata);\n        }\n    }\n\n    /**\n     * @dev Performs a Solidity function call using a low level `call`. A\n     * plain `call` is an unsafe replacement for a function call: use this\n     * function instead.\n     *\n     * If `target` reverts with a revert reason or custom error, it is bubbled\n     * up by this function (like regular Solidity function calls). However, if\n     * the call reverted with no returned reason, this function reverts with a\n     * {Errors.FailedCall} error.\n     *\n     * Returns the raw returned data. To convert to the expected return value,\n     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n     *\n     * Requirements:\n     *\n     * - `target` must be a contract.\n     * - calling `target` with `data` must not revert.\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but also transferring `value` wei to `target`.\n     *\n     * Requirements:\n     *\n     * - the calling contract must have an ETH balance of at least `value`.\n     * - the called Solidity function must be `payable`.\n     */\n    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n        if (address(this).balance < value) {\n            revert Errors.InsufficientBalance(address(this).balance, value);\n        }\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResultFromTarget(target, success, returndata);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResultFromTarget(target, success, returndata);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResultFromTarget(target, success, returndata);\n    }\n\n    /**\n     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n     * of an unsuccessful call.\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata\n    ) internal view returns (bytes memory) {\n        if (!success) {\n            _revert(returndata);\n        } else {\n            // only check if target is a contract if the call was successful and the return data is empty\n            // otherwise we already know that it was a contract\n            if (returndata.length == 0 && target.code.length == 0) {\n                revert AddressEmptyCode(target);\n            }\n            return returndata;\n        }\n    }\n\n    /**\n     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n     * revert reason or with a default {Errors.FailedCall} error.\n     */\n    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n        if (!success) {\n            _revert(returndata);\n        } else {\n            return returndata;\n        }\n    }\n\n    /**\n     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.\n     */\n    function _revert(bytes memory returndata) private pure {\n        // Look for revert reason and bubble it up if present\n        if (returndata.length > 0) {\n            // The easiest way to bubble the revert reason is using memory via assembly\n            assembly (\"memory-safe\") {\n                let returndata_size := mload(returndata)\n                revert(add(32, returndata), returndata_size)\n            }\n        } else {\n            revert Errors.FailedCall();\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n\n    function _contextSuffixLength() internal view virtual returns (uint256) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n    enum RecoverError {\n        NoError,\n        InvalidSignature,\n        InvalidSignatureLength,\n        InvalidSignatureS\n    }\n\n    /**\n     * @dev The signature derives the `address(0)`.\n     */\n    error ECDSAInvalidSignature();\n\n    /**\n     * @dev The signature has an invalid length.\n     */\n    error ECDSAInvalidSignatureLength(uint256 length);\n\n    /**\n     * @dev The signature has an S value that is in the upper half order.\n     */\n    error ECDSAInvalidSignatureS(bytes32 s);\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n     * return address(0) without also returning an error description. Errors are documented using an enum (error type)\n     * and a bytes32 providing additional information about the error.\n     *\n     * If no error is returned, then the address can be used for verification purposes.\n     *\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n     *\n     * Documentation for signature generation:\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes memory signature\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        if (signature.length == 65) {\n            bytes32 r;\n            bytes32 s;\n            uint8 v;\n            // ecrecover takes the signature parameters, and the only way to get them\n            // currently is to use assembly.\n            assembly (\"memory-safe\") {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            return tryRecover(hash, v, r, s);\n        } else {\n            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature`. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n     */\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n     *\n     * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        unchecked {\n            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n            // We do not check for an overflow here since the shift operation results in 0 or 1.\n            uint8 v = uint8((uint256(vs) >> 255) + 27);\n            return tryRecover(hash, v, r, s);\n        }\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n     */\n    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function tryRecover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n        //\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n        // these malleable signatures as well.\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n            return (address(0), RecoverError.InvalidSignatureS, s);\n        }\n\n        // If the signature is valid (and not malleable), return the signer address\n        address signer = ecrecover(hash, v, r, s);\n        if (signer == address(0)) {\n            return (address(0), RecoverError.InvalidSignature, bytes32(0));\n        }\n\n        return (signer, RecoverError.NoError, bytes32(0));\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.\n     */\n    function _throwError(RecoverError error, bytes32 errorArg) private pure {\n        if (error == RecoverError.NoError) {\n            return; // no error: do nothing\n        } else if (error == RecoverError.InvalidSignature) {\n            revert ECDSAInvalidSignature();\n        } else if (error == RecoverError.InvalidSignatureLength) {\n            revert ECDSAInvalidSignatureLength(uint256(errorArg));\n        } else if (error == RecoverError.InvalidSignatureS) {\n            revert ECDSAInvalidSignatureS(errorArg);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.20;\n\nimport {Strings} from \"../Strings.sol\";\n\n/**\n * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n *\n * The library provides methods for generating a hash of a message that conforms to the\n * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n * specifications.\n */\nlibrary MessageHashUtils {\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x45` (`personal_sign` messages).\n     *\n     * The digest is calculated by prefixing a bytes32 `messageHash` with\n     * `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n     *\n     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n     * keccak256, although any bytes32 value can be safely used because the final digest will\n     * be re-hashed.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\") // 32 is the bytes-length of messageHash\n            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix\n            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)\n        }\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x45` (`personal_sign` messages).\n     *\n     * The digest is calculated by prefixing an arbitrary `message` with\n     * `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {\n        return\n            keccak256(bytes.concat(\"\\x19Ethereum Signed Message:\\n\", bytes(Strings.toString(message.length)), message));\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x00` (data with intended validator).\n     *\n     * The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n     * `validator` address. Then hashing the result.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(hex\"19_00\", validator, data));\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n     *\n     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n     * `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            let ptr := mload(0x40)\n            mstore(ptr, hex\"19_01\")\n            mstore(add(ptr, 0x02), domainSeparator)\n            mstore(add(ptr, 0x22), structHash)\n            digest := keccak256(ptr, 0x42)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Errors.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n    /**\n     * @dev The ETH balance of the account is not enough to perform the operation.\n     */\n    error InsufficientBalance(uint256 balance, uint256 needed);\n\n    /**\n     * @dev A call to an address target failed. The target may have reverted.\n     */\n    error FailedCall();\n\n    /**\n     * @dev The deployment failed.\n     */\n    error FailedDeployment();\n\n    /**\n     * @dev A necessary precompile is missing.\n     */\n    error MissingPrecompile(address);\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n    /**\n     * @dev Returns true if this contract implements the interface defined by\n     * `interfaceId`. See the corresponding\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n    enum Rounding {\n        Floor, // Toward negative infinity\n        Ceil, // Toward positive infinity\n        Trunc, // Toward zero\n        Expand // Away from zero\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).\n     */\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a + b;\n            if (c < a) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            if (b > a) return (false, 0);\n            return (true, a - b);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n            // benefit is lost if 'b' is also tested.\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n            if (a == 0) return (true, 0);\n            uint256 c = a * b;\n            if (c / a != b) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).\n     */\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a / b);\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).\n     */\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a % b);\n        }\n    }\n\n    /**\n     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n     *\n     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n     * one branch when needed, making this function more expensive.\n     */\n    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {\n        unchecked {\n            // branchless ternary works because:\n            // b ^ (a ^ b) == a\n            // b ^ 0 == b\n            return b ^ ((a ^ b) * SafeCast.toUint(condition));\n        }\n    }\n\n    /**\n     * @dev Returns the largest of two numbers.\n     */\n    function max(uint256 a, uint256 b) internal pure returns (uint256) {\n        return ternary(a > b, a, b);\n    }\n\n    /**\n     * @dev Returns the smallest of two numbers.\n     */\n    function min(uint256 a, uint256 b) internal pure returns (uint256) {\n        return ternary(a < b, a, b);\n    }\n\n    /**\n     * @dev Returns the average of two numbers. The result is rounded towards\n     * zero.\n     */\n    function average(uint256 a, uint256 b) internal pure returns (uint256) {\n        // (a + b) / 2 can overflow.\n        return (a & b) + (a ^ b) / 2;\n    }\n\n    /**\n     * @dev Returns the ceiling of the division of two numbers.\n     *\n     * This differs from standard division with `/` in that it rounds towards infinity instead\n     * of rounding towards zero.\n     */\n    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n        if (b == 0) {\n            // Guarantee the same behavior as in a regular Solidity division.\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n\n        // The following calculation ensures accurate ceiling division without overflow.\n        // Since a is non-zero, (a - 1) / b will not overflow.\n        // The largest possible result occurs when (a - 1) / b is type(uint256).max,\n        // but the largest value we can obtain is type(uint256).max - 1, which happens\n        // when a = type(uint256).max and b = 1.\n        unchecked {\n            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);\n        }\n    }\n\n    /**\n     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n     * denominator == 0.\n     *\n     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n     * Uniswap Labs also under MIT license.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n        unchecked {\n            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use\n            // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n            // variables such that product = prod1 * 2²⁵⁶ + prod0.\n            uint256 prod0 = x * y; // Least significant 256 bits of the product\n            uint256 prod1; // Most significant 256 bits of the product\n            assembly {\n                let mm := mulmod(x, y, not(0))\n                prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n            }\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (prod1 == 0) {\n                // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n                // The surrounding unchecked block does not change this fact.\n                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n                return prod0 / denominator;\n            }\n\n            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n            if (denominator <= prod1) {\n                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));\n            }\n\n            ///////////////////////////////////////////////\n            // 512 by 256 division.\n            ///////////////////////////////////////////////\n\n            // Make division exact by subtracting the remainder from [prod1 prod0].\n            uint256 remainder;\n            assembly {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                prod1 := sub(prod1, gt(remainder, prod0))\n                prod0 := sub(prod0, remainder)\n            }\n\n            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\n            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\n\n            uint256 twos = denominator & (0 - denominator);\n            assembly {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [prod1 prod0] by twos.\n                prod0 := div(prod0, twos)\n\n                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.\n                twos := add(div(sub(0, twos), twos), 1)\n            }\n\n            // Shift in bits from prod1 into prod0.\n            prod0 |= prod1 * twos;\n\n            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such\n            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for\n            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.\n            uint256 inverse = (3 * denominator) ^ 2;\n\n            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\n            // works in modular arithmetic, doubling the correct bits in each step.\n            inverse *= 2 - denominator * inverse; // inverse mod 2⁸\n            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶\n            inverse *= 2 - denominator * inverse; // inverse mod 2³²\n            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴\n            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸\n            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶\n\n            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is\n            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1\n            // is no longer required.\n            result = prod0 * inverse;\n            return result;\n        }\n    }\n\n    /**\n     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);\n    }\n\n    /**\n     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n     *\n     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n     *\n     * If the input value is not inversible, 0 is returned.\n     *\n     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.\n     */\n    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {\n        unchecked {\n            if (n == 0) return 0;\n\n            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)\n            // Used to compute integers x and y such that: ax + ny = gcd(a, n).\n            // When the gcd is 1, then the inverse of a modulo n exists and it's x.\n            // ax + ny = 1\n            // ax = 1 + (-y)n\n            // ax ≡ 1 (mod n) # x is the inverse of a modulo n\n\n            // If the remainder is 0 the gcd is n right away.\n            uint256 remainder = a % n;\n            uint256 gcd = n;\n\n            // Therefore the initial coefficients are:\n            // ax + ny = gcd(a, n) = n\n            // 0a + 1n = n\n            int256 x = 0;\n            int256 y = 1;\n\n            while (remainder != 0) {\n                uint256 quotient = gcd / remainder;\n\n                (gcd, remainder) = (\n                    // The old remainder is the next gcd to try.\n                    remainder,\n                    // Compute the next remainder.\n                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd\n                    // where gcd is at most n (capped to type(uint256).max)\n                    gcd - remainder * quotient\n                );\n\n                (x, y) = (\n                    // Increment the coefficient of a.\n                    y,\n                    // Decrement the coefficient of n.\n                    // Can overflow, but the result is casted to uint256 so that the\n                    // next value of y is \"wrapped around\" to a value between 0 and n - 1.\n                    x - y * int256(quotient)\n                );\n            }\n\n            if (gcd != 1) return 0; // No inverse exists.\n            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.\n        }\n    }\n\n    /**\n     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n     *\n     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n     *\n     * NOTE: this function does NOT check that `p` is a prime greater than `2`.\n     */\n    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {\n        unchecked {\n            return Math.modExp(a, p - 2, p);\n        }\n    }\n\n    /**\n     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n     *\n     * Requirements:\n     * - modulus can't be zero\n     * - underlying staticcall to precompile must succeed\n     *\n     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n     * sure the chain you're using it on supports the precompiled contract for modular exponentiation\n     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n     * interpreted as 0.\n     */\n    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {\n        (bool success, uint256 result) = tryModExp(b, e, m);\n        if (!success) {\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n     * to operate modulo 0 or if the underlying precompile reverted.\n     *\n     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n     * of a revert, but the result may be incorrectly interpreted as 0.\n     */\n    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {\n        if (m == 0) return (false, 0);\n        assembly (\"memory-safe\") {\n            let ptr := mload(0x40)\n            // | Offset    | Content    | Content (Hex)                                                      |\n            // |-----------|------------|--------------------------------------------------------------------|\n            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x60:0x7f | value of b | 0x<.............................................................b> |\n            // | 0x80:0x9f | value of e | 0x<.............................................................e> |\n            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |\n            mstore(ptr, 0x20)\n            mstore(add(ptr, 0x20), 0x20)\n            mstore(add(ptr, 0x40), 0x20)\n            mstore(add(ptr, 0x60), b)\n            mstore(add(ptr, 0x80), e)\n            mstore(add(ptr, 0xa0), m)\n\n            // Given the result < m, it's guaranteed to fit in 32 bytes,\n            // so we can use the memory scratch space located at offset 0.\n            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)\n            result := mload(0x00)\n        }\n    }\n\n    /**\n     * @dev Variant of {modExp} that supports inputs of arbitrary length.\n     */\n    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {\n        (bool success, bytes memory result) = tryModExp(b, e, m);\n        if (!success) {\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.\n     */\n    function tryModExp(\n        bytes memory b,\n        bytes memory e,\n        bytes memory m\n    ) internal view returns (bool success, bytes memory result) {\n        if (_zeroBytes(m)) return (false, new bytes(0));\n\n        uint256 mLen = m.length;\n\n        // Encode call args in result and move the free memory pointer\n        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);\n\n        assembly (\"memory-safe\") {\n            let dataPtr := add(result, 0x20)\n            // Write result on top of args to avoid allocating extra memory.\n            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)\n            // Overwrite the length.\n            // result.length > returndatasize() is guaranteed because returndatasize() == m.length\n            mstore(result, mLen)\n            // Set the memory pointer after the returned data.\n            mstore(0x40, add(dataPtr, mLen))\n        }\n    }\n\n    /**\n     * @dev Returns whether the provided byte array is zero.\n     */\n    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {\n        for (uint256 i = 0; i < byteArray.length; ++i) {\n            if (byteArray[i] != 0) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    /**\n     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n     * towards zero.\n     *\n     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n     * using integer operations.\n     */\n    function sqrt(uint256 a) internal pure returns (uint256) {\n        unchecked {\n            // Take care of easy edge cases when a == 0 or a == 1\n            if (a <= 1) {\n                return a;\n            }\n\n            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a\n            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between\n            // the current value as `ε_n = | x_n - sqrt(a) |`.\n            //\n            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root\n            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is\n            // bigger than any uint256.\n            //\n            // By noticing that\n            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`\n            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar\n            // to the msb function.\n            uint256 aa = a;\n            uint256 xn = 1;\n\n            if (aa >= (1 << 128)) {\n                aa >>= 128;\n                xn <<= 64;\n            }\n            if (aa >= (1 << 64)) {\n                aa >>= 64;\n                xn <<= 32;\n            }\n            if (aa >= (1 << 32)) {\n                aa >>= 32;\n                xn <<= 16;\n            }\n            if (aa >= (1 << 16)) {\n                aa >>= 16;\n                xn <<= 8;\n            }\n            if (aa >= (1 << 8)) {\n                aa >>= 8;\n                xn <<= 4;\n            }\n            if (aa >= (1 << 4)) {\n                aa >>= 4;\n                xn <<= 2;\n            }\n            if (aa >= (1 << 2)) {\n                xn <<= 1;\n            }\n\n            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).\n            //\n            // We can refine our estimation by noticing that the middle of that interval minimizes the error.\n            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).\n            // This is going to be our x_0 (and ε_0)\n            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)\n\n            // From here, Newton's method give us:\n            // x_{n+1} = (x_n + a / x_n) / 2\n            //\n            // One should note that:\n            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a\n            //              = ((x_n² + a) / (2 * x_n))² - a\n            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a\n            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)\n            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)\n            //              = (x_n² - a)² / (2 * x_n)²\n            //              = ((x_n² - a) / (2 * x_n))²\n            //              ≥ 0\n            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n\n            //\n            // This gives us the proof of quadratic convergence of the sequence:\n            // ε_{n+1} = | x_{n+1} - sqrt(a) |\n            //         = | (x_n + a / x_n) / 2 - sqrt(a) |\n            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |\n            //         = | (x_n - sqrt(a))² / (2 * x_n) |\n            //         = | ε_n² / (2 * x_n) |\n            //         = ε_n² / | (2 * x_n) |\n            //\n            // For the first iteration, we have a special case where x_0 is known:\n            // ε_1 = ε_0² / | (2 * x_0) |\n            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))\n            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))\n            //     ≤ 2**(e-3) / 3\n            //     ≤ 2**(e-3-log2(3))\n            //     ≤ 2**(e-4.5)\n            //\n            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:\n            // ε_{n+1} = ε_n² / | (2 * x_n) |\n            //         ≤ (2**(e-k))² / (2 * 2**(e-1))\n            //         ≤ 2**(2*e-2*k) / 2**e\n            //         ≤ 2**(e-2*k)\n            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above\n            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5\n            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9\n            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18\n            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36\n            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72\n\n            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision\n            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either\n            // sqrt(a) or sqrt(a) + 1.\n            return xn - SafeCast.toUint(xn > a / xn);\n        }\n    }\n\n    /**\n     * @dev Calculates sqrt(a), following the selected rounding direction.\n     */\n    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = sqrt(a);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 2 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        uint256 exp;\n        unchecked {\n            exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);\n            value >>= exp;\n            result += exp;\n\n            exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);\n            value >>= exp;\n            result += exp;\n\n            result += SafeCast.toUint(value > 1);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log2(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 10 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >= 10 ** 64) {\n                value /= 10 ** 64;\n                result += 64;\n            }\n            if (value >= 10 ** 32) {\n                value /= 10 ** 32;\n                result += 32;\n            }\n            if (value >= 10 ** 16) {\n                value /= 10 ** 16;\n                result += 16;\n            }\n            if (value >= 10 ** 8) {\n                value /= 10 ** 8;\n                result += 8;\n            }\n            if (value >= 10 ** 4) {\n                value /= 10 ** 4;\n                result += 4;\n            }\n            if (value >= 10 ** 2) {\n                value /= 10 ** 2;\n                result += 2;\n            }\n            if (value >= 10 ** 1) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log10(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 256 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     *\n     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n     */\n    function log256(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        uint256 isGt;\n        unchecked {\n            isGt = SafeCast.toUint(value > (1 << 128) - 1);\n            value >>= isGt * 128;\n            result += isGt * 16;\n\n            isGt = SafeCast.toUint(value > (1 << 64) - 1);\n            value >>= isGt * 64;\n            result += isGt * 8;\n\n            isGt = SafeCast.toUint(value > (1 << 32) - 1);\n            value >>= isGt * 32;\n            result += isGt * 4;\n\n            isGt = SafeCast.toUint(value > (1 << 16) - 1);\n            value >>= isGt * 16;\n            result += isGt * 2;\n\n            result += SafeCast.toUint(value > (1 << 8) - 1);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log256(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);\n        }\n    }\n\n    /**\n     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\n     */\n    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\n        return uint8(rounding) % 2 == 1;\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n */\nlibrary SafeCast {\n    /**\n     * @dev Value doesn't fit in an uint of `bits` size.\n     */\n    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);\n\n    /**\n     * @dev An int value doesn't fit in an uint of `bits` size.\n     */\n    error SafeCastOverflowedIntToUint(int256 value);\n\n    /**\n     * @dev Value doesn't fit in an int of `bits` size.\n     */\n    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);\n\n    /**\n     * @dev An uint value doesn't fit in an int of `bits` size.\n     */\n    error SafeCastOverflowedUintToInt(uint256 value);\n\n    /**\n     * @dev Returns the downcasted uint248 from uint256, reverting on\n     * overflow (when the input is greater than largest uint248).\n     *\n     * Counterpart to Solidity's `uint248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     */\n    function toUint248(uint256 value) internal pure returns (uint248) {\n        if (value > type(uint248).max) {\n            revert SafeCastOverflowedUintDowncast(248, value);\n        }\n        return uint248(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint240 from uint256, reverting on\n     * overflow (when the input is greater than largest uint240).\n     *\n     * Counterpart to Solidity's `uint240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     */\n    function toUint240(uint256 value) internal pure returns (uint240) {\n        if (value > type(uint240).max) {\n            revert SafeCastOverflowedUintDowncast(240, value);\n        }\n        return uint240(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint232 from uint256, reverting on\n     * overflow (when the input is greater than largest uint232).\n     *\n     * Counterpart to Solidity's `uint232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     */\n    function toUint232(uint256 value) internal pure returns (uint232) {\n        if (value > type(uint232).max) {\n            revert SafeCastOverflowedUintDowncast(232, value);\n        }\n        return uint232(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint224 from uint256, reverting on\n     * overflow (when the input is greater than largest uint224).\n     *\n     * Counterpart to Solidity's `uint224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toUint224(uint256 value) internal pure returns (uint224) {\n        if (value > type(uint224).max) {\n            revert SafeCastOverflowedUintDowncast(224, value);\n        }\n        return uint224(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint216 from uint256, reverting on\n     * overflow (when the input is greater than largest uint216).\n     *\n     * Counterpart to Solidity's `uint216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     */\n    function toUint216(uint256 value) internal pure returns (uint216) {\n        if (value > type(uint216).max) {\n            revert SafeCastOverflowedUintDowncast(216, value);\n        }\n        return uint216(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint208 from uint256, reverting on\n     * overflow (when the input is greater than largest uint208).\n     *\n     * Counterpart to Solidity's `uint208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toUint208(uint256 value) internal pure returns (uint208) {\n        if (value > type(uint208).max) {\n            revert SafeCastOverflowedUintDowncast(208, value);\n        }\n        return uint208(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint200 from uint256, reverting on\n     * overflow (when the input is greater than largest uint200).\n     *\n     * Counterpart to Solidity's `uint200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     */\n    function toUint200(uint256 value) internal pure returns (uint200) {\n        if (value > type(uint200).max) {\n            revert SafeCastOverflowedUintDowncast(200, value);\n        }\n        return uint200(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint192 from uint256, reverting on\n     * overflow (when the input is greater than largest uint192).\n     *\n     * Counterpart to Solidity's `uint192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     */\n    function toUint192(uint256 value) internal pure returns (uint192) {\n        if (value > type(uint192).max) {\n            revert SafeCastOverflowedUintDowncast(192, value);\n        }\n        return uint192(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint184 from uint256, reverting on\n     * overflow (when the input is greater than largest uint184).\n     *\n     * Counterpart to Solidity's `uint184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     */\n    function toUint184(uint256 value) internal pure returns (uint184) {\n        if (value > type(uint184).max) {\n            revert SafeCastOverflowedUintDowncast(184, value);\n        }\n        return uint184(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint176 from uint256, reverting on\n     * overflow (when the input is greater than largest uint176).\n     *\n     * Counterpart to Solidity's `uint176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     */\n    function toUint176(uint256 value) internal pure returns (uint176) {\n        if (value > type(uint176).max) {\n            revert SafeCastOverflowedUintDowncast(176, value);\n        }\n        return uint176(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint168 from uint256, reverting on\n     * overflow (when the input is greater than largest uint168).\n     *\n     * Counterpart to Solidity's `uint168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     */\n    function toUint168(uint256 value) internal pure returns (uint168) {\n        if (value > type(uint168).max) {\n            revert SafeCastOverflowedUintDowncast(168, value);\n        }\n        return uint168(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint160 from uint256, reverting on\n     * overflow (when the input is greater than largest uint160).\n     *\n     * Counterpart to Solidity's `uint160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     */\n    function toUint160(uint256 value) internal pure returns (uint160) {\n        if (value > type(uint160).max) {\n            revert SafeCastOverflowedUintDowncast(160, value);\n        }\n        return uint160(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint152 from uint256, reverting on\n     * overflow (when the input is greater than largest uint152).\n     *\n     * Counterpart to Solidity's `uint152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     */\n    function toUint152(uint256 value) internal pure returns (uint152) {\n        if (value > type(uint152).max) {\n            revert SafeCastOverflowedUintDowncast(152, value);\n        }\n        return uint152(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint144 from uint256, reverting on\n     * overflow (when the input is greater than largest uint144).\n     *\n     * Counterpart to Solidity's `uint144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     */\n    function toUint144(uint256 value) internal pure returns (uint144) {\n        if (value > type(uint144).max) {\n            revert SafeCastOverflowedUintDowncast(144, value);\n        }\n        return uint144(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint136 from uint256, reverting on\n     * overflow (when the input is greater than largest uint136).\n     *\n     * Counterpart to Solidity's `uint136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     */\n    function toUint136(uint256 value) internal pure returns (uint136) {\n        if (value > type(uint136).max) {\n            revert SafeCastOverflowedUintDowncast(136, value);\n        }\n        return uint136(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint128 from uint256, reverting on\n     * overflow (when the input is greater than largest uint128).\n     *\n     * Counterpart to Solidity's `uint128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     */\n    function toUint128(uint256 value) internal pure returns (uint128) {\n        if (value > type(uint128).max) {\n            revert SafeCastOverflowedUintDowncast(128, value);\n        }\n        return uint128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint120 from uint256, reverting on\n     * overflow (when the input is greater than largest uint120).\n     *\n     * Counterpart to Solidity's `uint120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     */\n    function toUint120(uint256 value) internal pure returns (uint120) {\n        if (value > type(uint120).max) {\n            revert SafeCastOverflowedUintDowncast(120, value);\n        }\n        return uint120(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint112 from uint256, reverting on\n     * overflow (when the input is greater than largest uint112).\n     *\n     * Counterpart to Solidity's `uint112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     */\n    function toUint112(uint256 value) internal pure returns (uint112) {\n        if (value > type(uint112).max) {\n            revert SafeCastOverflowedUintDowncast(112, value);\n        }\n        return uint112(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint104 from uint256, reverting on\n     * overflow (when the input is greater than largest uint104).\n     *\n     * Counterpart to Solidity's `uint104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toUint104(uint256 value) internal pure returns (uint104) {\n        if (value > type(uint104).max) {\n            revert SafeCastOverflowedUintDowncast(104, value);\n        }\n        return uint104(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint96 from uint256, reverting on\n     * overflow (when the input is greater than largest uint96).\n     *\n     * Counterpart to Solidity's `uint96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toUint96(uint256 value) internal pure returns (uint96) {\n        if (value > type(uint96).max) {\n            revert SafeCastOverflowedUintDowncast(96, value);\n        }\n        return uint96(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint88 from uint256, reverting on\n     * overflow (when the input is greater than largest uint88).\n     *\n     * Counterpart to Solidity's `uint88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     */\n    function toUint88(uint256 value) internal pure returns (uint88) {\n        if (value > type(uint88).max) {\n            revert SafeCastOverflowedUintDowncast(88, value);\n        }\n        return uint88(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint80 from uint256, reverting on\n     * overflow (when the input is greater than largest uint80).\n     *\n     * Counterpart to Solidity's `uint80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     */\n    function toUint80(uint256 value) internal pure returns (uint80) {\n        if (value > type(uint80).max) {\n            revert SafeCastOverflowedUintDowncast(80, value);\n        }\n        return uint80(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint72 from uint256, reverting on\n     * overflow (when the input is greater than largest uint72).\n     *\n     * Counterpart to Solidity's `uint72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     */\n    function toUint72(uint256 value) internal pure returns (uint72) {\n        if (value > type(uint72).max) {\n            revert SafeCastOverflowedUintDowncast(72, value);\n        }\n        return uint72(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint64 from uint256, reverting on\n     * overflow (when the input is greater than largest uint64).\n     *\n     * Counterpart to Solidity's `uint64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     */\n    function toUint64(uint256 value) internal pure returns (uint64) {\n        if (value > type(uint64).max) {\n            revert SafeCastOverflowedUintDowncast(64, value);\n        }\n        return uint64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint56 from uint256, reverting on\n     * overflow (when the input is greater than largest uint56).\n     *\n     * Counterpart to Solidity's `uint56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     */\n    function toUint56(uint256 value) internal pure returns (uint56) {\n        if (value > type(uint56).max) {\n            revert SafeCastOverflowedUintDowncast(56, value);\n        }\n        return uint56(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint48 from uint256, reverting on\n     * overflow (when the input is greater than largest uint48).\n     *\n     * Counterpart to Solidity's `uint48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     */\n    function toUint48(uint256 value) internal pure returns (uint48) {\n        if (value > type(uint48).max) {\n            revert SafeCastOverflowedUintDowncast(48, value);\n        }\n        return uint48(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint40 from uint256, reverting on\n     * overflow (when the input is greater than largest uint40).\n     *\n     * Counterpart to Solidity's `uint40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     */\n    function toUint40(uint256 value) internal pure returns (uint40) {\n        if (value > type(uint40).max) {\n            revert SafeCastOverflowedUintDowncast(40, value);\n        }\n        return uint40(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint32 from uint256, reverting on\n     * overflow (when the input is greater than largest uint32).\n     *\n     * Counterpart to Solidity's `uint32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     */\n    function toUint32(uint256 value) internal pure returns (uint32) {\n        if (value > type(uint32).max) {\n            revert SafeCastOverflowedUintDowncast(32, value);\n        }\n        return uint32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint24 from uint256, reverting on\n     * overflow (when the input is greater than largest uint24).\n     *\n     * Counterpart to Solidity's `uint24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     */\n    function toUint24(uint256 value) internal pure returns (uint24) {\n        if (value > type(uint24).max) {\n            revert SafeCastOverflowedUintDowncast(24, value);\n        }\n        return uint24(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint16 from uint256, reverting on\n     * overflow (when the input is greater than largest uint16).\n     *\n     * Counterpart to Solidity's `uint16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     */\n    function toUint16(uint256 value) internal pure returns (uint16) {\n        if (value > type(uint16).max) {\n            revert SafeCastOverflowedUintDowncast(16, value);\n        }\n        return uint16(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint8 from uint256, reverting on\n     * overflow (when the input is greater than largest uint8).\n     *\n     * Counterpart to Solidity's `uint8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits\n     */\n    function toUint8(uint256 value) internal pure returns (uint8) {\n        if (value > type(uint8).max) {\n            revert SafeCastOverflowedUintDowncast(8, value);\n        }\n        return uint8(value);\n    }\n\n    /**\n     * @dev Converts a signed int256 into an unsigned uint256.\n     *\n     * Requirements:\n     *\n     * - input must be greater than or equal to 0.\n     */\n    function toUint256(int256 value) internal pure returns (uint256) {\n        if (value < 0) {\n            revert SafeCastOverflowedIntToUint(value);\n        }\n        return uint256(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int248 from int256, reverting on\n     * overflow (when the input is less than smallest int248 or\n     * greater than largest int248).\n     *\n     * Counterpart to Solidity's `int248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     */\n    function toInt248(int256 value) internal pure returns (int248 downcasted) {\n        downcasted = int248(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(248, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int240 from int256, reverting on\n     * overflow (when the input is less than smallest int240 or\n     * greater than largest int240).\n     *\n     * Counterpart to Solidity's `int240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     */\n    function toInt240(int256 value) internal pure returns (int240 downcasted) {\n        downcasted = int240(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(240, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int232 from int256, reverting on\n     * overflow (when the input is less than smallest int232 or\n     * greater than largest int232).\n     *\n     * Counterpart to Solidity's `int232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     */\n    function toInt232(int256 value) internal pure returns (int232 downcasted) {\n        downcasted = int232(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(232, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int224 from int256, reverting on\n     * overflow (when the input is less than smallest int224 or\n     * greater than largest int224).\n     *\n     * Counterpart to Solidity's `int224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toInt224(int256 value) internal pure returns (int224 downcasted) {\n        downcasted = int224(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(224, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int216 from int256, reverting on\n     * overflow (when the input is less than smallest int216 or\n     * greater than largest int216).\n     *\n     * Counterpart to Solidity's `int216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     */\n    function toInt216(int256 value) internal pure returns (int216 downcasted) {\n        downcasted = int216(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(216, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int208 from int256, reverting on\n     * overflow (when the input is less than smallest int208 or\n     * greater than largest int208).\n     *\n     * Counterpart to Solidity's `int208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toInt208(int256 value) internal pure returns (int208 downcasted) {\n        downcasted = int208(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(208, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int200 from int256, reverting on\n     * overflow (when the input is less than smallest int200 or\n     * greater than largest int200).\n     *\n     * Counterpart to Solidity's `int200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     */\n    function toInt200(int256 value) internal pure returns (int200 downcasted) {\n        downcasted = int200(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(200, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int192 from int256, reverting on\n     * overflow (when the input is less than smallest int192 or\n     * greater than largest int192).\n     *\n     * Counterpart to Solidity's `int192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     */\n    function toInt192(int256 value) internal pure returns (int192 downcasted) {\n        downcasted = int192(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(192, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int184 from int256, reverting on\n     * overflow (when the input is less than smallest int184 or\n     * greater than largest int184).\n     *\n     * Counterpart to Solidity's `int184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     */\n    function toInt184(int256 value) internal pure returns (int184 downcasted) {\n        downcasted = int184(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(184, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int176 from int256, reverting on\n     * overflow (when the input is less than smallest int176 or\n     * greater than largest int176).\n     *\n     * Counterpart to Solidity's `int176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     */\n    function toInt176(int256 value) internal pure returns (int176 downcasted) {\n        downcasted = int176(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(176, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int168 from int256, reverting on\n     * overflow (when the input is less than smallest int168 or\n     * greater than largest int168).\n     *\n     * Counterpart to Solidity's `int168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     */\n    function toInt168(int256 value) internal pure returns (int168 downcasted) {\n        downcasted = int168(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(168, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int160 from int256, reverting on\n     * overflow (when the input is less than smallest int160 or\n     * greater than largest int160).\n     *\n     * Counterpart to Solidity's `int160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     */\n    function toInt160(int256 value) internal pure returns (int160 downcasted) {\n        downcasted = int160(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(160, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int152 from int256, reverting on\n     * overflow (when the input is less than smallest int152 or\n     * greater than largest int152).\n     *\n     * Counterpart to Solidity's `int152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     */\n    function toInt152(int256 value) internal pure returns (int152 downcasted) {\n        downcasted = int152(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(152, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int144 from int256, reverting on\n     * overflow (when the input is less than smallest int144 or\n     * greater than largest int144).\n     *\n     * Counterpart to Solidity's `int144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     */\n    function toInt144(int256 value) internal pure returns (int144 downcasted) {\n        downcasted = int144(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(144, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int136 from int256, reverting on\n     * overflow (when the input is less than smallest int136 or\n     * greater than largest int136).\n     *\n     * Counterpart to Solidity's `int136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     */\n    function toInt136(int256 value) internal pure returns (int136 downcasted) {\n        downcasted = int136(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(136, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int128 from int256, reverting on\n     * overflow (when the input is less than smallest int128 or\n     * greater than largest int128).\n     *\n     * Counterpart to Solidity's `int128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     */\n    function toInt128(int256 value) internal pure returns (int128 downcasted) {\n        downcasted = int128(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(128, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int120 from int256, reverting on\n     * overflow (when the input is less than smallest int120 or\n     * greater than largest int120).\n     *\n     * Counterpart to Solidity's `int120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     */\n    function toInt120(int256 value) internal pure returns (int120 downcasted) {\n        downcasted = int120(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(120, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int112 from int256, reverting on\n     * overflow (when the input is less than smallest int112 or\n     * greater than largest int112).\n     *\n     * Counterpart to Solidity's `int112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     */\n    function toInt112(int256 value) internal pure returns (int112 downcasted) {\n        downcasted = int112(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(112, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int104 from int256, reverting on\n     * overflow (when the input is less than smallest int104 or\n     * greater than largest int104).\n     *\n     * Counterpart to Solidity's `int104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toInt104(int256 value) internal pure returns (int104 downcasted) {\n        downcasted = int104(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(104, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int96 from int256, reverting on\n     * overflow (when the input is less than smallest int96 or\n     * greater than largest int96).\n     *\n     * Counterpart to Solidity's `int96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toInt96(int256 value) internal pure returns (int96 downcasted) {\n        downcasted = int96(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(96, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int88 from int256, reverting on\n     * overflow (when the input is less than smallest int88 or\n     * greater than largest int88).\n     *\n     * Counterpart to Solidity's `int88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     */\n    function toInt88(int256 value) internal pure returns (int88 downcasted) {\n        downcasted = int88(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(88, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int80 from int256, reverting on\n     * overflow (when the input is less than smallest int80 or\n     * greater than largest int80).\n     *\n     * Counterpart to Solidity's `int80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     */\n    function toInt80(int256 value) internal pure returns (int80 downcasted) {\n        downcasted = int80(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(80, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int72 from int256, reverting on\n     * overflow (when the input is less than smallest int72 or\n     * greater than largest int72).\n     *\n     * Counterpart to Solidity's `int72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     */\n    function toInt72(int256 value) internal pure returns (int72 downcasted) {\n        downcasted = int72(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(72, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int64 from int256, reverting on\n     * overflow (when the input is less than smallest int64 or\n     * greater than largest int64).\n     *\n     * Counterpart to Solidity's `int64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     */\n    function toInt64(int256 value) internal pure returns (int64 downcasted) {\n        downcasted = int64(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(64, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int56 from int256, reverting on\n     * overflow (when the input is less than smallest int56 or\n     * greater than largest int56).\n     *\n     * Counterpart to Solidity's `int56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     */\n    function toInt56(int256 value) internal pure returns (int56 downcasted) {\n        downcasted = int56(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(56, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int48 from int256, reverting on\n     * overflow (when the input is less than smallest int48 or\n     * greater than largest int48).\n     *\n     * Counterpart to Solidity's `int48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     */\n    function toInt48(int256 value) internal pure returns (int48 downcasted) {\n        downcasted = int48(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(48, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int40 from int256, reverting on\n     * overflow (when the input is less than smallest int40 or\n     * greater than largest int40).\n     *\n     * Counterpart to Solidity's `int40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     */\n    function toInt40(int256 value) internal pure returns (int40 downcasted) {\n        downcasted = int40(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(40, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int32 from int256, reverting on\n     * overflow (when the input is less than smallest int32 or\n     * greater than largest int32).\n     *\n     * Counterpart to Solidity's `int32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     */\n    function toInt32(int256 value) internal pure returns (int32 downcasted) {\n        downcasted = int32(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(32, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int24 from int256, reverting on\n     * overflow (when the input is less than smallest int24 or\n     * greater than largest int24).\n     *\n     * Counterpart to Solidity's `int24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     */\n    function toInt24(int256 value) internal pure returns (int24 downcasted) {\n        downcasted = int24(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(24, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int16 from int256, reverting on\n     * overflow (when the input is less than smallest int16 or\n     * greater than largest int16).\n     *\n     * Counterpart to Solidity's `int16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     */\n    function toInt16(int256 value) internal pure returns (int16 downcasted) {\n        downcasted = int16(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(16, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int8 from int256, reverting on\n     * overflow (when the input is less than smallest int8 or\n     * greater than largest int8).\n     *\n     * Counterpart to Solidity's `int8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits\n     */\n    function toInt8(int256 value) internal pure returns (int8 downcasted) {\n        downcasted = int8(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(8, value);\n        }\n    }\n\n    /**\n     * @dev Converts an unsigned uint256 into a signed int256.\n     *\n     * Requirements:\n     *\n     * - input must be less than or equal to maxInt256.\n     */\n    function toInt256(uint256 value) internal pure returns (int256) {\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n        if (value > uint256(type(int256).max)) {\n            revert SafeCastOverflowedUintToInt(value);\n        }\n        return int256(value);\n    }\n\n    /**\n     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.\n     */\n    function toUint(bool b) internal pure returns (uint256 u) {\n        assembly (\"memory-safe\") {\n            u := iszero(iszero(b))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.20;\n\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n    /**\n     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n     *\n     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n     * one branch when needed, making this function more expensive.\n     */\n    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {\n        unchecked {\n            // branchless ternary works because:\n            // b ^ (a ^ b) == a\n            // b ^ 0 == b\n            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));\n        }\n    }\n\n    /**\n     * @dev Returns the largest of two signed numbers.\n     */\n    function max(int256 a, int256 b) internal pure returns (int256) {\n        return ternary(a > b, a, b);\n    }\n\n    /**\n     * @dev Returns the smallest of two signed numbers.\n     */\n    function min(int256 a, int256 b) internal pure returns (int256) {\n        return ternary(a < b, a, b);\n    }\n\n    /**\n     * @dev Returns the average of two signed numbers without overflow.\n     * The result is rounded towards zero.\n     */\n    function average(int256 a, int256 b) internal pure returns (int256) {\n        // Formula from the book \"Hacker's Delight\"\n        int256 x = (a & b) + ((a ^ b) >> 1);\n        return x + (int256(uint256(x) >> 255) & (a ^ b));\n    }\n\n    /**\n     * @dev Returns the absolute unsigned value of a signed value.\n     */\n    function abs(int256 n) internal pure returns (uint256) {\n        unchecked {\n            // Formula from the \"Bit Twiddling Hacks\" by Sean Eron Anderson.\n            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,\n            // taking advantage of the most significant (or \"sign\" bit) in two's complement representation.\n            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,\n            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).\n            int256 mask = n >> 255;\n\n            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.\n            return uint256((n + mask) ^ mask);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Multicall.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Multicall.sol)\n\npragma solidity ^0.8.20;\n\nimport {Address} from \"./Address.sol\";\nimport {Context} from \"./Context.sol\";\n\n/**\n * @dev Provides a function to batch together multiple calls in a single external call.\n *\n * Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n * careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n * selectors won't filter calls nested within a {multicall} operation.\n *\n * NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}).\n * If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n * to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n * {_msgSender} are not propagated to subcalls.\n */\nabstract contract Multicall is Context {\n    /**\n     * @dev Receives and executes a batch of function calls on this contract.\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {\n        bytes memory context = msg.sender == _msgSender()\n            ? new bytes(0)\n            : msg.data[msg.data.length - _contextSuffixLength():];\n\n        results = new bytes[](data.length);\n        for (uint256 i = 0; i < data.length; i++) {\n            results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));\n        }\n        return results;\n    }\n}\n"},"@openzeppelin/contracts/utils/Packing.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Packing.sol)\n// This file was procedurally generated from scripts/generate/templates/Packing.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library packing and unpacking multiple values into bytesXX.\n *\n * Example usage:\n *\n * ```solidity\n * library MyPacker {\n *     type MyType is bytes32;\n *\n *     function _pack(address account, bytes4 selector, uint64 period) external pure returns (MyType) {\n *         bytes12 subpack = Packing.pack_4_8(selector, bytes8(period));\n *         bytes32 pack = Packing.pack_20_12(bytes20(account), subpack);\n *         return MyType.wrap(pack);\n *     }\n *\n *     function _unpack(MyType self) external pure returns (address, bytes4, uint64) {\n *         bytes32 pack = MyType.unwrap(self);\n *         return (\n *             address(Packing.extract_32_20(pack, 0)),\n *             Packing.extract_32_4(pack, 20),\n *             uint64(Packing.extract_32_8(pack, 24))\n *         );\n *     }\n * }\n * ```\n *\n * _Available since v5.1._\n */\n// solhint-disable func-name-mixedcase\nlibrary Packing {\n    error OutOfRangeAccess();\n\n    function pack_1_1(bytes1 left, bytes1 right) internal pure returns (bytes2 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(248, not(0)))\n            right := and(right, shl(248, not(0)))\n            result := or(left, shr(8, right))\n        }\n    }\n\n    function pack_2_2(bytes2 left, bytes2 right) internal pure returns (bytes4 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_4(bytes2 left, bytes4 right) internal pure returns (bytes6 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_6(bytes2 left, bytes6 right) internal pure returns (bytes8 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_8(bytes2 left, bytes8 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_10(bytes2 left, bytes10 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_20(bytes2 left, bytes20 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_22(bytes2 left, bytes22 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(80, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_4_2(bytes4 left, bytes2 right) internal pure returns (bytes6 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_4(bytes4 left, bytes4 right) internal pure returns (bytes8 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_6(bytes4 left, bytes6 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_8(bytes4 left, bytes8 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_12(bytes4 left, bytes12 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_16(bytes4 left, bytes16 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_20(bytes4 left, bytes20 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_24(bytes4 left, bytes24 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(64, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_28(bytes4 left, bytes28 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(32, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_6_2(bytes6 left, bytes2 right) internal pure returns (bytes8 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_4(bytes6 left, bytes4 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_6(bytes6 left, bytes6 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_10(bytes6 left, bytes10 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_16(bytes6 left, bytes16 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_22(bytes6 left, bytes22 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(80, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_8_2(bytes8 left, bytes2 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_4(bytes8 left, bytes4 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_8(bytes8 left, bytes8 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_12(bytes8 left, bytes12 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_16(bytes8 left, bytes16 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_20(bytes8 left, bytes20 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_24(bytes8 left, bytes24 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(64, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_10_2(bytes10 left, bytes2 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_6(bytes10 left, bytes6 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_10(bytes10 left, bytes10 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_12(bytes10 left, bytes12 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_22(bytes10 left, bytes22 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(80, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_12_4(bytes12 left, bytes4 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_8(bytes12 left, bytes8 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_10(bytes12 left, bytes10 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_12(bytes12 left, bytes12 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_16(bytes12 left, bytes16 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_20(bytes12 left, bytes20 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_16_4(bytes16 left, bytes4 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_6(bytes16 left, bytes6 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_8(bytes16 left, bytes8 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_12(bytes16 left, bytes12 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_16(bytes16 left, bytes16 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_20_2(bytes20 left, bytes2 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_20_4(bytes20 left, bytes4 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_20_8(bytes20 left, bytes8 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_20_12(bytes20 left, bytes12 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_22_2(bytes22 left, bytes2 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(80, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(176, right))\n        }\n    }\n\n    function pack_22_6(bytes22 left, bytes6 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(80, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(176, right))\n        }\n    }\n\n    function pack_22_10(bytes22 left, bytes10 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(80, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(176, right))\n        }\n    }\n\n    function pack_24_4(bytes24 left, bytes4 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(64, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(192, right))\n        }\n    }\n\n    function pack_24_8(bytes24 left, bytes8 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(64, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(192, right))\n        }\n    }\n\n    function pack_28_4(bytes28 left, bytes4 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(32, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(224, right))\n        }\n    }\n\n    function extract_2_1(bytes2 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 1) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_2_1(bytes2 self, bytes1 value, uint8 offset) internal pure returns (bytes2 result) {\n        bytes1 oldValue = extract_2_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_4_1(bytes4 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 3) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_4_1(bytes4 self, bytes1 value, uint8 offset) internal pure returns (bytes4 result) {\n        bytes1 oldValue = extract_4_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_4_2(bytes4 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_4_2(bytes4 self, bytes2 value, uint8 offset) internal pure returns (bytes4 result) {\n        bytes2 oldValue = extract_4_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_6_1(bytes6 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 5) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_6_1(bytes6 self, bytes1 value, uint8 offset) internal pure returns (bytes6 result) {\n        bytes1 oldValue = extract_6_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_6_2(bytes6 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_6_2(bytes6 self, bytes2 value, uint8 offset) internal pure returns (bytes6 result) {\n        bytes2 oldValue = extract_6_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_6_4(bytes6 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_6_4(bytes6 self, bytes4 value, uint8 offset) internal pure returns (bytes6 result) {\n        bytes4 oldValue = extract_6_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_1(bytes8 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 7) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_8_1(bytes8 self, bytes1 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes1 oldValue = extract_8_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_2(bytes8 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_8_2(bytes8 self, bytes2 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes2 oldValue = extract_8_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_4(bytes8 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_8_4(bytes8 self, bytes4 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes4 oldValue = extract_8_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_6(bytes8 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_8_6(bytes8 self, bytes6 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes6 oldValue = extract_8_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_1(bytes10 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 9) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_10_1(bytes10 self, bytes1 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes1 oldValue = extract_10_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_2(bytes10 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_10_2(bytes10 self, bytes2 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes2 oldValue = extract_10_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_4(bytes10 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_10_4(bytes10 self, bytes4 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes4 oldValue = extract_10_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_6(bytes10 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_10_6(bytes10 self, bytes6 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes6 oldValue = extract_10_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_8(bytes10 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_10_8(bytes10 self, bytes8 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes8 oldValue = extract_10_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_1(bytes12 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 11) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_12_1(bytes12 self, bytes1 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes1 oldValue = extract_12_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_2(bytes12 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_12_2(bytes12 self, bytes2 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes2 oldValue = extract_12_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_4(bytes12 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_12_4(bytes12 self, bytes4 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes4 oldValue = extract_12_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_6(bytes12 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_12_6(bytes12 self, bytes6 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes6 oldValue = extract_12_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_8(bytes12 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_12_8(bytes12 self, bytes8 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes8 oldValue = extract_12_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_10(bytes12 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_12_10(bytes12 self, bytes10 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes10 oldValue = extract_12_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_1(bytes16 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 15) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_16_1(bytes16 self, bytes1 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes1 oldValue = extract_16_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_2(bytes16 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_16_2(bytes16 self, bytes2 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes2 oldValue = extract_16_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_4(bytes16 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_16_4(bytes16 self, bytes4 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes4 oldValue = extract_16_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_6(bytes16 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_16_6(bytes16 self, bytes6 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes6 oldValue = extract_16_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_8(bytes16 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_16_8(bytes16 self, bytes8 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes8 oldValue = extract_16_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_10(bytes16 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_16_10(bytes16 self, bytes10 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes10 oldValue = extract_16_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_12(bytes16 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_16_12(bytes16 self, bytes12 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes12 oldValue = extract_16_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_1(bytes20 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 19) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_20_1(bytes20 self, bytes1 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes1 oldValue = extract_20_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_2(bytes20 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_20_2(bytes20 self, bytes2 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes2 oldValue = extract_20_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_4(bytes20 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_20_4(bytes20 self, bytes4 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes4 oldValue = extract_20_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_6(bytes20 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_20_6(bytes20 self, bytes6 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes6 oldValue = extract_20_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_8(bytes20 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_20_8(bytes20 self, bytes8 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes8 oldValue = extract_20_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_10(bytes20 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_20_10(bytes20 self, bytes10 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes10 oldValue = extract_20_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_12(bytes20 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_20_12(bytes20 self, bytes12 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes12 oldValue = extract_20_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_16(bytes20 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_20_16(bytes20 self, bytes16 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes16 oldValue = extract_20_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_1(bytes22 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 21) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_22_1(bytes22 self, bytes1 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes1 oldValue = extract_22_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_2(bytes22 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_22_2(bytes22 self, bytes2 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes2 oldValue = extract_22_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_4(bytes22 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_22_4(bytes22 self, bytes4 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes4 oldValue = extract_22_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_6(bytes22 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_22_6(bytes22 self, bytes6 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes6 oldValue = extract_22_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_8(bytes22 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_22_8(bytes22 self, bytes8 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes8 oldValue = extract_22_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_10(bytes22 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_22_10(bytes22 self, bytes10 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes10 oldValue = extract_22_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_12(bytes22 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_22_12(bytes22 self, bytes12 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes12 oldValue = extract_22_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_16(bytes22 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_22_16(bytes22 self, bytes16 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes16 oldValue = extract_22_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_20(bytes22 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_22_20(bytes22 self, bytes20 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes20 oldValue = extract_22_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_1(bytes24 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 23) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_24_1(bytes24 self, bytes1 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes1 oldValue = extract_24_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_2(bytes24 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 22) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_24_2(bytes24 self, bytes2 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes2 oldValue = extract_24_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_4(bytes24 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_24_4(bytes24 self, bytes4 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes4 oldValue = extract_24_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_6(bytes24 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_24_6(bytes24 self, bytes6 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes6 oldValue = extract_24_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_8(bytes24 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_24_8(bytes24 self, bytes8 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes8 oldValue = extract_24_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_10(bytes24 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_24_10(bytes24 self, bytes10 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes10 oldValue = extract_24_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_12(bytes24 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_24_12(bytes24 self, bytes12 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes12 oldValue = extract_24_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_16(bytes24 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_24_16(bytes24 self, bytes16 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes16 oldValue = extract_24_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_20(bytes24 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_24_20(bytes24 self, bytes20 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes20 oldValue = extract_24_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_22(bytes24 self, uint8 offset) internal pure returns (bytes22 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(80, not(0)))\n        }\n    }\n\n    function replace_24_22(bytes24 self, bytes22 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes22 oldValue = extract_24_22(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(80, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_1(bytes28 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 27) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_28_1(bytes28 self, bytes1 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes1 oldValue = extract_28_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_2(bytes28 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 26) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_28_2(bytes28 self, bytes2 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes2 oldValue = extract_28_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_4(bytes28 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 24) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_28_4(bytes28 self, bytes4 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes4 oldValue = extract_28_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_6(bytes28 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 22) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_28_6(bytes28 self, bytes6 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes6 oldValue = extract_28_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_8(bytes28 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_28_8(bytes28 self, bytes8 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes8 oldValue = extract_28_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_10(bytes28 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_28_10(bytes28 self, bytes10 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes10 oldValue = extract_28_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_12(bytes28 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_28_12(bytes28 self, bytes12 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes12 oldValue = extract_28_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_16(bytes28 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_28_16(bytes28 self, bytes16 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes16 oldValue = extract_28_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_20(bytes28 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_28_20(bytes28 self, bytes20 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes20 oldValue = extract_28_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_22(bytes28 self, uint8 offset) internal pure returns (bytes22 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(80, not(0)))\n        }\n    }\n\n    function replace_28_22(bytes28 self, bytes22 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes22 oldValue = extract_28_22(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(80, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_24(bytes28 self, uint8 offset) internal pure returns (bytes24 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(64, not(0)))\n        }\n    }\n\n    function replace_28_24(bytes28 self, bytes24 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes24 oldValue = extract_28_24(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(64, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_1(bytes32 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 31) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_32_1(bytes32 self, bytes1 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes1 oldValue = extract_32_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_2(bytes32 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 30) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_32_2(bytes32 self, bytes2 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes2 oldValue = extract_32_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_4(bytes32 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 28) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_32_4(bytes32 self, bytes4 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes4 oldValue = extract_32_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_6(bytes32 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 26) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_32_6(bytes32 self, bytes6 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes6 oldValue = extract_32_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_8(bytes32 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 24) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_32_8(bytes32 self, bytes8 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes8 oldValue = extract_32_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_10(bytes32 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 22) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_32_10(bytes32 self, bytes10 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes10 oldValue = extract_32_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_12(bytes32 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_32_12(bytes32 self, bytes12 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes12 oldValue = extract_32_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_16(bytes32 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_32_16(bytes32 self, bytes16 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes16 oldValue = extract_32_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_20(bytes32 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_32_20(bytes32 self, bytes20 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes20 oldValue = extract_32_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_22(bytes32 self, uint8 offset) internal pure returns (bytes22 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(80, not(0)))\n        }\n    }\n\n    function replace_32_22(bytes32 self, bytes22 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes22 oldValue = extract_32_22(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(80, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_24(bytes32 self, uint8 offset) internal pure returns (bytes24 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(64, not(0)))\n        }\n    }\n\n    function replace_32_24(bytes32 self, bytes24 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes24 oldValue = extract_32_24(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(64, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_28(bytes32 self, uint8 offset) internal pure returns (bytes28 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(32, not(0)))\n        }\n    }\n\n    function replace_32_28(bytes32 self, bytes28 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes28 oldValue = extract_32_28(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(32, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Panic.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library for emitting standardized panic codes.\n *\n * ```solidity\n * contract Example {\n *      using Panic for uint256;\n *\n *      // Use any of the declared internal constants\n *      function foo() { Panic.GENERIC.panic(); }\n *\n *      // Alternatively\n *      function foo() { Panic.panic(Panic.GENERIC); }\n * }\n * ```\n *\n * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n *\n * _Available since v5.1._\n */\n// slither-disable-next-line unused-state\nlibrary Panic {\n    /// @dev generic / unspecified error\n    uint256 internal constant GENERIC = 0x00;\n    /// @dev used by the assert() builtin\n    uint256 internal constant ASSERT = 0x01;\n    /// @dev arithmetic underflow or overflow\n    uint256 internal constant UNDER_OVERFLOW = 0x11;\n    /// @dev division or modulo by zero\n    uint256 internal constant DIVISION_BY_ZERO = 0x12;\n    /// @dev enum conversion error\n    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;\n    /// @dev invalid encoding in storage\n    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;\n    /// @dev empty array pop\n    uint256 internal constant EMPTY_ARRAY_POP = 0x31;\n    /// @dev array out of bounds access\n    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;\n    /// @dev resource error (too large allocation or too large array)\n    uint256 internal constant RESOURCE_ERROR = 0x41;\n    /// @dev calling invalid internal function\n    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;\n\n    /// @dev Reverts with a panic code. Recommended to use with\n    /// the internal constants with predefined codes.\n    function panic(uint256 code) internal pure {\n        assembly (\"memory-safe\") {\n            mstore(0x00, 0x4e487b71)\n            mstore(0x20, code)\n            revert(0x1c, 0x24)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n * consider using {ReentrancyGuardTransient} instead.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n    // Booleans are more expensive than uint256 or any type that takes up a full\n    // word because each write operation emits an extra SLOAD to first read the\n    // slot's contents, replace the bits taken up by the boolean, and then write\n    // back. This is the compiler's defense against contract upgrades and\n    // pointer aliasing, and it cannot be disabled.\n\n    // The values being non-zero value makes deployment a bit more expensive,\n    // but in exchange the refund on every call to nonReentrant will be lower in\n    // amount. Since refunds are capped to a percentage of the total\n    // transaction's gas, it is best to keep them low in cases like this one, to\n    // increase the likelihood of the full refund coming into effect.\n    uint256 private constant NOT_ENTERED = 1;\n    uint256 private constant ENTERED = 2;\n\n    uint256 private _status;\n\n    /**\n     * @dev Unauthorized reentrant call.\n     */\n    error ReentrancyGuardReentrantCall();\n\n    constructor() {\n        _status = NOT_ENTERED;\n    }\n\n    /**\n     * @dev Prevents a contract from calling itself, directly or indirectly.\n     * Calling a `nonReentrant` function from another `nonReentrant`\n     * function is not supported. It is possible to prevent this from happening\n     * by making the `nonReentrant` function external, and making it call a\n     * `private` function that does the actual work.\n     */\n    modifier nonReentrant() {\n        _nonReentrantBefore();\n        _;\n        _nonReentrantAfter();\n    }\n\n    function _nonReentrantBefore() private {\n        // On the first call to nonReentrant, _status will be NOT_ENTERED\n        if (_status == ENTERED) {\n            revert ReentrancyGuardReentrantCall();\n        }\n\n        // Any calls to nonReentrant after this point will fail\n        _status = ENTERED;\n    }\n\n    function _nonReentrantAfter() private {\n        // By storing the original value once again, a refund is triggered (see\n        // https://eips.ethereum.org/EIPS/eip-2200)\n        _status = NOT_ENTERED;\n    }\n\n    /**\n     * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n     * `nonReentrant` function in the call stack.\n     */\n    function _reentrancyGuardEntered() internal view returns (bool) {\n        return _status == ENTERED;\n    }\n}\n"},"@openzeppelin/contracts/utils/StorageSlot.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n *     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n *     function _getImplementation() internal view returns (address) {\n *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n *     }\n *\n *     function _setImplementation(address newImplementation) internal {\n *         require(newImplementation.code.length > 0);\n *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n *     }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n    struct AddressSlot {\n        address value;\n    }\n\n    struct BooleanSlot {\n        bool value;\n    }\n\n    struct Bytes32Slot {\n        bytes32 value;\n    }\n\n    struct Uint256Slot {\n        uint256 value;\n    }\n\n    struct Int256Slot {\n        int256 value;\n    }\n\n    struct StringSlot {\n        string value;\n    }\n\n    struct BytesSlot {\n        bytes value;\n    }\n\n    /**\n     * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n     */\n    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n     */\n    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n     */\n    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n     */\n    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n     */\n    function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `StringSlot` with member `value` located at `slot`.\n     */\n    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n     */\n    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := store.slot\n        }\n    }\n\n    /**\n     * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n     */\n    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n     */\n    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := store.slot\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n    using SafeCast for *;\n\n    bytes16 private constant HEX_DIGITS = \"0123456789abcdef\";\n    uint8 private constant ADDRESS_LENGTH = 20;\n\n    /**\n     * @dev The `value` string doesn't fit in the specified `length`.\n     */\n    error StringsInsufficientHexLength(uint256 value, uint256 length);\n\n    /**\n     * @dev The string being parsed contains characters that are not in scope of the given base.\n     */\n    error StringsInvalidChar();\n\n    /**\n     * @dev The string being parsed is not a properly formatted address.\n     */\n    error StringsInvalidAddressFormat();\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n     */\n    function toString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            uint256 length = Math.log10(value) + 1;\n            string memory buffer = new string(length);\n            uint256 ptr;\n            assembly (\"memory-safe\") {\n                ptr := add(buffer, add(32, length))\n            }\n            while (true) {\n                ptr--;\n                assembly (\"memory-safe\") {\n                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\n                }\n                value /= 10;\n                if (value == 0) break;\n            }\n            return buffer;\n        }\n    }\n\n    /**\n     * @dev Converts a `int256` to its ASCII `string` decimal representation.\n     */\n    function toStringSigned(int256 value) internal pure returns (string memory) {\n        return string.concat(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value)));\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            return toHexString(value, Math.log256(value) + 1);\n        }\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n     */\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n        uint256 localValue = value;\n        bytes memory buffer = new bytes(2 * length + 2);\n        buffer[0] = \"0\";\n        buffer[1] = \"x\";\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\n            buffer[i] = HEX_DIGITS[localValue & 0xf];\n            localValue >>= 4;\n        }\n        if (localValue != 0) {\n            revert StringsInsufficientHexLength(value, length);\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n     * representation.\n     */\n    function toHexString(address addr) internal pure returns (string memory) {\n        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n     * representation, according to EIP-55.\n     */\n    function toChecksumHexString(address addr) internal pure returns (string memory) {\n        bytes memory buffer = bytes(toHexString(addr));\n\n        // hash the hex part of buffer (skip length + 2 bytes, length 40)\n        uint256 hashValue;\n        assembly (\"memory-safe\") {\n            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))\n        }\n\n        for (uint256 i = 41; i > 1; --i) {\n            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)\n            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {\n                // case shift by xoring with 0x20\n                buffer[i] ^= 0x20;\n            }\n            hashValue >>= 4;\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Returns true if the two strings are equal.\n     */\n    function equal(string memory a, string memory b) internal pure returns (bool) {\n        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\n    }\n\n    /**\n     * @dev Parse a decimal string and returns the value as a `uint256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `[0-9]*`\n     * - The result must fit into an `uint256` type\n     */\n    function parseUint(string memory input) internal pure returns (uint256) {\n        return parseUint(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `[0-9]*`\n     * - The result must fit into an `uint256` type\n     */\n    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n        (bool success, uint256 value) = tryParseUint(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {\n        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n     * character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseUint(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, uint256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseUintUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseUintUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, uint256 value) {\n        bytes memory buffer = bytes(input);\n\n        uint256 result = 0;\n        for (uint256 i = begin; i < end; ++i) {\n            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n            if (chr > 9) return (false, 0);\n            result *= 10;\n            result += chr;\n        }\n        return (true, result);\n    }\n\n    /**\n     * @dev Parse a decimal string and returns the value as a `int256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `[-+]?[0-9]*`\n     * - The result must fit in an `int256` type.\n     */\n    function parseInt(string memory input) internal pure returns (int256) {\n        return parseInt(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `[-+]?[0-9]*`\n     * - The result must fit in an `int256` type.\n     */\n    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {\n        (bool success, int256 value) = tryParseInt(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n     * the result does not fit in a `int256`.\n     *\n     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n     */\n    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {\n        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    uint256 private constant ABS_MIN_INT256 = 2 ** 255;\n\n    /**\n     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n     * character or if the result does not fit in a `int256`.\n     *\n     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n     */\n    function tryParseInt(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, int256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseIntUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseIntUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, int256 value) {\n        bytes memory buffer = bytes(input);\n\n        // Check presence of a negative sign.\n        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        bool positiveSign = sign == bytes1(\"+\");\n        bool negativeSign = sign == bytes1(\"-\");\n        uint256 offset = (positiveSign || negativeSign).toUint();\n\n        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);\n\n        if (absSuccess && absValue < ABS_MIN_INT256) {\n            return (true, negativeSign ? -int256(absValue) : int256(absValue));\n        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {\n            return (true, type(int256).min);\n        } else return (false, 0);\n    }\n\n    /**\n     * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n     * - The result must fit in an `uint256` type.\n     */\n    function parseHexUint(string memory input) internal pure returns (uint256) {\n        return parseHexUint(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n     * - The result must fit in an `uint256` type.\n     */\n    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n        (bool success, uint256 value) = tryParseHexUint(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {\n        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n     * invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseHexUint(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, uint256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseHexUintUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseHexUintUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, uint256 value) {\n        bytes memory buffer = bytes(input);\n\n        // skip 0x prefix if present\n        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        uint256 offset = hasPrefix.toUint() * 2;\n\n        uint256 result = 0;\n        for (uint256 i = begin + offset; i < end; ++i) {\n            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n            if (chr > 15) return (false, 0);\n            result *= 16;\n            unchecked {\n                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).\n                // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked.\n                result += chr;\n            }\n        }\n        return (true, result);\n    }\n\n    /**\n     * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n     *\n     * Requirements:\n     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`\n     */\n    function parseAddress(string memory input) internal pure returns (address) {\n        return parseAddress(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`\n     */\n    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {\n        (bool success, address value) = tryParseAddress(input, begin, end);\n        if (!success) revert StringsInvalidAddressFormat();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n     * formatted address. See {parseAddress} requirements.\n     */\n    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {\n        return tryParseAddress(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n     * formatted address. See {parseAddress} requirements.\n     */\n    function tryParseAddress(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, address value) {\n        if (end > bytes(input).length || begin > end) return (false, address(0));\n\n        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;\n\n        // check that input is the correct length\n        if (end - begin == expectedLength) {\n            // length guarantees that this does not overflow, and value is at most type(uint160).max\n            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);\n            return (s, address(uint160(v)));\n        } else {\n            return (false, address(0));\n        }\n    }\n\n    function _tryParseChr(bytes1 chr) private pure returns (uint8) {\n        uint8 value = uint8(chr);\n\n        // Try to parse `chr`:\n        // - Case 1: [0-9]\n        // - Case 2: [a-f]\n        // - Case 3: [A-F]\n        // - otherwise not supported\n        unchecked {\n            if (value > 47 && value < 58) value -= 48;\n            else if (value > 96 && value < 103) value -= 87;\n            else if (value > 64 && value < 71) value -= 55;\n            else return type(uint8).max;\n        }\n\n        return value;\n    }\n\n    /**\n     * @dev Reads a bytes32 from a bytes array without bounds checking.\n     *\n     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n     * assembly block as such would prevent some optimizations.\n     */\n    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n        // This is not memory safe in the general case, but all calls to this private function are within bounds.\n        assembly (\"memory-safe\") {\n            value := mload(add(buffer, add(0x20, offset)))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/types/Time.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/types/Time.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"../math/Math.sol\";\nimport {SafeCast} from \"../math/SafeCast.sol\";\n\n/**\n * @dev This library provides helpers for manipulating time-related objects.\n *\n * It uses the following types:\n * - `uint48` for timepoints\n * - `uint32` for durations\n *\n * While the library doesn't provide specific types for timepoints and duration, it does provide:\n * - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n * - additional helper functions\n */\nlibrary Time {\n    using Time for *;\n\n    /**\n     * @dev Get the block timestamp as a Timepoint.\n     */\n    function timestamp() internal view returns (uint48) {\n        return SafeCast.toUint48(block.timestamp);\n    }\n\n    /**\n     * @dev Get the block number as a Timepoint.\n     */\n    function blockNumber() internal view returns (uint48) {\n        return SafeCast.toUint48(block.number);\n    }\n\n    // ==================================================== Delay =====================================================\n    /**\n     * @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the\n     * future. The \"effect\" timepoint describes when the transitions happens from the \"old\" value to the \"new\" value.\n     * This allows updating the delay applied to some operation while keeping some guarantees.\n     *\n     * In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for\n     * some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set\n     * the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should\n     * still apply for some time.\n     *\n     *\n     * The `Delay` type is 112 bits long, and packs the following:\n     *\n     * ```\n     *   | [uint48]: effect date (timepoint)\n     *   |           | [uint32]: value before (duration)\n     *   ↓           ↓       ↓ [uint32]: value after (duration)\n     * 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC\n     * ```\n     *\n     * NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently\n     * supported.\n     */\n    type Delay is uint112;\n\n    /**\n     * @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature\n     */\n    function toDelay(uint32 duration) internal pure returns (Delay) {\n        return Delay.wrap(duration);\n    }\n\n    /**\n     * @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n     * change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered.\n     */\n    function _getFullAt(\n        Delay self,\n        uint48 timepoint\n    ) private pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        (valueBefore, valueAfter, effect) = self.unpack();\n        return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect);\n    }\n\n    /**\n     * @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n     * effect timepoint is 0, then the pending value should not be considered.\n     */\n    function getFull(Delay self) internal view returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        return _getFullAt(self, timestamp());\n    }\n\n    /**\n     * @dev Get the current value.\n     */\n    function get(Delay self) internal view returns (uint32) {\n        (uint32 delay, , ) = self.getFull();\n        return delay;\n    }\n\n    /**\n     * @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n     * enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n     * new delay becomes effective.\n     */\n    function withUpdate(\n        Delay self,\n        uint32 newValue,\n        uint32 minSetback\n    ) internal view returns (Delay updatedDelay, uint48 effect) {\n        uint32 value = self.get();\n        uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0));\n        effect = timestamp() + setback;\n        return (pack(value, newValue, effect), effect);\n    }\n\n    /**\n     * @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint).\n     */\n    function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) {\n        uint112 raw = Delay.unwrap(self);\n\n        valueAfter = uint32(raw);\n        valueBefore = uint32(raw >> 32);\n        effect = uint48(raw >> 64);\n\n        return (valueBefore, valueAfter, effect);\n    }\n\n    /**\n     * @dev pack the components into a Delay object.\n     */\n    function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) {\n        return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter));\n    }\n}\n"},"contracts-exposed/CashFlowLender.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\n\npragma solidity >=0.6.0;\n\nimport \"../contracts/CashFlowLender.sol\";\nimport \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport \"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol\";\nimport \"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport \"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\";\nimport \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\";\nimport \"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\";\nimport \"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC20.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC721.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\";\nimport \"@openzeppelin/contracts/utils/Packing.sol\";\nimport \"@openzeppelin/contracts/utils/Address.sol\";\nimport \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"../contracts/dependencies/IPolicyPool.sol\";\nimport \"../contracts/dependencies/AccessManagedProxy.sol\";\nimport \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport \"@openzeppelin/contracts/utils/Errors.sol\";\nimport \"@openzeppelin/contracts/utils/Panic.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC1363.sol\";\nimport \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\";\nimport \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport \"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC1967.sol\";\nimport \"@openzeppelin/contracts/utils/StorageSlot.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC165.sol\";\nimport \"@openzeppelin/contracts/proxy/Proxy.sol\";\nimport \"@openzeppelin/contracts/utils/types/Time.sol\";\n\ncontract $CashFlowLender is CashFlowLender {\n    bytes32 public constant __hh_exposed_bytecode_marker = \"hardhat-exposed\";\n\n    event return$_deinvest(uint256 deinvested);\n\n    event return$_changeDebt(int256 currentDebt_);\n\n    constructor(address trustedForwarder_, IPolicyPool policyPool_) CashFlowLender(trustedForwarder_, policyPool_) payable {\n    }\n\n    function $JAN_1ST_2025() external pure returns (uint256) {\n        return JAN_1ST_2025;\n    }\n\n    function $SECONDS_PER_DAY() external pure returns (uint256) {\n        return SECONDS_PER_DAY;\n    }\n\n    function $_policyPool() external view returns (IPolicyPool) {\n        return _policyPool;\n    }\n\n    function $CashFlowLenderStorageLocation() external pure returns (bytes32) {\n        return CashFlowLenderStorageLocation;\n    }\n\n    function $ERC4626StorageLocation() external pure returns (bytes32) {\n        return ERC4626StorageLocation;\n    }\n\n    function $onlyPolicyPool() external payable onlyPolicyPool() {}\n\n    function $forwardNewPolicyWrapper(address target) external payable forwardNewPolicyWrapper(target) {}\n\n    function $forwardResolvePolicyWrapper(address target) external payable forwardResolvePolicyWrapper(target) {}\n\n    function $onlyProxy() external payable onlyProxy() {}\n\n    function $notDelegated() external payable notDelegated() {}\n\n    function $initializer() external payable initializer() {}\n\n    function $reinitializer(uint64 version) external payable reinitializer(version) {}\n\n    function $onlyInitializing() external payable onlyInitializing() {}\n\n    function $_getERC4626StorageCFL() external pure returns (ERC4626Storage memory $) {\n        ($) = super._getERC4626StorageCFL();\n    }\n\n    function $__CashFlowLender_init(string calldata name_,string calldata symbol_,IERC4626 yieldVault_) external payable {\n        super.__CashFlowLender_init(name_,symbol_,yieldVault_);\n    }\n\n    function $__CashFlowLender_init_unchained(IERC4626 yieldVault_) external payable {\n        super.__CashFlowLender_init_unchained(yieldVault_);\n    }\n\n    function $_setYieldVault(IERC4626 yieldVault_) external payable {\n        super._setYieldVault(yieldVault_);\n    }\n\n    function $_getTargetConfig(address target) external view returns (TargetConfig memory targetConfig) {\n        (targetConfig) = super._getTargetConfig(target);\n    }\n\n    function $_authorizeUpgrade(address newImpl) external view {\n        super._authorizeUpgrade(newImpl);\n    }\n\n    function $_contextSuffixLength() external view returns (uint256 ret0) {\n        (ret0) = super._contextSuffixLength();\n    }\n\n    function $_msgSender() external view returns (address ret0) {\n        (ret0) = super._msgSender();\n    }\n\n    function $_msgData() external view returns (bytes memory ret0) {\n        (ret0) = super._msgData();\n    }\n\n    function $_balance() external view returns (uint256 ret0) {\n        (ret0) = super._balance();\n    }\n\n    function $_getMonth(uint256 dayInYear,bool isLeap) external pure returns (uint256 ret0) {\n        (ret0) = super._getMonth(dayInYear,isLeap);\n    }\n\n    function $_computeCalendarMonth(uint256 timestamp) external pure returns (uint32 slotIndex) {\n        (slotIndex) = super._computeCalendarMonth(timestamp);\n    }\n\n    function $_makeSlotIndex(uint32 slotSize,uint256 timestamp) external pure returns (uint32 slotIndex) {\n        (slotIndex) = super._makeSlotIndex(slotSize,timestamp);\n    }\n\n    function $_makeTargetSlot(address target,uint32 slotSize,uint32 slotIndex) external pure returns (TargetSlot slot) {\n        (slot) = super._makeTargetSlot(target,slotSize,slotIndex);\n    }\n\n    function $_deinvest(uint256 amount) external payable returns (uint256 deinvested) {\n        (deinvested) = super._deinvest(amount);\n        emit return$_deinvest(deinvested);\n    }\n\n    function $_changeDebt(address target,uint32 slotSize,uint32 slotIndex,int256 amount) external payable returns (int256 currentDebt_) {\n        (currentDebt_) = super._changeDebt(target,slotSize,slotIndex,amount);\n        emit return$_changeDebt(currentDebt_);\n    }\n\n    function $_checkCanForward(address caller,address target,bytes4 selector) external view {\n        super._checkCanForward(caller,target,selector);\n    }\n\n    function $_withdraw(address caller,address receiver,address owner,uint256 assets,uint256 shares) external payable {\n        super._withdraw(caller,receiver,owner,assets,shares);\n    }\n\n    function $__ERC4626_init(IERC20 asset_) external payable {\n        super.__ERC4626_init(asset_);\n    }\n\n    function $__ERC4626_init_unchained(IERC20 asset_) external payable {\n        super.__ERC4626_init_unchained(asset_);\n    }\n\n    function $_convertToShares(uint256 assets,Math.Rounding rounding) external view returns (uint256 ret0) {\n        (ret0) = super._convertToShares(assets,rounding);\n    }\n\n    function $_convertToAssets(uint256 shares,Math.Rounding rounding) external view returns (uint256 ret0) {\n        (ret0) = super._convertToAssets(shares,rounding);\n    }\n\n    function $_deposit(address caller,address receiver,uint256 assets,uint256 shares) external payable {\n        super._deposit(caller,receiver,assets,shares);\n    }\n\n    function $_decimalsOffset() external view returns (uint8 ret0) {\n        (ret0) = super._decimalsOffset();\n    }\n\n    function $__ERC20_init(string calldata name_,string calldata symbol_) external payable {\n        super.__ERC20_init(name_,symbol_);\n    }\n\n    function $__ERC20_init_unchained(string calldata name_,string calldata symbol_) external payable {\n        super.__ERC20_init_unchained(name_,symbol_);\n    }\n\n    function $_transfer(address from,address to,uint256 value) external payable {\n        super._transfer(from,to,value);\n    }\n\n    function $_update(address from,address to,uint256 value) external payable {\n        super._update(from,to,value);\n    }\n\n    function $_mint(address account,uint256 value) external payable {\n        super._mint(account,value);\n    }\n\n    function $_burn(address account,uint256 value) external payable {\n        super._burn(account,value);\n    }\n\n    function $_approve(address owner,address spender,uint256 value) external payable {\n        super._approve(owner,spender,value);\n    }\n\n    function $_approve(address owner,address spender,uint256 value,bool emitEvent) external payable {\n        super._approve(owner,spender,value,emitEvent);\n    }\n\n    function $_spendAllowance(address owner,address spender,uint256 value) external payable {\n        super._spendAllowance(owner,spender,value);\n    }\n\n    function $__UUPSUpgradeable_init() external payable {\n        super.__UUPSUpgradeable_init();\n    }\n\n    function $__UUPSUpgradeable_init_unchained() external payable {\n        super.__UUPSUpgradeable_init_unchained();\n    }\n\n    function $_checkProxy() external view {\n        super._checkProxy();\n    }\n\n    function $_checkNotDelegated() external view {\n        super._checkNotDelegated();\n    }\n\n    function $__Context_init() external payable {\n        super.__Context_init();\n    }\n\n    function $__Context_init_unchained() external payable {\n        super.__Context_init_unchained();\n    }\n\n    function $_checkInitializing() external view {\n        super._checkInitializing();\n    }\n\n    function $_disableInitializers() external payable {\n        super._disableInitializers();\n    }\n\n    function $_getInitializedVersion() external view returns (uint64 ret0) {\n        (ret0) = super._getInitializedVersion();\n    }\n\n    function $_isInitializing() external view returns (bool ret0) {\n        (ret0) = super._isInitializing();\n    }\n\n    receive() external payable {}\n}\n"},"contracts-exposed/dependencies/AccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\n\npragma solidity >=0.6.0;\n\nimport \"../../contracts/dependencies/AccessManagedProxy.sol\";\nimport \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\";\nimport \"@openzeppelin/contracts/proxy/Proxy.sol\";\nimport \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\";\nimport \"@openzeppelin/contracts/utils/types/Time.sol\";\nimport \"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC1967.sol\";\nimport \"@openzeppelin/contracts/utils/Address.sol\";\nimport \"@openzeppelin/contracts/utils/StorageSlot.sol\";\nimport \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/utils/Errors.sol\";\nimport \"@openzeppelin/contracts/utils/Panic.sol\";\n\ncontract $AccessManagedProxy is AccessManagedProxy {\n    bytes32 public constant __hh_exposed_bytecode_marker = \"hardhat-exposed\";\n\n    constructor(address implementation, bytes memory _data, IAccessManager manager) AccessManagedProxy(implementation, _data, manager) payable {\n    }\n\n    function $_delegate(address implementation) external payable {\n        super._delegate(implementation);\n    }\n\n    function $_implementation() external view returns (address ret0) {\n        (ret0) = super._implementation();\n    }\n\n    function $_fallback() external payable {\n        super._fallback();\n    }\n\n    receive() external payable {}\n}\n"},"contracts/CashFlowLender.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.16;\n\nimport {ERC4626Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\";\nimport {ERC2771ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\";\nimport {ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\";\nimport {IERC20} from \"@openzeppelin/contracts/interfaces/IERC20.sol\";\nimport {IERC721} from \"@openzeppelin/contracts/interfaces/IERC721.sol\";\nimport {IERC721Receiver} from \"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {Packing} from \"@openzeppelin/contracts/utils/Packing.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {IERC721Receiver} from \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\";\nimport {ERC165} from \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport {IPolicyPool} from \"./dependencies/IPolicyPool.sol\";\nimport {IPolicyHolder} from \"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\";\nimport {IPolicyHolderV2} from \"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol\";\nimport {AccessManagedProxy} from \"./dependencies/AccessManagedProxy.sol\";\n\n/**\n * @title CashFlow Lender Module that tracks ownership\n * @dev Implements the ERC-4626 standard tracking how much liquidity was provided by each LP.\n *      The assets managed by the vault are a mix of liquid USDC + the $._totalDebt tracked by the CFL.\n *\n *      The debt is tracked as a global number, but also for each target and period (month for example). If the debt\n *      is negative, it means Ensuro owes to the customer.\n *\n *      The funds can also be sent to a $._yieldVault to generate yields on the idle funds.\n *\n *      The contract forwards the calls to the targets (Ensuro risk modules), but it has two variants for doing that\n *      a. forwardNewPolicy (and the batch variant): this method tracks the balance reduction caused by paying the\n *         premiums, and in base of that number increases the debt.\n *      b. forwardResolvePolicy (and the batch variant): this method just forwards the call (after doing access\n *         validations). The debt will be reduced when the policies are resolved and the PolicyPool calls\n *         `onPayoutReceived(...)`\n *\n *      The contract is a UUPSUpgradeable contract but MUST NOT be used with a plain ERC1967 proxy, but instead with\n *      an `AccessManagedProxy` that executes the access control. The contract DOESN'T IMPLEMENT ACCESS CONTROL\n *      validations on the critical methods. It's assumed it will be deployed behind an AccessManagedProxy with\n *      the proper access control setup.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract CashFlowLender is ERC2771ContextUpgradeable, UUPSUpgradeable, ERC4626Upgradeable, IPolicyHolderV2, ERC165 {\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n  using SafeCast for int256;\n  using Address for address;\n\n  bytes4 public constant OWN_POLICY_SELECTOR = 0xffffffff;\n\n  /**\n   * @dev Slot size used to indicate the slots use calendar months.\n   *      Only years from 2025 to 2099 are supported\n   */\n  uint32 public constant SLOTSIZE_CALENDAR_MONTH = type(uint32).max;\n\n  uint256 internal constant JAN_1ST_2025 = 1735689600;\n  uint256 internal constant SECONDS_PER_DAY = 86400;\n\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IPolicyPool internal immutable _policyPool;\n\n  /**\n   * @dev The target slot is the (address target, uint32 slotSize, uint32 slotIndex) packed in a bytes32\n   *      The slotIndex is defined as block.timestamp / slotSize for non calendar month slots or as year*100 + month\n   *      for calendar month slots.\n   *      For example, the slot for Jan 2026 is 202601\n   */\n  type TargetSlot is bytes32; // (target_address, slotSize, block.timestamp / slotSize) packed as bytes32\n\n  /**\n   * @dev This status defines what kind of operations are enabled for a given target\n   */\n  enum TargetStatus {\n    inactive, // Nothing accepted\n    active, // Everything accepted\n    deprecated, // Only resolutions accepted\n    suspended // Nothing accepted\n  }\n\n  struct TargetConfig {\n    uint32 slotSize;\n    TargetStatus status;\n    uint96 debtLimit; // Max debt in a given period\n    uint96 minLiquidity; // Minimum cash required before a batch of new policies\n  }\n\n  /// @custom:storage-location erc7201:ensuro.storage.CashFlowLender\n  struct CashFlowLenderStorage {\n    IERC4626 _yieldVault;\n    int96 _totalDebt;\n    mapping(address => TargetConfig) _targets;\n    mapping(TargetSlot => int256) _debtByPeriod;\n  }\n\n  // keccak256(abi.encode(uint256(keccak256(\"ensuro.storage.CashFlowLender\")) - 1)) & ~bytes32(uint256(0xff))\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 internal constant CashFlowLenderStorageLocation =\n    0x0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00;\n\n  function _getCashFlowLenderStorage() internal pure returns (CashFlowLenderStorage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := CashFlowLenderStorageLocation\n    }\n  }\n\n  // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC4626\")) - 1)) & ~bytes32(uint256(0xff))\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 internal constant ERC4626StorageLocation = 0x0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00;\n\n  // Copied from OZ's ERC4626.sol, because the original function is private\n  function _getERC4626StorageCFL() internal pure returns (ERC4626Storage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := ERC4626StorageLocation\n    }\n  }\n\n  event YieldVaultChanged(IERC4626 oldVault, IERC4626 newVault);\n  event DebtChanged(\n    address indexed target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    int256 value,\n    int256 debtAfterChange,\n    int256 totalDebtAfterChange\n  );\n  event CashOutPayout(\n    address indexed target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    uint256 amount,\n    int256 debtAfterChange,\n    address destination\n  );\n  event RepayDebt(\n    address indexed target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    uint256 amount,\n    int256 debtAfterChange,\n    address payer\n  );\n  event TargetAdded(address indexed target, TargetConfig config);\n  event TargetLimitsChanged(\n    address indexed target,\n    uint256 oldDebtLimit,\n    uint256 newDebtLimit,\n    uint256 oldMinLiquidity,\n    uint256 newMinLiquidity\n  );\n  event TargetStatusChanged(address indexed target, TargetStatus oldStatus, TargetStatus newStatus);\n  event TargetSlotSizeChanged(address indexed target, uint32 oldSlotSize, uint32 newSlotSize);\n  event AssetChanged(address oldAsset, address newAsset);\n\n  error InvalidPolicyPool();\n  error OnlyPolicyPool(address sender);\n  error TargetNotActive(address target, TargetStatus status);\n  error CannotDeactivateTarget();\n  error TargetAlreadyExists();\n  error InvalidSlotSize();\n  error DebtLimitExceeded(int256 currentDebt, uint96 debtLimit);\n  error UnauthorizedForward(address caller, address target, bytes4 requiredSelector);\n  error BalanceDecreasedOnResolve(uint256 balanceReduction);\n  error YieldVaultIsRequired();\n  error NotEnoughCash();\n  error TargetNotFound(address target);\n  error CashOutExceedsLimit(uint256 amount, int256 debtAfter);\n  error RepaymentExceedsLimit(uint256 amount, int256 debtAfter);\n  error CannotDeinvestYieldVault();\n  error NothingToRefresh();\n  error CannotRefreshAssetWithCash();\n  error MustChangeYieldAssetBeforeRefresh();\n\n  modifier onlyPolicyPool() {\n    // I intentionally use msg.sender instead of _msgSender() because I know the PolicyPool won't call\n    // via the forwarded.\n    require(msg.sender == address(_policyPool), OnlyPolicyPool(msg.sender));\n    _;\n  }\n\n  modifier forwardNewPolicyWrapper(address target) {\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    require(targetConfig.status == TargetStatus.active, TargetNotActive(target, targetConfig.status));\n\n    // Measure the balance change\n    uint256 balanceBefore = _balance();\n\n    if (balanceBefore < uint256(targetConfig.minLiquidity)) {\n      _deinvest(uint256(targetConfig.minLiquidity) - balanceBefore);\n      balanceBefore = _balance();\n    }\n    _;\n    uint256 balanceAfter = _balance();\n\n    if (balanceAfter < balanceBefore) {\n      // Should always increase the debt, but just in case...\n      int256 currDebt = _changeDebt(\n        target,\n        targetConfig.slotSize,\n        _makeSlotIndex(targetConfig.slotSize, block.timestamp),\n        (balanceBefore - balanceAfter).toInt256()\n      );\n      require(currDebt <= int256(uint256(targetConfig.debtLimit)), DebtLimitExceeded(currDebt, targetConfig.debtLimit));\n    }\n  }\n\n  modifier forwardResolvePolicyWrapper(address target) {\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    require(\n      targetConfig.status == TargetStatus.active || targetConfig.status == TargetStatus.deprecated,\n      TargetNotActive(target, targetConfig.status)\n    );\n\n    // Measure the balance change to check it doesn't goes down\n    uint256 balanceBefore = _balance();\n    _;\n    uint256 balanceAfter = _balance();\n\n    if (balanceAfter < balanceBefore) {\n      revert BalanceDecreasedOnResolve(balanceBefore - balanceAfter);\n    }\n  }\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(address trustedForwarder_, IPolicyPool policyPool_) ERC2771ContextUpgradeable(trustedForwarder_) {\n    _policyPool = policyPool_;\n    _disableInitializers();\n  }\n\n  /**\n   * @dev Initializes the CashFlowLender\n   *\n   * @param name_ Name of the accounting token (ERC20) for the LPs\n   * @param symbol_ Symbol of the accounting token (ERC20) for the LPs\n   * @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\n   */\n  function initialize(string memory name_, string memory symbol_, IERC4626 yieldVault_) public virtual initializer {\n    __CashFlowLender_init(name_, symbol_, yieldVault_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __CashFlowLender_init(\n    string memory name_,\n    string memory symbol_,\n    IERC4626 yieldVault_\n  ) internal onlyInitializing {\n    __UUPSUpgradeable_init();\n    address asset_ = address(_policyPool.currency());\n    __ERC4626_init(IERC20(asset_));\n    __ERC20_init(name_, symbol_);\n    __CashFlowLender_init_unchained(yieldVault_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __CashFlowLender_init_unchained(IERC4626 yieldVault_) internal onlyInitializing {\n    // Infinite approval to the PolicyPool to pay the premiums\n    _policyPool.currency().approve(address(_policyPool), type(uint256).max);\n    _setYieldVault(yieldVault_);\n  }\n\n  function _setYieldVault(IERC4626 yieldVault_) internal {\n    require(address(yieldVault_) != address(0), YieldVaultIsRequired());\n    // I explicitly avoid checking yieldVault_.asset() == asset().\n    // This is to support migration of the asset (from USDC bridged to USDC native) that is on the roadmap\n    // Only temporarily, during a migration we might have that difference\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    IERC4626 oldVault = $._yieldVault;\n    $._yieldVault = yieldVault_;\n    if (address(oldVault) != address(0)) IERC20Metadata(asset()).approve(address(oldVault), 0);\n    IERC20Metadata(asset()).approve(address(yieldVault_), type(uint256).max);\n    emit YieldVaultChanged(oldVault, yieldVault_);\n  }\n\n  /**\n   * @dev Changes the Yield Vault, deinvesting all the funds before doing it.\n   *\n   * @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\n   * @param force If true, it continues the operation even if some of the funds aren't withdrawable.\n   *\n   * Emits a {YieldVaultChanged} event\n   */\n  function setYieldVault(IERC4626 yieldVault_, bool force) external {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    uint256 yieldAssets = $._yieldVault.convertToAssets($._yieldVault.balanceOf(address(this)));\n    require(_deinvest(yieldAssets) == yieldAssets || force, CannotDeinvestYieldVault());\n    _setYieldVault(yieldVault_);\n  }\n\n  function yieldVault() external view returns (IERC4626) {\n    return _getCashFlowLenderStorage()._yieldVault;\n  }\n\n  function policyPool() external view returns (IPolicyPool) {\n    return _policyPool;\n  }\n\n  function _getTargetConfig(address target) internal view returns (TargetConfig storage targetConfig) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    targetConfig = $._targets[target];\n    require(targetConfig.status != TargetStatus.inactive, TargetNotFound(target));\n  }\n\n  /**\n   * @dev Adds a new target that can be used later to forward policies and track the debt.\n   *\n   * @param target Address of the target contract. It should be an Ensuro's RiskModule\n   * @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   * @param debtLimit Limit of the debt in a given period for the target.\n   * @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n   *                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n   *\n   * Emits a {TargetAdded} event\n   */\n  function addTarget(address target, uint32 slotSize, uint256 debtLimit, uint256 minLiquidity) external {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    TargetConfig storage targetConfig = $._targets[target];\n    require(targetConfig.status == TargetStatus.inactive, TargetAlreadyExists());\n    require(slotSize != 0, InvalidSlotSize());\n    $._targets[target] = TargetConfig({\n      status: TargetStatus.active,\n      slotSize: slotSize,\n      debtLimit: debtLimit.toUint96(),\n      minLiquidity: minLiquidity.toUint96()\n    });\n    emit TargetAdded(target, targetConfig);\n  }\n\n  /**\n   * @dev Changes debtLimit and minLiquidity for a given target.\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param debtLimit New limit of the debt in a given period for the target.\n   * @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n   *                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n   *\n   * Emits a {TargetLimitsChanged} event\n   */\n  function setTargetLimits(address target, uint256 debtLimit, uint256 minLiquidity) external {\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    emit TargetLimitsChanged(target, targetConfig.debtLimit, debtLimit, targetConfig.minLiquidity, minLiquidity);\n    targetConfig.debtLimit = debtLimit.toUint96();\n    targetConfig.minLiquidity = minLiquidity.toUint96();\n  }\n\n  /**\n   * @dev Changes status of a given target. See {TargetStatus}.\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param newStatus The new status of the contract\n   *\n   * Emits a {TargetStatusChanged} event\n   */\n  function setTargetStatus(address target, TargetStatus newStatus) external {\n    // Check the newStatus != inactive. If you want to disable a target, move it to suspended\n    require(newStatus != TargetStatus.inactive, CannotDeactivateTarget());\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    emit TargetStatusChanged(target, targetConfig.status, newStatus);\n    targetConfig.status = newStatus;\n  }\n\n  function getTargetStatus(address target) external view returns (TargetStatus) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return $._targets[target].status;\n  }\n\n  /**\n   * @dev Changes the slotSize of a given target.\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param newSlotSize New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   *\n   * Emits a {TargetStatusChanged} event\n   */\n  function setTargetSlotSize(address target, uint32 newSlotSize) external {\n    require(newSlotSize != 0, InvalidSlotSize());\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    emit TargetSlotSizeChanged(target, targetConfig.slotSize, newSlotSize);\n    targetConfig.slotSize = newSlotSize;\n  }\n\n  /// @inheritdoc ERC165\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return\n      interfaceId == type(IERC721Receiver).interfaceId ||\n      interfaceId == type(IPolicyHolder).interfaceId ||\n      interfaceId == type(IPolicyHolderV2).interfaceId ||\n      interfaceId == type(IERC20).interfaceId ||\n      interfaceId == type(IERC20Metadata).interfaceId ||\n      interfaceId == type(IERC4626).interfaceId ||\n      super.supportsInterface(interfaceId);\n  }\n\n  // solhint-disable-next-line no-empty-blocks\n  function _authorizeUpgrade(address newImpl) internal view override {}\n\n  /**\n   * @dev Refreshes the asset of the vault, when the currency() of the PolicyPool changes\n   *\n   * Requires _balance() = 0 and yieldVault.asset() = _policyPool.currency()\n   *\n   * Emits a {TargetStatusChanged} event\n   */\n  function refreshAsset() external {\n    address oldAsset = asset();\n    address newAsset = address(_policyPool.currency());\n    require(oldAsset != newAsset, NothingToRefresh());\n    require(_balance() == 0, CannotRefreshAssetWithCash());\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    require($._yieldVault.asset() == newAsset, MustChangeYieldAssetBeforeRefresh());\n    ERC4626Storage storage $ERC4626 = _getERC4626StorageCFL();\n    $ERC4626._asset = IERC20(newAsset);\n    // Revokes old asset approvals and approves spending of the new assets\n    IERC20Metadata(oldAsset).approve(address($._yieldVault), 0);\n    IERC20Metadata(newAsset).approve(address($._yieldVault), type(uint256).max);\n    IERC20Metadata(oldAsset).approve(address(_policyPool), 0);\n    IERC20Metadata(newAsset).approve(address(_policyPool), type(uint256).max);\n    emit AssetChanged(oldAsset, newAsset);\n  }\n\n  /// @inheritdoc IERC721Receiver\n  function onERC721Received(\n    address,\n    address,\n    uint256,\n    bytes calldata\n  ) external view override onlyPolicyPool returns (bytes4) {\n    return IERC721Receiver.onERC721Received.selector;\n  }\n\n  /// @inheritdoc IPolicyHolder\n  function onPolicyExpired(address, address, uint256) external view override onlyPolicyPool returns (bytes4) {\n    return IPolicyHolder.onPolicyExpired.selector;\n  }\n\n  /// @inheritdoc IPolicyHolder\n  function onPayoutReceived(\n    address operator,\n    address,\n    uint256,\n    uint256 amount\n  ) external override onlyPolicyPool returns (bytes4) {\n    // In the PolicyPool the `operator` == _msgSender() for the payout call is the Risk Module, so, it's the same\n    // target we called on newPolicy.\n    TargetConfig storage targetConfig = _getTargetConfig(operator);\n    require(\n      targetConfig.status == TargetStatus.active || targetConfig.status == TargetStatus.deprecated,\n      TargetNotActive(operator, targetConfig.status)\n    );\n    _changeDebt(\n      operator,\n      targetConfig.slotSize,\n      _makeSlotIndex(targetConfig.slotSize, block.timestamp),\n      -amount.toInt256()\n    );\n    return IPolicyHolder.onPayoutReceived.selector;\n  }\n\n  /// @inheritdoc IPolicyHolderV2\n  function onPolicyReplaced(address, address, uint256, uint256) external view override onlyPolicyPool returns (bytes4) {\n    return IPolicyHolderV2.onPolicyReplaced.selector;\n  }\n\n  // Fix Context base contract duplicates\n\n  /// @inheritdoc ERC2771ContextUpgradeable\n  function _contextSuffixLength()\n    internal\n    view\n    override(ContextUpgradeable, ERC2771ContextUpgradeable)\n    returns (uint256)\n  {\n    return ERC2771ContextUpgradeable._contextSuffixLength();\n  }\n\n  /// @inheritdoc ERC2771ContextUpgradeable\n  function _msgSender() internal view override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (address) {\n    return ERC2771ContextUpgradeable._msgSender();\n  }\n\n  /// @inheritdoc ERC2771ContextUpgradeable\n  function _msgData() internal view override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) {\n    return ERC2771ContextUpgradeable._msgData();\n  }\n\n  function _balance() internal view returns (uint256) {\n    return IERC20Metadata(asset()).balanceOf(address(this));\n  }\n\n  function _getMonth(uint256 dayInYear, bool isLeap) internal pure returns (uint256) {\n    // Method implemented as a table instead of a loop for gas savings.\n    // Saves around 300 gas per call.\n    if (dayInYear < 31) return 1;\n    if (isLeap) {\n      if (dayInYear < 60) return 2;\n      dayInYear--;\n    } else {\n      if (dayInYear < 59) return 2;\n    }\n    return\n      (dayInYear < 90)\n        ? 3\n        : (dayInYear < 120)\n          ? 4\n          : (dayInYear < 151)\n            ? 5\n            : (dayInYear < 181)\n              ? 6\n              : (dayInYear < 212)\n                ? 7\n                : (dayInYear < 243)\n                  ? 8\n                  : (dayInYear < 273)\n                    ? 9\n                    : (dayInYear < 304)\n                      ? 10\n                      : (dayInYear < 334)\n                        ? 11\n                        : 12;\n  }\n\n  function _computeCalendarMonth(uint256 timestamp) internal pure returns (uint32 slotIndex) {\n    bool isLeap;\n    slotIndex = 2025;\n    uint256 daysRemaining = (timestamp - JAN_1ST_2025) / SECONDS_PER_DAY;\n\n    // Iterate through years to find the correct year\n    while (daysRemaining >= (isLeap ? 366 : 365)) {\n      daysRemaining -= isLeap ? 366 : 365;\n      ++slotIndex;\n      isLeap = slotIndex % 4 == 0 && (slotIndex % 100 != 0 || slotIndex % 400 == 0);\n    }\n    return uint32(slotIndex * 100 + _getMonth(daysRemaining, isLeap));\n  }\n\n  function _makeSlotIndex(uint32 slotSize, uint256 timestamp) internal pure returns (uint32 slotIndex) {\n    return (slotSize == SLOTSIZE_CALENDAR_MONTH) ? _computeCalendarMonth(timestamp) : uint32(timestamp / slotSize);\n  }\n\n  function _makeTargetSlot(address target, uint32 slotSize, uint32 slotIndex) internal pure returns (TargetSlot slot) {\n    return TargetSlot.wrap(Packing.pack_20_8(bytes20(target), Packing.pack_4_4(bytes4(slotSize), bytes4(slotIndex))));\n  }\n\n  function _deinvest(uint256 amount) internal returns (uint256 deinvested) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    deinvested = Math.min(amount, $._yieldVault.maxWithdraw(address(this)));\n    $._yieldVault.withdraw(deinvested, address(this), address(this));\n  }\n\n  function _changeDebt(\n    address target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    int256 amount\n  ) internal returns (int256 currentDebt_) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    TargetSlot slot = _makeTargetSlot(target, slotSize, slotIndex);\n    currentDebt_ = $._debtByPeriod[slot] += amount;\n    $._totalDebt += int96(amount);\n    emit DebtChanged(target, slotSize, slotIndex, int256(amount), currentDebt_, $._totalDebt);\n  }\n\n  /**\n   * @dev Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable\n   *      a given call (selector) to a given target\n   *\n   * @param target Address of the target contract.\n   * @param selector The 4-bytes method selector of the method to be called in the target\n   */\n  function makeFakeSelector(address target, bytes4 selector) public pure returns (bytes4) {\n    return Packing.extract_32_4(keccak256(abi.encodePacked(target, selector)), 0);\n  }\n\n  function _checkCanForward(address caller, address target, bytes4 selector) internal view {\n    bytes4 fakeSelector = makeFakeSelector(target, selector);\n    (bool immediate, ) = AccessManagedProxy(payable(address(this))).ACCESS_MANAGER().canCall(\n      caller,\n      address(this),\n      fakeSelector\n    );\n    require(immediate, UnauthorizedForward(caller, target, fakeSelector));\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n   *      debt (in the current time slot).\n   *\n   *      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n   *      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n   *      will fail anyway.\n   *\n   *      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   *      Requires the return value of the called function returns the policyId and checks if the resulting policy\n   *      (a PolicyPool NFT), is owned by the CFL.\n   *      If it's not, it requires the _msgSender() has permission to call address(this) on\n   *      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data The call to execute on the target contract\n   */\n  function forwardNewPolicy(\n    address target,\n    bytes calldata data\n  ) external forwardNewPolicyWrapper(target) returns (bytes memory result) {\n    _checkCanForward(_msgSender(), target, bytes4(data[0:4]));\n    result = target.functionCall(data);\n    uint256 policyId = abi.decode(result, (uint256));\n    if (IERC721(address(_policyPool)).ownerOf(policyId) != address(this)) {\n      // Check the caller is allowed to create policies not owned by the CFL\n      _checkCanForward(_msgSender(), target, OWN_POLICY_SELECTOR);\n    }\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n   *      debt (in the current time slot). Batch version (multiple calls at once).\n   *\n   *      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n   *      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n   *      will fail anyway.\n   *\n   *      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   *      Requires the return value of the called function returns the policyId and checks if the resulting policy\n   *      (a PolicyPool NFT), is owned by the CFL.\n   *      If it's not, it requires the _msgSender() has permission to call address(this) on\n   *      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data[] The calls to execute on the target contract\n   */\n  function forwardNewPolicyBatch(\n    address target,\n    bytes[] calldata data\n  ) external forwardNewPolicyWrapper(target) returns (bytes[] memory result) {\n    bytes4 lastSelector;\n    bool ownOK = false;\n    result = new bytes[](data.length);\n    for (uint256 i; i < data.length; ++i) {\n      bytes4 selector = bytes4(data[i][0:4]);\n      if (i == 0 || selector != lastSelector) {\n        // After the first one, only re-checks if the selector changed\n        _checkCanForward(_msgSender(), target, selector);\n        lastSelector = selector;\n      }\n      result[i] = target.functionCall(data[i]);\n      if (!ownOK) {\n        uint256 policyId = abi.decode(result[i], (uint256));\n        if (IERC721(address(_policyPool)).ownerOf(policyId) != address(this)) {\n          // Check the caller is allowed to create policies not owned by the CFL\n          _checkCanForward(_msgSender(), target, OWN_POLICY_SELECTOR);\n          ownOK = true;\n        }\n      }\n    }\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n   *      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n   *      is called.\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data The calls to execute on the target contract\n   */\n  function forwardResolvePolicy(\n    address target,\n    bytes calldata data\n  ) external forwardResolvePolicyWrapper(target) returns (bytes memory result) {\n    _checkCanForward(_msgSender(), target, bytes4(data[0:4]));\n    result = target.functionCall(data);\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n   *      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n   *      is called. Batch version (multiple calls at once).\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data[] The calls to execute on the target contract\n   */\n  function forwardResolvePolicyBatch(\n    address target,\n    bytes[] calldata data\n  ) external forwardResolvePolicyWrapper(target) returns (bytes[] memory result) {\n    bytes4 lastSelector;\n    result = new bytes[](data.length);\n    for (uint256 i; i < data.length; ++i) {\n      bytes4 selector = bytes4(data[i][0:4]);\n      if (i == 0 || selector != lastSelector) {\n        // After the first one, only re-checks if the selector changed\n        _checkCanForward(_msgSender(), target, selector);\n        lastSelector = selector;\n      }\n      result[i] = target.functionCall(data[i]);\n    }\n  }\n\n  function currentDebt() external view returns (int256) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return int256($._totalDebt);\n  }\n\n  function getDebtForPeriod(address target, uint32 slotSize, uint32 slotIndex) external view returns (int256) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return $._debtByPeriod[_makeTargetSlot(target, slotSize, slotIndex)];\n  }\n\n  /// @inheritdoc ERC4626Upgradeable\n  function totalAssets() public view override returns (uint256 assets) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    assets = _balance();\n    assets += $._yieldVault.convertToAssets($._yieldVault.balanceOf(address(this)));\n    if ($._totalDebt < 0) {\n      assets -= uint256(-int256($._totalDebt));\n    } else {\n      assets += uint256(int256($._totalDebt));\n    }\n  }\n\n  function cashWithdrawable() public view returns (uint256) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return _balance() + $._yieldVault.maxWithdraw(address(this));\n  }\n\n  /// @inheritdoc ERC4626Upgradeable\n  function maxRedeem(address owner) public view virtual override returns (uint256) {\n    return Math.min(super.maxRedeem(owner), convertToShares(cashWithdrawable()));\n  }\n\n  /// @inheritdoc ERC4626Upgradeable\n  function maxWithdraw(address owner) public view virtual override returns (uint256) {\n    return Math.min(super.maxWithdraw(owner), cashWithdrawable());\n  }\n\n  function _withdraw(\n    address caller,\n    address receiver,\n    address owner,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override {\n    uint256 balance = _balance();\n    if (balance < assets) {\n      // If not enough money liquid in the contract, deinvests from the vault\n      CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n      require((assets - balance) <= $._yieldVault.maxWithdraw(address(this)), NotEnoughCash());\n      $._yieldVault.withdraw(assets - balance, address(this), address(this));\n    }\n    super._withdraw(caller, receiver, owner, assets, shares);\n  }\n\n  /**\n   * @dev Deinvest from the vault a given amount.\n   *\n   *      Requires $._yieldVault.maxWithdraw() <= amount\n   *\n   * @param amount Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()\n   */\n  function withdrawFromYieldVault(uint256 amount) external {\n    if (amount == type(uint256).max) {\n      CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n      amount = $._yieldVault.maxWithdraw(address(this));\n    }\n    require(_deinvest(amount) == amount, NotEnoughCash());\n  }\n\n  /**\n   * @dev Moves money that's liquid in the contract to the yield vault, to generate yields\n   *\n   *      Requires _balance() >= amount\n   *\n   * @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\n   */\n  function depositIntoYieldVault(uint256 amount) external {\n    if (amount == type(uint256).max) {\n      amount = _balance();\n    } else {\n      require(amount <= _balance(), NotEnoughCash());\n    }\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    $._yieldVault.deposit(amount, address(this));\n  }\n\n  /**\n   * @dev Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)\n   *      in a given slot\n   *\n   *      Requires the debt of the slot <= -amount\n   *      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)\n   *\n   *      emits {CashOutPayout}\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   * @param slotIndex Current slot time selected\n   * @param amount Amount to cash out\n   * @param destination Address that will receive the funds\n   */\n  function cashOutPayouts(\n    address target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    uint256 amount,\n    address destination\n  ) external {\n    _getTargetConfig(target);\n    // Modify the debt\n    int256 debtAfter = _changeDebt(target, slotSize, slotIndex, amount.toInt256());\n    require(debtAfter <= 0, CashOutExceedsLimit(amount, debtAfter));\n\n    // Transfer the asset (deinvest if needed)\n    uint256 balance = _balance();\n    if (balance < amount) {\n      require(_deinvest(amount - balance) == (amount - balance), NotEnoughCash());\n    }\n    IERC20Metadata(asset()).safeTransfer(destination, amount);\n    emit CashOutPayout(target, slotSize, slotIndex, amount, debtAfter, destination);\n  }\n\n  /**\n   * @dev Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)\n   *      in a given slot\n   *\n   *      Requires the debt of the slot >= amount\n   *\n   *      emits {RepayDebt}\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   * @param slotIndex Current slot time selected\n   * @param amount Amount to pay\n   */\n  function repayDebt(address target, uint32 slotSize, uint32 slotIndex, uint256 amount) external {\n    _getTargetConfig(target);\n\n    // Modify the debt\n    int256 debtAfter = _changeDebt(target, slotSize, slotIndex, -amount.toInt256());\n    require(debtAfter >= 0, RepaymentExceedsLimit(amount, debtAfter));\n\n    IERC20Metadata(asset()).safeTransferFrom(_msgSender(), address(this), amount);\n    emit RepayDebt(target, slotSize, slotIndex, amount, debtAfter, _msgSender());\n  }\n}\n"},"contracts/dependencies/AccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport {ERC1967Proxy} from \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\";\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\n\ncontract AccessManagedProxy is ERC1967Proxy {\n  IAccessManager public immutable ACCESS_MANAGER;\n\n  // Error copied from IAccessManaged\n  error AccessManagedUnauthorized(address caller);\n\n  constructor(\n    address implementation,\n    bytes memory _data,\n    IAccessManager manager\n  ) payable ERC1967Proxy(implementation, _data) {\n    ACCESS_MANAGER = manager;\n  }\n\n  /**\n   * @dev Checks with the ACCESS_MANAGER if msg.sender is authorized to call the current call's function,\n   * and if so, delegates the current call to `implementation`.\n   *\n   * This function does not return to its internal call site, it will return directly to the external caller.\n   */\n  function _delegate(address implementation) internal virtual override {\n    (bool immediate, ) = ACCESS_MANAGER.canCall(msg.sender, address(this), bytes4(msg.data[0:4]));\n    if (!immediate) revert AccessManagedUnauthorized(msg.sender);\n    super._delegate(implementation);\n  }\n}\n"},"contracts/dependencies/IPolicyPool.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\n\n/**\n * @dev Minimalistic version of the IPolicyPool interface, just the methods needed for this project\n */\ninterface IPolicyPool {\n  /**\n   * @dev Reference to the main currency (ERC20) used in the protocol\n   * @return The address of the currency (e.g. USDC) token used in the protocol\n   */\n  function currency() external view returns (IERC20Metadata);\n}\n"},"contracts/hardhat-dependency-compiler/@account-abstraction/contracts/core/EntryPoint.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@account-abstraction/contracts/core/EntryPoint.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestCurrency.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestERC4626.sol';\n"},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@openzeppelin/contracts/access/manager/AccessManager.sol';\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"evmVersion":"cancun","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","storageLayout"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n --> contracts/dependencies/AccessManagedProxy.sol:7:1:\n  |\n7 | contract AccessManagedProxy is ERC1967Proxy {\n  | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2667,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2603}],"severity":"warning","sourceLocation":{"end":1176,"file":"contracts/dependencies/AccessManagedProxy.sol","start":233},"type":"Warning"},{"component":"general","errorCode":"5574","formattedMessage":"Warning: Contract code size is 26207 bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). This contract may not be deployable on Mainnet. Consider enabling the optimizer (with a low \"runs\" value!), turning off revert strings, or using libraries.\n  --> contracts-exposed/CashFlowLender.sol:47:1:\n   |\n47 | contract $CashFlowLender is CashFlowLender {\n   | ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"Contract code size is 26207 bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). This contract may not be deployable on Mainnet. Consider enabling the optimizer (with a low \"runs\" value!), turning off revert strings, or using libraries.","severity":"warning","sourceLocation":{"end":10211,"file":"contracts-exposed/CashFlowLender.sol","start":2621},"type":"Warning"}],"sources":{"@account-abstraction/contracts/core/BaseAccount.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","exportedSymbols":{"BaseAccount":[138],"IAccount":[3335],"IAggregator":[3382],"IEntryPoint":[3566],"INonceManager":[3585],"IStakeManager":[3726],"PackedUserOperation":[3748],"UserOperationLib":[3318],"calldataKeccak":[2397],"min":[2415]},"id":139,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:0"},{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","file":"../interfaces/IAccount.sol","id":2,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":139,"sourceUnit":3336,"src":"145:36:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"../interfaces/IEntryPoint.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":139,"sourceUnit":3567,"src":"182:39:0","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","file":"./UserOperationLib.sol","id":4,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":139,"sourceUnit":3319,"src":"222:32:0","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"IAccount","nameLocations":["522:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":3335,"src":"522:8:0"},"id":7,"nodeType":"InheritanceSpecifier","src":"522:8:0"}],"canonicalName":"BaseAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":5,"nodeType":"StructuredDocumentation","src":"256:232:0","text":" Basic account implementation.\n This contract provides the basic logic for implementing the IAccount interface - validateUserOp\n Specific account implementation should inherit it and provide the account-specific logic."},"fullyImplemented":false,"id":138,"linearizedBaseContracts":[138,3335],"name":"BaseAccount","nameLocation":"507:11:0","nodeType":"ContractDefinition","nodes":[{"global":false,"id":11,"libraryName":{"id":8,"name":"UserOperationLib","nameLocations":["543:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":3318,"src":"543:16:0"},"nodeType":"UsingForDirective","src":"537:47:0","typeName":{"id":10,"nodeType":"UserDefinedTypeName","pathNode":{"id":9,"name":"PackedUserOperation","nameLocations":["564:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"564:19:0"},"referencedDeclaration":3748,"src":"564:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}}},{"body":{"id":27,"nodeType":"Block","src":"829:63:0","statements":[{"expression":{"arguments":[{"arguments":[{"id":22,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"876:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_BaseAccount_$138","typeString":"contract BaseAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_BaseAccount_$138","typeString":"contract BaseAccount"}],"id":21,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"868:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":20,"name":"address","nodeType":"ElementaryTypeName","src":"868:7:0","typeDescriptions":{}}},"id":23,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"868:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":24,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"883:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":17,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"846:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":18,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"846:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":19,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"859:8:0","memberName":"getNonce","nodeType":"MemberAccess","referencedDeclaration":3578,"src":"846:21:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_uint192_$returns$_t_uint256_$","typeString":"function (address,uint192) view external returns (uint256)"}},"id":25,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"846:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16,"id":26,"nodeType":"Return","src":"839:46:0"}]},"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"590:176:0","text":" Return the account nonce.\n This method returns the next sequential nonce.\n For a nonce of a specific key, use `entrypoint.getNonce(account, key)`"},"functionSelector":"d087d288","id":28,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"780:8:0","nodeType":"FunctionDefinition","parameters":{"id":13,"nodeType":"ParameterList","parameters":[],"src":"788:2:0"},"returnParameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":28,"src":"820:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14,"name":"uint256","nodeType":"ElementaryTypeName","src":"820:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"819:9:0"},"scope":138,"src":"771:121:0","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":29,"nodeType":"StructuredDocumentation","src":"898:137:0","text":" Return the entryPoint used by this account.\n Subclass should return the current entryPoint used by this account."},"functionSelector":"b0d691fe","id":35,"implemented":false,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1049:10:0","nodeType":"FunctionDefinition","parameters":{"id":30,"nodeType":"ParameterList","parameters":[],"src":"1059:2:0"},"returnParameters":{"id":34,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35,"src":"1091:11:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":32,"nodeType":"UserDefinedTypeName","pathNode":{"id":31,"name":"IEntryPoint","nameLocations":["1091:11:0"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1091:11:0"},"referencedDeclaration":3566,"src":"1091:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1090:13:0"},"scope":138,"src":"1040:64:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[3334],"body":{"id":68,"nodeType":"Block","src":"1338:186:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":49,"name":"_requireFromEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":86,"src":"1348:22:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":50,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1348:24:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":51,"nodeType":"ExpressionStatement","src":"1348:24:0"},{"expression":{"id":57,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":52,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":47,"src":"1382:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":54,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39,"src":"1418:6:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":55,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"1426:10:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":53,"name":"_validateSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":97,"src":"1399:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$_t_uint256_$","typeString":"function (struct PackedUserOperation calldata,bytes32) returns (uint256)"}},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1399:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1382:55:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":58,"nodeType":"ExpressionStatement","src":"1382:55:0"},{"expression":{"arguments":[{"expression":{"id":60,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39,"src":"1462:6:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":61,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:5:0","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3733,"src":"1462:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":59,"name":"_validateNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":104,"src":"1447:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$__$","typeString":"function (uint256) view"}},"id":62,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1447:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":63,"nodeType":"ExpressionStatement","src":"1447:28:0"},{"expression":{"arguments":[{"id":65,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":43,"src":"1497:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":64,"name":"_payPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":137,"src":"1485:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":66,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1485:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":67,"nodeType":"ExpressionStatement","src":"1485:32:0"}]},"documentation":{"id":36,"nodeType":"StructuredDocumentation","src":"1110:24:0","text":"@inheritdoc IAccount"},"functionSelector":"19822f7c","id":69,"implemented":true,"kind":"function","modifiers":[],"name":"validateUserOp","nameLocation":"1148:14:0","nodeType":"FunctionDefinition","overrides":{"id":45,"nodeType":"OverrideSpecifier","overrides":[],"src":"1296:8:0"},"parameters":{"id":44,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39,"mutability":"mutable","name":"userOp","nameLocation":"1201:6:0","nodeType":"VariableDeclaration","scope":69,"src":"1172:35:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":38,"nodeType":"UserDefinedTypeName","pathNode":{"id":37,"name":"PackedUserOperation","nameLocations":["1172:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1172:19:0"},"referencedDeclaration":3748,"src":"1172:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":41,"mutability":"mutable","name":"userOpHash","nameLocation":"1225:10:0","nodeType":"VariableDeclaration","scope":69,"src":"1217:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":40,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1217:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":43,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"1253:19:0","nodeType":"VariableDeclaration","scope":69,"src":"1245:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":42,"name":"uint256","nodeType":"ElementaryTypeName","src":"1245:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1162:116:0"},"returnParameters":{"id":48,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"validationData","nameLocation":"1322:14:0","nodeType":"VariableDeclaration","scope":69,"src":"1314:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":46,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1313:24:0"},"scope":138,"src":"1139:385:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":85,"nodeType":"Block","src":"1661:127:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":81,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":74,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1692:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":75,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1696:6:0","memberName":"sender","nodeType":"MemberAccess","src":"1692:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":78,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35,"src":"1714:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":79,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1714:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}],"id":77,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1706:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":76,"name":"address","nodeType":"ElementaryTypeName","src":"1706:7:0","typeDescriptions":{}}},"id":80,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1706:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1692:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","id":82,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1741:30:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50","typeString":"literal_string \"account: not from EntryPoint\""},"value":"account: not from EntryPoint"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50","typeString":"literal_string \"account: not from EntryPoint\""}],"id":73,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"1671:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":83,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1671:110:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":84,"nodeType":"ExpressionStatement","src":"1671:110:0"}]},"documentation":{"id":70,"nodeType":"StructuredDocumentation","src":"1530:70:0","text":" Ensure the request comes from the known entrypoint."},"id":86,"implemented":true,"kind":"function","modifiers":[],"name":"_requireFromEntryPoint","nameLocation":"1614:22:0","nodeType":"FunctionDefinition","parameters":{"id":71,"nodeType":"ParameterList","parameters":[],"src":"1636:2:0"},"returnParameters":{"id":72,"nodeType":"ParameterList","parameters":[],"src":"1661:0:0"},"scope":138,"src":"1605:183:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":87,"nodeType":"StructuredDocumentation","src":"1794:1106:0","text":" Validate the signature is valid for this message.\n @param userOp          - Validate the userOp.signature field.\n @param userOpHash      - Convenient field: the hash of the request, to check the signature against.\n                          (also hashes the entrypoint and chain id)\n @return validationData - Signature and time-range of this operation.\n                          <20-byte> aggregatorOrSigFail - 0 for valid signature, 1 to mark signature failure,\n                                    otherwise, an address of an aggregator contract.\n                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n                          <6-byte> validAfter - first timestamp this operation is valid\n                          If the account doesn't use time-range, it is enough to return\n                          SIG_VALIDATION_FAILED value (1) for signature failure.\n                          Note that the validation code cannot use block.timestamp (or block.number) directly."},"id":97,"implemented":false,"kind":"function","modifiers":[],"name":"_validateSignature","nameLocation":"2914:18:0","nodeType":"FunctionDefinition","parameters":{"id":93,"nodeType":"ParameterList","parameters":[{"constant":false,"id":90,"mutability":"mutable","name":"userOp","nameLocation":"2971:6:0","nodeType":"VariableDeclaration","scope":97,"src":"2942:35:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":89,"nodeType":"UserDefinedTypeName","pathNode":{"id":88,"name":"PackedUserOperation","nameLocations":["2942:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"2942:19:0"},"referencedDeclaration":3748,"src":"2942:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":92,"mutability":"mutable","name":"userOpHash","nameLocation":"2995:10:0","nodeType":"VariableDeclaration","scope":97,"src":"2987:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":91,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2987:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2932:79:0"},"returnParameters":{"id":96,"nodeType":"ParameterList","parameters":[{"constant":false,"id":95,"mutability":"mutable","name":"validationData","nameLocation":"3046:14:0","nodeType":"VariableDeclaration","scope":97,"src":"3038:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":94,"name":"uint256","nodeType":"ElementaryTypeName","src":"3038:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3037:24:0"},"scope":138,"src":"2905:157:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":103,"nodeType":"Block","src":"3774:7:0","statements":[]},"documentation":{"id":98,"nodeType":"StructuredDocumentation","src":"3068:640:0","text":" Validate the nonce of the UserOperation.\n This method may validate the nonce requirement of this account.\n e.g.\n To limit the nonce to use sequenced UserOps only (no \"out of order\" UserOps):\n      `require(nonce < type(uint64).max)`\n For a hypothetical account that *requires* the nonce to be out-of-order:\n      `require(nonce & type(uint64).max == 0)`\n The actual nonce uniqueness is managed by the EntryPoint, and thus no other\n action is needed by the account itself.\n @param nonce to validate\n solhint-disable-next-line no-empty-blocks"},"id":104,"implemented":true,"kind":"function","modifiers":[],"name":"_validateNonce","nameLocation":"3722:14:0","nodeType":"FunctionDefinition","parameters":{"id":101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":100,"mutability":"mutable","name":"nonce","nameLocation":"3745:5:0","nodeType":"VariableDeclaration","scope":104,"src":"3737:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":99,"name":"uint256","nodeType":"ElementaryTypeName","src":"3737:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3736:15:0"},"returnParameters":{"id":102,"nodeType":"ParameterList","parameters":[],"src":"3774:0:0"},"scope":138,"src":"3713:68:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":136,"nodeType":"Block","src":"4423:315:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":110,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":107,"src":"4437:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4460:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4437:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":135,"nodeType":"IfStatement","src":"4433:299:0","trueBody":{"id":134,"nodeType":"Block","src":"4463:269:0","statements":[{"assignments":[114,null],"declarations":[{"constant":false,"id":114,"mutability":"mutable","name":"success","nameLocation":"4483:7:0","nodeType":"VariableDeclaration","scope":134,"src":"4478:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":113,"name":"bool","nodeType":"ElementaryTypeName","src":"4478:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":130,"initialValue":{"arguments":[{"hexValue":"","id":128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4619:2:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"arguments":[{"expression":{"id":117,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4504:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4508:6:0","memberName":"sender","nodeType":"MemberAccess","src":"4504:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4496:8:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":115,"name":"address","nodeType":"ElementaryTypeName","src":"4496:8:0","stateMutability":"payable","typeDescriptions":{}}},"id":119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4496:19:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4516:4:0","memberName":"call","nodeType":"MemberAccess","src":"4496:24:0","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value","gas"],"nodeType":"FunctionCallOptions","options":[{"id":121,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":107,"src":"4545:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4592:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":123,"name":"uint256","nodeType":"ElementaryTypeName","src":"4592:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":122,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4587:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4587:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":126,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4601:3:0","memberName":"max","nodeType":"MemberAccess","src":"4587:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4496:122:0","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$gasvalue","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4496:126:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4477:145:0"},{"expression":{"components":[{"id":131,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"4637:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":132,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4636:9:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":133,"nodeType":"ExpressionStatement","src":"4636:9:0"}]}}]},"documentation":{"id":105,"nodeType":"StructuredDocumentation","src":"3787:564:0","text":" Sends to the entrypoint (msg.sender) the missing funds for this transaction.\n SubClass MAY override this method for better funds management\n (e.g. send to the entryPoint more than the minimum required, so that in future transactions\n it will not be required to send again).\n @param missingAccountFunds - The minimum value this method should send the entrypoint.\n                              This value MAY be zero, in case there is enough deposit,\n                              or the userOp has a paymaster."},"id":137,"implemented":true,"kind":"function","modifiers":[],"name":"_payPrefund","nameLocation":"4365:11:0","nodeType":"FunctionDefinition","parameters":{"id":108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":107,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"4385:19:0","nodeType":"VariableDeclaration","scope":137,"src":"4377:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":106,"name":"uint256","nodeType":"ElementaryTypeName","src":"4377:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4376:29:0"},"returnParameters":{"id":109,"nodeType":"ParameterList","parameters":[],"src":"4423:0:0"},"scope":138,"src":"4356:382:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":139,"src":"489:4251:0","usedErrors":[],"usedEvents":[]}],"src":"36:4705:0"},"id":0},"@account-abstraction/contracts/core/EntryPoint.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/EntryPoint.sol","exportedSymbols":{"ERC165":[18196],"EntryPoint":[2236],"Exec":[3839],"IAccount":[3335],"IAccountExecute":[3348],"IAggregator":[3382],"IERC165":[18208],"IEntryPoint":[3566],"INonceManager":[3585],"IPaymaster":[3622],"IStakeManager":[3726],"NonceManager":[2506],"PackedUserOperation":[3748],"ReentrancyGuard":[16426],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244],"SenderCreator":[2553],"StakeManager":[2961],"UserOperationLib":[3318],"ValidationData":[2252],"_packValidationData":[2349,2387],"_parseValidationData":[2312],"calldataKeccak":[2397],"min":[2415]},"id":2237,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":140,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:1"},{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","file":"../interfaces/IAccount.sol","id":141,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3336,"src":"147:36:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IAccountExecute.sol","file":"../interfaces/IAccountExecute.sol","id":142,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3349,"src":"184:43:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IPaymaster.sol","file":"../interfaces/IPaymaster.sol","id":143,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3623,"src":"228:38:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"../interfaces/IEntryPoint.sol","id":144,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3567,"src":"267:39:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/utils/Exec.sol","file":"../utils/Exec.sol","id":145,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3840,"src":"308:27:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/StakeManager.sol","file":"./StakeManager.sol","id":146,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2962,"src":"336:28:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/SenderCreator.sol","file":"./SenderCreator.sol","id":147,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2554,"src":"365:29:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"./Helpers.sol","id":148,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2416,"src":"395:23:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/NonceManager.sol","file":"./NonceManager.sol","id":149,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2507,"src":"419:28:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","file":"./UserOperationLib.sol","id":150,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3319,"src":"448:32:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":151,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":18197,"src":"482:64:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","file":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","id":152,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":16427,"src":"547:59:1","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":154,"name":"IEntryPoint","nameLocations":["812:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"812:11:1"},"id":155,"nodeType":"InheritanceSpecifier","src":"812:11:1"},{"baseName":{"id":156,"name":"StakeManager","nameLocations":["825:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":2961,"src":"825:12:1"},"id":157,"nodeType":"InheritanceSpecifier","src":"825:12:1"},{"baseName":{"id":158,"name":"NonceManager","nameLocations":["839:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":2506,"src":"839:12:1"},"id":159,"nodeType":"InheritanceSpecifier","src":"839:12:1"},{"baseName":{"id":160,"name":"ReentrancyGuard","nameLocations":["853:15:1"],"nodeType":"IdentifierPath","referencedDeclaration":16426,"src":"853:15:1"},"id":161,"nodeType":"InheritanceSpecifier","src":"853:15:1"},{"baseName":{"id":162,"name":"ERC165","nameLocations":["870:6:1"],"nodeType":"IdentifierPath","referencedDeclaration":18196,"src":"870:6:1"},"id":163,"nodeType":"InheritanceSpecifier","src":"870:6:1"}],"canonicalName":"EntryPoint","contractDependencies":[2553],"contractKind":"contract","documentation":{"id":153,"nodeType":"StructuredDocumentation","src":"732:57:1","text":"@custom:security-contact https://bounty.ethereum.org"},"fullyImplemented":true,"id":2236,"linearizedBaseContracts":[2236,18196,18208,16426,2506,2961,3566,3585,3726],"name":"EntryPoint","nameLocation":"798:10:1","nodeType":"ContractDefinition","nodes":[{"global":false,"id":167,"libraryName":{"id":164,"name":"UserOperationLib","nameLocations":["890:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":3318,"src":"890:16:1"},"nodeType":"UsingForDirective","src":"884:47:1","typeName":{"id":166,"nodeType":"UserDefinedTypeName","pathNode":{"id":165,"name":"PackedUserOperation","nameLocations":["911:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"911:19:1"},"referencedDeclaration":3748,"src":"911:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}}},{"constant":false,"id":174,"mutability":"immutable","name":"_senderCreator","nameLocation":"969:14:1","nodeType":"VariableDeclaration","scope":2236,"src":"937:68:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"},"typeName":{"id":169,"nodeType":"UserDefinedTypeName","pathNode":{"id":168,"name":"SenderCreator","nameLocations":["937:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":2553,"src":"937:13:1"},"referencedDeclaration":2553,"src":"937:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"value":{"arguments":[],"expression":{"argumentTypes":[],"id":172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"NewExpression","src":"986:17:1","typeDescriptions":{"typeIdentifier":"t_function_creation_nonpayable$__$returns$_t_contract$_SenderCreator_$2553_$","typeString":"function () returns (contract SenderCreator)"},"typeName":{"id":171,"nodeType":"UserDefinedTypeName","pathNode":{"id":170,"name":"SenderCreator","nameLocations":["990:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":2553,"src":"990:13:1"},"referencedDeclaration":2553,"src":"990:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"986:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"visibility":"private"},{"body":{"id":182,"nodeType":"Block","src":"1083:38:1","statements":[{"expression":{"id":180,"name":"_senderCreator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1100:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"functionReturnParameters":179,"id":181,"nodeType":"Return","src":"1093:21:1"}]},"id":183,"implemented":true,"kind":"function","modifiers":[],"name":"senderCreator","nameLocation":"1021:13:1","nodeType":"FunctionDefinition","parameters":{"id":175,"nodeType":"ParameterList","parameters":[],"src":"1034:2:1"},"returnParameters":{"id":179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":178,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":183,"src":"1068:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"},"typeName":{"id":177,"nodeType":"UserDefinedTypeName","pathNode":{"id":176,"name":"SenderCreator","nameLocations":["1068:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":2553,"src":"1068:13:1"},"referencedDeclaration":2553,"src":"1068:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"visibility":"internal"}],"src":"1067:15:1"},"scope":2236,"src":"1012:109:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":true,"id":186,"mutability":"constant","name":"INNER_GAS_OVERHEAD","nameLocation":"1276:18:1","nodeType":"VariableDeclaration","scope":2236,"src":"1251:51:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":184,"name":"uint256","nodeType":"ElementaryTypeName","src":"1251:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130303030","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1297:5:1","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"visibility":"private"},{"constant":true,"id":189,"mutability":"constant","name":"INNER_OUT_OF_GAS","nameLocation":"1384:16:1","nodeType":"VariableDeclaration","scope":2236,"src":"1359:57:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":187,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1359:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"deaddead","id":188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"1403:13:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_f151d40b3e75f8fa1cd1fce06fa6cde57ba88f05b41b14197de40325455f967a","typeString":"literal_string hex\"deaddead\""},"value":"ޭޭ"},"visibility":"private"},{"constant":true,"id":192,"mutability":"constant","name":"INNER_REVERT_LOW_PREFUND","nameLocation":"1447:24:1","nodeType":"VariableDeclaration","scope":2236,"src":"1422:65:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":190,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1422:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"deadaa51","id":191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"1474:13:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_ed8ccd9fc90032df4d1bccb83a9813d336d4ade2a67701f45bfb9a27a28c3a33","typeString":"literal_string hex\"deadaa51\""}},"visibility":"private"},{"constant":true,"id":195,"mutability":"constant","name":"REVERT_REASON_MAX_LEN","nameLocation":"1519:21:1","nodeType":"VariableDeclaration","scope":2236,"src":"1494:53:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":193,"name":"uint256","nodeType":"ElementaryTypeName","src":"1494:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32303438","id":194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1543:4:1","typeDescriptions":{"typeIdentifier":"t_rational_2048_by_1","typeString":"int_const 2048"},"value":"2048"},"visibility":"private"},{"constant":true,"id":198,"mutability":"constant","name":"PENALTY_PERCENT","nameLocation":"1578:15:1","nodeType":"VariableDeclaration","scope":2236,"src":"1553:45:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":196,"name":"uint256","nodeType":"ElementaryTypeName","src":"1553:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130","id":197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1596:2:1","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"visibility":"private"},{"baseFunctions":[18195],"body":{"id":251,"nodeType":"Block","src":"1724:493:1","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":207,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"1860:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":221,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":209,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3566,"src":"1881:11:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}],"id":208,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1876:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1876:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEntryPoint_$3566","typeString":"type(contract IEntryPoint)"}},"id":211,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1894:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1876:29:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"expression":{"arguments":[{"id":213,"name":"IStakeManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"1913:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}],"id":212,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1908:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1908:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IStakeManager_$3726","typeString":"type(contract IStakeManager)"}},"id":215,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1928:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1908:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1876:63:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"expression":{"arguments":[{"id":218,"name":"INonceManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3585,"src":"1947:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}],"id":217,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1942:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1942:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_INonceManager_$3585","typeString":"type(contract INonceManager)"}},"id":220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1962:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1942:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1876:97:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":222,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1875:99:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1860:114:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":224,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"1990:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":226,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3566,"src":"2010:11:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}],"id":225,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2005:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2005:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEntryPoint_$3566","typeString":"type(contract IEntryPoint)"}},"id":228,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2023:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"2005:29:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1990:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:174:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":231,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"2050:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":233,"name":"IStakeManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"2070:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}],"id":232,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2065:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2065:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IStakeManager_$3726","typeString":"type(contract IStakeManager)"}},"id":235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2085:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"2065:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2050:46:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:236:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":238,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"2112:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":240,"name":"INonceManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3585,"src":"2132:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}],"id":239,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2127:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2127:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_INonceManager_$3585","typeString":"type(contract INonceManager)"}},"id":242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2147:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"2127:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2112:46:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:298:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":247,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"2198:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":245,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2174:5:1","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EntryPoint_$2236_$","typeString":"type(contract super EntryPoint)"}},"id":246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2180:17:1","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":18195,"src":"2174:23:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2174:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:350:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":206,"id":250,"nodeType":"Return","src":"1853:357:1"}]},"documentation":{"id":199,"nodeType":"StructuredDocumentation","src":"1605:23:1","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":252,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1642:17:1","nodeType":"FunctionDefinition","overrides":{"id":203,"nodeType":"OverrideSpecifier","overrides":[],"src":"1700:8:1"},"parameters":{"id":202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":201,"mutability":"mutable","name":"interfaceId","nameLocation":"1667:11:1","nodeType":"VariableDeclaration","scope":252,"src":"1660:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":200,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1660:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1659:20:1"},"returnParameters":{"id":206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":205,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":252,"src":"1718:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":204,"name":"bool","nodeType":"ElementaryTypeName","src":"1718:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1717:6:1"},"scope":2236,"src":"1633:584:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":284,"nodeType":"Block","src":"2521:204:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":261,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":255,"src":"2539:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2562:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2554:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":262,"name":"address","nodeType":"ElementaryTypeName","src":"2554:7:1","typeDescriptions":{}}},"id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2554:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2539:25:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393020696e76616c69642062656e6566696369617279","id":267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2566:26:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814","typeString":"literal_string \"AA90 invalid beneficiary\""},"value":"AA90 invalid beneficiary"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814","typeString":"literal_string \"AA90 invalid beneficiary\""}],"id":260,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2531:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2531:62:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":269,"nodeType":"ExpressionStatement","src":"2531:62:1"},{"assignments":[271,null],"declarations":[{"constant":false,"id":271,"mutability":"mutable","name":"success","nameLocation":"2609:7:1","nodeType":"VariableDeclaration","scope":284,"src":"2604:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":270,"name":"bool","nodeType":"ElementaryTypeName","src":"2604:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":278,"initialValue":{"arguments":[{"hexValue":"","id":276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2654:2:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":272,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":255,"src":"2622:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2634:4:1","memberName":"call","nodeType":"MemberAccess","src":"2622:16:1","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":274,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"2646:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2622:31:1","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2622:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2603:54:1"},{"expression":{"arguments":[{"id":280,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":271,"src":"2675:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"41413931206661696c65642073656e6420746f2062656e6566696369617279","id":281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2684:33:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea","typeString":"literal_string \"AA91 failed send to beneficiary\""},"value":"AA91 failed send to beneficiary"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea","typeString":"literal_string \"AA91 failed send to beneficiary\""}],"id":279,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2667:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2667:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":283,"nodeType":"ExpressionStatement","src":"2667:51:1"}]},"documentation":{"id":253,"nodeType":"StructuredDocumentation","src":"2223:218:1","text":" Compensate the caller's beneficiary address with the collected fees of all UserOperations.\n @param beneficiary - The address to receive the fees.\n @param amount      - Amount to transfer."},"id":285,"implemented":true,"kind":"function","modifiers":[],"name":"_compensate","nameLocation":"2455:11:1","nodeType":"FunctionDefinition","parameters":{"id":258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":255,"mutability":"mutable","name":"beneficiary","nameLocation":"2483:11:1","nodeType":"VariableDeclaration","scope":285,"src":"2467:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":254,"name":"address","nodeType":"ElementaryTypeName","src":"2467:15:1","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":257,"mutability":"mutable","name":"amount","nameLocation":"2504:6:1","nodeType":"VariableDeclaration","scope":285,"src":"2496:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":256,"name":"uint256","nodeType":"ElementaryTypeName","src":"2496:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2466:45:1"},"returnParameters":{"id":259,"nodeType":"ParameterList","parameters":[],"src":"2521:0:1"},"scope":2236,"src":"2446:279:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":466,"nodeType":"Block","src":"3215:2894:1","statements":[{"assignments":[300],"declarations":[{"constant":false,"id":300,"mutability":"mutable","name":"preGas","nameLocation":"3233:6:1","nodeType":"VariableDeclaration","scope":466,"src":"3225:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":299,"name":"uint256","nodeType":"ElementaryTypeName","src":"3225:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":303,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":301,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"3242:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3242:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3225:26:1"},{"assignments":[305],"declarations":[{"constant":false,"id":305,"mutability":"mutable","name":"context","nameLocation":"3274:7:1","nodeType":"VariableDeclaration","scope":466,"src":"3261:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":304,"name":"bytes","nodeType":"ElementaryTypeName","src":"3261:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":310,"initialValue":{"arguments":[{"expression":{"id":307,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"3309:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":308,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3316:13:1","memberName":"contextOffset","nodeType":"MemberAccess","referencedDeclaration":944,"src":"3309:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":306,"name":"getMemoryBytesFromOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"3284:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:46:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3261:69:1"},{"assignments":[312],"declarations":[{"constant":false,"id":312,"mutability":"mutable","name":"success","nameLocation":"3345:7:1","nodeType":"VariableDeclaration","scope":466,"src":"3340:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":311,"name":"bool","nodeType":"ElementaryTypeName","src":"3340:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":313,"nodeType":"VariableDeclarationStatement","src":"3340:12:1"},{"id":375,"nodeType":"Block","src":"3362:1117:1","statements":[{"assignments":[315],"declarations":[{"constant":false,"id":315,"mutability":"mutable","name":"saveFreePtr","nameLocation":"3384:11:1","nodeType":"VariableDeclaration","scope":375,"src":"3376:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":314,"name":"uint256","nodeType":"ElementaryTypeName","src":"3376:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":316,"nodeType":"VariableDeclarationStatement","src":"3376:19:1"},{"AST":{"nativeSrc":"3434:58:1","nodeType":"YulBlock","src":"3434:58:1","statements":[{"nativeSrc":"3452:26:1","nodeType":"YulAssignment","src":"3452:26:1","value":{"arguments":[{"kind":"number","nativeSrc":"3473:4:1","nodeType":"YulLiteral","src":"3473:4:1","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3467:5:1","nodeType":"YulIdentifier","src":"3467:5:1"},"nativeSrc":"3467:11:1","nodeType":"YulFunctionCall","src":"3467:11:1"},"variableNames":[{"name":"saveFreePtr","nativeSrc":"3452:11:1","nodeType":"YulIdentifier","src":"3452:11:1"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":315,"isOffset":false,"isSlot":false,"src":"3452:11:1","valueSize":1}],"flags":["memory-safe"],"id":317,"nodeType":"InlineAssembly","src":"3409:83:1"},{"assignments":[319],"declarations":[{"constant":false,"id":319,"mutability":"mutable","name":"callData","nameLocation":"3520:8:1","nodeType":"VariableDeclaration","scope":375,"src":"3505:23:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":318,"name":"bytes","nodeType":"ElementaryTypeName","src":"3505:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":322,"initialValue":{"expression":{"id":320,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":291,"src":"3531:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3538:8:1","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":3737,"src":"3531:15:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"3505:41:1"},{"assignments":[324],"declarations":[{"constant":false,"id":324,"mutability":"mutable","name":"innerCall","nameLocation":"3573:9:1","nodeType":"VariableDeclaration","scope":375,"src":"3560:22:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":323,"name":"bytes","nodeType":"ElementaryTypeName","src":"3560:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":325,"nodeType":"VariableDeclarationStatement","src":"3560:22:1"},{"assignments":[327],"declarations":[{"constant":false,"id":327,"mutability":"mutable","name":"methodSig","nameLocation":"3603:9:1","nodeType":"VariableDeclaration","scope":375,"src":"3596:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":326,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3596:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":328,"nodeType":"VariableDeclarationStatement","src":"3596:16:1"},{"AST":{"nativeSrc":"3635:171:1","nodeType":"YulBlock","src":"3635:171:1","statements":[{"nativeSrc":"3653:26:1","nodeType":"YulVariableDeclaration","src":"3653:26:1","value":{"name":"callData.length","nativeSrc":"3664:15:1","nodeType":"YulIdentifier","src":"3664:15:1"},"variables":[{"name":"len","nativeSrc":"3657:3:1","nodeType":"YulTypedName","src":"3657:3:1","type":""}]},{"body":{"nativeSrc":"3710:82:1","nodeType":"YulBlock","src":"3710:82:1","statements":[{"nativeSrc":"3732:42:1","nodeType":"YulAssignment","src":"3732:42:1","value":{"arguments":[{"name":"callData.offset","nativeSrc":"3758:15:1","nodeType":"YulIdentifier","src":"3758:15:1"}],"functionName":{"name":"calldataload","nativeSrc":"3745:12:1","nodeType":"YulIdentifier","src":"3745:12:1"},"nativeSrc":"3745:29:1","nodeType":"YulFunctionCall","src":"3745:29:1"},"variableNames":[{"name":"methodSig","nativeSrc":"3732:9:1","nodeType":"YulIdentifier","src":"3732:9:1"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"3702:3:1","nodeType":"YulIdentifier","src":"3702:3:1"},{"kind":"number","nativeSrc":"3707:1:1","nodeType":"YulLiteral","src":"3707:1:1","type":"","value":"3"}],"functionName":{"name":"gt","nativeSrc":"3699:2:1","nodeType":"YulIdentifier","src":"3699:2:1"},"nativeSrc":"3699:10:1","nodeType":"YulFunctionCall","src":"3699:10:1"},"nativeSrc":"3696:96:1","nodeType":"YulIf","src":"3696:96:1"}]},"evmVersion":"cancun","externalReferences":[{"declaration":319,"isOffset":false,"isSlot":false,"src":"3664:15:1","suffix":"length","valueSize":1},{"declaration":319,"isOffset":true,"isSlot":false,"src":"3758:15:1","suffix":"offset","valueSize":1},{"declaration":327,"isOffset":false,"isSlot":false,"src":"3732:9:1","valueSize":1}],"id":329,"nodeType":"InlineAssembly","src":"3626:180:1"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":330,"name":"methodSig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":327,"src":"3823:9:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":331,"name":"IAccountExecute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3348,"src":"3836:15:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccountExecute_$3348_$","typeString":"type(contract IAccountExecute)"}},"id":332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3852:13:1","memberName":"executeUserOp","nodeType":"MemberAccess","referencedDeclaration":3347,"src":"3836:29:1","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$__$","typeString":"function IAccountExecute.executeUserOp(struct PackedUserOperation calldata,bytes32)"}},"id":333,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3866:8:1","memberName":"selector","nodeType":"MemberAccess","src":"3836:38:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"3823:51:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":372,"nodeType":"Block","src":"4128:108:1","statements":[{"expression":{"id":370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":360,"name":"innerCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":324,"src":"4146:9:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":363,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4173:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}},"id":364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4178:13:1","memberName":"innerHandleOp","nodeType":"MemberAccess","referencedDeclaration":1082,"src":"4173:18:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"}},{"components":[{"id":365,"name":"callData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":319,"src":"4194:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":366,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"4204:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":367,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4212:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":368,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4193:27:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes calldata,struct EntryPoint.UserOpInfo memory,bytes memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"},{"typeIdentifier":"t_tuple$_t_bytes_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes calldata,struct EntryPoint.UserOpInfo memory,bytes memory)"}],"expression":{"id":361,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4158:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4162:10:1","memberName":"encodeCall","nodeType":"MemberAccess","src":"4158:14:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4158:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4146:75:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":371,"nodeType":"ExpressionStatement","src":"4146:75:1"}]},"id":373,"nodeType":"IfStatement","src":"3819:417:1","trueBody":{"id":359,"nodeType":"Block","src":"3876:234:1","statements":[{"assignments":[336],"declarations":[{"constant":false,"id":336,"mutability":"mutable","name":"executeUserOp","nameLocation":"3907:13:1","nodeType":"VariableDeclaration","scope":359,"src":"3894:26:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":335,"name":"bytes","nodeType":"ElementaryTypeName","src":"3894:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":346,"initialValue":{"arguments":[{"expression":{"id":339,"name":"IAccountExecute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3348,"src":"3938:15:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccountExecute_$3348_$","typeString":"type(contract IAccountExecute)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3954:13:1","memberName":"executeUserOp","nodeType":"MemberAccess","referencedDeclaration":3347,"src":"3938:29:1","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$__$","typeString":"function IAccountExecute.executeUserOp(struct PackedUserOperation calldata,bytes32)"}},{"components":[{"id":341,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":291,"src":"3970:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"expression":{"id":342,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"3978:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":343,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3985:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"3978:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":344,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3969:27:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$","typeString":"tuple(struct PackedUserOperation calldata,bytes32)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$__$","typeString":"function IAccountExecute.executeUserOp(struct PackedUserOperation calldata,bytes32)"},{"typeIdentifier":"t_tuple$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$","typeString":"tuple(struct PackedUserOperation calldata,bytes32)"}],"expression":{"id":337,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3923:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3927:10:1","memberName":"encodeCall","nodeType":"MemberAccess","src":"3923:14:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3923:74:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3894:103:1"},{"expression":{"id":357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":347,"name":"innerCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":324,"src":"4015:9:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":350,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4042:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}},"id":351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4047:13:1","memberName":"innerHandleOp","nodeType":"MemberAccess","referencedDeclaration":1082,"src":"4042:18:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"}},{"components":[{"id":352,"name":"executeUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":336,"src":"4063:13:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":353,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"4078:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":354,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4086:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":355,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4062:32:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"},{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory)"}],"expression":{"id":348,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4027:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4031:10:1","memberName":"encodeCall","nodeType":"MemberAccess","src":"4027:14:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4027:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4015:80:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":358,"nodeType":"ExpressionStatement","src":"4015:80:1"}]}},{"AST":{"nativeSrc":"4274:195:1","nodeType":"YulBlock","src":"4274:195:1","statements":[{"nativeSrc":"4292:83:1","nodeType":"YulAssignment","src":"4292:83:1","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"4308:3:1","nodeType":"YulIdentifier","src":"4308:3:1"},"nativeSrc":"4308:5:1","nodeType":"YulFunctionCall","src":"4308:5:1"},{"arguments":[],"functionName":{"name":"address","nativeSrc":"4315:7:1","nodeType":"YulIdentifier","src":"4315:7:1"},"nativeSrc":"4315:9:1","nodeType":"YulFunctionCall","src":"4315:9:1"},{"kind":"number","nativeSrc":"4326:1:1","nodeType":"YulLiteral","src":"4326:1:1","type":"","value":"0"},{"arguments":[{"name":"innerCall","nativeSrc":"4333:9:1","nodeType":"YulIdentifier","src":"4333:9:1"},{"kind":"number","nativeSrc":"4344:4:1","nodeType":"YulLiteral","src":"4344:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4329:3:1","nodeType":"YulIdentifier","src":"4329:3:1"},"nativeSrc":"4329:20:1","nodeType":"YulFunctionCall","src":"4329:20:1"},{"arguments":[{"name":"innerCall","nativeSrc":"4357:9:1","nodeType":"YulIdentifier","src":"4357:9:1"}],"functionName":{"name":"mload","nativeSrc":"4351:5:1","nodeType":"YulIdentifier","src":"4351:5:1"},"nativeSrc":"4351:16:1","nodeType":"YulFunctionCall","src":"4351:16:1"},{"kind":"number","nativeSrc":"4369:1:1","nodeType":"YulLiteral","src":"4369:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4372:2:1","nodeType":"YulLiteral","src":"4372:2:1","type":"","value":"32"}],"functionName":{"name":"call","nativeSrc":"4303:4:1","nodeType":"YulIdentifier","src":"4303:4:1"},"nativeSrc":"4303:72:1","nodeType":"YulFunctionCall","src":"4303:72:1"},"variableNames":[{"name":"success","nativeSrc":"4292:7:1","nodeType":"YulIdentifier","src":"4292:7:1"}]},{"nativeSrc":"4392:21:1","nodeType":"YulAssignment","src":"4392:21:1","value":{"arguments":[{"kind":"number","nativeSrc":"4411:1:1","nodeType":"YulLiteral","src":"4411:1:1","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"4405:5:1","nodeType":"YulIdentifier","src":"4405:5:1"},"nativeSrc":"4405:8:1","nodeType":"YulFunctionCall","src":"4405:8:1"},"variableNames":[{"name":"collected","nativeSrc":"4392:9:1","nodeType":"YulIdentifier","src":"4392:9:1"}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4437:4:1","nodeType":"YulLiteral","src":"4437:4:1","type":"","value":"0x40"},{"name":"saveFreePtr","nativeSrc":"4443:11:1","nodeType":"YulIdentifier","src":"4443:11:1"}],"functionName":{"name":"mstore","nativeSrc":"4430:6:1","nodeType":"YulIdentifier","src":"4430:6:1"},"nativeSrc":"4430:25:1","nodeType":"YulFunctionCall","src":"4430:25:1"},"nativeSrc":"4430:25:1","nodeType":"YulExpressionStatement","src":"4430:25:1"}]},"evmVersion":"cancun","externalReferences":[{"declaration":297,"isOffset":false,"isSlot":false,"src":"4392:9:1","valueSize":1},{"declaration":324,"isOffset":false,"isSlot":false,"src":"4333:9:1","valueSize":1},{"declaration":324,"isOffset":false,"isSlot":false,"src":"4357:9:1","valueSize":1},{"declaration":315,"isOffset":false,"isSlot":false,"src":"4443:11:1","valueSize":1},{"declaration":312,"isOffset":false,"isSlot":false,"src":"4292:7:1","valueSize":1}],"flags":["memory-safe"],"id":374,"nodeType":"InlineAssembly","src":"4249:220:1"}]},{"condition":{"id":377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4492:8:1","subExpression":{"id":376,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":312,"src":"4493:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":465,"nodeType":"IfStatement","src":"4488:1615:1","trueBody":{"id":464,"nodeType":"Block","src":"4502:1601:1","statements":[{"assignments":[379],"declarations":[{"constant":false,"id":379,"mutability":"mutable","name":"innerRevertCode","nameLocation":"4524:15:1","nodeType":"VariableDeclaration","scope":464,"src":"4516:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":378,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4516:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":380,"nodeType":"VariableDeclarationStatement","src":"4516:23:1"},{"AST":{"nativeSrc":"4578:202:1","nodeType":"YulBlock","src":"4578:202:1","statements":[{"nativeSrc":"4596:27:1","nodeType":"YulVariableDeclaration","src":"4596:27:1","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4607:14:1","nodeType":"YulIdentifier","src":"4607:14:1"},"nativeSrc":"4607:16:1","nodeType":"YulFunctionCall","src":"4607:16:1"},"variables":[{"name":"len","nativeSrc":"4600:3:1","nodeType":"YulTypedName","src":"4600:3:1","type":""}]},{"body":{"nativeSrc":"4654:112:1","nodeType":"YulBlock","src":"4654:112:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4691:1:1","nodeType":"YulLiteral","src":"4691:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4694:1:1","nodeType":"YulLiteral","src":"4694:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4697:2:1","nodeType":"YulLiteral","src":"4697:2:1","type":"","value":"32"}],"functionName":{"name":"returndatacopy","nativeSrc":"4676:14:1","nodeType":"YulIdentifier","src":"4676:14:1"},"nativeSrc":"4676:24:1","nodeType":"YulFunctionCall","src":"4676:24:1"},"nativeSrc":"4676:24:1","nodeType":"YulExpressionStatement","src":"4676:24:1"},{"nativeSrc":"4721:27:1","nodeType":"YulAssignment","src":"4721:27:1","value":{"arguments":[{"kind":"number","nativeSrc":"4746:1:1","nodeType":"YulLiteral","src":"4746:1:1","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"4740:5:1","nodeType":"YulIdentifier","src":"4740:5:1"},"nativeSrc":"4740:8:1","nodeType":"YulFunctionCall","src":"4740:8:1"},"variableNames":[{"name":"innerRevertCode","nativeSrc":"4721:15:1","nodeType":"YulIdentifier","src":"4721:15:1"}]}]},"condition":{"arguments":[{"kind":"number","nativeSrc":"4646:2:1","nodeType":"YulLiteral","src":"4646:2:1","type":"","value":"32"},{"name":"len","nativeSrc":"4649:3:1","nodeType":"YulIdentifier","src":"4649:3:1"}],"functionName":{"name":"eq","nativeSrc":"4643:2:1","nodeType":"YulIdentifier","src":"4643:2:1"},"nativeSrc":"4643:10:1","nodeType":"YulFunctionCall","src":"4643:10:1"},"nativeSrc":"4640:126:1","nodeType":"YulIf","src":"4640:126:1"}]},"evmVersion":"cancun","externalReferences":[{"declaration":379,"isOffset":false,"isSlot":false,"src":"4721:15:1","valueSize":1}],"flags":["memory-safe"],"id":381,"nodeType":"InlineAssembly","src":"4553:227:1"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":382,"name":"innerRevertCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"4797:15:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":383,"name":"INNER_OUT_OF_GAS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":189,"src":"4816:16:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4797:35:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":391,"name":"innerRevertCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"5093:15:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":392,"name":"INNER_REVERT_LOW_PREFUND","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5112:24:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5093:43:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":461,"nodeType":"Block","src":"5549:544:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":426,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5612:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5619:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"5612:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"expression":{"id":428,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5651:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5658:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"5651:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":430,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5666:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"5651:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":431,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5694:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5701:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"5694:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":433,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5709:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"5694:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":436,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"5755:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":434,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"5736:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5741:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"5736:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5736:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":425,"name":"PostOpRevertReason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3441,"src":"5572:18:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,address,uint256,bytes memory)"}},"id":438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5572:223:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":439,"nodeType":"EmitStatement","src":"5567:228:1"},{"assignments":[441],"declarations":[{"constant":false,"id":441,"mutability":"mutable","name":"actualGas","nameLocation":"5822:9:1","nodeType":"VariableDeclaration","scope":461,"src":"5814:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":440,"name":"uint256","nodeType":"ElementaryTypeName","src":"5814:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":449,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":442,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":300,"src":"5834:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":443,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"5843:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5843:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5834:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":446,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5855:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":447,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5862:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"5855:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5834:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5814:56:1"},{"expression":{"id":459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":450,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":297,"src":"5888:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"expression":{"id":452,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"5936:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5947:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"5936:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5958:14:1","memberName":"postOpReverted","nodeType":"MemberAccess","referencedDeclaration":3592,"src":"5936:36:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},{"id":455,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5994:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":456,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"6022:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":457,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":441,"src":"6051:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":451,"name":"_postExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2156,"src":"5900:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_PostOpMode_$3593_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (enum IPaymaster.PostOpMode,struct EntryPoint.UserOpInfo memory,bytes memory,uint256) returns (uint256)"}},"id":458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5900:178:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5888:190:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":460,"nodeType":"ExpressionStatement","src":"5888:190:1"}]},"id":462,"nodeType":"IfStatement","src":"5089:1004:1","trueBody":{"id":424,"nodeType":"Block","src":"5138:405:1","statements":[{"assignments":[395],"declarations":[{"constant":false,"id":395,"mutability":"mutable","name":"actualGas","nameLocation":"5257:9:1","nodeType":"VariableDeclaration","scope":424,"src":"5249:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":394,"name":"uint256","nodeType":"ElementaryTypeName","src":"5249:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":403,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":396,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":300,"src":"5269:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":397,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"5278:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5278:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5269:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":400,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5290:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":401,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5297:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"5290:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5269:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5249:56:1"},{"assignments":[405],"declarations":[{"constant":false,"id":405,"mutability":"mutable","name":"actualGasCost","nameLocation":"5331:13:1","nodeType":"VariableDeclaration","scope":424,"src":"5323:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":404,"name":"uint256","nodeType":"ElementaryTypeName","src":"5323:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":408,"initialValue":{"expression":{"id":406,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5347:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5354:7:1","memberName":"prefund","nodeType":"MemberAccess","referencedDeclaration":942,"src":"5347:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5323:38:1"},{"expression":{"arguments":[{"id":410,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5397:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":409,"name":"emitPrefundTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":515,"src":"5379:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory)"}},"id":411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5379:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":412,"nodeType":"ExpressionStatement","src":"5379:25:1"},{"expression":{"arguments":[{"id":414,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5445:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"hexValue":"66616c7365","id":415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5453:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":416,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"5460:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":417,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":395,"src":"5475:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":413,"name":"emitUserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":497,"src":"5422:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory,bool,uint256,uint256)"}},"id":418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5422:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":419,"nodeType":"ExpressionStatement","src":"5422:63:1"},{"expression":{"id":422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":420,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":297,"src":"5503:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":421,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"5515:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5503:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":423,"nodeType":"ExpressionStatement","src":"5503:25:1"}]}},"id":463,"nodeType":"IfStatement","src":"4793:1300:1","trueBody":{"id":390,"nodeType":"Block","src":"4834:249:1","statements":[{"errorCall":{"arguments":[{"id":386,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":288,"src":"5041:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413935206f7574206f6620676173","id":387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5050:17:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980","typeString":"literal_string \"AA95 out of gas\""},"value":"AA95 out of gas"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980","typeString":"literal_string \"AA95 out of gas\""}],"id":385,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"5032:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5032:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":389,"nodeType":"RevertStatement","src":"5025:43:1"}]}}]}}]},"documentation":{"id":286,"nodeType":"StructuredDocumentation","src":"2731:296:1","text":" Execute a user operation.\n @param opIndex    - Index into the opInfo array.\n @param userOp     - The userOp to execute.\n @param opInfo     - The opInfo filled by validatePrepayment for this userOp.\n @return collected - The total amount this userOp paid."},"id":467,"implemented":true,"kind":"function","modifiers":[],"name":"_executeUserOp","nameLocation":"3041:14:1","nodeType":"FunctionDefinition","parameters":{"id":295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":288,"mutability":"mutable","name":"opIndex","nameLocation":"3073:7:1","nodeType":"VariableDeclaration","scope":467,"src":"3065:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":287,"name":"uint256","nodeType":"ElementaryTypeName","src":"3065:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":291,"mutability":"mutable","name":"userOp","nameLocation":"3119:6:1","nodeType":"VariableDeclaration","scope":467,"src":"3090:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":290,"nodeType":"UserDefinedTypeName","pathNode":{"id":289,"name":"PackedUserOperation","nameLocations":["3090:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3090:19:1"},"referencedDeclaration":3748,"src":"3090:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":294,"mutability":"mutable","name":"opInfo","nameLocation":"3153:6:1","nodeType":"VariableDeclaration","scope":467,"src":"3135:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":293,"nodeType":"UserDefinedTypeName","pathNode":{"id":292,"name":"UserOpInfo","nameLocations":["3135:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"3135:10:1"},"referencedDeclaration":947,"src":"3135:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"src":"3055:110:1"},"returnParameters":{"id":298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":297,"mutability":"mutable","name":"collected","nameLocation":"3204:9:1","nodeType":"VariableDeclaration","scope":467,"src":"3196:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":296,"name":"uint256","nodeType":"ElementaryTypeName","src":"3196:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3195:19:1"},"scope":2236,"src":"3032:3077:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":496,"nodeType":"Block","src":"6246:259:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":480,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6293:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":481,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6300:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"6293:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"expression":{"id":482,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6324:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":483,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6331:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6324:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":484,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6339:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"6324:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":485,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6359:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":486,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6366:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6359:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":487,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6374:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"6359:24:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":488,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6397:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":489,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6404:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6397:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":490,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6412:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"6397:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":491,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":472,"src":"6431:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":492,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6452:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":493,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":476,"src":"6479:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":479,"name":"UserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3408,"src":"6261:18:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint256_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,address,uint256,bool,uint256,uint256)"}},"id":494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6261:237:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":495,"nodeType":"EmitStatement","src":"6256:242:1"}]},"id":497,"implemented":true,"kind":"function","modifiers":[],"name":"emitUserOperationEvent","nameLocation":"6124:22:1","nodeType":"FunctionDefinition","parameters":{"id":477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"opInfo","nameLocation":"6165:6:1","nodeType":"VariableDeclaration","scope":497,"src":"6147:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":469,"nodeType":"UserDefinedTypeName","pathNode":{"id":468,"name":"UserOpInfo","nameLocations":["6147:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6147:10:1"},"referencedDeclaration":947,"src":"6147:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":472,"mutability":"mutable","name":"success","nameLocation":"6178:7:1","nodeType":"VariableDeclaration","scope":497,"src":"6173:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":471,"name":"bool","nodeType":"ElementaryTypeName","src":"6173:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":474,"mutability":"mutable","name":"actualGasCost","nameLocation":"6195:13:1","nodeType":"VariableDeclaration","scope":497,"src":"6187:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":473,"name":"uint256","nodeType":"ElementaryTypeName","src":"6187:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":476,"mutability":"mutable","name":"actualGas","nameLocation":"6218:9:1","nodeType":"VariableDeclaration","scope":497,"src":"6210:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":475,"name":"uint256","nodeType":"ElementaryTypeName","src":"6210:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6146:82:1"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[],"src":"6246:0:1"},"scope":2236,"src":"6115:390:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":514,"nodeType":"Block","src":"6581:158:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":504,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"6636:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":505,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6643:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"6636:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"expression":{"id":506,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"6667:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":507,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6674:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6667:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":508,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6682:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"6667:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":509,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"6702:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":510,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6709:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6702:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":511,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6717:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"6702:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":503,"name":"UserOperationPrefundTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3450,"src":"6596:26:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6596:136:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":513,"nodeType":"EmitStatement","src":"6591:141:1"}]},"id":515,"implemented":true,"kind":"function","modifiers":[],"name":"emitPrefundTooLow","nameLocation":"6520:17:1","nodeType":"FunctionDefinition","parameters":{"id":501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":500,"mutability":"mutable","name":"opInfo","nameLocation":"6556:6:1","nodeType":"VariableDeclaration","scope":515,"src":"6538:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":499,"nodeType":"UserDefinedTypeName","pathNode":{"id":498,"name":"UserOpInfo","nameLocations":["6538:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6538:10:1"},"referencedDeclaration":947,"src":"6538:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"src":"6537:26:1"},"returnParameters":{"id":502,"nodeType":"ParameterList","parameters":[],"src":"6581:0:1"},"scope":2236,"src":"6511:228:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[3507],"body":{"id":622,"nodeType":"Block","src":"6903:889:1","statements":[{"assignments":[528],"declarations":[{"constant":false,"id":528,"mutability":"mutable","name":"opslen","nameLocation":"6921:6:1","nodeType":"VariableDeclaration","scope":622,"src":"6913:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":527,"name":"uint256","nodeType":"ElementaryTypeName","src":"6913:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":531,"initialValue":{"expression":{"id":529,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"6930:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6934:6:1","memberName":"length","nodeType":"MemberAccess","src":"6930:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6913:27:1"},{"assignments":[536],"declarations":[{"constant":false,"id":536,"mutability":"mutable","name":"opInfos","nameLocation":"6970:7:1","nodeType":"VariableDeclaration","scope":622,"src":"6950:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo[]"},"typeName":{"baseType":{"id":534,"nodeType":"UserDefinedTypeName","pathNode":{"id":533,"name":"UserOpInfo","nameLocations":["6950:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6950:10:1"},"referencedDeclaration":947,"src":"6950:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":535,"nodeType":"ArrayTypeName","src":"6950:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}},"visibility":"internal"}],"id":543,"initialValue":{"arguments":[{"id":541,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"6997:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6980:16:1","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct EntryPoint.UserOpInfo memory[] memory)"},"typeName":{"baseType":{"id":538,"nodeType":"UserDefinedTypeName","pathNode":{"id":537,"name":"UserOpInfo","nameLocations":["6984:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6984:10:1"},"referencedDeclaration":947,"src":"6984:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":539,"nodeType":"ArrayTypeName","src":"6984:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}}},"id":542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6980:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6950:54:1"},{"id":621,"nodeType":"UncheckedBlock","src":"7015:771:1","statements":[{"body":{"id":583,"nodeType":"Block","src":"7076:444:1","statements":[{"assignments":[556],"declarations":[{"constant":false,"id":556,"mutability":"mutable","name":"opInfo","nameLocation":"7112:6:1","nodeType":"VariableDeclaration","scope":583,"src":"7094:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":555,"nodeType":"UserDefinedTypeName","pathNode":{"id":554,"name":"UserOpInfo","nameLocations":["7094:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"7094:10:1"},"referencedDeclaration":947,"src":"7094:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"id":560,"initialValue":{"baseExpression":{"id":557,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":536,"src":"7121:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":559,"indexExpression":{"id":558,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7129:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7121:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"nodeType":"VariableDeclarationStatement","src":"7094:37:1"},{"assignments":[562,564],"declarations":[{"constant":false,"id":562,"mutability":"mutable","name":"validationData","nameLocation":"7179:14:1","nodeType":"VariableDeclaration","scope":583,"src":"7171:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":561,"name":"uint256","nodeType":"ElementaryTypeName","src":"7171:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":564,"mutability":"mutable","name":"pmValidationData","nameLocation":"7223:16:1","nodeType":"VariableDeclaration","scope":583,"src":"7215:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":563,"name":"uint256","nodeType":"ElementaryTypeName","src":"7215:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":572,"initialValue":{"arguments":[{"id":566,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7280:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":567,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"7283:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":569,"indexExpression":{"id":568,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7287:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7283:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":570,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":556,"src":"7291:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":565,"name":"_validatePrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1934,"src":"7260:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256,uint256)"}},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7260:38:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"7149:149:1"},{"expression":{"arguments":[{"id":574,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7380:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":575,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":562,"src":"7403:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":576,"name":"pmValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":564,"src":"7439:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7485:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7477:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":577,"name":"address","nodeType":"ElementaryTypeName","src":"7477:7:1","typeDescriptions":{}}},"id":580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7477:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":573,"name":"_validateAccountAndPaymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"7316:42:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,uint256,uint256,address) view"}},"id":581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:189:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":582,"nodeType":"ExpressionStatement","src":"7316:189:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":548,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7059:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":549,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"7063:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7059:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":584,"initializationExpression":{"assignments":[545],"declarations":[{"constant":false,"id":545,"mutability":"mutable","name":"i","nameLocation":"7052:1:1","nodeType":"VariableDeclaration","scope":584,"src":"7044:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":544,"name":"uint256","nodeType":"ElementaryTypeName","src":"7044:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":547,"initialValue":{"hexValue":"30","id":546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7056:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7044:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7071:3:1","subExpression":{"id":551,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7071:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":553,"nodeType":"ExpressionStatement","src":"7071:3:1"},"nodeType":"ForStatement","src":"7039:481:1"},{"assignments":[586],"declarations":[{"constant":false,"id":586,"mutability":"mutable","name":"collected","nameLocation":"7542:9:1","nodeType":"VariableDeclaration","scope":621,"src":"7534:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":585,"name":"uint256","nodeType":"ElementaryTypeName","src":"7534:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":588,"initialValue":{"hexValue":"30","id":587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7554:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7534:21:1"},{"eventCall":{"arguments":[],"expression":{"argumentTypes":[],"id":589,"name":"BeforeExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3453,"src":"7574:15:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$__$returns$__$","typeString":"function ()"}},"id":590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7574:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":591,"nodeType":"EmitStatement","src":"7569:22:1"},{"body":{"id":614,"nodeType":"Block","src":"7643:83:1","statements":[{"expression":{"id":612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":602,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"7661:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":604,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7689:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":605,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"7692:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":607,"indexExpression":{"id":606,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7696:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7692:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"baseExpression":{"id":608,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":536,"src":"7700:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":610,"indexExpression":{"id":609,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7708:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7700:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":603,"name":"_executeUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"7674:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256)"}},"id":611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7674:37:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7661:50:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":613,"nodeType":"ExpressionStatement","src":"7661:50:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":596,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7626:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":597,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"7630:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7626:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":615,"initializationExpression":{"assignments":[593],"declarations":[{"constant":false,"id":593,"mutability":"mutable","name":"i","nameLocation":"7619:1:1","nodeType":"VariableDeclaration","scope":615,"src":"7611:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":592,"name":"uint256","nodeType":"ElementaryTypeName","src":"7611:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":595,"initialValue":{"hexValue":"30","id":594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7623:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7611:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7638:3:1","subExpression":{"id":599,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7638:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":601,"nodeType":"ExpressionStatement","src":"7638:3:1"},"nodeType":"ForStatement","src":"7606:120:1"},{"expression":{"arguments":[{"id":617,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"7752:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":618,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"7765:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":616,"name":"_compensate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":285,"src":"7740:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256)"}},"id":619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7740:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":620,"nodeType":"ExpressionStatement","src":"7740:35:1"}]}]},"documentation":{"id":516,"nodeType":"StructuredDocumentation","src":"6745:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"765e827f","id":623,"implemented":true,"kind":"function","modifiers":[{"id":525,"kind":"modifierInvocation","modifierName":{"id":524,"name":"nonReentrant","nameLocations":["6890:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":16390,"src":"6890:12:1"},"nodeType":"ModifierInvocation","src":"6890:12:1"}],"name":"handleOps","nameLocation":"6786:9:1","nodeType":"FunctionDefinition","parameters":{"id":523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":520,"mutability":"mutable","name":"ops","nameLocation":"6836:3:1","nodeType":"VariableDeclaration","scope":623,"src":"6805:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":518,"nodeType":"UserDefinedTypeName","pathNode":{"id":517,"name":"PackedUserOperation","nameLocations":["6805:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"6805:19:1"},"referencedDeclaration":3748,"src":"6805:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":519,"nodeType":"ArrayTypeName","src":"6805:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":522,"mutability":"mutable","name":"beneficiary","nameLocation":"6865:11:1","nodeType":"VariableDeclaration","scope":623,"src":"6849:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":521,"name":"address","nodeType":"ElementaryTypeName","src":"6849:15:1","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6795:87:1"},"returnParameters":{"id":526,"nodeType":"ParameterList","parameters":[],"src":"6903:0:1"},"scope":2236,"src":"6777:1015:1","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[3517],"body":{"id":912,"nodeType":"Block","src":"7980:2460:1","statements":[{"assignments":[636],"declarations":[{"constant":false,"id":636,"mutability":"mutable","name":"opasLen","nameLocation":"7999:7:1","nodeType":"VariableDeclaration","scope":912,"src":"7991:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":635,"name":"uint256","nodeType":"ElementaryTypeName","src":"7991:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":639,"initialValue":{"expression":{"id":637,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"8009:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8026:6:1","memberName":"length","nodeType":"MemberAccess","src":"8009:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7991:41:1"},{"assignments":[641],"declarations":[{"constant":false,"id":641,"mutability":"mutable","name":"totalOps","nameLocation":"8050:8:1","nodeType":"VariableDeclaration","scope":912,"src":"8042:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":640,"name":"uint256","nodeType":"ElementaryTypeName","src":"8042:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":643,"initialValue":{"hexValue":"30","id":642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8061:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8042:20:1"},{"body":{"id":722,"nodeType":"Block","src":"8110:729:1","statements":[{"assignments":[656],"declarations":[{"constant":false,"id":656,"mutability":"mutable","name":"opa","nameLocation":"8154:3:1","nodeType":"VariableDeclaration","scope":722,"src":"8124:33:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"},"typeName":{"id":655,"nodeType":"UserDefinedTypeName","pathNode":{"id":654,"name":"UserOpsPerAggregator","nameLocations":["8124:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"8124:20:1"},"referencedDeclaration":3497,"src":"8124:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"visibility":"internal"}],"id":660,"initialValue":{"baseExpression":{"id":657,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"8160:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":659,"indexExpression":{"id":658,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"8177:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8160:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"nodeType":"VariableDeclarationStatement","src":"8124:55:1"},{"assignments":[665],"declarations":[{"constant":false,"id":665,"mutability":"mutable","name":"ops","nameLocation":"8224:3:1","nodeType":"VariableDeclaration","scope":722,"src":"8193:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":663,"nodeType":"UserDefinedTypeName","pathNode":{"id":662,"name":"PackedUserOperation","nameLocations":["8193:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"8193:19:1"},"referencedDeclaration":3748,"src":"8193:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":664,"nodeType":"ArrayTypeName","src":"8193:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"id":668,"initialValue":{"expression":{"id":666,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"8230:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8234:7:1","memberName":"userOps","nodeType":"MemberAccess","referencedDeclaration":3491,"src":"8230:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"nodeType":"VariableDeclarationStatement","src":"8193:48:1"},{"assignments":[671],"declarations":[{"constant":false,"id":671,"mutability":"mutable","name":"aggregator","nameLocation":"8267:10:1","nodeType":"VariableDeclaration","scope":722,"src":"8255:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"},"typeName":{"id":670,"nodeType":"UserDefinedTypeName","pathNode":{"id":669,"name":"IAggregator","nameLocations":["8255:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3382,"src":"8255:11:1"},"referencedDeclaration":3382,"src":"8255:11:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"visibility":"internal"}],"id":674,"initialValue":{"expression":{"id":672,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"8280:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8284:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":3494,"src":"8280:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"nodeType":"VariableDeclarationStatement","src":"8255:39:1"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":678,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8406:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8398:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":676,"name":"address","nodeType":"ElementaryTypeName","src":"8398:7:1","typeDescriptions":{}}},"id":679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8398:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"31","id":682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8429:1:1","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":681,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8421:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":680,"name":"address","nodeType":"ElementaryTypeName","src":"8421:7:1","typeDescriptions":{}}},"id":683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8421:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8398:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393620696e76616c69642061676772656761746f72","id":685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8449:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883","typeString":"literal_string \"AA96 invalid aggregator\""},"value":"AA96 invalid aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883","typeString":"literal_string \"AA96 invalid aggregator\""}],"id":675,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8373:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8373:115:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":687,"nodeType":"ExpressionStatement","src":"8373:115:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":690,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8515:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":689,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8507:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":688,"name":"address","nodeType":"ElementaryTypeName","src":"8507:7:1","typeDescriptions":{}}},"id":691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8507:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8538:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":693,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8530:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"8530:7:1","typeDescriptions":{}}},"id":695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8530:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8507:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":716,"nodeType":"IfStatement","src":"8503:289:1","trueBody":{"id":715,"nodeType":"Block","src":"8542:250:1","statements":[{"clauses":[{"block":{"id":703,"nodeType":"Block","src":"8675:2:1","statements":[]},"errorName":"","id":704,"nodeType":"TryCatchClause","src":"8675:2:1"},{"block":{"id":712,"nodeType":"Block","src":"8684:94:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":708,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8747:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":707,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8739:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":706,"name":"address","nodeType":"ElementaryTypeName","src":"8739:7:1","typeDescriptions":{}}},"id":709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8739:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":705,"name":"SignatureValidationFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3483,"src":"8713:25:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8713:46:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":711,"nodeType":"RevertStatement","src":"8706:53:1"}]},"errorName":"","id":713,"nodeType":"TryCatchClause","src":"8678:100:1"}],"externalCall":{"arguments":[{"id":699,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"8655:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},{"expression":{"id":700,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"8660:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8664:9:1","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":3496,"src":"8660:13:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":697,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8625:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"id":698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8636:18:1","memberName":"validateSignatures","nodeType":"MemberAccess","referencedDeclaration":3362,"src":"8625:29:1","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (struct PackedUserOperation memory[] memory,bytes memory) view external"}},"id":702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8625:49:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":714,"nodeType":"TryStatement","src":"8621:157:1"}]}},{"expression":{"id":720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":717,"name":"totalOps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":641,"src":"8806:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":718,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"8818:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8822:6:1","memberName":"length","nodeType":"MemberAccess","src":"8818:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8806:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":721,"nodeType":"ExpressionStatement","src":"8806:22:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":648,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"8092:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":649,"name":"opasLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":636,"src":"8096:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8092:11:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":723,"initializationExpression":{"assignments":[645],"declarations":[{"constant":false,"id":645,"mutability":"mutable","name":"i","nameLocation":"8085:1:1","nodeType":"VariableDeclaration","scope":723,"src":"8077:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":644,"name":"uint256","nodeType":"ElementaryTypeName","src":"8077:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":647,"initialValue":{"hexValue":"30","id":646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8089:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8077:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"8105:3:1","subExpression":{"id":651,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"8105:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":653,"nodeType":"ExpressionStatement","src":"8105:3:1"},"nodeType":"ForStatement","src":"8072:767:1"},{"assignments":[728],"declarations":[{"constant":false,"id":728,"mutability":"mutable","name":"opInfos","nameLocation":"8869:7:1","nodeType":"VariableDeclaration","scope":912,"src":"8849:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo[]"},"typeName":{"baseType":{"id":726,"nodeType":"UserDefinedTypeName","pathNode":{"id":725,"name":"UserOpInfo","nameLocations":["8849:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"8849:10:1"},"referencedDeclaration":947,"src":"8849:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":727,"nodeType":"ArrayTypeName","src":"8849:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}},"visibility":"internal"}],"id":735,"initialValue":{"arguments":[{"id":733,"name":"totalOps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":641,"src":"8896:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":732,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"8879:16:1","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct EntryPoint.UserOpInfo memory[] memory)"},"typeName":{"baseType":{"id":730,"nodeType":"UserDefinedTypeName","pathNode":{"id":729,"name":"UserOpInfo","nameLocations":["8883:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"8883:10:1"},"referencedDeclaration":947,"src":"8883:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":731,"nodeType":"ArrayTypeName","src":"8883:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}}},"id":734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8879:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"8849:56:1"},{"assignments":[737],"declarations":[{"constant":false,"id":737,"mutability":"mutable","name":"opIndex","nameLocation":"8924:7:1","nodeType":"VariableDeclaration","scope":912,"src":"8916:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":736,"name":"uint256","nodeType":"ElementaryTypeName","src":"8916:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":739,"initialValue":{"hexValue":"30","id":738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8934:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8916:19:1"},{"body":{"id":820,"nodeType":"Block","src":"8983:793:1","statements":[{"assignments":[752],"declarations":[{"constant":false,"id":752,"mutability":"mutable","name":"opa","nameLocation":"9027:3:1","nodeType":"VariableDeclaration","scope":820,"src":"8997:33:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"},"typeName":{"id":751,"nodeType":"UserDefinedTypeName","pathNode":{"id":750,"name":"UserOpsPerAggregator","nameLocations":["8997:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"8997:20:1"},"referencedDeclaration":3497,"src":"8997:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"visibility":"internal"}],"id":756,"initialValue":{"baseExpression":{"id":753,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"9033:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":755,"indexExpression":{"id":754,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"9050:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9033:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"nodeType":"VariableDeclarationStatement","src":"8997:55:1"},{"assignments":[761],"declarations":[{"constant":false,"id":761,"mutability":"mutable","name":"ops","nameLocation":"9097:3:1","nodeType":"VariableDeclaration","scope":820,"src":"9066:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":759,"nodeType":"UserDefinedTypeName","pathNode":{"id":758,"name":"PackedUserOperation","nameLocations":["9066:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"9066:19:1"},"referencedDeclaration":3748,"src":"9066:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":760,"nodeType":"ArrayTypeName","src":"9066:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"id":764,"initialValue":{"expression":{"id":762,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":752,"src":"9103:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9107:7:1","memberName":"userOps","nodeType":"MemberAccess","referencedDeclaration":3491,"src":"9103:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"nodeType":"VariableDeclarationStatement","src":"9066:48:1"},{"assignments":[767],"declarations":[{"constant":false,"id":767,"mutability":"mutable","name":"aggregator","nameLocation":"9140:10:1","nodeType":"VariableDeclaration","scope":820,"src":"9128:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"},"typeName":{"id":766,"nodeType":"UserDefinedTypeName","pathNode":{"id":765,"name":"IAggregator","nameLocations":["9128:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3382,"src":"9128:11:1"},"referencedDeclaration":3382,"src":"9128:11:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"visibility":"internal"}],"id":770,"initialValue":{"expression":{"id":768,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":752,"src":"9153:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9157:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":3494,"src":"9153:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"nodeType":"VariableDeclarationStatement","src":"9128:39:1"},{"assignments":[772],"declarations":[{"constant":false,"id":772,"mutability":"mutable","name":"opslen","nameLocation":"9190:6:1","nodeType":"VariableDeclaration","scope":820,"src":"9182:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":771,"name":"uint256","nodeType":"ElementaryTypeName","src":"9182:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":775,"initialValue":{"expression":{"id":773,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":761,"src":"9199:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9203:6:1","memberName":"length","nodeType":"MemberAccess","src":"9199:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9182:27:1"},{"body":{"id":818,"nodeType":"Block","src":"9260:506:1","statements":[{"assignments":[788],"declarations":[{"constant":false,"id":788,"mutability":"mutable","name":"opInfo","nameLocation":"9296:6:1","nodeType":"VariableDeclaration","scope":818,"src":"9278:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":787,"nodeType":"UserDefinedTypeName","pathNode":{"id":786,"name":"UserOpInfo","nameLocations":["9278:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"9278:10:1"},"referencedDeclaration":947,"src":"9278:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"id":792,"initialValue":{"baseExpression":{"id":789,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":728,"src":"9305:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":791,"indexExpression":{"id":790,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9313:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9305:16:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"nodeType":"VariableDeclarationStatement","src":"9278:43:1"},{"assignments":[794,796],"declarations":[{"constant":false,"id":794,"mutability":"mutable","name":"validationData","nameLocation":"9369:14:1","nodeType":"VariableDeclaration","scope":818,"src":"9361:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":793,"name":"uint256","nodeType":"ElementaryTypeName","src":"9361:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":796,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"9413:23:1","nodeType":"VariableDeclaration","scope":818,"src":"9405:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"9405:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":804,"initialValue":{"arguments":[{"id":798,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9477:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":799,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":761,"src":"9486:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":801,"indexExpression":{"id":800,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9490:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9486:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":802,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":788,"src":"9494:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":797,"name":"_validatePrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1934,"src":"9457:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256,uint256)"}},"id":803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9457:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9339:162:1"},{"expression":{"arguments":[{"id":806,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9583:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":807,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"9606:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":808,"name":"paymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"9642:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":811,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"9695:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9687:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":809,"name":"address","nodeType":"ElementaryTypeName","src":"9687:7:1","typeDescriptions":{}}},"id":812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9687:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":805,"name":"_validateAccountAndPaymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"9519:42:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,uint256,uint256,address) view"}},"id":813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9519:205:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":814,"nodeType":"ExpressionStatement","src":"9519:205:1"},{"expression":{"id":816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9742:9:1","subExpression":{"id":815,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9742:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":817,"nodeType":"ExpressionStatement","src":"9742:9:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":780,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9243:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":781,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"9247:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9243:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":819,"initializationExpression":{"assignments":[777],"declarations":[{"constant":false,"id":777,"mutability":"mutable","name":"i","nameLocation":"9236:1:1","nodeType":"VariableDeclaration","scope":819,"src":"9228:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":776,"name":"uint256","nodeType":"ElementaryTypeName","src":"9228:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":779,"initialValue":{"hexValue":"30","id":778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9240:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9228:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9255:3:1","subExpression":{"id":783,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9255:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":785,"nodeType":"ExpressionStatement","src":"9255:3:1"},"nodeType":"ForStatement","src":"9223:543:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":744,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"8965:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":745,"name":"opasLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":636,"src":"8969:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8965:11:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":821,"initializationExpression":{"assignments":[741],"declarations":[{"constant":false,"id":741,"mutability":"mutable","name":"a","nameLocation":"8958:1:1","nodeType":"VariableDeclaration","scope":821,"src":"8950:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":740,"name":"uint256","nodeType":"ElementaryTypeName","src":"8950:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":743,"initialValue":{"hexValue":"30","id":742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8962:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8950:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"8978:3:1","subExpression":{"id":747,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"8978:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":749,"nodeType":"ExpressionStatement","src":"8978:3:1"},"nodeType":"ForStatement","src":"8945:831:1"},{"eventCall":{"arguments":[],"expression":{"argumentTypes":[],"id":822,"name":"BeforeExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3453,"src":"9791:15:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$__$returns$__$","typeString":"function ()"}},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9791:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":824,"nodeType":"EmitStatement","src":"9786:22:1"},{"assignments":[826],"declarations":[{"constant":false,"id":826,"mutability":"mutable","name":"collected","nameLocation":"9827:9:1","nodeType":"VariableDeclaration","scope":912,"src":"9819:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":825,"name":"uint256","nodeType":"ElementaryTypeName","src":"9819:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":828,"initialValue":{"hexValue":"30","id":827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9839:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9819:21:1"},{"expression":{"id":831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":829,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9850:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9860:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9850:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":832,"nodeType":"ExpressionStatement","src":"9850:11:1"},{"body":{"id":898,"nodeType":"Block","src":"9909:426:1","statements":[{"assignments":[845],"declarations":[{"constant":false,"id":845,"mutability":"mutable","name":"opa","nameLocation":"9953:3:1","nodeType":"VariableDeclaration","scope":898,"src":"9923:33:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"},"typeName":{"id":844,"nodeType":"UserDefinedTypeName","pathNode":{"id":843,"name":"UserOpsPerAggregator","nameLocations":["9923:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"9923:20:1"},"referencedDeclaration":3497,"src":"9923:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"visibility":"internal"}],"id":849,"initialValue":{"baseExpression":{"id":846,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"9959:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":848,"indexExpression":{"id":847,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"9976:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9959:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"nodeType":"VariableDeclarationStatement","src":"9923:55:1"},{"eventCall":{"arguments":[{"arguments":[{"expression":{"id":853,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"10032:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10036:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":3494,"src":"10032:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10024:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":851,"name":"address","nodeType":"ElementaryTypeName","src":"10024:7:1","typeDescriptions":{}}},"id":855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10024:23:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":850,"name":"SignatureAggregatorChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3458,"src":"9997:26:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9997:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":857,"nodeType":"EmitStatement","src":"9992:56:1"},{"assignments":[862],"declarations":[{"constant":false,"id":862,"mutability":"mutable","name":"ops","nameLocation":"10093:3:1","nodeType":"VariableDeclaration","scope":898,"src":"10062:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":860,"nodeType":"UserDefinedTypeName","pathNode":{"id":859,"name":"PackedUserOperation","nameLocations":["10062:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"10062:19:1"},"referencedDeclaration":3748,"src":"10062:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":861,"nodeType":"ArrayTypeName","src":"10062:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"id":865,"initialValue":{"expression":{"id":863,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"10099:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10103:7:1","memberName":"userOps","nodeType":"MemberAccess","referencedDeclaration":3491,"src":"10099:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"nodeType":"VariableDeclarationStatement","src":"10062:48:1"},{"assignments":[867],"declarations":[{"constant":false,"id":867,"mutability":"mutable","name":"opslen","nameLocation":"10132:6:1","nodeType":"VariableDeclaration","scope":898,"src":"10124:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":866,"name":"uint256","nodeType":"ElementaryTypeName","src":"10124:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":870,"initialValue":{"expression":{"id":868,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":862,"src":"10141:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10145:6:1","memberName":"length","nodeType":"MemberAccess","src":"10141:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10124:27:1"},{"body":{"id":896,"nodeType":"Block","src":"10203:122:1","statements":[{"expression":{"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":881,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"10221:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":883,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"10249:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":884,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":862,"src":"10258:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":886,"indexExpression":{"id":885,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":872,"src":"10262:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10258:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"baseExpression":{"id":887,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":728,"src":"10266:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":889,"indexExpression":{"id":888,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"10274:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10266:16:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":882,"name":"_executeUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"10234:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256)"}},"id":890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10234:49:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10221:62:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":892,"nodeType":"ExpressionStatement","src":"10221:62:1"},{"expression":{"id":894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10301:9:1","subExpression":{"id":893,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"10301:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":895,"nodeType":"ExpressionStatement","src":"10301:9:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":875,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":872,"src":"10186:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":876,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":867,"src":"10190:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10186:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":897,"initializationExpression":{"assignments":[872],"declarations":[{"constant":false,"id":872,"mutability":"mutable","name":"i","nameLocation":"10179:1:1","nodeType":"VariableDeclaration","scope":897,"src":"10171:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":871,"name":"uint256","nodeType":"ElementaryTypeName","src":"10171:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":874,"initialValue":{"hexValue":"30","id":873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10183:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10171:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10198:3:1","subExpression":{"id":878,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":872,"src":"10198:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":880,"nodeType":"ExpressionStatement","src":"10198:3:1"},"nodeType":"ForStatement","src":"10166:159:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":837,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"9891:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":838,"name":"opasLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":636,"src":"9895:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9891:11:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":899,"initializationExpression":{"assignments":[834],"declarations":[{"constant":false,"id":834,"mutability":"mutable","name":"a","nameLocation":"9884:1:1","nodeType":"VariableDeclaration","scope":899,"src":"9876:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":833,"name":"uint256","nodeType":"ElementaryTypeName","src":"9876:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":836,"initialValue":{"hexValue":"30","id":835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9888:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9876:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9904:3:1","subExpression":{"id":840,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"9904:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":842,"nodeType":"ExpressionStatement","src":"9904:3:1"},"nodeType":"ForStatement","src":"9871:464:1"},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10384:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10376:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":901,"name":"address","nodeType":"ElementaryTypeName","src":"10376:7:1","typeDescriptions":{}}},"id":904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10376:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":900,"name":"SignatureAggregatorChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3458,"src":"10349:26:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10349:38:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":906,"nodeType":"EmitStatement","src":"10344:43:1"},{"expression":{"arguments":[{"id":908,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":630,"src":"10410:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":909,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"10423:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":907,"name":"_compensate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":285,"src":"10398:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256)"}},"id":910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10398:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":911,"nodeType":"ExpressionStatement","src":"10398:35:1"}]},"documentation":{"id":624,"nodeType":"StructuredDocumentation","src":"7798:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"dbed18e0","id":913,"implemented":true,"kind":"function","modifiers":[{"id":633,"kind":"modifierInvocation","modifierName":{"id":632,"name":"nonReentrant","nameLocations":["7967:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":16390,"src":"7967:12:1"},"nodeType":"ModifierInvocation","src":"7967:12:1"}],"name":"handleAggregatedOps","nameLocation":"7839:19:1","nodeType":"FunctionDefinition","parameters":{"id":631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":628,"mutability":"mutable","name":"opsPerAggregator","nameLocation":"7900:16:1","nodeType":"VariableDeclaration","scope":913,"src":"7868:48:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"},"typeName":{"baseType":{"id":626,"nodeType":"UserDefinedTypeName","pathNode":{"id":625,"name":"UserOpsPerAggregator","nameLocations":["7868:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"7868:20:1"},"referencedDeclaration":3497,"src":"7868:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"id":627,"nodeType":"ArrayTypeName","src":"7868:22:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_storage_$dyn_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"}},"visibility":"internal"},{"constant":false,"id":630,"mutability":"mutable","name":"beneficiary","nameLocation":"7942:11:1","nodeType":"VariableDeclaration","scope":913,"src":"7926:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":629,"name":"address","nodeType":"ElementaryTypeName","src":"7926:15:1","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"7858:101:1"},"returnParameters":{"id":634,"nodeType":"ParameterList","parameters":[],"src":"7980:0:1"},"scope":2236,"src":"7830:2610:1","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"canonicalName":"EntryPoint.MemoryUserOp","documentation":{"id":914,"nodeType":"StructuredDocumentation","src":"10446:157:1","text":" A memory copy of UserOp static fields only.\n Excluding: callData, initCode and signature. Replacing paymasterAndData with paymaster."},"id":935,"members":[{"constant":false,"id":916,"mutability":"mutable","name":"sender","nameLocation":"10646:6:1","nodeType":"VariableDeclaration","scope":935,"src":"10638:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":915,"name":"address","nodeType":"ElementaryTypeName","src":"10638:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":918,"mutability":"mutable","name":"nonce","nameLocation":"10670:5:1","nodeType":"VariableDeclaration","scope":935,"src":"10662:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":917,"name":"uint256","nodeType":"ElementaryTypeName","src":"10662:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":920,"mutability":"mutable","name":"verificationGasLimit","nameLocation":"10693:20:1","nodeType":"VariableDeclaration","scope":935,"src":"10685:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":919,"name":"uint256","nodeType":"ElementaryTypeName","src":"10685:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":922,"mutability":"mutable","name":"callGasLimit","nameLocation":"10731:12:1","nodeType":"VariableDeclaration","scope":935,"src":"10723:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":921,"name":"uint256","nodeType":"ElementaryTypeName","src":"10723:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":924,"mutability":"mutable","name":"paymasterVerificationGasLimit","nameLocation":"10761:29:1","nodeType":"VariableDeclaration","scope":935,"src":"10753:37:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":923,"name":"uint256","nodeType":"ElementaryTypeName","src":"10753:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":926,"mutability":"mutable","name":"paymasterPostOpGasLimit","nameLocation":"10808:23:1","nodeType":"VariableDeclaration","scope":935,"src":"10800:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":925,"name":"uint256","nodeType":"ElementaryTypeName","src":"10800:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":928,"mutability":"mutable","name":"preVerificationGas","nameLocation":"10849:18:1","nodeType":"VariableDeclaration","scope":935,"src":"10841:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":927,"name":"uint256","nodeType":"ElementaryTypeName","src":"10841:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":930,"mutability":"mutable","name":"paymaster","nameLocation":"10885:9:1","nodeType":"VariableDeclaration","scope":935,"src":"10877:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":929,"name":"address","nodeType":"ElementaryTypeName","src":"10877:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":932,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"10912:12:1","nodeType":"VariableDeclaration","scope":935,"src":"10904:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":931,"name":"uint256","nodeType":"ElementaryTypeName","src":"10904:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":934,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"10942:20:1","nodeType":"VariableDeclaration","scope":935,"src":"10934:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":933,"name":"uint256","nodeType":"ElementaryTypeName","src":"10934:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"MemoryUserOp","nameLocation":"10615:12:1","nodeType":"StructDefinition","scope":2236,"src":"10608:361:1","visibility":"public"},{"canonicalName":"EntryPoint.UserOpInfo","id":947,"members":[{"constant":false,"id":938,"mutability":"mutable","name":"mUserOp","nameLocation":"11016:7:1","nodeType":"VariableDeclaration","scope":947,"src":"11003:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":937,"nodeType":"UserDefinedTypeName","pathNode":{"id":936,"name":"MemoryUserOp","nameLocations":["11003:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"11003:12:1"},"referencedDeclaration":935,"src":"11003:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"},{"constant":false,"id":940,"mutability":"mutable","name":"userOpHash","nameLocation":"11041:10:1","nodeType":"VariableDeclaration","scope":947,"src":"11033:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":939,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11033:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":942,"mutability":"mutable","name":"prefund","nameLocation":"11069:7:1","nodeType":"VariableDeclaration","scope":947,"src":"11061:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":941,"name":"uint256","nodeType":"ElementaryTypeName","src":"11061:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":944,"mutability":"mutable","name":"contextOffset","nameLocation":"11094:13:1","nodeType":"VariableDeclaration","scope":947,"src":"11086:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":943,"name":"uint256","nodeType":"ElementaryTypeName","src":"11086:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":946,"mutability":"mutable","name":"preOpGas","nameLocation":"11125:8:1","nodeType":"VariableDeclaration","scope":947,"src":"11117:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":945,"name":"uint256","nodeType":"ElementaryTypeName","src":"11117:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"UserOpInfo","nameLocation":"10982:10:1","nodeType":"StructDefinition","scope":2236,"src":"10975:165:1","visibility":"public"},{"body":{"id":1081,"nodeType":"Block","src":"11705:1515:1","statements":[{"assignments":[961],"declarations":[{"constant":false,"id":961,"mutability":"mutable","name":"preGas","nameLocation":"11723:6:1","nodeType":"VariableDeclaration","scope":1081,"src":"11715:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":960,"name":"uint256","nodeType":"ElementaryTypeName","src":"11715:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":964,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":962,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"11732:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11732:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11715:26:1"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":966,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"11759:3:1","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11763:6:1","memberName":"sender","nodeType":"MemberAccess","src":"11759:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":970,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"11781:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}],"id":969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11773:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":968,"name":"address","nodeType":"ElementaryTypeName","src":"11773:7:1","typeDescriptions":{}}},"id":971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11773:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11759:27:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393220696e7465726e616c2063616c6c206f6e6c79","id":973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11788:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66","typeString":"literal_string \"AA92 internal call only\""},"value":"AA92 internal call only"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66","typeString":"literal_string \"AA92 internal call only\""}],"id":965,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11751:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11751:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":975,"nodeType":"ExpressionStatement","src":"11751:63:1"},{"assignments":[978],"declarations":[{"constant":false,"id":978,"mutability":"mutable","name":"mUserOp","nameLocation":"11844:7:1","nodeType":"VariableDeclaration","scope":1081,"src":"11824:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":977,"nodeType":"UserDefinedTypeName","pathNode":{"id":976,"name":"MemoryUserOp","nameLocations":["11824:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"11824:12:1"},"referencedDeclaration":935,"src":"11824:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":981,"initialValue":{"expression":{"id":979,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"11854:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":980,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11861:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"11854:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"11824:44:1"},{"assignments":[983],"declarations":[{"constant":false,"id":983,"mutability":"mutable","name":"callGasLimit","nameLocation":"11887:12:1","nodeType":"VariableDeclaration","scope":1081,"src":"11879:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":982,"name":"uint256","nodeType":"ElementaryTypeName","src":"11879:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":986,"initialValue":{"expression":{"id":984,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"11902:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":985,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11910:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"11902:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11879:43:1"},{"id":1003,"nodeType":"UncheckedBlock","src":"11932:446:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":987,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"12058:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12058:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3633","id":989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12070:2:1","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"63"},"src":"12058:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3634","id":991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12075:2:1","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"12058:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":993,"name":"callGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"12096:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":994,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12127:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":995,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12135:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"12127:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12096:62:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":997,"name":"INNER_GAS_OVERHEAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":186,"src":"12177:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12096:99:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12058:137:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1002,"nodeType":"IfStatement","src":"12037:331:1","trueBody":{"id":1001,"nodeType":"Block","src":"12210:158:1","statements":[{"AST":{"nativeSrc":"12253:101:1","nodeType":"YulBlock","src":"12253:101:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12282:1:1","nodeType":"YulLiteral","src":"12282:1:1","type":"","value":"0"},{"name":"INNER_OUT_OF_GAS","nativeSrc":"12285:16:1","nodeType":"YulIdentifier","src":"12285:16:1"}],"functionName":{"name":"mstore","nativeSrc":"12275:6:1","nodeType":"YulIdentifier","src":"12275:6:1"},"nativeSrc":"12275:27:1","nodeType":"YulFunctionCall","src":"12275:27:1"},"nativeSrc":"12275:27:1","nodeType":"YulExpressionStatement","src":"12275:27:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12330:1:1","nodeType":"YulLiteral","src":"12330:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"12333:2:1","nodeType":"YulLiteral","src":"12333:2:1","type":"","value":"32"}],"functionName":{"name":"revert","nativeSrc":"12323:6:1","nodeType":"YulIdentifier","src":"12323:6:1"},"nativeSrc":"12323:13:1","nodeType":"YulFunctionCall","src":"12323:13:1"},"nativeSrc":"12323:13:1","nodeType":"YulExpressionStatement","src":"12323:13:1"}]},"evmVersion":"cancun","externalReferences":[{"declaration":189,"isOffset":false,"isSlot":false,"src":"12285:16:1","valueSize":1}],"flags":["memory-safe"],"id":1000,"nodeType":"InlineAssembly","src":"12228:126:1"}]}}]},{"assignments":[1008],"declarations":[{"constant":false,"id":1008,"mutability":"mutable","name":"mode","nameLocation":"12410:4:1","nodeType":"VariableDeclaration","scope":1081,"src":"12388:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"typeName":{"id":1007,"nodeType":"UserDefinedTypeName","pathNode":{"id":1006,"name":"IPaymaster.PostOpMode","nameLocations":["12388:10:1","12399:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":3593,"src":"12388:21:1"},"referencedDeclaration":3593,"src":"12388:21:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"visibility":"internal"}],"id":1012,"initialValue":{"expression":{"expression":{"id":1009,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"12417:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":1010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12428:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"12417:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":1011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12439:11:1","memberName":"opSucceeded","nodeType":"MemberAccess","referencedDeclaration":3590,"src":"12417:33:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"VariableDeclarationStatement","src":"12388:62:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1013,"name":"callData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"12464:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12473:6:1","memberName":"length","nodeType":"MemberAccess","src":"12464:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12482:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12464:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1062,"nodeType":"IfStatement","src":"12460:584:1","trueBody":{"id":1061,"nodeType":"Block","src":"12485:559:1","statements":[{"assignments":[1018],"declarations":[{"constant":false,"id":1018,"mutability":"mutable","name":"success","nameLocation":"12504:7:1","nodeType":"VariableDeclaration","scope":1061,"src":"12499:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1017,"name":"bool","nodeType":"ElementaryTypeName","src":"12499:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1027,"initialValue":{"arguments":[{"expression":{"id":1021,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12524:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1022,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12532:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"12524:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":1023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12540:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":1024,"name":"callData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"12543:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1025,"name":"callGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"12553:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1019,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"12514:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12519:4:1","memberName":"call","nodeType":"MemberAccess","referencedDeclaration":3766,"src":"12514:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory,uint256) returns (bool)"}},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12514:52:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12499:67:1"},{"condition":{"id":1029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12584:8:1","subExpression":{"id":1028,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"12585:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1060,"nodeType":"IfStatement","src":"12580:454:1","trueBody":{"id":1059,"nodeType":"Block","src":"12594:440:1","statements":[{"assignments":[1031],"declarations":[{"constant":false,"id":1031,"mutability":"mutable","name":"result","nameLocation":"12625:6:1","nodeType":"VariableDeclaration","scope":1059,"src":"12612:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1030,"name":"bytes","nodeType":"ElementaryTypeName","src":"12612:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1036,"initialValue":{"arguments":[{"id":1034,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"12653:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1032,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"12634:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12639:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"12634:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":1035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12634:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12612:63:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1037,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1031,"src":"12697:6:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12704:6:1","memberName":"length","nodeType":"MemberAccess","src":"12697:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12713:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12697:17:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1052,"nodeType":"IfStatement","src":"12693:270:1","trueBody":{"id":1051,"nodeType":"Block","src":"12716:247:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":1042,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"12794:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12801:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"12794:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":1044,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12837:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1045,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12845:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"12837:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1046,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12877:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12885:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"12877:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1048,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1031,"src":"12916:6:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1041,"name":"UserOperationRevertReason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3430,"src":"12743:25:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,address,uint256,bytes memory)"}},"id":1049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12743:201:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1050,"nodeType":"EmitStatement","src":"12738:206:1"}]}},{"expression":{"id":1057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1053,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1008,"src":"12980:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"expression":{"id":1054,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"12987:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":1055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12998:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"12987:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":1056,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13009:10:1","memberName":"opReverted","nodeType":"MemberAccess","referencedDeclaration":3591,"src":"12987:32:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"12980:39:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"id":1058,"nodeType":"ExpressionStatement","src":"12980:39:1"}]}}]}},{"id":1080,"nodeType":"UncheckedBlock","src":"13054:160:1","statements":[{"assignments":[1064],"declarations":[{"constant":false,"id":1064,"mutability":"mutable","name":"actualGas","nameLocation":"13086:9:1","nodeType":"VariableDeclaration","scope":1080,"src":"13078:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1063,"name":"uint256","nodeType":"ElementaryTypeName","src":"13078:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1072,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1065,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":961,"src":"13098:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1066,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"13107:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13107:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13098:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1069,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"13119:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13126:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"13119:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13098:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13078:56:1"},{"expression":{"arguments":[{"id":1074,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1008,"src":"13170:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},{"id":1075,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"13176:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":1076,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"13184:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":1077,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1064,"src":"13193:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1073,"name":"_postExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2156,"src":"13155:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_PostOpMode_$3593_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (enum IPaymaster.PostOpMode,struct EntryPoint.UserOpInfo memory,bytes memory,uint256) returns (uint256)"}},"id":1078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13155:48:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":959,"id":1079,"nodeType":"Return","src":"13148:55:1"}]}]},"documentation":{"id":948,"nodeType":"StructuredDocumentation","src":"11146:387:1","text":" Inner function to handle a UserOperation.\n Must be declared \"external\" to open a call context, but it can only be called by handleOps.\n @param callData - The callData to execute.\n @param opInfo   - The UserOpInfo struct.\n @param context  - The context bytes.\n @return actualGasCost - the actual cost in eth this UserOperation paid for gas"},"functionSelector":"0042dc53","id":1082,"implemented":true,"kind":"function","modifiers":[],"name":"innerHandleOp","nameLocation":"11547:13:1","nodeType":"FunctionDefinition","parameters":{"id":956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":950,"mutability":"mutable","name":"callData","nameLocation":"11583:8:1","nodeType":"VariableDeclaration","scope":1082,"src":"11570:21:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":949,"name":"bytes","nodeType":"ElementaryTypeName","src":"11570:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":953,"mutability":"mutable","name":"opInfo","nameLocation":"11619:6:1","nodeType":"VariableDeclaration","scope":1082,"src":"11601:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":952,"nodeType":"UserDefinedTypeName","pathNode":{"id":951,"name":"UserOpInfo","nameLocations":["11601:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"11601:10:1"},"referencedDeclaration":947,"src":"11601:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":955,"mutability":"mutable","name":"context","nameLocation":"11650:7:1","nodeType":"VariableDeclaration","scope":1082,"src":"11635:22:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":954,"name":"bytes","nodeType":"ElementaryTypeName","src":"11635:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11560:103:1"},"returnParameters":{"id":959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":958,"mutability":"mutable","name":"actualGasCost","nameLocation":"11690:13:1","nodeType":"VariableDeclaration","scope":1082,"src":"11682:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":957,"name":"uint256","nodeType":"ElementaryTypeName","src":"11682:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11681:23:1"},"scope":2236,"src":"11538:1682:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3526],"body":{"id":1106,"nodeType":"Block","src":"13362:102:1","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1094,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"13412:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13419:4:1","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":3317,"src":"13412:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$","typeString":"function (struct PackedUserOperation calldata) pure returns (bytes32)"}},"id":1096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13412:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":1099,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"13435:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}],"id":1098,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13427:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1097,"name":"address","nodeType":"ElementaryTypeName","src":"13427:7:1","typeDescriptions":{}}},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13427:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1101,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"13442:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13448:7:1","memberName":"chainid","nodeType":"MemberAccess","src":"13442:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1092,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"13401:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13405:6:1","memberName":"encode","nodeType":"MemberAccess","src":"13401:10:1","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13401:55:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1091,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"13391:9:1","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13391:66:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1090,"id":1105,"nodeType":"Return","src":"13372:85:1"}]},"documentation":{"id":1083,"nodeType":"StructuredDocumentation","src":"13226:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"22cdde4c","id":1107,"implemented":true,"kind":"function","modifiers":[],"name":"getUserOpHash","nameLocation":"13267:13:1","nodeType":"FunctionDefinition","parameters":{"id":1087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1086,"mutability":"mutable","name":"userOp","nameLocation":"13319:6:1","nodeType":"VariableDeclaration","scope":1107,"src":"13290:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1085,"nodeType":"UserDefinedTypeName","pathNode":{"id":1084,"name":"PackedUserOperation","nameLocations":["13290:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"13290:19:1"},"referencedDeclaration":3748,"src":"13290:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"13280:51:1"},"returnParameters":{"id":1090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1107,"src":"13353:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1088,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13353:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13352:9:1"},"scope":2236,"src":"13258:206:1","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":1220,"nodeType":"Block","src":"13785:998:1","statements":[{"expression":{"id":1122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1117,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13795:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1119,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13803:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"13795:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1120,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"13812:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13819:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":3731,"src":"13812:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13795:30:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1123,"nodeType":"ExpressionStatement","src":"13795:30:1"},{"expression":{"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1124,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13835:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1126,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13843:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"13835:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1127,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"13851:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13858:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3733,"src":"13851:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13835:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1130,"nodeType":"ExpressionStatement","src":"13835:28:1"},{"expression":{"id":1142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1131,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13874:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13882:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"13874:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1134,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13904:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1135,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13912:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"13904:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1136,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13873:52:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1139,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"13957:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13964:16:1","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"13957:23:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1137,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"13928:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13945:11:1","memberName":"unpackUints","nodeType":"MemberAccess","referencedDeclaration":3129,"src":"13928:28:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":1141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13928:53:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"13873:108:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1143,"nodeType":"ExpressionStatement","src":"13873:108:1"},{"expression":{"id":1149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1144,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13991:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13999:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":928,"src":"13991:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1147,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"14020:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14027:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":3741,"src":"14020:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13991:54:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1150,"nodeType":"ExpressionStatement","src":"13991:54:1"},{"expression":{"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1151,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14056:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14064:20:1","memberName":"maxPriorityFeePerGas","nodeType":"MemberAccess","referencedDeclaration":934,"src":"14056:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1154,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14086:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14094:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"14086:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1156,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14055:52:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1159,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"14139:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14146:7:1","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"14139:14:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1157,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"14110:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14127:11:1","memberName":"unpackUints","nodeType":"MemberAccess","referencedDeclaration":3129,"src":"14110:28:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":1161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14110:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"14055:99:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"ExpressionStatement","src":"14055:99:1"},{"assignments":[1165],"declarations":[{"constant":false,"id":1165,"mutability":"mutable","name":"paymasterAndData","nameLocation":"14179:16:1","nodeType":"VariableDeclaration","scope":1220,"src":"14164:31:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1164,"name":"bytes","nodeType":"ElementaryTypeName","src":"14164:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1168,"initialValue":{"expression":{"id":1166,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"14198:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14205:16:1","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"14198:23:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"14164:57:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1169,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14235:16:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14252:6:1","memberName":"length","nodeType":"MemberAccess","src":"14235:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14261:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14235:27:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1218,"nodeType":"Block","src":"14618:159:1","statements":[{"expression":{"id":1204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1197,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14632:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1199,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14640:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"14632:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":1202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14660:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14652:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1200,"name":"address","nodeType":"ElementaryTypeName","src":"14652:7:1","typeDescriptions":{}}},"id":1203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14652:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"14632:30:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1205,"nodeType":"ExpressionStatement","src":"14632:30:1"},{"expression":{"id":1210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1206,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14676:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1208,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14684:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"14676:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14716:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14676:41:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1211,"nodeType":"ExpressionStatement","src":"14676:41:1"},{"expression":{"id":1216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1212,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14731:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1214,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14739:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"14731:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14765:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14731:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1217,"nodeType":"ExpressionStatement","src":"14731:35:1"}]},"id":1219,"nodeType":"IfStatement","src":"14231:546:1","trueBody":{"id":1196,"nodeType":"Block","src":"14264:348:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1174,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14303:16:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14320:6:1","memberName":"length","nodeType":"MemberAccess","src":"14303:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":1176,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"14330:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14347:21:1","memberName":"PAYMASTER_DATA_OFFSET","nodeType":"MemberAccess","referencedDeclaration":2977,"src":"14330:38:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14303:65:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393320696e76616c6964207061796d6173746572416e6444617461","id":1179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14386:31:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd","typeString":"literal_string \"AA93 invalid paymasterAndData\""},"value":"AA93 invalid paymasterAndData"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd","typeString":"literal_string \"AA93 invalid paymasterAndData\""}],"id":1173,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14278:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14278:153:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1181,"nodeType":"ExpressionStatement","src":"14278:153:1"},{"expression":{"id":1194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1182,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14446:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1184,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14454:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"14446:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1185,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14465:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1186,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14473:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"14465:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1187,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14504:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1188,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14512:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"14504:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1189,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14445:91:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$_t_uint256_$","typeString":"tuple(address,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1192,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14584:16:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":1190,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"14539:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14556:27:1","memberName":"unpackPaymasterStaticFields","nodeType":"MemberAccess","referencedDeclaration":3301,"src":"14539:44:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_address_$_t_uint256_$_t_uint256_$","typeString":"function (bytes calldata) pure returns (address,uint256,uint256)"}},"id":1193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14539:62:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$_t_uint256_$","typeString":"tuple(address,uint256,uint256)"}},"src":"14445:156:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1195,"nodeType":"ExpressionStatement","src":"14445:156:1"}]}}]},"documentation":{"id":1108,"nodeType":"StructuredDocumentation","src":"13470:179:1","text":" Copy general fields from userOp into the memory opInfo structure.\n @param userOp  - The user operation.\n @param mUserOp - The memory user operation."},"id":1221,"implemented":true,"kind":"function","modifiers":[],"name":"_copyUserOpToMemory","nameLocation":"13663:19:1","nodeType":"FunctionDefinition","parameters":{"id":1115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1111,"mutability":"mutable","name":"userOp","nameLocation":"13721:6:1","nodeType":"VariableDeclaration","scope":1221,"src":"13692:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1110,"nodeType":"UserDefinedTypeName","pathNode":{"id":1109,"name":"PackedUserOperation","nameLocations":["13692:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"13692:19:1"},"referencedDeclaration":3748,"src":"13692:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1114,"mutability":"mutable","name":"mUserOp","nameLocation":"13757:7:1","nodeType":"VariableDeclaration","scope":1221,"src":"13737:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1113,"nodeType":"UserDefinedTypeName","pathNode":{"id":1112,"name":"MemoryUserOp","nameLocations":["13737:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"13737:12:1"},"referencedDeclaration":935,"src":"13737:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"src":"13682:88:1"},"returnParameters":{"id":1116,"nodeType":"ParameterList","parameters":[],"src":"13785:0:1"},"scope":2236,"src":"13654:1129:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1255,"nodeType":"Block","src":"15046:358:1","statements":[{"id":1254,"nodeType":"UncheckedBlock","src":"15056:342:1","statements":[{"assignments":[1231],"declarations":[{"constant":false,"id":1231,"mutability":"mutable","name":"requiredGas","nameLocation":"15088:11:1","nodeType":"VariableDeclaration","scope":1254,"src":"15080:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1230,"name":"uint256","nodeType":"ElementaryTypeName","src":"15080:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1246,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1232,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15102:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15110:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"15102:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1234,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15149:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1235,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15157:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"15149:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:67:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1237,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15188:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1238,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15196:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"15188:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:123:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1240,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15244:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1241,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15252:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"15244:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:173:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1243,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15294:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1244,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15302:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":928,"src":"15294:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:218:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15080:240:1"},{"expression":{"id":1252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1247,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1228,"src":"15335:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1248,"name":"requiredGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1231,"src":"15353:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1249,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15367:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1250,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15375:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"15367:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15353:34:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15335:52:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1253,"nodeType":"ExpressionStatement","src":"15335:52:1"}]}]},"documentation":{"id":1222,"nodeType":"StructuredDocumentation","src":"14789:132:1","text":" Get the required prefunded gas fee amount for an operation.\n @param mUserOp - The user operation in memory."},"id":1256,"implemented":true,"kind":"function","modifiers":[],"name":"_getRequiredPrefund","nameLocation":"14935:19:1","nodeType":"FunctionDefinition","parameters":{"id":1226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1225,"mutability":"mutable","name":"mUserOp","nameLocation":"14984:7:1","nodeType":"VariableDeclaration","scope":1256,"src":"14964:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1224,"nodeType":"UserDefinedTypeName","pathNode":{"id":1223,"name":"MemoryUserOp","nameLocations":["14964:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"14964:12:1"},"referencedDeclaration":935,"src":"14964:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"src":"14954:43:1"},"returnParameters":{"id":1229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1228,"mutability":"mutable","name":"requiredPrefund","nameLocation":"15029:15:1","nodeType":"VariableDeclaration","scope":1256,"src":"15021:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1227,"name":"uint256","nodeType":"ElementaryTypeName","src":"15021:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15020:25:1"},"scope":2236,"src":"14926:478:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1357,"nodeType":"Block","src":"15796:948:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1267,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"15810:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15819:6:1","memberName":"length","nodeType":"MemberAccess","src":"15810:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15829:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15810:20:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1356,"nodeType":"IfStatement","src":"15806:932:1","trueBody":{"id":1355,"nodeType":"Block","src":"15832:906:1","statements":[{"assignments":[1272],"declarations":[{"constant":false,"id":1272,"mutability":"mutable","name":"sender","nameLocation":"15854:6:1","nodeType":"VariableDeclaration","scope":1355,"src":"15846:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1271,"name":"address","nodeType":"ElementaryTypeName","src":"15846:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1276,"initialValue":{"expression":{"expression":{"id":1273,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"15863:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1274,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15870:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"15863:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1275,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15878:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"15863:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"15846:38:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1277,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"15902:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15909:4:1","memberName":"code","nodeType":"MemberAccess","src":"15902:11:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15914:6:1","memberName":"length","nodeType":"MemberAccess","src":"15902:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15924:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15902:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1287,"nodeType":"IfStatement","src":"15898:104:1","trueBody":{"errorCall":{"arguments":[{"id":1283,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"15959:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"414131302073656e64657220616c726561647920636f6e7374727563746564","id":1284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15968:33:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79","typeString":"literal_string \"AA10 sender already constructed\""},"value":"AA10 sender already constructed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79","typeString":"literal_string \"AA10 sender already constructed\""}],"id":1282,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"15950:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15950:52:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1286,"nodeType":"RevertStatement","src":"15943:59:1"}},{"assignments":[1289],"declarations":[{"constant":false,"id":1289,"mutability":"mutable","name":"sender1","nameLocation":"16024:7:1","nodeType":"VariableDeclaration","scope":1355,"src":"16016:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1288,"name":"address","nodeType":"ElementaryTypeName","src":"16016:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1299,"initialValue":{"arguments":[{"id":1297,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"16135:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1290,"name":"senderCreator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":183,"src":"16034:13:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_SenderCreator_$2553_$","typeString":"function () view returns (contract SenderCreator)"}},"id":1291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16034:15:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"id":1292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16050:12:1","memberName":"createSender","nodeType":"MemberAccess","referencedDeclaration":2552,"src":"16034:28:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) external returns (address)"}},"id":1296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"expression":{"expression":{"id":1293,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"16085:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1294,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16092:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"16085:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16100:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"16085:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"16034:100:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$returns$_t_address_$gas","typeString":"function (bytes memory) external returns (address)"}},"id":1298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16034:110:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16016:128:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1300,"name":"sender1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"16162:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16181:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16173:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1301,"name":"address","nodeType":"ElementaryTypeName","src":"16173:7:1","typeDescriptions":{}}},"id":1304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16173:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16162:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1311,"nodeType":"IfStatement","src":"16158:98:1","trueBody":{"errorCall":{"arguments":[{"id":1307,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"16217:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141313320696e6974436f6465206661696c6564206f72204f4f47","id":1308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16226:29:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73","typeString":"literal_string \"AA13 initCode failed or OOG\""},"value":"AA13 initCode failed or OOG"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73","typeString":"literal_string \"AA13 initCode failed or OOG\""}],"id":1306,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"16208:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16208:48:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1310,"nodeType":"RevertStatement","src":"16201:55:1"}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1312,"name":"sender1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"16274:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1313,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"16285:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16274:17:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1320,"nodeType":"IfStatement","src":"16270:99:1","trueBody":{"errorCall":{"arguments":[{"id":1316,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"16325:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141313420696e6974436f6465206d7573742072657475726e2073656e646572","id":1317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16334:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602","typeString":"literal_string \"AA14 initCode must return sender\""},"value":"AA14 initCode must return sender"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602","typeString":"literal_string \"AA14 initCode must return sender\""}],"id":1315,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"16316:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16316:53:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1319,"nodeType":"RevertStatement","src":"16309:60:1"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1321,"name":"sender1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"16387:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16395:4:1","memberName":"code","nodeType":"MemberAccess","src":"16387:12:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16400:6:1","memberName":"length","nodeType":"MemberAccess","src":"16387:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16410:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16387:24:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1331,"nodeType":"IfStatement","src":"16383:106:1","trueBody":{"errorCall":{"arguments":[{"id":1327,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"16445:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141313520696e6974436f6465206d757374206372656174652073656e646572","id":1328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16454:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6","typeString":"literal_string \"AA15 initCode must create sender\""},"value":"AA15 initCode must create sender"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6","typeString":"literal_string \"AA15 initCode must create sender\""}],"id":1326,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"16436:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16436:53:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1330,"nodeType":"RevertStatement","src":"16429:60:1"}},{"assignments":[1333],"declarations":[{"constant":false,"id":1333,"mutability":"mutable","name":"factory","nameLocation":"16511:7:1","nodeType":"VariableDeclaration","scope":1355,"src":"16503:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1332,"name":"address","nodeType":"ElementaryTypeName","src":"16503:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1344,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"id":1338,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"16537:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"3230","id":1340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16548:2:1","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"16537:14:1","startExpression":{"hexValue":"30","id":1339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16546:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":1337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16529:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":1336,"name":"bytes20","nodeType":"ElementaryTypeName","src":"16529:7:1","typeDescriptions":{}}},"id":1342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16529:23:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":1335,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16521:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1334,"name":"address","nodeType":"ElementaryTypeName","src":"16521:7:1","typeDescriptions":{}}},"id":1343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16521:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16503:50:1"},{"eventCall":{"arguments":[{"expression":{"id":1346,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"16605:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16612:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"16605:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1348,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"16640:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1349,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"16664:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":1350,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"16689:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1351,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16696:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"16689:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16704:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"16689:24:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1345,"name":"AccountDeployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3419,"src":"16572:15:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address,address)"}},"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16572:155:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1354,"nodeType":"EmitStatement","src":"16567:160:1"}]}}]},"documentation":{"id":1257,"nodeType":"StructuredDocumentation","src":"15410:243:1","text":" Create sender smart contract account if init code is provided.\n @param opIndex  - The operation index.\n @param opInfo   - The operation info.\n @param initCode - The init code for the smart contract account."},"id":1358,"implemented":true,"kind":"function","modifiers":[],"name":"_createSenderIfNeeded","nameLocation":"15667:21:1","nodeType":"FunctionDefinition","parameters":{"id":1265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1259,"mutability":"mutable","name":"opIndex","nameLocation":"15706:7:1","nodeType":"VariableDeclaration","scope":1358,"src":"15698:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1258,"name":"uint256","nodeType":"ElementaryTypeName","src":"15698:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1262,"mutability":"mutable","name":"opInfo","nameLocation":"15741:6:1","nodeType":"VariableDeclaration","scope":1358,"src":"15723:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1261,"nodeType":"UserDefinedTypeName","pathNode":{"id":1260,"name":"UserOpInfo","nameLocations":["15723:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"15723:10:1"},"referencedDeclaration":947,"src":"15723:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1264,"mutability":"mutable","name":"initCode","nameLocation":"15772:8:1","nodeType":"VariableDeclaration","scope":1358,"src":"15757:23:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1263,"name":"bytes","nodeType":"ElementaryTypeName","src":"15757:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15688:98:1"},"returnParameters":{"id":1266,"nodeType":"ParameterList","parameters":[],"src":"15796:0:1"},"scope":2236,"src":"15658:1086:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[3551],"body":{"id":1376,"nodeType":"Block","src":"16840:116:1","statements":[{"assignments":[1365],"declarations":[{"constant":false,"id":1365,"mutability":"mutable","name":"sender","nameLocation":"16858:6:1","nodeType":"VariableDeclaration","scope":1376,"src":"16850:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1364,"name":"address","nodeType":"ElementaryTypeName","src":"16850:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1371,"initialValue":{"arguments":[{"id":1369,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1361,"src":"16896:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1366,"name":"senderCreator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":183,"src":"16867:13:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_SenderCreator_$2553_$","typeString":"function () view returns (contract SenderCreator)"}},"id":1367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16867:15:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"id":1368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16883:12:1","memberName":"createSender","nodeType":"MemberAccess","referencedDeclaration":2552,"src":"16867:28:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) external returns (address)"}},"id":1370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16867:38:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16850:55:1"},{"errorCall":{"arguments":[{"id":1373,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1365,"src":"16942:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1372,"name":"SenderAddressResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3487,"src":"16922:19:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16922:27:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1375,"nodeType":"RevertStatement","src":"16915:34:1"}]},"documentation":{"id":1359,"nodeType":"StructuredDocumentation","src":"16750:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"9b249f69","id":1377,"implemented":true,"kind":"function","modifiers":[],"name":"getSenderAddress","nameLocation":"16791:16:1","nodeType":"FunctionDefinition","parameters":{"id":1362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1361,"mutability":"mutable","name":"initCode","nameLocation":"16823:8:1","nodeType":"VariableDeclaration","scope":1377,"src":"16808:23:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1360,"name":"bytes","nodeType":"ElementaryTypeName","src":"16808:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16807:25:1"},"returnParameters":{"id":1363,"nodeType":"ParameterList","parameters":[],"src":"16840:0:1"},"scope":2236,"src":"16782:174:1","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1518,"nodeType":"Block","src":"17678:1337:1","statements":[{"id":1517,"nodeType":"UncheckedBlock","src":"17688:1321:1","statements":[{"assignments":[1397],"declarations":[{"constant":false,"id":1397,"mutability":"mutable","name":"mUserOp","nameLocation":"17732:7:1","nodeType":"VariableDeclaration","scope":1517,"src":"17712:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1396,"nodeType":"UserDefinedTypeName","pathNode":{"id":1395,"name":"MemoryUserOp","nameLocations":["17712:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"17712:12:1"},"referencedDeclaration":935,"src":"17712:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1400,"initialValue":{"expression":{"id":1398,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"17742:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17749:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"17742:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"17712:44:1"},{"assignments":[1402],"declarations":[{"constant":false,"id":1402,"mutability":"mutable","name":"sender","nameLocation":"17778:6:1","nodeType":"VariableDeclaration","scope":1517,"src":"17770:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1401,"name":"address","nodeType":"ElementaryTypeName","src":"17770:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1405,"initialValue":{"expression":{"id":1403,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"17787:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1404,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17795:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"17787:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17770:31:1"},{"expression":{"arguments":[{"id":1407,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"17837:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1408,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"17846:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"expression":{"id":1409,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"17854:2:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17857:8:1","memberName":"initCode","nodeType":"MemberAccess","referencedDeclaration":3735,"src":"17854:11:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":1406,"name":"_createSenderIfNeeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1358,"src":"17815:21:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (uint256,struct EntryPoint.UserOpInfo memory,bytes calldata)"}},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17815:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1412,"nodeType":"ExpressionStatement","src":"17815:51:1"},{"assignments":[1414],"declarations":[{"constant":false,"id":1414,"mutability":"mutable","name":"paymaster","nameLocation":"17888:9:1","nodeType":"VariableDeclaration","scope":1517,"src":"17880:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1413,"name":"address","nodeType":"ElementaryTypeName","src":"17880:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1417,"initialValue":{"expression":{"id":1415,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"17900:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1416,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17908:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"17900:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17880:37:1"},{"assignments":[1419],"declarations":[{"constant":false,"id":1419,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"17939:19:1","nodeType":"VariableDeclaration","scope":1517,"src":"17931:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1418,"name":"uint256","nodeType":"ElementaryTypeName","src":"17931:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1421,"initialValue":{"hexValue":"30","id":1420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17961:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17931:31:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1422,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"17980:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18001:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17993:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1423,"name":"address","nodeType":"ElementaryTypeName","src":"17993:7:1","typeDescriptions":{}}},"id":1426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17993:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"17980:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1446,"nodeType":"IfStatement","src":"17976:222:1","trueBody":{"id":1445,"nodeType":"Block","src":"18005:193:1","statements":[{"assignments":[1429],"declarations":[{"constant":false,"id":1429,"mutability":"mutable","name":"bal","nameLocation":"18031:3:1","nodeType":"VariableDeclaration","scope":1445,"src":"18023:11:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1428,"name":"uint256","nodeType":"ElementaryTypeName","src":"18023:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1433,"initialValue":{"arguments":[{"id":1431,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1402,"src":"18047:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1430,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2624,"src":"18037:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18037:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18023:31:1"},{"expression":{"id":1443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1434,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1419,"src":"18072:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1435,"name":"bal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1429,"src":"18094:3:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1436,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18100:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18094:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1439,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18162:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1440,"name":"bal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1429,"src":"18180:3:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18162:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"18094:89:1","trueExpression":{"hexValue":"30","id":1438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18138:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18072:111:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1444,"nodeType":"ExpressionStatement","src":"18072:111:1"}]}},{"clauses":[{"block":{"id":1465,"nodeType":"Block","src":"18418:65:1","statements":[{"expression":{"id":1463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1461,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1393,"src":"18436:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1462,"name":"_validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"18453:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18436:32:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1464,"nodeType":"ExpressionStatement","src":"18436:32:1"}]},"errorName":"","id":1466,"nodeType":"TryCatchClause","parameters":{"id":1460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1459,"mutability":"mutable","name":"_validationData","nameLocation":"18401:15:1","nodeType":"VariableDeclaration","scope":1466,"src":"18393:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1458,"name":"uint256","nodeType":"ElementaryTypeName","src":"18393:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18392:25:1"},"src":"18384:99:1"},{"block":{"id":1476,"nodeType":"Block","src":"18490:127:1","statements":[{"errorCall":{"arguments":[{"id":1468,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"18534:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413233207265766572746564","id":1469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18543:15:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477","typeString":"literal_string \"AA23 reverted\""},"value":"AA23 reverted"},{"arguments":[{"id":1472,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"18579:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1470,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"18560:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18565:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"18560:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":1473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18560:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477","typeString":"literal_string \"AA23 reverted\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1467,"name":"FailedOpWithRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3474,"src":"18515:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory,bytes memory) pure returns (error)"}},"id":1474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18515:87:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1475,"nodeType":"RevertStatement","src":"18508:94:1"}]},"errorName":"","id":1477,"nodeType":"TryCatchClause","src":"18484:133:1"}],"externalCall":{"arguments":[{"id":1453,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"18328:2:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"expression":{"id":1454,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"18332:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1455,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18339:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"18332:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1456,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1419,"src":"18351:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1448,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1402,"src":"18240:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1447,"name":"IAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3335,"src":"18231:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccount_$3335_$","typeString":"type(contract IAccount)"}},"id":1449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18231:16:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccount_$3335","typeString":"contract IAccount"}},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18248:14:1","memberName":"validateUserOp","nodeType":"MemberAccess","referencedDeclaration":3334,"src":"18231:31:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (uint256)"}},"id":1452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"id":1451,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"18289:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"18231:96:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_uint256_$gas","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (uint256)"}},"id":1457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18231:140:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1478,"nodeType":"TryStatement","src":"18211:406:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1479,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"18634:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18655:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18647:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1480,"name":"address","nodeType":"ElementaryTypeName","src":"18647:7:1","typeDescriptions":{}}},"id":1483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18647:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18634:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1516,"nodeType":"IfStatement","src":"18630:369:1","trueBody":{"id":1515,"nodeType":"Block","src":"18659:340:1","statements":[{"assignments":[1487],"declarations":[{"constant":false,"id":1487,"mutability":"mutable","name":"senderInfo","nameLocation":"18697:10:1","nodeType":"VariableDeclaration","scope":1515,"src":"18677:30:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":1486,"nodeType":"UserDefinedTypeName","pathNode":{"id":1485,"name":"DepositInfo","nameLocations":["18677:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"18677:11:1"},"referencedDeclaration":3673,"src":"18677:11:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":1491,"initialValue":{"baseExpression":{"id":1488,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"18710:8:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":1490,"indexExpression":{"id":1489,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1402,"src":"18719:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18710:16:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"18677:49:1"},{"assignments":[1493],"declarations":[{"constant":false,"id":1493,"mutability":"mutable","name":"deposit","nameLocation":"18752:7:1","nodeType":"VariableDeclaration","scope":1515,"src":"18744:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1492,"name":"uint256","nodeType":"ElementaryTypeName","src":"18744:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1496,"initialValue":{"expression":{"id":1494,"name":"senderInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"18762:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1495,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18773:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"18762:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18744:36:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1497,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18802:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1498,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1493,"src":"18820:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18802:25:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1506,"nodeType":"IfStatement","src":"18798:123:1","trueBody":{"id":1505,"nodeType":"Block","src":"18829:92:1","statements":[{"errorCall":{"arguments":[{"id":1501,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"18867:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413231206469646e2774207061792070726566756e64","id":1502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18876:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d","typeString":"literal_string \"AA21 didn't pay prefund\""},"value":"AA21 didn't pay prefund"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d","typeString":"literal_string \"AA21 didn't pay prefund\""}],"id":1500,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"18858:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18858:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1504,"nodeType":"RevertStatement","src":"18851:51:1"}]}},{"expression":{"id":1513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1507,"name":"senderInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"18938:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1509,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18949:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"18938:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1510,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1493,"src":"18959:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1511,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18969:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18959:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18938:46:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1514,"nodeType":"ExpressionStatement","src":"18938:46:1"}]}}]}]},"documentation":{"id":1378,"nodeType":"StructuredDocumentation","src":"16962:414:1","text":" Call account.validateUserOp.\n Revert (with FailedOp) in case validateUserOp reverts, or account didn't send required prefund.\n Decrement account's deposit if needed.\n @param opIndex         - The operation index.\n @param op              - The user operation.\n @param opInfo          - The operation info.\n @param requiredPrefund - The required prefund amount."},"id":1519,"implemented":true,"kind":"function","modifiers":[],"name":"_validateAccountPrepayment","nameLocation":"17390:26:1","nodeType":"FunctionDefinition","parameters":{"id":1391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1380,"mutability":"mutable","name":"opIndex","nameLocation":"17434:7:1","nodeType":"VariableDeclaration","scope":1519,"src":"17426:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1379,"name":"uint256","nodeType":"ElementaryTypeName","src":"17426:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1383,"mutability":"mutable","name":"op","nameLocation":"17480:2:1","nodeType":"VariableDeclaration","scope":1519,"src":"17451:31:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1382,"nodeType":"UserDefinedTypeName","pathNode":{"id":1381,"name":"PackedUserOperation","nameLocations":["17451:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"17451:19:1"},"referencedDeclaration":3748,"src":"17451:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1386,"mutability":"mutable","name":"opInfo","nameLocation":"17510:6:1","nodeType":"VariableDeclaration","scope":1519,"src":"17492:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1385,"nodeType":"UserDefinedTypeName","pathNode":{"id":1384,"name":"UserOpInfo","nameLocations":["17492:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"17492:10:1"},"referencedDeclaration":947,"src":"17492:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1388,"mutability":"mutable","name":"requiredPrefund","nameLocation":"17534:15:1","nodeType":"VariableDeclaration","scope":1519,"src":"17526:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1387,"name":"uint256","nodeType":"ElementaryTypeName","src":"17526:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1390,"mutability":"mutable","name":"verificationGasLimit","nameLocation":"17567:20:1","nodeType":"VariableDeclaration","scope":1519,"src":"17559:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1389,"name":"uint256","nodeType":"ElementaryTypeName","src":"17559:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17416:177:1"},"returnParameters":{"id":1394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1393,"mutability":"mutable","name":"validationData","nameLocation":"17649:14:1","nodeType":"VariableDeclaration","scope":1519,"src":"17641:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1392,"name":"uint256","nodeType":"ElementaryTypeName","src":"17641:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17627:46:1"},"scope":2236,"src":"17381:1634:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1640,"nodeType":"Block","src":"19821:1282:1","statements":[{"id":1639,"nodeType":"UncheckedBlock","src":"19831:1266:1","statements":[{"assignments":[1538],"declarations":[{"constant":false,"id":1538,"mutability":"mutable","name":"preGas","nameLocation":"19863:6:1","nodeType":"VariableDeclaration","scope":1639,"src":"19855:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1537,"name":"uint256","nodeType":"ElementaryTypeName","src":"19855:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1541,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1539,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"19872:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19872:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19855:26:1"},{"assignments":[1544],"declarations":[{"constant":false,"id":1544,"mutability":"mutable","name":"mUserOp","nameLocation":"19915:7:1","nodeType":"VariableDeclaration","scope":1639,"src":"19895:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1543,"nodeType":"UserDefinedTypeName","pathNode":{"id":1542,"name":"MemoryUserOp","nameLocations":["19895:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"19895:12:1"},"referencedDeclaration":935,"src":"19895:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1547,"initialValue":{"expression":{"id":1545,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1528,"src":"19925:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19932:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"19925:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"19895:44:1"},{"assignments":[1549],"declarations":[{"constant":false,"id":1549,"mutability":"mutable","name":"paymaster","nameLocation":"19961:9:1","nodeType":"VariableDeclaration","scope":1639,"src":"19953:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1548,"name":"address","nodeType":"ElementaryTypeName","src":"19953:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1552,"initialValue":{"expression":{"id":1550,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1544,"src":"19973:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1551,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19981:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"19973:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19953:37:1"},{"assignments":[1555],"declarations":[{"constant":false,"id":1555,"mutability":"mutable","name":"paymasterInfo","nameLocation":"20024:13:1","nodeType":"VariableDeclaration","scope":1639,"src":"20004:33:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":1554,"nodeType":"UserDefinedTypeName","pathNode":{"id":1553,"name":"DepositInfo","nameLocations":["20004:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"20004:11:1"},"referencedDeclaration":3673,"src":"20004:11:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":1559,"initialValue":{"baseExpression":{"id":1556,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"20040:8:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":1558,"indexExpression":{"id":1557,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1549,"src":"20049:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20040:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"20004:55:1"},{"assignments":[1561],"declarations":[{"constant":false,"id":1561,"mutability":"mutable","name":"deposit","nameLocation":"20081:7:1","nodeType":"VariableDeclaration","scope":1639,"src":"20073:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1560,"name":"uint256","nodeType":"ElementaryTypeName","src":"20073:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1564,"initialValue":{"expression":{"id":1562,"name":"paymasterInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1555,"src":"20091:13:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1563,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20105:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"20091:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20073:39:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1565,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"20130:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1566,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"20140:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20130:25:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1574,"nodeType":"IfStatement","src":"20126:122:1","trueBody":{"id":1573,"nodeType":"Block","src":"20157:91:1","statements":[{"errorCall":{"arguments":[{"id":1569,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1522,"src":"20191:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413331207061796d6173746572206465706f73697420746f6f206c6f77","id":1570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20200:32:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f","typeString":"literal_string \"AA31 paymaster deposit too low\""},"value":"AA31 paymaster deposit too low"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f","typeString":"literal_string \"AA31 paymaster deposit too low\""}],"id":1568,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"20182:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20182:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1572,"nodeType":"RevertStatement","src":"20175:58:1"}]}},{"expression":{"id":1581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1575,"name":"paymasterInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1555,"src":"20261:13:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"20275:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"20261:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1578,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"20285:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1579,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"20295:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20285:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20261:49:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1582,"nodeType":"ExpressionStatement","src":"20261:49:1"},{"assignments":[1584],"declarations":[{"constant":false,"id":1584,"mutability":"mutable","name":"pmVerificationGasLimit","nameLocation":"20332:22:1","nodeType":"VariableDeclaration","scope":1639,"src":"20324:30:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1583,"name":"uint256","nodeType":"ElementaryTypeName","src":"20324:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1587,"initialValue":{"expression":{"id":1585,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1544,"src":"20357:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1586,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20365:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"20357:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20324:70:1"},{"clauses":[{"block":{"id":1612,"nodeType":"Block","src":"20690:101:1","statements":[{"expression":{"id":1606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1604,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1533,"src":"20708:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1605,"name":"_context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1600,"src":"20718:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"20708:18:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1607,"nodeType":"ExpressionStatement","src":"20708:18:1"},{"expression":{"id":1610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1608,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"20744:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1609,"name":"_validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"20761:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20744:32:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1611,"nodeType":"ExpressionStatement","src":"20744:32:1"}]},"errorName":"","id":1613,"nodeType":"TryCatchClause","parameters":{"id":1603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1600,"mutability":"mutable","name":"_context","nameLocation":"20655:8:1","nodeType":"VariableDeclaration","scope":1613,"src":"20642:21:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1599,"name":"bytes","nodeType":"ElementaryTypeName","src":"20642:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1602,"mutability":"mutable","name":"_validationData","nameLocation":"20673:15:1","nodeType":"VariableDeclaration","scope":1613,"src":"20665:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1601,"name":"uint256","nodeType":"ElementaryTypeName","src":"20665:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20641:48:1"},"src":"20633:158:1"},{"block":{"id":1623,"nodeType":"Block","src":"20798:127:1","statements":[{"errorCall":{"arguments":[{"id":1615,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1522,"src":"20842:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413333207265766572746564","id":1616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20851:15:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7","typeString":"literal_string \"AA33 reverted\""},"value":"AA33 reverted"},{"arguments":[{"id":1619,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"20887:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1617,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"20868:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20873:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"20868:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":1620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20868:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7","typeString":"literal_string \"AA33 reverted\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1614,"name":"FailedOpWithRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3474,"src":"20823:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory,bytes memory) pure returns (error)"}},"id":1621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20823:87:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1622,"nodeType":"RevertStatement","src":"20816:94:1"}]},"errorName":"","id":1624,"nodeType":"TryCatchClause","src":"20792:133:1"}],"externalCall":{"arguments":[{"id":1594,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1525,"src":"20524:2:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"expression":{"id":1595,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1528,"src":"20548:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1596,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20555:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"20548:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1597,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"20587:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1589,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1549,"src":"20439:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1588,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"20428:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":1590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20428:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPaymaster_$3622","typeString":"contract IPaymaster"}},"id":1591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20450:23:1","memberName":"validatePaymasterUserOp","nodeType":"MemberAccess","referencedDeclaration":3608,"src":"20428:45:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (bytes memory,uint256)"}},"id":1593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"id":1592,"name":"pmVerificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1584,"src":"20479:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"20428:74:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_bytes_memory_ptr_$_t_uint256_$gas","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (bytes memory,uint256)"}},"id":1598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20428:192:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"id":1625,"nodeType":"TryStatement","src":"20408:517:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1626,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1538,"src":"20942:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1627,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"20951:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20951:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20942:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1630,"name":"pmVerificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1584,"src":"20963:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20942:43:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1638,"nodeType":"IfStatement","src":"20938:149:1","trueBody":{"id":1637,"nodeType":"Block","src":"20987:100:1","statements":[{"errorCall":{"arguments":[{"id":1633,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1522,"src":"21021:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413336206f766572207061796d6173746572566572696669636174696f6e4761734c696d6974","id":1634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21030:41:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336","typeString":"literal_string \"AA36 over paymasterVerificationGasLimit\""},"value":"AA36 over paymasterVerificationGasLimit"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336","typeString":"literal_string \"AA36 over paymasterVerificationGasLimit\""}],"id":1632,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"21012:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21012:60:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1636,"nodeType":"RevertStatement","src":"21005:67:1"}]}}]}]},"documentation":{"id":1520,"nodeType":"StructuredDocumentation","src":"19021:554:1","text":" In case the request has a paymaster:\n  - Validate paymaster has enough deposit.\n  - Call paymaster.validatePaymasterUserOp.\n  - Revert with proper FailedOp in case paymaster reverts.\n  - Decrement paymaster's deposit.\n @param opIndex                            - The operation index.\n @param op                                 - The user operation.\n @param opInfo                             - The operation info.\n @param requiredPreFund                    - The required prefund amount."},"id":1641,"implemented":true,"kind":"function","modifiers":[],"name":"_validatePaymasterPrepayment","nameLocation":"19589:28:1","nodeType":"FunctionDefinition","parameters":{"id":1531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1522,"mutability":"mutable","name":"opIndex","nameLocation":"19635:7:1","nodeType":"VariableDeclaration","scope":1641,"src":"19627:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1521,"name":"uint256","nodeType":"ElementaryTypeName","src":"19627:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1525,"mutability":"mutable","name":"op","nameLocation":"19681:2:1","nodeType":"VariableDeclaration","scope":1641,"src":"19652:31:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1524,"nodeType":"UserDefinedTypeName","pathNode":{"id":1523,"name":"PackedUserOperation","nameLocations":["19652:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"19652:19:1"},"referencedDeclaration":3748,"src":"19652:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1528,"mutability":"mutable","name":"opInfo","nameLocation":"19711:6:1","nodeType":"VariableDeclaration","scope":1641,"src":"19693:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1527,"nodeType":"UserDefinedTypeName","pathNode":{"id":1526,"name":"UserOpInfo","nameLocations":["19693:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"19693:10:1"},"referencedDeclaration":947,"src":"19693:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1530,"mutability":"mutable","name":"requiredPreFund","nameLocation":"19735:15:1","nodeType":"VariableDeclaration","scope":1641,"src":"19727:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1529,"name":"uint256","nodeType":"ElementaryTypeName","src":"19727:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19617:139:1"},"returnParameters":{"id":1536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1533,"mutability":"mutable","name":"context","nameLocation":"19788:7:1","nodeType":"VariableDeclaration","scope":1641,"src":"19775:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1532,"name":"bytes","nodeType":"ElementaryTypeName","src":"19775:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1535,"mutability":"mutable","name":"validationData","nameLocation":"19805:14:1","nodeType":"VariableDeclaration","scope":1641,"src":"19797:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1534,"name":"uint256","nodeType":"ElementaryTypeName","src":"19797:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19774:46:1"},"scope":2236,"src":"19580:1523:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1711,"nodeType":"Block","src":"21682:939:1","statements":[{"assignments":[1654,1656],"declarations":[{"constant":false,"id":1654,"mutability":"mutable","name":"aggregator","nameLocation":"21701:10:1","nodeType":"VariableDeclaration","scope":1711,"src":"21693:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1653,"name":"address","nodeType":"ElementaryTypeName","src":"21693:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1656,"mutability":"mutable","name":"outOfTimeRange","nameLocation":"21718:14:1","nodeType":"VariableDeclaration","scope":1711,"src":"21713:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1655,"name":"bool","nodeType":"ElementaryTypeName","src":"21713:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1660,"initialValue":{"arguments":[{"id":1658,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"21768:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1657,"name":"_getValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1761,"src":"21736:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$_t_bool_$","typeString":"function (uint256) view returns (address,bool)"}},"id":1659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21736:56:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"nodeType":"VariableDeclarationStatement","src":"21692:100:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1661,"name":"expectedAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1650,"src":"21806:18:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1662,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1654,"src":"21828:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21806:32:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1670,"nodeType":"IfStatement","src":"21802:111:1","trueBody":{"id":1669,"nodeType":"Block","src":"21840:73:1","statements":[{"errorCall":{"arguments":[{"id":1665,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"21870:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413234207369676e6174757265206572726f72","id":1666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21879:22:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e","typeString":"literal_string \"AA24 signature error\""},"value":"AA24 signature error"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e","typeString":"literal_string \"AA24 signature error\""}],"id":1664,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"21861:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21861:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1668,"nodeType":"RevertStatement","src":"21854:48:1"}]}},{"condition":{"id":1671,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1656,"src":"21926:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1678,"nodeType":"IfStatement","src":"21922:96:1","trueBody":{"id":1677,"nodeType":"Block","src":"21942:76:1","statements":[{"errorCall":{"arguments":[{"id":1673,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"21972:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"414132322065787069726564206f72206e6f7420647565","id":1674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21981:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766","typeString":"literal_string \"AA22 expired or not due\""},"value":"AA22 expired or not due"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766","typeString":"literal_string \"AA22 expired or not due\""}],"id":1672,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"21963:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21963:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1676,"nodeType":"RevertStatement","src":"21956:51:1"}]}},{"assignments":[1680],"declarations":[{"constant":false,"id":1680,"mutability":"mutable","name":"pmAggregator","nameLocation":"22265:12:1","nodeType":"VariableDeclaration","scope":1711,"src":"22257:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1679,"name":"address","nodeType":"ElementaryTypeName","src":"22257:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1681,"nodeType":"VariableDeclarationStatement","src":"22257:20:1"},{"expression":{"id":1688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":1682,"name":"pmAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1680,"src":"22288:12:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1683,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1656,"src":"22302:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":1684,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"22287:30:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1686,"name":"paymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1648,"src":"22352:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1685,"name":"_getValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1761,"src":"22320:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$_t_bool_$","typeString":"function (uint256) view returns (address,bool)"}},"id":1687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22320:65:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"src":"22287:98:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1689,"nodeType":"ExpressionStatement","src":"22287:98:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1690,"name":"pmAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1680,"src":"22399:12:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22423:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22415:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1691,"name":"address","nodeType":"ElementaryTypeName","src":"22415:7:1","typeDescriptions":{}}},"id":1694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22415:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22399:26:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1702,"nodeType":"IfStatement","src":"22395:105:1","trueBody":{"id":1701,"nodeType":"Block","src":"22427:73:1","statements":[{"errorCall":{"arguments":[{"id":1697,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"22457:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413334207369676e6174757265206572726f72","id":1698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22466:22:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871","typeString":"literal_string \"AA34 signature error\""},"value":"AA34 signature error"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871","typeString":"literal_string \"AA34 signature error\""}],"id":1696,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"22448:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22448:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1700,"nodeType":"RevertStatement","src":"22441:48:1"}]}},{"condition":{"id":1703,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1656,"src":"22513:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1710,"nodeType":"IfStatement","src":"22509:106:1","trueBody":{"id":1709,"nodeType":"Block","src":"22529:86:1","statements":[{"errorCall":{"arguments":[{"id":1705,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"22559:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413332207061796d61737465722065787069726564206f72206e6f7420647565","id":1706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22568:35:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b","typeString":"literal_string \"AA32 paymaster expired or not due\""},"value":"AA32 paymaster expired or not due"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b","typeString":"literal_string \"AA32 paymaster expired or not due\""}],"id":1704,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"22550:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22550:54:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1708,"nodeType":"RevertStatement","src":"22543:61:1"}]}}]},"documentation":{"id":1642,"nodeType":"StructuredDocumentation","src":"21109:362:1","text":" Revert if either account validationData or paymaster validationData is expired.\n @param opIndex                 - The operation index.\n @param validationData          - The account validationData.\n @param paymasterValidationData - The paymaster validationData.\n @param expectedAggregator      - The expected aggregator."},"id":1712,"implemented":true,"kind":"function","modifiers":[],"name":"_validateAccountAndPaymasterValidationData","nameLocation":"21485:42:1","nodeType":"FunctionDefinition","parameters":{"id":1651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1644,"mutability":"mutable","name":"opIndex","nameLocation":"21545:7:1","nodeType":"VariableDeclaration","scope":1712,"src":"21537:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1643,"name":"uint256","nodeType":"ElementaryTypeName","src":"21537:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1646,"mutability":"mutable","name":"validationData","nameLocation":"21570:14:1","nodeType":"VariableDeclaration","scope":1712,"src":"21562:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1645,"name":"uint256","nodeType":"ElementaryTypeName","src":"21562:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1648,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"21602:23:1","nodeType":"VariableDeclaration","scope":1712,"src":"21594:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1647,"name":"uint256","nodeType":"ElementaryTypeName","src":"21594:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1650,"mutability":"mutable","name":"expectedAggregator","nameLocation":"21643:18:1","nodeType":"VariableDeclaration","scope":1712,"src":"21635:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1649,"name":"address","nodeType":"ElementaryTypeName","src":"21635:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"21527:140:1"},"returnParameters":{"id":1652,"nodeType":"ParameterList","parameters":[],"src":"21682:0:1"},"scope":2236,"src":"21476:1145:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1760,"nodeType":"Block","src":"23081:356:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1722,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1715,"src":"23095:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23113:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23095:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1733,"nodeType":"IfStatement","src":"23091:76:1","trueBody":{"id":1732,"nodeType":"Block","src":"23116:51:1","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":1727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23146:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23138:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1725,"name":"address","nodeType":"ElementaryTypeName","src":"23138:7:1","typeDescriptions":{}}},"id":1728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23138:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"66616c7365","id":1729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"23150:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"id":1730,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23137:19:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"functionReturnParameters":1721,"id":1731,"nodeType":"Return","src":"23130:26:1"}]}},{"assignments":[1736],"declarations":[{"constant":false,"id":1736,"mutability":"mutable","name":"data","nameLocation":"23198:4:1","nodeType":"VariableDeclaration","scope":1760,"src":"23176:26:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":1735,"nodeType":"UserDefinedTypeName","pathNode":{"id":1734,"name":"ValidationData","nameLocations":["23176:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":2252,"src":"23176:14:1"},"referencedDeclaration":2252,"src":"23176:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"id":1740,"initialValue":{"arguments":[{"id":1738,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1715,"src":"23226:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1737,"name":"_parseValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2312,"src":"23205:20:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_struct$_ValidationData_$2252_memory_ptr_$","typeString":"function (uint256) pure returns (struct ValidationData memory)"}},"id":1739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23205:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"nodeType":"VariableDeclarationStatement","src":"23176:65:1"},{"expression":{"id":1753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1741,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1720,"src":"23305:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1742,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"23322:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23328:9:1","memberName":"timestamp","nodeType":"MemberAccess","src":"23322:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":1744,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1736,"src":"23340:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":1745,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23345:10:1","memberName":"validUntil","nodeType":"MemberAccess","referencedDeclaration":2251,"src":"23340:15:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23322:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1747,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"23359:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23365:9:1","memberName":"timestamp","nodeType":"MemberAccess","src":"23359:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1749,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1736,"src":"23377:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":1750,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23382:10:1","memberName":"validAfter","nodeType":"MemberAccess","referencedDeclaration":2249,"src":"23377:15:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23359:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23322:70:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23305:87:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1754,"nodeType":"ExpressionStatement","src":"23305:87:1"},{"expression":{"id":1758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1755,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"23402:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1756,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1736,"src":"23415:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":1757,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23420:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":2247,"src":"23415:15:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23402:28:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1759,"nodeType":"ExpressionStatement","src":"23402:28:1"}]},"documentation":{"id":1713,"nodeType":"StructuredDocumentation","src":"22627:319:1","text":" Parse validationData into its components.\n @param validationData - The packed validation data (sigFailed, validAfter, validUntil).\n @return aggregator the aggregator of the validationData\n @return outOfTimeRange true if current time is outside the time range of this validationData."},"id":1761,"implemented":true,"kind":"function","modifiers":[],"name":"_getValidationData","nameLocation":"22960:18:1","nodeType":"FunctionDefinition","parameters":{"id":1716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1715,"mutability":"mutable","name":"validationData","nameLocation":"22996:14:1","nodeType":"VariableDeclaration","scope":1761,"src":"22988:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1714,"name":"uint256","nodeType":"ElementaryTypeName","src":"22988:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22978:38:1"},"returnParameters":{"id":1721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1718,"mutability":"mutable","name":"aggregator","nameLocation":"23048:10:1","nodeType":"VariableDeclaration","scope":1761,"src":"23040:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1717,"name":"address","nodeType":"ElementaryTypeName","src":"23040:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1720,"mutability":"mutable","name":"outOfTimeRange","nameLocation":"23065:14:1","nodeType":"VariableDeclaration","scope":1761,"src":"23060:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1719,"name":"bool","nodeType":"ElementaryTypeName","src":"23060:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23039:41:1"},"scope":2236,"src":"22951:486:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1933,"nodeType":"Block","src":"24042:1916:1","statements":[{"assignments":[1778],"declarations":[{"constant":false,"id":1778,"mutability":"mutable","name":"preGas","nameLocation":"24060:6:1","nodeType":"VariableDeclaration","scope":1933,"src":"24052:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1777,"name":"uint256","nodeType":"ElementaryTypeName","src":"24052:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1781,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1779,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"24069:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24069:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24052:26:1"},{"assignments":[1784],"declarations":[{"constant":false,"id":1784,"mutability":"mutable","name":"mUserOp","nameLocation":"24108:7:1","nodeType":"VariableDeclaration","scope":1933,"src":"24088:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1783,"nodeType":"UserDefinedTypeName","pathNode":{"id":1782,"name":"MemoryUserOp","nameLocations":["24088:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"24088:12:1"},"referencedDeclaration":935,"src":"24088:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1787,"initialValue":{"expression":{"id":1785,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"24118:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1786,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24128:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"24118:17:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"24088:47:1"},{"expression":{"arguments":[{"id":1789,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"24165:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":1790,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24173:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}],"id":1788,"name":"_copyUserOpToMemory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1221,"src":"24145:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_MemoryUserOp_$935_memory_ptr_$returns$__$","typeString":"function (struct PackedUserOperation calldata,struct EntryPoint.MemoryUserOp memory) pure"}},"id":1791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24145:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1792,"nodeType":"ExpressionStatement","src":"24145:36:1"},{"expression":{"id":1799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1793,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"24191:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1795,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"24201:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"24191:20:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1797,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"24228:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":1796,"name":"getUserOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"24214:13:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (struct PackedUserOperation calldata) view returns (bytes32)"}},"id":1798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24214:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"24191:44:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1800,"nodeType":"ExpressionStatement","src":"24191:44:1"},{"assignments":[1802],"declarations":[{"constant":false,"id":1802,"mutability":"mutable","name":"verificationGasLimit","nameLocation":"24407:20:1","nodeType":"VariableDeclaration","scope":1933,"src":"24399:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1801,"name":"uint256","nodeType":"ElementaryTypeName","src":"24399:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1805,"initialValue":{"expression":{"id":1803,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24430:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24438:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"24430:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24399:59:1"},{"assignments":[1807],"declarations":[{"constant":false,"id":1807,"mutability":"mutable","name":"maxGasValues","nameLocation":"24476:12:1","nodeType":"VariableDeclaration","scope":1933,"src":"24468:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1806,"name":"uint256","nodeType":"ElementaryTypeName","src":"24468:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1827,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1808,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24491:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1809,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24499:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":928,"src":"24491:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"id":1810,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1802,"src":"24532:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:61:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1812,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24567:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1813,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24575:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"24567:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:96:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1815,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24602:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1816,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24610:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"24602:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:148:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1818,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24654:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1819,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24662:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"24654:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:194:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1821,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24700:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1822,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24708:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"24700:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:229:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1824,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24735:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1825,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24743:20:1","memberName":"maxPriorityFeePerGas","nodeType":"MemberAccess","referencedDeclaration":934,"src":"24735:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:272:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24468:295:1"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1829,"name":"maxGasValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1807,"src":"24781:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":1832,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24802:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":1831,"name":"uint120","nodeType":"ElementaryTypeName","src":"24802:7:1","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":1830,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"24797:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24797:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":1834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24811:3:1","memberName":"max","nodeType":"MemberAccess","src":"24797:17:1","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"24781:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"41413934206761732076616c756573206f766572666c6f77","id":1836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24816:26:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69","typeString":"literal_string \"AA94 gas values overflow\""},"value":"AA94 gas values overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69","typeString":"literal_string \"AA94 gas values overflow\""}],"id":1828,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24773:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24773:70:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1838,"nodeType":"ExpressionStatement","src":"24773:70:1"},{"assignments":[1840],"declarations":[{"constant":false,"id":1840,"mutability":"mutable","name":"requiredPreFund","nameLocation":"24862:15:1","nodeType":"VariableDeclaration","scope":1933,"src":"24854:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1839,"name":"uint256","nodeType":"ElementaryTypeName","src":"24854:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1844,"initialValue":{"arguments":[{"id":1842,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24900:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}],"id":1841,"name":"_getRequiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1256,"src":"24880:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_MemoryUserOp_$935_memory_ptr_$returns$_t_uint256_$","typeString":"function (struct EntryPoint.MemoryUserOp memory) pure returns (uint256)"}},"id":1843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24880:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24854:54:1"},{"expression":{"id":1853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1845,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"24918:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1847,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"24975:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1848,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"24996:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":1849,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25016:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":1850,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"25039:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1851,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1802,"src":"25068:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1846,"name":"_validateAccountPrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"24935:26:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory,uint256,uint256) returns (uint256)"}},"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24935:163:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24918:180:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1854,"nodeType":"ExpressionStatement","src":"24918:180:1"},{"condition":{"id":1861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"25113:55:1","subExpression":{"arguments":[{"expression":{"id":1856,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"25138:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1857,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25146:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"25138:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1858,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"25154:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1859,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25162:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"25154:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1855,"name":"_validateAndUpdateNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2505,"src":"25114:23:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) returns (bool)"}},"id":1860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25114:54:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1868,"nodeType":"IfStatement","src":"25109:140:1","trueBody":{"id":1867,"nodeType":"Block","src":"25170:79:1","statements":[{"errorCall":{"arguments":[{"id":1863,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"25200:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141323520696e76616c6964206163636f756e74206e6f6e6365","id":1864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25209:28:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5","typeString":"literal_string \"AA25 invalid account nonce\""},"value":"AA25 invalid account nonce"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5","typeString":"literal_string \"AA25 invalid account nonce\""}],"id":1862,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"25191:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25191:47:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1866,"nodeType":"RevertStatement","src":"25184:54:1"}]}},{"id":1882,"nodeType":"UncheckedBlock","src":"25259:172:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1869,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1778,"src":"25287:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1870,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"25296:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25296:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25287:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1873,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1802,"src":"25308:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25287:41:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1881,"nodeType":"IfStatement","src":"25283:138:1","trueBody":{"id":1880,"nodeType":"Block","src":"25330:91:1","statements":[{"errorCall":{"arguments":[{"id":1876,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"25364:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413236206f76657220766572696669636174696f6e4761734c696d6974","id":1877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25373:32:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974","typeString":"literal_string \"AA26 over verificationGasLimit\""},"value":"AA26 over verificationGasLimit"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974","typeString":"literal_string \"AA26 over verificationGasLimit\""}],"id":1875,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"25355:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25355:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1879,"nodeType":"RevertStatement","src":"25348:58:1"}]}}]},{"assignments":[1884],"declarations":[{"constant":false,"id":1884,"mutability":"mutable","name":"context","nameLocation":"25454:7:1","nodeType":"VariableDeclaration","scope":1933,"src":"25441:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1883,"name":"bytes","nodeType":"ElementaryTypeName","src":"25441:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1885,"nodeType":"VariableDeclarationStatement","src":"25441:20:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1886,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"25475:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1887,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25483:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"25475:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25504:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25496:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1888,"name":"address","nodeType":"ElementaryTypeName","src":"25496:7:1","typeDescriptions":{}}},"id":1891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25496:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25475:31:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1905,"nodeType":"IfStatement","src":"25471:250:1","trueBody":{"id":1904,"nodeType":"Block","src":"25508:213:1","statements":[{"expression":{"id":1902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":1893,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1884,"src":"25523:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1894,"name":"paymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"25532:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1895,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"25522:34:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1897,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"25605:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1898,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"25630:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":1899,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25654:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":1900,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"25681:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1896,"name":"_validatePaymasterPrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1641,"src":"25559:28:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory,uint256) returns (bytes memory,uint256)"}},"id":1901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25559:151:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"src":"25522:188:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1903,"nodeType":"ExpressionStatement","src":"25522:188:1"}]}},{"id":1932,"nodeType":"UncheckedBlock","src":"25730:222:1","statements":[{"expression":{"id":1910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1906,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25754:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1908,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25764:7:1","memberName":"prefund","nodeType":"MemberAccess","referencedDeclaration":942,"src":"25754:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1909,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"25774:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25754:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1911,"nodeType":"ExpressionStatement","src":"25754:35:1"},{"expression":{"id":1918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1912,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25803:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1914,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25813:13:1","memberName":"contextOffset","nodeType":"MemberAccess","referencedDeclaration":944,"src":"25803:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1916,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1884,"src":"25852:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1915,"name":"getOffsetOfMemoryBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2202,"src":"25829:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory) pure returns (uint256)"}},"id":1917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25829:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25803:57:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1919,"nodeType":"ExpressionStatement","src":"25803:57:1"},{"expression":{"id":1930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1920,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25874:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1922,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25884:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"25874:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1923,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1778,"src":"25895:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1924,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"25904:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25904:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25895:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1927,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"25916:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25923:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":3741,"src":"25916:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25895:46:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25874:67:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1931,"nodeType":"ExpressionStatement","src":"25874:67:1"}]}]},"documentation":{"id":1762,"nodeType":"StructuredDocumentation","src":"23443:357:1","text":" Validate account and paymaster (if defined) and\n also make sure total validation doesn't exceed verificationGasLimit.\n This method is called off-chain (simulateValidation()) and on-chain (from handleOps)\n @param opIndex - The index of this userOp into the \"opInfos\" array.\n @param userOp  - The userOp to validate."},"id":1934,"implemented":true,"kind":"function","modifiers":[],"name":"_validatePrepayment","nameLocation":"23814:19:1","nodeType":"FunctionDefinition","parameters":{"id":1771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1764,"mutability":"mutable","name":"opIndex","nameLocation":"23851:7:1","nodeType":"VariableDeclaration","scope":1934,"src":"23843:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1763,"name":"uint256","nodeType":"ElementaryTypeName","src":"23843:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1767,"mutability":"mutable","name":"userOp","nameLocation":"23897:6:1","nodeType":"VariableDeclaration","scope":1934,"src":"23868:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1766,"nodeType":"UserDefinedTypeName","pathNode":{"id":1765,"name":"PackedUserOperation","nameLocations":["23868:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"23868:19:1"},"referencedDeclaration":3748,"src":"23868:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1770,"mutability":"mutable","name":"outOpInfo","nameLocation":"23931:9:1","nodeType":"VariableDeclaration","scope":1934,"src":"23913:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1769,"nodeType":"UserDefinedTypeName","pathNode":{"id":1768,"name":"UserOpInfo","nameLocations":["23913:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"23913:10:1"},"referencedDeclaration":947,"src":"23913:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"src":"23833:113:1"},"returnParameters":{"id":1776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1773,"mutability":"mutable","name":"validationData","nameLocation":"23989:14:1","nodeType":"VariableDeclaration","scope":1934,"src":"23981:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1772,"name":"uint256","nodeType":"ElementaryTypeName","src":"23981:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1775,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"24013:23:1","nodeType":"VariableDeclaration","scope":1934,"src":"24005:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1774,"name":"uint256","nodeType":"ElementaryTypeName","src":"24005:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23980:57:1"},"scope":2236,"src":"23805:2153:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2155,"nodeType":"Block","src":"26772:2760:1","statements":[{"assignments":[1951],"declarations":[{"constant":false,"id":1951,"mutability":"mutable","name":"preGas","nameLocation":"26790:6:1","nodeType":"VariableDeclaration","scope":2155,"src":"26782:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1950,"name":"uint256","nodeType":"ElementaryTypeName","src":"26782:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1954,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1952,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"26799:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26799:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26782:26:1"},{"id":2154,"nodeType":"UncheckedBlock","src":"26818:2695:1","statements":[{"assignments":[1956],"declarations":[{"constant":false,"id":1956,"mutability":"mutable","name":"refundAddress","nameLocation":"26850:13:1","nodeType":"VariableDeclaration","scope":2154,"src":"26842:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1955,"name":"address","nodeType":"ElementaryTypeName","src":"26842:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1957,"nodeType":"VariableDeclarationStatement","src":"26842:21:1"},{"assignments":[1960],"declarations":[{"constant":false,"id":1960,"mutability":"mutable","name":"mUserOp","nameLocation":"26897:7:1","nodeType":"VariableDeclaration","scope":2154,"src":"26877:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1959,"nodeType":"UserDefinedTypeName","pathNode":{"id":1958,"name":"MemoryUserOp","nameLocations":["26877:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"26877:12:1"},"referencedDeclaration":935,"src":"26877:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1963,"initialValue":{"expression":{"id":1961,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"26907:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1962,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26914:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"26907:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"26877:44:1"},{"assignments":[1965],"declarations":[{"constant":false,"id":1965,"mutability":"mutable","name":"gasPrice","nameLocation":"26943:8:1","nodeType":"VariableDeclaration","scope":2154,"src":"26935:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1964,"name":"uint256","nodeType":"ElementaryTypeName","src":"26935:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1969,"initialValue":{"arguments":[{"id":1967,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"26972:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}],"id":1966,"name":"getUserOpGasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2192,"src":"26954:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_MemoryUserOp_$935_memory_ptr_$returns$_t_uint256_$","typeString":"function (struct EntryPoint.MemoryUserOp memory) view returns (uint256)"}},"id":1968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26954:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26935:45:1"},{"assignments":[1971],"declarations":[{"constant":false,"id":1971,"mutability":"mutable","name":"paymaster","nameLocation":"27003:9:1","nodeType":"VariableDeclaration","scope":2154,"src":"26995:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1970,"name":"address","nodeType":"ElementaryTypeName","src":"26995:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1974,"initialValue":{"expression":{"id":1972,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"27015:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1973,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27023:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"27015:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"26995:37:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1975,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"27050:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27071:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":1977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27063:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1976,"name":"address","nodeType":"ElementaryTypeName","src":"27063:7:1","typeDescriptions":{}}},"id":1979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27063:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27050:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2038,"nodeType":"Block","src":"27144:741:1","statements":[{"expression":{"id":1989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1987,"name":"refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"27162:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1988,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"27178:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27162:25:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1990,"nodeType":"ExpressionStatement","src":"27162:25:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1991,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1943,"src":"27209:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27217:6:1","memberName":"length","nodeType":"MemberAccess","src":"27209:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27226:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27209:18:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2037,"nodeType":"IfStatement","src":"27205:666:1","trueBody":{"id":2036,"nodeType":"Block","src":"27229:642:1","statements":[{"expression":{"id":1999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1995,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"27251:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1996,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"27267:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1997,"name":"gasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"27279:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27267:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27251:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2000,"nodeType":"ExpressionStatement","src":"27251:36:1"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"id":2005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2001,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"27313:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":2002,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"27321:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27332:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"27321:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":2004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27343:14:1","memberName":"postOpReverted","nodeType":"MemberAccess","referencedDeclaration":3592,"src":"27321:36:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"27313:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2035,"nodeType":"IfStatement","src":"27309:544:1","trueBody":{"id":2034,"nodeType":"Block","src":"27359:494:1","statements":[{"clauses":[{"block":{"id":2018,"nodeType":"Block","src":"27643:2:1","statements":[]},"errorName":"","id":2019,"nodeType":"TryCatchClause","src":"27643:2:1"},{"block":{"id":2031,"nodeType":"Block","src":"27652:179:1","statements":[{"assignments":[2021],"declarations":[{"constant":false,"id":2021,"mutability":"mutable","name":"reason","nameLocation":"27695:6:1","nodeType":"VariableDeclaration","scope":2031,"src":"27682:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2020,"name":"bytes","nodeType":"ElementaryTypeName","src":"27682:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2026,"initialValue":{"arguments":[{"id":2024,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"27723:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2022,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"27704:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":2023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27709:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"27704:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":2025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27704:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"27682:63:1"},{"errorCall":{"arguments":[{"id":2028,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2021,"src":"27797:6:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2027,"name":"PostOpReverted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3478,"src":"27782:14:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (bytes memory) pure returns (error)"}},"id":2029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27782:22:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2030,"nodeType":"RevertStatement","src":"27775:29:1"}]},"errorName":"","id":2032,"nodeType":"TryCatchClause","src":"27646:185:1"}],"externalCall":{"arguments":[{"id":2013,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"27510:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},{"id":2014,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1943,"src":"27516:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2015,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"27525:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2016,"name":"gasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"27540:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2007,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"27400:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2006,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"27389:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27389:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPaymaster_$3622","typeString":"contract IPaymaster"}},"id":2009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27411:6:1","memberName":"postOp","nodeType":"MemberAccess","referencedDeclaration":3621,"src":"27389:28:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_enum$_PostOpMode_$3593_$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (enum IPaymaster.PostOpMode,bytes memory,uint256,uint256) external"}},"id":2012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":2010,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"27452:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2011,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27460:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"27452:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"27389:120:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_enum$_PostOpMode_$3593_$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$__$gas","typeString":"function (enum IPaymaster.PostOpMode,bytes memory,uint256,uint256) external"}},"id":2017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27389:160:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2033,"nodeType":"TryStatement","src":"27385:446:1"}]}}]}}]},"id":2039,"nodeType":"IfStatement","src":"27046:839:1","trueBody":{"id":1986,"nodeType":"Block","src":"27075:63:1","statements":[{"expression":{"id":1984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1981,"name":"refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"27093:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1982,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"27109:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1983,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27117:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"27109:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27093:30:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1985,"nodeType":"ExpressionStatement","src":"27093:30:1"}]}},{"expression":{"id":2045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2040,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"27898:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2041,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1951,"src":"27911:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2042,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"27920:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27920:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27911:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27898:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2046,"nodeType":"ExpressionStatement","src":"27898:31:1"},{"id":2086,"nodeType":"Block","src":"28006:594:1","statements":[{"assignments":[2048],"declarations":[{"constant":false,"id":2048,"mutability":"mutable","name":"executionGasLimit","nameLocation":"28032:17:1","nodeType":"VariableDeclaration","scope":2086,"src":"28024:25:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2047,"name":"uint256","nodeType":"ElementaryTypeName","src":"28024:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2054,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2049,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"28052:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2050,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28060:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"28052:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2051,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"28075:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28083:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"28075:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28052:54:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28024:82:1"},{"assignments":[2056],"declarations":[{"constant":false,"id":2056,"mutability":"mutable","name":"executionGasUsed","nameLocation":"28132:16:1","nodeType":"VariableDeclaration","scope":2086,"src":"28124:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2055,"name":"uint256","nodeType":"ElementaryTypeName","src":"28124:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2061,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2057,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28151:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":2058,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28163:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":2059,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28170:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"28163:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28151:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28124:54:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2062,"name":"executionGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2048,"src":"28316:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2063,"name":"executionGasUsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2056,"src":"28336:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28316:36:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2085,"nodeType":"IfStatement","src":"28312:274:1","trueBody":{"id":2084,"nodeType":"Block","src":"28354:232:1","statements":[{"assignments":[2066],"declarations":[{"constant":false,"id":2066,"mutability":"mutable","name":"unusedGas","nameLocation":"28384:9:1","nodeType":"VariableDeclaration","scope":2084,"src":"28376:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2065,"name":"uint256","nodeType":"ElementaryTypeName","src":"28376:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2070,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2067,"name":"executionGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2048,"src":"28396:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2068,"name":"executionGasUsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2056,"src":"28416:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28396:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28376:56:1"},{"assignments":[2072],"declarations":[{"constant":false,"id":2072,"mutability":"mutable","name":"unusedGasPenalty","nameLocation":"28462:16:1","nodeType":"VariableDeclaration","scope":2084,"src":"28454:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2071,"name":"uint256","nodeType":"ElementaryTypeName","src":"28454:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2079,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2073,"name":"unusedGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2066,"src":"28482:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2074,"name":"PENALTY_PERCENT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":198,"src":"28494:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28482:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2076,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28481:29:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":2077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28513:3:1","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"28481:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28454:62:1"},{"expression":{"id":2082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2080,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28538:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2081,"name":"unusedGasPenalty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2072,"src":"28551:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28538:29:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2083,"nodeType":"ExpressionStatement","src":"28538:29:1"}]}}]},{"expression":{"id":2091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2087,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28614:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2088,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28630:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2089,"name":"gasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"28642:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28630:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28614:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2092,"nodeType":"ExpressionStatement","src":"28614:36:1"},{"assignments":[2094],"declarations":[{"constant":false,"id":2094,"mutability":"mutable","name":"prefund","nameLocation":"28672:7:1","nodeType":"VariableDeclaration","scope":2154,"src":"28664:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2093,"name":"uint256","nodeType":"ElementaryTypeName","src":"28664:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2097,"initialValue":{"expression":{"id":2095,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28682:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":2096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28689:7:1","memberName":"prefund","nodeType":"MemberAccess","referencedDeclaration":942,"src":"28682:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28664:32:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2098,"name":"prefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"28714:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2099,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28724:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28714:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2152,"nodeType":"Block","src":"29215:288:1","statements":[{"assignments":[2127],"declarations":[{"constant":false,"id":2127,"mutability":"mutable","name":"refund","nameLocation":"29241:6:1","nodeType":"VariableDeclaration","scope":2152,"src":"29233:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2126,"name":"uint256","nodeType":"ElementaryTypeName","src":"29233:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2131,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2128,"name":"prefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"29250:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2129,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"29260:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29250:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29233:40:1"},{"expression":{"arguments":[{"id":2133,"name":"refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"29309:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2134,"name":"refund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2127,"src":"29324:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2132,"name":"_incrementDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"29291:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) returns (uint256)"}},"id":2135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29291:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2136,"nodeType":"ExpressionStatement","src":"29291:40:1"},{"assignments":[2138],"declarations":[{"constant":false,"id":2138,"mutability":"mutable","name":"success","nameLocation":"29354:7:1","nodeType":"VariableDeclaration","scope":2152,"src":"29349:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2137,"name":"bool","nodeType":"ElementaryTypeName","src":"29349:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2144,"initialValue":{"commonType":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"id":2143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2139,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"29364:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":2140,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"29372:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29383:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"29372:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":2142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29394:11:1","memberName":"opSucceeded","nodeType":"MemberAccess","referencedDeclaration":3590,"src":"29372:33:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"29364:41:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"29349:56:1"},{"expression":{"arguments":[{"id":2146,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"29446:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":2147,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2138,"src":"29454:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2148,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"29463:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2149,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"29478:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2145,"name":"emitUserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":497,"src":"29423:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory,bool,uint256,uint256)"}},"id":2150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29423:65:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2151,"nodeType":"ExpressionStatement","src":"29423:65:1"}]},"id":2153,"nodeType":"IfStatement","src":"28710:793:1","trueBody":{"id":2125,"nodeType":"Block","src":"28739:470:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"id":2105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2101,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"28761:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":2102,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"28769:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28780:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"28769:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":2104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28791:14:1","memberName":"postOpReverted","nodeType":"MemberAccess","referencedDeclaration":3592,"src":"28769:36:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"28761:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2123,"nodeType":"Block","src":"29009:186:1","statements":[{"AST":{"nativeSrc":"29056:121:1","nodeType":"YulBlock","src":"29056:121:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29089:1:1","nodeType":"YulLiteral","src":"29089:1:1","type":"","value":"0"},{"name":"INNER_REVERT_LOW_PREFUND","nativeSrc":"29092:24:1","nodeType":"YulIdentifier","src":"29092:24:1"}],"functionName":{"name":"mstore","nativeSrc":"29082:6:1","nodeType":"YulIdentifier","src":"29082:6:1"},"nativeSrc":"29082:35:1","nodeType":"YulFunctionCall","src":"29082:35:1"},"nativeSrc":"29082:35:1","nodeType":"YulExpressionStatement","src":"29082:35:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"29149:1:1","nodeType":"YulLiteral","src":"29149:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"29152:2:1","nodeType":"YulLiteral","src":"29152:2:1","type":"","value":"32"}],"functionName":{"name":"revert","nativeSrc":"29142:6:1","nodeType":"YulIdentifier","src":"29142:6:1"},"nativeSrc":"29142:13:1","nodeType":"YulFunctionCall","src":"29142:13:1"},"nativeSrc":"29142:13:1","nodeType":"YulExpressionStatement","src":"29142:13:1"}]},"evmVersion":"cancun","externalReferences":[{"declaration":192,"isOffset":false,"isSlot":false,"src":"29092:24:1","valueSize":1}],"flags":["memory-safe"],"id":2122,"nodeType":"InlineAssembly","src":"29031:146:1"}]},"id":2124,"nodeType":"IfStatement","src":"28757:438:1","trueBody":{"id":2121,"nodeType":"Block","src":"28807:196:1","statements":[{"expression":{"id":2108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2106,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28829:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2107,"name":"prefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"28845:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28829:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2109,"nodeType":"ExpressionStatement","src":"28829:23:1"},{"expression":{"arguments":[{"id":2111,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28892:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":2110,"name":"emitPrefundTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":515,"src":"28874:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory)"}},"id":2112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28874:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2113,"nodeType":"ExpressionStatement","src":"28874:25:1"},{"expression":{"arguments":[{"id":2115,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28944:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"hexValue":"66616c7365","id":2116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28952:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":2117,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28959:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2118,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28974:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2114,"name":"emitUserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":497,"src":"28921:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory,bool,uint256,uint256)"}},"id":2119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28921:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2120,"nodeType":"ExpressionStatement","src":"28921:63:1"}]}}]}}]}]},"documentation":{"id":1935,"nodeType":"StructuredDocumentation","src":"25964:606:1","text":" Process post-operation, called just after the callData is executed.\n If a paymaster is defined and its validation returned a non-empty context, its postOp is called.\n The excess amount is refunded to the account (or paymaster - if it was used in the request).\n @param mode      - Whether is called from innerHandleOp, or outside (postOpReverted).\n @param opInfo    - UserOp fields and info collected during validation.\n @param context   - The context returned in validatePaymasterUserOp.\n @param actualGas - The gas used so far by this user operation."},"id":2156,"implemented":true,"kind":"function","modifiers":[],"name":"_postExecution","nameLocation":"26584:14:1","nodeType":"FunctionDefinition","parameters":{"id":1946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1938,"mutability":"mutable","name":"mode","nameLocation":"26630:4:1","nodeType":"VariableDeclaration","scope":2156,"src":"26608:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"typeName":{"id":1937,"nodeType":"UserDefinedTypeName","pathNode":{"id":1936,"name":"IPaymaster.PostOpMode","nameLocations":["26608:10:1","26619:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":3593,"src":"26608:21:1"},"referencedDeclaration":3593,"src":"26608:21:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"visibility":"internal"},{"constant":false,"id":1941,"mutability":"mutable","name":"opInfo","nameLocation":"26662:6:1","nodeType":"VariableDeclaration","scope":2156,"src":"26644:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1940,"nodeType":"UserDefinedTypeName","pathNode":{"id":1939,"name":"UserOpInfo","nameLocations":["26644:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"26644:10:1"},"referencedDeclaration":947,"src":"26644:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1943,"mutability":"mutable","name":"context","nameLocation":"26691:7:1","nodeType":"VariableDeclaration","scope":2156,"src":"26678:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1942,"name":"bytes","nodeType":"ElementaryTypeName","src":"26678:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1945,"mutability":"mutable","name":"actualGas","nameLocation":"26716:9:1","nodeType":"VariableDeclaration","scope":2156,"src":"26708:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1944,"name":"uint256","nodeType":"ElementaryTypeName","src":"26708:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26598:133:1"},"returnParameters":{"id":1949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1948,"mutability":"mutable","name":"actualGasCost","nameLocation":"26757:13:1","nodeType":"VariableDeclaration","scope":2156,"src":"26749:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1947,"name":"uint256","nodeType":"ElementaryTypeName","src":"26749:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26748:23:1"},"scope":2236,"src":"26575:2957:1","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":2191,"nodeType":"Block","src":"29865:429:1","statements":[{"id":2190,"nodeType":"UncheckedBlock","src":"29875:413:1","statements":[{"assignments":[2166],"declarations":[{"constant":false,"id":2166,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"29907:12:1","nodeType":"VariableDeclaration","scope":2190,"src":"29899:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2165,"name":"uint256","nodeType":"ElementaryTypeName","src":"29899:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2169,"initialValue":{"expression":{"id":2167,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2160,"src":"29922:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29930:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"29922:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29899:43:1"},{"assignments":[2171],"declarations":[{"constant":false,"id":2171,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"29964:20:1","nodeType":"VariableDeclaration","scope":2190,"src":"29956:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2170,"name":"uint256","nodeType":"ElementaryTypeName","src":"29956:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2174,"initialValue":{"expression":{"id":2172,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2160,"src":"29987:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2173,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29995:20:1","memberName":"maxPriorityFeePerGas","nodeType":"MemberAccess","referencedDeclaration":934,"src":"29987:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29956:59:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2175,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2166,"src":"30033:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2176,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"30049:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30033:36:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2181,"nodeType":"IfStatement","src":"30029:173:1","trueBody":{"id":2180,"nodeType":"Block","src":"30071:131:1","statements":[{"expression":{"id":2178,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2166,"src":"30175:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2164,"id":2179,"nodeType":"Return","src":"30168:19:1"}]}},{"expression":{"arguments":[{"id":2183,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2166,"src":"30226:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2184,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"30240:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2185,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30263:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30269:7:1","memberName":"basefee","nodeType":"MemberAccess","src":"30263:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30240:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2182,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"30222:3:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30222:55:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2164,"id":2189,"nodeType":"Return","src":"30215:62:1"}]}]},"documentation":{"id":2157,"nodeType":"StructuredDocumentation","src":"29538:220:1","text":" The gas price this UserOp agrees to pay.\n Relayer/block builder might submit the TX with higher priorityFee, but the user should not.\n @param mUserOp - The userOp to get the gas price from."},"id":2192,"implemented":true,"kind":"function","modifiers":[],"name":"getUserOpGasPrice","nameLocation":"29772:17:1","nodeType":"FunctionDefinition","parameters":{"id":2161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2160,"mutability":"mutable","name":"mUserOp","nameLocation":"29819:7:1","nodeType":"VariableDeclaration","scope":2192,"src":"29799:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":2159,"nodeType":"UserDefinedTypeName","pathNode":{"id":2158,"name":"MemoryUserOp","nameLocations":["29799:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"29799:12:1"},"referencedDeclaration":935,"src":"29799:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"src":"29789:43:1"},"returnParameters":{"id":2164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2192,"src":"29856:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2162,"name":"uint256","nodeType":"ElementaryTypeName","src":"29856:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29855:9:1"},"scope":2236,"src":"29763:531:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2201,"nodeType":"Block","src":"30521:63:1","statements":[{"AST":{"nativeSrc":"30540:38:1","nodeType":"YulBlock","src":"30540:38:1","statements":[{"nativeSrc":"30554:14:1","nodeType":"YulAssignment","src":"30554:14:1","value":{"name":"data","nativeSrc":"30564:4:1","nodeType":"YulIdentifier","src":"30564:4:1"},"variableNames":[{"name":"offset","nativeSrc":"30554:6:1","nodeType":"YulIdentifier","src":"30554:6:1"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":2195,"isOffset":false,"isSlot":false,"src":"30564:4:1","valueSize":1},{"declaration":2198,"isOffset":false,"isSlot":false,"src":"30554:6:1","valueSize":1}],"id":2200,"nodeType":"InlineAssembly","src":"30531:47:1"}]},"documentation":{"id":2193,"nodeType":"StructuredDocumentation","src":"30300:112:1","text":" The offset of the given bytes in memory.\n @param data - The bytes to get the offset of."},"id":2202,"implemented":true,"kind":"function","modifiers":[],"name":"getOffsetOfMemoryBytes","nameLocation":"30426:22:1","nodeType":"FunctionDefinition","parameters":{"id":2196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"mutability":"mutable","name":"data","nameLocation":"30471:4:1","nodeType":"VariableDeclaration","scope":2202,"src":"30458:17:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2194,"name":"bytes","nodeType":"ElementaryTypeName","src":"30458:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30448:33:1"},"returnParameters":{"id":2199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2198,"mutability":"mutable","name":"offset","nameLocation":"30513:6:1","nodeType":"VariableDeclaration","scope":2202,"src":"30505:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2197,"name":"uint256","nodeType":"ElementaryTypeName","src":"30505:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30504:16:1"},"scope":2236,"src":"30417:167:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2211,"nodeType":"Block","src":"30817:79:1","statements":[{"AST":{"nativeSrc":"30852:38:1","nodeType":"YulBlock","src":"30852:38:1","statements":[{"nativeSrc":"30866:14:1","nodeType":"YulAssignment","src":"30866:14:1","value":{"name":"offset","nativeSrc":"30874:6:1","nodeType":"YulIdentifier","src":"30874:6:1"},"variableNames":[{"name":"data","nativeSrc":"30866:4:1","nodeType":"YulIdentifier","src":"30866:4:1"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":2208,"isOffset":false,"isSlot":false,"src":"30866:4:1","valueSize":1},{"declaration":2205,"isOffset":false,"isSlot":false,"src":"30874:6:1","valueSize":1}],"flags":["memory-safe"],"id":2210,"nodeType":"InlineAssembly","src":"30827:63:1"}]},"documentation":{"id":2203,"nodeType":"StructuredDocumentation","src":"30590:116:1","text":" The bytes in memory at the given offset.\n @param offset - The offset to get the bytes from."},"id":2212,"implemented":true,"kind":"function","modifiers":[],"name":"getMemoryBytesFromOffset","nameLocation":"30720:24:1","nodeType":"FunctionDefinition","parameters":{"id":2206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2205,"mutability":"mutable","name":"offset","nameLocation":"30762:6:1","nodeType":"VariableDeclaration","scope":2212,"src":"30754:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2204,"name":"uint256","nodeType":"ElementaryTypeName","src":"30754:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30744:30:1"},"returnParameters":{"id":2209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2208,"mutability":"mutable","name":"data","nameLocation":"30811:4:1","nodeType":"VariableDeclaration","scope":2212,"src":"30798:17:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2207,"name":"bytes","nodeType":"ElementaryTypeName","src":"30798:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30797:19:1"},"scope":2236,"src":"30711:185:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[3565],"body":{"id":2234,"nodeType":"Block","src":"31007:125:1","statements":[{"assignments":[2221,2223],"declarations":[{"constant":false,"id":2221,"mutability":"mutable","name":"success","nameLocation":"31023:7:1","nodeType":"VariableDeclaration","scope":2234,"src":"31018:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2220,"name":"bool","nodeType":"ElementaryTypeName","src":"31018:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2223,"mutability":"mutable","name":"ret","nameLocation":"31045:3:1","nodeType":"VariableDeclaration","scope":2234,"src":"31032:16:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2222,"name":"bytes","nodeType":"ElementaryTypeName","src":"31032:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2228,"initialValue":{"arguments":[{"id":2226,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2217,"src":"31072:4:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":2224,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2215,"src":"31052:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31059:12:1","memberName":"delegatecall","nodeType":"MemberAccess","src":"31052:19:1","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":2227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31052:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"31017:60:1"},{"errorCall":{"arguments":[{"id":2230,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2221,"src":"31112:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2231,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2223,"src":"31121:3:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2229,"name":"DelegateAndRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3557,"src":"31094:17:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (bool,bytes memory) pure returns (error)"}},"id":2232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31094:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2233,"nodeType":"RevertStatement","src":"31087:38:1"}]},"documentation":{"id":2213,"nodeType":"StructuredDocumentation","src":"30902:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"850aaf62","id":2235,"implemented":true,"kind":"function","modifiers":[],"name":"delegateAndRevert","nameLocation":"30943:17:1","nodeType":"FunctionDefinition","parameters":{"id":2218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2215,"mutability":"mutable","name":"target","nameLocation":"30969:6:1","nodeType":"VariableDeclaration","scope":2235,"src":"30961:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2214,"name":"address","nodeType":"ElementaryTypeName","src":"30961:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2217,"mutability":"mutable","name":"data","nameLocation":"30992:4:1","nodeType":"VariableDeclaration","scope":2235,"src":"30977:19:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2216,"name":"bytes","nodeType":"ElementaryTypeName","src":"30977:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30960:37:1"},"returnParameters":{"id":2219,"nodeType":"ParameterList","parameters":[],"src":"31007:0:1"},"scope":2236,"src":"30934:198:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2237,"src":"789:30345:1","usedErrors":[3465,3474,3478,3483,3487,3557,16371],"usedEvents":[3408,3419,3430,3441,3450,3453,3458,3631,3639,3647,3653,3661]}],"src":"36:31099:1"},"id":1},"@account-abstraction/contracts/core/Helpers.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","exportedSymbols":{"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244],"ValidationData":[2252],"_packValidationData":[2349,2387],"_parseValidationData":[2312],"calldataKeccak":[2397],"min":[2415]},"id":2416,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2238,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:2"},{"constant":true,"id":2241,"mutability":"constant","name":"SIG_VALIDATION_FAILED","nameLocation":"281:21:2","nodeType":"VariableDeclaration","scope":2416,"src":"264:42:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2239,"name":"uint256","nodeType":"ElementaryTypeName","src":"264:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":2240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"305:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":2244,"mutability":"constant","name":"SIG_VALIDATION_SUCCESS","nameLocation":"440:22:2","nodeType":"VariableDeclaration","scope":2416,"src":"423:43:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2242,"name":"uint256","nodeType":"ElementaryTypeName","src":"423:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":2243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"465:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"canonicalName":"ValidationData","documentation":{"id":2245,"nodeType":"StructuredDocumentation","src":"470:640:2","text":" Returned data from validateUserOp.\n validateUserOp returns a uint256, which is created by `_packedValidationData` and\n parsed by `_parseValidationData`.\n @param aggregator  - address(0) - The account validated the signature by itself.\n                      address(1) - The account failed to validate the signature.\n                      otherwise - This is an address of a signature aggregator that must\n                                  be used to validate the signature.\n @param validAfter  - This UserOp is valid only after this timestamp.\n @param validaUntil - This UserOp is valid only up to this timestamp."},"id":2252,"members":[{"constant":false,"id":2247,"mutability":"mutable","name":"aggregator","nameLocation":"1147:10:2","nodeType":"VariableDeclaration","scope":2252,"src":"1139:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2246,"name":"address","nodeType":"ElementaryTypeName","src":"1139:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2249,"mutability":"mutable","name":"validAfter","nameLocation":"1170:10:2","nodeType":"VariableDeclaration","scope":2252,"src":"1163:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2248,"name":"uint48","nodeType":"ElementaryTypeName","src":"1163:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":2251,"mutability":"mutable","name":"validUntil","nameLocation":"1193:10:2","nodeType":"VariableDeclaration","scope":2252,"src":"1186:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2250,"name":"uint48","nodeType":"ElementaryTypeName","src":"1186:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"ValidationData","nameLocation":"1118:14:2","nodeType":"StructDefinition","scope":2416,"src":"1111:95:2","visibility":"public"},{"body":{"id":2311,"nodeType":"Block","src":"1472:314:2","statements":[{"assignments":[2262],"declarations":[{"constant":false,"id":2262,"mutability":"mutable","name":"aggregator","nameLocation":"1486:10:2","nodeType":"VariableDeclaration","scope":2311,"src":"1478:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2261,"name":"address","nodeType":"ElementaryTypeName","src":"1478:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2270,"initialValue":{"arguments":[{"arguments":[{"id":2267,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2255,"src":"1515:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1507:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2265,"name":"uint160","nodeType":"ElementaryTypeName","src":"1507:7:2","typeDescriptions":{}}},"id":2268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1507:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":2264,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1499:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2263,"name":"address","nodeType":"ElementaryTypeName","src":"1499:7:2","typeDescriptions":{}}},"id":2269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1499:32:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"1478:53:2"},{"assignments":[2272],"declarations":[{"constant":false,"id":2272,"mutability":"mutable","name":"validUntil","nameLocation":"1544:10:2","nodeType":"VariableDeclaration","scope":2311,"src":"1537:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2271,"name":"uint48","nodeType":"ElementaryTypeName","src":"1537:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":2279,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2275,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2255,"src":"1564:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313630","id":2276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1582:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"1564:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1557:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2273,"name":"uint48","nodeType":"ElementaryTypeName","src":"1557:6:2","typeDescriptions":{}}},"id":2278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1557:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"1537:49:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":2282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2280,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"1596:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1610:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1596:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2292,"nodeType":"IfStatement","src":"1592:67:2","trueBody":{"id":2291,"nodeType":"Block","src":"1613:46:2","statements":[{"expression":{"id":2289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2283,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"1623:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":2286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1641:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2285,"name":"uint48","nodeType":"ElementaryTypeName","src":"1641:6:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":2284,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1636:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1636:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":2288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1649:3:2","memberName":"max","nodeType":"MemberAccess","src":"1636:16:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"1623:29:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":2290,"nodeType":"ExpressionStatement","src":"1623:29:2"}]}},{"assignments":[2294],"declarations":[{"constant":false,"id":2294,"mutability":"mutable","name":"validAfter","nameLocation":"1671:10:2","nodeType":"VariableDeclaration","scope":2311,"src":"1664:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2293,"name":"uint48","nodeType":"ElementaryTypeName","src":"1664:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":2304,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2297,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2255,"src":"1691:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":2300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3438","id":2298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1710:2:2","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"313630","id":2299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1715:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"1710:8:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":2301,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1709:10:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"1691:28:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2296,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1684:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2295,"name":"uint48","nodeType":"ElementaryTypeName","src":"1684:6:2","typeDescriptions":{}}},"id":2303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1684:36:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"1664:56:2"},{"expression":{"arguments":[{"id":2306,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"1748:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2307,"name":"validAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2294,"src":"1760:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":2308,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"1772:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2305,"name":"ValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2252,"src":"1733:14:2","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ValidationData_$2252_storage_ptr_$","typeString":"type(struct ValidationData storage pointer)"}},"id":2309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1733:50:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"functionReturnParameters":2260,"id":2310,"nodeType":"Return","src":"1726:57:2"}]},"documentation":{"id":2253,"nodeType":"StructuredDocumentation","src":"1208:161:2","text":" Extract sigFailed, validAfter, validUntil.\n Also convert zero validUntil to type(uint48).max.\n @param validationData - The packed validation data."},"id":2312,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_parseValidationData","nameLocation":"1379:20:2","nodeType":"FunctionDefinition","parameters":{"id":2256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2255,"mutability":"mutable","name":"validationData","nameLocation":"1413:14:2","nodeType":"VariableDeclaration","scope":2312,"src":"1405:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2254,"name":"uint256","nodeType":"ElementaryTypeName","src":"1405:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1399:30:2"},"returnParameters":{"id":2260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2259,"mutability":"mutable","name":"data","nameLocation":"1466:4:2","nodeType":"VariableDeclaration","scope":2312,"src":"1444:26:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":2258,"nodeType":"UserDefinedTypeName","pathNode":{"id":2257,"name":"ValidationData","nameLocations":["1444:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":2252,"src":"1444:14:2"},"referencedDeclaration":2252,"src":"1444:14:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"src":"1443:28:2"},"scope":2416,"src":"1370:416:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2348,"nodeType":"Block","src":"1982:143:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2323,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2316,"src":"2011:4:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":2324,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2016:10:2","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":2247,"src":"2011:15:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2003:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2321,"name":"uint160","nodeType":"ElementaryTypeName","src":"2003:7:2","typeDescriptions":{}}},"id":2325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2003:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2328,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2316,"src":"2047:4:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":2329,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2052:10:2","memberName":"validUntil","nodeType":"MemberAccess","referencedDeclaration":2251,"src":"2047:15:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2327,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2039:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2326,"name":"uint256","nodeType":"ElementaryTypeName","src":"2039:7:2","typeDescriptions":{}}},"id":2330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2039:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313630","id":2331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2067:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"2039:31:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2333,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2038:33:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2003:68:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2337,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2316,"src":"2091:4:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":2338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2096:10:2","memberName":"validAfter","nodeType":"MemberAccess","referencedDeclaration":2249,"src":"2091:15:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2083:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2083:7:2","typeDescriptions":{}}},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2083:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":2342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"313630","id":2340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2112:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":2341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2118:2:2","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"2112:8:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":2343,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2111:10:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"2083:38:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2345,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2082:40:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2003:119:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2320,"id":2347,"nodeType":"Return","src":"1988:134:2"}]},"documentation":{"id":2313,"nodeType":"StructuredDocumentation","src":"1788:107:2","text":" Helper to pack the return value for validateUserOp.\n @param data - The ValidationData to pack."},"id":2349,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_packValidationData","nameLocation":"1905:19:2","nodeType":"FunctionDefinition","parameters":{"id":2317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2316,"mutability":"mutable","name":"data","nameLocation":"1952:4:2","nodeType":"VariableDeclaration","scope":2349,"src":"1930:26:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":2315,"nodeType":"UserDefinedTypeName","pathNode":{"id":2314,"name":"ValidationData","nameLocations":["1930:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":2252,"src":"1930:14:2"},"referencedDeclaration":2252,"src":"1930:14:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"src":"1924:34:2"},"returnParameters":{"id":2320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2349,"src":"1973:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2318,"name":"uint256","nodeType":"ElementaryTypeName","src":"1973:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1972:9:2"},"scope":2416,"src":"1896:229:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2386,"nodeType":"Block","src":"2568:128:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"condition":{"id":2361,"name":"sigFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2352,"src":"2590:9:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":2363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2606:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":2364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2590:17:2","trueExpression":{"hexValue":"31","id":2362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2602:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":2365,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2589:19:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2368,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2354,"src":"2628:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2620:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2366,"name":"uint256","nodeType":"ElementaryTypeName","src":"2620:7:2","typeDescriptions":{}}},"id":2369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2620:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313630","id":2370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2643:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"2620:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2372,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2619:28:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2589:58:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2376,"name":"validAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2356,"src":"2667:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2659:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2374,"name":"uint256","nodeType":"ElementaryTypeName","src":"2659:7:2","typeDescriptions":{}}},"id":2377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2659:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":2380,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"313630","id":2378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2683:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":2379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2689:2:2","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"2683:8:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":2381,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2682:10:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"2659:33:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2383,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2658:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2589:104:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2360,"id":2385,"nodeType":"Return","src":"2574:119:2"}]},"documentation":{"id":2350,"nodeType":"StructuredDocumentation","src":"2127:320:2","text":" Helper to pack the return value for validateUserOp, when not using an aggregator.\n @param sigFailed  - True for signature failure, false for success.\n @param validUntil - Last timestamp this UserOperation is valid (or zero for infinite).\n @param validAfter - First timestamp this UserOperation is valid."},"id":2387,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_packValidationData","nameLocation":"2457:19:2","nodeType":"FunctionDefinition","parameters":{"id":2357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2352,"mutability":"mutable","name":"sigFailed","nameLocation":"2487:9:2","nodeType":"VariableDeclaration","scope":2387,"src":"2482:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2351,"name":"bool","nodeType":"ElementaryTypeName","src":"2482:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2354,"mutability":"mutable","name":"validUntil","nameLocation":"2509:10:2","nodeType":"VariableDeclaration","scope":2387,"src":"2502:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2353,"name":"uint48","nodeType":"ElementaryTypeName","src":"2502:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":2356,"mutability":"mutable","name":"validAfter","nameLocation":"2532:10:2","nodeType":"VariableDeclaration","scope":2387,"src":"2525:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2355,"name":"uint48","nodeType":"ElementaryTypeName","src":"2525:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2476:68:2"},"returnParameters":{"id":2360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2387,"src":"2559:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2358,"name":"uint256","nodeType":"ElementaryTypeName","src":"2559:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2558:9:2"},"scope":2416,"src":"2448:248:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2396,"nodeType":"Block","src":"2951:209:2","statements":[{"AST":{"nativeSrc":"2986:168:2","nodeType":"YulBlock","src":"2986:168:2","statements":[{"nativeSrc":"3000:22:2","nodeType":"YulVariableDeclaration","src":"3000:22:2","value":{"arguments":[{"kind":"number","nativeSrc":"3017:4:2","nodeType":"YulLiteral","src":"3017:4:2","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3011:5:2","nodeType":"YulIdentifier","src":"3011:5:2"},"nativeSrc":"3011:11:2","nodeType":"YulFunctionCall","src":"3011:11:2"},"variables":[{"name":"mem","nativeSrc":"3004:3:2","nodeType":"YulTypedName","src":"3004:3:2","type":""}]},{"nativeSrc":"3035:22:2","nodeType":"YulVariableDeclaration","src":"3035:22:2","value":{"name":"data.length","nativeSrc":"3046:11:2","nodeType":"YulIdentifier","src":"3046:11:2"},"variables":[{"name":"len","nativeSrc":"3039:3:2","nodeType":"YulTypedName","src":"3039:3:2","type":""}]},{"expression":{"arguments":[{"name":"mem","nativeSrc":"3083:3:2","nodeType":"YulIdentifier","src":"3083:3:2"},{"name":"data.offset","nativeSrc":"3088:11:2","nodeType":"YulIdentifier","src":"3088:11:2"},{"name":"len","nativeSrc":"3101:3:2","nodeType":"YulIdentifier","src":"3101:3:2"}],"functionName":{"name":"calldatacopy","nativeSrc":"3070:12:2","nodeType":"YulIdentifier","src":"3070:12:2"},"nativeSrc":"3070:35:2","nodeType":"YulFunctionCall","src":"3070:35:2"},"nativeSrc":"3070:35:2","nodeType":"YulExpressionStatement","src":"3070:35:2"},{"nativeSrc":"3118:26:2","nodeType":"YulAssignment","src":"3118:26:2","value":{"arguments":[{"name":"mem","nativeSrc":"3135:3:2","nodeType":"YulIdentifier","src":"3135:3:2"},{"name":"len","nativeSrc":"3140:3:2","nodeType":"YulIdentifier","src":"3140:3:2"}],"functionName":{"name":"keccak256","nativeSrc":"3125:9:2","nodeType":"YulIdentifier","src":"3125:9:2"},"nativeSrc":"3125:19:2","nodeType":"YulFunctionCall","src":"3125:19:2"},"variableNames":[{"name":"ret","nativeSrc":"3118:3:2","nodeType":"YulIdentifier","src":"3118:3:2"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":2390,"isOffset":false,"isSlot":false,"src":"3046:11:2","suffix":"length","valueSize":1},{"declaration":2390,"isOffset":true,"isSlot":false,"src":"3088:11:2","suffix":"offset","valueSize":1},{"declaration":2393,"isOffset":false,"isSlot":false,"src":"3118:3:2","valueSize":1}],"flags":["memory-safe"],"id":2395,"nodeType":"InlineAssembly","src":"2961:193:2"}]},"documentation":{"id":2388,"nodeType":"StructuredDocumentation","src":"2698:176:2","text":" keccak function over calldata.\n @dev copy calldata into memory, do keccak and drop allocated memory. Strangely, this is more efficient than letting solidity do it."},"id":2397,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"calldataKeccak","nameLocation":"2888:14:2","nodeType":"FunctionDefinition","parameters":{"id":2391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2390,"mutability":"mutable","name":"data","nameLocation":"2918:4:2","nodeType":"VariableDeclaration","scope":2397,"src":"2903:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2389,"name":"bytes","nodeType":"ElementaryTypeName","src":"2903:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2902:21:2"},"returnParameters":{"id":2394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2393,"mutability":"mutable","name":"ret","nameLocation":"2946:3:2","nodeType":"VariableDeclaration","scope":2397,"src":"2938:11:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2392,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2938:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2937:13:2"},"scope":2416,"src":"2879:281:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2414,"nodeType":"Block","src":"3321:37:2","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2407,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"3338:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2408,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"3342:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3338:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":2411,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"3350:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3338:13:2","trueExpression":{"id":2410,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"3346:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2406,"id":2413,"nodeType":"Return","src":"3331:20:2"}]},"documentation":{"id":2398,"nodeType":"StructuredDocumentation","src":"3163:95:2","text":" The minimum of two numbers.\n @param a - First number.\n @param b - Second number."},"id":2415,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"min","nameLocation":"3272:3:2","nodeType":"FunctionDefinition","parameters":{"id":2403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2400,"mutability":"mutable","name":"a","nameLocation":"3284:1:2","nodeType":"VariableDeclaration","scope":2415,"src":"3276:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2399,"name":"uint256","nodeType":"ElementaryTypeName","src":"3276:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2402,"mutability":"mutable","name":"b","nameLocation":"3295:1:2","nodeType":"VariableDeclaration","scope":2415,"src":"3287:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2401,"name":"uint256","nodeType":"ElementaryTypeName","src":"3287:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3275:22:2"},"returnParameters":{"id":2406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2415,"src":"3312:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2404,"name":"uint256","nodeType":"ElementaryTypeName","src":"3312:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3311:9:2"},"scope":2416,"src":"3263:95:2","stateMutability":"pure","virtual":false,"visibility":"internal"}],"src":"36:3323:2"},"id":2},"@account-abstraction/contracts/core/NonceManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/NonceManager.sol","exportedSymbols":{"INonceManager":[3585],"NonceManager":[2506]},"id":2507,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2417,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:3"},{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","file":"../interfaces/INonceManager.sol","id":2418,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2507,"sourceUnit":3586,"src":"62:41:3","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2420,"name":"INonceManager","nameLocations":["181:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":3585,"src":"181:13:3"},"id":2421,"nodeType":"InheritanceSpecifier","src":"181:13:3"}],"canonicalName":"NonceManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":2419,"nodeType":"StructuredDocumentation","src":"105:41:3","text":" nonce management functionality"},"fullyImplemented":true,"id":2506,"linearizedBaseContracts":[2506,3585],"name":"NonceManager","nameLocation":"165:12:3","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":2422,"nodeType":"StructuredDocumentation","src":"202:72:3","text":" The next valid sequence number for a given nonce key."},"functionSelector":"1b2e01b8","id":2428,"mutability":"mutable","name":"nonceSequenceNumber","nameLocation":"334:19:3","nodeType":"VariableDeclaration","scope":2506,"src":"279:74:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"},"typeName":{"id":2427,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2423,"name":"address","nodeType":"ElementaryTypeName","src":"287:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"279:47:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2426,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2424,"name":"uint192","nodeType":"ElementaryTypeName","src":"306:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"nodeType":"Mapping","src":"298:27:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2425,"name":"uint256","nodeType":"ElementaryTypeName","src":"317:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"public"},{"baseFunctions":[3578],"body":{"id":2453,"nodeType":"Block","src":"490:79:3","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"baseExpression":{"id":2439,"name":"nonceSequenceNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2428,"src":"507:19:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"}},"id":2441,"indexExpression":{"id":2440,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2431,"src":"527:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"507:27:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"}},"id":2443,"indexExpression":{"id":2442,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"535:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"507:32:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2446,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"551:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint192","typeString":"uint192"}],"id":2445,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"543:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2444,"name":"uint256","nodeType":"ElementaryTypeName","src":"543:7:3","typeDescriptions":{}}},"id":2447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"543:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":2448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"559:2:3","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"543:18:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2450,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"542:20:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"507:55:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2438,"id":2452,"nodeType":"Return","src":"500:62:3"}]},"documentation":{"id":2429,"nodeType":"StructuredDocumentation","src":"360:29:3","text":"@inheritdoc INonceManager"},"functionSelector":"35567e1a","id":2454,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"403:8:3","nodeType":"FunctionDefinition","overrides":{"id":2435,"nodeType":"OverrideSpecifier","overrides":[],"src":"457:8:3"},"parameters":{"id":2434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2431,"mutability":"mutable","name":"sender","nameLocation":"420:6:3","nodeType":"VariableDeclaration","scope":2454,"src":"412:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2430,"name":"address","nodeType":"ElementaryTypeName","src":"412:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2433,"mutability":"mutable","name":"key","nameLocation":"436:3:3","nodeType":"VariableDeclaration","scope":2454,"src":"428:11:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":2432,"name":"uint192","nodeType":"ElementaryTypeName","src":"428:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"411:29:3"},"returnParameters":{"id":2438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2437,"mutability":"mutable","name":"nonce","nameLocation":"483:5:3","nodeType":"VariableDeclaration","scope":2454,"src":"475:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2436,"name":"uint256","nodeType":"ElementaryTypeName","src":"475:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"474:15:3"},"scope":2506,"src":"394:175:3","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[3584],"body":{"id":2468,"nodeType":"Block","src":"883:55:3","statements":[{"expression":{"id":2466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"893:38:3","subExpression":{"baseExpression":{"baseExpression":{"id":2460,"name":"nonceSequenceNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2428,"src":"893:19:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"}},"id":2464,"indexExpression":{"expression":{"id":2461,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"913:3:3","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"917:6:3","memberName":"sender","nodeType":"MemberAccess","src":"913:10:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"893:31:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"}},"id":2465,"indexExpression":{"id":2463,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2456,"src":"925:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"893:36:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2467,"nodeType":"ExpressionStatement","src":"893:38:3"}]},"functionSelector":"0bd28e3b","id":2469,"implemented":true,"kind":"function","modifiers":[],"name":"incrementNonce","nameLocation":"839:14:3","nodeType":"FunctionDefinition","overrides":{"id":2458,"nodeType":"OverrideSpecifier","overrides":[],"src":"874:8:3"},"parameters":{"id":2457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2456,"mutability":"mutable","name":"key","nameLocation":"862:3:3","nodeType":"VariableDeclaration","scope":2469,"src":"854:11:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":2455,"name":"uint192","nodeType":"ElementaryTypeName","src":"854:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"853:13:3"},"returnParameters":{"id":2459,"nodeType":"ParameterList","parameters":[],"src":"883:0:3"},"scope":2506,"src":"830:108:3","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2504,"nodeType":"Block","src":"1275:146:3","statements":[{"assignments":[2480],"declarations":[{"constant":false,"id":2480,"mutability":"mutable","name":"key","nameLocation":"1294:3:3","nodeType":"VariableDeclaration","scope":2504,"src":"1286:11:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":2479,"name":"uint192","nodeType":"ElementaryTypeName","src":"1286:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"id":2487,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2483,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2474,"src":"1308:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":2484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1317:2:3","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"1308:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1300:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":2481,"name":"uint192","nodeType":"ElementaryTypeName","src":"1300:7:3","typeDescriptions":{}}},"id":2486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1300:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"nodeType":"VariableDeclarationStatement","src":"1286:34:3"},{"assignments":[2489],"declarations":[{"constant":false,"id":2489,"mutability":"mutable","name":"seq","nameLocation":"1337:3:3","nodeType":"VariableDeclaration","scope":2504,"src":"1330:10:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2488,"name":"uint64","nodeType":"ElementaryTypeName","src":"1330:6:3","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":2494,"initialValue":{"arguments":[{"id":2492,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2474,"src":"1350:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2491,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1343:6:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":2490,"name":"uint64","nodeType":"ElementaryTypeName","src":"1343:6:3","typeDescriptions":{}}},"id":2493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1343:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"1330:26:3"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1373:34:3","subExpression":{"baseExpression":{"baseExpression":{"id":2495,"name":"nonceSequenceNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2428,"src":"1373:19:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"}},"id":2497,"indexExpression":{"id":2496,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2472,"src":"1393:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1373:27:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"}},"id":2499,"indexExpression":{"id":2498,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2480,"src":"1401:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1373:32:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2501,"name":"seq","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2489,"src":"1411:3:3","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"1373:41:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2478,"id":2503,"nodeType":"Return","src":"1366:48:3"}]},"documentation":{"id":2470,"nodeType":"StructuredDocumentation","src":"944:238:3","text":" validate nonce uniqueness for this account.\n called just after validateUserOp()\n @return true if the nonce was incremented successfully.\n         false if the current nonce doesn't match the given one."},"id":2505,"implemented":true,"kind":"function","modifiers":[],"name":"_validateAndUpdateNonce","nameLocation":"1196:23:3","nodeType":"FunctionDefinition","parameters":{"id":2475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2472,"mutability":"mutable","name":"sender","nameLocation":"1228:6:3","nodeType":"VariableDeclaration","scope":2505,"src":"1220:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2471,"name":"address","nodeType":"ElementaryTypeName","src":"1220:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2474,"mutability":"mutable","name":"nonce","nameLocation":"1244:5:3","nodeType":"VariableDeclaration","scope":2505,"src":"1236:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2473,"name":"uint256","nodeType":"ElementaryTypeName","src":"1236:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1219:31:3"},"returnParameters":{"id":2478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2505,"src":"1269:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2476,"name":"bool","nodeType":"ElementaryTypeName","src":"1269:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1268:6:3"},"scope":2506,"src":"1187:234:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":2507,"src":"147:1277:3","usedErrors":[],"usedEvents":[]}],"src":"36:1389:3"},"id":3},"@account-abstraction/contracts/core/SenderCreator.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/SenderCreator.sol","exportedSymbols":{"SenderCreator":[2553]},"id":2554,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2508,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:4"},{"abstract":false,"baseContracts":[],"canonicalName":"SenderCreator","contractDependencies":[],"contractKind":"contract","documentation":{"id":2509,"nodeType":"StructuredDocumentation","src":"62:142:4","text":" Helper contract for EntryPoint, to call userOp.initCode from a \"neutral\" address,\n which is explicitly not the entryPoint itself."},"fullyImplemented":true,"id":2553,"linearizedBaseContracts":[2553],"name":"SenderCreator","nameLocation":"214:13:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":2551,"nodeType":"Block","src":"671:558:4","statements":[{"assignments":[2518],"declarations":[{"constant":false,"id":2518,"mutability":"mutable","name":"factory","nameLocation":"689:7:4","nodeType":"VariableDeclaration","scope":2551,"src":"681:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2517,"name":"address","nodeType":"ElementaryTypeName","src":"681:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2529,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"id":2523,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2512,"src":"715:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"3230","id":2525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"726:2:4","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"id":2526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"715:14:4","startExpression":{"hexValue":"30","id":2524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"724:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":2522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"707:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":2521,"name":"bytes20","nodeType":"ElementaryTypeName","src":"707:7:4","typeDescriptions":{}}},"id":2527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"707:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":2520,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"699:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2519,"name":"address","nodeType":"ElementaryTypeName","src":"699:7:4","typeDescriptions":{}}},"id":2528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"699:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"681:50:4"},{"assignments":[2531],"declarations":[{"constant":false,"id":2531,"mutability":"mutable","name":"initCallData","nameLocation":"754:12:4","nodeType":"VariableDeclaration","scope":2551,"src":"741:25:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2530,"name":"bytes","nodeType":"ElementaryTypeName","src":"741:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2535,"initialValue":{"baseExpression":{"id":2532,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2512,"src":"769:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"769:13:4","startExpression":{"hexValue":"3230","id":2533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"778:2:4","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"nodeType":"VariableDeclarationStatement","src":"741:41:4"},{"assignments":[2537],"declarations":[{"constant":false,"id":2537,"mutability":"mutable","name":"success","nameLocation":"797:7:4","nodeType":"VariableDeclaration","scope":2551,"src":"792:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2536,"name":"bool","nodeType":"ElementaryTypeName","src":"792:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2538,"nodeType":"VariableDeclarationStatement","src":"792:12:4"},{"AST":{"nativeSrc":"888:268:4","nodeType":"YulBlock","src":"888:268:4","statements":[{"nativeSrc":"902:213:4","nodeType":"YulAssignment","src":"902:213:4","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"935:3:4","nodeType":"YulIdentifier","src":"935:3:4"},"nativeSrc":"935:5:4","nodeType":"YulFunctionCall","src":"935:5:4"},{"name":"factory","nativeSrc":"958:7:4","nodeType":"YulIdentifier","src":"958:7:4"},{"kind":"number","nativeSrc":"983:1:4","nodeType":"YulLiteral","src":"983:1:4","type":"","value":"0"},{"arguments":[{"name":"initCallData","nativeSrc":"1006:12:4","nodeType":"YulIdentifier","src":"1006:12:4"},{"kind":"number","nativeSrc":"1020:4:4","nodeType":"YulLiteral","src":"1020:4:4","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1002:3:4","nodeType":"YulIdentifier","src":"1002:3:4"},"nativeSrc":"1002:23:4","nodeType":"YulFunctionCall","src":"1002:23:4"},{"arguments":[{"name":"initCallData","nativeSrc":"1049:12:4","nodeType":"YulIdentifier","src":"1049:12:4"}],"functionName":{"name":"mload","nativeSrc":"1043:5:4","nodeType":"YulIdentifier","src":"1043:5:4"},"nativeSrc":"1043:19:4","nodeType":"YulFunctionCall","src":"1043:19:4"},{"kind":"number","nativeSrc":"1080:1:4","nodeType":"YulLiteral","src":"1080:1:4","type":"","value":"0"},{"kind":"number","nativeSrc":"1099:2:4","nodeType":"YulLiteral","src":"1099:2:4","type":"","value":"32"}],"functionName":{"name":"call","nativeSrc":"913:4:4","nodeType":"YulIdentifier","src":"913:4:4"},"nativeSrc":"913:202:4","nodeType":"YulFunctionCall","src":"913:202:4"},"variableNames":[{"name":"success","nativeSrc":"902:7:4","nodeType":"YulIdentifier","src":"902:7:4"}]},{"nativeSrc":"1128:18:4","nodeType":"YulAssignment","src":"1128:18:4","value":{"arguments":[{"kind":"number","nativeSrc":"1144:1:4","nodeType":"YulLiteral","src":"1144:1:4","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"1138:5:4","nodeType":"YulIdentifier","src":"1138:5:4"},"nativeSrc":"1138:8:4","nodeType":"YulFunctionCall","src":"1138:8:4"},"variableNames":[{"name":"sender","nativeSrc":"1128:6:4","nodeType":"YulIdentifier","src":"1128:6:4"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":2518,"isOffset":false,"isSlot":false,"src":"958:7:4","valueSize":1},{"declaration":2531,"isOffset":false,"isSlot":false,"src":"1006:12:4","valueSize":1},{"declaration":2531,"isOffset":false,"isSlot":false,"src":"1049:12:4","valueSize":1},{"declaration":2515,"isOffset":false,"isSlot":false,"src":"1128:6:4","valueSize":1},{"declaration":2537,"isOffset":false,"isSlot":false,"src":"902:7:4","valueSize":1}],"flags":["memory-safe"],"id":2539,"nodeType":"InlineAssembly","src":"863:293:4"},{"condition":{"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1169:8:4","subExpression":{"id":2540,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2537,"src":"1170:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2550,"nodeType":"IfStatement","src":"1165:58:4","trueBody":{"id":2549,"nodeType":"Block","src":"1179:44:4","statements":[{"expression":{"id":2547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2542,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2515,"src":"1193:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":2545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1210:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2544,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1202:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2543,"name":"address","nodeType":"ElementaryTypeName","src":"1202:7:4","typeDescriptions":{}}},"id":2546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1202:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1193:19:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2548,"nodeType":"ExpressionStatement","src":"1193:19:4"}]}}]},"documentation":{"id":2510,"nodeType":"StructuredDocumentation","src":"234:337:4","text":" Call the \"initCode\" factory to create and return the sender account address.\n @param initCode - The initCode value from a UserOp. contains 20 bytes of factory address,\n                   followed by calldata.\n @return sender  - The returned address of the created account, or zero address on failure."},"functionSelector":"570e1a36","id":2552,"implemented":true,"kind":"function","modifiers":[],"name":"createSender","nameLocation":"585:12:4","nodeType":"FunctionDefinition","parameters":{"id":2513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2512,"mutability":"mutable","name":"initCode","nameLocation":"622:8:4","nodeType":"VariableDeclaration","scope":2552,"src":"607:23:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2511,"name":"bytes","nodeType":"ElementaryTypeName","src":"607:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"597:39:4"},"returnParameters":{"id":2516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2515,"mutability":"mutable","name":"sender","nameLocation":"663:6:4","nodeType":"VariableDeclaration","scope":2552,"src":"655:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2514,"name":"address","nodeType":"ElementaryTypeName","src":"655:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"654:16:4"},"scope":2553,"src":"576:653:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2554,"src":"205:1026:4","usedErrors":[],"usedEvents":[]}],"src":"36:1196:4"},"id":4},"@account-abstraction/contracts/core/StakeManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/StakeManager.sol","exportedSymbols":{"IStakeManager":[3726],"StakeManager":[2961]},"id":2962,"license":"GPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":2555,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"41:24:5"},{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","file":"../interfaces/IStakeManager.sol","id":2556,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2962,"sourceUnit":3727,"src":"67:41:5","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2558,"name":"IStakeManager","nameLocations":["435:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":3726,"src":"435:13:5"},"id":2559,"nodeType":"InheritanceSpecifier","src":"435:13:5"}],"canonicalName":"StakeManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":2557,"nodeType":"StructuredDocumentation","src":"194:206:5","text":" Manage deposits and stakes.\n Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account).\n Stake is value locked for at least \"unstakeDelay\" by a paymaster."},"fullyImplemented":true,"id":2961,"linearizedBaseContracts":[2961,3726],"name":"StakeManager","nameLocation":"419:12:5","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":2560,"nodeType":"StructuredDocumentation","src":"455:47:5","text":"maps paymaster to their deposits and stakes"},"functionSelector":"fc7e286d","id":2565,"mutability":"mutable","name":"deposits","nameLocation":"546:8:5","nodeType":"VariableDeclaration","scope":2961,"src":"507:47:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo)"},"typeName":{"id":2564,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2561,"name":"address","nodeType":"ElementaryTypeName","src":"515:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"507:31:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2563,"nodeType":"UserDefinedTypeName","pathNode":{"id":2562,"name":"DepositInfo","nameLocations":["526:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"526:11:5"},"referencedDeclaration":3673,"src":"526:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}}},"visibility":"public"},{"baseFunctions":[3687],"body":{"id":2578,"nodeType":"Block","src":"696:41:5","statements":[{"expression":{"baseExpression":{"id":2574,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"713:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2576,"indexExpression":{"id":2575,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2568,"src":"722:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"713:17:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"functionReturnParameters":2573,"id":2577,"nodeType":"Return","src":"706:24:5"}]},"documentation":{"id":2566,"nodeType":"StructuredDocumentation","src":"561:29:5","text":"@inheritdoc IStakeManager"},"functionSelector":"5287ce12","id":2579,"implemented":true,"kind":"function","modifiers":[],"name":"getDepositInfo","nameLocation":"604:14:5","nodeType":"FunctionDefinition","parameters":{"id":2569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2568,"mutability":"mutable","name":"account","nameLocation":"636:7:5","nodeType":"VariableDeclaration","scope":2579,"src":"628:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2567,"name":"address","nodeType":"ElementaryTypeName","src":"628:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"618:31:5"},"returnParameters":{"id":2573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2572,"mutability":"mutable","name":"info","nameLocation":"690:4:5","nodeType":"VariableDeclaration","scope":2579,"src":"671:23:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_memory_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2571,"nodeType":"UserDefinedTypeName","pathNode":{"id":2570,"name":"DepositInfo","nameLocations":["671:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"671:11:5"},"referencedDeclaration":3673,"src":"671:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"src":"670:25:5"},"scope":2961,"src":"595:142:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2609,"nodeType":"Block","src":"953:165:5","statements":[{"assignments":[2590],"declarations":[{"constant":false,"id":2590,"mutability":"mutable","name":"depositInfo","nameLocation":"983:11:5","nodeType":"VariableDeclaration","scope":2609,"src":"963:31:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2589,"nodeType":"UserDefinedTypeName","pathNode":{"id":2588,"name":"DepositInfo","nameLocations":["963:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"963:11:5"},"referencedDeclaration":3673,"src":"963:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2594,"initialValue":{"baseExpression":{"id":2591,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"997:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2593,"indexExpression":{"id":2592,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2582,"src":"1006:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"997:14:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"963:48:5"},{"expression":{"id":2600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2595,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2586,"src":"1021:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_memory_ptr","typeString":"struct IStakeManager.StakeInfo memory"}},"id":2597,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1026:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3675,"src":"1021:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":2598,"name":"depositInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"1034:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2599,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1046:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"1034:17:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"1021:30:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2601,"nodeType":"ExpressionStatement","src":"1021:30:5"},{"expression":{"id":2607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2602,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2586,"src":"1061:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_memory_ptr","typeString":"struct IStakeManager.StakeInfo memory"}},"id":2604,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1066:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3677,"src":"1061:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":2605,"name":"depositInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"1084:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2606,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1096:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"1084:27:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"1061:50:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2608,"nodeType":"ExpressionStatement","src":"1061:50:5"}]},"documentation":{"id":2580,"nodeType":"StructuredDocumentation","src":"743:108:5","text":" Internal method to return just the stake info.\n @param addr - The account to query."},"id":2610,"implemented":true,"kind":"function","modifiers":[],"name":"_getStakeInfo","nameLocation":"865:13:5","nodeType":"FunctionDefinition","parameters":{"id":2583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2582,"mutability":"mutable","name":"addr","nameLocation":"896:4:5","nodeType":"VariableDeclaration","scope":2610,"src":"888:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2581,"name":"address","nodeType":"ElementaryTypeName","src":"888:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"878:28:5"},"returnParameters":{"id":2587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2586,"mutability":"mutable","name":"info","nameLocation":"947:4:5","nodeType":"VariableDeclaration","scope":2610,"src":"930:21:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_memory_ptr","typeString":"struct IStakeManager.StakeInfo"},"typeName":{"id":2585,"nodeType":"UserDefinedTypeName","pathNode":{"id":2584,"name":"StakeInfo","nameLocations":["930:9:5"],"nodeType":"IdentifierPath","referencedDeclaration":3678,"src":"930:9:5"},"referencedDeclaration":3678,"src":"930:9:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_storage_ptr","typeString":"struct IStakeManager.StakeInfo"}},"visibility":"internal"}],"src":"929:23:5"},"scope":2961,"src":"856:262:5","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[3695],"body":{"id":2623,"nodeType":"Block","src":"1224:49:5","statements":[{"expression":{"expression":{"baseExpression":{"id":2618,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"1241:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2620,"indexExpression":{"id":2619,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2613,"src":"1250:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1241:17:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"id":2621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1259:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"1241:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2617,"id":2622,"nodeType":"Return","src":"1234:32:5"}]},"documentation":{"id":2611,"nodeType":"StructuredDocumentation","src":"1124:29:5","text":"@inheritdoc IStakeManager"},"functionSelector":"70a08231","id":2624,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"1167:9:5","nodeType":"FunctionDefinition","parameters":{"id":2614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2613,"mutability":"mutable","name":"account","nameLocation":"1185:7:5","nodeType":"VariableDeclaration","scope":2624,"src":"1177:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2612,"name":"address","nodeType":"ElementaryTypeName","src":"1177:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1176:17:5"},"returnParameters":{"id":2617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2624,"src":"1215:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2615,"name":"uint256","nodeType":"ElementaryTypeName","src":"1215:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1214:9:5"},"scope":2961,"src":"1158:115:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2632,"nodeType":"Block","src":"1306:38:5","statements":[{"expression":{"arguments":[{"expression":{"id":2628,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1326:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1330:6:5","memberName":"sender","nodeType":"MemberAccess","src":"1326:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2627,"name":"depositTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2686,"src":"1316:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":2630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1316:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2631,"nodeType":"ExpressionStatement","src":"1316:21:5"}]},"id":2633,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2625,"nodeType":"ParameterList","parameters":[],"src":"1286:2:5"},"returnParameters":{"id":2626,"nodeType":"ParameterList","parameters":[],"src":"1306:0:5"},"scope":2961,"src":"1279:65:5","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":2665,"nodeType":"Block","src":"1646:172:5","statements":[{"assignments":[2645],"declarations":[{"constant":false,"id":2645,"mutability":"mutable","name":"info","nameLocation":"1676:4:5","nodeType":"VariableDeclaration","scope":2665,"src":"1656:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2644,"nodeType":"UserDefinedTypeName","pathNode":{"id":2643,"name":"DepositInfo","nameLocations":["1656:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"1656:11:5"},"referencedDeclaration":3673,"src":"1656:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2649,"initialValue":{"baseExpression":{"id":2646,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"1683:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2648,"indexExpression":{"id":2647,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2636,"src":"1692:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1683:17:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1656:44:5"},{"assignments":[2651],"declarations":[{"constant":false,"id":2651,"mutability":"mutable","name":"newAmount","nameLocation":"1718:9:5","nodeType":"VariableDeclaration","scope":2665,"src":"1710:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2650,"name":"uint256","nodeType":"ElementaryTypeName","src":"1710:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2656,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2652,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2645,"src":"1730:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2653,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1735:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"1730:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2654,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2638,"src":"1745:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1730:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1710:41:5"},{"expression":{"id":2661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2657,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2645,"src":"1761:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2659,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1766:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"1761:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2660,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2651,"src":"1776:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1761:24:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2662,"nodeType":"ExpressionStatement","src":"1761:24:5"},{"expression":{"id":2663,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2651,"src":"1802:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2642,"id":2664,"nodeType":"Return","src":"1795:16:5"}]},"documentation":{"id":2634,"nodeType":"StructuredDocumentation","src":"1350:204:5","text":" Increments an account's deposit.\n @param account - The account to increment.\n @param amount  - The amount to increment by.\n @return the updated deposit of this account"},"id":2666,"implemented":true,"kind":"function","modifiers":[],"name":"_incrementDeposit","nameLocation":"1568:17:5","nodeType":"FunctionDefinition","parameters":{"id":2639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2636,"mutability":"mutable","name":"account","nameLocation":"1594:7:5","nodeType":"VariableDeclaration","scope":2666,"src":"1586:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2635,"name":"address","nodeType":"ElementaryTypeName","src":"1586:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2638,"mutability":"mutable","name":"amount","nameLocation":"1611:6:5","nodeType":"VariableDeclaration","scope":2666,"src":"1603:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2637,"name":"uint256","nodeType":"ElementaryTypeName","src":"1603:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1585:33:5"},"returnParameters":{"id":2642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2641,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2666,"src":"1637:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2640,"name":"uint256","nodeType":"ElementaryTypeName","src":"1637:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1636:9:5"},"scope":2961,"src":"1559:259:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[3701],"body":{"id":2685,"nodeType":"Block","src":"1994:120:5","statements":[{"assignments":[2673],"declarations":[{"constant":false,"id":2673,"mutability":"mutable","name":"newDeposit","nameLocation":"2012:10:5","nodeType":"VariableDeclaration","scope":2685,"src":"2004:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2672,"name":"uint256","nodeType":"ElementaryTypeName","src":"2004:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2679,"initialValue":{"arguments":[{"id":2675,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"2043:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":2676,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2052:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2056:5:5","memberName":"value","nodeType":"MemberAccess","src":"2052:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2674,"name":"_incrementDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"2025:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) returns (uint256)"}},"id":2678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2025:37:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2004:58:5"},{"eventCall":{"arguments":[{"id":2681,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"2087:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2682,"name":"newDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2673,"src":"2096:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2680,"name":"Deposited","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3631,"src":"2077:9:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2077:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2684,"nodeType":"EmitStatement","src":"2072:35:5"}]},"documentation":{"id":2667,"nodeType":"StructuredDocumentation","src":"1824:106:5","text":" Add to the deposit of the given account.\n @param account - The account to add to."},"functionSelector":"b760faf9","id":2686,"implemented":true,"kind":"function","modifiers":[],"name":"depositTo","nameLocation":"1944:9:5","nodeType":"FunctionDefinition","parameters":{"id":2670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2669,"mutability":"mutable","name":"account","nameLocation":"1962:7:5","nodeType":"VariableDeclaration","scope":2686,"src":"1954:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2668,"name":"address","nodeType":"ElementaryTypeName","src":"1954:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1953:17:5"},"returnParameters":{"id":2671,"nodeType":"ParameterList","parameters":[],"src":"1994:0:5"},"scope":2961,"src":"1935:179:5","stateMutability":"payable","virtual":true,"visibility":"public"},{"baseFunctions":[3707],"body":{"id":2765,"nodeType":"Block","src":"2382:649:5","statements":[{"assignments":[2694],"declarations":[{"constant":false,"id":2694,"mutability":"mutable","name":"info","nameLocation":"2412:4:5","nodeType":"VariableDeclaration","scope":2765,"src":"2392:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2693,"nodeType":"UserDefinedTypeName","pathNode":{"id":2692,"name":"DepositInfo","nameLocations":["2392:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"2392:11:5"},"referencedDeclaration":3673,"src":"2392:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2699,"initialValue":{"baseExpression":{"id":2695,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"2419:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2698,"indexExpression":{"expression":{"id":2696,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2428:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2432:6:5","memberName":"sender","nodeType":"MemberAccess","src":"2428:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2419:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2392:47:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":2703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2701,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"2457:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2475:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2457:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6d757374207370656369667920756e7374616b652064656c6179","id":2704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2478:28:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b","typeString":"literal_string \"must specify unstake delay\""},"value":"must specify unstake delay"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b","typeString":"literal_string \"must specify unstake delay\""}],"id":2700,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2449:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2449:58:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2706,"nodeType":"ExpressionStatement","src":"2449:58:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":2711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2708,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"2538:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":2709,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2694,"src":"2557:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2710,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2562:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"2557:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"2538:39:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"63616e6e6f7420646563726561736520756e7374616b652074696d65","id":2712,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2591:30:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7","typeString":"literal_string \"cannot decrease unstake time\""},"value":"cannot decrease unstake time"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7","typeString":"literal_string \"cannot decrease unstake time\""}],"id":2707,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2517:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2517:114:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2714,"nodeType":"ExpressionStatement","src":"2517:114:5"},{"assignments":[2716],"declarations":[{"constant":false,"id":2716,"mutability":"mutable","name":"stake","nameLocation":"2649:5:5","nodeType":"VariableDeclaration","scope":2765,"src":"2641:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2715,"name":"uint256","nodeType":"ElementaryTypeName","src":"2641:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2722,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2717,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2694,"src":"2657:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2662:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"2657:10:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2719,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2670:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2674:5:5","memberName":"value","nodeType":"MemberAccess","src":"2670:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2657:22:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2641:38:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2724,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"2697:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2705:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2697:9:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f207374616b6520737065636966696564","id":2727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2708:20:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8","typeString":"literal_string \"no stake specified\""},"value":"no stake specified"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8","typeString":"literal_string \"no stake specified\""}],"id":2723,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2689:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2689:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2729,"nodeType":"ExpressionStatement","src":"2689:40:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2731,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"2747:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":2734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2761:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":2733,"name":"uint112","nodeType":"ElementaryTypeName","src":"2761:7:5","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":2732,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2756:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2756:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":2736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2770:3:5","memberName":"max","nodeType":"MemberAccess","src":"2756:17:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"2747:26:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"7374616b65206f766572666c6f77","id":2738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2775:16:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8","typeString":"literal_string \"stake overflow\""},"value":"stake overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8","typeString":"literal_string \"stake overflow\""}],"id":2730,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2739:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:53:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2740,"nodeType":"ExpressionStatement","src":"2739:53:5"},{"expression":{"id":2756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2741,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"2802:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2744,"indexExpression":{"expression":{"id":2742,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2811:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2815:6:5","memberName":"sender","nodeType":"MemberAccess","src":"2811:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2802:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":2746,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2694,"src":"2850:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2747,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2855:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"2850:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":2748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2876:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":2751,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"2902:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2894:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":2749,"name":"uint112","nodeType":"ElementaryTypeName","src":"2894:7:5","typeDescriptions":{}}},"id":2752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2894:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},{"id":2753,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"2922:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":2754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2951:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint112","typeString":"uint112"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2745,"name":"DepositInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3673,"src":"2825:11:5","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DepositInfo_$3673_storage_ptr_$","typeString":"type(struct IStakeManager.DepositInfo storage pointer)"}},"id":2755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2825:137:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_memory_ptr","typeString":"struct IStakeManager.DepositInfo memory"}},"src":"2802:160:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"id":2757,"nodeType":"ExpressionStatement","src":"2802:160:5"},{"eventCall":{"arguments":[{"expression":{"id":2759,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2989:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2993:6:5","memberName":"sender","nodeType":"MemberAccess","src":"2989:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2761,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"3001:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2762,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"3008:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":2758,"name":"StakeLocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"2977:11:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":2763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2977:47:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2764,"nodeType":"EmitStatement","src":"2972:52:5"}]},"documentation":{"id":2687,"nodeType":"StructuredDocumentation","src":"2120:200:5","text":" Add to the account's stake - amount and delay\n any pending unstake is first cancelled.\n @param unstakeDelaySec The new lock duration before the deposit can be withdrawn."},"functionSelector":"0396cb60","id":2766,"implemented":true,"kind":"function","modifiers":[],"name":"addStake","nameLocation":"2334:8:5","nodeType":"FunctionDefinition","parameters":{"id":2690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2689,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"2350:15:5","nodeType":"VariableDeclaration","scope":2766,"src":"2343:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":2688,"name":"uint32","nodeType":"ElementaryTypeName","src":"2343:6:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2342:24:5"},"returnParameters":{"id":2691,"nodeType":"ParameterList","parameters":[],"src":"2382:0:5"},"scope":2961,"src":"2325:706:5","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[3711],"body":{"id":2821,"nodeType":"Block","src":"3202:376:5","statements":[{"assignments":[2772],"declarations":[{"constant":false,"id":2772,"mutability":"mutable","name":"info","nameLocation":"3232:4:5","nodeType":"VariableDeclaration","scope":2821,"src":"3212:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2771,"nodeType":"UserDefinedTypeName","pathNode":{"id":2770,"name":"DepositInfo","nameLocations":["3212:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"3212:11:5"},"referencedDeclaration":3673,"src":"3212:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2777,"initialValue":{"baseExpression":{"id":2773,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"3239:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2776,"indexExpression":{"expression":{"id":2774,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3248:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3252:6:5","memberName":"sender","nodeType":"MemberAccess","src":"3248:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3239:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"3212:47:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":2782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2779,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3277:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2780,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3282:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"3277:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3301:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3277:25:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f74207374616b6564","id":2783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3304:12:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12","typeString":"literal_string \"not staked\""},"value":"not staked"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12","typeString":"literal_string \"not staked\""}],"id":2778,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3269:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3269:48:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2785,"nodeType":"ExpressionStatement","src":"3269:48:5"},{"expression":{"arguments":[{"expression":{"id":2787,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3335:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2788,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3340:6:5","memberName":"staked","nodeType":"MemberAccess","referencedDeclaration":3666,"src":"3335:11:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"616c726561647920756e7374616b696e67","id":2789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3348:19:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8","typeString":"literal_string \"already unstaking\""},"value":"already unstaking"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8","typeString":"literal_string \"already unstaking\""}],"id":2786,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3327:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3327:41:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2791,"nodeType":"ExpressionStatement","src":"3327:41:5"},{"assignments":[2793],"declarations":[{"constant":false,"id":2793,"mutability":"mutable","name":"withdrawTime","nameLocation":"3385:12:5","nodeType":"VariableDeclaration","scope":2821,"src":"3378:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2792,"name":"uint48","nodeType":"ElementaryTypeName","src":"3378:6:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":2802,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":2801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2796,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3407:5:5","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3413:9:5","memberName":"timestamp","nodeType":"MemberAccess","src":"3407:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3400:6:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2794,"name":"uint48","nodeType":"ElementaryTypeName","src":"3400:6:5","typeDescriptions":{}}},"id":2798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3400:23:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2799,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3426:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2800,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3431:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"3426:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3400:46:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"3378:68:5"},{"expression":{"id":2807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2803,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3456:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2805,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3461:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"3456:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2806,"name":"withdrawTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2793,"src":"3476:12:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3456:32:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":2808,"nodeType":"ExpressionStatement","src":"3456:32:5"},{"expression":{"id":2813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2809,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3498:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3503:6:5","memberName":"staked","nodeType":"MemberAccess","referencedDeclaration":3666,"src":"3498:11:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":2812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3512:5:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3498:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2814,"nodeType":"ExpressionStatement","src":"3498:19:5"},{"eventCall":{"arguments":[{"expression":{"id":2816,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3546:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3550:6:5","memberName":"sender","nodeType":"MemberAccess","src":"3546:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2818,"name":"withdrawTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2793,"src":"3558:12:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2815,"name":"StakeUnlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3653,"src":"3532:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3532:39:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2820,"nodeType":"EmitStatement","src":"3527:44:5"}]},"documentation":{"id":2767,"nodeType":"StructuredDocumentation","src":"3037:128:5","text":" Attempt to unlock the stake.\n The value can be withdrawn (using withdrawStake) after the unstake delay."},"functionSelector":"bb9fe6bf","id":2822,"implemented":true,"kind":"function","modifiers":[],"name":"unlockStake","nameLocation":"3179:11:5","nodeType":"FunctionDefinition","parameters":{"id":2768,"nodeType":"ParameterList","parameters":[],"src":"3190:2:5"},"returnParameters":{"id":2769,"nodeType":"ParameterList","parameters":[],"src":"3202:0:5"},"scope":2961,"src":"3170:408:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3717],"body":{"id":2904,"nodeType":"Block","src":"3851:619:5","statements":[{"assignments":[2830],"declarations":[{"constant":false,"id":2830,"mutability":"mutable","name":"info","nameLocation":"3881:4:5","nodeType":"VariableDeclaration","scope":2904,"src":"3861:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2829,"nodeType":"UserDefinedTypeName","pathNode":{"id":2828,"name":"DepositInfo","nameLocations":["3861:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"3861:11:5"},"referencedDeclaration":3673,"src":"3861:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2835,"initialValue":{"baseExpression":{"id":2831,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"3888:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2834,"indexExpression":{"expression":{"id":2832,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3897:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3901:6:5","memberName":"sender","nodeType":"MemberAccess","src":"3897:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3888:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"3861:47:5"},{"assignments":[2837],"declarations":[{"constant":false,"id":2837,"mutability":"mutable","name":"stake","nameLocation":"3926:5:5","nodeType":"VariableDeclaration","scope":2904,"src":"3918:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2836,"name":"uint256","nodeType":"ElementaryTypeName","src":"3918:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2840,"initialValue":{"expression":{"id":2838,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"3934:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2839,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3939:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"3934:10:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"3918:26:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2842,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"3962:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3970:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3962:9:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f207374616b6520746f207769746864726177","id":2845,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3973:22:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705","typeString":"literal_string \"No stake to withdraw\""},"value":"No stake to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705","typeString":"literal_string \"No stake to withdraw\""}],"id":2841,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3954:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3954:42:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2847,"nodeType":"ExpressionStatement","src":"3954:42:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":2852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2849,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4014:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2850,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4019:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"4014:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4034:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4014:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6d7573742063616c6c20756e6c6f636b5374616b652829206669727374","id":2853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4037:31:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5","typeString":"literal_string \"must call unlockStake() first\""},"value":"must call unlockStake() first"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5","typeString":"literal_string \"must call unlockStake() first\""}],"id":2848,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4006:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4006:63:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2855,"nodeType":"ExpressionStatement","src":"4006:63:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2857,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4100:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2858,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4105:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"4100:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":2859,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4121:5:5","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4127:9:5","memberName":"timestamp","nodeType":"MemberAccess","src":"4121:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4100:36:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5374616b65207769746864726177616c206973206e6f7420647565","id":2862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4150:29:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45","typeString":"literal_string \"Stake withdrawal is not due\""},"value":"Stake withdrawal is not due"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45","typeString":"literal_string \"Stake withdrawal is not due\""}],"id":2856,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4079:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4079:110:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2864,"nodeType":"ExpressionStatement","src":"4079:110:5"},{"expression":{"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2865,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4199:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2867,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4204:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"4199:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4222:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4199:24:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":2870,"nodeType":"ExpressionStatement","src":"4199:24:5"},{"expression":{"id":2875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2871,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4233:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2873,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4238:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"4233:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4253:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4233:21:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":2876,"nodeType":"ExpressionStatement","src":"4233:21:5"},{"expression":{"id":2881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2877,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4264:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2879,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4269:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"4264:10:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4277:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4264:14:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"id":2882,"nodeType":"ExpressionStatement","src":"4264:14:5"},{"eventCall":{"arguments":[{"expression":{"id":2884,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4308:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4312:6:5","memberName":"sender","nodeType":"MemberAccess","src":"4308:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2886,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2825,"src":"4320:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":2887,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"4337:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2883,"name":"StakeWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3661,"src":"4293:14:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4293:50:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2889,"nodeType":"EmitStatement","src":"4288:55:5"},{"assignments":[2891,null],"declarations":[{"constant":false,"id":2891,"mutability":"mutable","name":"success","nameLocation":"4359:7:5","nodeType":"VariableDeclaration","scope":2904,"src":"4354:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2890,"name":"bool","nodeType":"ElementaryTypeName","src":"4354:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":2898,"initialValue":{"arguments":[{"hexValue":"","id":2896,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4406:2:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":2892,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2825,"src":"4371:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":2893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4387:4:5","memberName":"call","nodeType":"MemberAccess","src":"4371:20:5","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2894,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"4399:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4371:34:5","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:38:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4353:56:5"},{"expression":{"arguments":[{"id":2900,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2891,"src":"4427:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6661696c656420746f207769746864726177207374616b65","id":2901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4436:26:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b","typeString":"literal_string \"failed to withdraw stake\""},"value":"failed to withdraw stake"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b","typeString":"literal_string \"failed to withdraw stake\""}],"id":2899,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4419:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4419:44:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2903,"nodeType":"ExpressionStatement","src":"4419:44:5"}]},"documentation":{"id":2823,"nodeType":"StructuredDocumentation","src":"3584:197:5","text":" Withdraw from the (unlocked) stake.\n Must first call unlockStake and wait for the unstakeDelay to pass.\n @param withdrawAddress - The address to send withdrawn value."},"functionSelector":"c23a5cea","id":2905,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawStake","nameLocation":"3795:13:5","nodeType":"FunctionDefinition","parameters":{"id":2826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2825,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3825:15:5","nodeType":"VariableDeclaration","scope":2905,"src":"3809:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":2824,"name":"address","nodeType":"ElementaryTypeName","src":"3809:15:5","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"3808:33:5"},"returnParameters":{"id":2827,"nodeType":"ParameterList","parameters":[],"src":"3851:0:5"},"scope":2961,"src":"3786:684:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3725],"body":{"id":2959,"nodeType":"Block","src":"4759:388:5","statements":[{"assignments":[2915],"declarations":[{"constant":false,"id":2915,"mutability":"mutable","name":"info","nameLocation":"4789:4:5","nodeType":"VariableDeclaration","scope":2959,"src":"4769:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2914,"nodeType":"UserDefinedTypeName","pathNode":{"id":2913,"name":"DepositInfo","nameLocations":["4769:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"4769:11:5"},"referencedDeclaration":3673,"src":"4769:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2920,"initialValue":{"baseExpression":{"id":2916,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"4796:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2919,"indexExpression":{"expression":{"id":2917,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4805:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4809:6:5","memberName":"sender","nodeType":"MemberAccess","src":"4805:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4796:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"4769:47:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2922,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"4834:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":2923,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2915,"src":"4852:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2924,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4857:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"4852:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4834:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"576974686472617720616d6f756e7420746f6f206c61726765","id":2926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4866:27:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178","typeString":"literal_string \"Withdraw amount too large\""},"value":"Withdraw amount too large"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178","typeString":"literal_string \"Withdraw amount too large\""}],"id":2921,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4826:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4826:68:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2928,"nodeType":"ExpressionStatement","src":"4826:68:5"},{"expression":{"id":2936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2929,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2915,"src":"4904:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2931,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4909:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"4904:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2932,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2915,"src":"4919:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2933,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4924:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"4919:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2934,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"4934:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4919:29:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4904:44:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2937,"nodeType":"ExpressionStatement","src":"4904:44:5"},{"eventCall":{"arguments":[{"expression":{"id":2939,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4973:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4977:6:5","memberName":"sender","nodeType":"MemberAccess","src":"4973:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2941,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2908,"src":"4985:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":2942,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"5002:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2938,"name":"Withdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3639,"src":"4963:9:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4963:54:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2944,"nodeType":"EmitStatement","src":"4958:59:5"},{"assignments":[2946,null],"declarations":[{"constant":false,"id":2946,"mutability":"mutable","name":"success","nameLocation":"5033:7:5","nodeType":"VariableDeclaration","scope":2959,"src":"5028:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2945,"name":"bool","nodeType":"ElementaryTypeName","src":"5028:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":2953,"initialValue":{"arguments":[{"hexValue":"","id":2951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5089:2:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":2947,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2908,"src":"5045:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":2948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5061:4:5","memberName":"call","nodeType":"MemberAccess","src":"5045:20:5","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2949,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"5073:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5045:43:5","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":2952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5045:47:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5027:65:5"},{"expression":{"arguments":[{"id":2955,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2946,"src":"5110:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6661696c656420746f207769746864726177","id":2956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5119:20:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41","typeString":"literal_string \"failed to withdraw\""},"value":"failed to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41","typeString":"literal_string \"failed to withdraw\""}],"id":2954,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5102:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5102:38:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2958,"nodeType":"ExpressionStatement","src":"5102:38:5"}]},"documentation":{"id":2906,"nodeType":"StructuredDocumentation","src":"4476:170:5","text":" Withdraw from the deposit.\n @param withdrawAddress - The address to send withdrawn value.\n @param withdrawAmount  - The amount to withdraw."},"functionSelector":"205c2878","id":2960,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawTo","nameLocation":"4660:10:5","nodeType":"FunctionDefinition","parameters":{"id":2911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2908,"mutability":"mutable","name":"withdrawAddress","nameLocation":"4696:15:5","nodeType":"VariableDeclaration","scope":2960,"src":"4680:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":2907,"name":"address","nodeType":"ElementaryTypeName","src":"4680:15:5","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":2910,"mutability":"mutable","name":"withdrawAmount","nameLocation":"4729:14:5","nodeType":"VariableDeclaration","scope":2960,"src":"4721:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2909,"name":"uint256","nodeType":"ElementaryTypeName","src":"4721:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4670:79:5"},"returnParameters":{"id":2912,"nodeType":"ParameterList","parameters":[],"src":"4759:0:5"},"scope":2961,"src":"4651:496:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2962,"src":"401:4748:5","usedErrors":[],"usedEvents":[3631,3639,3647,3653,3661]}],"src":"41:5109:5"},"id":5},"@account-abstraction/contracts/core/UserOperationLib.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","exportedSymbols":{"PackedUserOperation":[3748],"UserOperationLib":[3318],"calldataKeccak":[2397],"min":[2415]},"id":3319,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2963,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:6"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"../interfaces/PackedUserOperation.sol","id":2964,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3319,"sourceUnit":3749,"src":"104:47:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"./Helpers.sol","id":2967,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3319,"sourceUnit":2416,"src":"152:50:6","symbolAliases":[{"foreign":{"id":2965,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"160:14:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":2966,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"176:3:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"UserOperationLib","contractDependencies":[],"contractKind":"library","documentation":{"id":2968,"nodeType":"StructuredDocumentation","src":"204:77:6","text":" Utility functions helpful when working with UserOperation structs."},"fullyImplemented":true,"id":3318,"linearizedBaseContracts":[3318],"name":"UserOperationLib","nameLocation":"290:16:6","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"b29a8ff4","id":2971,"mutability":"constant","name":"PAYMASTER_VALIDATION_GAS_OFFSET","nameLocation":"338:31:6","nodeType":"VariableDeclaration","scope":3318,"src":"314:60:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2969,"name":"uint256","nodeType":"ElementaryTypeName","src":"314:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3230","id":2970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"372:2:6","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"public"},{"constant":true,"functionSelector":"25093e1b","id":2974,"mutability":"constant","name":"PAYMASTER_POSTOP_GAS_OFFSET","nameLocation":"404:27:6","nodeType":"VariableDeclaration","scope":3318,"src":"380:56:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2972,"name":"uint256","nodeType":"ElementaryTypeName","src":"380:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3336","id":2973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"434:2:6","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"36"},"visibility":"public"},{"constant":true,"functionSelector":"ede31502","id":2977,"mutability":"constant","name":"PAYMASTER_DATA_OFFSET","nameLocation":"466:21:6","nodeType":"VariableDeclaration","scope":3318,"src":"442:50:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2975,"name":"uint256","nodeType":"ElementaryTypeName","src":"442:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3532","id":2976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"490:2:6","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"visibility":"public"},{"body":{"id":2998,"nodeType":"Block","src":"708:221:6","statements":[{"assignments":[2987],"declarations":[{"constant":false,"id":2987,"mutability":"mutable","name":"data","nameLocation":"726:4:6","nodeType":"VariableDeclaration","scope":2998,"src":"718:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2986,"name":"address","nodeType":"ElementaryTypeName","src":"718:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2988,"nodeType":"VariableDeclarationStatement","src":"718:12:6"},{"AST":{"nativeSrc":"832:52:6","nodeType":"YulBlock","src":"832:52:6","statements":[{"nativeSrc":"846:28:6","nodeType":"YulAssignment","src":"846:28:6","value":{"arguments":[{"name":"userOp","nativeSrc":"867:6:6","nodeType":"YulIdentifier","src":"867:6:6"}],"functionName":{"name":"calldataload","nativeSrc":"854:12:6","nodeType":"YulIdentifier","src":"854:12:6"},"nativeSrc":"854:20:6","nodeType":"YulFunctionCall","src":"854:20:6"},"variableNames":[{"name":"data","nativeSrc":"846:4:6","nodeType":"YulIdentifier","src":"846:4:6"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":2987,"isOffset":false,"isSlot":false,"src":"846:4:6","valueSize":1},{"declaration":2981,"isOffset":false,"isSlot":false,"src":"867:6:6","valueSize":1}],"id":2989,"nodeType":"InlineAssembly","src":"823:61:6"},{"expression":{"arguments":[{"arguments":[{"id":2994,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2987,"src":"916:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"908:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2992,"name":"uint160","nodeType":"ElementaryTypeName","src":"908:7:6","typeDescriptions":{}}},"id":2995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"908:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":2991,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"900:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2990,"name":"address","nodeType":"ElementaryTypeName","src":"900:7:6","typeDescriptions":{}}},"id":2996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"900:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2985,"id":2997,"nodeType":"Return","src":"893:29:6"}]},"documentation":{"id":2978,"nodeType":"StructuredDocumentation","src":"498:103:6","text":" Get sender from user operation data.\n @param userOp - The user operation data."},"id":2999,"implemented":true,"kind":"function","modifiers":[],"name":"getSender","nameLocation":"615:9:6","nodeType":"FunctionDefinition","parameters":{"id":2982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2981,"mutability":"mutable","name":"userOp","nameLocation":"663:6:6","nodeType":"VariableDeclaration","scope":2999,"src":"634:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":2980,"nodeType":"UserDefinedTypeName","pathNode":{"id":2979,"name":"PackedUserOperation","nameLocations":["634:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"634:19:6"},"referencedDeclaration":3748,"src":"634:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"624:51:6"},"returnParameters":{"id":2985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2984,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2999,"src":"699:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2983,"name":"address","nodeType":"ElementaryTypeName","src":"699:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"698:9:6"},"scope":3318,"src":"606:323:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3033,"nodeType":"Block","src":"1235:395:6","statements":[{"id":3032,"nodeType":"UncheckedBlock","src":"1245:379:6","statements":[{"assignments":[3009,3011],"declarations":[{"constant":false,"id":3009,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"1278:20:6","nodeType":"VariableDeclaration","scope":3032,"src":"1270:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3008,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3011,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"1308:12:6","nodeType":"VariableDeclaration","scope":3032,"src":"1300:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3010,"name":"uint256","nodeType":"ElementaryTypeName","src":"1300:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3016,"initialValue":{"arguments":[{"expression":{"id":3013,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3003,"src":"1336:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1343:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"1336:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3012,"name":"unpackUints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3129,"src":"1324:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":3015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1324:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"1269:82:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3017,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3011,"src":"1369:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3018,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3009,"src":"1385:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1369:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3023,"nodeType":"IfStatement","src":"1365:173:6","trueBody":{"id":3022,"nodeType":"Block","src":"1407:131:6","statements":[{"expression":{"id":3020,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3011,"src":"1511:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3007,"id":3021,"nodeType":"Return","src":"1504:19:6"}]}},{"expression":{"arguments":[{"id":3025,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3011,"src":"1562:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3026,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3009,"src":"1576:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":3027,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1599:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1605:7:6","memberName":"basefee","nodeType":"MemberAccess","src":"1599:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1576:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3024,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"1558:3:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1558:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3007,"id":3031,"nodeType":"Return","src":"1551:62:6"}]}]},"documentation":{"id":3000,"nodeType":"StructuredDocumentation","src":"935:194:6","text":" Relayer/block builder might submit the TX with higher priorityFee,\n but the user should not pay above what he signed for.\n @param userOp - The user operation data."},"id":3034,"implemented":true,"kind":"function","modifiers":[],"name":"gasPrice","nameLocation":"1143:8:6","nodeType":"FunctionDefinition","parameters":{"id":3004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3003,"mutability":"mutable","name":"userOp","nameLocation":"1190:6:6","nodeType":"VariableDeclaration","scope":3034,"src":"1161:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3002,"nodeType":"UserDefinedTypeName","pathNode":{"id":3001,"name":"PackedUserOperation","nameLocations":["1161:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1161:19:6"},"referencedDeclaration":3748,"src":"1161:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1151:51:6"},"returnParameters":{"id":3007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3006,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3034,"src":"1226:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3005,"name":"uint256","nodeType":"ElementaryTypeName","src":"1226:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1225:9:6"},"scope":3318,"src":"1134:496:6","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3102,"nodeType":"Block","src":"1868:661:6","statements":[{"assignments":[3044],"declarations":[{"constant":false,"id":3044,"mutability":"mutable","name":"sender","nameLocation":"1886:6:6","nodeType":"VariableDeclaration","scope":3102,"src":"1878:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3043,"name":"address","nodeType":"ElementaryTypeName","src":"1878:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3048,"initialValue":{"arguments":[{"id":3046,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"1905:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":3045,"name":"getSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2999,"src":"1895:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_address_$","typeString":"function (struct PackedUserOperation calldata) pure returns (address)"}},"id":3047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1895:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"1878:34:6"},{"assignments":[3050],"declarations":[{"constant":false,"id":3050,"mutability":"mutable","name":"nonce","nameLocation":"1930:5:6","nodeType":"VariableDeclaration","scope":3102,"src":"1922:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3049,"name":"uint256","nodeType":"ElementaryTypeName","src":"1922:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3053,"initialValue":{"expression":{"id":3051,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"1938:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1945:5:6","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3733,"src":"1938:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1922:28:6"},{"assignments":[3055],"declarations":[{"constant":false,"id":3055,"mutability":"mutable","name":"hashInitCode","nameLocation":"1968:12:6","nodeType":"VariableDeclaration","scope":3102,"src":"1960:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3054,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1960:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3060,"initialValue":{"arguments":[{"expression":{"id":3057,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"1998:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2005:8:6","memberName":"initCode","nodeType":"MemberAccess","referencedDeclaration":3735,"src":"1998:15:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3056,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"1983:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":3059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1983:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1960:54:6"},{"assignments":[3062],"declarations":[{"constant":false,"id":3062,"mutability":"mutable","name":"hashCallData","nameLocation":"2032:12:6","nodeType":"VariableDeclaration","scope":3102,"src":"2024:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3061,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2024:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3067,"initialValue":{"arguments":[{"expression":{"id":3064,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2062:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2069:8:6","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":3737,"src":"2062:15:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3063,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"2047:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":3066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2047:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2024:54:6"},{"assignments":[3069],"declarations":[{"constant":false,"id":3069,"mutability":"mutable","name":"accountGasLimits","nameLocation":"2096:16:6","nodeType":"VariableDeclaration","scope":3102,"src":"2088:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3068,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2088:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3072,"initialValue":{"expression":{"id":3070,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2115:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2122:16:6","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"2115:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2088:50:6"},{"assignments":[3074],"declarations":[{"constant":false,"id":3074,"mutability":"mutable","name":"preVerificationGas","nameLocation":"2156:18:6","nodeType":"VariableDeclaration","scope":3102,"src":"2148:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3073,"name":"uint256","nodeType":"ElementaryTypeName","src":"2148:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3077,"initialValue":{"expression":{"id":3075,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2177:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2184:18:6","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":3741,"src":"2177:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2148:54:6"},{"assignments":[3079],"declarations":[{"constant":false,"id":3079,"mutability":"mutable","name":"gasFees","nameLocation":"2220:7:6","nodeType":"VariableDeclaration","scope":3102,"src":"2212:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3078,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2212:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3082,"initialValue":{"expression":{"id":3080,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2230:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2237:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"2230:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2212:32:6"},{"assignments":[3084],"declarations":[{"constant":false,"id":3084,"mutability":"mutable","name":"hashPaymasterAndData","nameLocation":"2262:20:6","nodeType":"VariableDeclaration","scope":3102,"src":"2254:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3083,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2254:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3089,"initialValue":{"arguments":[{"expression":{"id":3086,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2300:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:16:6","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"2300:23:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3085,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"2285:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":3088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2285:39:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2254:70:6"},{"expression":{"arguments":[{"id":3092,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3044,"src":"2366:6:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3093,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3050,"src":"2374:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3094,"name":"hashInitCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3055,"src":"2393:12:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3095,"name":"hashCallData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3062,"src":"2407:12:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3096,"name":"accountGasLimits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"2433:16:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3097,"name":"preVerificationGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3074,"src":"2451:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3098,"name":"gasFees","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3079,"src":"2471:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3099,"name":"hashPaymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3084,"src":"2492:20:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":3090,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2342:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3091,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2346:6:6","memberName":"encode","nodeType":"MemberAccess","src":"2342:10:6","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2342:180:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3042,"id":3101,"nodeType":"Return","src":"2335:187:6"}]},"documentation":{"id":3035,"nodeType":"StructuredDocumentation","src":"1636:119:6","text":" Pack the user operation data into bytes for hashing.\n @param userOp - The user operation data."},"id":3103,"implemented":true,"kind":"function","modifiers":[],"name":"encode","nameLocation":"1769:6:6","nodeType":"FunctionDefinition","parameters":{"id":3039,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3038,"mutability":"mutable","name":"userOp","nameLocation":"1814:6:6","nodeType":"VariableDeclaration","scope":3103,"src":"1785:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3037,"nodeType":"UserDefinedTypeName","pathNode":{"id":3036,"name":"PackedUserOperation","nameLocations":["1785:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1785:19:6"},"referencedDeclaration":3748,"src":"1785:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1775:51:6"},"returnParameters":{"id":3042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3041,"mutability":"mutable","name":"ret","nameLocation":"1863:3:6","nodeType":"VariableDeclaration","scope":3103,"src":"1850:16:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3040,"name":"bytes","nodeType":"ElementaryTypeName","src":"1850:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1849:18:6"},"scope":3318,"src":"1760:769:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3128,"nodeType":"Block","src":"2642:76:6","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":3116,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"2676:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3115,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2668:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3114,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2668:7:6","typeDescriptions":{}}},"id":3117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2668:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3113,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2660:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3112,"name":"uint128","nodeType":"ElementaryTypeName","src":"2660:7:6","typeDescriptions":{}}},"id":3118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2660:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"arguments":[{"id":3123,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"2702:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2694:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3121,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:6","typeDescriptions":{}}},"id":3124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2694:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2686:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3119,"name":"uint128","nodeType":"ElementaryTypeName","src":"2686:7:6","typeDescriptions":{}}},"id":3125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2686:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":3126,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2659:52:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint128_$_t_uint128_$","typeString":"tuple(uint128,uint128)"}},"functionReturnParameters":3111,"id":3127,"nodeType":"Return","src":"2652:59:6"}]},"id":3129,"implemented":true,"kind":"function","modifiers":[],"name":"unpackUints","nameLocation":"2544:11:6","nodeType":"FunctionDefinition","parameters":{"id":3106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3105,"mutability":"mutable","name":"packed","nameLocation":"2573:6:6","nodeType":"VariableDeclaration","scope":3129,"src":"2565:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3104,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2565:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2555:30:6"},"returnParameters":{"id":3111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3108,"mutability":"mutable","name":"high128","nameLocation":"2617:7:6","nodeType":"VariableDeclaration","scope":3129,"src":"2609:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3107,"name":"uint256","nodeType":"ElementaryTypeName","src":"2609:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3110,"mutability":"mutable","name":"low128","nameLocation":"2634:6:6","nodeType":"VariableDeclaration","scope":3129,"src":"2626:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3109,"name":"uint256","nodeType":"ElementaryTypeName","src":"2626:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2608:33:6"},"scope":3318,"src":"2535:183:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3143,"nodeType":"Block","src":"2851:46:6","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3138,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3131,"src":"2876:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2868:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3136,"name":"uint256","nodeType":"ElementaryTypeName","src":"2868:7:6","typeDescriptions":{}}},"id":3139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2868:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":3140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2887:3:6","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"2868:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3135,"id":3142,"nodeType":"Return","src":"2861:29:6"}]},"id":3144,"implemented":true,"kind":"function","modifiers":[],"name":"unpackHigh128","nameLocation":"2789:13:6","nodeType":"FunctionDefinition","parameters":{"id":3132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3131,"mutability":"mutable","name":"packed","nameLocation":"2811:6:6","nodeType":"VariableDeclaration","scope":3144,"src":"2803:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2803:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2802:16:6"},"returnParameters":{"id":3135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3134,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3144,"src":"2842:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3133,"name":"uint256","nodeType":"ElementaryTypeName","src":"2842:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:9:6"},"scope":3318,"src":"2780:117:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3159,"nodeType":"Block","src":"3029:48:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":3155,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"3062:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3154,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3054:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3153,"name":"uint256","nodeType":"ElementaryTypeName","src":"3054:7:6","typeDescriptions":{}}},"id":3156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3054:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3046:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3151,"name":"uint128","nodeType":"ElementaryTypeName","src":"3046:7:6","typeDescriptions":{}}},"id":3157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3150,"id":3158,"nodeType":"Return","src":"3039:31:6"}]},"id":3160,"implemented":true,"kind":"function","modifiers":[],"name":"unpackLow128","nameLocation":"2968:12:6","nodeType":"FunctionDefinition","parameters":{"id":3147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3146,"mutability":"mutable","name":"packed","nameLocation":"2989:6:6","nodeType":"VariableDeclaration","scope":3160,"src":"2981:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3145,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2981:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2980:16:6"},"returnParameters":{"id":3150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3149,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3160,"src":"3020:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3148,"name":"uint256","nodeType":"ElementaryTypeName","src":"3020:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3019:9:6"},"scope":3318,"src":"2959:118:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3173,"nodeType":"Block","src":"3192:53:6","statements":[{"expression":{"arguments":[{"expression":{"id":3169,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3163,"src":"3223:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3230:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"3223:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3168,"name":"unpackHigh128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3144,"src":"3209:13:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3209:29:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3167,"id":3172,"nodeType":"Return","src":"3202:36:6"}]},"id":3174,"implemented":true,"kind":"function","modifiers":[],"name":"unpackMaxPriorityFeePerGas","nameLocation":"3092:26:6","nodeType":"FunctionDefinition","parameters":{"id":3164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3163,"mutability":"mutable","name":"userOp","nameLocation":"3148:6:6","nodeType":"VariableDeclaration","scope":3174,"src":"3119:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3162,"nodeType":"UserDefinedTypeName","pathNode":{"id":3161,"name":"PackedUserOperation","nameLocations":["3119:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3119:19:6"},"referencedDeclaration":3748,"src":"3119:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3118:37:6"},"returnParameters":{"id":3167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3166,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3174,"src":"3183:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3165,"name":"uint256","nodeType":"ElementaryTypeName","src":"3183:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3182:9:6"},"scope":3318,"src":"3083:162:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3187,"nodeType":"Block","src":"3352:52:6","statements":[{"expression":{"arguments":[{"expression":{"id":3183,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3177,"src":"3382:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3389:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"3382:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3182,"name":"unpackLow128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"3369:12:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3369:28:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3181,"id":3186,"nodeType":"Return","src":"3362:35:6"}]},"id":3188,"implemented":true,"kind":"function","modifiers":[],"name":"unpackMaxFeePerGas","nameLocation":"3260:18:6","nodeType":"FunctionDefinition","parameters":{"id":3178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3177,"mutability":"mutable","name":"userOp","nameLocation":"3308:6:6","nodeType":"VariableDeclaration","scope":3188,"src":"3279:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3176,"nodeType":"UserDefinedTypeName","pathNode":{"id":3175,"name":"PackedUserOperation","nameLocations":["3279:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3279:19:6"},"referencedDeclaration":3748,"src":"3279:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3278:37:6"},"returnParameters":{"id":3181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3188,"src":"3343:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3179,"name":"uint256","nodeType":"ElementaryTypeName","src":"3343:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3342:9:6"},"scope":3318,"src":"3251:153:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3201,"nodeType":"Block","src":"3519:62:6","statements":[{"expression":{"arguments":[{"expression":{"id":3197,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3191,"src":"3550:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3557:16:6","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"3550:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3196,"name":"unpackHigh128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3144,"src":"3536:13:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3536:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3195,"id":3200,"nodeType":"Return","src":"3529:45:6"}]},"id":3202,"implemented":true,"kind":"function","modifiers":[],"name":"unpackVerificationGasLimit","nameLocation":"3419:26:6","nodeType":"FunctionDefinition","parameters":{"id":3192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3191,"mutability":"mutable","name":"userOp","nameLocation":"3475:6:6","nodeType":"VariableDeclaration","scope":3202,"src":"3446:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3190,"nodeType":"UserDefinedTypeName","pathNode":{"id":3189,"name":"PackedUserOperation","nameLocations":["3446:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3446:19:6"},"referencedDeclaration":3748,"src":"3446:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3445:37:6"},"returnParameters":{"id":3195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3194,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3202,"src":"3510:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3193,"name":"uint256","nodeType":"ElementaryTypeName","src":"3510:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3509:9:6"},"scope":3318,"src":"3410:171:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3215,"nodeType":"Block","src":"3688:61:6","statements":[{"expression":{"arguments":[{"expression":{"id":3211,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3205,"src":"3718:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3725:16:6","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"3718:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3210,"name":"unpackLow128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"3705:12:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3705:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3209,"id":3214,"nodeType":"Return","src":"3698:44:6"}]},"id":3216,"implemented":true,"kind":"function","modifiers":[],"name":"unpackCallGasLimit","nameLocation":"3596:18:6","nodeType":"FunctionDefinition","parameters":{"id":3206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3205,"mutability":"mutable","name":"userOp","nameLocation":"3644:6:6","nodeType":"VariableDeclaration","scope":3216,"src":"3615:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3204,"nodeType":"UserDefinedTypeName","pathNode":{"id":3203,"name":"PackedUserOperation","nameLocations":["3615:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3615:19:6"},"referencedDeclaration":3748,"src":"3615:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3614:37:6"},"returnParameters":{"id":3209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3208,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3216,"src":"3679:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3207,"name":"uint256","nodeType":"ElementaryTypeName","src":"3679:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3678:9:6"},"scope":3318,"src":"3587:162:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3236,"nodeType":"Block","src":"3873:128:6","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":3228,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"3906:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3913:16:6","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"3906:23:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3231,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"3964:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3906:86:6","startExpression":{"id":3230,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"3930:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":3227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3898:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3226,"name":"bytes16","nodeType":"ElementaryTypeName","src":"3898:7:6","typeDescriptions":{}}},"id":3233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3898:95:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3890:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3224,"name":"uint128","nodeType":"ElementaryTypeName","src":"3890:7:6","typeDescriptions":{}}},"id":3234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3890:104:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3223,"id":3235,"nodeType":"Return","src":"3883:111:6"}]},"id":3237,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPaymasterVerificationGasLimit","nameLocation":"3764:35:6","nodeType":"FunctionDefinition","parameters":{"id":3220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3219,"mutability":"mutable","name":"userOp","nameLocation":"3829:6:6","nodeType":"VariableDeclaration","scope":3237,"src":"3800:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3218,"nodeType":"UserDefinedTypeName","pathNode":{"id":3217,"name":"PackedUserOperation","nameLocations":["3800:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3800:19:6"},"referencedDeclaration":3748,"src":"3800:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3799:37:6"},"returnParameters":{"id":3223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3237,"src":"3864:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3221,"name":"uint256","nodeType":"ElementaryTypeName","src":"3864:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3863:9:6"},"scope":3318,"src":"3755:246:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3257,"nodeType":"Block","src":"4110:118:6","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":3249,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3240,"src":"4143:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4150:16:6","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"4143:23:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3252,"name":"PAYMASTER_DATA_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"4197:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4143:76:6","startExpression":{"id":3251,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"4167:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":3248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4135:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3247,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4135:7:6","typeDescriptions":{}}},"id":3254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4135:85:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3246,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4127:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3245,"name":"uint128","nodeType":"ElementaryTypeName","src":"4127:7:6","typeDescriptions":{}}},"id":3255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4127:94:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3244,"id":3256,"nodeType":"Return","src":"4120:101:6"}]},"id":3258,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPostOpGasLimit","nameLocation":"4016:20:6","nodeType":"FunctionDefinition","parameters":{"id":3241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3240,"mutability":"mutable","name":"userOp","nameLocation":"4066:6:6","nodeType":"VariableDeclaration","scope":3258,"src":"4037:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3239,"nodeType":"UserDefinedTypeName","pathNode":{"id":3238,"name":"PackedUserOperation","nameLocations":["4037:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"4037:19:6"},"referencedDeclaration":3748,"src":"4037:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"4036:37:6"},"returnParameters":{"id":3244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3243,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3258,"src":"4101:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3242,"name":"uint256","nodeType":"ElementaryTypeName","src":"4101:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4100:9:6"},"scope":3318,"src":"4007:221:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3300,"nodeType":"Block","src":"4412:329:6","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"baseExpression":{"id":3273,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"4459:16:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3274,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"4478:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4459:51:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":3272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4451:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":3271,"name":"bytes20","nodeType":"ElementaryTypeName","src":"4451:7:6","typeDescriptions":{}}},"id":3276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4451:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":3270,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4443:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3269,"name":"address","nodeType":"ElementaryTypeName","src":"4443:7:6","typeDescriptions":{}}},"id":3277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4443:69:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"baseExpression":{"id":3282,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"4542:16:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3284,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"4593:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4542:79:6","startExpression":{"id":3283,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"4559:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":3281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4534:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3280,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4534:7:6","typeDescriptions":{}}},"id":3286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4534:88:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4526:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3278,"name":"uint128","nodeType":"ElementaryTypeName","src":"4526:7:6","typeDescriptions":{}}},"id":3287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4526:97:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"arguments":[{"baseExpression":{"id":3292,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"4653:16:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3294,"name":"PAYMASTER_DATA_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"4700:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4653:69:6","startExpression":{"id":3293,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"4670:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":3291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4645:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3290,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4645:7:6","typeDescriptions":{}}},"id":3296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4645:78:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3289,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4637:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3288,"name":"uint128","nodeType":"ElementaryTypeName","src":"4637:7:6","typeDescriptions":{}}},"id":3297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4637:87:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":3298,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4429:305:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint128_$_t_uint128_$","typeString":"tuple(address,uint128,uint128)"}},"functionReturnParameters":3268,"id":3299,"nodeType":"Return","src":"4422:312:6"}]},"id":3301,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPaymasterStaticFields","nameLocation":"4243:27:6","nodeType":"FunctionDefinition","parameters":{"id":3261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3260,"mutability":"mutable","name":"paymasterAndData","nameLocation":"4295:16:6","nodeType":"VariableDeclaration","scope":3301,"src":"4280:31:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3259,"name":"bytes","nodeType":"ElementaryTypeName","src":"4280:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4270:47:6"},"returnParameters":{"id":3268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3263,"mutability":"mutable","name":"paymaster","nameLocation":"4349:9:6","nodeType":"VariableDeclaration","scope":3301,"src":"4341:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3262,"name":"address","nodeType":"ElementaryTypeName","src":"4341:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3265,"mutability":"mutable","name":"validationGasLimit","nameLocation":"4368:18:6","nodeType":"VariableDeclaration","scope":3301,"src":"4360:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3264,"name":"uint256","nodeType":"ElementaryTypeName","src":"4360:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3267,"mutability":"mutable","name":"postOpGasLimit","nameLocation":"4396:14:6","nodeType":"VariableDeclaration","scope":3301,"src":"4388:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3266,"name":"uint256","nodeType":"ElementaryTypeName","src":"4388:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4340:71:6"},"scope":3318,"src":"4234:507:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3316,"nodeType":"Block","src":"4945:49:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":3312,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"4979:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":3311,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"4972:6:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct PackedUserOperation calldata) pure returns (bytes memory)"}},"id":3313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4972:14:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3310,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4962:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4962:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3309,"id":3315,"nodeType":"Return","src":"4955:32:6"}]},"documentation":{"id":3302,"nodeType":"StructuredDocumentation","src":"4747:96:6","text":" Hash the user operation data.\n @param userOp - The user operation data."},"id":3317,"implemented":true,"kind":"function","modifiers":[],"name":"hash","nameLocation":"4857:4:6","nodeType":"FunctionDefinition","parameters":{"id":3306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3305,"mutability":"mutable","name":"userOp","nameLocation":"4900:6:6","nodeType":"VariableDeclaration","scope":3317,"src":"4871:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3304,"nodeType":"UserDefinedTypeName","pathNode":{"id":3303,"name":"PackedUserOperation","nameLocations":["4871:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"4871:19:6"},"referencedDeclaration":3748,"src":"4871:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"4861:51:6"},"returnParameters":{"id":3309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3308,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3317,"src":"4936:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3307,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4936:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4935:9:6"},"scope":3318,"src":"4848:146:6","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3319,"src":"282:4714:6","usedErrors":[],"usedEvents":[]}],"src":"36:4961:6"},"id":6},"@account-abstraction/contracts/interfaces/IAccount.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","exportedSymbols":{"IAccount":[3335],"PackedUserOperation":[3748]},"id":3336,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3320,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:7"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3321,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3336,"sourceUnit":3749,"src":"62:35:7","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccount","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3335,"linearizedBaseContracts":[3335],"name":"IAccount","nameLocation":"109:8:7","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3322,"nodeType":"StructuredDocumentation","src":"124:2290:7","text":" Validate user's signature and nonce\n the entryPoint will make the call to the recipient only if this validation call returns successfully.\n signature failure should be reported by returning SIG_VALIDATION_FAILED (1).\n This allows making a \"simulation call\" without a valid signature\n Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\n @dev Must validate caller is the entryPoint.\n      Must validate the signature and nonce\n @param userOp              - The operation that is about to be executed.\n @param userOpHash          - Hash of the user's request data. can be used as the basis for signature.\n @param missingAccountFunds - Missing funds on the account's deposit in the entrypoint.\n                              This is the minimum amount to transfer to the sender(entryPoint) to be\n                              able to make the call. The excess is left as a deposit in the entrypoint\n                              for future calls. Can be withdrawn anytime using \"entryPoint.withdrawTo()\".\n                              In case there is a paymaster in the request (or the current deposit is high\n                              enough), this value will be zero.\n @return validationData       - Packaged ValidationData structure. use `_packValidationData` and\n                              `_unpackValidationData` to encode and decode.\n                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n                                 otherwise, an address of an \"authorizer\" contract.\n                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \"indefinite\"\n                              <6-byte> validAfter - First timestamp this operation is valid\n                                                    If an account doesn't use time-range, it is enough to\n                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.\n                              Note that the validation code cannot use block.timestamp (or block.number) directly."},"functionSelector":"19822f7c","id":3334,"implemented":false,"kind":"function","modifiers":[],"name":"validateUserOp","nameLocation":"2428:14:7","nodeType":"FunctionDefinition","parameters":{"id":3330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3325,"mutability":"mutable","name":"userOp","nameLocation":"2481:6:7","nodeType":"VariableDeclaration","scope":3334,"src":"2452:35:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3324,"nodeType":"UserDefinedTypeName","pathNode":{"id":3323,"name":"PackedUserOperation","nameLocations":["2452:19:7"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"2452:19:7"},"referencedDeclaration":3748,"src":"2452:19:7","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":3327,"mutability":"mutable","name":"userOpHash","nameLocation":"2505:10:7","nodeType":"VariableDeclaration","scope":3334,"src":"2497:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3326,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2497:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3329,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"2533:19:7","nodeType":"VariableDeclaration","scope":3334,"src":"2525:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3328,"name":"uint256","nodeType":"ElementaryTypeName","src":"2525:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2442:116:7"},"returnParameters":{"id":3333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3332,"mutability":"mutable","name":"validationData","nameLocation":"2585:14:7","nodeType":"VariableDeclaration","scope":3334,"src":"2577:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3331,"name":"uint256","nodeType":"ElementaryTypeName","src":"2577:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2576:24:7"},"scope":3335,"src":"2419:182:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3336,"src":"99:2504:7","usedErrors":[],"usedEvents":[]}],"src":"36:2568:7"},"id":7},"@account-abstraction/contracts/interfaces/IAccountExecute.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAccountExecute.sol","exportedSymbols":{"IAccountExecute":[3348],"PackedUserOperation":[3748]},"id":3349,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3337,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:8"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3338,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3349,"sourceUnit":3749,"src":"62:35:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccountExecute","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3348,"linearizedBaseContracts":[3348],"name":"IAccountExecute","nameLocation":"109:15:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3339,"nodeType":"StructuredDocumentation","src":"131:460:8","text":" Account may implement this execute method.\n passing this methodSig at the beginning of callData will cause the entryPoint to pass the full UserOp (and hash)\n to the account.\n The account should skip the methodSig, and use the callData (and optionally, other UserOp fields)\n @param userOp              - The operation that was just validated.\n @param userOpHash          - Hash of the user's request data."},"functionSelector":"8dd7712f","id":3347,"implemented":false,"kind":"function","modifiers":[],"name":"executeUserOp","nameLocation":"605:13:8","nodeType":"FunctionDefinition","parameters":{"id":3345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3342,"mutability":"mutable","name":"userOp","nameLocation":"657:6:8","nodeType":"VariableDeclaration","scope":3347,"src":"628:35:8","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3341,"nodeType":"UserDefinedTypeName","pathNode":{"id":3340,"name":"PackedUserOperation","nameLocations":["628:19:8"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"628:19:8"},"referencedDeclaration":3748,"src":"628:19:8","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":3344,"mutability":"mutable","name":"userOpHash","nameLocation":"681:10:8","nodeType":"VariableDeclaration","scope":3347,"src":"673:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3343,"name":"bytes32","nodeType":"ElementaryTypeName","src":"673:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"618:79:8"},"returnParameters":{"id":3346,"nodeType":"ParameterList","parameters":[],"src":"706:0:8"},"scope":3348,"src":"596:111:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3349,"src":"99:610:8","usedErrors":[],"usedEvents":[]}],"src":"36:674:8"},"id":8},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAggregator.sol","exportedSymbols":{"IAggregator":[3382],"PackedUserOperation":[3748]},"id":3383,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3350,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:9"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3351,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3383,"sourceUnit":3749,"src":"62:35:9","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAggregator","contractDependencies":[],"contractKind":"interface","documentation":{"id":3352,"nodeType":"StructuredDocumentation","src":"99:43:9","text":" Aggregated Signatures validator."},"fullyImplemented":false,"id":3382,"linearizedBaseContracts":[3382],"name":"IAggregator","nameLocation":"153:11:9","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3353,"nodeType":"StructuredDocumentation","src":"171:269:9","text":" Validate aggregated signature.\n Revert if the aggregated signature does not match the given list of operations.\n @param userOps   - Array of UserOperations to validate the signature for.\n @param signature - The aggregated signature."},"functionSelector":"2dd81133","id":3362,"implemented":false,"kind":"function","modifiers":[],"name":"validateSignatures","nameLocation":"454:18:9","nodeType":"FunctionDefinition","parameters":{"id":3360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3357,"mutability":"mutable","name":"userOps","nameLocation":"513:7:9","nodeType":"VariableDeclaration","scope":3362,"src":"482:38:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3355,"nodeType":"UserDefinedTypeName","pathNode":{"id":3354,"name":"PackedUserOperation","nameLocations":["482:19:9"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"482:19:9"},"referencedDeclaration":3748,"src":"482:19:9","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3356,"nodeType":"ArrayTypeName","src":"482:21:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":3359,"mutability":"mutable","name":"signature","nameLocation":"545:9:9","nodeType":"VariableDeclaration","scope":3362,"src":"530:24:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3358,"name":"bytes","nodeType":"ElementaryTypeName","src":"530:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"472:88:9"},"returnParameters":{"id":3361,"nodeType":"ParameterList","parameters":[],"src":"574:0:9"},"scope":3382,"src":"445:130:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3363,"nodeType":"StructuredDocumentation","src":"581:610:9","text":" Validate signature of a single userOp.\n This method should be called by bundler after EntryPointSimulation.simulateValidation() returns\n the aggregator this account uses.\n First it validates the signature over the userOp. Then it returns data to be used when creating the handleOps.\n @param userOp        - The userOperation received from the user.\n @return sigForUserOp - The value to put into the signature field of the userOp when calling handleOps.\n                        (usually empty, unless account and aggregator support some kind of \"multisig\"."},"functionSelector":"062a422b","id":3371,"implemented":false,"kind":"function","modifiers":[],"name":"validateUserOpSignature","nameLocation":"1205:23:9","nodeType":"FunctionDefinition","parameters":{"id":3367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3366,"mutability":"mutable","name":"userOp","nameLocation":"1267:6:9","nodeType":"VariableDeclaration","scope":3371,"src":"1238:35:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3365,"nodeType":"UserDefinedTypeName","pathNode":{"id":3364,"name":"PackedUserOperation","nameLocations":["1238:19:9"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1238:19:9"},"referencedDeclaration":3748,"src":"1238:19:9","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1228:51:9"},"returnParameters":{"id":3370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3369,"mutability":"mutable","name":"sigForUserOp","nameLocation":"1316:12:9","nodeType":"VariableDeclaration","scope":3371,"src":"1303:25:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3368,"name":"bytes","nodeType":"ElementaryTypeName","src":"1303:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1302:27:9"},"scope":3382,"src":"1196:134:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3372,"nodeType":"StructuredDocumentation","src":"1336:387:9","text":" Aggregate multiple signatures into a single value.\n This method is called off-chain to calculate the signature to pass with handleOps()\n bundler MAY use optimized custom code perform this aggregation.\n @param userOps              - Array of UserOperations to collect the signatures from.\n @return aggregatedSignature - The aggregated signature."},"functionSelector":"ae574a43","id":3381,"implemented":false,"kind":"function","modifiers":[],"name":"aggregateSignatures","nameLocation":"1737:19:9","nodeType":"FunctionDefinition","parameters":{"id":3377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3376,"mutability":"mutable","name":"userOps","nameLocation":"1797:7:9","nodeType":"VariableDeclaration","scope":3381,"src":"1766:38:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3374,"nodeType":"UserDefinedTypeName","pathNode":{"id":3373,"name":"PackedUserOperation","nameLocations":["1766:19:9"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1766:19:9"},"referencedDeclaration":3748,"src":"1766:19:9","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3375,"nodeType":"ArrayTypeName","src":"1766:21:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"src":"1756:54:9"},"returnParameters":{"id":3380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3379,"mutability":"mutable","name":"aggregatedSignature","nameLocation":"1847:19:9","nodeType":"VariableDeclaration","scope":3381,"src":"1834:32:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3378,"name":"bytes","nodeType":"ElementaryTypeName","src":"1834:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1833:34:9"},"scope":3382,"src":"1728:140:9","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3383,"src":"143:1727:9","usedErrors":[],"usedEvents":[]}],"src":"36:1835:9"},"id":9},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","exportedSymbols":{"IAggregator":[3382],"IEntryPoint":[3566],"INonceManager":[3585],"IStakeManager":[3726],"PackedUserOperation":[3748]},"id":3567,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3384,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"163:24:10"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3385,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3749,"src":"311:35:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","file":"./IStakeManager.sol","id":3386,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3727,"src":"347:29:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IAggregator.sol","file":"./IAggregator.sol","id":3387,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3383,"src":"377:27:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","file":"./INonceManager.sol","id":3388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3586,"src":"405:29:10","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3389,"name":"IStakeManager","nameLocations":["461:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":3726,"src":"461:13:10"},"id":3390,"nodeType":"InheritanceSpecifier","src":"461:13:10"},{"baseName":{"id":3391,"name":"INonceManager","nameLocations":["476:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":3585,"src":"476:13:10"},"id":3392,"nodeType":"InheritanceSpecifier","src":"476:13:10"}],"canonicalName":"IEntryPoint","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3566,"linearizedBaseContracts":[3566,3585,3726],"name":"IEntryPoint","nameLocation":"446:11:10","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f","id":3408,"name":"UserOperationEvent","nameLocation":"1255:18:10","nodeType":"EventDefinition","parameters":{"id":3407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3394,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"1299:10:10","nodeType":"VariableDeclaration","scope":3408,"src":"1283:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1283:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3396,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1335:6:10","nodeType":"VariableDeclaration","scope":3408,"src":"1319:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3395,"name":"address","nodeType":"ElementaryTypeName","src":"1319:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3398,"indexed":true,"mutability":"mutable","name":"paymaster","nameLocation":"1367:9:10","nodeType":"VariableDeclaration","scope":3408,"src":"1351:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3397,"name":"address","nodeType":"ElementaryTypeName","src":"1351:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3400,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"1394:5:10","nodeType":"VariableDeclaration","scope":3408,"src":"1386:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3399,"name":"uint256","nodeType":"ElementaryTypeName","src":"1386:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3402,"indexed":false,"mutability":"mutable","name":"success","nameLocation":"1414:7:10","nodeType":"VariableDeclaration","scope":3408,"src":"1409:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3401,"name":"bool","nodeType":"ElementaryTypeName","src":"1409:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3404,"indexed":false,"mutability":"mutable","name":"actualGasCost","nameLocation":"1439:13:10","nodeType":"VariableDeclaration","scope":3408,"src":"1431:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3403,"name":"uint256","nodeType":"ElementaryTypeName","src":"1431:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3406,"indexed":false,"mutability":"mutable","name":"actualGasUsed","nameLocation":"1470:13:10","nodeType":"VariableDeclaration","scope":3408,"src":"1462:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3405,"name":"uint256","nodeType":"ElementaryTypeName","src":"1462:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1273:216:10"},"src":"1249:241:10"},{"anonymous":false,"documentation":{"id":3409,"nodeType":"StructuredDocumentation","src":"1496:349:10","text":" Account \"sender\" was deployed.\n @param userOpHash - The userOp that deployed this account. UserOperationEvent will follow.\n @param sender     - The account that is deployed\n @param factory    - The factory used to deploy this account (in the initCode)\n @param paymaster  - The paymaster used by this UserOp"},"eventSelector":"d51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d","id":3419,"name":"AccountDeployed","nameLocation":"1856:15:10","nodeType":"EventDefinition","parameters":{"id":3418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3411,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"1897:10:10","nodeType":"VariableDeclaration","scope":3419,"src":"1881:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1881:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3413,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1933:6:10","nodeType":"VariableDeclaration","scope":3419,"src":"1917:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3412,"name":"address","nodeType":"ElementaryTypeName","src":"1917:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3415,"indexed":false,"mutability":"mutable","name":"factory","nameLocation":"1957:7:10","nodeType":"VariableDeclaration","scope":3419,"src":"1949:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3414,"name":"address","nodeType":"ElementaryTypeName","src":"1949:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3417,"indexed":false,"mutability":"mutable","name":"paymaster","nameLocation":"1982:9:10","nodeType":"VariableDeclaration","scope":3419,"src":"1974:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3416,"name":"address","nodeType":"ElementaryTypeName","src":"1974:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1871:126:10"},"src":"1850:148:10"},{"anonymous":false,"documentation":{"id":3420,"nodeType":"StructuredDocumentation","src":"2004:361:10","text":" An event emitted if the UserOperation \"callData\" reverted with non-zero length.\n @param userOpHash   - The request unique identifier.\n @param sender       - The sender of this request.\n @param nonce        - The nonce used in the request.\n @param revertReason - The return bytes from the (reverted) call to \"callData\"."},"eventSelector":"1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a201","id":3430,"name":"UserOperationRevertReason","nameLocation":"2376:25:10","nodeType":"EventDefinition","parameters":{"id":3429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3422,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"2427:10:10","nodeType":"VariableDeclaration","scope":3430,"src":"2411:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3421,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2411:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3424,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"2463:6:10","nodeType":"VariableDeclaration","scope":3430,"src":"2447:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3423,"name":"address","nodeType":"ElementaryTypeName","src":"2447:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3426,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"2487:5:10","nodeType":"VariableDeclaration","scope":3430,"src":"2479:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3425,"name":"uint256","nodeType":"ElementaryTypeName","src":"2479:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3428,"indexed":false,"mutability":"mutable","name":"revertReason","nameLocation":"2508:12:10","nodeType":"VariableDeclaration","scope":3430,"src":"2502:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3427,"name":"bytes","nodeType":"ElementaryTypeName","src":"2502:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2401:125:10"},"src":"2370:157:10"},{"anonymous":false,"documentation":{"id":3431,"nodeType":"StructuredDocumentation","src":"2533:376:10","text":" An event emitted if the UserOperation Paymaster's \"postOp\" call reverted with non-zero length.\n @param userOpHash   - The request unique identifier.\n @param sender       - The sender of this request.\n @param nonce        - The nonce used in the request.\n @param revertReason - The return bytes from the (reverted) call to \"callData\"."},"eventSelector":"f62676f440ff169a3a9afdbf812e89e7f95975ee8e5c31214ffdef631c5f4792","id":3441,"name":"PostOpRevertReason","nameLocation":"2920:18:10","nodeType":"EventDefinition","parameters":{"id":3440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3433,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"2964:10:10","nodeType":"VariableDeclaration","scope":3441,"src":"2948:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3432,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2948:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3435,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3000:6:10","nodeType":"VariableDeclaration","scope":3441,"src":"2984:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3434,"name":"address","nodeType":"ElementaryTypeName","src":"2984:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3437,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"3024:5:10","nodeType":"VariableDeclaration","scope":3441,"src":"3016:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3436,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3439,"indexed":false,"mutability":"mutable","name":"revertReason","nameLocation":"3045:12:10","nodeType":"VariableDeclaration","scope":3441,"src":"3039:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3438,"name":"bytes","nodeType":"ElementaryTypeName","src":"3039:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2938:125:10"},"src":"2914:150:10"},{"anonymous":false,"documentation":{"id":3442,"nodeType":"StructuredDocumentation","src":"3070:284:10","text":" UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\n @param userOpHash   - The request unique identifier.\n @param sender       - The sender of this request.\n @param nonce        - The nonce used in the request."},"eventSelector":"67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e","id":3450,"name":"UserOperationPrefundTooLow","nameLocation":"3365:26:10","nodeType":"EventDefinition","parameters":{"id":3449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3444,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"3417:10:10","nodeType":"VariableDeclaration","scope":3450,"src":"3401:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3443,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3401:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3446,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3453:6:10","nodeType":"VariableDeclaration","scope":3450,"src":"3437:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3445,"name":"address","nodeType":"ElementaryTypeName","src":"3437:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3448,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"3477:5:10","nodeType":"VariableDeclaration","scope":3450,"src":"3469:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3447,"name":"uint256","nodeType":"ElementaryTypeName","src":"3469:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3391:97:10"},"src":"3359:130:10"},{"anonymous":false,"documentation":{"id":3451,"nodeType":"StructuredDocumentation","src":"3495:158:10","text":" An event emitted by handleOps(), before starting the execution loop.\n Any event emitted before this event, is part of the validation."},"eventSelector":"bb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972","id":3453,"name":"BeforeExecution","nameLocation":"3664:15:10","nodeType":"EventDefinition","parameters":{"id":3452,"nodeType":"ParameterList","parameters":[],"src":"3679:2:10"},"src":"3658:24:10"},{"anonymous":false,"documentation":{"id":3454,"nodeType":"StructuredDocumentation","src":"3688:187:10","text":" Signature aggregator used by the following UserOperationEvents within this bundle.\n @param aggregator - The aggregator used for the following UserOperationEvents."},"eventSelector":"575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d","id":3458,"name":"SignatureAggregatorChanged","nameLocation":"3886:26:10","nodeType":"EventDefinition","parameters":{"id":3457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3456,"indexed":true,"mutability":"mutable","name":"aggregator","nameLocation":"3929:10:10","nodeType":"VariableDeclaration","scope":3458,"src":"3913:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3455,"name":"address","nodeType":"ElementaryTypeName","src":"3913:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3912:28:10"},"src":"3880:61:10"},{"documentation":{"id":3459,"nodeType":"StructuredDocumentation","src":"3947:776:10","text":" A custom revert error of handleOps, to identify the offending op.\n Should be caught in off-chain handleOps simulation and not happen on-chain.\n Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts.\n NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\n @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n @param reason  - Revert reason. The string starts with a unique code \"AAmn\",\n                  where \"m\" is \"1\" for factory, \"2\" for account and \"3\" for paymaster issues,\n                  so a failure can be attributed to the correct entity."},"errorSelector":"220266b6","id":3465,"name":"FailedOp","nameLocation":"4734:8:10","nodeType":"ErrorDefinition","parameters":{"id":3464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3461,"mutability":"mutable","name":"opIndex","nameLocation":"4751:7:10","nodeType":"VariableDeclaration","scope":3465,"src":"4743:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3460,"name":"uint256","nodeType":"ElementaryTypeName","src":"4743:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3463,"mutability":"mutable","name":"reason","nameLocation":"4767:6:10","nodeType":"VariableDeclaration","scope":3465,"src":"4760:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3462,"name":"string","nodeType":"ElementaryTypeName","src":"4760:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4742:32:10"},"src":"4728:47:10"},{"documentation":{"id":3466,"nodeType":"StructuredDocumentation","src":"4781:405:10","text":" A custom revert error of handleOps, to report a revert by account or paymaster.\n @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero).\n @param reason  - Revert reason. see FailedOp(uint256,string), above\n @param inner   - data from inner cought revert reason\n @dev note that inner is truncated to 2048 bytes"},"errorSelector":"65c8fd4d","id":3474,"name":"FailedOpWithRevert","nameLocation":"5197:18:10","nodeType":"ErrorDefinition","parameters":{"id":3473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3468,"mutability":"mutable","name":"opIndex","nameLocation":"5224:7:10","nodeType":"VariableDeclaration","scope":3474,"src":"5216:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3467,"name":"uint256","nodeType":"ElementaryTypeName","src":"5216:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3470,"mutability":"mutable","name":"reason","nameLocation":"5240:6:10","nodeType":"VariableDeclaration","scope":3474,"src":"5233:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3469,"name":"string","nodeType":"ElementaryTypeName","src":"5233:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3472,"mutability":"mutable","name":"inner","nameLocation":"5254:5:10","nodeType":"VariableDeclaration","scope":3474,"src":"5248:11:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3471,"name":"bytes","nodeType":"ElementaryTypeName","src":"5248:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5215:45:10"},"src":"5191:70:10"},{"errorSelector":"ad7954bc","id":3478,"name":"PostOpReverted","nameLocation":"5273:14:10","nodeType":"ErrorDefinition","parameters":{"id":3477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3476,"mutability":"mutable","name":"returnData","nameLocation":"5294:10:10","nodeType":"VariableDeclaration","scope":3478,"src":"5288:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3475,"name":"bytes","nodeType":"ElementaryTypeName","src":"5288:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5287:18:10"},"src":"5267:39:10"},{"documentation":{"id":3479,"nodeType":"StructuredDocumentation","src":"5312:190:10","text":" Error case when a signature aggregator fails to verify the aggregated signature it had created.\n @param aggregator The aggregator that failed to verify the signature"},"errorSelector":"86a9f750","id":3483,"name":"SignatureValidationFailed","nameLocation":"5513:25:10","nodeType":"ErrorDefinition","parameters":{"id":3482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3481,"mutability":"mutable","name":"aggregator","nameLocation":"5547:10:10","nodeType":"VariableDeclaration","scope":3483,"src":"5539:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3480,"name":"address","nodeType":"ElementaryTypeName","src":"5539:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5538:20:10"},"src":"5507:52:10"},{"errorSelector":"6ca7b806","id":3487,"name":"SenderAddressResult","nameLocation":"5612:19:10","nodeType":"ErrorDefinition","parameters":{"id":3486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3485,"mutability":"mutable","name":"sender","nameLocation":"5640:6:10","nodeType":"VariableDeclaration","scope":3487,"src":"5632:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3484,"name":"address","nodeType":"ElementaryTypeName","src":"5632:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5631:16:10"},"src":"5606:42:10"},{"canonicalName":"IEntryPoint.UserOpsPerAggregator","id":3497,"members":[{"constant":false,"id":3491,"mutability":"mutable","name":"userOps","nameLocation":"5754:7:10","nodeType":"VariableDeclaration","scope":3497,"src":"5732:29:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3489,"nodeType":"UserDefinedTypeName","pathNode":{"id":3488,"name":"PackedUserOperation","nameLocations":["5732:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"5732:19:10"},"referencedDeclaration":3748,"src":"5732:19:10","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3490,"nodeType":"ArrayTypeName","src":"5732:21:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":3494,"mutability":"mutable","name":"aggregator","nameLocation":"5813:10:10","nodeType":"VariableDeclaration","scope":3497,"src":"5801:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"},"typeName":{"id":3493,"nodeType":"UserDefinedTypeName","pathNode":{"id":3492,"name":"IAggregator","nameLocations":["5801:11:10"],"nodeType":"IdentifierPath","referencedDeclaration":3382,"src":"5801:11:10"},"referencedDeclaration":3382,"src":"5801:11:10","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"visibility":"internal"},{"constant":false,"id":3496,"mutability":"mutable","name":"signature","nameLocation":"5871:9:10","nodeType":"VariableDeclaration","scope":3497,"src":"5865:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3495,"name":"bytes","nodeType":"ElementaryTypeName","src":"5865:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"UserOpsPerAggregator","nameLocation":"5701:20:10","nodeType":"StructDefinition","scope":3566,"src":"5694:193:10","visibility":"public"},{"documentation":{"id":3498,"nodeType":"StructuredDocumentation","src":"5893:383:10","text":" Execute a batch of UserOperations.\n No signature aggregator is used.\n If any account requires an aggregator (that is, it returned an aggregator when\n performing simulateValidation), then handleAggregatedOps() must be used instead.\n @param ops         - The operations to execute.\n @param beneficiary - The address to receive the fees."},"functionSelector":"765e827f","id":3507,"implemented":false,"kind":"function","modifiers":[],"name":"handleOps","nameLocation":"6290:9:10","nodeType":"FunctionDefinition","parameters":{"id":3505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3502,"mutability":"mutable","name":"ops","nameLocation":"6340:3:10","nodeType":"VariableDeclaration","scope":3507,"src":"6309:34:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3500,"nodeType":"UserDefinedTypeName","pathNode":{"id":3499,"name":"PackedUserOperation","nameLocations":["6309:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"6309:19:10"},"referencedDeclaration":3748,"src":"6309:19:10","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3501,"nodeType":"ArrayTypeName","src":"6309:21:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":3504,"mutability":"mutable","name":"beneficiary","nameLocation":"6369:11:10","nodeType":"VariableDeclaration","scope":3507,"src":"6353:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3503,"name":"address","nodeType":"ElementaryTypeName","src":"6353:15:10","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6299:87:10"},"returnParameters":{"id":3506,"nodeType":"ParameterList","parameters":[],"src":"6395:0:10"},"scope":3566,"src":"6281:115:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3508,"nodeType":"StructuredDocumentation","src":"6402:260:10","text":" Execute a batch of UserOperation with Aggregators\n @param opsPerAggregator - The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\n @param beneficiary      - The address to receive the fees."},"functionSelector":"dbed18e0","id":3517,"implemented":false,"kind":"function","modifiers":[],"name":"handleAggregatedOps","nameLocation":"6676:19:10","nodeType":"FunctionDefinition","parameters":{"id":3515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3512,"mutability":"mutable","name":"opsPerAggregator","nameLocation":"6737:16:10","nodeType":"VariableDeclaration","scope":3517,"src":"6705:48:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"},"typeName":{"baseType":{"id":3510,"nodeType":"UserDefinedTypeName","pathNode":{"id":3509,"name":"UserOpsPerAggregator","nameLocations":["6705:20:10"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"6705:20:10"},"referencedDeclaration":3497,"src":"6705:20:10","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"id":3511,"nodeType":"ArrayTypeName","src":"6705:22:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_storage_$dyn_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"}},"visibility":"internal"},{"constant":false,"id":3514,"mutability":"mutable","name":"beneficiary","nameLocation":"6779:11:10","nodeType":"VariableDeclaration","scope":3517,"src":"6763:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3513,"name":"address","nodeType":"ElementaryTypeName","src":"6763:15:10","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6695:101:10"},"returnParameters":{"id":3516,"nodeType":"ParameterList","parameters":[],"src":"6805:0:10"},"scope":3566,"src":"6667:139:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3518,"nodeType":"StructuredDocumentation","src":"6812:322:10","text":" Generate a request Id - unique identifier for this request.\n The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\n @param userOp - The user operation to generate the request ID for.\n @return hash the hash of this UserOperation"},"functionSelector":"22cdde4c","id":3526,"implemented":false,"kind":"function","modifiers":[],"name":"getUserOpHash","nameLocation":"7148:13:10","nodeType":"FunctionDefinition","parameters":{"id":3522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3521,"mutability":"mutable","name":"userOp","nameLocation":"7200:6:10","nodeType":"VariableDeclaration","scope":3526,"src":"7171:35:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3520,"nodeType":"UserDefinedTypeName","pathNode":{"id":3519,"name":"PackedUserOperation","nameLocations":["7171:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"7171:19:10"},"referencedDeclaration":3748,"src":"7171:19:10","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"7161:51:10"},"returnParameters":{"id":3525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3524,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3526,"src":"7236:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3523,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7236:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7235:9:10"},"scope":3566,"src":"7139:106:10","stateMutability":"view","virtual":false,"visibility":"external"},{"canonicalName":"IEntryPoint.ReturnInfo","documentation":{"id":3527,"nodeType":"StructuredDocumentation","src":"7251:474:10","text":" Gas and return values during simulation.\n @param preOpGas         - The gas used for validation (including preValidationGas)\n @param prefund          - The required prefund for this operation\n @param accountValidationData   - returned validationData from account.\n @param paymasterValidationData - return validationData from paymaster.\n @param paymasterContext - Returned by validatePaymasterUserOp (to be passed into postOp)"},"id":3538,"members":[{"constant":false,"id":3529,"mutability":"mutable","name":"preOpGas","nameLocation":"7766:8:10","nodeType":"VariableDeclaration","scope":3538,"src":"7758:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3528,"name":"uint256","nodeType":"ElementaryTypeName","src":"7758:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3531,"mutability":"mutable","name":"prefund","nameLocation":"7792:7:10","nodeType":"VariableDeclaration","scope":3538,"src":"7784:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3530,"name":"uint256","nodeType":"ElementaryTypeName","src":"7784:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3533,"mutability":"mutable","name":"accountValidationData","nameLocation":"7817:21:10","nodeType":"VariableDeclaration","scope":3538,"src":"7809:29:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3532,"name":"uint256","nodeType":"ElementaryTypeName","src":"7809:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3535,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"7856:23:10","nodeType":"VariableDeclaration","scope":3538,"src":"7848:31:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3534,"name":"uint256","nodeType":"ElementaryTypeName","src":"7848:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3537,"mutability":"mutable","name":"paymasterContext","nameLocation":"7895:16:10","nodeType":"VariableDeclaration","scope":3538,"src":"7889:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3536,"name":"bytes","nodeType":"ElementaryTypeName","src":"7889:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"ReturnInfo","nameLocation":"7737:10:10","nodeType":"StructDefinition","scope":3566,"src":"7730:188:10","visibility":"public"},{"canonicalName":"IEntryPoint.AggregatorStakeInfo","documentation":{"id":3539,"nodeType":"StructuredDocumentation","src":"7924:124:10","text":" Returned aggregated signature info:\n The aggregator returned by the account, and its current stake."},"id":3545,"members":[{"constant":false,"id":3541,"mutability":"mutable","name":"aggregator","nameLocation":"8098:10:10","nodeType":"VariableDeclaration","scope":3545,"src":"8090:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3540,"name":"address","nodeType":"ElementaryTypeName","src":"8090:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3544,"mutability":"mutable","name":"stakeInfo","nameLocation":"8128:9:10","nodeType":"VariableDeclaration","scope":3545,"src":"8118:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_storage_ptr","typeString":"struct IStakeManager.StakeInfo"},"typeName":{"id":3543,"nodeType":"UserDefinedTypeName","pathNode":{"id":3542,"name":"StakeInfo","nameLocations":["8118:9:10"],"nodeType":"IdentifierPath","referencedDeclaration":3678,"src":"8118:9:10"},"referencedDeclaration":3678,"src":"8118:9:10","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_storage_ptr","typeString":"struct IStakeManager.StakeInfo"}},"visibility":"internal"}],"name":"AggregatorStakeInfo","nameLocation":"8060:19:10","nodeType":"StructDefinition","scope":3566,"src":"8053:91:10","visibility":"public"},{"documentation":{"id":3546,"nodeType":"StructuredDocumentation","src":"8150:338:10","text":" Get counterfactual sender address.\n Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation.\n This method always revert, and returns the address in SenderAddressResult error\n @param initCode - The constructor code to be passed into the UserOperation."},"functionSelector":"9b249f69","id":3551,"implemented":false,"kind":"function","modifiers":[],"name":"getSenderAddress","nameLocation":"8502:16:10","nodeType":"FunctionDefinition","parameters":{"id":3549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3548,"mutability":"mutable","name":"initCode","nameLocation":"8532:8:10","nodeType":"VariableDeclaration","scope":3551,"src":"8519:21:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3547,"name":"bytes","nodeType":"ElementaryTypeName","src":"8519:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8518:23:10"},"returnParameters":{"id":3550,"nodeType":"ParameterList","parameters":[],"src":"8550:0:10"},"scope":3566,"src":"8493:58:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"errorSelector":"99410554","id":3557,"name":"DelegateAndRevert","nameLocation":"8563:17:10","nodeType":"ErrorDefinition","parameters":{"id":3556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3553,"mutability":"mutable","name":"success","nameLocation":"8586:7:10","nodeType":"VariableDeclaration","scope":3557,"src":"8581:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3552,"name":"bool","nodeType":"ElementaryTypeName","src":"8581:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3555,"mutability":"mutable","name":"ret","nameLocation":"8601:3:10","nodeType":"VariableDeclaration","scope":3557,"src":"8595:9:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3554,"name":"bytes","nodeType":"ElementaryTypeName","src":"8595:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8580:25:10"},"src":"8557:49:10"},{"documentation":{"id":3558,"nodeType":"StructuredDocumentation","src":"8612:492:10","text":" Helper method for dry-run testing.\n @dev calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.\n  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace\n  actual EntryPoint code is less convenient.\n @param target a target contract to make a delegatecall from entrypoint\n @param data data to pass to target in a delegatecall"},"functionSelector":"850aaf62","id":3565,"implemented":false,"kind":"function","modifiers":[],"name":"delegateAndRevert","nameLocation":"9118:17:10","nodeType":"FunctionDefinition","parameters":{"id":3563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3560,"mutability":"mutable","name":"target","nameLocation":"9144:6:10","nodeType":"VariableDeclaration","scope":3565,"src":"9136:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3559,"name":"address","nodeType":"ElementaryTypeName","src":"9136:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3562,"mutability":"mutable","name":"data","nameLocation":"9167:4:10","nodeType":"VariableDeclaration","scope":3565,"src":"9152:19:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3561,"name":"bytes","nodeType":"ElementaryTypeName","src":"9152:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9135:37:10"},"returnParameters":{"id":3564,"nodeType":"ParameterList","parameters":[],"src":"9181:0:10"},"scope":3566,"src":"9109:73:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3567,"src":"436:8748:10","usedErrors":[3465,3474,3478,3483,3487,3557],"usedEvents":[3408,3419,3430,3441,3450,3453,3458,3631,3639,3647,3653,3661]}],"src":"163:9022:10"},"id":10},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","exportedSymbols":{"INonceManager":[3585]},"id":3586,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3568,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:11"},{"abstract":false,"baseContracts":[],"canonicalName":"INonceManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3585,"linearizedBaseContracts":[3585],"name":"INonceManager","nameLocation":"72:13:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3569,"nodeType":"StructuredDocumentation","src":"93:416:11","text":" Return the next nonce for this sender.\n Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop)\n But UserOp with different keys can come with arbitrary order.\n @param sender the account address\n @param key the high 192 bit of the nonce\n @return nonce a full nonce to pass for next UserOp with this sender."},"functionSelector":"35567e1a","id":3578,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"523:8:11","nodeType":"FunctionDefinition","parameters":{"id":3574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3571,"mutability":"mutable","name":"sender","nameLocation":"540:6:11","nodeType":"VariableDeclaration","scope":3578,"src":"532:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3570,"name":"address","nodeType":"ElementaryTypeName","src":"532:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3573,"mutability":"mutable","name":"key","nameLocation":"556:3:11","nodeType":"VariableDeclaration","scope":3578,"src":"548:11:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":3572,"name":"uint192","nodeType":"ElementaryTypeName","src":"548:7:11","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"531:29:11"},"returnParameters":{"id":3577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3576,"mutability":"mutable","name":"nonce","nameLocation":"596:5:11","nodeType":"VariableDeclaration","scope":3578,"src":"588:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3575,"name":"uint256","nodeType":"ElementaryTypeName","src":"588:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"587:15:11"},"scope":3585,"src":"514:89:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3579,"nodeType":"StructuredDocumentation","src":"609:449:11","text":" Manually increment the nonce of the sender.\n This method is exposed just for completeness..\n Account does NOT need to call it, neither during validation, nor elsewhere,\n as the EntryPoint will update the nonce regardless.\n Possible use-case is call it with various keys to \"initialize\" their nonces to one, so that future\n UserOperations will not pay extra for the first transaction with a given key."},"functionSelector":"0bd28e3b","id":3584,"implemented":false,"kind":"function","modifiers":[],"name":"incrementNonce","nameLocation":"1072:14:11","nodeType":"FunctionDefinition","parameters":{"id":3582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3581,"mutability":"mutable","name":"key","nameLocation":"1095:3:11","nodeType":"VariableDeclaration","scope":3584,"src":"1087:11:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":3580,"name":"uint192","nodeType":"ElementaryTypeName","src":"1087:7:11","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"1086:13:11"},"returnParameters":{"id":3583,"nodeType":"ParameterList","parameters":[],"src":"1108:0:11"},"scope":3585,"src":"1063:46:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3586,"src":"62:1049:11","usedErrors":[],"usedEvents":[]}],"src":"36:1076:11"},"id":11},"@account-abstraction/contracts/interfaces/IPaymaster.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IPaymaster.sol","exportedSymbols":{"IPaymaster":[3622],"PackedUserOperation":[3748]},"id":3623,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3587,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:12"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3588,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3623,"sourceUnit":3749,"src":"62:35:12","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPaymaster","contractDependencies":[],"contractKind":"interface","documentation":{"id":3589,"nodeType":"StructuredDocumentation","src":"99:216:12","text":" The interface exposed by a paymaster contract, who agrees to pay the gas for user's operations.\n A paymaster must hold a stake to cover the required entrypoint stake and also the gas for the transaction."},"fullyImplemented":false,"id":3622,"linearizedBaseContracts":[3622],"name":"IPaymaster","nameLocation":"326:10:12","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IPaymaster.PostOpMode","id":3593,"members":[{"id":3590,"name":"opSucceeded","nameLocation":"399:11:12","nodeType":"EnumValue","src":"399:11:12"},{"id":3591,"name":"opReverted","nameLocation":"475:10:12","nodeType":"EnumValue","src":"475:10:12"},{"id":3592,"name":"postOpReverted","nameLocation":"617:14:12","nodeType":"EnumValue","src":"617:14:12"}],"name":"PostOpMode","nameLocation":"348:10:12","nodeType":"EnumDefinition","src":"343:294:12"},{"documentation":{"id":3594,"nodeType":"StructuredDocumentation","src":"643:1430:12","text":" Payment validation: check if paymaster agrees to pay.\n Must verify sender is the entryPoint.\n Revert to reject this request.\n Note that bundlers will reject this method if it changes the state, unless the paymaster is trusted (whitelisted).\n The paymaster pre-pays using its deposit, and receive back a refund after the postOp method returns.\n @param userOp          - The user operation.\n @param userOpHash      - Hash of the user's request data.\n @param maxCost         - The maximum cost of this transaction (based on maximum gas and gas price from userOp).\n @return context        - Value to send to a postOp. Zero length to signify postOp is not required.\n @return validationData - Signature and time-range of this operation, encoded the same as the return\n                          value of validateUserOperation.\n                          <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n                                                    other values are invalid for paymaster.\n                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n                          <6-byte> validAfter - first timestamp this operation is valid\n                          Note that the validation code cannot use block.timestamp (or block.number) directly."},"functionSelector":"52b7512c","id":3608,"implemented":false,"kind":"function","modifiers":[],"name":"validatePaymasterUserOp","nameLocation":"2087:23:12","nodeType":"FunctionDefinition","parameters":{"id":3602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3597,"mutability":"mutable","name":"userOp","nameLocation":"2149:6:12","nodeType":"VariableDeclaration","scope":3608,"src":"2120:35:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3596,"nodeType":"UserDefinedTypeName","pathNode":{"id":3595,"name":"PackedUserOperation","nameLocations":["2120:19:12"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"2120:19:12"},"referencedDeclaration":3748,"src":"2120:19:12","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":3599,"mutability":"mutable","name":"userOpHash","nameLocation":"2173:10:12","nodeType":"VariableDeclaration","scope":3608,"src":"2165:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3598,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2165:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3601,"mutability":"mutable","name":"maxCost","nameLocation":"2201:7:12","nodeType":"VariableDeclaration","scope":3608,"src":"2193:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3600,"name":"uint256","nodeType":"ElementaryTypeName","src":"2193:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2110:104:12"},"returnParameters":{"id":3607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3604,"mutability":"mutable","name":"context","nameLocation":"2246:7:12","nodeType":"VariableDeclaration","scope":3608,"src":"2233:20:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3603,"name":"bytes","nodeType":"ElementaryTypeName","src":"2233:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3606,"mutability":"mutable","name":"validationData","nameLocation":"2263:14:12","nodeType":"VariableDeclaration","scope":3608,"src":"2255:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3605,"name":"uint256","nodeType":"ElementaryTypeName","src":"2255:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2232:46:12"},"scope":3622,"src":"2078:201:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3609,"nodeType":"StructuredDocumentation","src":"2285:849:12","text":" Post-operation handler.\n Must verify sender is the entryPoint.\n @param mode          - Enum with the following options:\n                        opSucceeded - User operation succeeded.\n                        opReverted  - User op reverted. The paymaster still has to pay for gas.\n                        postOpReverted - never passed in a call to postOp().\n @param context       - The context value returned by validatePaymasterUserOp\n @param actualGasCost - Actual gas used so far (without this postOp call).\n @param actualUserOpFeePerGas - the gas price this UserOp pays. This value is based on the UserOp's maxFeePerGas\n                        and maxPriorityFee (and basefee)\n                        It is not the same as tx.gasprice, which is what the bundler pays."},"functionSelector":"7c627b21","id":3621,"implemented":false,"kind":"function","modifiers":[],"name":"postOp","nameLocation":"3148:6:12","nodeType":"FunctionDefinition","parameters":{"id":3619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3612,"mutability":"mutable","name":"mode","nameLocation":"3175:4:12","nodeType":"VariableDeclaration","scope":3621,"src":"3164:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"typeName":{"id":3611,"nodeType":"UserDefinedTypeName","pathNode":{"id":3610,"name":"PostOpMode","nameLocations":["3164:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":3593,"src":"3164:10:12"},"referencedDeclaration":3593,"src":"3164:10:12","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"visibility":"internal"},{"constant":false,"id":3614,"mutability":"mutable","name":"context","nameLocation":"3204:7:12","nodeType":"VariableDeclaration","scope":3621,"src":"3189:22:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3613,"name":"bytes","nodeType":"ElementaryTypeName","src":"3189:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3616,"mutability":"mutable","name":"actualGasCost","nameLocation":"3229:13:12","nodeType":"VariableDeclaration","scope":3621,"src":"3221:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3615,"name":"uint256","nodeType":"ElementaryTypeName","src":"3221:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3618,"mutability":"mutable","name":"actualUserOpFeePerGas","nameLocation":"3260:21:12","nodeType":"VariableDeclaration","scope":3621,"src":"3252:29:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3617,"name":"uint256","nodeType":"ElementaryTypeName","src":"3252:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3154:133:12"},"returnParameters":{"id":3620,"nodeType":"ParameterList","parameters":[],"src":"3296:0:12"},"scope":3622,"src":"3139:158:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3623,"src":"316:2983:12","usedErrors":[],"usedEvents":[]}],"src":"36:3264:12"},"id":12},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","exportedSymbols":{"IStakeManager":[3726]},"id":3727,"license":"GPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":3624,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"41:24:13"},{"abstract":false,"baseContracts":[],"canonicalName":"IStakeManager","contractDependencies":[],"contractKind":"interface","documentation":{"id":3625,"nodeType":"StructuredDocumentation","src":"67:212:13","text":" Manage deposits and stakes.\n Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account).\n Stake is value locked for at least \"unstakeDelay\" by the staked entity."},"fullyImplemented":false,"id":3726,"linearizedBaseContracts":[3726],"name":"IStakeManager","nameLocation":"290:13:13","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4","id":3631,"name":"Deposited","nameLocation":"316:9:13","nodeType":"EventDefinition","parameters":{"id":3630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3627,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"342:7:13","nodeType":"VariableDeclaration","scope":3631,"src":"326:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3626,"name":"address","nodeType":"ElementaryTypeName","src":"326:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3629,"indexed":false,"mutability":"mutable","name":"totalDeposit","nameLocation":"359:12:13","nodeType":"VariableDeclaration","scope":3631,"src":"351:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3628,"name":"uint256","nodeType":"ElementaryTypeName","src":"351:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"325:47:13"},"src":"310:63:13"},{"anonymous":false,"eventSelector":"d1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb","id":3639,"name":"Withdrawn","nameLocation":"385:9:13","nodeType":"EventDefinition","parameters":{"id":3638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3633,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"420:7:13","nodeType":"VariableDeclaration","scope":3639,"src":"404:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3632,"name":"address","nodeType":"ElementaryTypeName","src":"404:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3635,"indexed":false,"mutability":"mutable","name":"withdrawAddress","nameLocation":"445:15:13","nodeType":"VariableDeclaration","scope":3639,"src":"437:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3634,"name":"address","nodeType":"ElementaryTypeName","src":"437:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3637,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"478:6:13","nodeType":"VariableDeclaration","scope":3639,"src":"470:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3636,"name":"uint256","nodeType":"ElementaryTypeName","src":"470:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"394:96:13"},"src":"379:112:13"},{"anonymous":false,"eventSelector":"a5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01","id":3647,"name":"StakeLocked","nameLocation":"560:11:13","nodeType":"EventDefinition","parameters":{"id":3646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3641,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"597:7:13","nodeType":"VariableDeclaration","scope":3647,"src":"581:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3640,"name":"address","nodeType":"ElementaryTypeName","src":"581:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3643,"indexed":false,"mutability":"mutable","name":"totalStaked","nameLocation":"622:11:13","nodeType":"VariableDeclaration","scope":3647,"src":"614:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3642,"name":"uint256","nodeType":"ElementaryTypeName","src":"614:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3645,"indexed":false,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"651:15:13","nodeType":"VariableDeclaration","scope":3647,"src":"643:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3644,"name":"uint256","nodeType":"ElementaryTypeName","src":"643:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"571:101:13"},"src":"554:119:13"},{"anonymous":false,"eventSelector":"fa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a","id":3653,"name":"StakeUnlocked","nameLocation":"742:13:13","nodeType":"EventDefinition","parameters":{"id":3652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3649,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"772:7:13","nodeType":"VariableDeclaration","scope":3653,"src":"756:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3648,"name":"address","nodeType":"ElementaryTypeName","src":"756:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3651,"indexed":false,"mutability":"mutable","name":"withdrawTime","nameLocation":"789:12:13","nodeType":"VariableDeclaration","scope":3653,"src":"781:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3650,"name":"uint256","nodeType":"ElementaryTypeName","src":"781:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"755:47:13"},"src":"736:67:13"},{"anonymous":false,"eventSelector":"b7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3","id":3661,"name":"StakeWithdrawn","nameLocation":"815:14:13","nodeType":"EventDefinition","parameters":{"id":3660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3655,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"855:7:13","nodeType":"VariableDeclaration","scope":3661,"src":"839:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3654,"name":"address","nodeType":"ElementaryTypeName","src":"839:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3657,"indexed":false,"mutability":"mutable","name":"withdrawAddress","nameLocation":"880:15:13","nodeType":"VariableDeclaration","scope":3661,"src":"872:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3656,"name":"address","nodeType":"ElementaryTypeName","src":"872:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3659,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"913:6:13","nodeType":"VariableDeclaration","scope":3661,"src":"905:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3658,"name":"uint256","nodeType":"ElementaryTypeName","src":"905:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"829:96:13"},"src":"809:117:13"},{"canonicalName":"IStakeManager.DepositInfo","documentation":{"id":3662,"nodeType":"StructuredDocumentation","src":"932:697:13","text":" @param deposit         - The entity's deposit.\n @param staked          - True if this entity is staked.\n @param stake           - Actual amount of ether staked for this entity.\n @param unstakeDelaySec - Minimum delay to withdraw the stake.\n @param withdrawTime    - First block timestamp where 'withdrawStake' will be callable, or zero if already locked.\n @dev Sizes were chosen so that deposit fits into one cell (used during handleOp)\n      and the rest fit into a 2nd cell (used during stake/unstake)\n      - 112 bit allows for 10^15 eth\n      - 48 bit for full timestamp\n      - 32 bit allows 150 years for unstake delay"},"id":3673,"members":[{"constant":false,"id":3664,"mutability":"mutable","name":"deposit","nameLocation":"1671:7:13","nodeType":"VariableDeclaration","scope":3673,"src":"1663:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3663,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3666,"mutability":"mutable","name":"staked","nameLocation":"1693:6:13","nodeType":"VariableDeclaration","scope":3673,"src":"1688:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3665,"name":"bool","nodeType":"ElementaryTypeName","src":"1688:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3668,"mutability":"mutable","name":"stake","nameLocation":"1717:5:13","nodeType":"VariableDeclaration","scope":3673,"src":"1709:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":3667,"name":"uint112","nodeType":"ElementaryTypeName","src":"1709:7:13","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"},{"constant":false,"id":3670,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"1739:15:13","nodeType":"VariableDeclaration","scope":3673,"src":"1732:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3669,"name":"uint32","nodeType":"ElementaryTypeName","src":"1732:6:13","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":3672,"mutability":"mutable","name":"withdrawTime","nameLocation":"1771:12:13","nodeType":"VariableDeclaration","scope":3673,"src":"1764:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3671,"name":"uint48","nodeType":"ElementaryTypeName","src":"1764:6:13","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"DepositInfo","nameLocation":"1641:11:13","nodeType":"StructDefinition","scope":3726,"src":"1634:156:13","visibility":"public"},{"canonicalName":"IStakeManager.StakeInfo","id":3678,"members":[{"constant":false,"id":3675,"mutability":"mutable","name":"stake","nameLocation":"1894:5:13","nodeType":"VariableDeclaration","scope":3678,"src":"1886:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3674,"name":"uint256","nodeType":"ElementaryTypeName","src":"1886:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3677,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"1917:15:13","nodeType":"VariableDeclaration","scope":3678,"src":"1909:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3676,"name":"uint256","nodeType":"ElementaryTypeName","src":"1909:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"StakeInfo","nameLocation":"1866:9:13","nodeType":"StructDefinition","scope":3726,"src":"1859:80:13","visibility":"public"},{"documentation":{"id":3679,"nodeType":"StructuredDocumentation","src":"1945:149:13","text":" Get deposit info.\n @param account - The account to query.\n @return info   - Full deposit information of given account."},"functionSelector":"5287ce12","id":3687,"implemented":false,"kind":"function","modifiers":[],"name":"getDepositInfo","nameLocation":"2108:14:13","nodeType":"FunctionDefinition","parameters":{"id":3682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3681,"mutability":"mutable","name":"account","nameLocation":"2140:7:13","nodeType":"VariableDeclaration","scope":3687,"src":"2132:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3680,"name":"address","nodeType":"ElementaryTypeName","src":"2132:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2122:31:13"},"returnParameters":{"id":3686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3685,"mutability":"mutable","name":"info","nameLocation":"2196:4:13","nodeType":"VariableDeclaration","scope":3687,"src":"2177:23:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_memory_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":3684,"nodeType":"UserDefinedTypeName","pathNode":{"id":3683,"name":"DepositInfo","nameLocations":["2177:11:13"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"2177:11:13"},"referencedDeclaration":3673,"src":"2177:11:13","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"src":"2176:25:13"},"scope":3726,"src":"2099:103:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3688,"nodeType":"StructuredDocumentation","src":"2208:155:13","text":" Get account balance.\n @param account - The account to query.\n @return        - The deposit (for gas payment) of the account."},"functionSelector":"70a08231","id":3695,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2377:9:13","nodeType":"FunctionDefinition","parameters":{"id":3691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3690,"mutability":"mutable","name":"account","nameLocation":"2395:7:13","nodeType":"VariableDeclaration","scope":3695,"src":"2387:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3689,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2386:17:13"},"returnParameters":{"id":3694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3693,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3695,"src":"2427:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3692,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2426:9:13"},"scope":3726,"src":"2368:68:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3696,"nodeType":"StructuredDocumentation","src":"2442:106:13","text":" Add to the deposit of the given account.\n @param account - The account to add to."},"functionSelector":"b760faf9","id":3701,"implemented":false,"kind":"function","modifiers":[],"name":"depositTo","nameLocation":"2562:9:13","nodeType":"FunctionDefinition","parameters":{"id":3699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3698,"mutability":"mutable","name":"account","nameLocation":"2580:7:13","nodeType":"VariableDeclaration","scope":3701,"src":"2572:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3697,"name":"address","nodeType":"ElementaryTypeName","src":"2572:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2571:17:13"},"returnParameters":{"id":3700,"nodeType":"ParameterList","parameters":[],"src":"2605:0:13"},"scope":3726,"src":"2553:53:13","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":3702,"nodeType":"StructuredDocumentation","src":"2612:203:13","text":" Add to the account's stake - amount and delay\n any pending unstake is first cancelled.\n @param _unstakeDelaySec - The new lock duration before the deposit can be withdrawn."},"functionSelector":"0396cb60","id":3707,"implemented":false,"kind":"function","modifiers":[],"name":"addStake","nameLocation":"2829:8:13","nodeType":"FunctionDefinition","parameters":{"id":3705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3704,"mutability":"mutable","name":"_unstakeDelaySec","nameLocation":"2845:16:13","nodeType":"VariableDeclaration","scope":3707,"src":"2838:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3703,"name":"uint32","nodeType":"ElementaryTypeName","src":"2838:6:13","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2837:25:13"},"returnParameters":{"id":3706,"nodeType":"ParameterList","parameters":[],"src":"2879:0:13"},"scope":3726,"src":"2820:60:13","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":3708,"nodeType":"StructuredDocumentation","src":"2886:128:13","text":" Attempt to unlock the stake.\n The value can be withdrawn (using withdrawStake) after the unstake delay."},"functionSelector":"bb9fe6bf","id":3711,"implemented":false,"kind":"function","modifiers":[],"name":"unlockStake","nameLocation":"3028:11:13","nodeType":"FunctionDefinition","parameters":{"id":3709,"nodeType":"ParameterList","parameters":[],"src":"3039:2:13"},"returnParameters":{"id":3710,"nodeType":"ParameterList","parameters":[],"src":"3050:0:13"},"scope":3726,"src":"3019:32:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3712,"nodeType":"StructuredDocumentation","src":"3057:197:13","text":" Withdraw from the (unlocked) stake.\n Must first call unlockStake and wait for the unstakeDelay to pass.\n @param withdrawAddress - The address to send withdrawn value."},"functionSelector":"c23a5cea","id":3717,"implemented":false,"kind":"function","modifiers":[],"name":"withdrawStake","nameLocation":"3268:13:13","nodeType":"FunctionDefinition","parameters":{"id":3715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3714,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3298:15:13","nodeType":"VariableDeclaration","scope":3717,"src":"3282:31:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3713,"name":"address","nodeType":"ElementaryTypeName","src":"3282:15:13","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"3281:33:13"},"returnParameters":{"id":3716,"nodeType":"ParameterList","parameters":[],"src":"3323:0:13"},"scope":3726,"src":"3259:65:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3718,"nodeType":"StructuredDocumentation","src":"3330:170:13","text":" Withdraw from the deposit.\n @param withdrawAddress - The address to send withdrawn value.\n @param withdrawAmount  - The amount to withdraw."},"functionSelector":"205c2878","id":3725,"implemented":false,"kind":"function","modifiers":[],"name":"withdrawTo","nameLocation":"3514:10:13","nodeType":"FunctionDefinition","parameters":{"id":3723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3720,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3550:15:13","nodeType":"VariableDeclaration","scope":3725,"src":"3534:31:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3719,"name":"address","nodeType":"ElementaryTypeName","src":"3534:15:13","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":3722,"mutability":"mutable","name":"withdrawAmount","nameLocation":"3583:14:13","nodeType":"VariableDeclaration","scope":3725,"src":"3575:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3721,"name":"uint256","nodeType":"ElementaryTypeName","src":"3575:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3524:79:13"},"returnParameters":{"id":3724,"nodeType":"ParameterList","parameters":[],"src":"3612:0:13"},"scope":3726,"src":"3505:108:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3727,"src":"280:3335:13","usedErrors":[],"usedEvents":[3631,3639,3647,3653,3661]}],"src":"41:3575:13"},"id":13},"@account-abstraction/contracts/interfaces/PackedUserOperation.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","exportedSymbols":{"PackedUserOperation":[3748]},"id":3749,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3728,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:14"},{"canonicalName":"PackedUserOperation","documentation":{"id":3729,"nodeType":"StructuredDocumentation","src":"62:1164:14","text":" User Operation struct\n @param sender                - The sender account of this request.\n @param nonce                 - Unique value the sender uses to verify it is not a replay.\n @param initCode              - If set, the account contract will be created by this constructor/\n @param callData              - The method call to execute on this account.\n @param accountGasLimits      - Packed gas limits for validateUserOp and gas limit passed to the callData method call.\n @param preVerificationGas    - Gas not calculated by the handleOps method, but added to the gas paid.\n                                Covers batch overhead.\n @param gasFees               - packed gas fields maxPriorityFeePerGas and maxFeePerGas - Same as EIP-1559 gas parameters.\n @param paymasterAndData      - If set, this field holds the paymaster address, verification gas limit, postOp gas limit and paymaster-specific extra data\n                                The paymaster will pay for the transaction instead of the sender.\n @param signature             - Sender-verified signature over the entire request, the EntryPoint address and the chain ID."},"id":3748,"members":[{"constant":false,"id":3731,"mutability":"mutable","name":"sender","nameLocation":"1268:6:14","nodeType":"VariableDeclaration","scope":3748,"src":"1260:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3730,"name":"address","nodeType":"ElementaryTypeName","src":"1260:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3733,"mutability":"mutable","name":"nonce","nameLocation":"1288:5:14","nodeType":"VariableDeclaration","scope":3748,"src":"1280:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3732,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3735,"mutability":"mutable","name":"initCode","nameLocation":"1305:8:14","nodeType":"VariableDeclaration","scope":3748,"src":"1299:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3734,"name":"bytes","nodeType":"ElementaryTypeName","src":"1299:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3737,"mutability":"mutable","name":"callData","nameLocation":"1325:8:14","nodeType":"VariableDeclaration","scope":3748,"src":"1319:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3736,"name":"bytes","nodeType":"ElementaryTypeName","src":"1319:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3739,"mutability":"mutable","name":"accountGasLimits","nameLocation":"1347:16:14","nodeType":"VariableDeclaration","scope":3748,"src":"1339:24:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3738,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1339:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3741,"mutability":"mutable","name":"preVerificationGas","nameLocation":"1377:18:14","nodeType":"VariableDeclaration","scope":3748,"src":"1369:26:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3740,"name":"uint256","nodeType":"ElementaryTypeName","src":"1369:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3743,"mutability":"mutable","name":"gasFees","nameLocation":"1409:7:14","nodeType":"VariableDeclaration","scope":3748,"src":"1401:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3742,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1401:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3745,"mutability":"mutable","name":"paymasterAndData","nameLocation":"1428:16:14","nodeType":"VariableDeclaration","scope":3748,"src":"1422:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3744,"name":"bytes","nodeType":"ElementaryTypeName","src":"1422:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3747,"mutability":"mutable","name":"signature","nameLocation":"1456:9:14","nodeType":"VariableDeclaration","scope":3748,"src":"1450:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3746,"name":"bytes","nodeType":"ElementaryTypeName","src":"1450:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"PackedUserOperation","nameLocation":"1234:19:14","nodeType":"StructDefinition","scope":3749,"src":"1227:241:14","visibility":"public"}],"src":"36:1433:14"},"id":14},"@account-abstraction/contracts/utils/Exec.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/utils/Exec.sol","exportedSymbols":{"Exec":[3839]},"id":3840,"license":"LGPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":3750,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"42:24:15"},{"abstract":false,"baseContracts":[],"canonicalName":"Exec","contractDependencies":[],"contractKind":"library","documentation":{"id":3751,"nodeType":"StructuredDocumentation","src":"107:95:15","text":" Utility functions helpful when making different kinds of contract calls in Solidity."},"fullyImplemented":true,"id":3839,"linearizedBaseContracts":[3839],"name":"Exec","nameLocation":"211:4:15","nodeType":"ContractDefinition","nodes":[{"body":{"id":3765,"nodeType":"Block","src":"368:134:15","statements":[{"AST":{"nativeSrc":"403:93:15","nodeType":"YulBlock","src":"403:93:15","statements":[{"nativeSrc":"417:69:15","nodeType":"YulAssignment","src":"417:69:15","value":{"arguments":[{"name":"txGas","nativeSrc":"433:5:15","nodeType":"YulIdentifier","src":"433:5:15"},{"name":"to","nativeSrc":"440:2:15","nodeType":"YulIdentifier","src":"440:2:15"},{"name":"value","nativeSrc":"444:5:15","nodeType":"YulIdentifier","src":"444:5:15"},{"arguments":[{"name":"data","nativeSrc":"455:4:15","nodeType":"YulIdentifier","src":"455:4:15"},{"kind":"number","nativeSrc":"461:4:15","nodeType":"YulLiteral","src":"461:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"451:3:15","nodeType":"YulIdentifier","src":"451:3:15"},"nativeSrc":"451:15:15","nodeType":"YulFunctionCall","src":"451:15:15"},{"arguments":[{"name":"data","nativeSrc":"474:4:15","nodeType":"YulIdentifier","src":"474:4:15"}],"functionName":{"name":"mload","nativeSrc":"468:5:15","nodeType":"YulIdentifier","src":"468:5:15"},"nativeSrc":"468:11:15","nodeType":"YulFunctionCall","src":"468:11:15"},{"kind":"number","nativeSrc":"481:1:15","nodeType":"YulLiteral","src":"481:1:15","type":"","value":"0"},{"kind":"number","nativeSrc":"484:1:15","nodeType":"YulLiteral","src":"484:1:15","type":"","value":"0"}],"functionName":{"name":"call","nativeSrc":"428:4:15","nodeType":"YulIdentifier","src":"428:4:15"},"nativeSrc":"428:58:15","nodeType":"YulFunctionCall","src":"428:58:15"},"variableNames":[{"name":"success","nativeSrc":"417:7:15","nodeType":"YulIdentifier","src":"417:7:15"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":3757,"isOffset":false,"isSlot":false,"src":"455:4:15","valueSize":1},{"declaration":3757,"isOffset":false,"isSlot":false,"src":"474:4:15","valueSize":1},{"declaration":3762,"isOffset":false,"isSlot":false,"src":"417:7:15","valueSize":1},{"declaration":3753,"isOffset":false,"isSlot":false,"src":"440:2:15","valueSize":1},{"declaration":3759,"isOffset":false,"isSlot":false,"src":"433:5:15","valueSize":1},{"declaration":3755,"isOffset":false,"isSlot":false,"src":"444:5:15","valueSize":1}],"flags":["memory-safe"],"id":3764,"nodeType":"InlineAssembly","src":"378:118:15"}]},"id":3766,"implemented":true,"kind":"function","modifiers":[],"name":"call","nameLocation":"232:4:15","nodeType":"FunctionDefinition","parameters":{"id":3760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3753,"mutability":"mutable","name":"to","nameLocation":"254:2:15","nodeType":"VariableDeclaration","scope":3766,"src":"246:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3752,"name":"address","nodeType":"ElementaryTypeName","src":"246:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3755,"mutability":"mutable","name":"value","nameLocation":"274:5:15","nodeType":"VariableDeclaration","scope":3766,"src":"266:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3754,"name":"uint256","nodeType":"ElementaryTypeName","src":"266:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3757,"mutability":"mutable","name":"data","nameLocation":"302:4:15","nodeType":"VariableDeclaration","scope":3766,"src":"289:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3756,"name":"bytes","nodeType":"ElementaryTypeName","src":"289:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3759,"mutability":"mutable","name":"txGas","nameLocation":"324:5:15","nodeType":"VariableDeclaration","scope":3766,"src":"316:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3758,"name":"uint256","nodeType":"ElementaryTypeName","src":"316:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"236:99:15"},"returnParameters":{"id":3763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3762,"mutability":"mutable","name":"success","nameLocation":"359:7:15","nodeType":"VariableDeclaration","scope":3766,"src":"354:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3761,"name":"bool","nodeType":"ElementaryTypeName","src":"354:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"353:14:15"},"scope":3839,"src":"223:279:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3778,"nodeType":"Block","src":"641:133:15","statements":[{"AST":{"nativeSrc":"676:92:15","nodeType":"YulBlock","src":"676:92:15","statements":[{"nativeSrc":"690:68:15","nodeType":"YulAssignment","src":"690:68:15","value":{"arguments":[{"name":"txGas","nativeSrc":"712:5:15","nodeType":"YulIdentifier","src":"712:5:15"},{"name":"to","nativeSrc":"719:2:15","nodeType":"YulIdentifier","src":"719:2:15"},{"arguments":[{"name":"data","nativeSrc":"727:4:15","nodeType":"YulIdentifier","src":"727:4:15"},{"kind":"number","nativeSrc":"733:4:15","nodeType":"YulLiteral","src":"733:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"723:3:15","nodeType":"YulIdentifier","src":"723:3:15"},"nativeSrc":"723:15:15","nodeType":"YulFunctionCall","src":"723:15:15"},{"arguments":[{"name":"data","nativeSrc":"746:4:15","nodeType":"YulIdentifier","src":"746:4:15"}],"functionName":{"name":"mload","nativeSrc":"740:5:15","nodeType":"YulIdentifier","src":"740:5:15"},"nativeSrc":"740:11:15","nodeType":"YulFunctionCall","src":"740:11:15"},{"kind":"number","nativeSrc":"753:1:15","nodeType":"YulLiteral","src":"753:1:15","type":"","value":"0"},{"kind":"number","nativeSrc":"756:1:15","nodeType":"YulLiteral","src":"756:1:15","type":"","value":"0"}],"functionName":{"name":"staticcall","nativeSrc":"701:10:15","nodeType":"YulIdentifier","src":"701:10:15"},"nativeSrc":"701:57:15","nodeType":"YulFunctionCall","src":"701:57:15"},"variableNames":[{"name":"success","nativeSrc":"690:7:15","nodeType":"YulIdentifier","src":"690:7:15"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":3770,"isOffset":false,"isSlot":false,"src":"727:4:15","valueSize":1},{"declaration":3770,"isOffset":false,"isSlot":false,"src":"746:4:15","valueSize":1},{"declaration":3775,"isOffset":false,"isSlot":false,"src":"690:7:15","valueSize":1},{"declaration":3768,"isOffset":false,"isSlot":false,"src":"719:2:15","valueSize":1},{"declaration":3772,"isOffset":false,"isSlot":false,"src":"712:5:15","valueSize":1}],"flags":["memory-safe"],"id":3777,"nodeType":"InlineAssembly","src":"651:117:15"}]},"id":3779,"implemented":true,"kind":"function","modifiers":[],"name":"staticcall","nameLocation":"517:10:15","nodeType":"FunctionDefinition","parameters":{"id":3773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3768,"mutability":"mutable","name":"to","nameLocation":"545:2:15","nodeType":"VariableDeclaration","scope":3779,"src":"537:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3767,"name":"address","nodeType":"ElementaryTypeName","src":"537:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3770,"mutability":"mutable","name":"data","nameLocation":"570:4:15","nodeType":"VariableDeclaration","scope":3779,"src":"557:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3769,"name":"bytes","nodeType":"ElementaryTypeName","src":"557:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3772,"mutability":"mutable","name":"txGas","nameLocation":"592:5:15","nodeType":"VariableDeclaration","scope":3779,"src":"584:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3771,"name":"uint256","nodeType":"ElementaryTypeName","src":"584:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"527:76:15"},"returnParameters":{"id":3776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3775,"mutability":"mutable","name":"success","nameLocation":"632:7:15","nodeType":"VariableDeclaration","scope":3779,"src":"627:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3774,"name":"bool","nodeType":"ElementaryTypeName","src":"627:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"626:14:15"},"scope":3839,"src":"508:266:15","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3791,"nodeType":"Block","src":"910:135:15","statements":[{"AST":{"nativeSrc":"945:94:15","nodeType":"YulBlock","src":"945:94:15","statements":[{"nativeSrc":"959:70:15","nodeType":"YulAssignment","src":"959:70:15","value":{"arguments":[{"name":"txGas","nativeSrc":"983:5:15","nodeType":"YulIdentifier","src":"983:5:15"},{"name":"to","nativeSrc":"990:2:15","nodeType":"YulIdentifier","src":"990:2:15"},{"arguments":[{"name":"data","nativeSrc":"998:4:15","nodeType":"YulIdentifier","src":"998:4:15"},{"kind":"number","nativeSrc":"1004:4:15","nodeType":"YulLiteral","src":"1004:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"994:3:15","nodeType":"YulIdentifier","src":"994:3:15"},"nativeSrc":"994:15:15","nodeType":"YulFunctionCall","src":"994:15:15"},{"arguments":[{"name":"data","nativeSrc":"1017:4:15","nodeType":"YulIdentifier","src":"1017:4:15"}],"functionName":{"name":"mload","nativeSrc":"1011:5:15","nodeType":"YulIdentifier","src":"1011:5:15"},"nativeSrc":"1011:11:15","nodeType":"YulFunctionCall","src":"1011:11:15"},{"kind":"number","nativeSrc":"1024:1:15","nodeType":"YulLiteral","src":"1024:1:15","type":"","value":"0"},{"kind":"number","nativeSrc":"1027:1:15","nodeType":"YulLiteral","src":"1027:1:15","type":"","value":"0"}],"functionName":{"name":"delegatecall","nativeSrc":"970:12:15","nodeType":"YulIdentifier","src":"970:12:15"},"nativeSrc":"970:59:15","nodeType":"YulFunctionCall","src":"970:59:15"},"variableNames":[{"name":"success","nativeSrc":"959:7:15","nodeType":"YulIdentifier","src":"959:7:15"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":3783,"isOffset":false,"isSlot":false,"src":"1017:4:15","valueSize":1},{"declaration":3783,"isOffset":false,"isSlot":false,"src":"998:4:15","valueSize":1},{"declaration":3788,"isOffset":false,"isSlot":false,"src":"959:7:15","valueSize":1},{"declaration":3781,"isOffset":false,"isSlot":false,"src":"990:2:15","valueSize":1},{"declaration":3785,"isOffset":false,"isSlot":false,"src":"983:5:15","valueSize":1}],"flags":["memory-safe"],"id":3790,"nodeType":"InlineAssembly","src":"920:119:15"}]},"id":3792,"implemented":true,"kind":"function","modifiers":[],"name":"delegateCall","nameLocation":"789:12:15","nodeType":"FunctionDefinition","parameters":{"id":3786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3781,"mutability":"mutable","name":"to","nameLocation":"819:2:15","nodeType":"VariableDeclaration","scope":3792,"src":"811:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3780,"name":"address","nodeType":"ElementaryTypeName","src":"811:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3783,"mutability":"mutable","name":"data","nameLocation":"844:4:15","nodeType":"VariableDeclaration","scope":3792,"src":"831:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3782,"name":"bytes","nodeType":"ElementaryTypeName","src":"831:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3785,"mutability":"mutable","name":"txGas","nameLocation":"866:5:15","nodeType":"VariableDeclaration","scope":3792,"src":"858:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3784,"name":"uint256","nodeType":"ElementaryTypeName","src":"858:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"801:76:15"},"returnParameters":{"id":3789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3788,"mutability":"mutable","name":"success","nameLocation":"901:7:15","nodeType":"VariableDeclaration","scope":3792,"src":"896:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3787,"name":"bool","nodeType":"ElementaryTypeName","src":"896:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"895:14:15"},"scope":3839,"src":"780:265:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3800,"nodeType":"Block","src":"1194:365:15","statements":[{"AST":{"nativeSrc":"1229:324:15","nodeType":"YulBlock","src":"1229:324:15","statements":[{"nativeSrc":"1243:27:15","nodeType":"YulVariableDeclaration","src":"1243:27:15","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1254:14:15","nodeType":"YulIdentifier","src":"1254:14:15"},"nativeSrc":"1254:16:15","nodeType":"YulFunctionCall","src":"1254:16:15"},"variables":[{"name":"len","nativeSrc":"1247:3:15","nodeType":"YulTypedName","src":"1247:3:15","type":""}]},{"body":{"nativeSrc":"1302:45:15","nodeType":"YulBlock","src":"1302:45:15","statements":[{"nativeSrc":"1320:13:15","nodeType":"YulAssignment","src":"1320:13:15","value":{"name":"maxLen","nativeSrc":"1327:6:15","nodeType":"YulIdentifier","src":"1327:6:15"},"variableNames":[{"name":"len","nativeSrc":"1320:3:15","nodeType":"YulIdentifier","src":"1320:3:15"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1289:3:15","nodeType":"YulIdentifier","src":"1289:3:15"},{"name":"maxLen","nativeSrc":"1294:6:15","nodeType":"YulIdentifier","src":"1294:6:15"}],"functionName":{"name":"gt","nativeSrc":"1286:2:15","nodeType":"YulIdentifier","src":"1286:2:15"},"nativeSrc":"1286:15:15","nodeType":"YulFunctionCall","src":"1286:15:15"},"nativeSrc":"1283:64:15","nodeType":"YulIf","src":"1283:64:15"},{"nativeSrc":"1360:22:15","nodeType":"YulVariableDeclaration","src":"1360:22:15","value":{"arguments":[{"kind":"number","nativeSrc":"1377:4:15","nodeType":"YulLiteral","src":"1377:4:15","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"1371:5:15","nodeType":"YulIdentifier","src":"1371:5:15"},"nativeSrc":"1371:11:15","nodeType":"YulFunctionCall","src":"1371:11:15"},"variables":[{"name":"ptr","nativeSrc":"1364:3:15","nodeType":"YulTypedName","src":"1364:3:15","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1402:4:15","nodeType":"YulLiteral","src":"1402:4:15","type":"","value":"0x40"},{"arguments":[{"name":"ptr","nativeSrc":"1412:3:15","nodeType":"YulIdentifier","src":"1412:3:15"},{"arguments":[{"name":"len","nativeSrc":"1421:3:15","nodeType":"YulIdentifier","src":"1421:3:15"},{"kind":"number","nativeSrc":"1426:4:15","nodeType":"YulLiteral","src":"1426:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1417:3:15","nodeType":"YulIdentifier","src":"1417:3:15"},"nativeSrc":"1417:14:15","nodeType":"YulFunctionCall","src":"1417:14:15"}],"functionName":{"name":"add","nativeSrc":"1408:3:15","nodeType":"YulIdentifier","src":"1408:3:15"},"nativeSrc":"1408:24:15","nodeType":"YulFunctionCall","src":"1408:24:15"}],"functionName":{"name":"mstore","nativeSrc":"1395:6:15","nodeType":"YulIdentifier","src":"1395:6:15"},"nativeSrc":"1395:38:15","nodeType":"YulFunctionCall","src":"1395:38:15"},"nativeSrc":"1395:38:15","nodeType":"YulExpressionStatement","src":"1395:38:15"},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1453:3:15","nodeType":"YulIdentifier","src":"1453:3:15"},{"name":"len","nativeSrc":"1458:3:15","nodeType":"YulIdentifier","src":"1458:3:15"}],"functionName":{"name":"mstore","nativeSrc":"1446:6:15","nodeType":"YulIdentifier","src":"1446:6:15"},"nativeSrc":"1446:16:15","nodeType":"YulFunctionCall","src":"1446:16:15"},"nativeSrc":"1446:16:15","nodeType":"YulExpressionStatement","src":"1446:16:15"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"1494:3:15","nodeType":"YulIdentifier","src":"1494:3:15"},{"kind":"number","nativeSrc":"1499:4:15","nodeType":"YulLiteral","src":"1499:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1490:3:15","nodeType":"YulIdentifier","src":"1490:3:15"},"nativeSrc":"1490:14:15","nodeType":"YulFunctionCall","src":"1490:14:15"},{"kind":"number","nativeSrc":"1506:1:15","nodeType":"YulLiteral","src":"1506:1:15","type":"","value":"0"},{"name":"len","nativeSrc":"1509:3:15","nodeType":"YulIdentifier","src":"1509:3:15"}],"functionName":{"name":"returndatacopy","nativeSrc":"1475:14:15","nodeType":"YulIdentifier","src":"1475:14:15"},"nativeSrc":"1475:38:15","nodeType":"YulFunctionCall","src":"1475:38:15"},"nativeSrc":"1475:38:15","nodeType":"YulExpressionStatement","src":"1475:38:15"},{"nativeSrc":"1526:17:15","nodeType":"YulAssignment","src":"1526:17:15","value":{"name":"ptr","nativeSrc":"1540:3:15","nodeType":"YulIdentifier","src":"1540:3:15"},"variableNames":[{"name":"returnData","nativeSrc":"1526:10:15","nodeType":"YulIdentifier","src":"1526:10:15"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":3794,"isOffset":false,"isSlot":false,"src":"1294:6:15","valueSize":1},{"declaration":3794,"isOffset":false,"isSlot":false,"src":"1327:6:15","valueSize":1},{"declaration":3797,"isOffset":false,"isSlot":false,"src":"1526:10:15","valueSize":1}],"flags":["memory-safe"],"id":3799,"nodeType":"InlineAssembly","src":"1204:349:15"}]},"id":3801,"implemented":true,"kind":"function","modifiers":[],"name":"getReturnData","nameLocation":"1116:13:15","nodeType":"FunctionDefinition","parameters":{"id":3795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3794,"mutability":"mutable","name":"maxLen","nameLocation":"1138:6:15","nodeType":"VariableDeclaration","scope":3801,"src":"1130:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3793,"name":"uint256","nodeType":"ElementaryTypeName","src":"1130:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1129:16:15"},"returnParameters":{"id":3798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3797,"mutability":"mutable","name":"returnData","nameLocation":"1182:10:15","nodeType":"VariableDeclaration","scope":3801,"src":"1169:23:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3796,"name":"bytes","nodeType":"ElementaryTypeName","src":"1169:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1168:25:15"},"scope":3839,"src":"1107:452:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3807,"nodeType":"Block","src":"1702:111:15","statements":[{"AST":{"nativeSrc":"1737:70:15","nodeType":"YulBlock","src":"1737:70:15","statements":[{"expression":{"arguments":[{"arguments":[{"name":"returnData","nativeSrc":"1762:10:15","nodeType":"YulIdentifier","src":"1762:10:15"},{"kind":"number","nativeSrc":"1774:2:15","nodeType":"YulLiteral","src":"1774:2:15","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1758:3:15","nodeType":"YulIdentifier","src":"1758:3:15"},"nativeSrc":"1758:19:15","nodeType":"YulFunctionCall","src":"1758:19:15"},{"arguments":[{"name":"returnData","nativeSrc":"1785:10:15","nodeType":"YulIdentifier","src":"1785:10:15"}],"functionName":{"name":"mload","nativeSrc":"1779:5:15","nodeType":"YulIdentifier","src":"1779:5:15"},"nativeSrc":"1779:17:15","nodeType":"YulFunctionCall","src":"1779:17:15"}],"functionName":{"name":"revert","nativeSrc":"1751:6:15","nodeType":"YulIdentifier","src":"1751:6:15"},"nativeSrc":"1751:46:15","nodeType":"YulFunctionCall","src":"1751:46:15"},"nativeSrc":"1751:46:15","nodeType":"YulExpressionStatement","src":"1751:46:15"}]},"evmVersion":"cancun","externalReferences":[{"declaration":3803,"isOffset":false,"isSlot":false,"src":"1762:10:15","valueSize":1},{"declaration":3803,"isOffset":false,"isSlot":false,"src":"1785:10:15","valueSize":1}],"flags":["memory-safe"],"id":3806,"nodeType":"InlineAssembly","src":"1712:95:15"}]},"id":3808,"implemented":true,"kind":"function","modifiers":[],"name":"revertWithData","nameLocation":"1648:14:15","nodeType":"FunctionDefinition","parameters":{"id":3804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3803,"mutability":"mutable","name":"returnData","nameLocation":"1676:10:15","nodeType":"VariableDeclaration","scope":3808,"src":"1663:23:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3802,"name":"bytes","nodeType":"ElementaryTypeName","src":"1663:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1662:25:15"},"returnParameters":{"id":3805,"nodeType":"ParameterList","parameters":[],"src":"1702:0:15"},"scope":3839,"src":"1639:174:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3837,"nodeType":"Block","src":"1898:142:15","statements":[{"assignments":[3818],"declarations":[{"constant":false,"id":3818,"mutability":"mutable","name":"success","nameLocation":"1913:7:15","nodeType":"VariableDeclaration","scope":3837,"src":"1908:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3817,"name":"bool","nodeType":"ElementaryTypeName","src":"1908:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":3826,"initialValue":{"arguments":[{"id":3820,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"1928:2:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":3821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1931:1:15","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3822,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3812,"src":"1933:4:15","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3823,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"1938:7:15","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1938:9:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3819,"name":"call","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3766,"src":"1923:4:15","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory,uint256) returns (bool)"}},"id":3825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1923:25:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"1908:40:15"},{"condition":{"id":3828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1962:8:15","subExpression":{"id":3827,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"1963:7:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3836,"nodeType":"IfStatement","src":"1958:76:15","trueBody":{"id":3835,"nodeType":"Block","src":"1972:62:15","statements":[{"expression":{"arguments":[{"arguments":[{"id":3831,"name":"maxLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"2015:6:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3830,"name":"getReturnData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3801,"src":"2001:13:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":3832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2001:21:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3829,"name":"revertWithData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3808,"src":"1986:14:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":3833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1986:37:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3834,"nodeType":"ExpressionStatement","src":"1986:37:15"}]}}]},"id":3838,"implemented":true,"kind":"function","modifiers":[],"name":"callAndRevert","nameLocation":"1828:13:15","nodeType":"FunctionDefinition","parameters":{"id":3815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3810,"mutability":"mutable","name":"to","nameLocation":"1850:2:15","nodeType":"VariableDeclaration","scope":3838,"src":"1842:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3809,"name":"address","nodeType":"ElementaryTypeName","src":"1842:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3812,"mutability":"mutable","name":"data","nameLocation":"1867:4:15","nodeType":"VariableDeclaration","scope":3838,"src":"1854:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3811,"name":"bytes","nodeType":"ElementaryTypeName","src":"1854:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3814,"mutability":"mutable","name":"maxLen","nameLocation":"1881:6:15","nodeType":"VariableDeclaration","scope":3838,"src":"1873:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3813,"name":"uint256","nodeType":"ElementaryTypeName","src":"1873:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1841:47:15"},"returnParameters":{"id":3816,"nodeType":"ParameterList","parameters":[],"src":"1898:0:15"},"scope":3839,"src":"1819:221:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":3840,"src":"203:1839:15","usedErrors":[],"usedEvents":[]}],"src":"42:2001:15"},"id":15},"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"ast":{"absolutePath":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","exportedSymbols":{"AccessControl":[7067],"Address":[12580],"BaseAccount":[138],"ECDSA":[18098],"ERC2771Context":[10094],"ERC2771ForwarderAccount":[4287],"IEntryPoint":[3566],"MessageHashUtils":[18172],"PackedUserOperation":[3748],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244]},"id":4288,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":3841,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"39:24:16"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"@openzeppelin/contracts/access/AccessControl.sol","id":3843,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":7068,"src":"65:79:16","symbolAliases":[{"foreign":{"id":3842,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7067,"src":"73:13:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":3845,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":12581,"src":"145:66:16","symbolAliases":[{"foreign":{"id":3844,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"153:7:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","file":"@openzeppelin/contracts/metatx/ERC2771Context.sol","id":3847,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":10095,"src":"212:81:16","symbolAliases":[{"foreign":{"id":3846,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10094,"src":"220:14:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":3849,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":18173,"src":"294:97:16","symbolAliases":[{"foreign":{"id":3848,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18172,"src":"302:16:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","file":"@account-abstraction/contracts/core/BaseAccount.sol","id":3851,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":139,"src":"392:80:16","symbolAliases":[{"foreign":{"id":3850,"name":"BaseAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":138,"src":"400:11:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"@account-abstraction/contracts/core/Helpers.sol","id":3854,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":2416,"src":"473:110:16","symbolAliases":[{"foreign":{"id":3852,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2244,"src":"481:22:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":3853,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2241,"src":"505:21:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","id":3856,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":3567,"src":"584:86:16","symbolAliases":[{"foreign":{"id":3855,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3566,"src":"592:11:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","id":3858,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":3749,"src":"671:102:16","symbolAliases":[{"foreign":{"id":3857,"name":"PackedUserOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3748,"src":"679:19:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":3860,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4288,"sourceUnit":18099,"src":"774:75:16","symbolAliases":[{"foreign":{"id":3859,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18098,"src":"782:5:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3862,"name":"AccessControl","nameLocations":["1194:13:16"],"nodeType":"IdentifierPath","referencedDeclaration":7067,"src":"1194:13:16"},"id":3863,"nodeType":"InheritanceSpecifier","src":"1194:13:16"},{"baseName":{"id":3864,"name":"BaseAccount","nameLocations":["1209:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":138,"src":"1209:11:16"},"id":3865,"nodeType":"InheritanceSpecifier","src":"1209:11:16"}],"canonicalName":"ERC2771ForwarderAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":3861,"nodeType":"StructuredDocumentation","src":"851:306:16","text":" @title ERC2771ForwarderAccount\n @dev Smart Account that acts as an ERC2771 Trusted Forwarder, forwarding calls to other contract(s) where\n      the account is the trusted forwarder, on behalf of the signer of the userOp.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":4287,"linearizedBaseContracts":[4287,138,3335,7067,18196,18208,7150,12610],"name":"ERC2771ForwarderAccount","nameLocation":"1167:23:16","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"e02023a1","id":3870,"mutability":"constant","name":"WITHDRAW_ROLE","nameLocation":"1249:13:16","nodeType":"VariableDeclaration","scope":4287,"src":"1225:66:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3866,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1225:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"57495448445241575f524f4c45","id":3868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1275:15:16","typeDescriptions":{"typeIdentifier":"t_stringliteral_5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec","typeString":"literal_string \"WITHDRAW_ROLE\""},"value":"WITHDRAW_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec","typeString":"literal_string \"WITHDRAW_ROLE\""}],"id":3867,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1265:9:16","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1265:26:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":3875,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"1319:13:16","nodeType":"VariableDeclaration","scope":4287,"src":"1295:66:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3871,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1295:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":3873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1345:15:16","typeDescriptions":{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""},"value":"EXECUTOR_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63","typeString":"literal_string \"EXECUTOR_ROLE\""}],"id":3872,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1335:9:16","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1335:26:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":false,"id":3878,"mutability":"immutable","name":"_entryPoint","nameLocation":"1396:11:16","nodeType":"VariableDeclaration","scope":4287,"src":"1366:41:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":3877,"nodeType":"UserDefinedTypeName","pathNode":{"id":3876,"name":"IEntryPoint","nameLocations":["1366:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1366:11:16"},"referencedDeclaration":3566,"src":"1366:11:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"private"},{"constant":false,"id":3880,"mutability":"mutable","name":"_userOpSigner","nameLocation":"1438:13:16","nodeType":"VariableDeclaration","scope":4287,"src":"1411:40:16","stateVariable":true,"storageLocation":"transient","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3879,"name":"address","nodeType":"ElementaryTypeName","src":"1411:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"errorSelector":"f1a1fdac","id":3884,"name":"RequiredEntryPointOrExecutor","nameLocation":"1462:28:16","nodeType":"ErrorDefinition","parameters":{"id":3883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3882,"mutability":"mutable","name":"sender","nameLocation":"1499:6:16","nodeType":"VariableDeclaration","scope":3884,"src":"1491:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3881,"name":"address","nodeType":"ElementaryTypeName","src":"1491:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1490:16:16"},"src":"1456:51:16"},{"errorSelector":"6ca7ff7d","id":3886,"name":"UserOpSignerNotSet","nameLocation":"1516:18:16","nodeType":"ErrorDefinition","parameters":{"id":3885,"nodeType":"ParameterList","parameters":[],"src":"1534:2:16"},"src":"1510:27:16"},{"errorSelector":"6d4e1415","id":3890,"name":"CanCallOnlyIfTrustedForwarder","nameLocation":"1546:29:16","nodeType":"ErrorDefinition","parameters":{"id":3889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3888,"mutability":"mutable","name":"target","nameLocation":"1584:6:16","nodeType":"VariableDeclaration","scope":3890,"src":"1576:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3887,"name":"address","nodeType":"ElementaryTypeName","src":"1576:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1575:16:16"},"src":"1540:52:16"},{"errorSelector":"2a00e5c6","id":3892,"name":"WrongArrayLength","nameLocation":"1601:16:16","nodeType":"ErrorDefinition","parameters":{"id":3891,"nodeType":"ParameterList","parameters":[],"src":"1617:2:16"},"src":"1595:25:16"},{"baseFunctions":[35],"body":{"id":3902,"nodeType":"Block","src":"1727:29:16","statements":[{"expression":{"id":3900,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3878,"src":"1740:11:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"functionReturnParameters":3899,"id":3901,"nodeType":"Return","src":"1733:18:16"}]},"documentation":{"id":3893,"nodeType":"StructuredDocumentation","src":"1624:27:16","text":"@inheritdoc BaseAccount"},"functionSelector":"b0d691fe","id":3903,"implemented":true,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1663:10:16","nodeType":"FunctionDefinition","overrides":{"id":3895,"nodeType":"OverrideSpecifier","overrides":[],"src":"1696:8:16"},"parameters":{"id":3894,"nodeType":"ParameterList","parameters":[],"src":"1673:2:16"},"returnParameters":{"id":3899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3898,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3903,"src":"1714:11:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":3897,"nodeType":"UserDefinedTypeName","pathNode":{"id":3896,"name":"IEntryPoint","nameLocations":["1714:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1714:11:16"},"referencedDeclaration":3566,"src":"1714:11:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1713:13:16"},"scope":4287,"src":"1654:102:16","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":3906,"nodeType":"Block","src":"1834:2:16","statements":[]},"id":3907,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3904,"nodeType":"ParameterList","parameters":[],"src":"1814:2:16"},"returnParameters":{"id":3905,"nodeType":"ParameterList","parameters":[],"src":"1834:0:16"},"scope":4287,"src":"1807:29:16","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":3946,"nodeType":"Block","src":"1921:182:16","statements":[{"expression":{"id":3920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3918,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3878,"src":"1927:11:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3919,"name":"anEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3910,"src":"1941:12:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"src":"1927:26:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":3921,"nodeType":"ExpressionStatement","src":"1927:26:16"},{"expression":{"arguments":[{"id":3923,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6801,"src":"1970:18:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3924,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3912,"src":"1990:5:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3922,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"1959:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":3925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1959:37:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3926,"nodeType":"ExpressionStatement","src":"1959:37:16"},{"body":{"id":3944,"nodeType":"Block","src":"2045:54:16","statements":[{"expression":{"arguments":[{"id":3938,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3875,"src":"2064:13:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":3939,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3915,"src":"2079:9:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":3941,"indexExpression":{"id":3940,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"2089:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2079:12:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3937,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"2053:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":3942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2053:39:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3943,"nodeType":"ExpressionStatement","src":"2053:39:16"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3930,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"2018:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3931,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3915,"src":"2022:9:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":3932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2032:6:16","memberName":"length","nodeType":"MemberAccess","src":"2022:16:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2018:20:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3945,"initializationExpression":{"assignments":[3928],"declarations":[{"constant":false,"id":3928,"mutability":"mutable","name":"i","nameLocation":"2015:1:16","nodeType":"VariableDeclaration","scope":3945,"src":"2007:9:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3927,"name":"uint256","nodeType":"ElementaryTypeName","src":"2007:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3929,"nodeType":"VariableDeclarationStatement","src":"2007:9:16"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2040:3:16","subExpression":{"id":3934,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"2040:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3936,"nodeType":"ExpressionStatement","src":"2040:3:16"},"nodeType":"ForStatement","src":"2002:97:16"}]},"id":3947,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3910,"mutability":"mutable","name":"anEntryPoint","nameLocation":"1864:12:16","nodeType":"VariableDeclaration","scope":3947,"src":"1852:24:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":3909,"nodeType":"UserDefinedTypeName","pathNode":{"id":3908,"name":"IEntryPoint","nameLocations":["1852:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1852:11:16"},"referencedDeclaration":3566,"src":"1852:11:16","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"internal"},{"constant":false,"id":3912,"mutability":"mutable","name":"admin","nameLocation":"1886:5:16","nodeType":"VariableDeclaration","scope":3947,"src":"1878:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3911,"name":"address","nodeType":"ElementaryTypeName","src":"1878:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3915,"mutability":"mutable","name":"executors","nameLocation":"1910:9:16","nodeType":"VariableDeclaration","scope":3947,"src":"1893:26:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3913,"name":"address","nodeType":"ElementaryTypeName","src":"1893:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3914,"nodeType":"ArrayTypeName","src":"1893:9:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"1851:69:16"},"returnParameters":{"id":3917,"nodeType":"ParameterList","parameters":[],"src":"1921:0:16"},"scope":4287,"src":"1840:263:16","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":4001,"nodeType":"Block","src":"2263:705:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3952,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2273:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2277:6:16","memberName":"sender","nodeType":"MemberAccess","src":"2273:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":3956,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[3903],"referencedDeclaration":3903,"src":"2295:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":3957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2295:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}],"id":3955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2287:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3954,"name":"address","nodeType":"ElementaryTypeName","src":"2287:7:16","typeDescriptions":{}}},"id":3958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2287:21:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2273:35:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3985,"nodeType":"IfStatement","src":"2269:581:16","trueBody":{"id":3984,"nodeType":"Block","src":"2310:540:16","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3961,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3880,"src":"2326:13:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2351:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3963,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3962,"name":"address","nodeType":"ElementaryTypeName","src":"2343:7:16","typeDescriptions":{}}},"id":3965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2326:27:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3967,"name":"UserOpSignerNotSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"2355:18:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2355:20:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":3960,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2318:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":3969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2318:58:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3970,"nodeType":"ExpressionStatement","src":"2318:58:16"},{"expression":{"id":3973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3971,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3950,"src":"2384:6:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3972,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3880,"src":"2393:13:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2384:22:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3974,"nodeType":"ExpressionStatement","src":"2384:22:16"},{"expression":{"id":3980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3975,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3880,"src":"2796:13:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":3978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2820:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":3977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2812:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3976,"name":"address","nodeType":"ElementaryTypeName","src":"2812:7:16","typeDescriptions":{}}},"id":3979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2812:10:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2796:26:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3981,"nodeType":"ExpressionStatement","src":"2796:26:16"},{"expression":{"id":3982,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3950,"src":"2837:6:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3951,"id":3983,"nodeType":"Return","src":"2830:13:16"}]}},{"expression":{"arguments":[{"arguments":[{"id":3988,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3875,"src":"2871:13:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":3989,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2886:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2890:6:16","memberName":"sender","nodeType":"MemberAccess","src":"2886:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3987,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"2863:7:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":3991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2863:34:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":3993,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2928:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2932:6:16","memberName":"sender","nodeType":"MemberAccess","src":"2928:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3992,"name":"RequiredEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3884,"src":"2899:28:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":3995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2899:40:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":3986,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2855:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":3996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:85:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3997,"nodeType":"ExpressionStatement","src":"2855:85:16"},{"expression":{"expression":{"id":3998,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2953:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2957:6:16","memberName":"sender","nodeType":"MemberAccess","src":"2953:10:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3951,"id":4000,"nodeType":"Return","src":"2946:17:16"}]},"id":4002,"implemented":true,"kind":"function","modifiers":[],"name":"_requireFromEntryPointOrExecutor","nameLocation":"2194:32:16","nodeType":"FunctionDefinition","parameters":{"id":3948,"nodeType":"ParameterList","parameters":[],"src":"2226:2:16"},"returnParameters":{"id":3951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3950,"mutability":"mutable","name":"sender","nameLocation":"2255:6:16","nodeType":"VariableDeclaration","scope":4002,"src":"2247:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3949,"name":"address","nodeType":"ElementaryTypeName","src":"2247:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2246:16:16"},"scope":4287,"src":"2185:783:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4038,"nodeType":"Block","src":"3279:218:16","statements":[{"assignments":[4013],"declarations":[{"constant":false,"id":4013,"mutability":"mutable","name":"sender","nameLocation":"3293:6:16","nodeType":"VariableDeclaration","scope":4038,"src":"3285:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4012,"name":"address","nodeType":"ElementaryTypeName","src":"3285:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4016,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4014,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4002,"src":"3302:32:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_address_$","typeString":"function () returns (address)"}},"id":4015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3302:34:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3285:51:16"},{"expression":{"arguments":[{"arguments":[{"id":4019,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4005,"src":"3369:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4018,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4234,"src":"3350:18:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3350:24:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":4022,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4005,"src":"3406:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4021,"name":"CanCallOnlyIfTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3890,"src":"3376:29:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3376:35:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4017,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3342:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3342:70:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4025,"nodeType":"ExpressionStatement","src":"3342:70:16"},{"expression":{"arguments":[{"id":4029,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4005,"src":"3448:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4032,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4009,"src":"3471:4:16","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":4033,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4013,"src":"3477:6:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4030,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3454:3:16","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4031,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3458:12:16","memberName":"encodePacked","nodeType":"MemberAccess","src":"3454:16:16","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3454:30:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4035,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4007,"src":"3486:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4026,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"3418:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$12580_$","typeString":"type(library Address)"}},"id":4028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3426:21:16","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":12445,"src":"3418:29:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":4036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:74:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4037,"nodeType":"ExpressionStatement","src":"3418:74:16"}]},"documentation":{"id":4003,"nodeType":"StructuredDocumentation","src":"2972:228:16","text":" execute a transaction (called directly from owner, or by entryPoint)\n @param dest destination address to call\n @param value the value to pass in this call\n @param func the calldata to pass in this call"},"functionSelector":"b61d27f6","id":4039,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"3212:7:16","nodeType":"FunctionDefinition","parameters":{"id":4010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4005,"mutability":"mutable","name":"dest","nameLocation":"3228:4:16","nodeType":"VariableDeclaration","scope":4039,"src":"3220:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4004,"name":"address","nodeType":"ElementaryTypeName","src":"3220:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4007,"mutability":"mutable","name":"value","nameLocation":"3242:5:16","nodeType":"VariableDeclaration","scope":4039,"src":"3234:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4006,"name":"uint256","nodeType":"ElementaryTypeName","src":"3234:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4009,"mutability":"mutable","name":"func","nameLocation":"3264:4:16","nodeType":"VariableDeclaration","scope":4039,"src":"3249:19:16","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":4008,"name":"bytes","nodeType":"ElementaryTypeName","src":"3249:5:16","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3219:50:16"},"returnParameters":{"id":4011,"nodeType":"ParameterList","parameters":[],"src":"3279:0:16"},"scope":4287,"src":"3203:294:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4148,"nodeType":"Block","src":"3973:523:16","statements":[{"assignments":[4053],"declarations":[{"constant":false,"id":4053,"mutability":"mutable","name":"sender","nameLocation":"3987:6:16","nodeType":"VariableDeclaration","scope":4148,"src":"3979:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4052,"name":"address","nodeType":"ElementaryTypeName","src":"3979:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4056,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4054,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4002,"src":"3996:32:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_address_$","typeString":"function () returns (address)"}},"id":4055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3996:34:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3979:51:16"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4057,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4040:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4045:6:16","memberName":"length","nodeType":"MemberAccess","src":"4040:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4059,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"4055:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":4060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4060:6:16","memberName":"length","nodeType":"MemberAccess","src":"4055:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4040:26:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4046,"src":"4071:5:16","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4077:6:16","memberName":"length","nodeType":"MemberAccess","src":"4071:12:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4087:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4071:17:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4066,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4046,"src":"4092:5:16","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4098:6:16","memberName":"length","nodeType":"MemberAccess","src":"4092:12:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4068,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"4108:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":4069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4113:6:16","memberName":"length","nodeType":"MemberAccess","src":"4108:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4092:27:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4071:48:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4072,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4070:50:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4040:80:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4077,"nodeType":"IfStatement","src":"4036:111:16","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4074,"name":"WrongArrayLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3892,"src":"4129:16:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4129:18:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4076,"nodeType":"RevertStatement","src":"4122:25:16"}},{"body":{"id":4146,"nodeType":"Block","src":"4195:297:16","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4090,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4220:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4225:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4220:6:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4098,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4260:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4102,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4099,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4265:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":4100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4269:1:16","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4265:5:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4260:11:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"baseExpression":{"id":4103,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4275:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4105,"indexExpression":{"id":4104,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4280:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4275:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4260:22:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"baseExpression":{"id":4108,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4305:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4110,"indexExpression":{"id":4109,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4310:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4305:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4107,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4234,"src":"4286:18:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4286:27:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4260:53:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4113,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4259:55:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4220:94:16","trueExpression":{"arguments":[{"baseExpression":{"id":4094,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4248:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4096,"indexExpression":{"hexValue":"30","id":4095,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4253:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4248:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4093,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4234,"src":"4229:18:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4229:27:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"baseExpression":{"id":4116,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4354:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4118,"indexExpression":{"id":4117,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4359:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4354:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4115,"name":"CanCallOnlyIfTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3890,"src":"4324:29:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4324:38:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4089,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4203:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4203:167:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4121,"nodeType":"ExpressionStatement","src":"4203:167:16"},{"expression":{"arguments":[{"baseExpression":{"id":4125,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4408:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4127,"indexExpression":{"id":4126,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4413:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4408:7:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":4130,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"4434:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":4132,"indexExpression":{"id":4131,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4439:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4434:7:16","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":4133,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4053,"src":"4443:6:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4128,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4417:3:16","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4129,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4421:12:16","memberName":"encodePacked","nodeType":"MemberAccess","src":"4417:16:16","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4417:33:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4135,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4046,"src":"4452:5:16","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4458:6:16","memberName":"length","nodeType":"MemberAccess","src":"4452:12:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4468:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4452:17:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"id":4140,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4046,"src":"4476:5:16","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4142,"indexExpression":{"id":4141,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4482:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4476:8:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4452:32:16","trueExpression":{"hexValue":"30","id":4139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4472:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4122,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"4378:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$12580_$","typeString":"type(library Address)"}},"id":4124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4386:21:16","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":12445,"src":"4378:29:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":4144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:107:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4145,"nodeType":"ExpressionStatement","src":"4378:107:16"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4082,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4173:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4083,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4043,"src":"4177:4:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4182:6:16","memberName":"length","nodeType":"MemberAccess","src":"4177:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4173:15:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4147,"initializationExpression":{"assignments":[4079],"declarations":[{"constant":false,"id":4079,"mutability":"mutable","name":"i","nameLocation":"4166:1:16","nodeType":"VariableDeclaration","scope":4147,"src":"4158:9:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4078,"name":"uint256","nodeType":"ElementaryTypeName","src":"4158:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4081,"initialValue":{"hexValue":"30","id":4080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4170:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4158:13:16"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":4087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4190:3:16","subExpression":{"id":4086,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4079,"src":"4190:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4088,"nodeType":"ExpressionStatement","src":"4190:3:16"},"nodeType":"ForStatement","src":"4153:339:16"}]},"documentation":{"id":4040,"nodeType":"StructuredDocumentation","src":"3501:364:16","text":" execute a sequence of transactions\n @dev to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\n @param dest an array of destination addresses\n @param value an array of values to pass to each call. can be zero-length for no-value calls\n @param func an array of calldata to pass to each call"},"functionSelector":"47e1da2a","id":4149,"implemented":true,"kind":"function","modifiers":[],"name":"executeBatch","nameLocation":"3877:12:16","nodeType":"FunctionDefinition","parameters":{"id":4050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4043,"mutability":"mutable","name":"dest","nameLocation":"3909:4:16","nodeType":"VariableDeclaration","scope":4149,"src":"3890:23:16","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4041,"name":"address","nodeType":"ElementaryTypeName","src":"3890:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4042,"nodeType":"ArrayTypeName","src":"3890:9:16","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4046,"mutability":"mutable","name":"value","nameLocation":"3934:5:16","nodeType":"VariableDeclaration","scope":4149,"src":"3915:24:16","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4044,"name":"uint256","nodeType":"ElementaryTypeName","src":"3915:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4045,"nodeType":"ArrayTypeName","src":"3915:9:16","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4049,"mutability":"mutable","name":"func","nameLocation":"3958:4:16","nodeType":"VariableDeclaration","scope":4149,"src":"3941:21:16","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4047,"name":"bytes","nodeType":"ElementaryTypeName","src":"3941:5:16","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4048,"nodeType":"ArrayTypeName","src":"3941:7:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"3889:74:16"},"returnParameters":{"id":4051,"nodeType":"ParameterList","parameters":[],"src":"3973:0:16"},"scope":4287,"src":"3868:628:16","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[97],"body":{"id":4191,"nodeType":"Block","src":"4703:371:16","statements":[{"assignments":[4162],"declarations":[{"constant":false,"id":4162,"mutability":"mutable","name":"hash","nameLocation":"4717:4:16","nodeType":"VariableDeclaration","scope":4191,"src":"4709:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4161,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4709:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4167,"initialValue":{"arguments":[{"id":4165,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4155,"src":"4764:10:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4163,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18172,"src":"4724:16:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$18172_$","typeString":"type(library MessageHashUtils)"}},"id":4164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4741:22:16","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":18113,"src":"4724:39:16","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) pure returns (bytes32)"}},"id":4166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4724:51:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4709:66:16"},{"assignments":[4169],"declarations":[{"constant":false,"id":4169,"mutability":"mutable","name":"recovered","nameLocation":"4789:9:16","nodeType":"VariableDeclaration","scope":4191,"src":"4781:17:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4168,"name":"address","nodeType":"ElementaryTypeName","src":"4781:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4176,"initialValue":{"arguments":[{"id":4172,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4162,"src":"4815:4:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":4173,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4153,"src":"4821:6:16","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":4174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4828:9:16","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":3747,"src":"4821:16:16","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":4170,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18098,"src":"4801:5:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$18098_$","typeString":"type(library ECDSA)"}},"id":4171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4807:7:16","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":17854,"src":"4801:13:16","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":4175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:37:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4781:57:16"},{"condition":{"id":4181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4848:34:16","subExpression":{"arguments":[{"id":4178,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3875,"src":"4857:13:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4179,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4169,"src":"4872:9:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4177,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"4849:7:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":4180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4849:33:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4184,"nodeType":"IfStatement","src":"4844:68:16","trueBody":{"expression":{"id":4182,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2241,"src":"4891:21:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4160,"id":4183,"nodeType":"Return","src":"4884:28:16"}},{"expression":{"id":4187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4185,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3880,"src":"5009:13:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4186,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4169,"src":"5025:9:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5009:25:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4188,"nodeType":"ExpressionStatement","src":"5009:25:16"},{"expression":{"id":4189,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2244,"src":"5047:22:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4160,"id":4190,"nodeType":"Return","src":"5040:29:16"}]},"documentation":{"id":4150,"nodeType":"StructuredDocumentation","src":"4500:44:16","text":"implement template method of BaseAccount"},"id":4192,"implemented":true,"kind":"function","modifiers":[],"name":"_validateSignature","nameLocation":"4556:18:16","nodeType":"FunctionDefinition","overrides":{"id":4157,"nodeType":"OverrideSpecifier","overrides":[],"src":"4661:8:16"},"parameters":{"id":4156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4153,"mutability":"mutable","name":"userOp","nameLocation":"4609:6:16","nodeType":"VariableDeclaration","scope":4192,"src":"4580:35:16","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":4152,"nodeType":"UserDefinedTypeName","pathNode":{"id":4151,"name":"PackedUserOperation","nameLocations":["4580:19:16"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"4580:19:16"},"referencedDeclaration":3748,"src":"4580:19:16","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":4155,"mutability":"mutable","name":"userOpHash","nameLocation":"4629:10:16","nodeType":"VariableDeclaration","scope":4192,"src":"4621:18:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4154,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4621:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4574:69:16"},"returnParameters":{"id":4160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4159,"mutability":"mutable","name":"validationData","nameLocation":"4687:14:16","nodeType":"VariableDeclaration","scope":4192,"src":"4679:22:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4158,"name":"uint256","nodeType":"ElementaryTypeName","src":"4679:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4678:24:16"},"scope":4287,"src":"4547:527:16","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4233,"nodeType":"Block","src":"5413:980:16","statements":[{"assignments":[4201],"declarations":[{"constant":false,"id":4201,"mutability":"mutable","name":"encodedParams","nameLocation":"5432:13:16","nodeType":"VariableDeclaration","scope":4233,"src":"5419:26:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4200,"name":"bytes","nodeType":"ElementaryTypeName","src":"5419:5:16","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":4212,"initialValue":{"arguments":[{"expression":{"id":4204,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10094,"src":"5463:14:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771Context_$10094_$","typeString":"type(contract ERC2771Context)"}},"id":4205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5478:18:16","memberName":"isTrustedForwarder","nodeType":"MemberAccess","referencedDeclaration":9995,"src":"5463:33:16","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_address_$returns$_t_bool_$","typeString":"function ERC2771Context.isTrustedForwarder(address) view returns (bool)"}},{"components":[{"arguments":[{"id":4208,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5507:4:16","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4287","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4287","typeString":"contract ERC2771ForwarderAccount"}],"id":4207,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5499:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4206,"name":"address","nodeType":"ElementaryTypeName","src":"5499:7:16","typeDescriptions":{}}},"id":4209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5499:13:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4210,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5498:15:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$_t_address_$returns$_t_bool_$","typeString":"function ERC2771Context.isTrustedForwarder(address) view returns (bool)"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4202,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5448:3:16","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5452:10:16","memberName":"encodeCall","nodeType":"MemberAccess","src":"5448:14:16","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5448:66:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5419:95:16"},{"assignments":[4214],"declarations":[{"constant":false,"id":4214,"mutability":"mutable","name":"success","nameLocation":"5526:7:16","nodeType":"VariableDeclaration","scope":4233,"src":"5521:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4213,"name":"bool","nodeType":"ElementaryTypeName","src":"5521:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4215,"nodeType":"VariableDeclarationStatement","src":"5521:12:16"},{"assignments":[4217],"declarations":[{"constant":false,"id":4217,"mutability":"mutable","name":"returnSize","nameLocation":"5547:10:16","nodeType":"VariableDeclaration","scope":4233,"src":"5539:18:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4216,"name":"uint256","nodeType":"ElementaryTypeName","src":"5539:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4218,"nodeType":"VariableDeclarationStatement","src":"5539:18:16"},{"assignments":[4220],"declarations":[{"constant":false,"id":4220,"mutability":"mutable","name":"returnValue","nameLocation":"5571:11:16","nodeType":"VariableDeclaration","scope":4233,"src":"5563:19:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4219,"name":"uint256","nodeType":"ElementaryTypeName","src":"5563:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4221,"nodeType":"VariableDeclarationStatement","src":"5563:19:16"},{"AST":{"nativeSrc":"5665:662:16","nodeType":"YulBlock","src":"5665:662:16","statements":[{"nativeSrc":"6161:93:16","nodeType":"YulAssignment","src":"6161:93:16","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"6183:3:16","nodeType":"YulIdentifier","src":"6183:3:16"},"nativeSrc":"6183:5:16","nodeType":"YulFunctionCall","src":"6183:5:16"},{"name":"target","nativeSrc":"6190:6:16","nodeType":"YulIdentifier","src":"6190:6:16"},{"arguments":[{"name":"encodedParams","nativeSrc":"6202:13:16","nodeType":"YulIdentifier","src":"6202:13:16"},{"kind":"number","nativeSrc":"6217:4:16","nodeType":"YulLiteral","src":"6217:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6198:3:16","nodeType":"YulIdentifier","src":"6198:3:16"},"nativeSrc":"6198:24:16","nodeType":"YulFunctionCall","src":"6198:24:16"},{"arguments":[{"name":"encodedParams","nativeSrc":"6230:13:16","nodeType":"YulIdentifier","src":"6230:13:16"}],"functionName":{"name":"mload","nativeSrc":"6224:5:16","nodeType":"YulIdentifier","src":"6224:5:16"},"nativeSrc":"6224:20:16","nodeType":"YulFunctionCall","src":"6224:20:16"},{"kind":"number","nativeSrc":"6246:1:16","nodeType":"YulLiteral","src":"6246:1:16","type":"","value":"0"},{"kind":"number","nativeSrc":"6249:4:16","nodeType":"YulLiteral","src":"6249:4:16","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"6172:10:16","nodeType":"YulIdentifier","src":"6172:10:16"},"nativeSrc":"6172:82:16","nodeType":"YulFunctionCall","src":"6172:82:16"},"variableNames":[{"name":"success","nativeSrc":"6161:7:16","nodeType":"YulIdentifier","src":"6161:7:16"}]},{"nativeSrc":"6261:30:16","nodeType":"YulAssignment","src":"6261:30:16","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"6275:14:16","nodeType":"YulIdentifier","src":"6275:14:16"},"nativeSrc":"6275:16:16","nodeType":"YulFunctionCall","src":"6275:16:16"},"variableNames":[{"name":"returnSize","nativeSrc":"6261:10:16","nodeType":"YulIdentifier","src":"6261:10:16"}]},{"nativeSrc":"6298:23:16","nodeType":"YulAssignment","src":"6298:23:16","value":{"arguments":[{"kind":"number","nativeSrc":"6319:1:16","nodeType":"YulLiteral","src":"6319:1:16","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"6313:5:16","nodeType":"YulIdentifier","src":"6313:5:16"},"nativeSrc":"6313:8:16","nodeType":"YulFunctionCall","src":"6313:8:16"},"variableNames":[{"name":"returnValue","nativeSrc":"6298:11:16","nodeType":"YulIdentifier","src":"6298:11:16"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":4201,"isOffset":false,"isSlot":false,"src":"6202:13:16","valueSize":1},{"declaration":4201,"isOffset":false,"isSlot":false,"src":"6230:13:16","valueSize":1},{"declaration":4217,"isOffset":false,"isSlot":false,"src":"6261:10:16","valueSize":1},{"declaration":4220,"isOffset":false,"isSlot":false,"src":"6298:11:16","valueSize":1},{"declaration":4214,"isOffset":false,"isSlot":false,"src":"6161:7:16","valueSize":1},{"declaration":4195,"isOffset":false,"isSlot":false,"src":"6190:6:16","valueSize":1}],"flags":["memory-safe"],"id":4222,"nodeType":"InlineAssembly","src":"5640:687:16"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4223,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4214,"src":"6340:7:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4224,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4217,"src":"6351:10:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783230","id":4225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6365:4:16","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"6351:18:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6340:29:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4228,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4220,"src":"6373:11:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6387:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6373:15:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6340:48:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4199,"id":4232,"nodeType":"Return","src":"6333:55:16"}]},"documentation":{"id":4193,"nodeType":"StructuredDocumentation","src":"5078:260:16","text":" @dev Returns whether the target trusts this forwarder.\n This function performs a static call to the target contract calling the\n {ERC2771Context-isTrustedForwarder} function.\n Copied from ERC2771Forwarder.sol (OZ-contracts)"},"id":4234,"implemented":true,"kind":"function","modifiers":[],"name":"_isTrustedByTarget","nameLocation":"5350:18:16","nodeType":"FunctionDefinition","parameters":{"id":4196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4195,"mutability":"mutable","name":"target","nameLocation":"5377:6:16","nodeType":"VariableDeclaration","scope":4234,"src":"5369:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4194,"name":"address","nodeType":"ElementaryTypeName","src":"5369:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5368:16:16"},"returnParameters":{"id":4199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4198,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4234,"src":"5407:4:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4197,"name":"bool","nodeType":"ElementaryTypeName","src":"5407:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5406:6:16"},"scope":4287,"src":"5341:1052:16","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":4249,"nodeType":"Block","src":"6514:55:16","statements":[{"expression":{"arguments":[{"arguments":[{"id":4245,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6558:4:16","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4287","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4287","typeString":"contract ERC2771ForwarderAccount"}],"id":4244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6550:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4243,"name":"address","nodeType":"ElementaryTypeName","src":"6550:7:16","typeDescriptions":{}}},"id":4246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6550:13:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4240,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[3903],"referencedDeclaration":3903,"src":"6527:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6527:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6540:9:16","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":3695,"src":"6527:22:16","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6527:37:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4239,"id":4248,"nodeType":"Return","src":"6520:44:16"}]},"documentation":{"id":4235,"nodeType":"StructuredDocumentation","src":"6397:62:16","text":" check current account deposit in the entryPoint"},"functionSelector":"c399ec88","id":4250,"implemented":true,"kind":"function","modifiers":[],"name":"getDeposit","nameLocation":"6471:10:16","nodeType":"FunctionDefinition","parameters":{"id":4236,"nodeType":"ParameterList","parameters":[],"src":"6481:2:16"},"returnParameters":{"id":4239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4238,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4250,"src":"6505:7:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4237,"name":"uint256","nodeType":"ElementaryTypeName","src":"6505:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6504:9:16"},"scope":4287,"src":"6462:107:16","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4266,"nodeType":"Block","src":"6681:66:16","statements":[{"expression":{"arguments":[{"arguments":[{"id":4262,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6736:4:16","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4287","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4287","typeString":"contract ERC2771ForwarderAccount"}],"id":4261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6728:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4260,"name":"address","nodeType":"ElementaryTypeName","src":"6728:7:16","typeDescriptions":{}}},"id":4263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6728:13:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4254,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[3903],"referencedDeclaration":3903,"src":"6687:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6700:9:16","memberName":"depositTo","nodeType":"MemberAccess","referencedDeclaration":3701,"src":"6687:22:16","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$","typeString":"function (address) payable external"}},"id":4259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":4257,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6717:3:16","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6721:5:16","memberName":"value","nodeType":"MemberAccess","src":"6717:9:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"6687:40:16","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$value","typeString":"function (address) payable external"}},"id":4264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:55:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4265,"nodeType":"ExpressionStatement","src":"6687:55:16"}]},"documentation":{"id":4251,"nodeType":"StructuredDocumentation","src":"6573:68:16","text":" deposit more funds for this account in the entryPoint"},"functionSelector":"4a58db19","id":4267,"implemented":true,"kind":"function","modifiers":[],"name":"addDeposit","nameLocation":"6653:10:16","nodeType":"FunctionDefinition","parameters":{"id":4252,"nodeType":"ParameterList","parameters":[],"src":"6663:2:16"},"returnParameters":{"id":4253,"nodeType":"ParameterList","parameters":[],"src":"6681:0:16"},"scope":4287,"src":"6644:103:16","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":4285,"nodeType":"Block","src":"6994:59:16","statements":[{"expression":{"arguments":[{"id":4281,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4270,"src":"7024:15:16","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":4282,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4272,"src":"7041:6:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4278,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[3903],"referencedDeclaration":3903,"src":"7000:10:16","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7000:12:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7013:10:16","memberName":"withdrawTo","nodeType":"MemberAccess","referencedDeclaration":3725,"src":"7000:23:16","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256) external"}},"id":4283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7000:48:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4284,"nodeType":"ExpressionStatement","src":"7000:48:16"}]},"documentation":{"id":4268,"nodeType":"StructuredDocumentation","src":"6751:133:16","text":" withdraw value from the account's deposit\n @param withdrawAddress target to send to\n @param amount to withdraw"},"functionSelector":"4d44560d","id":4286,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":4275,"name":"WITHDRAW_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3870,"src":"6979:13:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4276,"kind":"modifierInvocation","modifierName":{"id":4274,"name":"onlyRole","nameLocations":["6970:8:16"],"nodeType":"IdentifierPath","referencedDeclaration":6812,"src":"6970:8:16"},"nodeType":"ModifierInvocation","src":"6970:23:16"}],"name":"withdrawDepositTo","nameLocation":"6896:17:16","nodeType":"FunctionDefinition","parameters":{"id":4273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4270,"mutability":"mutable","name":"withdrawAddress","nameLocation":"6930:15:16","nodeType":"VariableDeclaration","scope":4286,"src":"6914:31:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":4269,"name":"address","nodeType":"ElementaryTypeName","src":"6914:15:16","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":4272,"mutability":"mutable","name":"amount","nameLocation":"6955:6:16","nodeType":"VariableDeclaration","scope":4286,"src":"6947:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4271,"name":"uint256","nodeType":"ElementaryTypeName","src":"6947:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6913:49:16"},"returnParameters":{"id":4277,"nodeType":"ParameterList","parameters":[],"src":"6994:0:16"},"scope":4287,"src":"6887:166:16","stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"scope":4288,"src":"1158:5897:16","usedErrors":[3884,3886,3890,3892,7077,7080,12330,12620,12623,17761,17766,17771],"usedEvents":[7089,7098,7107]}],"src":"39:7017:16"},"id":16},"@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","exportedSymbols":{"IERC721Receiver":[12320],"IPolicyHolder":[4321]},"id":4322,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4289,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:17"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":4291,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4322,"sourceUnit":12321,"src":"64:89:17","symbolAliases":[{"foreign":{"id":4290,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12320,"src":"72:15:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4293,"name":"IERC721Receiver","nameLocations":["328:15:17"],"nodeType":"IdentifierPath","referencedDeclaration":12320,"src":"328:15:17"},"id":4294,"nodeType":"InheritanceSpecifier","src":"328:15:17"}],"canonicalName":"IPolicyHolder","contractDependencies":[],"contractKind":"interface","documentation":{"id":4292,"nodeType":"StructuredDocumentation","src":"155:145:17","text":" @title Policy holder interface\n @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts"},"fullyImplemented":false,"id":4321,"linearizedBaseContracts":[4321,12320],"name":"IPolicyHolder","nameLocation":"311:13:17","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4295,"nodeType":"StructuredDocumentation","src":"348:512:17","text":" @dev Whenever an Policy is expired or resolved with payout = 0, this function is called\n It should return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n No mather what's the return value or even if this function reverts, this function will not revert the policy\n expiration.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`."},"functionSelector":"e8e617b7","id":4306,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyExpired","nameLocation":"872:15:17","nodeType":"FunctionDefinition","parameters":{"id":4302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4297,"mutability":"mutable","name":"operator","nameLocation":"896:8:17","nodeType":"VariableDeclaration","scope":4306,"src":"888:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4296,"name":"address","nodeType":"ElementaryTypeName","src":"888:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4299,"mutability":"mutable","name":"from","nameLocation":"914:4:17","nodeType":"VariableDeclaration","scope":4306,"src":"906:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4298,"name":"address","nodeType":"ElementaryTypeName","src":"906:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4301,"mutability":"mutable","name":"policyId","nameLocation":"928:8:17","nodeType":"VariableDeclaration","scope":4306,"src":"920:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4300,"name":"uint256","nodeType":"ElementaryTypeName","src":"920:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"887:50:17"},"returnParameters":{"id":4305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4304,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4306,"src":"956:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4303,"name":"bytes4","nodeType":"ElementaryTypeName","src":"956:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"955:8:17"},"scope":4321,"src":"863:101:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":4307,"nodeType":"StructuredDocumentation","src":"968:469:17","text":" @dev Whenever an Policy is resolved with payout > 0, this function is called\n It must return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n If any other value is returned or it reverts, the policy resolution / payout will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`."},"functionSelector":"d6281d3e","id":4320,"implemented":false,"kind":"function","modifiers":[],"name":"onPayoutReceived","nameLocation":"1449:16:17","nodeType":"FunctionDefinition","parameters":{"id":4316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4309,"mutability":"mutable","name":"operator","nameLocation":"1474:8:17","nodeType":"VariableDeclaration","scope":4320,"src":"1466:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4308,"name":"address","nodeType":"ElementaryTypeName","src":"1466:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4311,"mutability":"mutable","name":"from","nameLocation":"1492:4:17","nodeType":"VariableDeclaration","scope":4320,"src":"1484:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4310,"name":"address","nodeType":"ElementaryTypeName","src":"1484:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4313,"mutability":"mutable","name":"policyId","nameLocation":"1506:8:17","nodeType":"VariableDeclaration","scope":4320,"src":"1498:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4312,"name":"uint256","nodeType":"ElementaryTypeName","src":"1498:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4315,"mutability":"mutable","name":"amount","nameLocation":"1524:6:17","nodeType":"VariableDeclaration","scope":4320,"src":"1516:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4314,"name":"uint256","nodeType":"ElementaryTypeName","src":"1516:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1465:66:17"},"returnParameters":{"id":4319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4318,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4320,"src":"1550:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4317,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1550:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1549:8:17"},"scope":4321,"src":"1440:118:17","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4322,"src":"301:1259:17","usedErrors":[],"usedEvents":[]}],"src":"39:1522:17"},"id":17},"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol","exportedSymbols":{"IPolicyHolder":[4321],"IPolicyHolderV2":[4343]},"id":4344,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4323,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:18"},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"./IPolicyHolder.sol","id":4325,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4344,"sourceUnit":4322,"src":"64:50:18","symbolAliases":[{"foreign":{"id":4324,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4321,"src":"72:13:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4327,"name":"IPolicyHolder","nameLocations":["511:13:18"],"nodeType":"IdentifierPath","referencedDeclaration":4321,"src":"511:13:18"},"id":4328,"nodeType":"InheritanceSpecifier","src":"511:13:18"}],"canonicalName":"IPolicyHolderV2","contractDependencies":[],"contractKind":"interface","documentation":{"id":4326,"nodeType":"StructuredDocumentation","src":"116:365:18","text":" @title Policy holder interface - V2 of the interface that adds onPolicyReplaced endpoint\n @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive notification of payouts and\n      replacements.\n      Implementors of this interface MUST return true on supportsInterface for both IPolicyHolder and IPolicyHolderV2."},"fullyImplemented":false,"id":4343,"linearizedBaseContracts":[4343,4321,12320],"name":"IPolicyHolderV2","nameLocation":"492:15:18","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4329,"nodeType":"StructuredDocumentation","src":"529:451:18","text":" @dev Whenever a policy is replaced, this function is called\n It must return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the replacement will be successful.\n If any other value is returned or it reverts, the policy replacement will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolderV2.onPolicyReplaced.selector`."},"functionSelector":"5ee0c7dd","id":4342,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyReplaced","nameLocation":"992:16:18","nodeType":"FunctionDefinition","parameters":{"id":4338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4331,"mutability":"mutable","name":"operator","nameLocation":"1022:8:18","nodeType":"VariableDeclaration","scope":4342,"src":"1014:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4330,"name":"address","nodeType":"ElementaryTypeName","src":"1014:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4333,"mutability":"mutable","name":"from","nameLocation":"1044:4:18","nodeType":"VariableDeclaration","scope":4342,"src":"1036:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4332,"name":"address","nodeType":"ElementaryTypeName","src":"1036:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4335,"mutability":"mutable","name":"oldPolicyId","nameLocation":"1062:11:18","nodeType":"VariableDeclaration","scope":4342,"src":"1054:19:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4334,"name":"uint256","nodeType":"ElementaryTypeName","src":"1054:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4337,"mutability":"mutable","name":"newPolicyId","nameLocation":"1087:11:18","nodeType":"VariableDeclaration","scope":4342,"src":"1079:19:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4336,"name":"uint256","nodeType":"ElementaryTypeName","src":"1079:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1008:94:18"},"returnParameters":{"id":4341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4340,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4342,"src":"1121:6:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4339,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1121:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1120:8:18"},"scope":4343,"src":"983:146:18","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4344,"src":"482:649:18","usedErrors":[],"usedEvents":[]}],"src":"39:1093:18"},"id":18},"@ensuro/utils/contracts/TestCurrency.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","exportedSymbols":{"AccessControl":[7067],"ERC20":[10987],"TestCurrency":[4440]},"id":4441,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4345,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:19"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":4347,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4441,"sourceUnit":10988,"src":"63:68:19","symbolAliases":[{"foreign":{"id":4346,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10987,"src":"71:5:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"@openzeppelin/contracts/access/AccessControl.sol","id":4349,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4441,"sourceUnit":7068,"src":"132:79:19","symbolAliases":[{"foreign":{"id":4348,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7067,"src":"140:13:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4350,"name":"ERC20","nameLocations":["238:5:19"],"nodeType":"IdentifierPath","referencedDeclaration":10987,"src":"238:5:19"},"id":4351,"nodeType":"InheritanceSpecifier","src":"238:5:19"},{"baseName":{"id":4352,"name":"AccessControl","nameLocations":["245:13:19"],"nodeType":"IdentifierPath","referencedDeclaration":7067,"src":"245:13:19"},"id":4353,"nodeType":"InheritanceSpecifier","src":"245:13:19"}],"canonicalName":"TestCurrency","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":4440,"linearizedBaseContracts":[4440,7067,18196,18208,7150,10987,9856,11776,11065,12610],"name":"TestCurrency","nameLocation":"222:12:19","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"d5391393","id":4358,"mutability":"constant","name":"MINTER_ROLE","nameLocation":"287:11:19","nodeType":"VariableDeclaration","scope":4440,"src":"263:62:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4354,"name":"bytes32","nodeType":"ElementaryTypeName","src":"263:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4d494e5445525f524f4c45","id":4356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"311:13:19","typeDescriptions":{"typeIdentifier":"t_stringliteral_9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6","typeString":"literal_string \"MINTER_ROLE\""},"value":"MINTER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6","typeString":"literal_string \"MINTER_ROLE\""}],"id":4355,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"301:9:19","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"301:24:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"282c51f3","id":4363,"mutability":"constant","name":"BURNER_ROLE","nameLocation":"353:11:19","nodeType":"VariableDeclaration","scope":4440,"src":"329:62:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4359,"name":"bytes32","nodeType":"ElementaryTypeName","src":"329:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4255524e45525f524f4c45","id":4361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"377:13:19","typeDescriptions":{"typeIdentifier":"t_stringliteral_3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848","typeString":"literal_string \"BURNER_ROLE\""},"value":"BURNER_ROLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848","typeString":"literal_string \"BURNER_ROLE\""}],"id":4360,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"367:9:19","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"367:24:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":false,"id":4365,"mutability":"immutable","name":"_decimals","nameLocation":"421:9:19","nodeType":"VariableDeclaration","scope":4440,"src":"396:34:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4364,"name":"uint8","nodeType":"ElementaryTypeName","src":"396:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"body":{"id":4397,"nodeType":"Block","src":"592:113:19","statements":[{"expression":{"id":4384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4382,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4365,"src":"598:9:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4383,"name":"decimals_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4373,"src":"610:9:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"598:21:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":4385,"nodeType":"ExpressionStatement","src":"598:21:19"},{"expression":{"arguments":[{"expression":{"id":4387,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"631:3:19","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"635:6:19","memberName":"sender","nodeType":"MemberAccess","src":"631:10:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4389,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4371,"src":"643:13:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4386,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"625:5:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":4390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"625:32:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4391,"nodeType":"ExpressionStatement","src":"625:32:19"},{"expression":{"arguments":[{"id":4393,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6801,"src":"674:18:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4394,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4375,"src":"694:5:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4392,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"663:10:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":4395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"663:37:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4396,"nodeType":"ExpressionStatement","src":"663:37:19"}]},"id":4398,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":4378,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4367,"src":"576:5:19","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4379,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"583:7:19","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":4380,"kind":"baseConstructorSpecifier","modifierName":{"id":4377,"name":"ERC20","nameLocations":["570:5:19"],"nodeType":"IdentifierPath","referencedDeclaration":10987,"src":"570:5:19"},"nodeType":"ModifierInvocation","src":"570:21:19"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4367,"mutability":"mutable","name":"name_","nameLocation":"466:5:19","nodeType":"VariableDeclaration","scope":4398,"src":"452:19:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4366,"name":"string","nodeType":"ElementaryTypeName","src":"452:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4369,"mutability":"mutable","name":"symbol_","nameLocation":"491:7:19","nodeType":"VariableDeclaration","scope":4398,"src":"477:21:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4368,"name":"string","nodeType":"ElementaryTypeName","src":"477:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4371,"mutability":"mutable","name":"initialSupply","nameLocation":"512:13:19","nodeType":"VariableDeclaration","scope":4398,"src":"504:21:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4370,"name":"uint256","nodeType":"ElementaryTypeName","src":"504:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4373,"mutability":"mutable","name":"decimals_","nameLocation":"537:9:19","nodeType":"VariableDeclaration","scope":4398,"src":"531:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4372,"name":"uint8","nodeType":"ElementaryTypeName","src":"531:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4375,"mutability":"mutable","name":"admin","nameLocation":"560:5:19","nodeType":"VariableDeclaration","scope":4398,"src":"552:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4374,"name":"address","nodeType":"ElementaryTypeName","src":"552:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"446:123:19"},"returnParameters":{"id":4381,"nodeType":"ParameterList","parameters":[],"src":"592:0:19"},"scope":4440,"src":"435:270:19","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[10551],"body":{"id":4406,"nodeType":"Block","src":"774:27:19","statements":[{"expression":{"id":4404,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4365,"src":"787:9:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":4403,"id":4405,"nodeType":"Return","src":"780:16:19"}]},"functionSelector":"313ce567","id":4407,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"718:8:19","nodeType":"FunctionDefinition","overrides":{"id":4400,"nodeType":"OverrideSpecifier","overrides":[],"src":"749:8:19"},"parameters":{"id":4399,"nodeType":"ParameterList","parameters":[],"src":"726:2:19"},"returnParameters":{"id":4403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4407,"src":"767:5:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4401,"name":"uint8","nodeType":"ElementaryTypeName","src":"767:5:19","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"766:7:19"},"scope":4440,"src":"709:92:19","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4422,"nodeType":"Block","src":"885:103:19","statements":[{"expression":{"arguments":[{"id":4418,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4409,"src":"965:9:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4419,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4411,"src":"976:6:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4417,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"959:5:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":4420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"959:24:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":4416,"id":4421,"nodeType":"Return","src":"952:31:19"}]},"functionSelector":"40c10f19","id":4423,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":4414,"name":"MINTER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4358,"src":"872:11:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4415,"kind":"modifierInvocation","modifierName":{"id":4413,"name":"onlyRole","nameLocations":["863:8:19"],"nodeType":"IdentifierPath","referencedDeclaration":6812,"src":"863:8:19"},"nodeType":"ModifierInvocation","src":"863:21:19"}],"name":"mint","nameLocation":"814:4:19","nodeType":"FunctionDefinition","parameters":{"id":4412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4409,"mutability":"mutable","name":"recipient","nameLocation":"827:9:19","nodeType":"VariableDeclaration","scope":4423,"src":"819:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4408,"name":"address","nodeType":"ElementaryTypeName","src":"819:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4411,"mutability":"mutable","name":"amount","nameLocation":"846:6:19","nodeType":"VariableDeclaration","scope":4423,"src":"838:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4410,"name":"uint256","nodeType":"ElementaryTypeName","src":"838:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"818:35:19"},"returnParameters":{"id":4416,"nodeType":"ParameterList","parameters":[],"src":"885:0:19"},"scope":4440,"src":"805:183:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4438,"nodeType":"Block","src":"1072:103:19","statements":[{"expression":{"arguments":[{"id":4434,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4425,"src":"1152:9:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4435,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4427,"src":"1163:6:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4433,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10860,"src":"1146:5:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":4436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1146:24:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":4432,"id":4437,"nodeType":"Return","src":"1139:31:19"}]},"functionSelector":"9dc29fac","id":4439,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":4430,"name":"BURNER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4363,"src":"1059:11:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4431,"kind":"modifierInvocation","modifierName":{"id":4429,"name":"onlyRole","nameLocations":["1050:8:19"],"nodeType":"IdentifierPath","referencedDeclaration":6812,"src":"1050:8:19"},"nodeType":"ModifierInvocation","src":"1050:21:19"}],"name":"burn","nameLocation":"1001:4:19","nodeType":"FunctionDefinition","parameters":{"id":4428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4425,"mutability":"mutable","name":"recipient","nameLocation":"1014:9:19","nodeType":"VariableDeclaration","scope":4439,"src":"1006:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4424,"name":"address","nodeType":"ElementaryTypeName","src":"1006:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4427,"mutability":"mutable","name":"amount","nameLocation":"1033:6:19","nodeType":"VariableDeclaration","scope":4439,"src":"1025:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4426,"name":"uint256","nodeType":"ElementaryTypeName","src":"1025:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1005:35:19"},"returnParameters":{"id":4432,"nodeType":"ParameterList","parameters":[],"src":"1072:0:19"},"scope":4440,"src":"992:183:19","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4441,"src":"213:964:19","usedErrors":[7077,7080,9826,9831,9836,9845,9850,9855],"usedEvents":[7089,7098,7107,10999,11008]}],"src":"38:1140:19"},"id":19},"@ensuro/utils/contracts/TestERC4626.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestERC4626.sol","exportedSymbols":{"ERC20":[10987],"ERC4626":[11750],"IERC20Metadata":[11776],"TestCurrency":[4440],"TestERC4626":[4761]},"id":4762,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4442,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:20"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":4444,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4762,"sourceUnit":10988,"src":"63:68:20","symbolAliases":[{"foreign":{"id":4443,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10987,"src":"71:5:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","id":4446,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4762,"sourceUnit":11751,"src":"132:83:20","symbolAliases":[{"foreign":{"id":4445,"name":"ERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11750,"src":"140:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":4448,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4762,"sourceUnit":11777,"src":"216:97:20","symbolAliases":[{"foreign":{"id":4447,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"224:14:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","file":"./TestCurrency.sol","id":4450,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4762,"sourceUnit":4441,"src":"314:48:20","symbolAliases":[{"foreign":{"id":4449,"name":"TestCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4440,"src":"322:12:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4451,"name":"ERC4626","nameLocations":["388:7:20"],"nodeType":"IdentifierPath","referencedDeclaration":11750,"src":"388:7:20"},"id":4452,"nodeType":"InheritanceSpecifier","src":"388:7:20"}],"canonicalName":"TestERC4626","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":4761,"linearizedBaseContracts":[4761,11750,9796,10987,9856,11776,11065,12610],"name":"TestERC4626","nameLocation":"373:11:20","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":4454,"mutability":"mutable","name":"_broken","nameLocation":"414:7:20","nodeType":"VariableDeclaration","scope":4761,"src":"400:21:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4453,"name":"bool","nodeType":"ElementaryTypeName","src":"400:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"functionSelector":"39d88aff","id":4456,"mutability":"mutable","name":"overrideMaxDeposit","nameLocation":"441:18:20","nodeType":"VariableDeclaration","scope":4761,"src":"426:33:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4455,"name":"uint256","nodeType":"ElementaryTypeName","src":"426:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"034548cd","id":4458,"mutability":"mutable","name":"overrideMaxMint","nameLocation":"478:15:20","nodeType":"VariableDeclaration","scope":4761,"src":"463:30:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4457,"name":"uint256","nodeType":"ElementaryTypeName","src":"463:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"38359018","id":4460,"mutability":"mutable","name":"overrideMaxWithdraw","nameLocation":"512:19:20","nodeType":"VariableDeclaration","scope":4761,"src":"497:34:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4459,"name":"uint256","nodeType":"ElementaryTypeName","src":"497:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"cc7fcc60","id":4462,"mutability":"mutable","name":"overrideMaxRedeem","nameLocation":"550:17:20","nodeType":"VariableDeclaration","scope":4761,"src":"535:32:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4461,"name":"uint256","nodeType":"ElementaryTypeName","src":"535:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":true,"functionSelector":"f3c0b892","id":4471,"mutability":"constant","name":"OVERRIDE_UNSET","nameLocation":"596:14:20","nodeType":"VariableDeclaration","scope":4761,"src":"572:63:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4463,"name":"uint256","nodeType":"ElementaryTypeName","src":"572:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":4466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"618:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4465,"name":"uint256","nodeType":"ElementaryTypeName","src":"618:7:20","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":4464,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"613:4:20","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"613:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":4468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"627:3:20","memberName":"max","nodeType":"MemberAccess","src":"613:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3939","id":4469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"633:2:20","typeDescriptions":{"typeIdentifier":"t_rational_99_by_1","typeString":"int_const 99"},"value":"99"},"src":"613:22:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"canonicalName":"TestERC4626.OverrideOption","id":4476,"members":[{"id":4472,"name":"deposit","nameLocation":"666:7:20","nodeType":"EnumValue","src":"666:7:20"},{"id":4473,"name":"mint","nameLocation":"679:4:20","nodeType":"EnumValue","src":"679:4:20"},{"id":4474,"name":"withdraw","nameLocation":"689:8:20","nodeType":"EnumValue","src":"689:8:20"},{"id":4475,"name":"redeem","nameLocation":"703:6:20","nodeType":"EnumValue","src":"703:6:20"}],"name":"OverrideOption","nameLocation":"645:14:20","nodeType":"EnumDefinition","src":"640:73:20"},{"errorSelector":"8185faa6","id":4480,"name":"VaultIsBroken","nameLocation":"723:13:20","nodeType":"ErrorDefinition","parameters":{"id":4479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4478,"mutability":"mutable","name":"selector","nameLocation":"744:8:20","nodeType":"VariableDeclaration","scope":4480,"src":"737:15:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4477,"name":"bytes4","nodeType":"ElementaryTypeName","src":"737:6:20","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"736:17:20"},"src":"717:37:20"},{"body":{"id":4498,"nodeType":"Block","src":"778:73:20","statements":[{"expression":{"arguments":[{"id":4484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"792:8:20","subExpression":{"id":4483,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4454,"src":"793:7:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":4488,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"823:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"827:4:20","memberName":"data","nodeType":"MemberAccess","src":"823:8:20","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":4491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"834:1:20","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":4492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"823:13:20","startExpression":{"hexValue":"30","id":4490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"832:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":4487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"816:6:20","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":4486,"name":"bytes4","nodeType":"ElementaryTypeName","src":"816:6:20","typeDescriptions":{}}},"id":4493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"816:21:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":4485,"name":"VaultIsBroken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4480,"src":"802:13:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":4494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"802:36:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4482,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"784:7:20","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"784:55:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4496,"nodeType":"ExpressionStatement","src":"784:55:20"},{"id":4497,"nodeType":"PlaceholderStatement","src":"845:1:20"}]},"id":4499,"name":"isBroken","nameLocation":"767:8:20","nodeType":"ModifierDefinition","parameters":{"id":4481,"nodeType":"ParameterList","parameters":[],"src":"775:2:20"},"src":"758:93:20","virtual":false,"visibility":"internal"},{"body":{"id":4526,"nodeType":"Block","src":"972:106:20","statements":[{"expression":{"id":4524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4516,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4462,"src":"978:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4517,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4460,"src":"998:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4518,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"1020:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4519,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4456,"src":"1038:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4520,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4471,"src":"1059:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1038:35:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1020:53:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"998:75:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"978:95:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4525,"nodeType":"ExpressionStatement","src":"978:95:20"}]},"id":4527,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":4509,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"940:5:20","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4510,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4503,"src":"947:7:20","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":4511,"kind":"baseConstructorSpecifier","modifierName":{"id":4508,"name":"ERC20","nameLocations":["934:5:20"],"nodeType":"IdentifierPath","referencedDeclaration":10987,"src":"934:5:20"},"nodeType":"ModifierInvocation","src":"934:21:20"},{"arguments":[{"id":4513,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4506,"src":"964:6:20","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}}],"id":4514,"kind":"baseConstructorSpecifier","modifierName":{"id":4512,"name":"ERC4626","nameLocations":["956:7:20"],"nodeType":"IdentifierPath","referencedDeclaration":11750,"src":"956:7:20"},"nodeType":"ModifierInvocation","src":"956:15:20"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4501,"mutability":"mutable","name":"name_","nameLocation":"881:5:20","nodeType":"VariableDeclaration","scope":4527,"src":"867:19:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4500,"name":"string","nodeType":"ElementaryTypeName","src":"867:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4503,"mutability":"mutable","name":"symbol_","nameLocation":"902:7:20","nodeType":"VariableDeclaration","scope":4527,"src":"888:21:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4502,"name":"string","nodeType":"ElementaryTypeName","src":"888:6:20","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4506,"mutability":"mutable","name":"asset_","nameLocation":"926:6:20","nodeType":"VariableDeclaration","scope":4527,"src":"911:21:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"},"typeName":{"id":4505,"nodeType":"UserDefinedTypeName","pathNode":{"id":4504,"name":"IERC20Metadata","nameLocations":["911:14:20"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"911:14:20"},"referencedDeclaration":11776,"src":"911:14:20","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"866:67:20"},"returnParameters":{"id":4515,"nodeType":"ParameterList","parameters":[],"src":"972:0:20"},"scope":4761,"src":"855:223:20","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[11694],"body":{"id":4550,"nodeType":"Block","src":"1221:59:20","statements":[{"expression":{"arguments":[{"id":4544,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4529,"src":"1242:6:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4545,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4531,"src":"1250:8:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4546,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4533,"src":"1260:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4547,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4535,"src":"1268:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4541,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1227:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$4761_$","typeString":"type(contract super TestERC4626)"}},"id":4543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1233:8:20","memberName":"_deposit","nodeType":"MemberAccess","referencedDeclaration":11694,"src":"1227:14:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":4548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1227:48:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4549,"nodeType":"ExpressionStatement","src":"1227:48:20"}]},"id":4551,"implemented":true,"kind":"function","modifiers":[{"id":4539,"kind":"modifierInvocation","modifierName":{"id":4538,"name":"isBroken","nameLocations":["1212:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":4499,"src":"1212:8:20"},"nodeType":"ModifierInvocation","src":"1212:8:20"}],"name":"_deposit","nameLocation":"1091:8:20","nodeType":"FunctionDefinition","overrides":{"id":4537,"nodeType":"OverrideSpecifier","overrides":[],"src":"1203:8:20"},"parameters":{"id":4536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4529,"mutability":"mutable","name":"caller","nameLocation":"1113:6:20","nodeType":"VariableDeclaration","scope":4551,"src":"1105:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4528,"name":"address","nodeType":"ElementaryTypeName","src":"1105:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4531,"mutability":"mutable","name":"receiver","nameLocation":"1133:8:20","nodeType":"VariableDeclaration","scope":4551,"src":"1125:16:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4530,"name":"address","nodeType":"ElementaryTypeName","src":"1125:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4533,"mutability":"mutable","name":"assets","nameLocation":"1155:6:20","nodeType":"VariableDeclaration","scope":4551,"src":"1147:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4532,"name":"uint256","nodeType":"ElementaryTypeName","src":"1147:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4535,"mutability":"mutable","name":"shares","nameLocation":"1175:6:20","nodeType":"VariableDeclaration","scope":4551,"src":"1167:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4534,"name":"uint256","nodeType":"ElementaryTypeName","src":"1167:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1099:86:20"},"returnParameters":{"id":4540,"nodeType":"ParameterList","parameters":[],"src":"1221:0:20"},"scope":4761,"src":"1082:198:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[11741],"body":{"id":4577,"nodeType":"Block","src":"1443:67:20","statements":[{"expression":{"arguments":[{"id":4570,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4553,"src":"1465:6:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4571,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4555,"src":"1473:8:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4572,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4557,"src":"1483:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4573,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4559,"src":"1490:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4574,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4561,"src":"1498:6:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4567,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1449:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$4761_$","typeString":"type(contract super TestERC4626)"}},"id":4569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1455:9:20","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":11741,"src":"1449:15:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":4575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1449:56:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4576,"nodeType":"ExpressionStatement","src":"1449:56:20"}]},"id":4578,"implemented":true,"kind":"function","modifiers":[{"id":4565,"kind":"modifierInvocation","modifierName":{"id":4564,"name":"isBroken","nameLocations":["1434:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":4499,"src":"1434:8:20"},"nodeType":"ModifierInvocation","src":"1434:8:20"}],"name":"_withdraw","nameLocation":"1293:9:20","nodeType":"FunctionDefinition","overrides":{"id":4563,"nodeType":"OverrideSpecifier","overrides":[],"src":"1425:8:20"},"parameters":{"id":4562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4553,"mutability":"mutable","name":"caller","nameLocation":"1316:6:20","nodeType":"VariableDeclaration","scope":4578,"src":"1308:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4552,"name":"address","nodeType":"ElementaryTypeName","src":"1308:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4555,"mutability":"mutable","name":"receiver","nameLocation":"1336:8:20","nodeType":"VariableDeclaration","scope":4578,"src":"1328:16:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4554,"name":"address","nodeType":"ElementaryTypeName","src":"1328:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4557,"mutability":"mutable","name":"owner","nameLocation":"1358:5:20","nodeType":"VariableDeclaration","scope":4578,"src":"1350:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4556,"name":"address","nodeType":"ElementaryTypeName","src":"1350:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4559,"mutability":"mutable","name":"assets","nameLocation":"1377:6:20","nodeType":"VariableDeclaration","scope":4578,"src":"1369:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4558,"name":"uint256","nodeType":"ElementaryTypeName","src":"1369:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4561,"mutability":"mutable","name":"shares","nameLocation":"1397:6:20","nodeType":"VariableDeclaration","scope":4578,"src":"1389:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4560,"name":"uint256","nodeType":"ElementaryTypeName","src":"1389:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1302:105:20"},"returnParameters":{"id":4566,"nodeType":"ParameterList","parameters":[],"src":"1443:0:20"},"scope":4761,"src":"1284:226:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4620,"nodeType":"Block","src":"1680:179:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4583,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4580,"src":"1690:6:20","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1699:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1690:10:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4618,"nodeType":"Block","src":"1781:74:20","statements":[{"expression":{"arguments":[{"arguments":[{"id":4609,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1824:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_TestERC4626_$4761","typeString":"contract TestERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TestERC4626_$4761","typeString":"contract TestERC4626"}],"id":4608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4607,"name":"address","nodeType":"ElementaryTypeName","src":"1816:7:20","typeDescriptions":{}}},"id":4610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1816:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"1839:7:20","subExpression":{"id":4613,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4580,"src":"1840:6:20","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4612,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1831:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4611,"name":"uint256","nodeType":"ElementaryTypeName","src":"1831:7:20","typeDescriptions":{}}},"id":4615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1831:16:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4603,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11247,"src":"1802:5:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1802:7:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4602,"name":"TestCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4440,"src":"1789:12:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_TestCurrency_$4440_$","typeString":"type(contract TestCurrency)"}},"id":4605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1789:21:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_TestCurrency_$4440","typeString":"contract TestCurrency"}},"id":4606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1811:4:20","memberName":"burn","nodeType":"MemberAccess","referencedDeclaration":4439,"src":"1789:26:20","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) external"}},"id":4616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1789:59:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4617,"nodeType":"ExpressionStatement","src":"1789:59:20"}]},"id":4619,"nodeType":"IfStatement","src":"1686:169:20","trueBody":{"id":4601,"nodeType":"Block","src":"1702:73:20","statements":[{"expression":{"arguments":[{"arguments":[{"id":4593,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1745:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_TestERC4626_$4761","typeString":"contract TestERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TestERC4626_$4761","typeString":"contract TestERC4626"}],"id":4592,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1737:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4591,"name":"address","nodeType":"ElementaryTypeName","src":"1737:7:20","typeDescriptions":{}}},"id":4594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1737:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4597,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4580,"src":"1760:6:20","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1752:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4595,"name":"uint256","nodeType":"ElementaryTypeName","src":"1752:7:20","typeDescriptions":{}}},"id":4598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1752:15:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4587,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11247,"src":"1723:5:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4588,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1723:7:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4586,"name":"TestCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4440,"src":"1710:12:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_TestCurrency_$4440_$","typeString":"type(contract TestCurrency)"}},"id":4589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1710:21:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_TestCurrency_$4440","typeString":"contract TestCurrency"}},"id":4590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1732:4:20","memberName":"mint","nodeType":"MemberAccess","referencedDeclaration":4423,"src":"1710:26:20","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) external"}},"id":4599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1710:58:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4600,"nodeType":"ExpressionStatement","src":"1710:58:20"}]}}]},"functionSelector":"c7361ed2","id":4621,"implemented":true,"kind":"function","modifiers":[],"name":"discreteEarning","nameLocation":"1640:15:20","nodeType":"FunctionDefinition","parameters":{"id":4581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4580,"mutability":"mutable","name":"assets","nameLocation":"1663:6:20","nodeType":"VariableDeclaration","scope":4621,"src":"1656:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4579,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:20","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1655:15:20"},"returnParameters":{"id":4582,"nodeType":"ParameterList","parameters":[],"src":"1680:0:20"},"scope":4761,"src":"1631:228:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4630,"nodeType":"Block","src":"1905:28:20","statements":[{"expression":{"id":4628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4626,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4454,"src":"1911:7:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4627,"name":"broken_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4623,"src":"1921:7:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1911:17:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4629,"nodeType":"ExpressionStatement","src":"1911:17:20"}]},"functionSelector":"86de9e4f","id":4631,"implemented":true,"kind":"function","modifiers":[],"name":"setBroken","nameLocation":"1872:9:20","nodeType":"FunctionDefinition","parameters":{"id":4624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4623,"mutability":"mutable","name":"broken_","nameLocation":"1887:7:20","nodeType":"VariableDeclaration","scope":4631,"src":"1882:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4622,"name":"bool","nodeType":"ElementaryTypeName","src":"1882:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1881:14:20"},"returnParameters":{"id":4625,"nodeType":"ParameterList","parameters":[],"src":"1905:0:20"},"scope":4761,"src":"1863:70:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4638,"nodeType":"Block","src":"1984:25:20","statements":[{"expression":{"id":4636,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4454,"src":"1997:7:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4635,"id":4637,"nodeType":"Return","src":"1990:14:20"}]},"functionSelector":"7fb1ad62","id":4639,"implemented":true,"kind":"function","modifiers":[],"name":"broken","nameLocation":"1946:6:20","nodeType":"FunctionDefinition","parameters":{"id":4632,"nodeType":"ParameterList","parameters":[],"src":"1952:2:20"},"returnParameters":{"id":4635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4634,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4639,"src":"1978:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4633,"name":"bool","nodeType":"ElementaryTypeName","src":"1978:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1977:6:20"},"scope":4761,"src":"1937:72:20","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[11309],"body":{"id":4657,"nodeType":"Block","src":"2087:101:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4647,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4456,"src":"2100:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4648,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4471,"src":"2122:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2100:36:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4654,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4456,"src":"2165:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2100:83:20","trueExpression":{"arguments":[{"id":4652,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4641,"src":"2156:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4650,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2139:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$4761_$","typeString":"type(contract super TestERC4626)"}},"id":4651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2145:10:20","memberName":"maxDeposit","nodeType":"MemberAccess","referencedDeclaration":11309,"src":"2139:16:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":4653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2139:23:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4646,"id":4656,"nodeType":"Return","src":"2093:90:20"}]},"functionSelector":"402d267d","id":4658,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"2022:10:20","nodeType":"FunctionDefinition","overrides":{"id":4643,"nodeType":"OverrideSpecifier","overrides":[],"src":"2060:8:20"},"parameters":{"id":4642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4641,"mutability":"mutable","name":"owner","nameLocation":"2041:5:20","nodeType":"VariableDeclaration","scope":4658,"src":"2033:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4640,"name":"address","nodeType":"ElementaryTypeName","src":"2033:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2032:15:20"},"returnParameters":{"id":4646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4658,"src":"2078:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4644,"name":"uint256","nodeType":"ElementaryTypeName","src":"2078:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2077:9:20"},"scope":4761,"src":"2013:175:20","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[11324],"body":{"id":4676,"nodeType":"Block","src":"2263:92:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4666,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"2276:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4667,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4471,"src":"2295:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2276:33:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4673,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"2335:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2276:74:20","trueExpression":{"arguments":[{"id":4671,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4660,"src":"2326:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4669,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2312:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$4761_$","typeString":"type(contract super TestERC4626)"}},"id":4670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2318:7:20","memberName":"maxMint","nodeType":"MemberAccess","referencedDeclaration":11324,"src":"2312:13:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":4672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2312:20:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4665,"id":4675,"nodeType":"Return","src":"2269:81:20"}]},"functionSelector":"c63d75b6","id":4677,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"2201:7:20","nodeType":"FunctionDefinition","overrides":{"id":4662,"nodeType":"OverrideSpecifier","overrides":[],"src":"2236:8:20"},"parameters":{"id":4661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4660,"mutability":"mutable","name":"owner","nameLocation":"2217:5:20","nodeType":"VariableDeclaration","scope":4677,"src":"2209:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4659,"name":"address","nodeType":"ElementaryTypeName","src":"2209:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2208:15:20"},"returnParameters":{"id":4665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4664,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4677,"src":"2254:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4663,"name":"uint256","nodeType":"ElementaryTypeName","src":"2254:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2253:9:20"},"scope":4761,"src":"2192:163:20","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[11342],"body":{"id":4695,"nodeType":"Block","src":"2434:104:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4685,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4460,"src":"2447:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4686,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4471,"src":"2470:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2447:37:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4692,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4460,"src":"2514:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2447:86:20","trueExpression":{"arguments":[{"id":4690,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4679,"src":"2505:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4688,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2487:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$4761_$","typeString":"type(contract super TestERC4626)"}},"id":4689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2493:11:20","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":11342,"src":"2487:17:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":4691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2487:24:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4684,"id":4694,"nodeType":"Return","src":"2440:93:20"}]},"functionSelector":"ce96cb77","id":4696,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"2368:11:20","nodeType":"FunctionDefinition","overrides":{"id":4681,"nodeType":"OverrideSpecifier","overrides":[],"src":"2407:8:20"},"parameters":{"id":4680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4679,"mutability":"mutable","name":"owner","nameLocation":"2388:5:20","nodeType":"VariableDeclaration","scope":4696,"src":"2380:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4678,"name":"address","nodeType":"ElementaryTypeName","src":"2380:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2379:15:20"},"returnParameters":{"id":4684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4683,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4696,"src":"2425:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4682,"name":"uint256","nodeType":"ElementaryTypeName","src":"2425:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2424:9:20"},"scope":4761,"src":"2359:179:20","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[11355],"body":{"id":4714,"nodeType":"Block","src":"2615:98:20","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4704,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4462,"src":"2628:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4705,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4471,"src":"2649:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2628:35:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4711,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4462,"src":"2691:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2628:80:20","trueExpression":{"arguments":[{"id":4709,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4698,"src":"2682:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4707,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2666:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$4761_$","typeString":"type(contract super TestERC4626)"}},"id":4708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2672:9:20","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":11355,"src":"2666:15:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":4710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2666:22:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4703,"id":4713,"nodeType":"Return","src":"2621:87:20"}]},"functionSelector":"d905777e","id":4715,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"2551:9:20","nodeType":"FunctionDefinition","overrides":{"id":4700,"nodeType":"OverrideSpecifier","overrides":[],"src":"2588:8:20"},"parameters":{"id":4699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4698,"mutability":"mutable","name":"owner","nameLocation":"2569:5:20","nodeType":"VariableDeclaration","scope":4715,"src":"2561:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4697,"name":"address","nodeType":"ElementaryTypeName","src":"2561:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2560:15:20"},"returnParameters":{"id":4703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4702,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4715,"src":"2606:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4701,"name":"uint256","nodeType":"ElementaryTypeName","src":"2606:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2605:9:20"},"scope":4761,"src":"2542:171:20","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4759,"nodeType":"Block","src":"2788:291:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"},"id":4726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4723,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4718,"src":"2798:6:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4724,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4476,"src":"2808:14:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$4476_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":4725,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2823:7:20","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":4472,"src":"2808:22:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"src":"2798:32:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4731,"nodeType":"IfStatement","src":"2794:67:20","trueBody":{"expression":{"id":4729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4727,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4456,"src":"2832:18:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4728,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"2853:8:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2832:29:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4730,"nodeType":"ExpressionStatement","src":"2832:29:20"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"},"id":4735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4732,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4718,"src":"2871:6:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4733,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4476,"src":"2881:14:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$4476_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":4734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2896:4:20","memberName":"mint","nodeType":"MemberAccess","referencedDeclaration":4473,"src":"2881:19:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"src":"2871:29:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4740,"nodeType":"IfStatement","src":"2867:61:20","trueBody":{"expression":{"id":4738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4736,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"2902:15:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4737,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"2920:8:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2902:26:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4739,"nodeType":"ExpressionStatement","src":"2902:26:20"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"},"id":4744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4741,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4718,"src":"2938:6:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4742,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4476,"src":"2948:14:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$4476_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":4743,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2963:8:20","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":4474,"src":"2948:23:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"src":"2938:33:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4749,"nodeType":"IfStatement","src":"2934:69:20","trueBody":{"expression":{"id":4747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4745,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4460,"src":"2973:19:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4746,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"2995:8:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2973:30:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4748,"nodeType":"ExpressionStatement","src":"2973:30:20"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"},"id":4753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4750,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4718,"src":"3013:6:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":4751,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4476,"src":"3023:14:20","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$4476_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":4752,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3038:6:20","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":4475,"src":"3023:21:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"src":"3013:31:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4758,"nodeType":"IfStatement","src":"3009:65:20","trueBody":{"expression":{"id":4756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4754,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4462,"src":"3046:17:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4755,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"3066:8:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3046:28:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4757,"nodeType":"ExpressionStatement","src":"3046:28:20"}}]},"functionSelector":"d6dd0234","id":4760,"implemented":true,"kind":"function","modifiers":[],"name":"setOverride","nameLocation":"2726:11:20","nodeType":"FunctionDefinition","parameters":{"id":4721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4718,"mutability":"mutable","name":"option","nameLocation":"2753:6:20","nodeType":"VariableDeclaration","scope":4760,"src":"2738:21:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"},"typeName":{"id":4717,"nodeType":"UserDefinedTypeName","pathNode":{"id":4716,"name":"OverrideOption","nameLocations":["2738:14:20"],"nodeType":"IdentifierPath","referencedDeclaration":4476,"src":"2738:14:20"},"referencedDeclaration":4476,"src":"2738:14:20","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$4476","typeString":"enum TestERC4626.OverrideOption"}},"visibility":"internal"},{"constant":false,"id":4720,"mutability":"mutable","name":"newValue","nameLocation":"2769:8:20","nodeType":"VariableDeclaration","scope":4760,"src":"2761:16:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4719,"name":"uint256","nodeType":"ElementaryTypeName","src":"2761:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2737:41:20"},"returnParameters":{"id":4722,"nodeType":"ParameterList","parameters":[],"src":"2788:0:20"},"scope":4761,"src":"2717:362:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4762,"src":"364:2717:20","usedErrors":[4480,9826,9831,9836,9845,9850,9855,11099,11108,11117,11126,11788],"usedEvents":[9647,9659,10999,11008]}],"src":"38:3044:20"},"id":20},"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[6771],"ERC2771ContextUpgradeable":[4908],"Initializable":[5162]},"id":4909,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4763,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:21"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":4765,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4909,"sourceUnit":6772,"src":"135:67:21","symbolAliases":[{"foreign":{"id":4764,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"143:18:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":4767,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4909,"sourceUnit":5163,"src":"203:63:21","symbolAliases":[{"foreign":{"id":4766,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5162,"src":"211:13:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4769,"name":"Initializable","nameLocations":["1102:13:21"],"nodeType":"IdentifierPath","referencedDeclaration":5162,"src":"1102:13:21"},"id":4770,"nodeType":"InheritanceSpecifier","src":"1102:13:21"},{"baseName":{"id":4771,"name":"ContextUpgradeable","nameLocations":["1117:18:21"],"nodeType":"IdentifierPath","referencedDeclaration":6771,"src":"1117:18:21"},"id":4772,"nodeType":"InheritanceSpecifier","src":"1117:18:21"}],"canonicalName":"ERC2771ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":4768,"nodeType":"StructuredDocumentation","src":"268:786:21","text":" @dev Context variant with ERC-2771 support.\n WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll\n be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771\n specification adding the address size in bytes (20) to the calldata size. An example of an unexpected\n behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive`\n function only accessible if `msg.data.length == 0`.\n WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption.\n Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender}\n recovery."},"fullyImplemented":true,"id":4908,"linearizedBaseContracts":[4908,6771,5162],"name":"ERC2771ContextUpgradeable","nameLocation":"1073:25:21","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":4773,"nodeType":"StructuredDocumentation","src":"1142:61:21","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":4775,"mutability":"immutable","name":"_trustedForwarder","nameLocation":"1234:17:21","nodeType":"VariableDeclaration","scope":4908,"src":"1208:43:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4774,"name":"address","nodeType":"ElementaryTypeName","src":"1208:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"body":{"id":4785,"nodeType":"Block","src":"1613:54:21","statements":[{"expression":{"id":4783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4781,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4775,"src":"1623:17:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4782,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4778,"src":"1643:17:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1623:37:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4784,"nodeType":"ExpressionStatement","src":"1623:37:21"}]},"documentation":{"id":4776,"nodeType":"StructuredDocumentation","src":"1521:48:21","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":4786,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4778,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"1594:17:21","nodeType":"VariableDeclaration","scope":4786,"src":"1586:25:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4777,"name":"address","nodeType":"ElementaryTypeName","src":"1586:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1585:27:21"},"returnParameters":{"id":4780,"nodeType":"ParameterList","parameters":[],"src":"1613:0:21"},"scope":4908,"src":"1574:93:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4794,"nodeType":"Block","src":"1813:41:21","statements":[{"expression":{"id":4792,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4775,"src":"1830:17:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4791,"id":4793,"nodeType":"Return","src":"1823:24:21"}]},"documentation":{"id":4787,"nodeType":"StructuredDocumentation","src":"1673:69:21","text":" @dev Returns the address of the trusted forwarder."},"functionSelector":"7da0a877","id":4795,"implemented":true,"kind":"function","modifiers":[],"name":"trustedForwarder","nameLocation":"1756:16:21","nodeType":"FunctionDefinition","parameters":{"id":4788,"nodeType":"ParameterList","parameters":[],"src":"1772:2:21"},"returnParameters":{"id":4791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4790,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4795,"src":"1804:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4789,"name":"address","nodeType":"ElementaryTypeName","src":"1804:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1803:9:21"},"scope":4908,"src":"1747:107:21","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4808,"nodeType":"Block","src":"2037:55:21","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4803,"name":"forwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4798,"src":"2054:9:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":4804,"name":"trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4795,"src":"2067:16:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2067:18:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2054:31:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4802,"id":4807,"nodeType":"Return","src":"2047:38:21"}]},"documentation":{"id":4796,"nodeType":"StructuredDocumentation","src":"1860:90:21","text":" @dev Indicates whether any particular address is the trusted forwarder."},"functionSelector":"572b6c05","id":4809,"implemented":true,"kind":"function","modifiers":[],"name":"isTrustedForwarder","nameLocation":"1964:18:21","nodeType":"FunctionDefinition","parameters":{"id":4799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4798,"mutability":"mutable","name":"forwarder","nameLocation":"1991:9:21","nodeType":"VariableDeclaration","scope":4809,"src":"1983:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4797,"name":"address","nodeType":"ElementaryTypeName","src":"1983:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1982:19:21"},"returnParameters":{"id":4802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4801,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4809,"src":"2031:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4800,"name":"bool","nodeType":"ElementaryTypeName","src":"2031:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2030:6:21"},"scope":4908,"src":"1955:137:21","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6753],"body":{"id":4855,"nodeType":"Block","src":"2400:358:21","statements":[{"assignments":[4817],"declarations":[{"constant":false,"id":4817,"mutability":"mutable","name":"calldataLength","nameLocation":"2418:14:21","nodeType":"VariableDeclaration","scope":4855,"src":"2410:22:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4816,"name":"uint256","nodeType":"ElementaryTypeName","src":"2410:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4821,"initialValue":{"expression":{"expression":{"id":4818,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2435:3:21","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2439:4:21","memberName":"data","nodeType":"MemberAccess","src":"2435:8:21","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":4820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2444:6:21","memberName":"length","nodeType":"MemberAccess","src":"2435:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2410:40:21"},{"assignments":[4823],"declarations":[{"constant":false,"id":4823,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"2468:19:21","nodeType":"VariableDeclaration","scope":4855,"src":"2460:27:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4822,"name":"uint256","nodeType":"ElementaryTypeName","src":"2460:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4826,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4824,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[4907],"referencedDeclaration":4907,"src":"2490:20:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2490:22:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2460:52:21"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":4828,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2545:3:21","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2549:6:21","memberName":"sender","nodeType":"MemberAccess","src":"2545:10:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4827,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4809,"src":"2526:18:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2526:30:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4831,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4817,"src":"2560:14:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4832,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4823,"src":"2578:19:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2560:37:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2526:71:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4853,"nodeType":"Block","src":"2702:50:21","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4849,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2723:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771ContextUpgradeable_$4908_$","typeString":"type(contract super ERC2771ContextUpgradeable)"}},"id":4850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2729:10:21","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":6753,"src":"2723:16:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":4851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:18:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4815,"id":4852,"nodeType":"Return","src":"2716:25:21"}]},"id":4854,"nodeType":"IfStatement","src":"2522:230:21","trueBody":{"id":4848,"nodeType":"Block","src":"2599:97:21","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":4839,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2636:3:21","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2640:4:21","memberName":"data","nodeType":"MemberAccess","src":"2636:8:21","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":4844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2636:47:21","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4841,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4817,"src":"2645:14:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4842,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4823,"src":"2662:19:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2645:36:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":4838,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2628:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":4837,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2628:7:21","typeDescriptions":{}}},"id":4845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2628:56:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":4836,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2620:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4835,"name":"address","nodeType":"ElementaryTypeName","src":"2620:7:21","typeDescriptions":{}}},"id":4846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2620:65:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4815,"id":4847,"nodeType":"Return","src":"2613:72:21"}]}}]},"documentation":{"id":4810,"nodeType":"StructuredDocumentation","src":"2098:226:21","text":" @dev Override for `msg.sender`. Defaults to the original `msg.sender` whenever\n a call is not performed by the trusted forwarder or the calldata length is less than\n 20 bytes (an address length)."},"id":4856,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"2338:10:21","nodeType":"FunctionDefinition","overrides":{"id":4812,"nodeType":"OverrideSpecifier","overrides":[],"src":"2373:8:21"},"parameters":{"id":4811,"nodeType":"ParameterList","parameters":[],"src":"2348:2:21"},"returnParameters":{"id":4815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4814,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4856,"src":"2391:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4813,"name":"address","nodeType":"ElementaryTypeName","src":"2391:7:21","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2390:9:21"},"scope":4908,"src":"2329:429:21","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6762],"body":{"id":4896,"nodeType":"Block","src":"3067:338:21","statements":[{"assignments":[4864],"declarations":[{"constant":false,"id":4864,"mutability":"mutable","name":"calldataLength","nameLocation":"3085:14:21","nodeType":"VariableDeclaration","scope":4896,"src":"3077:22:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4863,"name":"uint256","nodeType":"ElementaryTypeName","src":"3077:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4868,"initialValue":{"expression":{"expression":{"id":4865,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3102:3:21","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3106:4:21","memberName":"data","nodeType":"MemberAccess","src":"3102:8:21","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":4867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3111:6:21","memberName":"length","nodeType":"MemberAccess","src":"3102:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3077:40:21"},{"assignments":[4870],"declarations":[{"constant":false,"id":4870,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"3135:19:21","nodeType":"VariableDeclaration","scope":4896,"src":"3127:27:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4869,"name":"uint256","nodeType":"ElementaryTypeName","src":"3127:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4873,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4871,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[4907],"referencedDeclaration":4907,"src":"3157:20:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3157:22:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3127:52:21"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":4875,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3212:3:21","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3216:6:21","memberName":"sender","nodeType":"MemberAccess","src":"3212:10:21","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4874,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4809,"src":"3193:18:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3193:30:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4878,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4864,"src":"3227:14:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4879,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4870,"src":"3245:19:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3227:37:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3193:71:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4894,"nodeType":"Block","src":"3351:48:21","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4890,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3372:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771ContextUpgradeable_$4908_$","typeString":"type(contract super ERC2771ContextUpgradeable)"}},"id":4891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3378:8:21","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":6762,"src":"3372:14:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":4892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3372:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":4862,"id":4893,"nodeType":"Return","src":"3365:23:21"}]},"id":4895,"nodeType":"IfStatement","src":"3189:210:21","trueBody":{"id":4889,"nodeType":"Block","src":"3266:79:21","statements":[{"expression":{"baseExpression":{"expression":{"id":4882,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3287:3:21","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3291:4:21","memberName":"data","nodeType":"MemberAccess","src":"3287:8:21","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4884,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4864,"src":"3297:14:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4885,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4870,"src":"3314:19:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3297:36:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3287:47:21","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"functionReturnParameters":4862,"id":4888,"nodeType":"Return","src":"3280:54:21"}]}}]},"documentation":{"id":4857,"nodeType":"StructuredDocumentation","src":"2764:222:21","text":" @dev Override for `msg.data`. Defaults to the original `msg.data` whenever\n a call is not performed by the trusted forwarder or the calldata length is less than\n 20 bytes (an address length)."},"id":4897,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"3000:8:21","nodeType":"FunctionDefinition","overrides":{"id":4859,"nodeType":"OverrideSpecifier","overrides":[],"src":"3033:8:21"},"parameters":{"id":4858,"nodeType":"ParameterList","parameters":[],"src":"3008:2:21"},"returnParameters":{"id":4862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4861,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4897,"src":"3051:14:21","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":4860,"name":"bytes","nodeType":"ElementaryTypeName","src":"3051:5:21","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3050:16:21"},"scope":4908,"src":"2991:414:21","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[6770],"body":{"id":4906,"nodeType":"Block","src":"3589:26:21","statements":[{"expression":{"hexValue":"3230","id":4904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3606:2:21","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"functionReturnParameters":4903,"id":4905,"nodeType":"Return","src":"3599:9:21"}]},"documentation":{"id":4898,"nodeType":"StructuredDocumentation","src":"3411:92:21","text":" @dev ERC-2771 specifies the context as being a single address (20 bytes)."},"id":4907,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"3517:20:21","nodeType":"FunctionDefinition","overrides":{"id":4900,"nodeType":"OverrideSpecifier","overrides":[],"src":"3562:8:21"},"parameters":{"id":4899,"nodeType":"ParameterList","parameters":[],"src":"3537:2:21"},"returnParameters":{"id":4903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4902,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4907,"src":"3580:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4901,"name":"uint256","nodeType":"ElementaryTypeName","src":"3580:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3579:9:21"},"scope":4908,"src":"3508:107:21","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":4909,"src":"1055:2562:21","usedErrors":[4925,4928],"usedEvents":[4933]}],"src":"109:3509:21"},"id":21},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","exportedSymbols":{"Initializable":[5162]},"id":5163,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4910,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:22"},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":4911,"nodeType":"StructuredDocumentation","src":"139:2209:22","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```solidity\n contract MyToken is ERC20Upgradeable {\n     function initialize() initializer public {\n         __ERC20_init(\"MyToken\", \"MTK\");\n     }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n     function initializeV2() reinitializer(2) public {\n         __ERC20Permit_init(\"MyToken\");\n     }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n     _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":5162,"linearizedBaseContracts":[5162],"name":"Initializable","nameLocation":"2367:13:22","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Initializable.InitializableStorage","documentation":{"id":4912,"nodeType":"StructuredDocumentation","src":"2387:293:22","text":" @dev Storage of the initializable contract.\n It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n when using with upgradeable contracts.\n @custom:storage-location erc7201:openzeppelin.storage.Initializable"},"id":4919,"members":[{"constant":false,"id":4915,"mutability":"mutable","name":"_initialized","nameLocation":"2820:12:22","nodeType":"VariableDeclaration","scope":4919,"src":"2813:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4914,"name":"uint64","nodeType":"ElementaryTypeName","src":"2813:6:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":4918,"mutability":"mutable","name":"_initializing","nameLocation":"2955:13:22","nodeType":"VariableDeclaration","scope":4919,"src":"2950:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4917,"name":"bool","nodeType":"ElementaryTypeName","src":"2950:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"InitializableStorage","nameLocation":"2692:20:22","nodeType":"StructDefinition","scope":5162,"src":"2685:290:22","visibility":"public"},{"constant":true,"id":4922,"mutability":"constant","name":"INITIALIZABLE_STORAGE","nameLocation":"3123:21:22","nodeType":"VariableDeclaration","scope":5162,"src":"3098:115:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4920,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3098:7:22","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307866306335376531363834306466303430663135303838646332663831666533393163333932336265633733653233613936363265666339633232396336613030","id":4921,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:66:22","typeDescriptions":{"typeIdentifier":"t_rational_108904022758810753673719992590105913556127789646572562039383141376366747609600_by_1","typeString":"int_const 1089...(70 digits omitted)...9600"},"value":"0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00"},"visibility":"private"},{"documentation":{"id":4923,"nodeType":"StructuredDocumentation","src":"3220:60:22","text":" @dev The contract is already initialized."},"errorSelector":"f92ee8a9","id":4925,"name":"InvalidInitialization","nameLocation":"3291:21:22","nodeType":"ErrorDefinition","parameters":{"id":4924,"nodeType":"ParameterList","parameters":[],"src":"3312:2:22"},"src":"3285:30:22"},{"documentation":{"id":4926,"nodeType":"StructuredDocumentation","src":"3321:57:22","text":" @dev The contract is not initializing."},"errorSelector":"d7e6bcf8","id":4928,"name":"NotInitializing","nameLocation":"3389:15:22","nodeType":"ErrorDefinition","parameters":{"id":4927,"nodeType":"ParameterList","parameters":[],"src":"3404:2:22"},"src":"3383:24:22"},{"anonymous":false,"documentation":{"id":4929,"nodeType":"StructuredDocumentation","src":"3413:90:22","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2","id":4933,"name":"Initialized","nameLocation":"3514:11:22","nodeType":"EventDefinition","parameters":{"id":4932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4931,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"3533:7:22","nodeType":"VariableDeclaration","scope":4933,"src":"3526:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4930,"name":"uint64","nodeType":"ElementaryTypeName","src":"3526:6:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3525:16:22"},"src":"3508:34:22"},{"body":{"id":5015,"nodeType":"Block","src":"4092:1081:22","statements":[{"assignments":[4938],"declarations":[{"constant":false,"id":4938,"mutability":"mutable","name":"$","nameLocation":"4187:1:22","nodeType":"VariableDeclaration","scope":5015,"src":"4158:30:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":4937,"nodeType":"UserDefinedTypeName","pathNode":{"id":4936,"name":"InitializableStorage","nameLocations":["4158:20:22"],"nodeType":"IdentifierPath","referencedDeclaration":4919,"src":"4158:20:22"},"referencedDeclaration":4919,"src":"4158:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":4941,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4939,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5161,"src":"4191:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$4919_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":4940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4191:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4158:59:22"},{"assignments":[4943],"declarations":[{"constant":false,"id":4943,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"4284:14:22","nodeType":"VariableDeclaration","scope":5015,"src":"4279:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4942,"name":"bool","nodeType":"ElementaryTypeName","src":"4279:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4947,"initialValue":{"id":4946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4301:16:22","subExpression":{"expression":{"id":4944,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4938,"src":"4302:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":4945,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4304:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"4302:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4279:38:22"},{"assignments":[4949],"declarations":[{"constant":false,"id":4949,"mutability":"mutable","name":"initialized","nameLocation":"4334:11:22","nodeType":"VariableDeclaration","scope":5015,"src":"4327:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":4948,"name":"uint64","nodeType":"ElementaryTypeName","src":"4327:6:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":4952,"initialValue":{"expression":{"id":4950,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4938,"src":"4348:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":4951,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4350:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"4348:14:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"4327:35:22"},{"assignments":[4954],"declarations":[{"constant":false,"id":4954,"mutability":"mutable","name":"initialSetup","nameLocation":"4711:12:22","nodeType":"VariableDeclaration","scope":5015,"src":"4706:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4953,"name":"bool","nodeType":"ElementaryTypeName","src":"4706:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4960,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4955,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4949,"src":"4726:11:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4741:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4726:16:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":4958,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4943,"src":"4746:14:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4726:34:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4706:54:22"},{"assignments":[4962],"declarations":[{"constant":false,"id":4962,"mutability":"mutable","name":"construction","nameLocation":"4775:12:22","nodeType":"VariableDeclaration","scope":5015,"src":"4770:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4961,"name":"bool","nodeType":"ElementaryTypeName","src":"4770:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4975,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":4965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4963,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4949,"src":"4790:11:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":4964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4805:1:22","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4790:16:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":4968,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4818:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$5162","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$5162","typeString":"contract Initializable"}],"id":4967,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4810:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4966,"name":"address","nodeType":"ElementaryTypeName","src":"4810:7:22","typeDescriptions":{}}},"id":4969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4810:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4824:4:22","memberName":"code","nodeType":"MemberAccess","src":"4810:18:22","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4829:6:22","memberName":"length","nodeType":"MemberAccess","src":"4810:25:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4839:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4810:30:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4790:50:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4770:70:22"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4855:13:22","subExpression":{"id":4976,"name":"initialSetup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4954,"src":"4856:12:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":4979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4872:13:22","subExpression":{"id":4978,"name":"construction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4962,"src":"4873:12:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4855:30:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4985,"nodeType":"IfStatement","src":"4851:91:22","trueBody":{"id":4984,"nodeType":"Block","src":"4887:55:22","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4981,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4925,"src":"4908:21:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4908:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4983,"nodeType":"RevertStatement","src":"4901:30:22"}]}},{"expression":{"id":4990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4986,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4938,"src":"4951:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":4988,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4953:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"4951:14:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":4989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4968:1:22","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4951:18:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":4991,"nodeType":"ExpressionStatement","src":"4951:18:22"},{"condition":{"id":4992,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4943,"src":"4983:14:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5000,"nodeType":"IfStatement","src":"4979:67:22","trueBody":{"id":4999,"nodeType":"Block","src":"4999:47:22","statements":[{"expression":{"id":4997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4993,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4938,"src":"5013:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":4995,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5015:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"5013:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":4996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5031:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5013:22:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4998,"nodeType":"ExpressionStatement","src":"5013:22:22"}]}},{"id":5001,"nodeType":"PlaceholderStatement","src":"5055:1:22"},{"condition":{"id":5002,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4943,"src":"5070:14:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5014,"nodeType":"IfStatement","src":"5066:101:22","trueBody":{"id":5013,"nodeType":"Block","src":"5086:81:22","statements":[{"expression":{"id":5007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5003,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4938,"src":"5100:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5005,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5102:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"5100:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":5006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5118:5:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5100:23:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5008,"nodeType":"ExpressionStatement","src":"5100:23:22"},{"eventCall":{"arguments":[{"hexValue":"31","id":5010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5154:1:22","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":5009,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4933,"src":"5142:11:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":5011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5142:14:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5012,"nodeType":"EmitStatement","src":"5137:19:22"}]}}]},"documentation":{"id":4934,"nodeType":"StructuredDocumentation","src":"3548:516:22","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts.\n Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n production.\n Emits an {Initialized} event."},"id":5016,"name":"initializer","nameLocation":"4078:11:22","nodeType":"ModifierDefinition","parameters":{"id":4935,"nodeType":"ParameterList","parameters":[],"src":"4089:2:22"},"src":"4069:1104:22","virtual":false,"visibility":"internal"},{"body":{"id":5062,"nodeType":"Block","src":"6291:392:22","statements":[{"assignments":[5023],"declarations":[{"constant":false,"id":5023,"mutability":"mutable","name":"$","nameLocation":"6386:1:22","nodeType":"VariableDeclaration","scope":5062,"src":"6357:30:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":5022,"nodeType":"UserDefinedTypeName","pathNode":{"id":5021,"name":"InitializableStorage","nameLocations":["6357:20:22"],"nodeType":"IdentifierPath","referencedDeclaration":4919,"src":"6357:20:22"},"referencedDeclaration":4919,"src":"6357:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":5026,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5024,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5161,"src":"6390:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$4919_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":5025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6390:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6357:59:22"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5027,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5023,"src":"6431:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5028,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6433:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"6431:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":5032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5029,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5023,"src":"6450:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5030,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6452:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"6450:14:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":5031,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5019,"src":"6468:7:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6450:25:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6431:44:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5038,"nodeType":"IfStatement","src":"6427:105:22","trueBody":{"id":5037,"nodeType":"Block","src":"6477:55:22","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":5034,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4925,"src":"6498:21:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":5035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6498:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5036,"nodeType":"RevertStatement","src":"6491:30:22"}]}},{"expression":{"id":5043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5039,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5023,"src":"6541:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5041,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6543:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"6541:14:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5042,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5019,"src":"6558:7:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6541:24:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":5044,"nodeType":"ExpressionStatement","src":"6541:24:22"},{"expression":{"id":5049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5045,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5023,"src":"6575:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6577:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"6575:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":5048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6593:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6575:22:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5050,"nodeType":"ExpressionStatement","src":"6575:22:22"},{"id":5051,"nodeType":"PlaceholderStatement","src":"6607:1:22"},{"expression":{"id":5056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5052,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5023,"src":"6618:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5054,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6620:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"6618:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":5055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6636:5:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6618:23:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5057,"nodeType":"ExpressionStatement","src":"6618:23:22"},{"eventCall":{"arguments":[{"id":5059,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5019,"src":"6668:7:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":5058,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4933,"src":"6656:11:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":5060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6656:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5061,"nodeType":"EmitStatement","src":"6651:25:22"}]},"documentation":{"id":5017,"nodeType":"StructuredDocumentation","src":"5179:1068:22","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n A reinitializer may be used after the original initialization step. This is essential to configure modules that\n are added through upgrades and that require initialization.\n When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n cannot be nested. If one is invoked in the context of another, execution will revert.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator.\n WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":5063,"name":"reinitializer","nameLocation":"6261:13:22","nodeType":"ModifierDefinition","parameters":{"id":5020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5019,"mutability":"mutable","name":"version","nameLocation":"6282:7:22","nodeType":"VariableDeclaration","scope":5063,"src":"6275:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5018,"name":"uint64","nodeType":"ElementaryTypeName","src":"6275:6:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6274:16:22"},"src":"6252:431:22","virtual":false,"visibility":"internal"},{"body":{"id":5070,"nodeType":"Block","src":"6921:48:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":5066,"name":"_checkInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5084,"src":"6931:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":5067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6931:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5068,"nodeType":"ExpressionStatement","src":"6931:20:22"},{"id":5069,"nodeType":"PlaceholderStatement","src":"6961:1:22"}]},"documentation":{"id":5064,"nodeType":"StructuredDocumentation","src":"6689:199:22","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":5071,"name":"onlyInitializing","nameLocation":"6902:16:22","nodeType":"ModifierDefinition","parameters":{"id":5065,"nodeType":"ParameterList","parameters":[],"src":"6918:2:22"},"src":"6893:76:22","virtual":false,"visibility":"internal"},{"body":{"id":5083,"nodeType":"Block","src":"7136:89:22","statements":[{"condition":{"id":5077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7150:18:22","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":5075,"name":"_isInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5152,"src":"7151:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":5076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7151:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5082,"nodeType":"IfStatement","src":"7146:73:22","trueBody":{"id":5081,"nodeType":"Block","src":"7170:49:22","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":5078,"name":"NotInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4928,"src":"7191:15:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":5079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7191:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5080,"nodeType":"RevertStatement","src":"7184:24:22"}]}}]},"documentation":{"id":5072,"nodeType":"StructuredDocumentation","src":"6975:104:22","text":" @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}."},"id":5084,"implemented":true,"kind":"function","modifiers":[],"name":"_checkInitializing","nameLocation":"7093:18:22","nodeType":"FunctionDefinition","parameters":{"id":5073,"nodeType":"ParameterList","parameters":[],"src":"7111:2:22"},"returnParameters":{"id":5074,"nodeType":"ParameterList","parameters":[],"src":"7136:0:22"},"scope":5162,"src":"7084:141:22","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5129,"nodeType":"Block","src":"7760:373:22","statements":[{"assignments":[5090],"declarations":[{"constant":false,"id":5090,"mutability":"mutable","name":"$","nameLocation":"7855:1:22","nodeType":"VariableDeclaration","scope":5129,"src":"7826:30:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":5089,"nodeType":"UserDefinedTypeName","pathNode":{"id":5088,"name":"InitializableStorage","nameLocations":["7826:20:22"],"nodeType":"IdentifierPath","referencedDeclaration":4919,"src":"7826:20:22"},"referencedDeclaration":4919,"src":"7826:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":5093,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5091,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5161,"src":"7859:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$4919_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":5092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7859:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7826:59:22"},{"condition":{"expression":{"id":5094,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5090,"src":"7900:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5095,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7902:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"7900:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5100,"nodeType":"IfStatement","src":"7896:76:22","trueBody":{"id":5099,"nodeType":"Block","src":"7917:55:22","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":5096,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4925,"src":"7938:21:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":5097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7938:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5098,"nodeType":"RevertStatement","src":"7931:30:22"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":5108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5101,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5090,"src":"7985:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5102,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7987:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"7985:14:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":5105,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8008:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":5104,"name":"uint64","nodeType":"ElementaryTypeName","src":"8008:6:22","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":5103,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8003:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8003:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":5107,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8016:3:22","memberName":"max","nodeType":"MemberAccess","src":"8003:16:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7985:34:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5128,"nodeType":"IfStatement","src":"7981:146:22","trueBody":{"id":5127,"nodeType":"Block","src":"8021:106:22","statements":[{"expression":{"id":5117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5109,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5090,"src":"8035:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5111,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8037:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"8035:14:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":5114,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8057:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":5113,"name":"uint64","nodeType":"ElementaryTypeName","src":"8057:6:22","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":5112,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8052:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8052:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":5116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8065:3:22","memberName":"max","nodeType":"MemberAccess","src":"8052:16:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"8035:33:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":5118,"nodeType":"ExpressionStatement","src":"8035:33:22"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":5122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8104:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":5121,"name":"uint64","nodeType":"ElementaryTypeName","src":"8104:6:22","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":5120,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8099:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8099:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":5124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8112:3:22","memberName":"max","nodeType":"MemberAccess","src":"8099:16:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":5119,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4933,"src":"8087:11:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":5125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8087:29:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5126,"nodeType":"EmitStatement","src":"8082:34:22"}]}}]},"documentation":{"id":5085,"nodeType":"StructuredDocumentation","src":"7231:475:22","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies.\n Emits an {Initialized} event the first time it is successfully executed."},"id":5130,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"7720:20:22","nodeType":"FunctionDefinition","parameters":{"id":5086,"nodeType":"ParameterList","parameters":[],"src":"7740:2:22"},"returnParameters":{"id":5087,"nodeType":"ParameterList","parameters":[],"src":"7760:0:22"},"scope":5162,"src":"7711:422:22","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5140,"nodeType":"Block","src":"8308:63:22","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":5136,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5161,"src":"8325:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$4919_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":5137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8325:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8352:12:22","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":4915,"src":"8325:39:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":5135,"id":5139,"nodeType":"Return","src":"8318:46:22"}]},"documentation":{"id":5131,"nodeType":"StructuredDocumentation","src":"8139:99:22","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":5141,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"8252:22:22","nodeType":"FunctionDefinition","parameters":{"id":5132,"nodeType":"ParameterList","parameters":[],"src":"8274:2:22"},"returnParameters":{"id":5135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5134,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5141,"src":"8300:6:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5133,"name":"uint64","nodeType":"ElementaryTypeName","src":"8300:6:22","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8299:8:22"},"scope":5162,"src":"8243:128:22","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5151,"nodeType":"Block","src":"8543:64:22","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":5147,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5161,"src":"8560:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$4919_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":5148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8560:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":5149,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8587:13:22","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":4918,"src":"8560:40:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5146,"id":5150,"nodeType":"Return","src":"8553:47:22"}]},"documentation":{"id":5142,"nodeType":"StructuredDocumentation","src":"8377:105:22","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":5152,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"8496:15:22","nodeType":"FunctionDefinition","parameters":{"id":5143,"nodeType":"ParameterList","parameters":[],"src":"8511:2:22"},"returnParameters":{"id":5146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5145,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5152,"src":"8537:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5144,"name":"bool","nodeType":"ElementaryTypeName","src":"8537:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8536:6:22"},"scope":5162,"src":"8487:120:22","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5160,"nodeType":"Block","src":"8827:80:22","statements":[{"AST":{"nativeSrc":"8846:55:22","nodeType":"YulBlock","src":"8846:55:22","statements":[{"nativeSrc":"8860:31:22","nodeType":"YulAssignment","src":"8860:31:22","value":{"name":"INITIALIZABLE_STORAGE","nativeSrc":"8870:21:22","nodeType":"YulIdentifier","src":"8870:21:22"},"variableNames":[{"name":"$.slot","nativeSrc":"8860:6:22","nodeType":"YulIdentifier","src":"8860:6:22"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":5157,"isOffset":false,"isSlot":true,"src":"8860:6:22","suffix":"slot","valueSize":1},{"declaration":4922,"isOffset":false,"isSlot":false,"src":"8870:21:22","valueSize":1}],"id":5159,"nodeType":"InlineAssembly","src":"8837:64:22"}]},"documentation":{"id":5153,"nodeType":"StructuredDocumentation","src":"8613:67:22","text":" @dev Returns a pointer to the storage namespace."},"id":5161,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializableStorage","nameLocation":"8746:24:22","nodeType":"FunctionDefinition","parameters":{"id":5154,"nodeType":"ParameterList","parameters":[],"src":"8770:2:22"},"returnParameters":{"id":5158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5157,"mutability":"mutable","name":"$","nameLocation":"8824:1:22","nodeType":"VariableDeclaration","scope":5161,"src":"8795:30:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":5156,"nodeType":"UserDefinedTypeName","pathNode":{"id":5155,"name":"InitializableStorage","nameLocations":["8795:20:22"],"nodeType":"IdentifierPath","referencedDeclaration":4919,"src":"8795:20:22"},"referencedDeclaration":4919,"src":"8795:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$4919_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"src":"8794:32:22"},"scope":5162,"src":"8737:170:22","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":5163,"src":"2349:6560:22","usedErrors":[4925,4928],"usedEvents":[4933]}],"src":"113:8797:22"},"id":22},"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","exportedSymbols":{"ERC1967Utils":[10426],"IERC1822Proxiable":[9814],"Initializable":[5162],"UUPSUpgradeable":[5344]},"id":5345,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5164,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"115:24:23"},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","id":5166,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5345,"sourceUnit":9815,"src":"141:88:23","symbolAliases":[{"foreign":{"id":5165,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9814,"src":"149:17:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","id":5168,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5345,"sourceUnit":10427,"src":"230:84:23","symbolAliases":[{"foreign":{"id":5167,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"238:12:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"./Initializable.sol","id":5170,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5345,"sourceUnit":5163,"src":"315:50:23","symbolAliases":[{"foreign":{"id":5169,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5162,"src":"323:13:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5172,"name":"Initializable","nameLocations":["1023:13:23"],"nodeType":"IdentifierPath","referencedDeclaration":5162,"src":"1023:13:23"},"id":5173,"nodeType":"InheritanceSpecifier","src":"1023:13:23"},{"baseName":{"id":5174,"name":"IERC1822Proxiable","nameLocations":["1038:17:23"],"nodeType":"IdentifierPath","referencedDeclaration":9814,"src":"1038:17:23"},"id":5175,"nodeType":"InheritanceSpecifier","src":"1038:17:23"}],"canonicalName":"UUPSUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5171,"nodeType":"StructuredDocumentation","src":"367:618:23","text":" @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n `UUPSUpgradeable` with a custom implementation of upgrades.\n The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism."},"fullyImplemented":false,"id":5344,"linearizedBaseContracts":[5344,9814,5162],"name":"UUPSUpgradeable","nameLocation":"1004:15:23","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":5176,"nodeType":"StructuredDocumentation","src":"1062:61:23","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":5182,"mutability":"immutable","name":"__self","nameLocation":"1154:6:23","nodeType":"VariableDeclaration","scope":5344,"src":"1128:48:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5177,"name":"address","nodeType":"ElementaryTypeName","src":"1128:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"arguments":[{"id":5180,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1171:4:23","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$5344","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$5344","typeString":"contract UUPSUpgradeable"}],"id":5179,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1163:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5178,"name":"address","nodeType":"ElementaryTypeName","src":"1163:7:23","typeDescriptions":{}}},"id":5181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1163:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":true,"documentation":{"id":5183,"nodeType":"StructuredDocumentation","src":"1183:631:23","text":" @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n during an upgrade."},"functionSelector":"ad3cb1cc","id":5186,"mutability":"constant","name":"UPGRADE_INTERFACE_VERSION","nameLocation":"1842:25:23","nodeType":"VariableDeclaration","scope":5344,"src":"1819:58:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5184,"name":"string","nodeType":"ElementaryTypeName","src":"1819:6:23","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"value":{"hexValue":"352e302e30","id":5185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1870:7:23","typeDescriptions":{"typeIdentifier":"t_stringliteral_2ade050ecfcf8ae20ae1d10a23573f9d7e0bad85e74a2cf8338a65401e64558c","typeString":"literal_string \"5.0.0\""},"value":"5.0.0"},"visibility":"public"},{"documentation":{"id":5187,"nodeType":"StructuredDocumentation","src":"1884:65:23","text":" @dev The call is from an unauthorized context."},"errorSelector":"e07c8dba","id":5189,"name":"UUPSUnauthorizedCallContext","nameLocation":"1960:27:23","nodeType":"ErrorDefinition","parameters":{"id":5188,"nodeType":"ParameterList","parameters":[],"src":"1987:2:23"},"src":"1954:36:23"},{"documentation":{"id":5190,"nodeType":"StructuredDocumentation","src":"1996:68:23","text":" @dev The storage `slot` is unsupported as a UUID."},"errorSelector":"aa1d49a4","id":5194,"name":"UUPSUnsupportedProxiableUUID","nameLocation":"2075:28:23","nodeType":"ErrorDefinition","parameters":{"id":5193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5192,"mutability":"mutable","name":"slot","nameLocation":"2112:4:23","nodeType":"VariableDeclaration","scope":5194,"src":"2104:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2104:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2103:14:23"},"src":"2069:49:23"},{"body":{"id":5201,"nodeType":"Block","src":"2645:41:23","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":5197,"name":"_checkProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5276,"src":"2655:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":5198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2655:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5199,"nodeType":"ExpressionStatement","src":"2655:13:23"},{"id":5200,"nodeType":"PlaceholderStatement","src":"2678:1:23"}]},"documentation":{"id":5195,"nodeType":"StructuredDocumentation","src":"2124:495:23","text":" @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n fail."},"id":5202,"name":"onlyProxy","nameLocation":"2633:9:23","nodeType":"ModifierDefinition","parameters":{"id":5196,"nodeType":"ParameterList","parameters":[],"src":"2642:2:23"},"src":"2624:62:23","virtual":false,"visibility":"internal"},{"body":{"id":5209,"nodeType":"Block","src":"2916:48:23","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":5205,"name":"_checkNotDelegated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5292,"src":"2926:18:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":5206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2926:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5207,"nodeType":"ExpressionStatement","src":"2926:20:23"},{"id":5208,"nodeType":"PlaceholderStatement","src":"2956:1:23"}]},"documentation":{"id":5203,"nodeType":"StructuredDocumentation","src":"2692:195:23","text":" @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n callable on the implementing contract but not through proxies."},"id":5210,"name":"notDelegated","nameLocation":"2901:12:23","nodeType":"ModifierDefinition","parameters":{"id":5204,"nodeType":"ParameterList","parameters":[],"src":"2913:2:23"},"src":"2892:72:23","virtual":false,"visibility":"internal"},{"body":{"id":5215,"nodeType":"Block","src":"3030:7:23","statements":[]},"id":5216,"implemented":true,"kind":"function","modifiers":[{"id":5213,"kind":"modifierInvocation","modifierName":{"id":5212,"name":"onlyInitializing","nameLocations":["3013:16:23"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"3013:16:23"},"nodeType":"ModifierInvocation","src":"3013:16:23"}],"name":"__UUPSUpgradeable_init","nameLocation":"2979:22:23","nodeType":"FunctionDefinition","parameters":{"id":5211,"nodeType":"ParameterList","parameters":[],"src":"3001:2:23"},"returnParameters":{"id":5214,"nodeType":"ParameterList","parameters":[],"src":"3030:0:23"},"scope":5344,"src":"2970:67:23","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5221,"nodeType":"Block","src":"3113:7:23","statements":[]},"id":5222,"implemented":true,"kind":"function","modifiers":[{"id":5219,"kind":"modifierInvocation","modifierName":{"id":5218,"name":"onlyInitializing","nameLocations":["3096:16:23"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"3096:16:23"},"nodeType":"ModifierInvocation","src":"3096:16:23"}],"name":"__UUPSUpgradeable_init_unchained","nameLocation":"3052:32:23","nodeType":"FunctionDefinition","parameters":{"id":5217,"nodeType":"ParameterList","parameters":[],"src":"3084:2:23"},"returnParameters":{"id":5220,"nodeType":"ParameterList","parameters":[],"src":"3113:0:23"},"scope":5344,"src":"3043:77:23","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[9813],"body":{"id":5233,"nodeType":"Block","src":"3786:56:23","statements":[{"expression":{"expression":{"id":5230,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"3803:12:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":5231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3816:19:23","memberName":"IMPLEMENTATION_SLOT","nodeType":"MemberAccess","referencedDeclaration":10147,"src":"3803:32:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":5229,"id":5232,"nodeType":"Return","src":"3796:39:23"}]},"documentation":{"id":5223,"nodeType":"StructuredDocumentation","src":"3125:578:23","text":" @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier."},"functionSelector":"52d1902d","id":5234,"implemented":true,"kind":"function","modifiers":[{"id":5226,"kind":"modifierInvocation","modifierName":{"id":5225,"name":"notDelegated","nameLocations":["3755:12:23"],"nodeType":"IdentifierPath","referencedDeclaration":5210,"src":"3755:12:23"},"nodeType":"ModifierInvocation","src":"3755:12:23"}],"name":"proxiableUUID","nameLocation":"3717:13:23","nodeType":"FunctionDefinition","parameters":{"id":5224,"nodeType":"ParameterList","parameters":[],"src":"3730:2:23"},"returnParameters":{"id":5229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5234,"src":"3777:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5227,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3777:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3776:9:23"},"scope":5344,"src":"3708:134:23","stateMutability":"view","virtual":true,"visibility":"external"},{"body":{"id":5253,"nodeType":"Block","src":"4266:109:23","statements":[{"expression":{"arguments":[{"id":5245,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5237,"src":"4294:17:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5244,"name":"_authorizeUpgrade","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5298,"src":"4276:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":5246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4276:36:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5247,"nodeType":"ExpressionStatement","src":"4276:36:23"},{"expression":{"arguments":[{"id":5249,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5237,"src":"4344:17:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5250,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5239,"src":"4363:4:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5248,"name":"_upgradeToAndCallUUPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5343,"src":"4322:21:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":5251,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4322:46:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5252,"nodeType":"ExpressionStatement","src":"4322:46:23"}]},"documentation":{"id":5235,"nodeType":"StructuredDocumentation","src":"3848:308:23","text":" @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n encoded in `data`.\n Calls {_authorizeUpgrade}.\n Emits an {Upgraded} event.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"4f1ef286","id":5254,"implemented":true,"kind":"function","modifiers":[{"id":5242,"kind":"modifierInvocation","modifierName":{"id":5241,"name":"onlyProxy","nameLocations":["4256:9:23"],"nodeType":"IdentifierPath","referencedDeclaration":5202,"src":"4256:9:23"},"nodeType":"ModifierInvocation","src":"4256:9:23"}],"name":"upgradeToAndCall","nameLocation":"4170:16:23","nodeType":"FunctionDefinition","parameters":{"id":5240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5237,"mutability":"mutable","name":"newImplementation","nameLocation":"4195:17:23","nodeType":"VariableDeclaration","scope":5254,"src":"4187:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5236,"name":"address","nodeType":"ElementaryTypeName","src":"4187:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5239,"mutability":"mutable","name":"data","nameLocation":"4227:4:23","nodeType":"VariableDeclaration","scope":5254,"src":"4214:17:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5238,"name":"bytes","nodeType":"ElementaryTypeName","src":"4214:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4186:46:23"},"returnParameters":{"id":5243,"nodeType":"ParameterList","parameters":[],"src":"4266:0:23"},"scope":5344,"src":"4161:214:23","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":5275,"nodeType":"Block","src":"4648:267:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5260,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4683:4:23","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$5344","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$5344","typeString":"contract UUPSUpgradeable"}],"id":5259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4675:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5258,"name":"address","nodeType":"ElementaryTypeName","src":"4675:7:23","typeDescriptions":{}}},"id":5261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4675:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":5262,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5182,"src":"4692:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4675:23:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5264,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"4753:12:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":5265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4766:17:23","memberName":"getImplementation","nodeType":"MemberAccess","referencedDeclaration":10178,"src":"4753:30:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4753:32:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5267,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5182,"src":"4789:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4753:42:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4675:120:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5274,"nodeType":"IfStatement","src":"4658:251:23","trueBody":{"id":5273,"nodeType":"Block","src":"4848:61:23","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":5270,"name":"UUPSUnauthorizedCallContext","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5189,"src":"4869:27:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":5271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4869:29:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5272,"nodeType":"RevertStatement","src":"4862:36:23"}]}}]},"documentation":{"id":5255,"nodeType":"StructuredDocumentation","src":"4381:217:23","text":" @dev Reverts if the execution is not performed via delegatecall or the execution\n context is not of a proxy with an ERC-1967 compliant implementation pointing to self.\n See {_onlyProxy}."},"id":5276,"implemented":true,"kind":"function","modifiers":[],"name":"_checkProxy","nameLocation":"4612:11:23","nodeType":"FunctionDefinition","parameters":{"id":5256,"nodeType":"ParameterList","parameters":[],"src":"4623:2:23"},"returnParameters":{"id":5257,"nodeType":"ParameterList","parameters":[],"src":"4648:0:23"},"scope":5344,"src":"4603:312:23","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":5291,"nodeType":"Block","src":"5084:161:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5282,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5106:4:23","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$5344","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$5344","typeString":"contract UUPSUpgradeable"}],"id":5281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5098:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5280,"name":"address","nodeType":"ElementaryTypeName","src":"5098:7:23","typeDescriptions":{}}},"id":5283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5098:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":5284,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5182,"src":"5115:6:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5098:23:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5290,"nodeType":"IfStatement","src":"5094:145:23","trueBody":{"id":5289,"nodeType":"Block","src":"5123:116:23","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":5286,"name":"UUPSUnauthorizedCallContext","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5189,"src":"5199:27:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":5287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5199:29:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5288,"nodeType":"RevertStatement","src":"5192:36:23"}]}}]},"documentation":{"id":5277,"nodeType":"StructuredDocumentation","src":"4921:106:23","text":" @dev Reverts if the execution is performed via delegatecall.\n See {notDelegated}."},"id":5292,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotDelegated","nameLocation":"5041:18:23","nodeType":"FunctionDefinition","parameters":{"id":5278,"nodeType":"ParameterList","parameters":[],"src":"5059:2:23"},"returnParameters":{"id":5279,"nodeType":"ParameterList","parameters":[],"src":"5084:0:23"},"scope":5344,"src":"5032:213:23","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":5293,"nodeType":"StructuredDocumentation","src":"5251:372:23","text":" @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n {upgradeToAndCall}.\n Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n ```solidity\n function _authorizeUpgrade(address) internal onlyOwner {}\n ```"},"id":5298,"implemented":false,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"5637:17:23","nodeType":"FunctionDefinition","parameters":{"id":5296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5295,"mutability":"mutable","name":"newImplementation","nameLocation":"5663:17:23","nodeType":"VariableDeclaration","scope":5298,"src":"5655:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5294,"name":"address","nodeType":"ElementaryTypeName","src":"5655:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5654:27:23"},"returnParameters":{"id":5297,"nodeType":"ParameterList","parameters":[],"src":"5698:0:23"},"scope":5344,"src":"5628:71:23","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5342,"nodeType":"Block","src":"6142:453:23","statements":[{"clauses":[{"block":{"id":5331,"nodeType":"Block","src":"6232:212:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":5317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5314,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5312,"src":"6250:4:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":5315,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"6258:12:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":5316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6271:19:23","memberName":"IMPLEMENTATION_SLOT","nodeType":"MemberAccess","referencedDeclaration":10147,"src":"6258:32:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"6250:40:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5323,"nodeType":"IfStatement","src":"6246:120:23","trueBody":{"id":5322,"nodeType":"Block","src":"6292:74:23","statements":[{"errorCall":{"arguments":[{"id":5319,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5312,"src":"6346:4:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":5318,"name":"UUPSUnsupportedProxiableUUID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5194,"src":"6317:28:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":5320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6317:34:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5321,"nodeType":"RevertStatement","src":"6310:41:23"}]}},{"expression":{"arguments":[{"id":5327,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5301,"src":"6409:17:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5328,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5303,"src":"6428:4:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":5324,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"6379:12:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":5326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6392:16:23","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":10241,"src":"6379:29:23","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":5329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6379:54:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5330,"nodeType":"ExpressionStatement","src":"6379:54:23"}]},"errorName":"","id":5332,"nodeType":"TryCatchClause","parameters":{"id":5313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5312,"mutability":"mutable","name":"slot","nameLocation":"6226:4:23","nodeType":"VariableDeclaration","scope":5332,"src":"6218:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5311,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6218:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6217:14:23"},"src":"6209:235:23"},{"block":{"id":5339,"nodeType":"Block","src":"6451:138:23","statements":[{"errorCall":{"arguments":[{"id":5336,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5301,"src":"6560:17:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":5333,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"6518:12:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":5335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6531:28:23","memberName":"ERC1967InvalidImplementation","nodeType":"MemberAccess","referencedDeclaration":10152,"src":"6518:41:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6518:60:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5338,"nodeType":"RevertStatement","src":"6511:67:23"}]},"errorName":"","id":5340,"nodeType":"TryCatchClause","src":"6445:144:23"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":5307,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5301,"src":"6174:17:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5306,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9814,"src":"6156:17:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1822Proxiable_$9814_$","typeString":"type(contract IERC1822Proxiable)"}},"id":5308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6156:36:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1822Proxiable_$9814","typeString":"contract IERC1822Proxiable"}},"id":5309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6193:13:23","memberName":"proxiableUUID","nodeType":"MemberAccess","referencedDeclaration":9813,"src":"6156:50:23","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes32_$","typeString":"function () view external returns (bytes32)"}},"id":5310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6156:52:23","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":5341,"nodeType":"TryStatement","src":"6152:437:23"}]},"documentation":{"id":5299,"nodeType":"StructuredDocumentation","src":"5705:347:23","text":" @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n is expected to be the implementation slot in ERC-1967.\n Emits an {IERC1967-Upgraded} event."},"id":5343,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCallUUPS","nameLocation":"6066:21:23","nodeType":"FunctionDefinition","parameters":{"id":5304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5301,"mutability":"mutable","name":"newImplementation","nameLocation":"6096:17:23","nodeType":"VariableDeclaration","scope":5343,"src":"6088:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5300,"name":"address","nodeType":"ElementaryTypeName","src":"6088:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5303,"mutability":"mutable","name":"data","nameLocation":"6128:4:23","nodeType":"VariableDeclaration","scope":5343,"src":"6115:17:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5302,"name":"bytes","nodeType":"ElementaryTypeName","src":"6115:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6087:46:23"},"returnParameters":{"id":5305,"nodeType":"ParameterList","parameters":[],"src":"6142:0:23"},"scope":5344,"src":"6057:538:23","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":5345,"src":"986:5611:23","usedErrors":[4925,4928,5189,5194,10152,10165,12330,12623],"usedEvents":[4933,9605]}],"src":"115:6483:23"},"id":23},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","exportedSymbols":{"ContextUpgradeable":[6771],"ERC20Upgradeable":[5961],"IERC20":[11065],"IERC20Errors":[9856],"IERC20Metadata":[11776],"Initializable":[5162]},"id":5962,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5346,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:24"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":5348,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5962,"sourceUnit":11066,"src":"131:70:24","symbolAliases":[{"foreign":{"id":5347,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"139:6:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":5350,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5962,"sourceUnit":11777,"src":"202:97:24","symbolAliases":[{"foreign":{"id":5349,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"210:14:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../../utils/ContextUpgradeable.sol","id":5352,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5962,"sourceUnit":6772,"src":"300:70:24","symbolAliases":[{"foreign":{"id":5351,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"308:18:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":5354,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5962,"sourceUnit":9952,"src":"371:83:24","symbolAliases":[{"foreign":{"id":5353,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9856,"src":"379:12:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../../proxy/utils/Initializable.sol","id":5356,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5962,"sourceUnit":5163,"src":"455:66:24","symbolAliases":[{"foreign":{"id":5355,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5162,"src":"463:13:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5358,"name":"Initializable","nameLocations":["1319:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":5162,"src":"1319:13:24"},"id":5359,"nodeType":"InheritanceSpecifier","src":"1319:13:24"},{"baseName":{"id":5360,"name":"ContextUpgradeable","nameLocations":["1334:18:24"],"nodeType":"IdentifierPath","referencedDeclaration":6771,"src":"1334:18:24"},"id":5361,"nodeType":"InheritanceSpecifier","src":"1334:18:24"},{"baseName":{"id":5362,"name":"IERC20","nameLocations":["1354:6:24"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"1354:6:24"},"id":5363,"nodeType":"InheritanceSpecifier","src":"1354:6:24"},{"baseName":{"id":5364,"name":"IERC20Metadata","nameLocations":["1362:14:24"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"1362:14:24"},"id":5365,"nodeType":"InheritanceSpecifier","src":"1362:14:24"},{"baseName":{"id":5366,"name":"IERC20Errors","nameLocations":["1378:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":9856,"src":"1378:12:24"},"id":5367,"nodeType":"InheritanceSpecifier","src":"1378:12:24"}],"canonicalName":"ERC20Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5357,"nodeType":"StructuredDocumentation","src":"523:757:24","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC-20\n applications."},"fullyImplemented":true,"id":5961,"linearizedBaseContracts":[5961,9856,11776,11065,6771,5162],"name":"ERC20Upgradeable","nameLocation":"1299:16:24","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ERC20Upgradeable.ERC20Storage","documentation":{"id":5368,"nodeType":"StructuredDocumentation","src":"1397:63:24","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC20"},"id":5385,"members":[{"constant":false,"id":5372,"mutability":"mutable","name":"_balances","nameLocation":"1531:9:24","nodeType":"VariableDeclaration","scope":5385,"src":"1495:45:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":5371,"keyName":"account","keyNameLocation":"1511:7:24","keyType":{"id":5369,"name":"address","nodeType":"ElementaryTypeName","src":"1503:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1495:35:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5370,"name":"uint256","nodeType":"ElementaryTypeName","src":"1522:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":5378,"mutability":"mutable","name":"_allowances","nameLocation":"1615:11:24","nodeType":"VariableDeclaration","scope":5385,"src":"1551:75:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":5377,"keyName":"account","keyNameLocation":"1567:7:24","keyType":{"id":5373,"name":"address","nodeType":"ElementaryTypeName","src":"1559:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1551:63:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5376,"keyName":"spender","keyNameLocation":"1594:7:24","keyType":{"id":5374,"name":"address","nodeType":"ElementaryTypeName","src":"1586:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1578:35:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5375,"name":"uint256","nodeType":"ElementaryTypeName","src":"1605:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"internal"},{"constant":false,"id":5380,"mutability":"mutable","name":"_totalSupply","nameLocation":"1645:12:24","nodeType":"VariableDeclaration","scope":5385,"src":"1637:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5379,"name":"uint256","nodeType":"ElementaryTypeName","src":"1637:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5382,"mutability":"mutable","name":"_name","nameLocation":"1675:5:24","nodeType":"VariableDeclaration","scope":5385,"src":"1668:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":5381,"name":"string","nodeType":"ElementaryTypeName","src":"1668:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5384,"mutability":"mutable","name":"_symbol","nameLocation":"1697:7:24","nodeType":"VariableDeclaration","scope":5385,"src":"1690:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":5383,"name":"string","nodeType":"ElementaryTypeName","src":"1690:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"ERC20Storage","nameLocation":"1472:12:24","nodeType":"StructDefinition","scope":5961,"src":"1465:246:24","visibility":"public"},{"constant":true,"id":5388,"mutability":"constant","name":"ERC20StorageLocation","nameLocation":"1851:20:24","nodeType":"VariableDeclaration","scope":5961,"src":"1826:114:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5386,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1826:7:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835326336333234376531663437646231396435636530343630303330633439376630363763613463656266373162613938656561646162653230626163653030","id":5387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1874:66:24","typeDescriptions":{"typeIdentifier":"t_rational_37439836327923360225337895871394760624280537466773280374265222508165906222592_by_1","typeString":"int_const 3743...(69 digits omitted)...2592"},"value":"0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00"},"visibility":"private"},{"body":{"id":5395,"nodeType":"Block","src":"2021:79:24","statements":[{"AST":{"nativeSrc":"2040:54:24","nodeType":"YulBlock","src":"2040:54:24","statements":[{"nativeSrc":"2054:30:24","nodeType":"YulAssignment","src":"2054:30:24","value":{"name":"ERC20StorageLocation","nativeSrc":"2064:20:24","nodeType":"YulIdentifier","src":"2064:20:24"},"variableNames":[{"name":"$.slot","nativeSrc":"2054:6:24","nodeType":"YulIdentifier","src":"2054:6:24"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":5392,"isOffset":false,"isSlot":true,"src":"2054:6:24","suffix":"slot","valueSize":1},{"declaration":5388,"isOffset":false,"isSlot":false,"src":"2064:20:24","valueSize":1}],"id":5394,"nodeType":"InlineAssembly","src":"2031:63:24"}]},"id":5396,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC20Storage","nameLocation":"1956:16:24","nodeType":"FunctionDefinition","parameters":{"id":5389,"nodeType":"ParameterList","parameters":[],"src":"1972:2:24"},"returnParameters":{"id":5393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5392,"mutability":"mutable","name":"$","nameLocation":"2018:1:24","nodeType":"VariableDeclaration","scope":5396,"src":"1997:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5391,"nodeType":"UserDefinedTypeName","pathNode":{"id":5390,"name":"ERC20Storage","nameLocations":["1997:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"1997:12:24"},"referencedDeclaration":5385,"src":"1997:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"src":"1996:24:24"},"scope":5961,"src":"1947:153:24","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5411,"nodeType":"Block","src":"2374:55:24","statements":[{"expression":{"arguments":[{"id":5407,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5399,"src":"2407:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":5408,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5401,"src":"2414:7:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":5406,"name":"__ERC20_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5440,"src":"2384:22:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":5409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2384:38:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5410,"nodeType":"ExpressionStatement","src":"2384:38:24"}]},"documentation":{"id":5397,"nodeType":"StructuredDocumentation","src":"2106:171:24","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":5412,"implemented":true,"kind":"function","modifiers":[{"id":5404,"kind":"modifierInvocation","modifierName":{"id":5403,"name":"onlyInitializing","nameLocations":["2357:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"2357:16:24"},"nodeType":"ModifierInvocation","src":"2357:16:24"}],"name":"__ERC20_init","nameLocation":"2291:12:24","nodeType":"FunctionDefinition","parameters":{"id":5402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5399,"mutability":"mutable","name":"name_","nameLocation":"2318:5:24","nodeType":"VariableDeclaration","scope":5412,"src":"2304:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5398,"name":"string","nodeType":"ElementaryTypeName","src":"2304:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5401,"mutability":"mutable","name":"symbol_","nameLocation":"2339:7:24","nodeType":"VariableDeclaration","scope":5412,"src":"2325:21:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5400,"name":"string","nodeType":"ElementaryTypeName","src":"2325:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2303:44:24"},"returnParameters":{"id":5405,"nodeType":"ParameterList","parameters":[],"src":"2374:0:24"},"scope":5961,"src":"2282:147:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5439,"nodeType":"Block","src":"2537:114:24","statements":[{"assignments":[5423],"declarations":[{"constant":false,"id":5423,"mutability":"mutable","name":"$","nameLocation":"2568:1:24","nodeType":"VariableDeclaration","scope":5439,"src":"2547:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5422,"nodeType":"UserDefinedTypeName","pathNode":{"id":5421,"name":"ERC20Storage","nameLocations":["2547:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"2547:12:24"},"referencedDeclaration":5385,"src":"2547:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5426,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5424,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"2572:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2572:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2547:43:24"},{"expression":{"id":5431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5427,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5423,"src":"2600:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2602:5:24","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":5382,"src":"2600:7:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5430,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"2610:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2600:15:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5432,"nodeType":"ExpressionStatement","src":"2600:15:24"},{"expression":{"id":5437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5433,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5423,"src":"2625:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5435,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2627:7:24","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":5384,"src":"2625:9:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5436,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5416,"src":"2637:7:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2625:19:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":5438,"nodeType":"ExpressionStatement","src":"2625:19:24"}]},"id":5440,"implemented":true,"kind":"function","modifiers":[{"id":5419,"kind":"modifierInvocation","modifierName":{"id":5418,"name":"onlyInitializing","nameLocations":["2520:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"2520:16:24"},"nodeType":"ModifierInvocation","src":"2520:16:24"}],"name":"__ERC20_init_unchained","nameLocation":"2444:22:24","nodeType":"FunctionDefinition","parameters":{"id":5417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5414,"mutability":"mutable","name":"name_","nameLocation":"2481:5:24","nodeType":"VariableDeclaration","scope":5440,"src":"2467:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5413,"name":"string","nodeType":"ElementaryTypeName","src":"2467:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5416,"mutability":"mutable","name":"symbol_","nameLocation":"2502:7:24","nodeType":"VariableDeclaration","scope":5440,"src":"2488:21:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5415,"name":"string","nodeType":"ElementaryTypeName","src":"2488:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2466:44:24"},"returnParameters":{"id":5420,"nodeType":"ParameterList","parameters":[],"src":"2537:0:24"},"scope":5961,"src":"2435:216:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[11763],"body":{"id":5455,"nodeType":"Block","src":"2776:84:24","statements":[{"assignments":[5448],"declarations":[{"constant":false,"id":5448,"mutability":"mutable","name":"$","nameLocation":"2807:1:24","nodeType":"VariableDeclaration","scope":5455,"src":"2786:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5447,"nodeType":"UserDefinedTypeName","pathNode":{"id":5446,"name":"ERC20Storage","nameLocations":["2786:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"2786:12:24"},"referencedDeclaration":5385,"src":"2786:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5451,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5449,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"2811:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2811:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2786:43:24"},{"expression":{"expression":{"id":5452,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5448,"src":"2846:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2848:5:24","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":5382,"src":"2846:7:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5445,"id":5454,"nodeType":"Return","src":"2839:14:24"}]},"documentation":{"id":5441,"nodeType":"StructuredDocumentation","src":"2657:54:24","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":5456,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2725:4:24","nodeType":"FunctionDefinition","parameters":{"id":5442,"nodeType":"ParameterList","parameters":[],"src":"2729:2:24"},"returnParameters":{"id":5445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5444,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5456,"src":"2761:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5443,"name":"string","nodeType":"ElementaryTypeName","src":"2761:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2760:15:24"},"scope":5961,"src":"2716:144:24","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11769],"body":{"id":5471,"nodeType":"Block","src":"3035:86:24","statements":[{"assignments":[5464],"declarations":[{"constant":false,"id":5464,"mutability":"mutable","name":"$","nameLocation":"3066:1:24","nodeType":"VariableDeclaration","scope":5471,"src":"3045:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5463,"nodeType":"UserDefinedTypeName","pathNode":{"id":5462,"name":"ERC20Storage","nameLocations":["3045:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"3045:12:24"},"referencedDeclaration":5385,"src":"3045:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5467,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5465,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"3070:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3070:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3045:43:24"},{"expression":{"expression":{"id":5468,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"3105:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5469,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3107:7:24","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":5384,"src":"3105:9:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":5461,"id":5470,"nodeType":"Return","src":"3098:16:24"}]},"documentation":{"id":5457,"nodeType":"StructuredDocumentation","src":"2866:102:24","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":5472,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2982:6:24","nodeType":"FunctionDefinition","parameters":{"id":5458,"nodeType":"ParameterList","parameters":[],"src":"2988:2:24"},"returnParameters":{"id":5461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5460,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5472,"src":"3020:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5459,"name":"string","nodeType":"ElementaryTypeName","src":"3020:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3019:15:24"},"scope":5961,"src":"2973:148:24","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11775],"body":{"id":5480,"nodeType":"Block","src":"3810:26:24","statements":[{"expression":{"hexValue":"3138","id":5478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3827:2:24","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":5477,"id":5479,"nodeType":"Return","src":"3820:9:24"}]},"documentation":{"id":5473,"nodeType":"StructuredDocumentation","src":"3127:622:24","text":" @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."},"functionSelector":"313ce567","id":5481,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3763:8:24","nodeType":"FunctionDefinition","parameters":{"id":5474,"nodeType":"ParameterList","parameters":[],"src":"3771:2:24"},"returnParameters":{"id":5477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5476,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5481,"src":"3803:5:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5475,"name":"uint8","nodeType":"ElementaryTypeName","src":"3803:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3802:7:24"},"scope":5961,"src":"3754:82:24","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11014],"body":{"id":5496,"nodeType":"Block","src":"3957:91:24","statements":[{"assignments":[5489],"declarations":[{"constant":false,"id":5489,"mutability":"mutable","name":"$","nameLocation":"3988:1:24","nodeType":"VariableDeclaration","scope":5496,"src":"3967:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5488,"nodeType":"UserDefinedTypeName","pathNode":{"id":5487,"name":"ERC20Storage","nameLocations":["3967:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"3967:12:24"},"referencedDeclaration":5385,"src":"3967:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5492,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5490,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"3992:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3992:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3967:43:24"},{"expression":{"expression":{"id":5493,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5489,"src":"4027:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5494,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4029:12:24","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":5380,"src":"4027:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5486,"id":5495,"nodeType":"Return","src":"4020:21:24"}]},"documentation":{"id":5482,"nodeType":"StructuredDocumentation","src":"3842:49:24","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":5497,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"3905:11:24","nodeType":"FunctionDefinition","parameters":{"id":5483,"nodeType":"ParameterList","parameters":[],"src":"3916:2:24"},"returnParameters":{"id":5486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5485,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5497,"src":"3948:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5484,"name":"uint256","nodeType":"ElementaryTypeName","src":"3948:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3947:9:24"},"scope":5961,"src":"3896:152:24","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11022],"body":{"id":5516,"nodeType":"Block","src":"4180:97:24","statements":[{"assignments":[5507],"declarations":[{"constant":false,"id":5507,"mutability":"mutable","name":"$","nameLocation":"4211:1:24","nodeType":"VariableDeclaration","scope":5516,"src":"4190:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5506,"nodeType":"UserDefinedTypeName","pathNode":{"id":5505,"name":"ERC20Storage","nameLocations":["4190:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"4190:12:24"},"referencedDeclaration":5385,"src":"4190:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5510,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5508,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"4215:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4215:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4190:43:24"},{"expression":{"baseExpression":{"expression":{"id":5511,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5507,"src":"4250:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5512,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4252:9:24","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":5372,"src":"4250:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5514,"indexExpression":{"id":5513,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5500,"src":"4262:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4250:20:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5504,"id":5515,"nodeType":"Return","src":"4243:27:24"}]},"documentation":{"id":5498,"nodeType":"StructuredDocumentation","src":"4054:47:24","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":5517,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"4115:9:24","nodeType":"FunctionDefinition","parameters":{"id":5501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5500,"mutability":"mutable","name":"account","nameLocation":"4133:7:24","nodeType":"VariableDeclaration","scope":5517,"src":"4125:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5499,"name":"address","nodeType":"ElementaryTypeName","src":"4125:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4124:17:24"},"returnParameters":{"id":5504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5503,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5517,"src":"4171:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5502,"name":"uint256","nodeType":"ElementaryTypeName","src":"4171:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4170:9:24"},"scope":5961,"src":"4106:171:24","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11032],"body":{"id":5540,"nodeType":"Block","src":"4547:103:24","statements":[{"assignments":[5528],"declarations":[{"constant":false,"id":5528,"mutability":"mutable","name":"owner","nameLocation":"4565:5:24","nodeType":"VariableDeclaration","scope":5540,"src":"4557:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5527,"name":"address","nodeType":"ElementaryTypeName","src":"4557:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5531,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5529,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"4573:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4573:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4557:28:24"},{"expression":{"arguments":[{"id":5533,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5528,"src":"4605:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5534,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5520,"src":"4612:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5535,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5522,"src":"4616:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5532,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5668,"src":"4595:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:27:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5537,"nodeType":"ExpressionStatement","src":"4595:27:24"},{"expression":{"hexValue":"74727565","id":5538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4639:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5526,"id":5539,"nodeType":"Return","src":"4632:11:24"}]},"documentation":{"id":5518,"nodeType":"StructuredDocumentation","src":"4283:184:24","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":5541,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"4481:8:24","nodeType":"FunctionDefinition","parameters":{"id":5523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5520,"mutability":"mutable","name":"to","nameLocation":"4498:2:24","nodeType":"VariableDeclaration","scope":5541,"src":"4490:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5519,"name":"address","nodeType":"ElementaryTypeName","src":"4490:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5522,"mutability":"mutable","name":"value","nameLocation":"4510:5:24","nodeType":"VariableDeclaration","scope":5541,"src":"4502:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5521,"name":"uint256","nodeType":"ElementaryTypeName","src":"4502:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4489:27:24"},"returnParameters":{"id":5526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5525,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5541,"src":"4541:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5524,"name":"bool","nodeType":"ElementaryTypeName","src":"4541:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4540:6:24"},"scope":5961,"src":"4472:178:24","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[11042],"body":{"id":5564,"nodeType":"Block","src":"4797:106:24","statements":[{"assignments":[5553],"declarations":[{"constant":false,"id":5553,"mutability":"mutable","name":"$","nameLocation":"4828:1:24","nodeType":"VariableDeclaration","scope":5564,"src":"4807:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5552,"nodeType":"UserDefinedTypeName","pathNode":{"id":5551,"name":"ERC20Storage","nameLocations":["4807:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"4807:12:24"},"referencedDeclaration":5385,"src":"4807:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5556,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5554,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"4832:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4832:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4807:43:24"},{"expression":{"baseExpression":{"baseExpression":{"expression":{"id":5557,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5553,"src":"4867:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5558,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4869:11:24","memberName":"_allowances","nodeType":"MemberAccess","referencedDeclaration":5378,"src":"4867:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":5560,"indexExpression":{"id":5559,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5544,"src":"4881:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4867:20:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5562,"indexExpression":{"id":5561,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5546,"src":"4888:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4867:29:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5550,"id":5563,"nodeType":"Return","src":"4860:36:24"}]},"documentation":{"id":5542,"nodeType":"StructuredDocumentation","src":"4656:47:24","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":5565,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"4717:9:24","nodeType":"FunctionDefinition","parameters":{"id":5547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5544,"mutability":"mutable","name":"owner","nameLocation":"4735:5:24","nodeType":"VariableDeclaration","scope":5565,"src":"4727:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5543,"name":"address","nodeType":"ElementaryTypeName","src":"4727:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5546,"mutability":"mutable","name":"spender","nameLocation":"4750:7:24","nodeType":"VariableDeclaration","scope":5565,"src":"4742:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5545,"name":"address","nodeType":"ElementaryTypeName","src":"4742:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4726:32:24"},"returnParameters":{"id":5550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5549,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5565,"src":"4788:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5548,"name":"uint256","nodeType":"ElementaryTypeName","src":"4788:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4787:9:24"},"scope":5961,"src":"4708:195:24","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11052],"body":{"id":5588,"nodeType":"Block","src":"5289:107:24","statements":[{"assignments":[5576],"declarations":[{"constant":false,"id":5576,"mutability":"mutable","name":"owner","nameLocation":"5307:5:24","nodeType":"VariableDeclaration","scope":5588,"src":"5299:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5575,"name":"address","nodeType":"ElementaryTypeName","src":"5299:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5579,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5577,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"5315:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5315:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5299:28:24"},{"expression":{"arguments":[{"id":5581,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5576,"src":"5346:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5582,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5568,"src":"5353:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5583,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5570,"src":"5362:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5580,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[5844,5912],"referencedDeclaration":5844,"src":"5337:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5337:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5585,"nodeType":"ExpressionStatement","src":"5337:31:24"},{"expression":{"hexValue":"74727565","id":5586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5385:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5574,"id":5587,"nodeType":"Return","src":"5378:11:24"}]},"documentation":{"id":5566,"nodeType":"StructuredDocumentation","src":"4909:296:24","text":" @dev See {IERC20-approve}.\n NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":5589,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"5219:7:24","nodeType":"FunctionDefinition","parameters":{"id":5571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5568,"mutability":"mutable","name":"spender","nameLocation":"5235:7:24","nodeType":"VariableDeclaration","scope":5589,"src":"5227:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5567,"name":"address","nodeType":"ElementaryTypeName","src":"5227:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5570,"mutability":"mutable","name":"value","nameLocation":"5252:5:24","nodeType":"VariableDeclaration","scope":5589,"src":"5244:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5569,"name":"uint256","nodeType":"ElementaryTypeName","src":"5244:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5226:32:24"},"returnParameters":{"id":5574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5573,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5589,"src":"5283:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5572,"name":"bool","nodeType":"ElementaryTypeName","src":"5283:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5282:6:24"},"scope":5961,"src":"5210:186:24","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[11064],"body":{"id":5620,"nodeType":"Block","src":"6081:151:24","statements":[{"assignments":[5602],"declarations":[{"constant":false,"id":5602,"mutability":"mutable","name":"spender","nameLocation":"6099:7:24","nodeType":"VariableDeclaration","scope":5620,"src":"6091:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5601,"name":"address","nodeType":"ElementaryTypeName","src":"6091:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5605,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5603,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"6109:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":5604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6109:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6091:30:24"},{"expression":{"arguments":[{"id":5607,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5592,"src":"6147:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5608,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5602,"src":"6153:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5609,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5596,"src":"6162:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5606,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5960,"src":"6131:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6131:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5611,"nodeType":"ExpressionStatement","src":"6131:37:24"},{"expression":{"arguments":[{"id":5613,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5592,"src":"6188:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5614,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5594,"src":"6194:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5615,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5596,"src":"6198:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5612,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5668,"src":"6178:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6178:26:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5617,"nodeType":"ExpressionStatement","src":"6178:26:24"},{"expression":{"hexValue":"74727565","id":5618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6221:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5600,"id":5619,"nodeType":"Return","src":"6214:11:24"}]},"documentation":{"id":5590,"nodeType":"StructuredDocumentation","src":"5402:581:24","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":5621,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5997:12:24","nodeType":"FunctionDefinition","parameters":{"id":5597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5592,"mutability":"mutable","name":"from","nameLocation":"6018:4:24","nodeType":"VariableDeclaration","scope":5621,"src":"6010:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5591,"name":"address","nodeType":"ElementaryTypeName","src":"6010:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5594,"mutability":"mutable","name":"to","nameLocation":"6032:2:24","nodeType":"VariableDeclaration","scope":5621,"src":"6024:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5593,"name":"address","nodeType":"ElementaryTypeName","src":"6024:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5596,"mutability":"mutable","name":"value","nameLocation":"6044:5:24","nodeType":"VariableDeclaration","scope":5621,"src":"6036:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5595,"name":"uint256","nodeType":"ElementaryTypeName","src":"6036:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6009:41:24"},"returnParameters":{"id":5600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5599,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5621,"src":"6075:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5598,"name":"bool","nodeType":"ElementaryTypeName","src":"6075:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6074:6:24"},"scope":5961,"src":"5988:244:24","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":5667,"nodeType":"Block","src":"6674:231:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5631,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5624,"src":"6688:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6704:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6696:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5632,"name":"address","nodeType":"ElementaryTypeName","src":"6696:7:24","typeDescriptions":{}}},"id":5635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6696:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6688:18:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5645,"nodeType":"IfStatement","src":"6684:86:24","trueBody":{"id":5644,"nodeType":"Block","src":"6708:62:24","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6756:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6748:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5638,"name":"address","nodeType":"ElementaryTypeName","src":"6748:7:24","typeDescriptions":{}}},"id":5641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6748:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5637,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9831,"src":"6729:18:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6729:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5643,"nodeType":"RevertStatement","src":"6722:37:24"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5646,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5626,"src":"6783:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6797:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5648,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6789:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5647,"name":"address","nodeType":"ElementaryTypeName","src":"6789:7:24","typeDescriptions":{}}},"id":5650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6789:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6783:16:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5660,"nodeType":"IfStatement","src":"6779:86:24","trueBody":{"id":5659,"nodeType":"Block","src":"6801:64:24","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6851:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5654,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6843:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5653,"name":"address","nodeType":"ElementaryTypeName","src":"6843:7:24","typeDescriptions":{}}},"id":5656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6843:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5652,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9836,"src":"6822:20:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6822:32:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5658,"nodeType":"RevertStatement","src":"6815:39:24"}]}},{"expression":{"arguments":[{"id":5662,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5624,"src":"6882:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5663,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5626,"src":"6888:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5664,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5628,"src":"6892:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5661,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5760,"src":"6874:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6874:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5666,"nodeType":"ExpressionStatement","src":"6874:24:24"}]},"documentation":{"id":5622,"nodeType":"StructuredDocumentation","src":"6238:362:24","text":" @dev Moves a `value` amount of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":5668,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"6614:9:24","nodeType":"FunctionDefinition","parameters":{"id":5629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5624,"mutability":"mutable","name":"from","nameLocation":"6632:4:24","nodeType":"VariableDeclaration","scope":5668,"src":"6624:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5623,"name":"address","nodeType":"ElementaryTypeName","src":"6624:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5626,"mutability":"mutable","name":"to","nameLocation":"6646:2:24","nodeType":"VariableDeclaration","scope":5668,"src":"6638:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5625,"name":"address","nodeType":"ElementaryTypeName","src":"6638:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5628,"mutability":"mutable","name":"value","nameLocation":"6658:5:24","nodeType":"VariableDeclaration","scope":5668,"src":"6650:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5627,"name":"uint256","nodeType":"ElementaryTypeName","src":"6650:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6623:41:24"},"returnParameters":{"id":5630,"nodeType":"ParameterList","parameters":[],"src":"6674:0:24"},"scope":5961,"src":"6605:300:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5759,"nodeType":"Block","src":"7295:1095:24","statements":[{"assignments":[5680],"declarations":[{"constant":false,"id":5680,"mutability":"mutable","name":"$","nameLocation":"7326:1:24","nodeType":"VariableDeclaration","scope":5759,"src":"7305:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5679,"nodeType":"UserDefinedTypeName","pathNode":{"id":5678,"name":"ERC20Storage","nameLocations":["7305:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"7305:12:24"},"referencedDeclaration":5385,"src":"7305:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5683,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5681,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"7330:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7330:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7305:43:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5684,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5671,"src":"7362:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7378:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5686,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7370:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5685,"name":"address","nodeType":"ElementaryTypeName","src":"7370:7:24","typeDescriptions":{}}},"id":5688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7370:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7362:18:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5726,"nodeType":"Block","src":"7538:366:24","statements":[{"assignments":[5698],"declarations":[{"constant":false,"id":5698,"mutability":"mutable","name":"fromBalance","nameLocation":"7560:11:24","nodeType":"VariableDeclaration","scope":5726,"src":"7552:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5697,"name":"uint256","nodeType":"ElementaryTypeName","src":"7552:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5703,"initialValue":{"baseExpression":{"expression":{"id":5699,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"7574:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5700,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7576:9:24","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":5372,"src":"7574:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5702,"indexExpression":{"id":5701,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5671,"src":"7586:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7574:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7552:39:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5704,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5698,"src":"7609:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5705,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"7623:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7609:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5714,"nodeType":"IfStatement","src":"7605:115:24","trueBody":{"id":5713,"nodeType":"Block","src":"7630:90:24","statements":[{"errorCall":{"arguments":[{"id":5708,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5671,"src":"7680:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5709,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5698,"src":"7686:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5710,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"7699:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5707,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9826,"src":"7655:24:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":5711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7655:50:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5712,"nodeType":"RevertStatement","src":"7648:57:24"}]}},{"id":5725,"nodeType":"UncheckedBlock","src":"7733:161:24","statements":[{"expression":{"id":5723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":5715,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"7840:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7842:9:24","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":5372,"src":"7840:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5719,"indexExpression":{"id":5717,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5671,"src":"7852:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7840:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5720,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5698,"src":"7860:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5721,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"7874:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7860:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7840:39:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5724,"nodeType":"ExpressionStatement","src":"7840:39:24"}]}]},"id":5727,"nodeType":"IfStatement","src":"7358:546:24","trueBody":{"id":5696,"nodeType":"Block","src":"7382:150:24","statements":[{"expression":{"id":5694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5690,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"7498:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5692,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7500:12:24","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":5380,"src":"7498:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5693,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"7516:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7498:23:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5695,"nodeType":"ExpressionStatement","src":"7498:23:24"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5728,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5673,"src":"7918:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7932:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5730,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7924:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5729,"name":"address","nodeType":"ElementaryTypeName","src":"7924:7:24","typeDescriptions":{}}},"id":5732,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7924:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7918:16:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5751,"nodeType":"Block","src":"8135:208:24","statements":[{"id":5750,"nodeType":"UncheckedBlock","src":"8149:184:24","statements":[{"expression":{"id":5748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":5742,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"8294:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5745,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8296:9:24","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":5372,"src":"8294:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5746,"indexExpression":{"id":5744,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5673,"src":"8306:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8294:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5747,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"8313:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8294:24:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5749,"nodeType":"ExpressionStatement","src":"8294:24:24"}]}]},"id":5752,"nodeType":"IfStatement","src":"7914:429:24","trueBody":{"id":5741,"nodeType":"Block","src":"7936:193:24","statements":[{"id":5740,"nodeType":"UncheckedBlock","src":"7950:169:24","statements":[{"expression":{"id":5738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5734,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"8081:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5736,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8083:12:24","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":5380,"src":"8081:14:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":5737,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"8099:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8081:23:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5739,"nodeType":"ExpressionStatement","src":"8081:23:24"}]}]}},{"eventCall":{"arguments":[{"id":5754,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5671,"src":"8367:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5755,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5673,"src":"8373:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5756,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5675,"src":"8377:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5753,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10999,"src":"8358:8:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8358:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5758,"nodeType":"EmitStatement","src":"8353:30:24"}]},"documentation":{"id":5669,"nodeType":"StructuredDocumentation","src":"6911:304:24","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":5760,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"7229:7:24","nodeType":"FunctionDefinition","parameters":{"id":5676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5671,"mutability":"mutable","name":"from","nameLocation":"7245:4:24","nodeType":"VariableDeclaration","scope":5760,"src":"7237:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5670,"name":"address","nodeType":"ElementaryTypeName","src":"7237:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5673,"mutability":"mutable","name":"to","nameLocation":"7259:2:24","nodeType":"VariableDeclaration","scope":5760,"src":"7251:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5672,"name":"address","nodeType":"ElementaryTypeName","src":"7251:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5675,"mutability":"mutable","name":"value","nameLocation":"7271:5:24","nodeType":"VariableDeclaration","scope":5760,"src":"7263:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5674,"name":"uint256","nodeType":"ElementaryTypeName","src":"7263:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7236:41:24"},"returnParameters":{"id":5677,"nodeType":"ParameterList","parameters":[],"src":"7295:0:24"},"scope":5961,"src":"7220:1170:24","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5792,"nodeType":"Block","src":"8789:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5768,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5763,"src":"8803:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8822:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5770,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8814:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5769,"name":"address","nodeType":"ElementaryTypeName","src":"8814:7:24","typeDescriptions":{}}},"id":5772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8814:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8803:21:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5782,"nodeType":"IfStatement","src":"8799:91:24","trueBody":{"id":5781,"nodeType":"Block","src":"8826:64:24","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5777,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8876:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8868:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5775,"name":"address","nodeType":"ElementaryTypeName","src":"8868:7:24","typeDescriptions":{}}},"id":5778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8868:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5774,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9836,"src":"8847:20:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8847:32:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5780,"nodeType":"RevertStatement","src":"8840:39:24"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":5786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8915:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8907:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5784,"name":"address","nodeType":"ElementaryTypeName","src":"8907:7:24","typeDescriptions":{}}},"id":5787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8907:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5788,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5763,"src":"8919:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5789,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5765,"src":"8928:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5783,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5760,"src":"8899:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8899:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5791,"nodeType":"ExpressionStatement","src":"8899:35:24"}]},"documentation":{"id":5761,"nodeType":"StructuredDocumentation","src":"8396:332:24","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":5793,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8742:5:24","nodeType":"FunctionDefinition","parameters":{"id":5766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5763,"mutability":"mutable","name":"account","nameLocation":"8756:7:24","nodeType":"VariableDeclaration","scope":5793,"src":"8748:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5762,"name":"address","nodeType":"ElementaryTypeName","src":"8748:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5765,"mutability":"mutable","name":"value","nameLocation":"8773:5:24","nodeType":"VariableDeclaration","scope":5793,"src":"8765:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5764,"name":"uint256","nodeType":"ElementaryTypeName","src":"8765:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8747:32:24"},"returnParameters":{"id":5767,"nodeType":"ParameterList","parameters":[],"src":"8789:0:24"},"scope":5961,"src":"8733:208:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5825,"nodeType":"Block","src":"9315:150:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5801,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5796,"src":"9329:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9348:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9340:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5802,"name":"address","nodeType":"ElementaryTypeName","src":"9340:7:24","typeDescriptions":{}}},"id":5805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9340:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9329:21:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5815,"nodeType":"IfStatement","src":"9325:89:24","trueBody":{"id":5814,"nodeType":"Block","src":"9352:62:24","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9400:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9392:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5808,"name":"address","nodeType":"ElementaryTypeName","src":"9392:7:24","typeDescriptions":{}}},"id":5811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5807,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9831,"src":"9373:18:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9373:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5813,"nodeType":"RevertStatement","src":"9366:37:24"}]}},{"expression":{"arguments":[{"id":5817,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5796,"src":"9431:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":5820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9448:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9440:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5818,"name":"address","nodeType":"ElementaryTypeName","src":"9440:7:24","typeDescriptions":{}}},"id":5821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9440:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5822,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5798,"src":"9452:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5816,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5760,"src":"9423:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9423:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5824,"nodeType":"ExpressionStatement","src":"9423:35:24"}]},"documentation":{"id":5794,"nodeType":"StructuredDocumentation","src":"8947:307:24","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":5826,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"9268:5:24","nodeType":"FunctionDefinition","parameters":{"id":5799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5796,"mutability":"mutable","name":"account","nameLocation":"9282:7:24","nodeType":"VariableDeclaration","scope":5826,"src":"9274:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5795,"name":"address","nodeType":"ElementaryTypeName","src":"9274:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5798,"mutability":"mutable","name":"value","nameLocation":"9299:5:24","nodeType":"VariableDeclaration","scope":5826,"src":"9291:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5797,"name":"uint256","nodeType":"ElementaryTypeName","src":"9291:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9273:32:24"},"returnParameters":{"id":5800,"nodeType":"ParameterList","parameters":[],"src":"9315:0:24"},"scope":5961,"src":"9259:206:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5843,"nodeType":"Block","src":"10075:54:24","statements":[{"expression":{"arguments":[{"id":5837,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"10094:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5838,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5831,"src":"10101:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5839,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5833,"src":"10110:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":5840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10117:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":5836,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[5844,5912],"referencedDeclaration":5912,"src":"10085:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":5841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5842,"nodeType":"ExpressionStatement","src":"10085:37:24"}]},"documentation":{"id":5827,"nodeType":"StructuredDocumentation","src":"9471:525:24","text":" @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":5844,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10010:8:24","nodeType":"FunctionDefinition","parameters":{"id":5834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5829,"mutability":"mutable","name":"owner","nameLocation":"10027:5:24","nodeType":"VariableDeclaration","scope":5844,"src":"10019:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5828,"name":"address","nodeType":"ElementaryTypeName","src":"10019:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5831,"mutability":"mutable","name":"spender","nameLocation":"10042:7:24","nodeType":"VariableDeclaration","scope":5844,"src":"10034:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5830,"name":"address","nodeType":"ElementaryTypeName","src":"10034:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5833,"mutability":"mutable","name":"value","nameLocation":"10059:5:24","nodeType":"VariableDeclaration","scope":5844,"src":"10051:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5832,"name":"uint256","nodeType":"ElementaryTypeName","src":"10051:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10018:47:24"},"returnParameters":{"id":5835,"nodeType":"ParameterList","parameters":[],"src":"10075:0:24"},"scope":5961,"src":"10001:128:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5911,"nodeType":"Block","src":"11074:389:24","statements":[{"assignments":[5858],"declarations":[{"constant":false,"id":5858,"mutability":"mutable","name":"$","nameLocation":"11105:1:24","nodeType":"VariableDeclaration","scope":5911,"src":"11084:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":5857,"nodeType":"UserDefinedTypeName","pathNode":{"id":5856,"name":"ERC20Storage","nameLocations":["11084:12:24"],"nodeType":"IdentifierPath","referencedDeclaration":5385,"src":"11084:12:24"},"referencedDeclaration":5385,"src":"11084:12:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":5861,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":5859,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5396,"src":"11109:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$5385_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":5860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11109:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11084:43:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5862,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5847,"src":"11141:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11158:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11150:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5863,"name":"address","nodeType":"ElementaryTypeName","src":"11150:7:24","typeDescriptions":{}}},"id":5866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11150:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11141:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5876,"nodeType":"IfStatement","src":"11137:89:24","trueBody":{"id":5875,"nodeType":"Block","src":"11162:64:24","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11212:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11204:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5869,"name":"address","nodeType":"ElementaryTypeName","src":"11204:7:24","typeDescriptions":{}}},"id":5872,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11204:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5868,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9850,"src":"11183:20:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11183:32:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5874,"nodeType":"RevertStatement","src":"11176:39:24"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5877,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5849,"src":"11239:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11258:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5879,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11250:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5878,"name":"address","nodeType":"ElementaryTypeName","src":"11250:7:24","typeDescriptions":{}}},"id":5881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11250:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11239:21:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5891,"nodeType":"IfStatement","src":"11235:90:24","trueBody":{"id":5890,"nodeType":"Block","src":"11262:63:24","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":5886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11311:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5885,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11303:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5884,"name":"address","nodeType":"ElementaryTypeName","src":"11303:7:24","typeDescriptions":{}}},"id":5887,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11303:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5883,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9855,"src":"11283:19:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":5888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11283:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5889,"nodeType":"RevertStatement","src":"11276:38:24"}]}},{"expression":{"id":5900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"expression":{"id":5892,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5858,"src":"11334:1:24","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$5385_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":5896,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11336:11:24","memberName":"_allowances","nodeType":"MemberAccess","referencedDeclaration":5378,"src":"11334:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":5897,"indexExpression":{"id":5894,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5847,"src":"11348:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11334:20:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5898,"indexExpression":{"id":5895,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5849,"src":"11355:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11334:29:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5899,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5851,"src":"11366:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11334:37:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5901,"nodeType":"ExpressionStatement","src":"11334:37:24"},{"condition":{"id":5902,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5853,"src":"11385:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5910,"nodeType":"IfStatement","src":"11381:76:24","trueBody":{"id":5909,"nodeType":"Block","src":"11396:61:24","statements":[{"eventCall":{"arguments":[{"id":5904,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5847,"src":"11424:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5905,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5849,"src":"11431:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5906,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5851,"src":"11440:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5903,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11008,"src":"11415:8:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11415:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5908,"nodeType":"EmitStatement","src":"11410:36:24"}]}}]},"documentation":{"id":5845,"nodeType":"StructuredDocumentation","src":"10135:836:24","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":5912,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10985:8:24","nodeType":"FunctionDefinition","parameters":{"id":5854,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5847,"mutability":"mutable","name":"owner","nameLocation":"11002:5:24","nodeType":"VariableDeclaration","scope":5912,"src":"10994:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5846,"name":"address","nodeType":"ElementaryTypeName","src":"10994:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5849,"mutability":"mutable","name":"spender","nameLocation":"11017:7:24","nodeType":"VariableDeclaration","scope":5912,"src":"11009:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5848,"name":"address","nodeType":"ElementaryTypeName","src":"11009:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5851,"mutability":"mutable","name":"value","nameLocation":"11034:5:24","nodeType":"VariableDeclaration","scope":5912,"src":"11026:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5850,"name":"uint256","nodeType":"ElementaryTypeName","src":"11026:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5853,"mutability":"mutable","name":"emitEvent","nameLocation":"11046:9:24","nodeType":"VariableDeclaration","scope":5912,"src":"11041:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5852,"name":"bool","nodeType":"ElementaryTypeName","src":"11041:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10993:63:24"},"returnParameters":{"id":5855,"nodeType":"ParameterList","parameters":[],"src":"11074:0:24"},"scope":5961,"src":"10976:487:24","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":5959,"nodeType":"Block","src":"11834:387:24","statements":[{"assignments":[5923],"declarations":[{"constant":false,"id":5923,"mutability":"mutable","name":"currentAllowance","nameLocation":"11852:16:24","nodeType":"VariableDeclaration","scope":5959,"src":"11844:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5922,"name":"uint256","nodeType":"ElementaryTypeName","src":"11844:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5928,"initialValue":{"arguments":[{"id":5925,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5915,"src":"11881:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5926,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5917,"src":"11888:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5924,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5565,"src":"11871:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":5927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11871:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11844:52:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5929,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5923,"src":"11910:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":5932,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11934:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5931,"name":"uint256","nodeType":"ElementaryTypeName","src":"11934:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":5930,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11929:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11929:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":5934,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11943:3:24","memberName":"max","nodeType":"MemberAccess","src":"11929:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11910:36:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5958,"nodeType":"IfStatement","src":"11906:309:24","trueBody":{"id":5957,"nodeType":"Block","src":"11948:267:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5936,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5923,"src":"11966:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5919,"src":"11985:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11966:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5946,"nodeType":"IfStatement","src":"11962:130:24","trueBody":{"id":5945,"nodeType":"Block","src":"11992:100:24","statements":[{"errorCall":{"arguments":[{"id":5940,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5917,"src":"12044:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5941,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5923,"src":"12053:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5942,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5919,"src":"12071:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5939,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9845,"src":"12017:26:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":5943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12017:60:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5944,"nodeType":"RevertStatement","src":"12010:67:24"}]}},{"id":5956,"nodeType":"UncheckedBlock","src":"12105:100:24","statements":[{"expression":{"arguments":[{"id":5948,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5915,"src":"12142:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5949,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5917,"src":"12149:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5950,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5923,"src":"12158:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5951,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5919,"src":"12177:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12158:24:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":5953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12184:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":5947,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[5844,5912],"referencedDeclaration":5912,"src":"12133:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":5954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12133:57:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5955,"nodeType":"ExpressionStatement","src":"12133:57:24"}]}]}}]},"documentation":{"id":5913,"nodeType":"StructuredDocumentation","src":"11469:271:24","text":" @dev Updates `owner` s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":5960,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"11754:15:24","nodeType":"FunctionDefinition","parameters":{"id":5920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5915,"mutability":"mutable","name":"owner","nameLocation":"11778:5:24","nodeType":"VariableDeclaration","scope":5960,"src":"11770:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5914,"name":"address","nodeType":"ElementaryTypeName","src":"11770:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5917,"mutability":"mutable","name":"spender","nameLocation":"11793:7:24","nodeType":"VariableDeclaration","scope":5960,"src":"11785:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5916,"name":"address","nodeType":"ElementaryTypeName","src":"11785:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5919,"mutability":"mutable","name":"value","nameLocation":"11810:5:24","nodeType":"VariableDeclaration","scope":5960,"src":"11802:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5918,"name":"uint256","nodeType":"ElementaryTypeName","src":"11802:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11769:47:24"},"returnParameters":{"id":5921,"nodeType":"ParameterList","parameters":[],"src":"11834:0:24"},"scope":5961,"src":"11745:476:24","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":5962,"src":"1281:10942:24","usedErrors":[4925,4928,9826,9831,9836,9845,9850,9855],"usedEvents":[4933,10999,11008]}],"src":"105:12119:24"},"id":24},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","exportedSymbols":{"ERC20Upgradeable":[5961],"ERC4626Upgradeable":[6725],"IERC20":[11065],"IERC20Metadata":[11776],"IERC4626":[9796],"Initializable":[5162],"Math":[19814],"SafeERC20":[12185]},"id":6726,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5963,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:25"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":5965,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":11066,"src":"144:70:25","symbolAliases":[{"foreign":{"id":5964,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"152:6:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":5967,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":11777,"src":"215:97:25","symbolAliases":[{"foreign":{"id":5966,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"223:14:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"../ERC20Upgradeable.sol","id":5969,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":5962,"src":"313:57:25","symbolAliases":[{"foreign":{"id":5968,"name":"ERC20Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5961,"src":"321:16:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":5971,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":12186,"src":"371:82:25","symbolAliases":[{"foreign":{"id":5970,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"379:9:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":5973,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":9797,"src":"454:73:25","symbolAliases":[{"foreign":{"id":5972,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"462:8:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":5975,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":19815,"src":"528:65:25","symbolAliases":[{"foreign":{"id":5974,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"536:4:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../../../proxy/utils/Initializable.sol","id":5977,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6726,"sourceUnit":5163,"src":"594:69:25","symbolAliases":[{"foreign":{"id":5976,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5162,"src":"602:13:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":5979,"name":"Initializable","nameLocations":["3609:13:25"],"nodeType":"IdentifierPath","referencedDeclaration":5162,"src":"3609:13:25"},"id":5980,"nodeType":"InheritanceSpecifier","src":"3609:13:25"},{"baseName":{"id":5981,"name":"ERC20Upgradeable","nameLocations":["3624:16:25"],"nodeType":"IdentifierPath","referencedDeclaration":5961,"src":"3624:16:25"},"id":5982,"nodeType":"InheritanceSpecifier","src":"3624:16:25"},{"baseName":{"id":5983,"name":"IERC4626","nameLocations":["3642:8:25"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"3642:8:25"},"id":5984,"nodeType":"InheritanceSpecifier","src":"3642:8:25"}],"canonicalName":"ERC4626Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":5978,"nodeType":"StructuredDocumentation","src":"665:2903:25","text":" @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n contract and not the \"assets\" token which is an independent contract.\n [CAUTION]\n ====\n In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n verifying the amount received is as expected, using a wrapper that performs these checks such as\n https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n underlying math can be found xref:erc4626.adoc#inflation-attack[here].\n The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n `_convertToShares` and `_convertToAssets` functions.\n To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n ===="},"fullyImplemented":true,"id":6725,"linearizedBaseContracts":[6725,9796,5961,9856,11776,11065,6771,5162],"name":"ERC4626Upgradeable","nameLocation":"3587:18:25","nodeType":"ContractDefinition","nodes":[{"global":false,"id":5987,"libraryName":{"id":5985,"name":"Math","nameLocations":["3663:4:25"],"nodeType":"IdentifierPath","referencedDeclaration":19814,"src":"3663:4:25"},"nodeType":"UsingForDirective","src":"3657:23:25","typeName":{"id":5986,"name":"uint256","nodeType":"ElementaryTypeName","src":"3672:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"canonicalName":"ERC4626Upgradeable.ERC4626Storage","documentation":{"id":5988,"nodeType":"StructuredDocumentation","src":"3686:65:25","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC4626"},"id":5994,"members":[{"constant":false,"id":5991,"mutability":"mutable","name":"_asset","nameLocation":"3795:6:25","nodeType":"VariableDeclaration","scope":5994,"src":"3788:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":5990,"nodeType":"UserDefinedTypeName","pathNode":{"id":5989,"name":"IERC20","nameLocations":["3788:6:25"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"3788:6:25"},"referencedDeclaration":11065,"src":"3788:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":5993,"mutability":"mutable","name":"_underlyingDecimals","nameLocation":"3817:19:25","nodeType":"VariableDeclaration","scope":5994,"src":"3811:25:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5992,"name":"uint8","nodeType":"ElementaryTypeName","src":"3811:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"name":"ERC4626Storage","nameLocation":"3763:14:25","nodeType":"StructDefinition","scope":6725,"src":"3756:87:25","visibility":"public"},{"constant":true,"id":5997,"mutability":"constant","name":"ERC4626StorageLocation","nameLocation":"3985:22:25","nodeType":"VariableDeclaration","scope":6725,"src":"3960:116:25","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5995,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3960:7:25","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830373733653533326466656465393166303462313261373364336432616364333631343234663431663736623466623739663039303136316533366234653030","id":5996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4010:66:25","typeDescriptions":{"typeIdentifier":"t_rational_3370959224025639111533709689598502374825270023453997444744848480697785732608_by_1","typeString":"int_const 3370...(68 digits omitted)...2608"},"value":"0x0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00"},"visibility":"private"},{"body":{"id":6004,"nodeType":"Block","src":"4161:81:25","statements":[{"AST":{"nativeSrc":"4180:56:25","nodeType":"YulBlock","src":"4180:56:25","statements":[{"nativeSrc":"4194:32:25","nodeType":"YulAssignment","src":"4194:32:25","value":{"name":"ERC4626StorageLocation","nativeSrc":"4204:22:25","nodeType":"YulIdentifier","src":"4204:22:25"},"variableNames":[{"name":"$.slot","nativeSrc":"4194:6:25","nodeType":"YulIdentifier","src":"4194:6:25"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":6001,"isOffset":false,"isSlot":true,"src":"4194:6:25","suffix":"slot","valueSize":1},{"declaration":5997,"isOffset":false,"isSlot":false,"src":"4204:22:25","valueSize":1}],"id":6003,"nodeType":"InlineAssembly","src":"4171:65:25"}]},"id":6005,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC4626Storage","nameLocation":"4092:18:25","nodeType":"FunctionDefinition","parameters":{"id":5998,"nodeType":"ParameterList","parameters":[],"src":"4110:2:25"},"returnParameters":{"id":6002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6001,"mutability":"mutable","name":"$","nameLocation":"4158:1:25","nodeType":"VariableDeclaration","scope":6005,"src":"4135:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6000,"nodeType":"UserDefinedTypeName","pathNode":{"id":5999,"name":"ERC4626Storage","nameLocations":["4135:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"4135:14:25"},"referencedDeclaration":5994,"src":"4135:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"src":"4134:26:25"},"scope":6725,"src":"4083:159:25","stateMutability":"pure","virtual":false,"visibility":"private"},{"documentation":{"id":6006,"nodeType":"StructuredDocumentation","src":"4248:92:25","text":" @dev Attempted to deposit more assets than the max amount for `receiver`."},"errorSelector":"79012fb2","id":6014,"name":"ERC4626ExceededMaxDeposit","nameLocation":"4351:25:25","nodeType":"ErrorDefinition","parameters":{"id":6013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6008,"mutability":"mutable","name":"receiver","nameLocation":"4385:8:25","nodeType":"VariableDeclaration","scope":6014,"src":"4377:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6007,"name":"address","nodeType":"ElementaryTypeName","src":"4377:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6010,"mutability":"mutable","name":"assets","nameLocation":"4403:6:25","nodeType":"VariableDeclaration","scope":6014,"src":"4395:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6009,"name":"uint256","nodeType":"ElementaryTypeName","src":"4395:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6012,"mutability":"mutable","name":"max","nameLocation":"4419:3:25","nodeType":"VariableDeclaration","scope":6014,"src":"4411:11:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6011,"name":"uint256","nodeType":"ElementaryTypeName","src":"4411:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4376:47:25"},"src":"4345:79:25"},{"documentation":{"id":6015,"nodeType":"StructuredDocumentation","src":"4430:89:25","text":" @dev Attempted to mint more shares than the max amount for `receiver`."},"errorSelector":"284ff667","id":6023,"name":"ERC4626ExceededMaxMint","nameLocation":"4530:22:25","nodeType":"ErrorDefinition","parameters":{"id":6022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6017,"mutability":"mutable","name":"receiver","nameLocation":"4561:8:25","nodeType":"VariableDeclaration","scope":6023,"src":"4553:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6016,"name":"address","nodeType":"ElementaryTypeName","src":"4553:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6019,"mutability":"mutable","name":"shares","nameLocation":"4579:6:25","nodeType":"VariableDeclaration","scope":6023,"src":"4571:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6018,"name":"uint256","nodeType":"ElementaryTypeName","src":"4571:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6021,"mutability":"mutable","name":"max","nameLocation":"4595:3:25","nodeType":"VariableDeclaration","scope":6023,"src":"4587:11:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6020,"name":"uint256","nodeType":"ElementaryTypeName","src":"4587:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4552:47:25"},"src":"4524:76:25"},{"documentation":{"id":6024,"nodeType":"StructuredDocumentation","src":"4606:93:25","text":" @dev Attempted to withdraw more assets than the max amount for `receiver`."},"errorSelector":"fe9cceec","id":6032,"name":"ERC4626ExceededMaxWithdraw","nameLocation":"4710:26:25","nodeType":"ErrorDefinition","parameters":{"id":6031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6026,"mutability":"mutable","name":"owner","nameLocation":"4745:5:25","nodeType":"VariableDeclaration","scope":6032,"src":"4737:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6025,"name":"address","nodeType":"ElementaryTypeName","src":"4737:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6028,"mutability":"mutable","name":"assets","nameLocation":"4760:6:25","nodeType":"VariableDeclaration","scope":6032,"src":"4752:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6027,"name":"uint256","nodeType":"ElementaryTypeName","src":"4752:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6030,"mutability":"mutable","name":"max","nameLocation":"4776:3:25","nodeType":"VariableDeclaration","scope":6032,"src":"4768:11:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6029,"name":"uint256","nodeType":"ElementaryTypeName","src":"4768:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4736:44:25"},"src":"4704:77:25"},{"documentation":{"id":6033,"nodeType":"StructuredDocumentation","src":"4787:91:25","text":" @dev Attempted to redeem more shares than the max amount for `receiver`."},"errorSelector":"b94abeec","id":6041,"name":"ERC4626ExceededMaxRedeem","nameLocation":"4889:24:25","nodeType":"ErrorDefinition","parameters":{"id":6040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6035,"mutability":"mutable","name":"owner","nameLocation":"4922:5:25","nodeType":"VariableDeclaration","scope":6041,"src":"4914:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6034,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6037,"mutability":"mutable","name":"shares","nameLocation":"4937:6:25","nodeType":"VariableDeclaration","scope":6041,"src":"4929:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6036,"name":"uint256","nodeType":"ElementaryTypeName","src":"4929:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6039,"mutability":"mutable","name":"max","nameLocation":"4953:3:25","nodeType":"VariableDeclaration","scope":6041,"src":"4945:11:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6038,"name":"uint256","nodeType":"ElementaryTypeName","src":"4945:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4913:44:25"},"src":"4883:75:25"},{"body":{"id":6054,"nodeType":"Block","src":"5155:49:25","statements":[{"expression":{"arguments":[{"id":6051,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6045,"src":"5190:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":6050,"name":"__ERC4626_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6093,"src":"5165:24:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$returns$__$","typeString":"function (contract IERC20)"}},"id":6052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5165:32:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6053,"nodeType":"ExpressionStatement","src":"5165:32:25"}]},"documentation":{"id":6042,"nodeType":"StructuredDocumentation","src":"4964:121:25","text":" @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777)."},"id":6055,"implemented":true,"kind":"function","modifiers":[{"id":6048,"kind":"modifierInvocation","modifierName":{"id":6047,"name":"onlyInitializing","nameLocations":["5138:16:25"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"5138:16:25"},"nodeType":"ModifierInvocation","src":"5138:16:25"}],"name":"__ERC4626_init","nameLocation":"5099:14:25","nodeType":"FunctionDefinition","parameters":{"id":6046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6045,"mutability":"mutable","name":"asset_","nameLocation":"5121:6:25","nodeType":"VariableDeclaration","scope":6055,"src":"5114:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":6044,"nodeType":"UserDefinedTypeName","pathNode":{"id":6043,"name":"IERC20","nameLocations":["5114:6:25"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"5114:6:25"},"referencedDeclaration":11065,"src":"5114:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5113:15:25"},"returnParameters":{"id":6049,"nodeType":"ParameterList","parameters":[],"src":"5155:0:25"},"scope":6725,"src":"5090:114:25","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6092,"nodeType":"Block","src":"5285:229:25","statements":[{"assignments":[6065],"declarations":[{"constant":false,"id":6065,"mutability":"mutable","name":"$","nameLocation":"5318:1:25","nodeType":"VariableDeclaration","scope":6092,"src":"5295:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6064,"nodeType":"UserDefinedTypeName","pathNode":{"id":6063,"name":"ERC4626Storage","nameLocations":["5295:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"5295:14:25"},"referencedDeclaration":5994,"src":"5295:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":6068,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6066,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"5322:18:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":6067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5322:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5295:47:25"},{"assignments":[6070,6072],"declarations":[{"constant":false,"id":6070,"mutability":"mutable","name":"success","nameLocation":"5358:7:25","nodeType":"VariableDeclaration","scope":6092,"src":"5353:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6069,"name":"bool","nodeType":"ElementaryTypeName","src":"5353:4:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6072,"mutability":"mutable","name":"assetDecimals","nameLocation":"5373:13:25","nodeType":"VariableDeclaration","scope":6092,"src":"5367:19:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6071,"name":"uint8","nodeType":"ElementaryTypeName","src":"5367:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":6076,"initialValue":{"arguments":[{"id":6074,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6058,"src":"5411:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":6073,"name":"_tryGetAssetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6160,"src":"5390:20:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IERC20_$11065_$returns$_t_bool_$_t_uint8_$","typeString":"function (contract IERC20) view returns (bool,uint8)"}},"id":6075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5390:28:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"nodeType":"VariableDeclarationStatement","src":"5352:66:25"},{"expression":{"id":6084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":6077,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6065,"src":"5428:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6079,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5430:19:25","memberName":"_underlyingDecimals","nodeType":"MemberAccess","referencedDeclaration":5993,"src":"5428:21:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"id":6080,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6070,"src":"5452:7:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3138","id":6082,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5478:2:25","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"id":6083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"5452:28:25","trueExpression":{"id":6081,"name":"assetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6072,"src":"5462:13:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5428:52:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":6085,"nodeType":"ExpressionStatement","src":"5428:52:25"},{"expression":{"id":6090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":6086,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6065,"src":"5490:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6088,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5492:6:25","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":5991,"src":"5490:8:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6089,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6058,"src":"5501:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"src":"5490:17:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":6091,"nodeType":"ExpressionStatement","src":"5490:17:25"}]},"id":6093,"implemented":true,"kind":"function","modifiers":[{"id":6061,"kind":"modifierInvocation","modifierName":{"id":6060,"name":"onlyInitializing","nameLocations":["5268:16:25"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"5268:16:25"},"nodeType":"ModifierInvocation","src":"5268:16:25"}],"name":"__ERC4626_init_unchained","nameLocation":"5219:24:25","nodeType":"FunctionDefinition","parameters":{"id":6059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6058,"mutability":"mutable","name":"asset_","nameLocation":"5251:6:25","nodeType":"VariableDeclaration","scope":6093,"src":"5244:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":6057,"nodeType":"UserDefinedTypeName","pathNode":{"id":6056,"name":"IERC20","nameLocations":["5244:6:25"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"5244:6:25"},"referencedDeclaration":11065,"src":"5244:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5243:15:25"},"returnParameters":{"id":6062,"nodeType":"ParameterList","parameters":[],"src":"5285:0:25"},"scope":6725,"src":"5210:304:25","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6159,"nodeType":"Block","src":"5754:453:25","statements":[{"assignments":[6105,6107],"declarations":[{"constant":false,"id":6105,"mutability":"mutable","name":"success","nameLocation":"5770:7:25","nodeType":"VariableDeclaration","scope":6159,"src":"5765:12:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6104,"name":"bool","nodeType":"ElementaryTypeName","src":"5765:4:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6107,"mutability":"mutable","name":"encodedDecimals","nameLocation":"5792:15:25","nodeType":"VariableDeclaration","scope":6159,"src":"5779:28:25","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":6106,"name":"bytes","nodeType":"ElementaryTypeName","src":"5779:5:25","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":6120,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":6115,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"5866:14:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":6116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5881:8:25","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":11775,"src":"5866:23:25","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"}},{"components":[],"id":6117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"5891:2:25","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"},{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}],"expression":{"id":6113,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5851:3:25","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":6114,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5855:10:25","memberName":"encodeCall","nodeType":"MemberAccess","src":"5851:14:25","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":6118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5851:43:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"arguments":[{"id":6110,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6097,"src":"5819:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":6109,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5811:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6108,"name":"address","nodeType":"ElementaryTypeName","src":"5811:7:25","typeDescriptions":{}}},"id":6111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5811:15:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":6112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5827:10:25","memberName":"staticcall","nodeType":"MemberAccess","src":"5811:26:25","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":6119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5811:93:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5764:140:25"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6121,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6105,"src":"5918:7:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6122,"name":"encodedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6107,"src":"5929:15:25","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":6123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5945:6:25","memberName":"length","nodeType":"MemberAccess","src":"5929:22:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":6124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5955:2:25","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5929:28:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5918:39:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6154,"nodeType":"IfStatement","src":"5914:260:25","trueBody":{"id":6153,"nodeType":"Block","src":"5959:215:25","statements":[{"assignments":[6128],"declarations":[{"constant":false,"id":6128,"mutability":"mutable","name":"returnedDecimals","nameLocation":"5981:16:25","nodeType":"VariableDeclaration","scope":6153,"src":"5973:24:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6127,"name":"uint256","nodeType":"ElementaryTypeName","src":"5973:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6136,"initialValue":{"arguments":[{"id":6131,"name":"encodedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6107,"src":"6011:15:25","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":6133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6029:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6132,"name":"uint256","nodeType":"ElementaryTypeName","src":"6029:7:25","typeDescriptions":{}}}],"id":6134,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6028:9:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"expression":{"id":6129,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6000:3:25","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":6130,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6004:6:25","memberName":"decode","nodeType":"MemberAccess","src":"6000:10:25","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":6135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6000:38:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5973:65:25"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6137,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6128,"src":"6056:16:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":6140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6081:5:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":6139,"name":"uint8","nodeType":"ElementaryTypeName","src":"6081:5:25","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":6138,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6076:4:25","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6076:11:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":6142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6088:3:25","memberName":"max","nodeType":"MemberAccess","src":"6076:15:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6056:35:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6152,"nodeType":"IfStatement","src":"6052:112:25","trueBody":{"id":6151,"nodeType":"Block","src":"6093:71:25","statements":[{"expression":{"components":[{"hexValue":"74727565","id":6144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6119:4:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":6147,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6128,"src":"6131:16:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6125:5:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":6145,"name":"uint8","nodeType":"ElementaryTypeName","src":"6125:5:25","typeDescriptions":{}}},"id":6148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6125:23:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":6149,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6118:31:25","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"functionReturnParameters":6103,"id":6150,"nodeType":"Return","src":"6111:38:25"}]}}]}},{"expression":{"components":[{"hexValue":"66616c7365","id":6155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6191:5:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":6156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6198:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":6157,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6190:10:25","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":6103,"id":6158,"nodeType":"Return","src":"6183:17:25"}]},"documentation":{"id":6094,"nodeType":"StructuredDocumentation","src":"5520:132:25","text":" @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way."},"id":6160,"implemented":true,"kind":"function","modifiers":[],"name":"_tryGetAssetDecimals","nameLocation":"5666:20:25","nodeType":"FunctionDefinition","parameters":{"id":6098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6097,"mutability":"mutable","name":"asset_","nameLocation":"5694:6:25","nodeType":"VariableDeclaration","scope":6160,"src":"5687:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":6096,"nodeType":"UserDefinedTypeName","pathNode":{"id":6095,"name":"IERC20","nameLocations":["5687:6:25"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"5687:6:25"},"referencedDeclaration":11065,"src":"5687:6:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5686:15:25"},"returnParameters":{"id":6103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6100,"mutability":"mutable","name":"ok","nameLocation":"5729:2:25","nodeType":"VariableDeclaration","scope":6160,"src":"5724:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6099,"name":"bool","nodeType":"ElementaryTypeName","src":"5724:4:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":6102,"mutability":"mutable","name":"assetDecimals","nameLocation":"5739:13:25","nodeType":"VariableDeclaration","scope":6160,"src":"5733:19:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6101,"name":"uint8","nodeType":"ElementaryTypeName","src":"5733:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5723:30:25"},"scope":6725,"src":"5657:550:25","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[5481,11775],"body":{"id":6181,"nodeType":"Block","src":"6711:122:25","statements":[{"assignments":[6171],"declarations":[{"constant":false,"id":6171,"mutability":"mutable","name":"$","nameLocation":"6744:1:25","nodeType":"VariableDeclaration","scope":6181,"src":"6721:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6170,"nodeType":"UserDefinedTypeName","pathNode":{"id":6169,"name":"ERC4626Storage","nameLocations":["6721:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"6721:14:25"},"referencedDeclaration":5994,"src":"6721:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":6174,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6172,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"6748:18:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":6173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6748:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6721:47:25"},{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":6179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6175,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6171,"src":"6785:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6176,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6787:19:25","memberName":"_underlyingDecimals","nodeType":"MemberAccess","referencedDeclaration":5993,"src":"6785:21:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6177,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6724,"src":"6809:15:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":6178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6809:17:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6785:41:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":6168,"id":6180,"nodeType":"Return","src":"6778:48:25"}]},"documentation":{"id":6161,"nodeType":"StructuredDocumentation","src":"6213:394:25","text":" @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n See {IERC20Metadata-decimals}."},"functionSelector":"313ce567","id":6182,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"6621:8:25","nodeType":"FunctionDefinition","overrides":{"id":6165,"nodeType":"OverrideSpecifier","overrides":[{"id":6163,"name":"IERC20Metadata","nameLocations":["6661:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"6661:14:25"},{"id":6164,"name":"ERC20Upgradeable","nameLocations":["6677:16:25"],"nodeType":"IdentifierPath","referencedDeclaration":5961,"src":"6677:16:25"}],"src":"6652:42:25"},"parameters":{"id":6162,"nodeType":"ParameterList","parameters":[],"src":"6629:2:25"},"returnParameters":{"id":6168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6182,"src":"6704:5:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6166,"name":"uint8","nodeType":"ElementaryTypeName","src":"6704:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6703:7:25"},"scope":6725,"src":"6612:221:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9665],"body":{"id":6200,"nodeType":"Block","src":"6932:98:25","statements":[{"assignments":[6190],"declarations":[{"constant":false,"id":6190,"mutability":"mutable","name":"$","nameLocation":"6965:1:25","nodeType":"VariableDeclaration","scope":6200,"src":"6942:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6189,"nodeType":"UserDefinedTypeName","pathNode":{"id":6188,"name":"ERC4626Storage","nameLocations":["6942:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"6942:14:25"},"referencedDeclaration":5994,"src":"6942:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":6193,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6191,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"6969:18:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":6192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6969:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6942:47:25"},{"expression":{"arguments":[{"expression":{"id":6196,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6190,"src":"7014:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6197,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7016:6:25","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":5991,"src":"7014:8:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":6195,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7006:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6194,"name":"address","nodeType":"ElementaryTypeName","src":"7006:7:25","typeDescriptions":{}}},"id":6198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7006:17:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6187,"id":6199,"nodeType":"Return","src":"6999:24:25"}]},"documentation":{"id":6183,"nodeType":"StructuredDocumentation","src":"6839:33:25","text":"@dev See {IERC4626-asset}. "},"functionSelector":"38d52e0f","id":6201,"implemented":true,"kind":"function","modifiers":[],"name":"asset","nameLocation":"6886:5:25","nodeType":"FunctionDefinition","parameters":{"id":6184,"nodeType":"ParameterList","parameters":[],"src":"6891:2:25"},"returnParameters":{"id":6187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6201,"src":"6923:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6185,"name":"address","nodeType":"ElementaryTypeName","src":"6923:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6922:9:25"},"scope":6725,"src":"6877:153:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9671],"body":{"id":6222,"nodeType":"Block","src":"7141:114:25","statements":[{"assignments":[6209],"declarations":[{"constant":false,"id":6209,"mutability":"mutable","name":"$","nameLocation":"7174:1:25","nodeType":"VariableDeclaration","scope":6222,"src":"7151:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6208,"nodeType":"UserDefinedTypeName","pathNode":{"id":6207,"name":"ERC4626Storage","nameLocations":["7151:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"7151:14:25"},"referencedDeclaration":5994,"src":"7151:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":6212,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6210,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"7178:18:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":6211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7178:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7151:47:25"},{"expression":{"arguments":[{"arguments":[{"id":6218,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7242:4:25","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$6725","typeString":"contract ERC4626Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$6725","typeString":"contract ERC4626Upgradeable"}],"id":6217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7234:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6216,"name":"address","nodeType":"ElementaryTypeName","src":"7234:7:25","typeDescriptions":{}}},"id":6219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7234:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":6213,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6209,"src":"7215:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6214,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7217:6:25","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":5991,"src":"7215:8:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":6215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7224:9:25","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":11022,"src":"7215:18:25","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":6220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7215:33:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6206,"id":6221,"nodeType":"Return","src":"7208:40:25"}]},"documentation":{"id":6202,"nodeType":"StructuredDocumentation","src":"7036:39:25","text":"@dev See {IERC4626-totalAssets}. "},"functionSelector":"01e1d114","id":6223,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"7089:11:25","nodeType":"FunctionDefinition","parameters":{"id":6203,"nodeType":"ParameterList","parameters":[],"src":"7100:2:25"},"returnParameters":{"id":6206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6205,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6223,"src":"7132:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6204,"name":"uint256","nodeType":"ElementaryTypeName","src":"7132:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7131:9:25"},"scope":6725,"src":"7080:175:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9679],"body":{"id":6238,"nodeType":"Block","src":"7388:69:25","statements":[{"expression":{"arguments":[{"id":6232,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6226,"src":"7422:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6233,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"7430:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7435:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"7430:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7444:5:25","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"7430:19:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6231,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"7405:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7405:45:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6230,"id":6237,"nodeType":"Return","src":"7398:52:25"}]},"documentation":{"id":6224,"nodeType":"StructuredDocumentation","src":"7261:43:25","text":"@dev See {IERC4626-convertToShares}. "},"functionSelector":"c6e6f592","id":6239,"implemented":true,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"7318:15:25","nodeType":"FunctionDefinition","parameters":{"id":6227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6226,"mutability":"mutable","name":"assets","nameLocation":"7342:6:25","nodeType":"VariableDeclaration","scope":6239,"src":"7334:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6225,"name":"uint256","nodeType":"ElementaryTypeName","src":"7334:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7333:16:25"},"returnParameters":{"id":6230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6229,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6239,"src":"7379:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6228,"name":"uint256","nodeType":"ElementaryTypeName","src":"7379:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7378:9:25"},"scope":6725,"src":"7309:148:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9687],"body":{"id":6254,"nodeType":"Block","src":"7590:69:25","statements":[{"expression":{"arguments":[{"id":6248,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"7624:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6249,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"7632:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7637:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"7632:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7646:5:25","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"7632:19:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6247,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6618,"src":"7607:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7607:45:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6246,"id":6253,"nodeType":"Return","src":"7600:52:25"}]},"documentation":{"id":6240,"nodeType":"StructuredDocumentation","src":"7463:43:25","text":"@dev See {IERC4626-convertToAssets}. "},"functionSelector":"07a2d13a","id":6255,"implemented":true,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"7520:15:25","nodeType":"FunctionDefinition","parameters":{"id":6243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6242,"mutability":"mutable","name":"shares","nameLocation":"7544:6:25","nodeType":"VariableDeclaration","scope":6255,"src":"7536:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6241,"name":"uint256","nodeType":"ElementaryTypeName","src":"7536:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7535:16:25"},"returnParameters":{"id":6246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6245,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6255,"src":"7581:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6244,"name":"uint256","nodeType":"ElementaryTypeName","src":"7581:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7580:9:25"},"scope":6725,"src":"7511:148:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9695],"body":{"id":6269,"nodeType":"Block","src":"7775:41:25","statements":[{"expression":{"expression":{"arguments":[{"id":6265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7797:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6264,"name":"uint256","nodeType":"ElementaryTypeName","src":"7797:7:25","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":6263,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7792:4:25","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7792:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":6267,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7806:3:25","memberName":"max","nodeType":"MemberAccess","src":"7792:17:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6262,"id":6268,"nodeType":"Return","src":"7785:24:25"}]},"documentation":{"id":6256,"nodeType":"StructuredDocumentation","src":"7665:38:25","text":"@dev See {IERC4626-maxDeposit}. "},"functionSelector":"402d267d","id":6270,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"7717:10:25","nodeType":"FunctionDefinition","parameters":{"id":6259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6258,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6270,"src":"7728:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6257,"name":"address","nodeType":"ElementaryTypeName","src":"7728:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7727:9:25"},"returnParameters":{"id":6262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6261,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6270,"src":"7766:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6260,"name":"uint256","nodeType":"ElementaryTypeName","src":"7766:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7765:9:25"},"scope":6725,"src":"7708:108:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9721],"body":{"id":6284,"nodeType":"Block","src":"7926:41:25","statements":[{"expression":{"expression":{"arguments":[{"id":6280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7948:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6279,"name":"uint256","nodeType":"ElementaryTypeName","src":"7948:7:25","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":6278,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7943:4:25","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7943:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":6282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7957:3:25","memberName":"max","nodeType":"MemberAccess","src":"7943:17:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6277,"id":6283,"nodeType":"Return","src":"7936:24:25"}]},"documentation":{"id":6271,"nodeType":"StructuredDocumentation","src":"7822:35:25","text":"@dev See {IERC4626-maxMint}. "},"functionSelector":"c63d75b6","id":6285,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"7871:7:25","nodeType":"FunctionDefinition","parameters":{"id":6274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6285,"src":"7879:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6272,"name":"address","nodeType":"ElementaryTypeName","src":"7879:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7878:9:25"},"returnParameters":{"id":6277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6276,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6285,"src":"7917:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6275,"name":"uint256","nodeType":"ElementaryTypeName","src":"7917:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7916:9:25"},"scope":6725,"src":"7862:105:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9747],"body":{"id":6302,"nodeType":"Block","src":"8091:79:25","statements":[{"expression":{"arguments":[{"arguments":[{"id":6295,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6288,"src":"8135:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6294,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5517,"src":"8125:9:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8125:16:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6297,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"8143:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8148:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"8143:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8157:5:25","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"8143:19:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6293,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6618,"src":"8108:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8108:55:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6292,"id":6301,"nodeType":"Return","src":"8101:62:25"}]},"documentation":{"id":6286,"nodeType":"StructuredDocumentation","src":"7973:39:25","text":"@dev See {IERC4626-maxWithdraw}. "},"functionSelector":"ce96cb77","id":6303,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"8026:11:25","nodeType":"FunctionDefinition","parameters":{"id":6289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6288,"mutability":"mutable","name":"owner","nameLocation":"8046:5:25","nodeType":"VariableDeclaration","scope":6303,"src":"8038:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6287,"name":"address","nodeType":"ElementaryTypeName","src":"8038:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8037:15:25"},"returnParameters":{"id":6292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6291,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6303,"src":"8082:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6290,"name":"uint256","nodeType":"ElementaryTypeName","src":"8082:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8081:9:25"},"scope":6725,"src":"8017:153:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9775],"body":{"id":6315,"nodeType":"Block","src":"8290:40:25","statements":[{"expression":{"arguments":[{"id":6312,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6306,"src":"8317:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6311,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5517,"src":"8307:9:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8307:16:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6310,"id":6314,"nodeType":"Return","src":"8300:23:25"}]},"documentation":{"id":6304,"nodeType":"StructuredDocumentation","src":"8176:37:25","text":"@dev See {IERC4626-maxRedeem}. "},"functionSelector":"d905777e","id":6316,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"8227:9:25","nodeType":"FunctionDefinition","parameters":{"id":6307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6306,"mutability":"mutable","name":"owner","nameLocation":"8245:5:25","nodeType":"VariableDeclaration","scope":6316,"src":"8237:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6305,"name":"address","nodeType":"ElementaryTypeName","src":"8237:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8236:15:25"},"returnParameters":{"id":6310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6309,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6316,"src":"8281:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6308,"name":"uint256","nodeType":"ElementaryTypeName","src":"8281:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8280:9:25"},"scope":6725,"src":"8218:112:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9703],"body":{"id":6331,"nodeType":"Block","src":"8461:69:25","statements":[{"expression":{"arguments":[{"id":6325,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6319,"src":"8495:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6326,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"8503:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8508:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"8503:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8517:5:25","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"8503:19:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6324,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"8478:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8478:45:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6323,"id":6330,"nodeType":"Return","src":"8471:52:25"}]},"documentation":{"id":6317,"nodeType":"StructuredDocumentation","src":"8336:42:25","text":"@dev See {IERC4626-previewDeposit}. "},"functionSelector":"ef8b30f7","id":6332,"implemented":true,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"8392:14:25","nodeType":"FunctionDefinition","parameters":{"id":6320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6319,"mutability":"mutable","name":"assets","nameLocation":"8415:6:25","nodeType":"VariableDeclaration","scope":6332,"src":"8407:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6318,"name":"uint256","nodeType":"ElementaryTypeName","src":"8407:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8406:16:25"},"returnParameters":{"id":6323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6322,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6332,"src":"8452:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6321,"name":"uint256","nodeType":"ElementaryTypeName","src":"8452:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8451:9:25"},"scope":6725,"src":"8383:147:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9729],"body":{"id":6347,"nodeType":"Block","src":"8655:68:25","statements":[{"expression":{"arguments":[{"id":6341,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6335,"src":"8689:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6342,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"8697:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8702:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"8697:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8711:4:25","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":18217,"src":"8697:18:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6340,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6618,"src":"8672:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8672:44:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6339,"id":6346,"nodeType":"Return","src":"8665:51:25"}]},"documentation":{"id":6333,"nodeType":"StructuredDocumentation","src":"8536:39:25","text":"@dev See {IERC4626-previewMint}. "},"functionSelector":"b3d7f6b9","id":6348,"implemented":true,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"8589:11:25","nodeType":"FunctionDefinition","parameters":{"id":6336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6335,"mutability":"mutable","name":"shares","nameLocation":"8609:6:25","nodeType":"VariableDeclaration","scope":6348,"src":"8601:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6334,"name":"uint256","nodeType":"ElementaryTypeName","src":"8601:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8600:16:25"},"returnParameters":{"id":6339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6338,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6348,"src":"8646:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6337,"name":"uint256","nodeType":"ElementaryTypeName","src":"8646:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8645:9:25"},"scope":6725,"src":"8580:143:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9755],"body":{"id":6363,"nodeType":"Block","src":"8856:68:25","statements":[{"expression":{"arguments":[{"id":6357,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6351,"src":"8890:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6358,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"8898:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8903:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"8898:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8912:4:25","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":18217,"src":"8898:18:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6356,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"8873:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8873:44:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6355,"id":6362,"nodeType":"Return","src":"8866:51:25"}]},"documentation":{"id":6349,"nodeType":"StructuredDocumentation","src":"8729:43:25","text":"@dev See {IERC4626-previewWithdraw}. "},"functionSelector":"0a28a477","id":6364,"implemented":true,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"8786:15:25","nodeType":"FunctionDefinition","parameters":{"id":6352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6351,"mutability":"mutable","name":"assets","nameLocation":"8810:6:25","nodeType":"VariableDeclaration","scope":6364,"src":"8802:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6350,"name":"uint256","nodeType":"ElementaryTypeName","src":"8802:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8801:16:25"},"returnParameters":{"id":6355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6354,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6364,"src":"8847:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6353,"name":"uint256","nodeType":"ElementaryTypeName","src":"8847:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8846:9:25"},"scope":6725,"src":"8777:147:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9783],"body":{"id":6379,"nodeType":"Block","src":"9053:69:25","statements":[{"expression":{"arguments":[{"id":6373,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6367,"src":"9087:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":6374,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"9095:4:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":6375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9100:8:25","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"9095:13:25","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":6376,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9109:5:25","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"9095:19:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":6372,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6618,"src":"9070:16:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":6377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9070:45:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6371,"id":6378,"nodeType":"Return","src":"9063:52:25"}]},"documentation":{"id":6365,"nodeType":"StructuredDocumentation","src":"8930:41:25","text":"@dev See {IERC4626-previewRedeem}. "},"functionSelector":"4cdad506","id":6380,"implemented":true,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"8985:13:25","nodeType":"FunctionDefinition","parameters":{"id":6368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6367,"mutability":"mutable","name":"shares","nameLocation":"9007:6:25","nodeType":"VariableDeclaration","scope":6380,"src":"8999:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6366,"name":"uint256","nodeType":"ElementaryTypeName","src":"8999:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8998:16:25"},"returnParameters":{"id":6371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6370,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6380,"src":"9044:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6369,"name":"uint256","nodeType":"ElementaryTypeName","src":"9044:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9043:9:25"},"scope":6725,"src":"8976:146:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9713],"body":{"id":6423,"nodeType":"Block","src":"9252:308:25","statements":[{"assignments":[6391],"declarations":[{"constant":false,"id":6391,"mutability":"mutable","name":"maxAssets","nameLocation":"9270:9:25","nodeType":"VariableDeclaration","scope":6423,"src":"9262:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6390,"name":"uint256","nodeType":"ElementaryTypeName","src":"9262:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6395,"initialValue":{"arguments":[{"id":6393,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6385,"src":"9293:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6392,"name":"maxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6270,"src":"9282:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9282:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9262:40:25"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6396,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6383,"src":"9316:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6397,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6391,"src":"9325:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9316:18:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6406,"nodeType":"IfStatement","src":"9312:110:25","trueBody":{"id":6405,"nodeType":"Block","src":"9336:86:25","statements":[{"errorCall":{"arguments":[{"id":6400,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6385,"src":"9383:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6401,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6383,"src":"9393:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6402,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6391,"src":"9401:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6399,"name":"ERC4626ExceededMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6014,"src":"9357:25:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":6403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9357:54:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6404,"nodeType":"RevertStatement","src":"9350:61:25"}]}},{"assignments":[6408],"declarations":[{"constant":false,"id":6408,"mutability":"mutable","name":"shares","nameLocation":"9440:6:25","nodeType":"VariableDeclaration","scope":6423,"src":"9432:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6407,"name":"uint256","nodeType":"ElementaryTypeName","src":"9432:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6412,"initialValue":{"arguments":[{"id":6410,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6383,"src":"9464:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6409,"name":"previewDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6332,"src":"9449:14:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9449:22:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9432:39:25"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6414,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"9490:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9490:12:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6416,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6385,"src":"9504:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6417,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6383,"src":"9514:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6418,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6408,"src":"9522:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6413,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6662,"src":"9481:8:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":6419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9481:48:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6420,"nodeType":"ExpressionStatement","src":"9481:48:25"},{"expression":{"id":6421,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6408,"src":"9547:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6389,"id":6422,"nodeType":"Return","src":"9540:13:25"}]},"documentation":{"id":6381,"nodeType":"StructuredDocumentation","src":"9128:35:25","text":"@dev See {IERC4626-deposit}. "},"functionSelector":"6e553f65","id":6424,"implemented":true,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"9177:7:25","nodeType":"FunctionDefinition","parameters":{"id":6386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6383,"mutability":"mutable","name":"assets","nameLocation":"9193:6:25","nodeType":"VariableDeclaration","scope":6424,"src":"9185:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6382,"name":"uint256","nodeType":"ElementaryTypeName","src":"9185:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6385,"mutability":"mutable","name":"receiver","nameLocation":"9209:8:25","nodeType":"VariableDeclaration","scope":6424,"src":"9201:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6384,"name":"address","nodeType":"ElementaryTypeName","src":"9201:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9184:34:25"},"returnParameters":{"id":6389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6424,"src":"9243:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6387,"name":"uint256","nodeType":"ElementaryTypeName","src":"9243:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9242:9:25"},"scope":6725,"src":"9168:392:25","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9739],"body":{"id":6467,"nodeType":"Block","src":"9684:299:25","statements":[{"assignments":[6435],"declarations":[{"constant":false,"id":6435,"mutability":"mutable","name":"maxShares","nameLocation":"9702:9:25","nodeType":"VariableDeclaration","scope":6467,"src":"9694:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6434,"name":"uint256","nodeType":"ElementaryTypeName","src":"9694:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6439,"initialValue":{"arguments":[{"id":6437,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6429,"src":"9722:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6436,"name":"maxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6285,"src":"9714:7:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9714:17:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9694:37:25"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6440,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6427,"src":"9745:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6441,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6435,"src":"9754:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9745:18:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6450,"nodeType":"IfStatement","src":"9741:107:25","trueBody":{"id":6449,"nodeType":"Block","src":"9765:83:25","statements":[{"errorCall":{"arguments":[{"id":6444,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6429,"src":"9809:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6445,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6427,"src":"9819:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6446,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6435,"src":"9827:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6443,"name":"ERC4626ExceededMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6023,"src":"9786:22:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":6447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9786:51:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6448,"nodeType":"RevertStatement","src":"9779:58:25"}]}},{"assignments":[6452],"declarations":[{"constant":false,"id":6452,"mutability":"mutable","name":"assets","nameLocation":"9866:6:25","nodeType":"VariableDeclaration","scope":6467,"src":"9858:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6451,"name":"uint256","nodeType":"ElementaryTypeName","src":"9858:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6456,"initialValue":{"arguments":[{"id":6454,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6427,"src":"9887:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6453,"name":"previewMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6348,"src":"9875:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9875:19:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9858:36:25"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6458,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"9913:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9913:12:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6460,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6429,"src":"9927:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6461,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6452,"src":"9937:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6462,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6427,"src":"9945:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6457,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6662,"src":"9904:8:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":6463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9904:48:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6464,"nodeType":"ExpressionStatement","src":"9904:48:25"},{"expression":{"id":6465,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6452,"src":"9970:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6433,"id":6466,"nodeType":"Return","src":"9963:13:25"}]},"documentation":{"id":6425,"nodeType":"StructuredDocumentation","src":"9566:32:25","text":"@dev See {IERC4626-mint}. "},"functionSelector":"94bf804d","id":6468,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"9612:4:25","nodeType":"FunctionDefinition","parameters":{"id":6430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6427,"mutability":"mutable","name":"shares","nameLocation":"9625:6:25","nodeType":"VariableDeclaration","scope":6468,"src":"9617:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6426,"name":"uint256","nodeType":"ElementaryTypeName","src":"9617:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6429,"mutability":"mutable","name":"receiver","nameLocation":"9641:8:25","nodeType":"VariableDeclaration","scope":6468,"src":"9633:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6428,"name":"address","nodeType":"ElementaryTypeName","src":"9633:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9616:34:25"},"returnParameters":{"id":6433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6432,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6468,"src":"9675:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6431,"name":"uint256","nodeType":"ElementaryTypeName","src":"9675:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9674:9:25"},"scope":6725,"src":"9603:380:25","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9767],"body":{"id":6514,"nodeType":"Block","src":"10130:313:25","statements":[{"assignments":[6481],"declarations":[{"constant":false,"id":6481,"mutability":"mutable","name":"maxAssets","nameLocation":"10148:9:25","nodeType":"VariableDeclaration","scope":6514,"src":"10140:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6480,"name":"uint256","nodeType":"ElementaryTypeName","src":"10140:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6485,"initialValue":{"arguments":[{"id":6483,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6475,"src":"10172:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6482,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6303,"src":"10160:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10160:18:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10140:38:25"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6486,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"10192:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6487,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6481,"src":"10201:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10192:18:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6496,"nodeType":"IfStatement","src":"10188:108:25","trueBody":{"id":6495,"nodeType":"Block","src":"10212:84:25","statements":[{"errorCall":{"arguments":[{"id":6490,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6475,"src":"10260:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6491,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"10267:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6492,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6481,"src":"10275:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6489,"name":"ERC4626ExceededMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6032,"src":"10233:26:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":6493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10233:52:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6494,"nodeType":"RevertStatement","src":"10226:59:25"}]}},{"assignments":[6498],"declarations":[{"constant":false,"id":6498,"mutability":"mutable","name":"shares","nameLocation":"10314:6:25","nodeType":"VariableDeclaration","scope":6514,"src":"10306:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6497,"name":"uint256","nodeType":"ElementaryTypeName","src":"10306:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6502,"initialValue":{"arguments":[{"id":6500,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"10339:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6499,"name":"previewWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6364,"src":"10323:15:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10323:23:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10306:40:25"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6504,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"10366:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10366:12:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6506,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6473,"src":"10380:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6507,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6475,"src":"10390:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6508,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6471,"src":"10397:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6509,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6498,"src":"10405:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6503,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6716,"src":"10356:9:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":6510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10356:56:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6511,"nodeType":"ExpressionStatement","src":"10356:56:25"},{"expression":{"id":6512,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6498,"src":"10430:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6479,"id":6513,"nodeType":"Return","src":"10423:13:25"}]},"documentation":{"id":6469,"nodeType":"StructuredDocumentation","src":"9989:36:25","text":"@dev See {IERC4626-withdraw}. "},"functionSelector":"b460af94","id":6515,"implemented":true,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"10039:8:25","nodeType":"FunctionDefinition","parameters":{"id":6476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6471,"mutability":"mutable","name":"assets","nameLocation":"10056:6:25","nodeType":"VariableDeclaration","scope":6515,"src":"10048:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6470,"name":"uint256","nodeType":"ElementaryTypeName","src":"10048:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6473,"mutability":"mutable","name":"receiver","nameLocation":"10072:8:25","nodeType":"VariableDeclaration","scope":6515,"src":"10064:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6472,"name":"address","nodeType":"ElementaryTypeName","src":"10064:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6475,"mutability":"mutable","name":"owner","nameLocation":"10090:5:25","nodeType":"VariableDeclaration","scope":6515,"src":"10082:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6474,"name":"address","nodeType":"ElementaryTypeName","src":"10082:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10047:49:25"},"returnParameters":{"id":6479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6478,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6515,"src":"10121:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6477,"name":"uint256","nodeType":"ElementaryTypeName","src":"10121:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10120:9:25"},"scope":6725,"src":"10030:413:25","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9795],"body":{"id":6561,"nodeType":"Block","src":"10586:307:25","statements":[{"assignments":[6528],"declarations":[{"constant":false,"id":6528,"mutability":"mutable","name":"maxShares","nameLocation":"10604:9:25","nodeType":"VariableDeclaration","scope":6561,"src":"10596:17:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6527,"name":"uint256","nodeType":"ElementaryTypeName","src":"10596:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6532,"initialValue":{"arguments":[{"id":6530,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"10626:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6529,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6316,"src":"10616:9:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10616:16:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10596:36:25"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6533,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6518,"src":"10646:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6534,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6528,"src":"10655:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10646:18:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6543,"nodeType":"IfStatement","src":"10642:106:25","trueBody":{"id":6542,"nodeType":"Block","src":"10666:82:25","statements":[{"errorCall":{"arguments":[{"id":6537,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"10712:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6538,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6518,"src":"10719:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6539,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6528,"src":"10727:9:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6536,"name":"ERC4626ExceededMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6041,"src":"10687:24:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":6540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:50:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6541,"nodeType":"RevertStatement","src":"10680:57:25"}]}},{"assignments":[6545],"declarations":[{"constant":false,"id":6545,"mutability":"mutable","name":"assets","nameLocation":"10766:6:25","nodeType":"VariableDeclaration","scope":6561,"src":"10758:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6544,"name":"uint256","nodeType":"ElementaryTypeName","src":"10758:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6549,"initialValue":{"arguments":[{"id":6547,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6518,"src":"10789:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6546,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"10775:13:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10775:21:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10758:38:25"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6551,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6753,"src":"10816:10:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10816:12:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6553,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6520,"src":"10830:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6554,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6522,"src":"10840:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6555,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"10847:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6556,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6518,"src":"10855:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6550,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6716,"src":"10806:9:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":6557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10806:56:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6558,"nodeType":"ExpressionStatement","src":"10806:56:25"},{"expression":{"id":6559,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6545,"src":"10880:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6526,"id":6560,"nodeType":"Return","src":"10873:13:25"}]},"documentation":{"id":6516,"nodeType":"StructuredDocumentation","src":"10449:34:25","text":"@dev See {IERC4626-redeem}. "},"functionSelector":"ba087652","id":6562,"implemented":true,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"10497:6:25","nodeType":"FunctionDefinition","parameters":{"id":6523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6518,"mutability":"mutable","name":"shares","nameLocation":"10512:6:25","nodeType":"VariableDeclaration","scope":6562,"src":"10504:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6517,"name":"uint256","nodeType":"ElementaryTypeName","src":"10504:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6520,"mutability":"mutable","name":"receiver","nameLocation":"10528:8:25","nodeType":"VariableDeclaration","scope":6562,"src":"10520:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6519,"name":"address","nodeType":"ElementaryTypeName","src":"10520:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6522,"mutability":"mutable","name":"owner","nameLocation":"10546:5:25","nodeType":"VariableDeclaration","scope":6562,"src":"10538:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6521,"name":"address","nodeType":"ElementaryTypeName","src":"10538:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10503:49:25"},"returnParameters":{"id":6526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6525,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6562,"src":"10577:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6524,"name":"uint256","nodeType":"ElementaryTypeName","src":"10577:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10576:9:25"},"scope":6725,"src":"10488:405:25","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":6589,"nodeType":"Block","src":"11123:107:25","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6575,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5497,"src":"11154:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11154:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11170:2:25","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6578,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6724,"src":"11176:15:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":6579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11176:17:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11170:23:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11154:39:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6582,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6223,"src":"11195:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11195:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":6584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11211:1:25","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11195:17:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6586,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6568,"src":"11214:8:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"expression":{"id":6573,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6565,"src":"11140:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11147:6:25","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"11140:13:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":6587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11140:83:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6572,"id":6588,"nodeType":"Return","src":"11133:90:25"}]},"documentation":{"id":6563,"nodeType":"StructuredDocumentation","src":"10899:113:25","text":" @dev Internal conversion function (from assets to shares) with support for rounding direction."},"id":6590,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToShares","nameLocation":"11026:16:25","nodeType":"FunctionDefinition","parameters":{"id":6569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6565,"mutability":"mutable","name":"assets","nameLocation":"11051:6:25","nodeType":"VariableDeclaration","scope":6590,"src":"11043:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6564,"name":"uint256","nodeType":"ElementaryTypeName","src":"11043:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6568,"mutability":"mutable","name":"rounding","nameLocation":"11073:8:25","nodeType":"VariableDeclaration","scope":6590,"src":"11059:22:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":6567,"nodeType":"UserDefinedTypeName","pathNode":{"id":6566,"name":"Math.Rounding","nameLocations":["11059:4:25","11064:8:25"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"11059:13:25"},"referencedDeclaration":18220,"src":"11059:13:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11042:40:25"},"returnParameters":{"id":6572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6571,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6590,"src":"11114:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6570,"name":"uint256","nodeType":"ElementaryTypeName","src":"11114:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11113:9:25"},"scope":6725,"src":"11017:213:25","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6617,"nodeType":"Block","src":"11460:107:25","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6603,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6223,"src":"11491:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11491:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":6605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11507:1:25","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11491:17:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6607,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5497,"src":"11510:11:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11510:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":6609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11526:2:25","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6610,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6724,"src":"11532:15:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":6611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11532:17:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11526:23:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11510:39:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6614,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6596,"src":"11551:8:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"expression":{"id":6601,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6593,"src":"11477:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11484:6:25","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"11477:13:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":6615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11477:83:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6600,"id":6616,"nodeType":"Return","src":"11470:90:25"}]},"documentation":{"id":6591,"nodeType":"StructuredDocumentation","src":"11236:113:25","text":" @dev Internal conversion function (from shares to assets) with support for rounding direction."},"id":6618,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToAssets","nameLocation":"11363:16:25","nodeType":"FunctionDefinition","parameters":{"id":6597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6593,"mutability":"mutable","name":"shares","nameLocation":"11388:6:25","nodeType":"VariableDeclaration","scope":6618,"src":"11380:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6592,"name":"uint256","nodeType":"ElementaryTypeName","src":"11380:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6596,"mutability":"mutable","name":"rounding","nameLocation":"11410:8:25","nodeType":"VariableDeclaration","scope":6618,"src":"11396:22:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":6595,"nodeType":"UserDefinedTypeName","pathNode":{"id":6594,"name":"Math.Rounding","nameLocations":["11396:4:25","11401:8:25"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"11396:13:25"},"referencedDeclaration":18220,"src":"11396:13:25","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11379:40:25"},"returnParameters":{"id":6600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6599,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6618,"src":"11451:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6598,"name":"uint256","nodeType":"ElementaryTypeName","src":"11451:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11450:9:25"},"scope":6725,"src":"11354:213:25","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6661,"nodeType":"Block","src":"11732:789:25","statements":[{"assignments":[6632],"declarations":[{"constant":false,"id":6632,"mutability":"mutable","name":"$","nameLocation":"11765:1:25","nodeType":"VariableDeclaration","scope":6661,"src":"11742:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6631,"nodeType":"UserDefinedTypeName","pathNode":{"id":6630,"name":"ERC4626Storage","nameLocations":["11742:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"11742:14:25"},"referencedDeclaration":5994,"src":"11742:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":6635,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6633,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"11769:18:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":6634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11769:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11742:47:25"},{"expression":{"arguments":[{"expression":{"id":6639,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6632,"src":"12384:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6640,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12386:6:25","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":5991,"src":"12384:8:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":6641,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6621,"src":"12394:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6644,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12410:4:25","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$6725","typeString":"contract ERC4626Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$6725","typeString":"contract ERC4626Upgradeable"}],"id":6643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12402:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6642,"name":"address","nodeType":"ElementaryTypeName","src":"12402:7:25","typeDescriptions":{}}},"id":6645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12402:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6646,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6625,"src":"12417:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6636,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"12357:9:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$12185_$","typeString":"type(library SafeERC20)"}},"id":6638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12367:16:25","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":11848,"src":"12357:26:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":6647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12357:67:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6648,"nodeType":"ExpressionStatement","src":"12357:67:25"},{"expression":{"arguments":[{"id":6650,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6623,"src":"12440:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6651,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6627,"src":"12450:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6649,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5793,"src":"12434:5:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12434:23:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6653,"nodeType":"ExpressionStatement","src":"12434:23:25"},{"eventCall":{"arguments":[{"id":6655,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6621,"src":"12481:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6656,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6623,"src":"12489:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6657,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6625,"src":"12499:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6658,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6627,"src":"12507:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6654,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9647,"src":"12473:7:25","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":6659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12473:41:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6660,"nodeType":"EmitStatement","src":"12468:46:25"}]},"documentation":{"id":6619,"nodeType":"StructuredDocumentation","src":"11573:53:25","text":" @dev Deposit/mint common workflow."},"id":6662,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"11640:8:25","nodeType":"FunctionDefinition","parameters":{"id":6628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6621,"mutability":"mutable","name":"caller","nameLocation":"11657:6:25","nodeType":"VariableDeclaration","scope":6662,"src":"11649:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6620,"name":"address","nodeType":"ElementaryTypeName","src":"11649:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6623,"mutability":"mutable","name":"receiver","nameLocation":"11673:8:25","nodeType":"VariableDeclaration","scope":6662,"src":"11665:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6622,"name":"address","nodeType":"ElementaryTypeName","src":"11665:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6625,"mutability":"mutable","name":"assets","nameLocation":"11691:6:25","nodeType":"VariableDeclaration","scope":6662,"src":"11683:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6624,"name":"uint256","nodeType":"ElementaryTypeName","src":"11683:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6627,"mutability":"mutable","name":"shares","nameLocation":"11707:6:25","nodeType":"VariableDeclaration","scope":6662,"src":"11699:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6626,"name":"uint256","nodeType":"ElementaryTypeName","src":"11699:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11648:66:25"},"returnParameters":{"id":6629,"nodeType":"ParameterList","parameters":[],"src":"11732:0:25"},"scope":6725,"src":"11631:890:25","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6715,"nodeType":"Block","src":"12751:811:25","statements":[{"assignments":[6678],"declarations":[{"constant":false,"id":6678,"mutability":"mutable","name":"$","nameLocation":"12784:1:25","nodeType":"VariableDeclaration","scope":6715,"src":"12761:24:25","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":6677,"nodeType":"UserDefinedTypeName","pathNode":{"id":6676,"name":"ERC4626Storage","nameLocations":["12761:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"12761:14:25"},"referencedDeclaration":5994,"src":"12761:14:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":6681,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6679,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6005,"src":"12788:18:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":6680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12788:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"12761:47:25"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6682,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6665,"src":"12822:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6683,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6669,"src":"12832:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12822:15:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6692,"nodeType":"IfStatement","src":"12818:84:25","trueBody":{"id":6691,"nodeType":"Block","src":"12839:63:25","statements":[{"expression":{"arguments":[{"id":6686,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6669,"src":"12869:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6687,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6665,"src":"12876:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6688,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6673,"src":"12884:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6685,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5960,"src":"12853:15:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12853:38:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6690,"nodeType":"ExpressionStatement","src":"12853:38:25"}]}},{"expression":{"arguments":[{"id":6694,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6669,"src":"13416:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6695,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6673,"src":"13423:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6693,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5826,"src":"13410:5:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13410:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6697,"nodeType":"ExpressionStatement","src":"13410:20:25"},{"expression":{"arguments":[{"expression":{"id":6701,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6678,"src":"13463:1:25","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":6702,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13465:6:25","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":5991,"src":"13463:8:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":6703,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6667,"src":"13473:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6704,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6671,"src":"13483:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6698,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"13440:9:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$12185_$","typeString":"type(library SafeERC20)"}},"id":6700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13450:12:25","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":11821,"src":"13440:22:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":6705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13440:50:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6706,"nodeType":"ExpressionStatement","src":"13440:50:25"},{"eventCall":{"arguments":[{"id":6708,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6665,"src":"13515:6:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6709,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6667,"src":"13523:8:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6710,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6669,"src":"13533:5:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6711,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6671,"src":"13540:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6712,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6673,"src":"13548:6:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6707,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9659,"src":"13506:8:25","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":6713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13506:49:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6714,"nodeType":"EmitStatement","src":"13501:54:25"}]},"documentation":{"id":6663,"nodeType":"StructuredDocumentation","src":"12527:56:25","text":" @dev Withdraw/redeem common workflow."},"id":6716,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"12597:9:25","nodeType":"FunctionDefinition","parameters":{"id":6674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6665,"mutability":"mutable","name":"caller","nameLocation":"12624:6:25","nodeType":"VariableDeclaration","scope":6716,"src":"12616:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6664,"name":"address","nodeType":"ElementaryTypeName","src":"12616:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6667,"mutability":"mutable","name":"receiver","nameLocation":"12648:8:25","nodeType":"VariableDeclaration","scope":6716,"src":"12640:16:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6666,"name":"address","nodeType":"ElementaryTypeName","src":"12640:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6669,"mutability":"mutable","name":"owner","nameLocation":"12674:5:25","nodeType":"VariableDeclaration","scope":6716,"src":"12666:13:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6668,"name":"address","nodeType":"ElementaryTypeName","src":"12666:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6671,"mutability":"mutable","name":"assets","nameLocation":"12697:6:25","nodeType":"VariableDeclaration","scope":6716,"src":"12689:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6670,"name":"uint256","nodeType":"ElementaryTypeName","src":"12689:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6673,"mutability":"mutable","name":"shares","nameLocation":"12721:6:25","nodeType":"VariableDeclaration","scope":6716,"src":"12713:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6672,"name":"uint256","nodeType":"ElementaryTypeName","src":"12713:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12606:127:25"},"returnParameters":{"id":6675,"nodeType":"ParameterList","parameters":[],"src":"12751:0:25"},"scope":6725,"src":"12588:974:25","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6723,"nodeType":"Block","src":"13633:25:25","statements":[{"expression":{"hexValue":"30","id":6721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13650:1:25","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":6720,"id":6722,"nodeType":"Return","src":"13643:8:25"}]},"id":6724,"implemented":true,"kind":"function","modifiers":[],"name":"_decimalsOffset","nameLocation":"13577:15:25","nodeType":"FunctionDefinition","parameters":{"id":6717,"nodeType":"ParameterList","parameters":[],"src":"13592:2:25"},"returnParameters":{"id":6720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6719,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6724,"src":"13626:5:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6718,"name":"uint8","nodeType":"ElementaryTypeName","src":"13626:5:25","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"13625:7:25"},"scope":6725,"src":"13568:90:25","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":6726,"src":"3569:10091:25","usedErrors":[4925,4928,6014,6023,6032,6041,9826,9831,9836,9845,9850,9855,11788],"usedEvents":[4933,9647,9659,10999,11008]}],"src":"118:13543:25"},"id":25},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[6771],"Initializable":[5162]},"id":6772,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6727,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:26"},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":6729,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":6772,"sourceUnit":5163,"src":"126:63:26","symbolAliases":[{"foreign":{"id":6728,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5162,"src":"134:13:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6731,"name":"Initializable","nameLocations":["728:13:26"],"nodeType":"IdentifierPath","referencedDeclaration":5162,"src":"728:13:26"},"id":6732,"nodeType":"InheritanceSpecifier","src":"728:13:26"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":6730,"nodeType":"StructuredDocumentation","src":"191:496:26","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":6771,"linearizedBaseContracts":[6771,5162],"name":"ContextUpgradeable","nameLocation":"706:18:26","nodeType":"ContractDefinition","nodes":[{"body":{"id":6737,"nodeType":"Block","src":"800:7:26","statements":[]},"id":6738,"implemented":true,"kind":"function","modifiers":[{"id":6735,"kind":"modifierInvocation","modifierName":{"id":6734,"name":"onlyInitializing","nameLocations":["783:16:26"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"783:16:26"},"nodeType":"ModifierInvocation","src":"783:16:26"}],"name":"__Context_init","nameLocation":"757:14:26","nodeType":"FunctionDefinition","parameters":{"id":6733,"nodeType":"ParameterList","parameters":[],"src":"771:2:26"},"returnParameters":{"id":6736,"nodeType":"ParameterList","parameters":[],"src":"800:0:26"},"scope":6771,"src":"748:59:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6743,"nodeType":"Block","src":"875:7:26","statements":[]},"id":6744,"implemented":true,"kind":"function","modifiers":[{"id":6741,"kind":"modifierInvocation","modifierName":{"id":6740,"name":"onlyInitializing","nameLocations":["858:16:26"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"858:16:26"},"nodeType":"ModifierInvocation","src":"858:16:26"}],"name":"__Context_init_unchained","nameLocation":"822:24:26","nodeType":"FunctionDefinition","parameters":{"id":6739,"nodeType":"ParameterList","parameters":[],"src":"846:2:26"},"returnParameters":{"id":6742,"nodeType":"ParameterList","parameters":[],"src":"875:0:26"},"scope":6771,"src":"813:69:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6752,"nodeType":"Block","src":"949:34:26","statements":[{"expression":{"expression":{"id":6749,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"966:3:26","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"970:6:26","memberName":"sender","nodeType":"MemberAccess","src":"966:10:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":6748,"id":6751,"nodeType":"Return","src":"959:17:26"}]},"id":6753,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"896:10:26","nodeType":"FunctionDefinition","parameters":{"id":6745,"nodeType":"ParameterList","parameters":[],"src":"906:2:26"},"returnParameters":{"id":6748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6747,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6753,"src":"940:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6746,"name":"address","nodeType":"ElementaryTypeName","src":"940:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"939:9:26"},"scope":6771,"src":"887:96:26","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6761,"nodeType":"Block","src":"1056:32:26","statements":[{"expression":{"expression":{"id":6758,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1073:3:26","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1077:4:26","memberName":"data","nodeType":"MemberAccess","src":"1073:8:26","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":6757,"id":6760,"nodeType":"Return","src":"1066:15:26"}]},"id":6762,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"998:8:26","nodeType":"FunctionDefinition","parameters":{"id":6754,"nodeType":"ParameterList","parameters":[],"src":"1006:2:26"},"returnParameters":{"id":6757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6762,"src":"1040:14:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":6755,"name":"bytes","nodeType":"ElementaryTypeName","src":"1040:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1039:16:26"},"scope":6771,"src":"989:99:26","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6769,"nodeType":"Block","src":"1166:25:26","statements":[{"expression":{"hexValue":"30","id":6767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1183:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":6766,"id":6768,"nodeType":"Return","src":"1176:8:26"}]},"id":6770,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1103:20:26","nodeType":"FunctionDefinition","parameters":{"id":6763,"nodeType":"ParameterList","parameters":[],"src":"1123:2:26"},"returnParameters":{"id":6766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6770,"src":"1157:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6764,"name":"uint256","nodeType":"ElementaryTypeName","src":"1157:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1156:9:26"},"scope":6771,"src":"1094:97:26","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":6772,"src":"688:505:26","usedErrors":[4925,4928],"usedEvents":[4933]}],"src":"101:1093:26"},"id":26},"@openzeppelin/contracts/access/AccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","exportedSymbols":{"AccessControl":[7067],"Context":[12610],"ERC165":[18196],"IAccessControl":[7150]},"id":7068,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":6773,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:27"},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"./IAccessControl.sol","id":6775,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7068,"sourceUnit":7151,"src":"134:52:27","symbolAliases":[{"foreign":{"id":6774,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7150,"src":"142:14:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":6777,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7068,"sourceUnit":12611,"src":"187:45:27","symbolAliases":[{"foreign":{"id":6776,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"195:7:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":6779,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7068,"sourceUnit":18197,"src":"233:57:27","symbolAliases":[{"foreign":{"id":6778,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18196,"src":"241:6:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6781,"name":"Context","nameLocations":["1988:7:27"],"nodeType":"IdentifierPath","referencedDeclaration":12610,"src":"1988:7:27"},"id":6782,"nodeType":"InheritanceSpecifier","src":"1988:7:27"},{"baseName":{"id":6783,"name":"IAccessControl","nameLocations":["1997:14:27"],"nodeType":"IdentifierPath","referencedDeclaration":7150,"src":"1997:14:27"},"id":6784,"nodeType":"InheritanceSpecifier","src":"1997:14:27"},{"baseName":{"id":6785,"name":"ERC165","nameLocations":["2013:6:27"],"nodeType":"IdentifierPath","referencedDeclaration":18196,"src":"2013:6:27"},"id":6786,"nodeType":"InheritanceSpecifier","src":"2013:6:27"}],"canonicalName":"AccessControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":6780,"nodeType":"StructuredDocumentation","src":"292:1660:27","text":" @dev Contract module that allows children to implement role-based access\n control mechanisms. This is a lightweight version that doesn't allow enumerating role\n members except through off-chain means by accessing the contract event logs. Some\n applications may benefit from on-chain enumerability, for those cases see\n {AccessControlEnumerable}.\n Roles are referred to by their `bytes32` identifier. These should be exposed\n in the external API and be unique. The best way to achieve this is by\n using `public constant` hash digests:\n ```solidity\n bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\");\n ```\n Roles can be used to represent a set of permissions. To restrict access to a\n function call, use {hasRole}:\n ```solidity\n function foo() public {\n     require(hasRole(MY_ROLE, msg.sender));\n     ...\n }\n ```\n Roles can be granted and revoked dynamically via the {grantRole} and\n {revokeRole} functions. Each role has an associated admin role, and only\n accounts that have a role's admin role can call {grantRole} and {revokeRole}.\n By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means\n that only accounts with this role will be able to grant or revoke other\n roles. More complex role relationships can be created by using\n {_setRoleAdmin}.\n WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to\n grant and revoke this role. Extra precautions should be taken to secure\n accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}\n to enforce additional security measures for this role."},"fullyImplemented":true,"id":7067,"linearizedBaseContracts":[7067,18196,18208,7150,12610],"name":"AccessControl","nameLocation":"1971:13:27","nodeType":"ContractDefinition","nodes":[{"canonicalName":"AccessControl.RoleData","id":6793,"members":[{"constant":false,"id":6790,"mutability":"mutable","name":"hasRole","nameLocation":"2085:7:27","nodeType":"VariableDeclaration","scope":6793,"src":"2052:40:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":6789,"keyName":"account","keyNameLocation":"2068:7:27","keyType":{"id":6787,"name":"address","nodeType":"ElementaryTypeName","src":"2060:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2052:32:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":6788,"name":"bool","nodeType":"ElementaryTypeName","src":"2079:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":6792,"mutability":"mutable","name":"adminRole","nameLocation":"2110:9:27","nodeType":"VariableDeclaration","scope":6793,"src":"2102:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6791,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2102:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"RoleData","nameLocation":"2033:8:27","nodeType":"StructDefinition","scope":7067,"src":"2026:100:27","visibility":"public"},{"constant":false,"id":6798,"mutability":"mutable","name":"_roles","nameLocation":"2174:6:27","nodeType":"VariableDeclaration","scope":7067,"src":"2132:48:27","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"typeName":{"id":6797,"keyName":"role","keyNameLocation":"2148:4:27","keyType":{"id":6794,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2140:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2132:33:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":6796,"nodeType":"UserDefinedTypeName","pathNode":{"id":6795,"name":"RoleData","nameLocations":["2156:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":6793,"src":"2156:8:27"},"referencedDeclaration":6793,"src":"2156:8:27","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$6793_storage_ptr","typeString":"struct AccessControl.RoleData"}}},"visibility":"private"},{"constant":true,"functionSelector":"a217fddf","id":6801,"mutability":"constant","name":"DEFAULT_ADMIN_ROLE","nameLocation":"2211:18:27","nodeType":"VariableDeclaration","scope":7067,"src":"2187:49:27","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6799,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2187:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"30783030","id":6800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2232:4:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"public"},{"body":{"id":6811,"nodeType":"Block","src":"2454:44:27","statements":[{"expression":{"arguments":[{"id":6807,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6804,"src":"2475:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6806,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[6865,6886],"referencedDeclaration":6865,"src":"2464:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":6808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2464:16:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6809,"nodeType":"ExpressionStatement","src":"2464:16:27"},{"id":6810,"nodeType":"PlaceholderStatement","src":"2490:1:27"}]},"documentation":{"id":6802,"nodeType":"StructuredDocumentation","src":"2243:174:27","text":" @dev Modifier that checks that an account has a specific role. Reverts\n with an {AccessControlUnauthorizedAccount} error including the required role."},"id":6812,"name":"onlyRole","nameLocation":"2431:8:27","nodeType":"ModifierDefinition","parameters":{"id":6805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6804,"mutability":"mutable","name":"role","nameLocation":"2448:4:27","nodeType":"VariableDeclaration","scope":6812,"src":"2440:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6803,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2440:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2439:14:27"},"src":"2422:76:27","virtual":false,"visibility":"internal"},{"baseFunctions":[18195],"body":{"id":6833,"nodeType":"Block","src":"2656:111:27","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":6826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6821,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6815,"src":"2673:11:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":6823,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7150,"src":"2693:14:27","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$7150_$","typeString":"type(contract IAccessControl)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$7150_$","typeString":"type(contract IAccessControl)"}],"id":6822,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2688:4:27","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2688:20:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IAccessControl_$7150","typeString":"type(contract IAccessControl)"}},"id":6825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2709:11:27","memberName":"interfaceId","nodeType":"MemberAccess","src":"2688:32:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2673:47:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":6829,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6815,"src":"2748:11:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":6827,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2724:5:27","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessControl_$7067_$","typeString":"type(contract super AccessControl)"}},"id":6828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2730:17:27","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":18195,"src":"2724:23:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":6830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2724:36:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2673:87:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":6820,"id":6832,"nodeType":"Return","src":"2666:94:27"}]},"documentation":{"id":6813,"nodeType":"StructuredDocumentation","src":"2504:56:27","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":6834,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2574:17:27","nodeType":"FunctionDefinition","overrides":{"id":6817,"nodeType":"OverrideSpecifier","overrides":[],"src":"2632:8:27"},"parameters":{"id":6816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6815,"mutability":"mutable","name":"interfaceId","nameLocation":"2599:11:27","nodeType":"VariableDeclaration","scope":6834,"src":"2592:18:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6814,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2592:6:27","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2591:20:27"},"returnParameters":{"id":6820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6819,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6834,"src":"2650:4:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6818,"name":"bool","nodeType":"ElementaryTypeName","src":"2650:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2649:6:27"},"scope":7067,"src":"2565:202:27","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7117],"body":{"id":6851,"nodeType":"Block","src":"2937:53:27","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":6844,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"2954:6:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":6846,"indexExpression":{"id":6845,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6837,"src":"2961:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:12:27","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$6793_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":6847,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2967:7:27","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":6790,"src":"2954:20:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":6849,"indexExpression":{"id":6848,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6839,"src":"2975:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2954:29:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":6843,"id":6850,"nodeType":"Return","src":"2947:36:27"}]},"documentation":{"id":6835,"nodeType":"StructuredDocumentation","src":"2773:76:27","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":6852,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"2863:7:27","nodeType":"FunctionDefinition","parameters":{"id":6840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6837,"mutability":"mutable","name":"role","nameLocation":"2879:4:27","nodeType":"VariableDeclaration","scope":6852,"src":"2871:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6836,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2871:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6839,"mutability":"mutable","name":"account","nameLocation":"2893:7:27","nodeType":"VariableDeclaration","scope":6852,"src":"2885:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6838,"name":"address","nodeType":"ElementaryTypeName","src":"2885:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2870:31:27"},"returnParameters":{"id":6843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6842,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6852,"src":"2931:4:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6841,"name":"bool","nodeType":"ElementaryTypeName","src":"2931:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2930:6:27"},"scope":7067,"src":"2854:136:27","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":6864,"nodeType":"Block","src":"3255:47:27","statements":[{"expression":{"arguments":[{"id":6859,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6855,"src":"3276:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":6860,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"3282:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3282:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6858,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[6865,6886],"referencedDeclaration":6886,"src":"3265:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":6862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3265:30:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6863,"nodeType":"ExpressionStatement","src":"3265:30:27"}]},"documentation":{"id":6853,"nodeType":"StructuredDocumentation","src":"2996:198:27","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier."},"id":6865,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3208:10:27","nodeType":"FunctionDefinition","parameters":{"id":6856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6855,"mutability":"mutable","name":"role","nameLocation":"3227:4:27","nodeType":"VariableDeclaration","scope":6865,"src":"3219:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6854,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3219:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3218:14:27"},"returnParameters":{"id":6857,"nodeType":"ParameterList","parameters":[],"src":"3255:0:27"},"scope":7067,"src":"3199:103:27","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":6885,"nodeType":"Block","src":"3505:124:27","statements":[{"condition":{"id":6877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3519:23:27","subExpression":{"arguments":[{"id":6874,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6868,"src":"3528:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6875,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"3534:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6873,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"3520:7:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":6876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3520:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6884,"nodeType":"IfStatement","src":"3515:108:27","trueBody":{"id":6883,"nodeType":"Block","src":"3544:79:27","statements":[{"errorCall":{"arguments":[{"id":6879,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6870,"src":"3598:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6880,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6868,"src":"3607:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6878,"name":"AccessControlUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7077,"src":"3565:32:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes32_$returns$_t_error_$","typeString":"function (address,bytes32) pure returns (error)"}},"id":6881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3565:47:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6882,"nodeType":"RevertStatement","src":"3558:54:27"}]}}]},"documentation":{"id":6866,"nodeType":"StructuredDocumentation","src":"3308:119:27","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n is missing `role`."},"id":6886,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3441:10:27","nodeType":"FunctionDefinition","parameters":{"id":6871,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6868,"mutability":"mutable","name":"role","nameLocation":"3460:4:27","nodeType":"VariableDeclaration","scope":6886,"src":"3452:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6867,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3452:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6870,"mutability":"mutable","name":"account","nameLocation":"3474:7:27","nodeType":"VariableDeclaration","scope":6886,"src":"3466:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6869,"name":"address","nodeType":"ElementaryTypeName","src":"3466:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3451:31:27"},"returnParameters":{"id":6872,"nodeType":"ParameterList","parameters":[],"src":"3505:0:27"},"scope":7067,"src":"3432:197:27","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[7125],"body":{"id":6899,"nodeType":"Block","src":"3884:46:27","statements":[{"expression":{"expression":{"baseExpression":{"id":6894,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"3901:6:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":6896,"indexExpression":{"id":6895,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6889,"src":"3908:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3901:12:27","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$6793_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":6897,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3914:9:27","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":6792,"src":"3901:22:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":6893,"id":6898,"nodeType":"Return","src":"3894:29:27"}]},"documentation":{"id":6887,"nodeType":"StructuredDocumentation","src":"3635:170:27","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {_setRoleAdmin}."},"functionSelector":"248a9ca3","id":6900,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"3819:12:27","nodeType":"FunctionDefinition","parameters":{"id":6890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6889,"mutability":"mutable","name":"role","nameLocation":"3840:4:27","nodeType":"VariableDeclaration","scope":6900,"src":"3832:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6888,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3832:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3831:14:27"},"returnParameters":{"id":6893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6892,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6900,"src":"3875:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6891,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3875:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3874:9:27"},"scope":7067,"src":"3810:120:27","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[7133],"body":{"id":6918,"nodeType":"Block","src":"4320:42:27","statements":[{"expression":{"arguments":[{"id":6914,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6903,"src":"4341:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6915,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6905,"src":"4347:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6913,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"4330:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":6916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4330:25:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6917,"nodeType":"ExpressionStatement","src":"4330:25:27"}]},"documentation":{"id":6901,"nodeType":"StructuredDocumentation","src":"3936:285:27","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleGranted} event."},"functionSelector":"2f2ff15d","id":6919,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":6909,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6903,"src":"4313:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6908,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6900,"src":"4300:12:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":6910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4300:18:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":6911,"kind":"modifierInvocation","modifierName":{"id":6907,"name":"onlyRole","nameLocations":["4291:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":6812,"src":"4291:8:27"},"nodeType":"ModifierInvocation","src":"4291:28:27"}],"name":"grantRole","nameLocation":"4235:9:27","nodeType":"FunctionDefinition","parameters":{"id":6906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6903,"mutability":"mutable","name":"role","nameLocation":"4253:4:27","nodeType":"VariableDeclaration","scope":6919,"src":"4245:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6902,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4245:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6905,"mutability":"mutable","name":"account","nameLocation":"4267:7:27","nodeType":"VariableDeclaration","scope":6919,"src":"4259:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6904,"name":"address","nodeType":"ElementaryTypeName","src":"4259:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4244:31:27"},"returnParameters":{"id":6912,"nodeType":"ParameterList","parameters":[],"src":"4320:0:27"},"scope":7067,"src":"4226:136:27","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[7141],"body":{"id":6937,"nodeType":"Block","src":"4737:43:27","statements":[{"expression":{"arguments":[{"id":6933,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6922,"src":"4759:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6934,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6924,"src":"4765:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6932,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7066,"src":"4747:11:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":6935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4747:26:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6936,"nodeType":"ExpressionStatement","src":"4747:26:27"}]},"documentation":{"id":6920,"nodeType":"StructuredDocumentation","src":"4368:269:27","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role.\n May emit a {RoleRevoked} event."},"functionSelector":"d547741f","id":6938,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":6928,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6922,"src":"4730:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6927,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6900,"src":"4717:12:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":6929,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4717:18:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":6930,"kind":"modifierInvocation","modifierName":{"id":6926,"name":"onlyRole","nameLocations":["4708:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":6812,"src":"4708:8:27"},"nodeType":"ModifierInvocation","src":"4708:28:27"}],"name":"revokeRole","nameLocation":"4651:10:27","nodeType":"FunctionDefinition","parameters":{"id":6925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6922,"mutability":"mutable","name":"role","nameLocation":"4670:4:27","nodeType":"VariableDeclaration","scope":6938,"src":"4662:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6921,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4662:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6924,"mutability":"mutable","name":"account","nameLocation":"4684:7:27","nodeType":"VariableDeclaration","scope":6938,"src":"4676:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6923,"name":"address","nodeType":"ElementaryTypeName","src":"4676:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4661:31:27"},"returnParameters":{"id":6931,"nodeType":"ParameterList","parameters":[],"src":"4737:0:27"},"scope":7067,"src":"4642:138:27","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[7149],"body":{"id":6960,"nodeType":"Block","src":"5407:166:27","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6946,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6943,"src":"5421:18:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6947,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"5443:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5443:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5421:34:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6954,"nodeType":"IfStatement","src":"5417:102:27","trueBody":{"id":6953,"nodeType":"Block","src":"5457:62:27","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":6950,"name":"AccessControlBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7080,"src":"5478:28:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":6951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:30:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6952,"nodeType":"RevertStatement","src":"5471:37:27"}]}},{"expression":{"arguments":[{"id":6956,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6941,"src":"5541:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6957,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6943,"src":"5547:18:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6955,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7066,"src":"5529:11:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":6958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:37:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6959,"nodeType":"ExpressionStatement","src":"5529:37:27"}]},"documentation":{"id":6939,"nodeType":"StructuredDocumentation","src":"4786:537:27","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been revoked `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`.\n May emit a {RoleRevoked} event."},"functionSelector":"36568abe","id":6961,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"5337:12:27","nodeType":"FunctionDefinition","parameters":{"id":6944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6941,"mutability":"mutable","name":"role","nameLocation":"5358:4:27","nodeType":"VariableDeclaration","scope":6961,"src":"5350:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6940,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5350:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6943,"mutability":"mutable","name":"callerConfirmation","nameLocation":"5372:18:27","nodeType":"VariableDeclaration","scope":6961,"src":"5364:26:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6942,"name":"address","nodeType":"ElementaryTypeName","src":"5364:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5349:42:27"},"returnParameters":{"id":6945,"nodeType":"ParameterList","parameters":[],"src":"5407:0:27"},"scope":7067,"src":"5328:245:27","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":6988,"nodeType":"Block","src":"5771:174:27","statements":[{"assignments":[6970],"declarations":[{"constant":false,"id":6970,"mutability":"mutable","name":"previousAdminRole","nameLocation":"5789:17:27","nodeType":"VariableDeclaration","scope":6988,"src":"5781:25:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6969,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5781:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":6974,"initialValue":{"arguments":[{"id":6972,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6964,"src":"5822:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6971,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6900,"src":"5809:12:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":6973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5809:18:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5781:46:27"},{"expression":{"id":6980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":6975,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"5837:6:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":6977,"indexExpression":{"id":6976,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6964,"src":"5844:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5837:12:27","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$6793_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":6978,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5850:9:27","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":6792,"src":"5837:22:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6979,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6966,"src":"5862:9:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5837:34:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":6981,"nodeType":"ExpressionStatement","src":"5837:34:27"},{"eventCall":{"arguments":[{"id":6983,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6964,"src":"5903:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6984,"name":"previousAdminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6970,"src":"5909:17:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6985,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6966,"src":"5928:9:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":6982,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7089,"src":"5886:16:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32,bytes32)"}},"id":6986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5886:52:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6987,"nodeType":"EmitStatement","src":"5881:57:27"}]},"documentation":{"id":6962,"nodeType":"StructuredDocumentation","src":"5579:114:27","text":" @dev Sets `adminRole` as ``role``'s admin role.\n Emits a {RoleAdminChanged} event."},"id":6989,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"5707:13:27","nodeType":"FunctionDefinition","parameters":{"id":6967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6964,"mutability":"mutable","name":"role","nameLocation":"5729:4:27","nodeType":"VariableDeclaration","scope":6989,"src":"5721:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6963,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5721:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6966,"mutability":"mutable","name":"adminRole","nameLocation":"5743:9:27","nodeType":"VariableDeclaration","scope":6989,"src":"5735:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6965,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5735:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5720:33:27"},"returnParameters":{"id":6968,"nodeType":"ParameterList","parameters":[],"src":"5771:0:27"},"scope":7067,"src":"5698:247:27","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7027,"nodeType":"Block","src":"6262:233:27","statements":[{"condition":{"id":7003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6276:23:27","subExpression":{"arguments":[{"id":7000,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6992,"src":"6285:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7001,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6994,"src":"6291:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":6999,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"6277:7:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":7002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6277:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7025,"nodeType":"Block","src":"6452:37:27","statements":[{"expression":{"hexValue":"66616c7365","id":7023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6473:5:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":6998,"id":7024,"nodeType":"Return","src":"6466:12:27"}]},"id":7026,"nodeType":"IfStatement","src":"6272:217:27","trueBody":{"id":7022,"nodeType":"Block","src":"6301:145:27","statements":[{"expression":{"id":7011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":7004,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"6315:6:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":7006,"indexExpression":{"id":7005,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6992,"src":"6322:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6315:12:27","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$6793_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":7007,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6328:7:27","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":6790,"src":"6315:20:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":7009,"indexExpression":{"id":7008,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6994,"src":"6336:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6315:29:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":7010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6347:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6315:36:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7012,"nodeType":"ExpressionStatement","src":"6315:36:27"},{"eventCall":{"arguments":[{"id":7014,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6992,"src":"6382:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7015,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6994,"src":"6388:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7016,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"6397:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6397:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7013,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7098,"src":"6370:11:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":7018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6370:40:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7019,"nodeType":"EmitStatement","src":"6365:45:27"},{"expression":{"hexValue":"74727565","id":7020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6431:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":6998,"id":7021,"nodeType":"Return","src":"6424:11:27"}]}}]},"documentation":{"id":6990,"nodeType":"StructuredDocumentation","src":"5951:223:27","text":" @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.\n Internal function without access restriction.\n May emit a {RoleGranted} event."},"id":7028,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"6188:10:27","nodeType":"FunctionDefinition","parameters":{"id":6995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6992,"mutability":"mutable","name":"role","nameLocation":"6207:4:27","nodeType":"VariableDeclaration","scope":7028,"src":"6199:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6991,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6199:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6994,"mutability":"mutable","name":"account","nameLocation":"6221:7:27","nodeType":"VariableDeclaration","scope":7028,"src":"6213:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6993,"name":"address","nodeType":"ElementaryTypeName","src":"6213:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6198:31:27"},"returnParameters":{"id":6998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7028,"src":"6256:4:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6996,"name":"bool","nodeType":"ElementaryTypeName","src":"6256:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6255:6:27"},"scope":7067,"src":"6179:316:27","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7065,"nodeType":"Block","src":"6814:233:27","statements":[{"condition":{"arguments":[{"id":7039,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7031,"src":"6836:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7040,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7033,"src":"6842:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7038,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6852,"src":"6828:7:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":7041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6828:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7063,"nodeType":"Block","src":"7004:37:27","statements":[{"expression":{"hexValue":"66616c7365","id":7061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7025:5:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":7037,"id":7062,"nodeType":"Return","src":"7018:12:27"}]},"id":7064,"nodeType":"IfStatement","src":"6824:217:27","trueBody":{"id":7060,"nodeType":"Block","src":"6852:146:27","statements":[{"expression":{"id":7049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":7042,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"6866:6:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$6793_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":7044,"indexExpression":{"id":7043,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7031,"src":"6873:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6866:12:27","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$6793_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":7045,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6879:7:27","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":6790,"src":"6866:20:27","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":7047,"indexExpression":{"id":7046,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7033,"src":"6887:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6866:29:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":7048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6898:5:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6866:37:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7050,"nodeType":"ExpressionStatement","src":"6866:37:27"},{"eventCall":{"arguments":[{"id":7052,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7031,"src":"6934:4:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7053,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7033,"src":"6940:7:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7054,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"6949:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6949:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7051,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7107,"src":"6922:11:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":7056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6922:40:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7057,"nodeType":"EmitStatement","src":"6917:45:27"},{"expression":{"hexValue":"74727565","id":7058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6983:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":7037,"id":7059,"nodeType":"Return","src":"6976:11:27"}]}}]},"documentation":{"id":7029,"nodeType":"StructuredDocumentation","src":"6501:224:27","text":" @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.\n Internal function without access restriction.\n May emit a {RoleRevoked} event."},"id":7066,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"6739:11:27","nodeType":"FunctionDefinition","parameters":{"id":7034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7031,"mutability":"mutable","name":"role","nameLocation":"6759:4:27","nodeType":"VariableDeclaration","scope":7066,"src":"6751:12:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7030,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6751:7:27","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7033,"mutability":"mutable","name":"account","nameLocation":"6773:7:27","nodeType":"VariableDeclaration","scope":7066,"src":"6765:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7032,"name":"address","nodeType":"ElementaryTypeName","src":"6765:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6750:31:27"},"returnParameters":{"id":7037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7036,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7066,"src":"6808:4:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7035,"name":"bool","nodeType":"ElementaryTypeName","src":"6808:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6807:6:27"},"scope":7067,"src":"6730:317:27","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":7068,"src":"1953:5096:27","usedErrors":[7077,7080],"usedEvents":[7089,7098,7107]}],"src":"108:6942:27"},"id":27},"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[7150]},"id":7151,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7069,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:28"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessControl","contractDependencies":[],"contractKind":"interface","documentation":{"id":7070,"nodeType":"StructuredDocumentation","src":"135:90:28","text":" @dev External interface of AccessControl declared to support ERC-165 detection."},"fullyImplemented":false,"id":7150,"linearizedBaseContracts":[7150],"name":"IAccessControl","nameLocation":"236:14:28","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":7071,"nodeType":"StructuredDocumentation","src":"257:56:28","text":" @dev The `account` is missing a role."},"errorSelector":"e2517d3f","id":7077,"name":"AccessControlUnauthorizedAccount","nameLocation":"324:32:28","nodeType":"ErrorDefinition","parameters":{"id":7076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7073,"mutability":"mutable","name":"account","nameLocation":"365:7:28","nodeType":"VariableDeclaration","scope":7077,"src":"357:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7072,"name":"address","nodeType":"ElementaryTypeName","src":"357:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7075,"mutability":"mutable","name":"neededRole","nameLocation":"382:10:28","nodeType":"VariableDeclaration","scope":7077,"src":"374:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7074,"name":"bytes32","nodeType":"ElementaryTypeName","src":"374:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"356:37:28"},"src":"318:76:28"},{"documentation":{"id":7078,"nodeType":"StructuredDocumentation","src":"400:148:28","text":" @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."},"errorSelector":"6697b232","id":7080,"name":"AccessControlBadConfirmation","nameLocation":"559:28:28","nodeType":"ErrorDefinition","parameters":{"id":7079,"nodeType":"ParameterList","parameters":[],"src":"587:2:28"},"src":"553:37:28"},{"anonymous":false,"documentation":{"id":7081,"nodeType":"StructuredDocumentation","src":"596:254:28","text":" @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n {RoleAdminChanged} not being emitted signaling this."},"eventSelector":"bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff","id":7089,"name":"RoleAdminChanged","nameLocation":"861:16:28","nodeType":"EventDefinition","parameters":{"id":7088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7083,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"894:4:28","nodeType":"VariableDeclaration","scope":7089,"src":"878:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7082,"name":"bytes32","nodeType":"ElementaryTypeName","src":"878:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7085,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"916:17:28","nodeType":"VariableDeclaration","scope":7089,"src":"900:33:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7084,"name":"bytes32","nodeType":"ElementaryTypeName","src":"900:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7087,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"951:12:28","nodeType":"VariableDeclaration","scope":7089,"src":"935:28:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7086,"name":"bytes32","nodeType":"ElementaryTypeName","src":"935:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"877:87:28"},"src":"855:110:28"},{"anonymous":false,"documentation":{"id":7090,"nodeType":"StructuredDocumentation","src":"971:295:28","text":" @dev Emitted when `account` is granted `role`.\n `sender` is the account that originated the contract call. This account bears the admin role (for the granted role).\n Expected in cases where the role was granted using the internal {AccessControl-_grantRole}."},"eventSelector":"2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d","id":7098,"name":"RoleGranted","nameLocation":"1277:11:28","nodeType":"EventDefinition","parameters":{"id":7097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7092,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1305:4:28","nodeType":"VariableDeclaration","scope":7098,"src":"1289:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7091,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1289:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7094,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1327:7:28","nodeType":"VariableDeclaration","scope":7098,"src":"1311:23:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7093,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7096,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1352:6:28","nodeType":"VariableDeclaration","scope":7098,"src":"1336:22:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7095,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1288:71:28"},"src":"1271:89:28"},{"anonymous":false,"documentation":{"id":7099,"nodeType":"StructuredDocumentation","src":"1366:275:28","text":" @dev Emitted when `account` is revoked `role`.\n `sender` is the account that originated the contract call:\n   - if using `revokeRole`, it is the admin role bearer\n   - if using `renounceRole`, it is the role bearer (i.e. `account`)"},"eventSelector":"f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b","id":7107,"name":"RoleRevoked","nameLocation":"1652:11:28","nodeType":"EventDefinition","parameters":{"id":7106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7101,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1680:4:28","nodeType":"VariableDeclaration","scope":7107,"src":"1664:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7100,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1664:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7103,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1702:7:28","nodeType":"VariableDeclaration","scope":7107,"src":"1686:23:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7102,"name":"address","nodeType":"ElementaryTypeName","src":"1686:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7105,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1727:6:28","nodeType":"VariableDeclaration","scope":7107,"src":"1711:22:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7104,"name":"address","nodeType":"ElementaryTypeName","src":"1711:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1663:71:28"},"src":"1646:89:28"},{"documentation":{"id":7108,"nodeType":"StructuredDocumentation","src":"1741:76:28","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":7117,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1831:7:28","nodeType":"FunctionDefinition","parameters":{"id":7113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7110,"mutability":"mutable","name":"role","nameLocation":"1847:4:28","nodeType":"VariableDeclaration","scope":7117,"src":"1839:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7109,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1839:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7112,"mutability":"mutable","name":"account","nameLocation":"1861:7:28","nodeType":"VariableDeclaration","scope":7117,"src":"1853:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7111,"name":"address","nodeType":"ElementaryTypeName","src":"1853:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1838:31:28"},"returnParameters":{"id":7116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7117,"src":"1893:4:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7114,"name":"bool","nodeType":"ElementaryTypeName","src":"1893:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1892:6:28"},"scope":7150,"src":"1822:77:28","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":7118,"nodeType":"StructuredDocumentation","src":"1905:184:28","text":" @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {AccessControl-_setRoleAdmin}."},"functionSelector":"248a9ca3","id":7125,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"2103:12:28","nodeType":"FunctionDefinition","parameters":{"id":7121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7120,"mutability":"mutable","name":"role","nameLocation":"2124:4:28","nodeType":"VariableDeclaration","scope":7125,"src":"2116:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7119,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2116:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2115:14:28"},"returnParameters":{"id":7124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7123,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7125,"src":"2153:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7122,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2153:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2152:9:28"},"scope":7150,"src":"2094:68:28","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":7126,"nodeType":"StructuredDocumentation","src":"2168:239:28","text":" @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"2f2ff15d","id":7133,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2421:9:28","nodeType":"FunctionDefinition","parameters":{"id":7131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7128,"mutability":"mutable","name":"role","nameLocation":"2439:4:28","nodeType":"VariableDeclaration","scope":7133,"src":"2431:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7127,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2431:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7130,"mutability":"mutable","name":"account","nameLocation":"2453:7:28","nodeType":"VariableDeclaration","scope":7133,"src":"2445:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7129,"name":"address","nodeType":"ElementaryTypeName","src":"2445:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2430:31:28"},"returnParameters":{"id":7132,"nodeType":"ParameterList","parameters":[],"src":"2470:0:28"},"scope":7150,"src":"2412:59:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":7134,"nodeType":"StructuredDocumentation","src":"2477:223:28","text":" @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role."},"functionSelector":"d547741f","id":7141,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2714:10:28","nodeType":"FunctionDefinition","parameters":{"id":7139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7136,"mutability":"mutable","name":"role","nameLocation":"2733:4:28","nodeType":"VariableDeclaration","scope":7141,"src":"2725:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7135,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2725:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7138,"mutability":"mutable","name":"account","nameLocation":"2747:7:28","nodeType":"VariableDeclaration","scope":7141,"src":"2739:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7137,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2724:31:28"},"returnParameters":{"id":7140,"nodeType":"ParameterList","parameters":[],"src":"2764:0:28"},"scope":7150,"src":"2705:60:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":7142,"nodeType":"StructuredDocumentation","src":"2771:491:28","text":" @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been granted `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`."},"functionSelector":"36568abe","id":7149,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"3276:12:28","nodeType":"FunctionDefinition","parameters":{"id":7147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7144,"mutability":"mutable","name":"role","nameLocation":"3297:4:28","nodeType":"VariableDeclaration","scope":7149,"src":"3289:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7143,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3289:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7146,"mutability":"mutable","name":"callerConfirmation","nameLocation":"3311:18:28","nodeType":"VariableDeclaration","scope":7149,"src":"3303:26:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7145,"name":"address","nodeType":"ElementaryTypeName","src":"3303:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3288:42:28"},"returnParameters":{"id":7148,"nodeType":"ParameterList","parameters":[],"src":"3339:0:28"},"scope":7150,"src":"3267:73:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7151,"src":"226:3116:28","usedErrors":[7077,7080],"usedEvents":[7089,7098,7107]}],"src":"109:3234:28"},"id":28},"@openzeppelin/contracts/access/manager/AccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/AccessManager.sol","exportedSymbols":{"AccessManager":[9039],"Address":[12580],"Context":[12610],"IAccessManaged":[9079],"IAccessManager":[9511],"Math":[19814],"Multicall":[12719],"Time":[21997]},"id":9040,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7152,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:29"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"./IAccessManager.sol","id":7154,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":9512,"src":"142:52:29","symbolAliases":[{"foreign":{"id":7153,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9511,"src":"150:14:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","file":"./IAccessManaged.sol","id":7156,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":9080,"src":"195:52:29","symbolAliases":[{"foreign":{"id":7155,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9079,"src":"203:14:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":7158,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":12581,"src":"248:48:29","symbolAliases":[{"foreign":{"id":7157,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"256:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":7160,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":12611,"src":"297:48:29","symbolAliases":[{"foreign":{"id":7159,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"305:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","file":"../../utils/Multicall.sol","id":7162,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":12720,"src":"346:52:29","symbolAliases":[{"foreign":{"id":7161,"name":"Multicall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12719,"src":"354:9:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../utils/math/Math.sol","id":7164,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":19815,"src":"399:47:29","symbolAliases":[{"foreign":{"id":7163,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"407:4:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":7166,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9040,"sourceUnit":21998,"src":"447:48:29","symbolAliases":[{"foreign":{"id":7165,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"455:4:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":7168,"name":"Context","nameLocations":["3748:7:29"],"nodeType":"IdentifierPath","referencedDeclaration":12610,"src":"3748:7:29"},"id":7169,"nodeType":"InheritanceSpecifier","src":"3748:7:29"},{"baseName":{"id":7170,"name":"Multicall","nameLocations":["3757:9:29"],"nodeType":"IdentifierPath","referencedDeclaration":12719,"src":"3757:9:29"},"id":7171,"nodeType":"InheritanceSpecifier","src":"3757:9:29"},{"baseName":{"id":7172,"name":"IAccessManager","nameLocations":["3768:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":9511,"src":"3768:14:29"},"id":7173,"nodeType":"InheritanceSpecifier","src":"3768:14:29"}],"canonicalName":"AccessManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":7167,"nodeType":"StructuredDocumentation","src":"497:3224:29","text":" @dev AccessManager is a central contract to store the permissions of a system.\n A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the\n {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted}\n modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be\n effectively restricted.\n The restriction rules for such functions are defined in terms of \"roles\" identified by an `uint64` and scoped\n by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be\n configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}).\n For each target contract, admins can configure the following without any delay:\n * The target's {AccessManaged-authority} via {updateAuthority}.\n * Close or open a target via {setTargetClosed} keeping the permissions intact.\n * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}.\n By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise.\n Additionally, each role has the following configuration options restricted to this manager's admins:\n * A role's admin role via {setRoleAdmin} who can grant or revoke roles.\n * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations.\n * A delay in which a role takes effect after being granted through {setGrantDelay}.\n * A delay of any target's admin action via {setTargetAdminDelay}.\n * A role label for discoverability purposes with {labelRole}.\n Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions\n restricted to each role's admin (see {getRoleAdmin}).\n Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that\n they will be highly secured (e.g., a multisig or a well-configured DAO).\n NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it\n doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of\n the return data are a boolean as expected by that interface.\n NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an\n {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}.\n Users will be able to interact with these contracts through the {execute} function, following the access rules\n registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions\n will be {AccessManager} itself.\n WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very\n mindful of the danger associated with functions such as {Ownable-renounceOwnership} or\n {AccessControl-renounceRole}."},"fullyImplemented":true,"id":9039,"linearizedBaseContracts":[9039,9511,12719,12610],"name":"AccessManager","nameLocation":"3731:13:29","nodeType":"ContractDefinition","nodes":[{"global":false,"id":7175,"libraryName":{"id":7174,"name":"Time","nameLocations":["3795:4:29"],"nodeType":"IdentifierPath","referencedDeclaration":21997,"src":"3795:4:29"},"nodeType":"UsingForDirective","src":"3789:17:29"},{"canonicalName":"AccessManager.TargetConfig","id":7185,"members":[{"constant":false,"id":7179,"mutability":"mutable","name":"allowedRoles","nameLocation":"3948:12:29","nodeType":"VariableDeclaration","scope":7185,"src":"3906:54:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"typeName":{"id":7178,"keyName":"selector","keyNameLocation":"3921:8:29","keyType":{"id":7176,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3914:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Mapping","src":"3906:41:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"valueName":"roleId","valueNameLocation":"3940:6:29","valueType":{"id":7177,"name":"uint64","nodeType":"ElementaryTypeName","src":"3933:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},"visibility":"internal"},{"constant":false,"id":7182,"mutability":"mutable","name":"adminDelay","nameLocation":"3981:10:29","nodeType":"VariableDeclaration","scope":7185,"src":"3970:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":7181,"nodeType":"UserDefinedTypeName","pathNode":{"id":7180,"name":"Time.Delay","nameLocations":["3970:4:29","3975:5:29"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"3970:10:29"},"referencedDeclaration":21760,"src":"3970:10:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":7184,"mutability":"mutable","name":"closed","nameLocation":"4006:6:29","nodeType":"VariableDeclaration","scope":7185,"src":"4001:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7183,"name":"bool","nodeType":"ElementaryTypeName","src":"4001:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"TargetConfig","nameLocation":"3883:12:29","nodeType":"StructDefinition","scope":9039,"src":"3876:143:29","visibility":"public"},{"canonicalName":"AccessManager.Access","id":7191,"members":[{"constant":false,"id":7187,"mutability":"mutable","name":"since","nameLocation":"4314:5:29","nodeType":"VariableDeclaration","scope":7191,"src":"4307:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7186,"name":"uint48","nodeType":"ElementaryTypeName","src":"4307:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":7190,"mutability":"mutable","name":"delay","nameLocation":"4420:5:29","nodeType":"VariableDeclaration","scope":7191,"src":"4409:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":7189,"nodeType":"UserDefinedTypeName","pathNode":{"id":7188,"name":"Time.Delay","nameLocations":["4409:4:29","4414:5:29"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"4409:10:29"},"referencedDeclaration":21760,"src":"4409:10:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Access","nameLocation":"4138:6:29","nodeType":"StructDefinition","scope":9039,"src":"4131:301:29","visibility":"public"},{"canonicalName":"AccessManager.Role","id":7204,"members":[{"constant":false,"id":7196,"mutability":"mutable","name":"members","nameLocation":"4583:7:29","nodeType":"VariableDeclaration","scope":7204,"src":"4544:46:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"typeName":{"id":7195,"keyName":"user","keyNameLocation":"4560:4:29","keyType":{"id":7192,"name":"address","nodeType":"ElementaryTypeName","src":"4552:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4544:38:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"valueName":"access","valueNameLocation":"4575:6:29","valueType":{"id":7194,"nodeType":"UserDefinedTypeName","pathNode":{"id":7193,"name":"Access","nameLocations":["4568:6:29"],"nodeType":"IdentifierPath","referencedDeclaration":7191,"src":"4568:6:29"},"referencedDeclaration":7191,"src":"4568:6:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage_ptr","typeString":"struct AccessManager.Access"}}},"visibility":"internal"},{"constant":false,"id":7198,"mutability":"mutable","name":"admin","nameLocation":"4661:5:29","nodeType":"VariableDeclaration","scope":7204,"src":"4654:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7197,"name":"uint64","nodeType":"ElementaryTypeName","src":"4654:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7200,"mutability":"mutable","name":"guardian","nameLocation":"4770:8:29","nodeType":"VariableDeclaration","scope":7204,"src":"4763:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7199,"name":"uint64","nodeType":"ElementaryTypeName","src":"4763:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7203,"mutability":"mutable","name":"grantDelay","nameLocation":"4868:10:29","nodeType":"VariableDeclaration","scope":7204,"src":"4857:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":7202,"nodeType":"UserDefinedTypeName","pathNode":{"id":7201,"name":"Time.Delay","nameLocations":["4857:4:29","4862:5:29"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"4857:10:29"},"referencedDeclaration":21760,"src":"4857:10:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Role","nameLocation":"4497:4:29","nodeType":"StructDefinition","scope":9039,"src":"4490:395:29","visibility":"public"},{"canonicalName":"AccessManager.Schedule","id":7209,"members":[{"constant":false,"id":7206,"mutability":"mutable","name":"timepoint","nameLocation":"5090:9:29","nodeType":"VariableDeclaration","scope":7209,"src":"5083:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7205,"name":"uint48","nodeType":"ElementaryTypeName","src":"5083:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":7208,"mutability":"mutable","name":"nonce","nameLocation":"5201:5:29","nodeType":"VariableDeclaration","scope":7209,"src":"5194:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7207,"name":"uint32","nodeType":"ElementaryTypeName","src":"5194:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"name":"Schedule","nameLocation":"5006:8:29","nodeType":"StructDefinition","scope":9039,"src":"4999:214:29","visibility":"public"},{"constant":true,"documentation":{"id":7210,"nodeType":"StructuredDocumentation","src":"5219:173:29","text":" @dev The identifier of the admin role. Required to perform most configuration operations including\n other roles' management and target restrictions."},"functionSelector":"75b238fc","id":7217,"mutability":"constant","name":"ADMIN_ROLE","nameLocation":"5420:10:29","nodeType":"VariableDeclaration","scope":9039,"src":"5397:52:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7211,"name":"uint64","nodeType":"ElementaryTypeName","src":"5397:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":7214,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5438:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7213,"name":"uint64","nodeType":"ElementaryTypeName","src":"5438:6:29","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":7212,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5433:4:29","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5433:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":7216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5446:3:29","memberName":"min","nodeType":"MemberAccess","src":"5433:16:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":true,"documentation":{"id":7218,"nodeType":"StructuredDocumentation","src":"5461:112:29","text":" @dev The identifier of the public role. Automatically granted to all addresses with no delay."},"functionSelector":"3ca7c02a","id":7225,"mutability":"constant","name":"PUBLIC_ROLE","nameLocation":"5601:11:29","nodeType":"VariableDeclaration","scope":9039,"src":"5578:53:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7219,"name":"uint64","nodeType":"ElementaryTypeName","src":"5578:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":7222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5620:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":7221,"name":"uint64","nodeType":"ElementaryTypeName","src":"5620:6:29","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":7220,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5615:4:29","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5615:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":7224,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5628:3:29","memberName":"max","nodeType":"MemberAccess","src":"5615:16:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":false,"id":7230,"mutability":"mutable","name":"_targets","nameLocation":"5702:8:29","nodeType":"VariableDeclaration","scope":9039,"src":"5649:61:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"typeName":{"id":7229,"keyName":"target","keyNameLocation":"5665:6:29","keyType":{"id":7226,"name":"address","nodeType":"ElementaryTypeName","src":"5657:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"5649:44:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"valueName":"mode","valueNameLocation":"5688:4:29","valueType":{"id":7228,"nodeType":"UserDefinedTypeName","pathNode":{"id":7227,"name":"TargetConfig","nameLocations":["5675:12:29"],"nodeType":"IdentifierPath","referencedDeclaration":7185,"src":"5675:12:29"},"referencedDeclaration":7185,"src":"5675:12:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage_ptr","typeString":"struct AccessManager.TargetConfig"}}},"visibility":"private"},{"constant":false,"id":7235,"mutability":"mutable","name":"_roles","nameLocation":"5755:6:29","nodeType":"VariableDeclaration","scope":9039,"src":"5716:45:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"typeName":{"id":7234,"keyName":"roleId","keyNameLocation":"5731:6:29","keyType":{"id":7231,"name":"uint64","nodeType":"ElementaryTypeName","src":"5724:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Mapping","src":"5716:30:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7233,"nodeType":"UserDefinedTypeName","pathNode":{"id":7232,"name":"Role","nameLocations":["5741:4:29"],"nodeType":"IdentifierPath","referencedDeclaration":7204,"src":"5741:4:29"},"referencedDeclaration":7204,"src":"5741:4:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage_ptr","typeString":"struct AccessManager.Role"}}},"visibility":"private"},{"constant":false,"id":7240,"mutability":"mutable","name":"_schedules","nameLocation":"5816:10:29","nodeType":"VariableDeclaration","scope":9039,"src":"5767:59:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"typeName":{"id":7239,"keyName":"operationId","keyNameLocation":"5783:11:29","keyType":{"id":7236,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5775:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"5767:40:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7238,"nodeType":"UserDefinedTypeName","pathNode":{"id":7237,"name":"Schedule","nameLocations":["5798:8:29"],"nodeType":"IdentifierPath","referencedDeclaration":7209,"src":"5798:8:29"},"referencedDeclaration":7209,"src":"5798:8:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage_ptr","typeString":"struct AccessManager.Schedule"}}},"visibility":"private"},{"constant":false,"id":7242,"mutability":"mutable","name":"_executionId","nameLocation":"6000:12:29","nodeType":"VariableDeclaration","scope":9039,"src":"5984:28:29","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7241,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5984:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"body":{"id":7249,"nodeType":"Block","src":"6227:46:29","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7245,"name":"_checkAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8666,"src":"6237:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":7246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6237:18:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7247,"nodeType":"ExpressionStatement","src":"6237:18:29"},{"id":7248,"nodeType":"PlaceholderStatement","src":"6265:1:29"}]},"documentation":{"id":7243,"nodeType":"StructuredDocumentation","src":"6019:177:29","text":" @dev Check that the caller is authorized to perform the operation.\n See {AccessManager} description for a detailed breakdown of the authorization logic."},"id":7250,"name":"onlyAuthorized","nameLocation":"6210:14:29","nodeType":"ModifierDefinition","parameters":{"id":7244,"nodeType":"ParameterList","parameters":[],"src":"6224:2:29"},"src":"6201:72:29","virtual":false,"visibility":"internal"},{"body":{"id":7277,"nodeType":"Block","src":"6313:249:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7255,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7252,"src":"6327:12:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6351:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":7257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6343:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7256,"name":"address","nodeType":"ElementaryTypeName","src":"6343:7:29","typeDescriptions":{}}},"id":7259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6343:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6327:26:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7269,"nodeType":"IfStatement","src":"6323:108:29","trueBody":{"id":7268,"nodeType":"Block","src":"6355:76:29","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":7264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6417:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":7263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6409:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7262,"name":"address","nodeType":"ElementaryTypeName","src":"6409:7:29","typeDescriptions":{}}},"id":7265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6409:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7261,"name":"AccessManagerInvalidInitialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9241,"src":"6376:32:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6376:44:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7267,"nodeType":"RevertStatement","src":"6369:51:29"}]}},{"expression":{"arguments":[{"id":7271,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"6524:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7272,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7252,"src":"6536:12:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":7273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6550:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":7274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6553:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":7270,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"6513:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint32_$returns$_t_bool_$","typeString":"function (uint64,address,uint32,uint32) returns (bool)"}},"id":7275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6513:42:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7276,"nodeType":"ExpressionStatement","src":"6513:42:29"}]},"id":7278,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":7253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7252,"mutability":"mutable","name":"initialAdmin","nameLocation":"6299:12:29","nodeType":"VariableDeclaration","scope":7278,"src":"6291:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7251,"name":"address","nodeType":"ElementaryTypeName","src":"6291:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6290:22:29"},"returnParameters":{"id":7254,"nodeType":"ParameterList","parameters":[],"src":"6313:0:29"},"scope":9039,"src":"6279:283:29","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[9255],"body":{"id":7344,"nodeType":"Block","src":"6878:647:29","statements":[{"condition":{"arguments":[{"id":7293,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7283,"src":"6907:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7292,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7377,"src":"6892:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":7294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6892:22:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7300,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7281,"src":"6968:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":7303,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6986:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":7302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6978:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7301,"name":"address","nodeType":"ElementaryTypeName","src":"6978:7:29","typeDescriptions":{}}},"id":7304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6978:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6968:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7341,"nodeType":"Block","src":"7285:234:29","statements":[{"assignments":[7315],"declarations":[{"constant":false,"id":7315,"mutability":"mutable","name":"roleId","nameLocation":"7306:6:29","nodeType":"VariableDeclaration","scope":7341,"src":"7299:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7314,"name":"uint64","nodeType":"ElementaryTypeName","src":"7299:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":7320,"initialValue":{"arguments":[{"id":7317,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7283,"src":"7337:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7318,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7285,"src":"7345:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":7316,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7395,"src":"7315:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":7319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7315:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"7299:55:29"},{"assignments":[7322,7324],"declarations":[{"constant":false,"id":7322,"mutability":"mutable","name":"isMember","nameLocation":"7374:8:29","nodeType":"VariableDeclaration","scope":7341,"src":"7369:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7321,"name":"bool","nodeType":"ElementaryTypeName","src":"7369:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7324,"mutability":"mutable","name":"currentDelay","nameLocation":"7391:12:29","nodeType":"VariableDeclaration","scope":7341,"src":"7384:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7323,"name":"uint32","nodeType":"ElementaryTypeName","src":"7384:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":7329,"initialValue":{"arguments":[{"id":7326,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7315,"src":"7415:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7327,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7281,"src":"7423:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7325,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7547,"src":"7407:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":7328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7407:23:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"7368:62:29"},{"expression":{"condition":{"id":7330,"name":"isMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7322,"src":"7451:8:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":7336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7499:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7506:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7338,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7498:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":7339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7451:57:29","trueExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":7333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7331,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7324,"src":"7463:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7479:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7463:17:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":7334,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7324,"src":"7482:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":7335,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7462:33:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":7291,"id":7340,"nodeType":"Return","src":"7444:64:29"}]},"id":7342,"nodeType":"IfStatement","src":"6964:555:29","trueBody":{"id":7313,"nodeType":"Block","src":"6993:286:29","statements":[{"expression":{"components":[{"arguments":[{"id":7307,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7283,"src":"7247:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7308,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7285,"src":"7255:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":7306,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8984,"src":"7234:12:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":7309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7234:30:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":7310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7266:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7311,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7233:35:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7291,"id":7312,"nodeType":"Return","src":"7226:42:29"}]}},"id":7343,"nodeType":"IfStatement","src":"6888:631:29","trueBody":{"id":7299,"nodeType":"Block","src":"6916:42:29","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":7295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6938:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":7296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6945:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7297,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6937:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7291,"id":7298,"nodeType":"Return","src":"6930:17:29"}]}}]},"documentation":{"id":7279,"nodeType":"StructuredDocumentation","src":"6688:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"b7009613","id":7345,"implemented":true,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"6732:7:29","nodeType":"FunctionDefinition","parameters":{"id":7286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7281,"mutability":"mutable","name":"caller","nameLocation":"6757:6:29","nodeType":"VariableDeclaration","scope":7345,"src":"6749:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7280,"name":"address","nodeType":"ElementaryTypeName","src":"6749:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7283,"mutability":"mutable","name":"target","nameLocation":"6781:6:29","nodeType":"VariableDeclaration","scope":7345,"src":"6773:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7282,"name":"address","nodeType":"ElementaryTypeName","src":"6773:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7285,"mutability":"mutable","name":"selector","nameLocation":"6804:8:29","nodeType":"VariableDeclaration","scope":7345,"src":"6797:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":7284,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6797:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6739:79:29"},"returnParameters":{"id":7291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7288,"mutability":"mutable","name":"immediate","nameLocation":"6853:9:29","nodeType":"VariableDeclaration","scope":7345,"src":"6848:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7287,"name":"bool","nodeType":"ElementaryTypeName","src":"6848:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7290,"mutability":"mutable","name":"delay","nameLocation":"6871:5:29","nodeType":"VariableDeclaration","scope":7345,"src":"6864:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7289,"name":"uint32","nodeType":"ElementaryTypeName","src":"6864:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6847:30:29"},"scope":9039,"src":"6723:802:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9261],"body":{"id":7353,"nodeType":"Block","src":"7625:31:29","statements":[{"expression":{"hexValue":"31","id":7351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7642:7:29","subdenomination":"weeks","typeDescriptions":{"typeIdentifier":"t_rational_604800_by_1","typeString":"int_const 604800"},"value":"1"},"functionReturnParameters":7350,"id":7352,"nodeType":"Return","src":"7635:14:29"}]},"documentation":{"id":7346,"nodeType":"StructuredDocumentation","src":"7531:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"4665096d","id":7354,"implemented":true,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"7575:10:29","nodeType":"FunctionDefinition","parameters":{"id":7347,"nodeType":"ParameterList","parameters":[],"src":"7585:2:29"},"returnParameters":{"id":7350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7349,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7354,"src":"7617:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7348,"name":"uint32","nodeType":"ElementaryTypeName","src":"7617:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7616:8:29"},"scope":9039,"src":"7566:90:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9267],"body":{"id":7362,"nodeType":"Block","src":"7756:30:29","statements":[{"expression":{"hexValue":"35","id":7360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7773:6:29","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_432000_by_1","typeString":"int_const 432000"},"value":"5"},"functionReturnParameters":7359,"id":7361,"nodeType":"Return","src":"7766:13:29"}]},"documentation":{"id":7355,"nodeType":"StructuredDocumentation","src":"7662:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"cc1b6c81","id":7363,"implemented":true,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"7706:10:29","nodeType":"FunctionDefinition","parameters":{"id":7356,"nodeType":"ParameterList","parameters":[],"src":"7716:2:29"},"returnParameters":{"id":7359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7358,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7363,"src":"7748:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7357,"name":"uint32","nodeType":"ElementaryTypeName","src":"7748:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7747:8:29"},"scope":9039,"src":"7697:89:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9275],"body":{"id":7376,"nodeType":"Block","src":"7902:47:29","statements":[{"expression":{"expression":{"baseExpression":{"id":7371,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"7919:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":7373,"indexExpression":{"id":7372,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7366,"src":"7928:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7919:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":7374,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7936:6:29","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":7184,"src":"7919:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":7370,"id":7375,"nodeType":"Return","src":"7912:30:29"}]},"documentation":{"id":7364,"nodeType":"StructuredDocumentation","src":"7792:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"a166aa89","id":7377,"implemented":true,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"7836:14:29","nodeType":"FunctionDefinition","parameters":{"id":7367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7366,"mutability":"mutable","name":"target","nameLocation":"7859:6:29","nodeType":"VariableDeclaration","scope":7377,"src":"7851:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7365,"name":"address","nodeType":"ElementaryTypeName","src":"7851:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7850:16:29"},"returnParameters":{"id":7370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7377,"src":"7896:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7368,"name":"bool","nodeType":"ElementaryTypeName","src":"7896:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7895:6:29"},"scope":9039,"src":"7827:122:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9285],"body":{"id":7394,"nodeType":"Block","src":"8091:63:29","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":7387,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"8108:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":7389,"indexExpression":{"id":7388,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7380,"src":"8117:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8108:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":7390,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8125:12:29","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":7179,"src":"8108:29:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":7392,"indexExpression":{"id":7391,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7382,"src":"8138:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8108:39:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":7386,"id":7393,"nodeType":"Return","src":"8101:46:29"}]},"documentation":{"id":7378,"nodeType":"StructuredDocumentation","src":"7955:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"6d5115bd","id":7395,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"7999:21:29","nodeType":"FunctionDefinition","parameters":{"id":7383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7380,"mutability":"mutable","name":"target","nameLocation":"8029:6:29","nodeType":"VariableDeclaration","scope":7395,"src":"8021:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7379,"name":"address","nodeType":"ElementaryTypeName","src":"8021:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7382,"mutability":"mutable","name":"selector","nameLocation":"8044:8:29","nodeType":"VariableDeclaration","scope":7395,"src":"8037:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":7381,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8037:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8020:33:29"},"returnParameters":{"id":7386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7385,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7395,"src":"8083:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7384,"name":"uint64","nodeType":"ElementaryTypeName","src":"8083:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8082:8:29"},"scope":9039,"src":"7990:164:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9293],"body":{"id":7410,"nodeType":"Block","src":"8277:57:29","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":7403,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"8294:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":7405,"indexExpression":{"id":7404,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7398,"src":"8303:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8294:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":7406,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8311:10:29","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":7182,"src":"8294:27:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":7407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8322:3:29","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":21851,"src":"8294:31:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":7408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8294:33:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":7402,"id":7409,"nodeType":"Return","src":"8287:40:29"}]},"documentation":{"id":7396,"nodeType":"StructuredDocumentation","src":"8160:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"4c1da1e2","id":7411,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"8204:19:29","nodeType":"FunctionDefinition","parameters":{"id":7399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7398,"mutability":"mutable","name":"target","nameLocation":"8232:6:29","nodeType":"VariableDeclaration","scope":7411,"src":"8224:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7397,"name":"address","nodeType":"ElementaryTypeName","src":"8224:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8223:16:29"},"returnParameters":{"id":7402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7401,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7411,"src":"8269:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7400,"name":"uint32","nodeType":"ElementaryTypeName","src":"8269:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8268:8:29"},"scope":9039,"src":"8195:139:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9301],"body":{"id":7424,"nodeType":"Block","src":"8449:44:29","statements":[{"expression":{"expression":{"baseExpression":{"id":7419,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"8466:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7421,"indexExpression":{"id":7420,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7414,"src":"8473:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8466:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7422,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8481:5:29","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":7198,"src":"8466:20:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":7418,"id":7423,"nodeType":"Return","src":"8459:27:29"}]},"documentation":{"id":7412,"nodeType":"StructuredDocumentation","src":"8340:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"530dd456","id":7425,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"8384:12:29","nodeType":"FunctionDefinition","parameters":{"id":7415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7414,"mutability":"mutable","name":"roleId","nameLocation":"8404:6:29","nodeType":"VariableDeclaration","scope":7425,"src":"8397:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7413,"name":"uint64","nodeType":"ElementaryTypeName","src":"8397:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8396:15:29"},"returnParameters":{"id":7418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7417,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7425,"src":"8441:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7416,"name":"uint64","nodeType":"ElementaryTypeName","src":"8441:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8440:8:29"},"scope":9039,"src":"8375:118:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9309],"body":{"id":7438,"nodeType":"Block","src":"8611:47:29","statements":[{"expression":{"expression":{"baseExpression":{"id":7433,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"8628:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7435,"indexExpression":{"id":7434,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7428,"src":"8635:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8628:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7436,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8643:8:29","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":7200,"src":"8628:23:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":7432,"id":7437,"nodeType":"Return","src":"8621:30:29"}]},"documentation":{"id":7426,"nodeType":"StructuredDocumentation","src":"8499:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"0b0a93ba","id":7439,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"8543:15:29","nodeType":"FunctionDefinition","parameters":{"id":7429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7428,"mutability":"mutable","name":"roleId","nameLocation":"8566:6:29","nodeType":"VariableDeclaration","scope":7439,"src":"8559:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7427,"name":"uint64","nodeType":"ElementaryTypeName","src":"8559:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8558:15:29"},"returnParameters":{"id":7432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7431,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7439,"src":"8603:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7430,"name":"uint64","nodeType":"ElementaryTypeName","src":"8603:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8602:8:29"},"scope":9039,"src":"8534:124:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9317],"body":{"id":7454,"nodeType":"Block","src":"8778:55:29","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":7447,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"8795:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7449,"indexExpression":{"id":7448,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7442,"src":"8802:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8795:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7450,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8810:10:29","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":7203,"src":"8795:25:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":7451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8821:3:29","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":21851,"src":"8795:29:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":7452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8795:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":7446,"id":7453,"nodeType":"Return","src":"8788:38:29"}]},"documentation":{"id":7440,"nodeType":"StructuredDocumentation","src":"8664:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"12be8727","id":7455,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"8708:17:29","nodeType":"FunctionDefinition","parameters":{"id":7443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7442,"mutability":"mutable","name":"roleId","nameLocation":"8733:6:29","nodeType":"VariableDeclaration","scope":7455,"src":"8726:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7441,"name":"uint64","nodeType":"ElementaryTypeName","src":"8726:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8725:15:29"},"returnParameters":{"id":7446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7445,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7455,"src":"8770:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7444,"name":"uint32","nodeType":"ElementaryTypeName","src":"8770:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8769:8:29"},"scope":9039,"src":"8699:134:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9333],"body":{"id":7502,"nodeType":"Block","src":"9047:235:29","statements":[{"assignments":[7473],"declarations":[{"constant":false,"id":7473,"mutability":"mutable","name":"access","nameLocation":"9072:6:29","nodeType":"VariableDeclaration","scope":7502,"src":"9057:21:29","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage_ptr","typeString":"struct AccessManager.Access"},"typeName":{"id":7472,"nodeType":"UserDefinedTypeName","pathNode":{"id":7471,"name":"Access","nameLocations":["9057:6:29"],"nodeType":"IdentifierPath","referencedDeclaration":7191,"src":"9057:6:29"},"referencedDeclaration":7191,"src":"9057:6:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage_ptr","typeString":"struct AccessManager.Access"}},"visibility":"internal"}],"id":7480,"initialValue":{"baseExpression":{"expression":{"baseExpression":{"id":7474,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"9081:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7476,"indexExpression":{"id":7475,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7458,"src":"9088:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9081:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7477,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9096:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"9081:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7479,"indexExpression":{"id":7478,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7460,"src":"9104:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9081:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9057:55:29"},{"expression":{"id":7484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7481,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7463,"src":"9123:5:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":7482,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7473,"src":"9131:6:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":7483,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9138:5:29","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":7187,"src":"9131:12:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9123:20:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":7485,"nodeType":"ExpressionStatement","src":"9123:20:29"},{"expression":{"id":7494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":7486,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7465,"src":"9154:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7487,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7467,"src":"9168:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7488,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7469,"src":"9182:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":7489,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9153:36:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":7490,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7473,"src":"9192:6:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":7491,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9199:5:29","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":7190,"src":"9192:12:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":7492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9205:7:29","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":21833,"src":"9192:20:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":7493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9192:22:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"9153:61:29","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7495,"nodeType":"ExpressionStatement","src":"9153:61:29"},{"expression":{"components":[{"id":7496,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7463,"src":"9233:5:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":7497,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7465,"src":"9240:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7498,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7467,"src":"9254:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7499,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7469,"src":"9268:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":7500,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9232:43:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"functionReturnParameters":7470,"id":7501,"nodeType":"Return","src":"9225:50:29"}]},"documentation":{"id":7456,"nodeType":"StructuredDocumentation","src":"8839:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"3078f114","id":7503,"implemented":true,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"8883:9:29","nodeType":"FunctionDefinition","parameters":{"id":7461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7458,"mutability":"mutable","name":"roleId","nameLocation":"8909:6:29","nodeType":"VariableDeclaration","scope":7503,"src":"8902:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7457,"name":"uint64","nodeType":"ElementaryTypeName","src":"8902:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7460,"mutability":"mutable","name":"account","nameLocation":"8933:7:29","nodeType":"VariableDeclaration","scope":7503,"src":"8925:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7459,"name":"address","nodeType":"ElementaryTypeName","src":"8925:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8892:54:29"},"returnParameters":{"id":7470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7463,"mutability":"mutable","name":"since","nameLocation":"8983:5:29","nodeType":"VariableDeclaration","scope":7503,"src":"8976:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7462,"name":"uint48","nodeType":"ElementaryTypeName","src":"8976:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":7465,"mutability":"mutable","name":"currentDelay","nameLocation":"8997:12:29","nodeType":"VariableDeclaration","scope":7503,"src":"8990:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7464,"name":"uint32","nodeType":"ElementaryTypeName","src":"8990:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":7467,"mutability":"mutable","name":"pendingDelay","nameLocation":"9018:12:29","nodeType":"VariableDeclaration","scope":7503,"src":"9011:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7466,"name":"uint32","nodeType":"ElementaryTypeName","src":"9011:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":7469,"mutability":"mutable","name":"effect","nameLocation":"9039:6:29","nodeType":"VariableDeclaration","scope":7503,"src":"9032:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7468,"name":"uint48","nodeType":"ElementaryTypeName","src":"9032:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"8975:71:29"},"scope":9039,"src":"8874:408:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9345],"body":{"id":7546,"nodeType":"Block","src":"9461:280:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7515,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7506,"src":"9475:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7516,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"9485:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"9475:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7544,"nodeType":"Block","src":"9545:190:29","statements":[{"assignments":[7524,7526,null,null],"declarations":[{"constant":false,"id":7524,"mutability":"mutable","name":"hasRoleSince","nameLocation":"9567:12:29","nodeType":"VariableDeclaration","scope":7544,"src":"9560:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7523,"name":"uint48","nodeType":"ElementaryTypeName","src":"9560:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":7526,"mutability":"mutable","name":"currentDelay","nameLocation":"9588:12:29","nodeType":"VariableDeclaration","scope":7544,"src":"9581:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7525,"name":"uint32","nodeType":"ElementaryTypeName","src":"9581:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":7531,"initialValue":{"arguments":[{"id":7528,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7506,"src":"9618:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7529,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7508,"src":"9626:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7527,"name":"getAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7503,"src":"9608:9:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (uint64,address) view returns (uint48,uint32,uint32,uint48)"}},"id":7530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9608:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"9559:75:29"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":7534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7532,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7524,"src":"9656:12:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9672:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9656:17:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":7539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7535,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7524,"src":"9677:12:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7536,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"9693:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$21997_$","typeString":"type(library Time)"}},"id":7537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9698:9:29","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":21745,"src":"9693:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":7538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9693:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9677:32:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9656:53:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":7541,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7526,"src":"9711:12:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":7542,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9655:69:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":7514,"id":7543,"nodeType":"Return","src":"9648:76:29"}]},"id":7545,"nodeType":"IfStatement","src":"9471:264:29","trueBody":{"id":7522,"nodeType":"Block","src":"9498:41:29","statements":[{"expression":{"components":[{"hexValue":"74727565","id":7518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9520:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":7519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9526:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":7520,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9519:9:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":7514,"id":7521,"nodeType":"Return","src":"9512:16:29"}]}}]},"documentation":{"id":7504,"nodeType":"StructuredDocumentation","src":"9288:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"d1f856ee","id":7547,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"9332:7:29","nodeType":"FunctionDefinition","parameters":{"id":7509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7506,"mutability":"mutable","name":"roleId","nameLocation":"9356:6:29","nodeType":"VariableDeclaration","scope":7547,"src":"9349:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7505,"name":"uint64","nodeType":"ElementaryTypeName","src":"9349:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7508,"mutability":"mutable","name":"account","nameLocation":"9380:7:29","nodeType":"VariableDeclaration","scope":7547,"src":"9372:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7507,"name":"address","nodeType":"ElementaryTypeName","src":"9372:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9339:54:29"},"returnParameters":{"id":7514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7511,"mutability":"mutable","name":"isMember","nameLocation":"9428:8:29","nodeType":"VariableDeclaration","scope":7547,"src":"9423:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7510,"name":"bool","nodeType":"ElementaryTypeName","src":"9423:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7513,"mutability":"mutable","name":"executionDelay","nameLocation":"9445:14:29","nodeType":"VariableDeclaration","scope":7547,"src":"9438:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7512,"name":"uint32","nodeType":"ElementaryTypeName","src":"9438:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9422:38:29"},"scope":9039,"src":"9323:418:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9353],"body":{"id":7575,"nodeType":"Block","src":"9988:169:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7557,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7550,"src":"10002:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7558,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"10012:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10002:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7560,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7550,"src":"10026:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7561,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"10036:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10026:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10002:45:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7569,"nodeType":"IfStatement","src":"9998:114:29","trueBody":{"id":7568,"nodeType":"Block","src":"10049:63:29","statements":[{"errorCall":{"arguments":[{"id":7565,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7550,"src":"10094:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7564,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"10070:23:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":7566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10070:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7567,"nodeType":"RevertStatement","src":"10063:38:29"}]}},{"eventCall":{"arguments":[{"id":7571,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7550,"src":"10136:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7572,"name":"label","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7552,"src":"10144:5:29","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":7570,"name":"RoleLabel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9119,"src":"10126:9:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory)"}},"id":7573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10126:24:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7574,"nodeType":"EmitStatement","src":"10121:29:29"}]},"documentation":{"id":7548,"nodeType":"StructuredDocumentation","src":"9866:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"853551b8","id":7576,"implemented":true,"kind":"function","modifiers":[{"id":7555,"kind":"modifierInvocation","modifierName":{"id":7554,"name":"onlyAuthorized","nameLocations":["9973:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"9973:14:29"},"nodeType":"ModifierInvocation","src":"9973:14:29"}],"name":"labelRole","nameLocation":"9910:9:29","nodeType":"FunctionDefinition","parameters":{"id":7553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7550,"mutability":"mutable","name":"roleId","nameLocation":"9927:6:29","nodeType":"VariableDeclaration","scope":7576,"src":"9920:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7549,"name":"uint64","nodeType":"ElementaryTypeName","src":"9920:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7552,"mutability":"mutable","name":"label","nameLocation":"9951:5:29","nodeType":"VariableDeclaration","scope":7576,"src":"9935:21:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":7551,"name":"string","nodeType":"ElementaryTypeName","src":"9935:6:29","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9919:38:29"},"returnParameters":{"id":7556,"nodeType":"ParameterList","parameters":[],"src":"9988:0:29"},"scope":9039,"src":"9901:256:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9363],"body":{"id":7597,"nodeType":"Block","src":"10302:87:29","statements":[{"expression":{"arguments":[{"id":7589,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7579,"src":"10323:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7590,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7581,"src":"10331:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":7592,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7579,"src":"10358:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7591,"name":"getRoleGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7455,"src":"10340:17:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint32_$","typeString":"function (uint64) view returns (uint32)"}},"id":7593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10340:25:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7594,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7583,"src":"10367:14:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":7588,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"10312:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint32_$returns$_t_bool_$","typeString":"function (uint64,address,uint32,uint32) returns (bool)"}},"id":7595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10312:70:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7596,"nodeType":"ExpressionStatement","src":"10312:70:29"}]},"documentation":{"id":7577,"nodeType":"StructuredDocumentation","src":"10163:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"25c471a0","id":7598,"implemented":true,"kind":"function","modifiers":[{"id":7586,"kind":"modifierInvocation","modifierName":{"id":7585,"name":"onlyAuthorized","nameLocations":["10287:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"10287:14:29"},"nodeType":"ModifierInvocation","src":"10287:14:29"}],"name":"grantRole","nameLocation":"10207:9:29","nodeType":"FunctionDefinition","parameters":{"id":7584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7579,"mutability":"mutable","name":"roleId","nameLocation":"10224:6:29","nodeType":"VariableDeclaration","scope":7598,"src":"10217:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7578,"name":"uint64","nodeType":"ElementaryTypeName","src":"10217:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7581,"mutability":"mutable","name":"account","nameLocation":"10240:7:29","nodeType":"VariableDeclaration","scope":7598,"src":"10232:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7580,"name":"address","nodeType":"ElementaryTypeName","src":"10232:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7583,"mutability":"mutable","name":"executionDelay","nameLocation":"10256:14:29","nodeType":"VariableDeclaration","scope":7598,"src":"10249:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7582,"name":"uint32","nodeType":"ElementaryTypeName","src":"10249:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"10216:55:29"},"returnParameters":{"id":7587,"nodeType":"ParameterList","parameters":[],"src":"10302:0:29"},"scope":9039,"src":"10198:191:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9371],"body":{"id":7613,"nodeType":"Block","src":"10512:45:29","statements":[{"expression":{"arguments":[{"id":7609,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7601,"src":"10534:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7610,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7603,"src":"10542:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7608,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7830,"src":"10522:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":7611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10522:28:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7612,"nodeType":"ExpressionStatement","src":"10522:28:29"}]},"documentation":{"id":7599,"nodeType":"StructuredDocumentation","src":"10395:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"b7d2b162","id":7614,"implemented":true,"kind":"function","modifiers":[{"id":7606,"kind":"modifierInvocation","modifierName":{"id":7605,"name":"onlyAuthorized","nameLocations":["10497:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"10497:14:29"},"nodeType":"ModifierInvocation","src":"10497:14:29"}],"name":"revokeRole","nameLocation":"10439:10:29","nodeType":"FunctionDefinition","parameters":{"id":7604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7601,"mutability":"mutable","name":"roleId","nameLocation":"10457:6:29","nodeType":"VariableDeclaration","scope":7614,"src":"10450:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7600,"name":"uint64","nodeType":"ElementaryTypeName","src":"10450:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7603,"mutability":"mutable","name":"account","nameLocation":"10473:7:29","nodeType":"VariableDeclaration","scope":7614,"src":"10465:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7602,"name":"address","nodeType":"ElementaryTypeName","src":"10465:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10449:32:29"},"returnParameters":{"id":7607,"nodeType":"ParameterList","parameters":[],"src":"10512:0:29"},"scope":9039,"src":"10430:127:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9379],"body":{"id":7636,"nodeType":"Block","src":"10678:167:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7622,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7619,"src":"10692:18:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":7623,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"10714:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10714:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10692:34:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7630,"nodeType":"IfStatement","src":"10688:102:29","trueBody":{"id":7629,"nodeType":"Block","src":"10728:62:29","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":7626,"name":"AccessManagerBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9209,"src":"10749:28:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":7627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10749:30:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7628,"nodeType":"RevertStatement","src":"10742:37:29"}]}},{"expression":{"arguments":[{"id":7632,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7617,"src":"10811:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7633,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7619,"src":"10819:18:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7631,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7830,"src":"10799:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":7634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10799:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7635,"nodeType":"ExpressionStatement","src":"10799:39:29"}]},"documentation":{"id":7615,"nodeType":"StructuredDocumentation","src":"10563:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"fe0776f5","id":7637,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10607:12:29","nodeType":"FunctionDefinition","parameters":{"id":7620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7617,"mutability":"mutable","name":"roleId","nameLocation":"10627:6:29","nodeType":"VariableDeclaration","scope":7637,"src":"10620:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7616,"name":"uint64","nodeType":"ElementaryTypeName","src":"10620:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7619,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10643:18:29","nodeType":"VariableDeclaration","scope":7637,"src":"10635:26:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7618,"name":"address","nodeType":"ElementaryTypeName","src":"10635:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10619:43:29"},"returnParameters":{"id":7621,"nodeType":"ParameterList","parameters":[],"src":"10678:0:29"},"scope":9039,"src":"10598:247:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9387],"body":{"id":7652,"nodeType":"Block","src":"10967:45:29","statements":[{"expression":{"arguments":[{"id":7648,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7640,"src":"10991:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7649,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7642,"src":"10999:5:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7647,"name":"_setRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7864,"src":"10977:13:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":7650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10977:28:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7651,"nodeType":"ExpressionStatement","src":"10977:28:29"}]},"documentation":{"id":7638,"nodeType":"StructuredDocumentation","src":"10851:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"30cae187","id":7653,"implemented":true,"kind":"function","modifiers":[{"id":7645,"kind":"modifierInvocation","modifierName":{"id":7644,"name":"onlyAuthorized","nameLocations":["10952:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"10952:14:29"},"nodeType":"ModifierInvocation","src":"10952:14:29"}],"name":"setRoleAdmin","nameLocation":"10895:12:29","nodeType":"FunctionDefinition","parameters":{"id":7643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7640,"mutability":"mutable","name":"roleId","nameLocation":"10915:6:29","nodeType":"VariableDeclaration","scope":7653,"src":"10908:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7639,"name":"uint64","nodeType":"ElementaryTypeName","src":"10908:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7642,"mutability":"mutable","name":"admin","nameLocation":"10930:5:29","nodeType":"VariableDeclaration","scope":7653,"src":"10923:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7641,"name":"uint64","nodeType":"ElementaryTypeName","src":"10923:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10907:29:29"},"returnParameters":{"id":7646,"nodeType":"ParameterList","parameters":[],"src":"10967:0:29"},"scope":9039,"src":"10886:126:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9395],"body":{"id":7668,"nodeType":"Block","src":"11140:51:29","statements":[{"expression":{"arguments":[{"id":7664,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7656,"src":"11167:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7665,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7658,"src":"11175:8:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7663,"name":"_setRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7898,"src":"11150:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":7666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11150:34:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7667,"nodeType":"ExpressionStatement","src":"11150:34:29"}]},"documentation":{"id":7654,"nodeType":"StructuredDocumentation","src":"11018:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"52962952","id":7669,"implemented":true,"kind":"function","modifiers":[{"id":7661,"kind":"modifierInvocation","modifierName":{"id":7660,"name":"onlyAuthorized","nameLocations":["11125:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"11125:14:29"},"nodeType":"ModifierInvocation","src":"11125:14:29"}],"name":"setRoleGuardian","nameLocation":"11062:15:29","nodeType":"FunctionDefinition","parameters":{"id":7659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7656,"mutability":"mutable","name":"roleId","nameLocation":"11085:6:29","nodeType":"VariableDeclaration","scope":7669,"src":"11078:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7655,"name":"uint64","nodeType":"ElementaryTypeName","src":"11078:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7658,"mutability":"mutable","name":"guardian","nameLocation":"11100:8:29","nodeType":"VariableDeclaration","scope":7669,"src":"11093:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7657,"name":"uint64","nodeType":"ElementaryTypeName","src":"11093:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11077:32:29"},"returnParameters":{"id":7662,"nodeType":"ParameterList","parameters":[],"src":"11140:0:29"},"scope":9039,"src":"11053:138:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9403],"body":{"id":7684,"nodeType":"Block","src":"11317:49:29","statements":[{"expression":{"arguments":[{"id":7680,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7672,"src":"11342:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7681,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7674,"src":"11350:8:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":7679,"name":"_setGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7942,"src":"11327:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32)"}},"id":7682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11327:32:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7683,"nodeType":"ExpressionStatement","src":"11327:32:29"}]},"documentation":{"id":7670,"nodeType":"StructuredDocumentation","src":"11197:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"a64d95ce","id":7685,"implemented":true,"kind":"function","modifiers":[{"id":7677,"kind":"modifierInvocation","modifierName":{"id":7676,"name":"onlyAuthorized","nameLocations":["11302:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"11302:14:29"},"nodeType":"ModifierInvocation","src":"11302:14:29"}],"name":"setGrantDelay","nameLocation":"11241:13:29","nodeType":"FunctionDefinition","parameters":{"id":7675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7672,"mutability":"mutable","name":"roleId","nameLocation":"11262:6:29","nodeType":"VariableDeclaration","scope":7685,"src":"11255:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7671,"name":"uint64","nodeType":"ElementaryTypeName","src":"11255:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7674,"mutability":"mutable","name":"newDelay","nameLocation":"11277:8:29","nodeType":"VariableDeclaration","scope":7685,"src":"11270:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7673,"name":"uint32","nodeType":"ElementaryTypeName","src":"11270:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11254:32:29"},"returnParameters":{"id":7678,"nodeType":"ParameterList","parameters":[],"src":"11317:0:29"},"scope":9039,"src":"11232:134:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":7781,"nodeType":"Block","src":"11707:897:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7699,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"11721:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7700,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"11731:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"11721:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7707,"nodeType":"IfStatement","src":"11717:90:29","trueBody":{"id":7706,"nodeType":"Block","src":"11744:63:29","statements":[{"errorCall":{"arguments":[{"id":7703,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"11789:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7702,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"11765:23:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":7704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11765:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7705,"nodeType":"RevertStatement","src":"11758:38:29"}]}},{"assignments":[7709],"declarations":[{"constant":false,"id":7709,"mutability":"mutable","name":"newMember","nameLocation":"11822:9:29","nodeType":"VariableDeclaration","scope":7781,"src":"11817:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7708,"name":"bool","nodeType":"ElementaryTypeName","src":"11817:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":7719,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":7718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":7710,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"11834:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7712,"indexExpression":{"id":7711,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"11841:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11834:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7713,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11849:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"11834:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7715,"indexExpression":{"id":7714,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7690,"src":"11857:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11834:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"id":7716,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11866:5:29","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":7187,"src":"11834:37:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11875:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11834:42:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"11817:59:29"},{"assignments":[7721],"declarations":[{"constant":false,"id":7721,"mutability":"mutable","name":"since","nameLocation":"11893:5:29","nodeType":"VariableDeclaration","scope":7781,"src":"11886:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7720,"name":"uint48","nodeType":"ElementaryTypeName","src":"11886:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":7722,"nodeType":"VariableDeclarationStatement","src":"11886:12:29"},{"condition":{"id":7723,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7709,"src":"11913:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7769,"nodeType":"Block","src":"12095:399:29","statements":[{"expression":{"id":7767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":7747,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"12322:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7749,"indexExpression":{"id":7748,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"12329:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12322:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7750,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12337:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"12322:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7752,"indexExpression":{"id":7751,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7690,"src":"12345:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12322:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"id":7753,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12354:5:29","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":7190,"src":"12322:37:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},{"id":7754,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7721,"src":"12361:5:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":7755,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"12321:46:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7764,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7694,"src":"12436:14:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":7765,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12468:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":7756,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"12370:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7758,"indexExpression":{"id":7757,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"12377:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12370:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7759,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12385:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"12370:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7761,"indexExpression":{"id":7760,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7690,"src":"12393:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12370:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"id":7762,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12402:5:29","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":7190,"src":"12370:37:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":7763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12408:10:29","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":21907,"src":"12370:48:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":7766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12370:113:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"12321:162:29","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7768,"nodeType":"ExpressionStatement","src":"12321:162:29"}]},"id":7770,"nodeType":"IfStatement","src":"11909:585:29","trueBody":{"id":7746,"nodeType":"Block","src":"11924:165:29","statements":[{"expression":{"id":7730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7724,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7721,"src":"11938:5:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":7729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7725,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"11946:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$21997_$","typeString":"type(library Time)"}},"id":7726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11951:9:29","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":21745,"src":"11946:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":7727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11946:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":7728,"name":"grantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"11965:10:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"11946:29:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"11938:37:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":7731,"nodeType":"ExpressionStatement","src":"11938:37:29"},{"expression":{"id":7744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":7732,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"11989:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7734,"indexExpression":{"id":7733,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"11996:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11989:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7735,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12004:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"11989:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7737,"indexExpression":{"id":7736,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7690,"src":"12012:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11989:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7739,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7721,"src":"12038:5:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7740,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7694,"src":"12052:14:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":7741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12067:7:29","memberName":"toDelay","nodeType":"MemberAccess","referencedDeclaration":21775,"src":"12052:22:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$21760_$attached_to$_t_uint32_$","typeString":"function (uint32) pure returns (Time.Delay)"}},"id":7742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12052:24:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}],"id":7738,"name":"Access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7191,"src":"12023:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Access_$7191_storage_ptr_$","typeString":"type(struct AccessManager.Access storage pointer)"}},"id":7743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12031:5:29","12045:5:29"],"names":["since","delay"],"nodeType":"FunctionCall","src":"12023:55:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_memory_ptr","typeString":"struct AccessManager.Access memory"}},"src":"11989:89:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"id":7745,"nodeType":"ExpressionStatement","src":"11989:89:29"}]}},{"eventCall":{"arguments":[{"id":7772,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7688,"src":"12521:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7773,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7690,"src":"12529:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7774,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7694,"src":"12538:14:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7775,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7721,"src":"12554:5:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":7776,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7709,"src":"12561:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":7771,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9132,"src":"12509:11:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$_t_uint32_$_t_uint48_$_t_bool_$returns$__$","typeString":"function (uint64,address,uint32,uint48,bool)"}},"id":7777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12509:62:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7778,"nodeType":"EmitStatement","src":"12504:67:29"},{"expression":{"id":7779,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7709,"src":"12588:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":7698,"id":7780,"nodeType":"Return","src":"12581:16:29"}]},"documentation":{"id":7686,"nodeType":"StructuredDocumentation","src":"11372:166:29","text":" @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n Emits a {RoleGranted} event."},"id":7782,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"11552:10:29","nodeType":"FunctionDefinition","parameters":{"id":7695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7688,"mutability":"mutable","name":"roleId","nameLocation":"11579:6:29","nodeType":"VariableDeclaration","scope":7782,"src":"11572:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7687,"name":"uint64","nodeType":"ElementaryTypeName","src":"11572:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7690,"mutability":"mutable","name":"account","nameLocation":"11603:7:29","nodeType":"VariableDeclaration","scope":7782,"src":"11595:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7689,"name":"address","nodeType":"ElementaryTypeName","src":"11595:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7692,"mutability":"mutable","name":"grantDelay","nameLocation":"11627:10:29","nodeType":"VariableDeclaration","scope":7782,"src":"11620:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7691,"name":"uint32","nodeType":"ElementaryTypeName","src":"11620:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":7694,"mutability":"mutable","name":"executionDelay","nameLocation":"11654:14:29","nodeType":"VariableDeclaration","scope":7782,"src":"11647:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7693,"name":"uint32","nodeType":"ElementaryTypeName","src":"11647:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11562:112:29"},"returnParameters":{"id":7698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7697,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7782,"src":"11701:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7696,"name":"bool","nodeType":"ElementaryTypeName","src":"11701:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11700:6:29"},"scope":9039,"src":"11543:1061:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7829,"nodeType":"Block","src":"12950:315:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7792,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"12964:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7793,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"12974:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12964:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7800,"nodeType":"IfStatement","src":"12960:90:29","trueBody":{"id":7799,"nodeType":"Block","src":"12987:63:29","statements":[{"errorCall":{"arguments":[{"id":7796,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"13032:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7795,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"13008:23:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":7797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13008:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7798,"nodeType":"RevertStatement","src":"13001:38:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":7809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":7801,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"13064:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7803,"indexExpression":{"id":7802,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"13071:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13064:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13079:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"13064:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7806,"indexExpression":{"id":7805,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"13087:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13064:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"id":7807,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13096:5:29","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":7187,"src":"13064:37:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13105:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13064:42:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7813,"nodeType":"IfStatement","src":"13060:85:29","trueBody":{"id":7812,"nodeType":"Block","src":"13108:37:29","statements":[{"expression":{"hexValue":"66616c7365","id":7810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13129:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":7791,"id":7811,"nodeType":"Return","src":"13122:12:29"}]}},{"expression":{"id":7820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"13155:38:29","subExpression":{"baseExpression":{"expression":{"baseExpression":{"id":7814,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"13162:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7816,"indexExpression":{"id":7815,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"13169:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13162:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7817,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13177:7:29","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":7196,"src":"13162:22:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$7191_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":7819,"indexExpression":{"id":7818,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"13185:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13162:31:29","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$7191_storage","typeString":"struct AccessManager.Access storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7821,"nodeType":"ExpressionStatement","src":"13155:38:29"},{"eventCall":{"arguments":[{"id":7823,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7785,"src":"13221:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7824,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7787,"src":"13229:7:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":7822,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9139,"src":"13209:11:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address)"}},"id":7825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13209:28:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7826,"nodeType":"EmitStatement","src":"13204:33:29"},{"expression":{"hexValue":"74727565","id":7827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13254:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":7791,"id":7828,"nodeType":"Return","src":"13247:11:29"}]},"documentation":{"id":7783,"nodeType":"StructuredDocumentation","src":"12610:250:29","text":" @dev Internal version of {revokeRole} without access control. This logic is also used by {renounceRole}.\n Returns true if the role was previously granted.\n Emits a {RoleRevoked} event if the account had the role."},"id":7830,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"12874:11:29","nodeType":"FunctionDefinition","parameters":{"id":7788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7785,"mutability":"mutable","name":"roleId","nameLocation":"12893:6:29","nodeType":"VariableDeclaration","scope":7830,"src":"12886:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7784,"name":"uint64","nodeType":"ElementaryTypeName","src":"12886:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7787,"mutability":"mutable","name":"account","nameLocation":"12909:7:29","nodeType":"VariableDeclaration","scope":7830,"src":"12901:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7786,"name":"address","nodeType":"ElementaryTypeName","src":"12901:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12885:32:29"},"returnParameters":{"id":7791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7790,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7830,"src":"12944:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7789,"name":"bool","nodeType":"ElementaryTypeName","src":"12944:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12943:6:29"},"scope":9039,"src":"12865:400:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7863,"nodeType":"Block","src":"13629:216:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7838,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7833,"src":"13643:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7839,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"13653:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13643:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7841,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7833,"src":"13667:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7842,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"13677:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13667:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13643:45:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7850,"nodeType":"IfStatement","src":"13639:114:29","trueBody":{"id":7849,"nodeType":"Block","src":"13690:63:29","statements":[{"errorCall":{"arguments":[{"id":7846,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7833,"src":"13735:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7845,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"13711:23:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":7847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13711:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7848,"nodeType":"RevertStatement","src":"13704:38:29"}]}},{"expression":{"id":7856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":7851,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"13763:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7853,"indexExpression":{"id":7852,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7833,"src":"13770:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13763:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7854,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13778:5:29","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":7198,"src":"13763:20:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7855,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7835,"src":"13786:5:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13763:28:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":7857,"nodeType":"ExpressionStatement","src":"13763:28:29"},{"eventCall":{"arguments":[{"id":7859,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7833,"src":"13824:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7860,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7835,"src":"13832:5:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7858,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9146,"src":"13807:16:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":7861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13807:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7862,"nodeType":"EmitStatement","src":"13802:36:29"}]},"documentation":{"id":7831,"nodeType":"StructuredDocumentation","src":"13271:284:29","text":" @dev Internal version of {setRoleAdmin} without access control.\n Emits a {RoleAdminChanged} event.\n NOTE: Setting the admin role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n anyone to set grant or revoke such role."},"id":7864,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"13569:13:29","nodeType":"FunctionDefinition","parameters":{"id":7836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7833,"mutability":"mutable","name":"roleId","nameLocation":"13590:6:29","nodeType":"VariableDeclaration","scope":7864,"src":"13583:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7832,"name":"uint64","nodeType":"ElementaryTypeName","src":"13583:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7835,"mutability":"mutable","name":"admin","nameLocation":"13605:5:29","nodeType":"VariableDeclaration","scope":7864,"src":"13598:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7834,"name":"uint64","nodeType":"ElementaryTypeName","src":"13598:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13582:29:29"},"returnParameters":{"id":7837,"nodeType":"ParameterList","parameters":[],"src":"13629:0:29"},"scope":9039,"src":"13560:285:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7897,"nodeType":"Block","src":"14239:228:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7872,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7867,"src":"14253:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7873,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"14263:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14253:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7875,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7867,"src":"14277:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7876,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"14287:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14277:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14253:45:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7884,"nodeType":"IfStatement","src":"14249:114:29","trueBody":{"id":7883,"nodeType":"Block","src":"14300:63:29","statements":[{"errorCall":{"arguments":[{"id":7880,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7867,"src":"14345:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7879,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"14321:23:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":7881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14321:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7882,"nodeType":"RevertStatement","src":"14314:38:29"}]}},{"expression":{"id":7890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":7885,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"14373:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7887,"indexExpression":{"id":7886,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7867,"src":"14380:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14373:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14388:8:29","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":7200,"src":"14373:23:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7889,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7869,"src":"14399:8:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14373:34:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":7891,"nodeType":"ExpressionStatement","src":"14373:34:29"},{"eventCall":{"arguments":[{"id":7893,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7867,"src":"14443:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7894,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7869,"src":"14451:8:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7892,"name":"RoleGuardianChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9153,"src":"14423:19:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":7895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14423:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7896,"nodeType":"EmitStatement","src":"14418:42:29"}]},"documentation":{"id":7865,"nodeType":"StructuredDocumentation","src":"13851:308:29","text":" @dev Internal version of {setRoleGuardian} without access control.\n Emits a {RoleGuardianChanged} event.\n NOTE: Setting the guardian role as the `PUBLIC_ROLE` is allowed, but it will effectively allow\n anyone to cancel any scheduled operation for such role."},"id":7898,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleGuardian","nameLocation":"14173:16:29","nodeType":"FunctionDefinition","parameters":{"id":7870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7867,"mutability":"mutable","name":"roleId","nameLocation":"14197:6:29","nodeType":"VariableDeclaration","scope":7898,"src":"14190:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7866,"name":"uint64","nodeType":"ElementaryTypeName","src":"14190:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7869,"mutability":"mutable","name":"guardian","nameLocation":"14212:8:29","nodeType":"VariableDeclaration","scope":7898,"src":"14205:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7868,"name":"uint64","nodeType":"ElementaryTypeName","src":"14205:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"14189:32:29"},"returnParameters":{"id":7871,"nodeType":"ParameterList","parameters":[],"src":"14239:0:29"},"scope":9039,"src":"14164:303:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":7941,"nodeType":"Block","src":"14687:301:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":7908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7906,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"14701:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7907,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7225,"src":"14711:11:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14701:21:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7914,"nodeType":"IfStatement","src":"14697:90:29","trueBody":{"id":7913,"nodeType":"Block","src":"14724:63:29","statements":[{"errorCall":{"arguments":[{"id":7910,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"14769:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7909,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9207,"src":"14745:23:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":7911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14745:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7912,"nodeType":"RevertStatement","src":"14738:38:29"}]}},{"assignments":[7916],"declarations":[{"constant":false,"id":7916,"mutability":"mutable","name":"effect","nameLocation":"14804:6:29","nodeType":"VariableDeclaration","scope":7941,"src":"14797:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":7915,"name":"uint48","nodeType":"ElementaryTypeName","src":"14797:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":7917,"nodeType":"VariableDeclarationStatement","src":"14797:13:29"},{"expression":{"id":7933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":7918,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"14821:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7920,"indexExpression":{"id":7919,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"14828:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14821:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7921,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14836:10:29","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":7203,"src":"14821:25:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},{"id":7922,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7916,"src":"14848:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":7923,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14820:35:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7929,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7903,"src":"14895:8:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7930,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"14905:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":7931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14905:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":7924,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"14858:6:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$7204_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":7926,"indexExpression":{"id":7925,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"14865:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14858:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$7204_storage","typeString":"struct AccessManager.Role storage ref"}},"id":7927,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14873:10:29","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":7203,"src":"14858:25:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":7928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14884:10:29","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":21907,"src":"14858:36:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":7932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14858:60:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"14820:98:29","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7934,"nodeType":"ExpressionStatement","src":"14820:98:29"},{"eventCall":{"arguments":[{"id":7936,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"14956:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":7937,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7903,"src":"14964:8:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7938,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7916,"src":"14974:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":7935,"name":"RoleGrantDelayChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9162,"src":"14934:21:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (uint64,uint32,uint48)"}},"id":7939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14934:47:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7940,"nodeType":"EmitStatement","src":"14929:52:29"}]},"documentation":{"id":7899,"nodeType":"StructuredDocumentation","src":"14473:136:29","text":" @dev Internal version of {setGrantDelay} without access control.\n Emits a {RoleGrantDelayChanged} event."},"id":7942,"implemented":true,"kind":"function","modifiers":[],"name":"_setGrantDelay","nameLocation":"14623:14:29","nodeType":"FunctionDefinition","parameters":{"id":7904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7901,"mutability":"mutable","name":"roleId","nameLocation":"14645:6:29","nodeType":"VariableDeclaration","scope":7942,"src":"14638:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7900,"name":"uint64","nodeType":"ElementaryTypeName","src":"14638:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7903,"mutability":"mutable","name":"newDelay","nameLocation":"14660:8:29","nodeType":"VariableDeclaration","scope":7942,"src":"14653:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":7902,"name":"uint32","nodeType":"ElementaryTypeName","src":"14653:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14637:32:29"},"returnParameters":{"id":7905,"nodeType":"ParameterList","parameters":[],"src":"14687:0:29"},"scope":9039,"src":"14614:374:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[9414],"body":{"id":7976,"nodeType":"Block","src":"15300:140:29","statements":[{"body":{"id":7974,"nodeType":"Block","src":"15357:77:29","statements":[{"expression":{"arguments":[{"id":7967,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7945,"src":"15394:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":7968,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7948,"src":"15402:9:29","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":7970,"indexExpression":{"id":7969,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7956,"src":"15412:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15402:12:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":7971,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7950,"src":"15416:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7966,"name":"_setTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8003,"src":"15371:22:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":7972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15371:52:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7973,"nodeType":"ExpressionStatement","src":"15371:52:29"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7959,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7956,"src":"15330:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":7960,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7948,"src":"15334:9:29","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":7961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15344:6:29","memberName":"length","nodeType":"MemberAccess","src":"15334:16:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15330:20:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7975,"initializationExpression":{"assignments":[7956],"declarations":[{"constant":false,"id":7956,"mutability":"mutable","name":"i","nameLocation":"15323:1:29","nodeType":"VariableDeclaration","scope":7975,"src":"15315:9:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7955,"name":"uint256","nodeType":"ElementaryTypeName","src":"15315:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7958,"initialValue":{"hexValue":"30","id":7957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15327:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15315:13:29"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":7964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"15352:3:29","subExpression":{"id":7963,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7956,"src":"15354:1:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7965,"nodeType":"ExpressionStatement","src":"15352:3:29"},"nodeType":"ForStatement","src":"15310:124:29"}]},"documentation":{"id":7943,"nodeType":"StructuredDocumentation","src":"15114:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"08d6122d","id":7977,"implemented":true,"kind":"function","modifiers":[{"id":7953,"kind":"modifierInvocation","modifierName":{"id":7952,"name":"onlyAuthorized","nameLocations":["15285:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"15285:14:29"},"nodeType":"ModifierInvocation","src":"15285:14:29"}],"name":"setTargetFunctionRole","nameLocation":"15158:21:29","nodeType":"FunctionDefinition","parameters":{"id":7951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7945,"mutability":"mutable","name":"target","nameLocation":"15197:6:29","nodeType":"VariableDeclaration","scope":7977,"src":"15189:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7944,"name":"address","nodeType":"ElementaryTypeName","src":"15189:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7948,"mutability":"mutable","name":"selectors","nameLocation":"15231:9:29","nodeType":"VariableDeclaration","scope":7977,"src":"15213:27:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":7946,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15213:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":7947,"nodeType":"ArrayTypeName","src":"15213:8:29","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":7950,"mutability":"mutable","name":"roleId","nameLocation":"15257:6:29","nodeType":"VariableDeclaration","scope":7977,"src":"15250:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7949,"name":"uint64","nodeType":"ElementaryTypeName","src":"15250:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15179:90:29"},"returnParameters":{"id":7954,"nodeType":"ParameterList","parameters":[],"src":"15300:0:29"},"scope":9039,"src":"15149:291:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8002,"nodeType":"Block","src":"15696:131:29","statements":[{"expression":{"id":7994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":7987,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"15706:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":7989,"indexExpression":{"id":7988,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7980,"src":"15715:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15706:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":7990,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15723:12:29","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":7179,"src":"15706:29:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":7992,"indexExpression":{"id":7991,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7982,"src":"15736:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15706:39:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7993,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7984,"src":"15748:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15706:48:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":7995,"nodeType":"ExpressionStatement","src":"15706:48:29"},{"eventCall":{"arguments":[{"id":7997,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7980,"src":"15795:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7998,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7982,"src":"15803:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":7999,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7984,"src":"15813:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":7996,"name":"TargetFunctionRoleUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9178,"src":"15769:25:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":8000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15769:51:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8001,"nodeType":"EmitStatement","src":"15764:56:29"}]},"documentation":{"id":7978,"nodeType":"StructuredDocumentation","src":"15446:148:29","text":" @dev Internal version of {setTargetFunctionRole} without access control.\n Emits a {TargetFunctionRoleUpdated} event."},"id":8003,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetFunctionRole","nameLocation":"15608:22:29","nodeType":"FunctionDefinition","parameters":{"id":7985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7980,"mutability":"mutable","name":"target","nameLocation":"15639:6:29","nodeType":"VariableDeclaration","scope":8003,"src":"15631:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7979,"name":"address","nodeType":"ElementaryTypeName","src":"15631:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7982,"mutability":"mutable","name":"selector","nameLocation":"15654:8:29","nodeType":"VariableDeclaration","scope":8003,"src":"15647:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":7981,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15647:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":7984,"mutability":"mutable","name":"roleId","nameLocation":"15671:6:29","nodeType":"VariableDeclaration","scope":8003,"src":"15664:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7983,"name":"uint64","nodeType":"ElementaryTypeName","src":"15664:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15630:48:29"},"returnParameters":{"id":7986,"nodeType":"ParameterList","parameters":[],"src":"15696:0:29"},"scope":9039,"src":"15599:228:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[9422],"body":{"id":8018,"nodeType":"Block","src":"15960:55:29","statements":[{"expression":{"arguments":[{"id":8014,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8006,"src":"15991:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8015,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8008,"src":"15999:8:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":8013,"name":"_setTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8054,"src":"15970:20:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32)"}},"id":8016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15970:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8017,"nodeType":"ExpressionStatement","src":"15970:38:29"}]},"documentation":{"id":8004,"nodeType":"StructuredDocumentation","src":"15833:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"d22b5989","id":8019,"implemented":true,"kind":"function","modifiers":[{"id":8011,"kind":"modifierInvocation","modifierName":{"id":8010,"name":"onlyAuthorized","nameLocations":["15945:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"15945:14:29"},"nodeType":"ModifierInvocation","src":"15945:14:29"}],"name":"setTargetAdminDelay","nameLocation":"15877:19:29","nodeType":"FunctionDefinition","parameters":{"id":8009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8006,"mutability":"mutable","name":"target","nameLocation":"15905:6:29","nodeType":"VariableDeclaration","scope":8019,"src":"15897:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8005,"name":"address","nodeType":"ElementaryTypeName","src":"15897:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8008,"mutability":"mutable","name":"newDelay","nameLocation":"15920:8:29","nodeType":"VariableDeclaration","scope":8019,"src":"15913:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8007,"name":"uint32","nodeType":"ElementaryTypeName","src":"15913:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15896:33:29"},"returnParameters":{"id":8012,"nodeType":"ParameterList","parameters":[],"src":"15960:0:29"},"scope":9039,"src":"15868:147:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8053,"nodeType":"Block","src":"16250:207:29","statements":[{"assignments":[8028],"declarations":[{"constant":false,"id":8028,"mutability":"mutable","name":"effect","nameLocation":"16267:6:29","nodeType":"VariableDeclaration","scope":8053,"src":"16260:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8027,"name":"uint48","nodeType":"ElementaryTypeName","src":"16260:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":8029,"nodeType":"VariableDeclarationStatement","src":"16260:13:29"},{"expression":{"id":8045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":8030,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"16284:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":8032,"indexExpression":{"id":8031,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8022,"src":"16293:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16284:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":8033,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16301:10:29","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":7182,"src":"16284:27:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},{"id":8034,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8028,"src":"16313:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":8035,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"16283:37:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8041,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"16362:8:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8042,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7363,"src":"16372:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":8043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16372:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":8036,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"16323:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":8038,"indexExpression":{"id":8037,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8022,"src":"16332:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16323:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":8039,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16340:10:29","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":7182,"src":"16323:27:29","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":8040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16351:10:29","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":21907,"src":"16323:38:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":8044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16323:62:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"16283:102:29","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8046,"nodeType":"ExpressionStatement","src":"16283:102:29"},{"eventCall":{"arguments":[{"id":8048,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8022,"src":"16425:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8049,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"16433:8:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8050,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8028,"src":"16443:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8047,"name":"TargetAdminDelayUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9187,"src":"16401:23:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (address,uint32,uint48)"}},"id":8051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16401:49:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8052,"nodeType":"EmitStatement","src":"16396:54:29"}]},"documentation":{"id":8020,"nodeType":"StructuredDocumentation","src":"16021:144:29","text":" @dev Internal version of {setTargetAdminDelay} without access control.\n Emits a {TargetAdminDelayUpdated} event."},"id":8054,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetAdminDelay","nameLocation":"16179:20:29","nodeType":"FunctionDefinition","parameters":{"id":8025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8022,"mutability":"mutable","name":"target","nameLocation":"16208:6:29","nodeType":"VariableDeclaration","scope":8054,"src":"16200:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8021,"name":"address","nodeType":"ElementaryTypeName","src":"16200:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8024,"mutability":"mutable","name":"newDelay","nameLocation":"16223:8:29","nodeType":"VariableDeclaration","scope":8054,"src":"16216:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8023,"name":"uint32","nodeType":"ElementaryTypeName","src":"16216:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"16199:33:29"},"returnParameters":{"id":8026,"nodeType":"ParameterList","parameters":[],"src":"16250:0:29"},"scope":9039,"src":"16170:287:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[9430],"body":{"id":8069,"nodeType":"Block","src":"16702:49:29","statements":[{"expression":{"arguments":[{"id":8065,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8057,"src":"16729:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8066,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8059,"src":"16737:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8064,"name":"_setTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8091,"src":"16712:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":8067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16712:32:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8068,"nodeType":"ExpressionStatement","src":"16712:32:29"}]},"documentation":{"id":8055,"nodeType":"StructuredDocumentation","src":"16583:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"167bd395","id":8070,"implemented":true,"kind":"function","modifiers":[{"id":8062,"kind":"modifierInvocation","modifierName":{"id":8061,"name":"onlyAuthorized","nameLocations":["16687:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"16687:14:29"},"nodeType":"ModifierInvocation","src":"16687:14:29"}],"name":"setTargetClosed","nameLocation":"16627:15:29","nodeType":"FunctionDefinition","parameters":{"id":8060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8057,"mutability":"mutable","name":"target","nameLocation":"16651:6:29","nodeType":"VariableDeclaration","scope":8070,"src":"16643:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8056,"name":"address","nodeType":"ElementaryTypeName","src":"16643:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8059,"mutability":"mutable","name":"closed","nameLocation":"16664:6:29","nodeType":"VariableDeclaration","scope":8070,"src":"16659:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8058,"name":"bool","nodeType":"ElementaryTypeName","src":"16659:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16642:29:29"},"returnParameters":{"id":8063,"nodeType":"ParameterList","parameters":[],"src":"16702:0:29"},"scope":9039,"src":"16618:133:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8090,"nodeType":"Block","src":"16993:92:29","statements":[{"expression":{"id":8083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":8078,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7230,"src":"17003:8:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$7185_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":8080,"indexExpression":{"id":8079,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8073,"src":"17012:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17003:16:29","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$7185_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":8081,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17020:6:29","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":7184,"src":"17003:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8082,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8075,"src":"17029:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17003:32:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8084,"nodeType":"ExpressionStatement","src":"17003:32:29"},{"eventCall":{"arguments":[{"id":8086,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8073,"src":"17063:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8087,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8075,"src":"17071:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8085,"name":"TargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9169,"src":"17050:12:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":8088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17050:28:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8089,"nodeType":"EmitStatement","src":"17045:33:29"}]},"documentation":{"id":8071,"nodeType":"StructuredDocumentation","src":"16757:159:29","text":" @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n Emits a {TargetClosed} event."},"id":8091,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetClosed","nameLocation":"16930:16:29","nodeType":"FunctionDefinition","parameters":{"id":8076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8073,"mutability":"mutable","name":"target","nameLocation":"16955:6:29","nodeType":"VariableDeclaration","scope":8091,"src":"16947:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8072,"name":"address","nodeType":"ElementaryTypeName","src":"16947:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8075,"mutability":"mutable","name":"closed","nameLocation":"16968:6:29","nodeType":"VariableDeclaration","scope":8091,"src":"16963:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8074,"name":"bool","nodeType":"ElementaryTypeName","src":"16963:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16946:29:29"},"returnParameters":{"id":8077,"nodeType":"ParameterList","parameters":[],"src":"16993:0:29"},"scope":9039,"src":"16921:164:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[9438],"body":{"id":8113,"nodeType":"Block","src":"17316:114:29","statements":[{"assignments":[8100],"declarations":[{"constant":false,"id":8100,"mutability":"mutable","name":"timepoint","nameLocation":"17333:9:29","nodeType":"VariableDeclaration","scope":8113,"src":"17326:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8099,"name":"uint48","nodeType":"ElementaryTypeName","src":"17326:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":8105,"initialValue":{"expression":{"baseExpression":{"id":8101,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"17345:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8103,"indexExpression":{"id":8102,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"17356:2:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17345:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8104,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17360:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"17345:24:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"17326:43:29"},{"expression":{"condition":{"arguments":[{"id":8107,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8100,"src":"17397:9:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8106,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9002,"src":"17386:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":8108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17386:21:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":8110,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8100,"src":"17414:9:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":8111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17386:37:29","trueExpression":{"hexValue":"30","id":8109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17410:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":8098,"id":8112,"nodeType":"Return","src":"17379:44:29"}]},"documentation":{"id":8092,"nodeType":"StructuredDocumentation","src":"17211:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"3adc277a","id":8114,"implemented":true,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"17255:11:29","nodeType":"FunctionDefinition","parameters":{"id":8095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8094,"mutability":"mutable","name":"id","nameLocation":"17275:2:29","nodeType":"VariableDeclaration","scope":8114,"src":"17267:10:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8093,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17267:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17266:12:29"},"returnParameters":{"id":8098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8097,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8114,"src":"17308:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8096,"name":"uint48","nodeType":"ElementaryTypeName","src":"17308:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17307:8:29"},"scope":9039,"src":"17246:184:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9446],"body":{"id":8127,"nodeType":"Block","src":"17538:44:29","statements":[{"expression":{"expression":{"baseExpression":{"id":8122,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"17555:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8124,"indexExpression":{"id":8123,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8117,"src":"17566:2:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17555:14:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17570:5:29","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":7208,"src":"17555:20:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":8121,"id":8126,"nodeType":"Return","src":"17548:27:29"}]},"documentation":{"id":8115,"nodeType":"StructuredDocumentation","src":"17436:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"4136a33c","id":8128,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"17480:8:29","nodeType":"FunctionDefinition","parameters":{"id":8118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8117,"mutability":"mutable","name":"id","nameLocation":"17497:2:29","nodeType":"VariableDeclaration","scope":8128,"src":"17489:10:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17489:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17488:12:29"},"returnParameters":{"id":8121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8120,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8128,"src":"17530:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8119,"name":"uint32","nodeType":"ElementaryTypeName","src":"17530:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"17529:8:29"},"scope":9039,"src":"17471:111:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9460],"body":{"id":8241,"nodeType":"Block","src":"17780:1216:29","statements":[{"assignments":[8143],"declarations":[{"constant":false,"id":8143,"mutability":"mutable","name":"caller","nameLocation":"17798:6:29","nodeType":"VariableDeclaration","scope":8241,"src":"17790:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8142,"name":"address","nodeType":"ElementaryTypeName","src":"17790:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8146,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":8144,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"17807:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17807:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17790:29:29"},{"assignments":[null,8148],"declarations":[null,{"constant":false,"id":8148,"mutability":"mutable","name":"setback","nameLocation":"17920:7:29","nodeType":"VariableDeclaration","scope":8241,"src":"17913:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8147,"name":"uint32","nodeType":"ElementaryTypeName","src":"17913:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8154,"initialValue":{"arguments":[{"id":8150,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8143,"src":"17948:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8151,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8131,"src":"17956:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8152,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8133,"src":"17964:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8149,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8864,"src":"17931:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes calldata) view returns (bool,uint32)"}},"id":8153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17931:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"17910:59:29"},{"assignments":[8156],"declarations":[{"constant":false,"id":8156,"mutability":"mutable","name":"minWhen","nameLocation":"17987:7:29","nodeType":"VariableDeclaration","scope":8241,"src":"17980:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8155,"name":"uint48","nodeType":"ElementaryTypeName","src":"17980:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":8162,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8157,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"17997:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$21997_$","typeString":"type(library Time)"}},"id":8158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18002:9:29","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":21745,"src":"17997:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":8159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17997:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8160,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8148,"src":"18016:7:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"17997:26:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"17980:43:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8163,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8148,"src":"18130:7:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18141:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18130:12:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8166,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8135,"src":"18147:4:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":8167,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18154:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18147:8:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8169,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8135,"src":"18159:4:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":8170,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8156,"src":"18166:7:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18159:14:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18147:26:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8173,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18146:28:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18130:44:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8184,"nodeType":"IfStatement","src":"18126:149:29","trueBody":{"id":8183,"nodeType":"Block","src":"18176:99:29","statements":[{"errorCall":{"arguments":[{"id":8176,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8143,"src":"18227:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8177,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8131,"src":"18235:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8179,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8133,"src":"18258:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8178,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"18243:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18243:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8175,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9223,"src":"18197:29:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":8181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18197:67:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8182,"nodeType":"RevertStatement","src":"18190:74:29"}]}},{"expression":{"id":8194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8185,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8135,"src":"18333:4:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8190,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8135,"src":"18356:4:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":8191,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8156,"src":"18362:7:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":8188,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"18347:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":8189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18352:3:29","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":18424,"src":"18347:8:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":8192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18347:23:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8187,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18340:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":8186,"name":"uint48","nodeType":"ElementaryTypeName","src":"18340:6:29","typeDescriptions":{}}},"id":8193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18340:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18333:38:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":8195,"nodeType":"ExpressionStatement","src":"18333:38:29"},{"expression":{"id":8202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8196,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8138,"src":"18477:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8198,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8143,"src":"18505:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8199,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8131,"src":"18513:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8200,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8133,"src":"18521:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8197,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8594,"src":"18491:13:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":8201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18491:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18477:49:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8203,"nodeType":"ExpressionStatement","src":"18477:49:29"},{"expression":{"arguments":[{"id":8205,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8138,"src":"18556:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8204,"name":"_checkNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8270,"src":"18537:18:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":8206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18537:31:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8207,"nodeType":"ExpressionStatement","src":"18537:31:29"},{"id":8217,"nodeType":"UncheckedBlock","src":"18579:155:29","statements":[{"expression":{"id":8215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8208,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8140,"src":"18682:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":8209,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"18690:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8211,"indexExpression":{"id":8210,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8138,"src":"18701:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18690:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8212,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18714:5:29","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":7208,"src":"18690:29:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":8213,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18722:1:29","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18690:33:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18682:41:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8216,"nodeType":"ExpressionStatement","src":"18682:41:29"}]},{"expression":{"id":8223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":8218,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"18743:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8220,"indexExpression":{"id":8219,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8138,"src":"18754:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18743:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8221,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18767:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"18743:33:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8222,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8135,"src":"18779:4:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18743:40:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":8224,"nodeType":"ExpressionStatement","src":"18743:40:29"},{"expression":{"id":8230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":8225,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"18793:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8227,"indexExpression":{"id":8226,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8138,"src":"18804:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18793:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8228,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18817:5:29","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":7208,"src":"18793:29:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8229,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8140,"src":"18825:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18793:37:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8231,"nodeType":"ExpressionStatement","src":"18793:37:29"},{"eventCall":{"arguments":[{"id":8233,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8138,"src":"18864:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8234,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8140,"src":"18877:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8235,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8135,"src":"18884:4:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":8236,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8143,"src":"18890:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8237,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8131,"src":"18898:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8238,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8133,"src":"18906:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8232,"name":"OperationScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"18845:18:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$_t_uint48_$_t_address_$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,uint32,uint48,address,address,bytes memory)"}},"id":8239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18845:66:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8240,"nodeType":"EmitStatement","src":"18840:71:29"}]},"documentation":{"id":8129,"nodeType":"StructuredDocumentation","src":"17588:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"f801a698","id":8242,"implemented":true,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"17632:8:29","nodeType":"FunctionDefinition","parameters":{"id":8136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8131,"mutability":"mutable","name":"target","nameLocation":"17658:6:29","nodeType":"VariableDeclaration","scope":8242,"src":"17650:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8130,"name":"address","nodeType":"ElementaryTypeName","src":"17650:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8133,"mutability":"mutable","name":"data","nameLocation":"17689:4:29","nodeType":"VariableDeclaration","scope":8242,"src":"17674:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8132,"name":"bytes","nodeType":"ElementaryTypeName","src":"17674:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":8135,"mutability":"mutable","name":"when","nameLocation":"17710:4:29","nodeType":"VariableDeclaration","scope":8242,"src":"17703:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8134,"name":"uint48","nodeType":"ElementaryTypeName","src":"17703:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17640:80:29"},"returnParameters":{"id":8141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8138,"mutability":"mutable","name":"operationId","nameLocation":"17753:11:29","nodeType":"VariableDeclaration","scope":8242,"src":"17745:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8137,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17745:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":8140,"mutability":"mutable","name":"nonce","nameLocation":"17773:5:29","nodeType":"VariableDeclaration","scope":8242,"src":"17766:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8139,"name":"uint32","nodeType":"ElementaryTypeName","src":"17766:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"17744:35:29"},"scope":9039,"src":"17623:1373:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8269,"nodeType":"Block","src":"19252:210:29","statements":[{"assignments":[8249],"declarations":[{"constant":false,"id":8249,"mutability":"mutable","name":"prevTimepoint","nameLocation":"19269:13:29","nodeType":"VariableDeclaration","scope":8269,"src":"19262:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8248,"name":"uint48","nodeType":"ElementaryTypeName","src":"19262:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":8254,"initialValue":{"expression":{"baseExpression":{"id":8250,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"19285:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8252,"indexExpression":{"id":8251,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8245,"src":"19296:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19285:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19309:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"19285:33:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"19262:56:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8255,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8249,"src":"19332:13:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":8256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19349:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19332:18:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"19354:26:29","subExpression":{"arguments":[{"id":8259,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8249,"src":"19366:13:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8258,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9002,"src":"19355:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":8260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19355:25:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19332:48:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8268,"nodeType":"IfStatement","src":"19328:128:29","trueBody":{"id":8267,"nodeType":"Block","src":"19382:74:29","statements":[{"errorCall":{"arguments":[{"id":8264,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8245,"src":"19433:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8263,"name":"AccessManagerAlreadyScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9191,"src":"19403:29:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":8265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19403:42:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8266,"nodeType":"RevertStatement","src":"19396:49:29"}]}}]},"documentation":{"id":8243,"nodeType":"StructuredDocumentation","src":"19002:183:29","text":" @dev Reverts if the operation is currently scheduled and has not expired.\n NOTE: This function was introduced due to stack too deep errors in schedule."},"id":8270,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotScheduled","nameLocation":"19199:18:29","nodeType":"FunctionDefinition","parameters":{"id":8246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8245,"mutability":"mutable","name":"operationId","nameLocation":"19226:11:29","nodeType":"VariableDeclaration","scope":8270,"src":"19218:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8244,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19218:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19217:21:29"},"returnParameters":{"id":8247,"nodeType":"ParameterList","parameters":[],"src":"19252:0:29"},"scope":9039,"src":"19190:272:29","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[9470],"body":{"id":8367,"nodeType":"Block","src":"19826:1144:29","statements":[{"assignments":[8281],"declarations":[{"constant":false,"id":8281,"mutability":"mutable","name":"caller","nameLocation":"19844:6:29","nodeType":"VariableDeclaration","scope":8367,"src":"19836:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8280,"name":"address","nodeType":"ElementaryTypeName","src":"19836:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8284,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":8282,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"19853:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19853:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19836:29:29"},{"assignments":[8286,8288],"declarations":[{"constant":false,"id":8286,"mutability":"mutable","name":"immediate","nameLocation":"19962:9:29","nodeType":"VariableDeclaration","scope":8367,"src":"19957:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8285,"name":"bool","nodeType":"ElementaryTypeName","src":"19957:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8288,"mutability":"mutable","name":"setback","nameLocation":"19980:7:29","nodeType":"VariableDeclaration","scope":8367,"src":"19973:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8287,"name":"uint32","nodeType":"ElementaryTypeName","src":"19973:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8294,"initialValue":{"arguments":[{"id":8290,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8281,"src":"20008:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8291,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8273,"src":"20016:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8292,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8275,"src":"20024:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8289,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8864,"src":"19991:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes calldata) view returns (bool,uint32)"}},"id":8293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19991:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"19956:73:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"20089:10:29","subExpression":{"id":8295,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8286,"src":"20090:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8297,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"20103:7:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20114:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20103:12:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20089:26:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8310,"nodeType":"IfStatement","src":"20085:131:29","trueBody":{"id":8309,"nodeType":"Block","src":"20117:99:29","statements":[{"errorCall":{"arguments":[{"id":8302,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8281,"src":"20168:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8303,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8273,"src":"20176:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8305,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8275,"src":"20199:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8304,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"20184:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20184:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8301,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9223,"src":"20138:29:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":8307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20138:67:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8308,"nodeType":"RevertStatement","src":"20131:74:29"}]}},{"assignments":[8312],"declarations":[{"constant":false,"id":8312,"mutability":"mutable","name":"operationId","nameLocation":"20234:11:29","nodeType":"VariableDeclaration","scope":8367,"src":"20226:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8311,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20226:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8318,"initialValue":{"arguments":[{"id":8314,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8281,"src":"20262:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8315,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8273,"src":"20270:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8316,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8275,"src":"20278:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8313,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8594,"src":"20248:13:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":8317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20248:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20226:57:29"},{"assignments":[8320],"declarations":[{"constant":false,"id":8320,"mutability":"mutable","name":"nonce","nameLocation":"20300:5:29","nodeType":"VariableDeclaration","scope":8367,"src":"20293:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8319,"name":"uint32","nodeType":"ElementaryTypeName","src":"20293:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8321,"nodeType":"VariableDeclarationStatement","src":"20293:12:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8322,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8288,"src":"20485:7:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":8323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20496:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20485:12:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8326,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8312,"src":"20513:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8325,"name":"getSchedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8114,"src":"20501:11:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint48_$","typeString":"function (bytes32) view returns (uint48)"}},"id":8327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20501:24:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":8328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20529:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20501:29:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20485:45:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8338,"nodeType":"IfStatement","src":"20481:116:29","trueBody":{"id":8337,"nodeType":"Block","src":"20532:65:29","statements":[{"expression":{"id":8335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8331,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8320,"src":"20546:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8333,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8312,"src":"20574:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8332,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8572,"src":"20554:19:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":8334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20554:32:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"20546:40:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8336,"nodeType":"ExpressionStatement","src":"20546:40:29"}]}},{"assignments":[8340],"declarations":[{"constant":false,"id":8340,"mutability":"mutable","name":"executionIdBefore","nameLocation":"20669:17:29","nodeType":"VariableDeclaration","scope":8367,"src":"20661:25:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8339,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20661:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8342,"initialValue":{"id":8341,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7242,"src":"20689:12:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20661:40:29"},{"expression":{"id":8350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8343,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7242,"src":"20711:12:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8345,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8273,"src":"20743:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8347,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8275,"src":"20766:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8346,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"20751:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20751:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8344,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9038,"src":"20726:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":8349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20726:46:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20711:61:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8351,"nodeType":"ExpressionStatement","src":"20711:61:29"},{"expression":{"arguments":[{"id":8355,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8273,"src":"20837:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8356,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8275,"src":"20845:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"expression":{"id":8357,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20851:3:29","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":8358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20855:5:29","memberName":"value","nodeType":"MemberAccess","src":"20851:9:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8352,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"20807:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$12580_$","typeString":"type(library Address)"}},"id":8354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20815:21:29","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":12445,"src":"20807:29:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":8359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20807:54:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8360,"nodeType":"ExpressionStatement","src":"20807:54:29"},{"expression":{"id":8363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8361,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7242,"src":"20908:12:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8362,"name":"executionIdBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8340,"src":"20923:17:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20908:32:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8364,"nodeType":"ExpressionStatement","src":"20908:32:29"},{"expression":{"id":8365,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8320,"src":"20958:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":8279,"id":8366,"nodeType":"Return","src":"20951:12:29"}]},"documentation":{"id":8271,"nodeType":"StructuredDocumentation","src":"19468:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"1cff79cd","id":8368,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"19741:7:29","nodeType":"FunctionDefinition","parameters":{"id":8276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8273,"mutability":"mutable","name":"target","nameLocation":"19757:6:29","nodeType":"VariableDeclaration","scope":8368,"src":"19749:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8272,"name":"address","nodeType":"ElementaryTypeName","src":"19749:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8275,"mutability":"mutable","name":"data","nameLocation":"19780:4:29","nodeType":"VariableDeclaration","scope":8368,"src":"19765:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8274,"name":"bytes","nodeType":"ElementaryTypeName","src":"19765:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19748:37:29"},"returnParameters":{"id":8279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8278,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8368,"src":"19818:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8277,"name":"uint32","nodeType":"ElementaryTypeName","src":"19818:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"19817:8:29"},"scope":9039,"src":"19732:1238:29","stateMutability":"payable","virtual":true,"visibility":"public"},{"baseFunctions":[9482],"body":{"id":8469,"nodeType":"Block","src":"21112:1007:29","statements":[{"assignments":[8381],"declarations":[{"constant":false,"id":8381,"mutability":"mutable","name":"msgsender","nameLocation":"21130:9:29","nodeType":"VariableDeclaration","scope":8469,"src":"21122:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8380,"name":"address","nodeType":"ElementaryTypeName","src":"21122:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8384,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":8382,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"21142:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21142:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"21122:32:29"},{"assignments":[8386],"declarations":[{"constant":false,"id":8386,"mutability":"mutable","name":"selector","nameLocation":"21171:8:29","nodeType":"VariableDeclaration","scope":8469,"src":"21164:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":8385,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21164:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":8390,"initialValue":{"arguments":[{"id":8388,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8375,"src":"21197:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8387,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"21182:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21182:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"21164:38:29"},{"assignments":[8392],"declarations":[{"constant":false,"id":8392,"mutability":"mutable","name":"operationId","nameLocation":"21221:11:29","nodeType":"VariableDeclaration","scope":8469,"src":"21213:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8391,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21213:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":8398,"initialValue":{"arguments":[{"id":8394,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8371,"src":"21249:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8395,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8373,"src":"21257:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8396,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8375,"src":"21265:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8393,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8594,"src":"21235:13:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":8397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21235:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"21213:57:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":8399,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"21284:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8401,"indexExpression":{"id":8400,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"21295:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21284:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8402,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21308:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"21284:33:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21321:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21284:38:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8410,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8371,"src":"21404:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8411,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8381,"src":"21414:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21404:19:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8447,"nodeType":"IfStatement","src":"21400:494:29","trueBody":{"id":8446,"nodeType":"Block","src":"21425:469:29","statements":[{"assignments":[8414,null],"declarations":[{"constant":false,"id":8414,"mutability":"mutable","name":"isAdmin","nameLocation":"21578:7:29","nodeType":"VariableDeclaration","scope":8446,"src":"21573:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8413,"name":"bool","nodeType":"ElementaryTypeName","src":"21573:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":8419,"initialValue":{"arguments":[{"id":8416,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"21599:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8417,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8381,"src":"21611:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8415,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7547,"src":"21591:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":8418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21591:30:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"21572:49:29"},{"assignments":[8421,null],"declarations":[{"constant":false,"id":8421,"mutability":"mutable","name":"isGuardian","nameLocation":"21641:10:29","nodeType":"VariableDeclaration","scope":8446,"src":"21636:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8420,"name":"bool","nodeType":"ElementaryTypeName","src":"21636:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":8431,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":8425,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8373,"src":"21703:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8426,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8386,"src":"21711:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8424,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7395,"src":"21681:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":8427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21681:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8423,"name":"getRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7439,"src":"21665:15:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":8428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21665:56:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8429,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8381,"src":"21723:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8422,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7547,"src":"21657:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":8430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21657:76:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"21635:98:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21751:8:29","subExpression":{"id":8432,"name":"isAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8414,"src":"21752:7:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21763:11:29","subExpression":{"id":8434,"name":"isGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8421,"src":"21764:10:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21751:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8445,"nodeType":"IfStatement","src":"21747:137:29","trueBody":{"id":8444,"nodeType":"Block","src":"21776:108:29","statements":[{"errorCall":{"arguments":[{"id":8438,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8381,"src":"21833:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8439,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8371,"src":"21844:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8440,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8373,"src":"21852:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8441,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8386,"src":"21860:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8437,"name":"AccessManagerUnauthorizedCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9237,"src":"21801:31:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,address,bytes4) pure returns (error)"}},"id":8442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21801:68:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8443,"nodeType":"RevertStatement","src":"21794:75:29"}]}}]}},"id":8448,"nodeType":"IfStatement","src":"21280:614:29","trueBody":{"id":8409,"nodeType":"Block","src":"21324:70:29","statements":[{"errorCall":{"arguments":[{"id":8406,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"21371:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8405,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9195,"src":"21345:25:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":8407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21345:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8408,"nodeType":"RevertStatement","src":"21338:45:29"}]}},{"expression":{"id":8453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"21904:40:29","subExpression":{"expression":{"baseExpression":{"id":8449,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"21911:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8451,"indexExpression":{"id":8450,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"21922:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21911:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8452,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"21935:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"21911:33:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8454,"nodeType":"ExpressionStatement","src":"21904:40:29"},{"assignments":[8456],"declarations":[{"constant":false,"id":8456,"mutability":"mutable","name":"nonce","nameLocation":"22000:5:29","nodeType":"VariableDeclaration","scope":8469,"src":"21993:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8455,"name":"uint32","nodeType":"ElementaryTypeName","src":"21993:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8461,"initialValue":{"expression":{"baseExpression":{"id":8457,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"22008:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8459,"indexExpression":{"id":8458,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"22019:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22008:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8460,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22032:5:29","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":7208,"src":"22008:29:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"21993:44:29"},{"eventCall":{"arguments":[{"id":8463,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"22070:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8464,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8456,"src":"22083:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":8462,"name":"OperationCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9112,"src":"22052:17:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":8465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22052:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8466,"nodeType":"EmitStatement","src":"22047:42:29"},{"expression":{"id":8467,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8456,"src":"22107:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":8379,"id":8468,"nodeType":"Return","src":"22100:12:29"}]},"documentation":{"id":8369,"nodeType":"StructuredDocumentation","src":"20976:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"d6bb62c6","id":8470,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"21020:6:29","nodeType":"FunctionDefinition","parameters":{"id":8376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8371,"mutability":"mutable","name":"caller","nameLocation":"21035:6:29","nodeType":"VariableDeclaration","scope":8470,"src":"21027:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8370,"name":"address","nodeType":"ElementaryTypeName","src":"21027:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8373,"mutability":"mutable","name":"target","nameLocation":"21051:6:29","nodeType":"VariableDeclaration","scope":8470,"src":"21043:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8372,"name":"address","nodeType":"ElementaryTypeName","src":"21043:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8375,"mutability":"mutable","name":"data","nameLocation":"21074:4:29","nodeType":"VariableDeclaration","scope":8470,"src":"21059:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8374,"name":"bytes","nodeType":"ElementaryTypeName","src":"21059:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21026:53:29"},"returnParameters":{"id":8379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8378,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8470,"src":"21104:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8377,"name":"uint32","nodeType":"ElementaryTypeName","src":"21104:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"21103:8:29"},"scope":9039,"src":"21011:1108:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9490],"body":{"id":8506,"nodeType":"Block","src":"22240:296:29","statements":[{"assignments":[8479],"declarations":[{"constant":false,"id":8479,"mutability":"mutable","name":"target","nameLocation":"22258:6:29","nodeType":"VariableDeclaration","scope":8506,"src":"22250:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8478,"name":"address","nodeType":"ElementaryTypeName","src":"22250:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8482,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":8480,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"22267:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22267:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"22250:29:29"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":8484,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8479,"src":"22308:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8483,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9079,"src":"22293:14:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$9079_$","typeString":"type(contract IAccessManaged)"}},"id":8485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22293:22:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$9079","typeString":"contract IAccessManaged"}},"id":8486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22316:22:29","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":9078,"src":"22293:45:29","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes4_$","typeString":"function () view external returns (bytes4)"}},"id":8487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22293:47:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":8488,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9079,"src":"22344:14:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$9079_$","typeString":"type(contract IAccessManaged)"}},"id":8489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22359:22:29","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":9078,"src":"22344:37:29","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_bytes4_$","typeString":"function IAccessManaged.isConsumingScheduledOp() view returns (bytes4)"}},"id":8490,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22382:8:29","memberName":"selector","nodeType":"MemberAccess","src":"22344:46:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"22293:97:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8497,"nodeType":"IfStatement","src":"22289:175:29","trueBody":{"id":8496,"nodeType":"Block","src":"22392:72:29","statements":[{"errorCall":{"arguments":[{"id":8493,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8479,"src":"22446:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8492,"name":"AccessManagerUnauthorizedConsume","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9227,"src":"22413:32:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":8494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22413:40:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8495,"nodeType":"RevertStatement","src":"22406:47:29"}]}},{"expression":{"arguments":[{"arguments":[{"id":8500,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8473,"src":"22507:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8501,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8479,"src":"22515:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8502,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8475,"src":"22523:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8499,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8594,"src":"22493:13:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":8503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22493:35:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8498,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8572,"src":"22473:19:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":8504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22473:56:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8505,"nodeType":"ExpressionStatement","src":"22473:56:29"}]},"documentation":{"id":8471,"nodeType":"StructuredDocumentation","src":"22125:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"94c7d7ee","id":8507,"implemented":true,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"22169:18:29","nodeType":"FunctionDefinition","parameters":{"id":8476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8473,"mutability":"mutable","name":"caller","nameLocation":"22196:6:29","nodeType":"VariableDeclaration","scope":8507,"src":"22188:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8472,"name":"address","nodeType":"ElementaryTypeName","src":"22188:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8475,"mutability":"mutable","name":"data","nameLocation":"22219:4:29","nodeType":"VariableDeclaration","scope":8507,"src":"22204:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8474,"name":"bytes","nodeType":"ElementaryTypeName","src":"22204:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"22187:37:29"},"returnParameters":{"id":8477,"nodeType":"ParameterList","parameters":[],"src":"22240:0:29"},"scope":9039,"src":"22160:376:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8571,"nodeType":"Block","src":"22810:592:29","statements":[{"assignments":[8516],"declarations":[{"constant":false,"id":8516,"mutability":"mutable","name":"timepoint","nameLocation":"22827:9:29","nodeType":"VariableDeclaration","scope":8571,"src":"22820:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8515,"name":"uint48","nodeType":"ElementaryTypeName","src":"22820:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":8521,"initialValue":{"expression":{"baseExpression":{"id":8517,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"22839:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8519,"indexExpression":{"id":8518,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"22850:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22839:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8520,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22863:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"22839:33:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"22820:52:29"},{"assignments":[8523],"declarations":[{"constant":false,"id":8523,"mutability":"mutable","name":"nonce","nameLocation":"22889:5:29","nodeType":"VariableDeclaration","scope":8571,"src":"22882:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8522,"name":"uint32","nodeType":"ElementaryTypeName","src":"22882:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8528,"initialValue":{"expression":{"baseExpression":{"id":8524,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"22897:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8526,"indexExpression":{"id":8525,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"22908:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22897:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8527,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22921:5:29","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":7208,"src":"22897:29:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"22882:44:29"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8529,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8516,"src":"22941:9:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22954:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22941:14:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8537,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8516,"src":"23037:9:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8538,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"23049:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$21997_$","typeString":"type(library Time)"}},"id":8539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23054:9:29","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":21745,"src":"23049:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":8540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23049:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23037:28:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":8548,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8516,"src":"23154:9:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":8547,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9002,"src":"23143:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":8549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23143:21:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8555,"nodeType":"IfStatement","src":"23139:92:29","trueBody":{"id":8554,"nodeType":"Block","src":"23166:65:29","statements":[{"errorCall":{"arguments":[{"id":8551,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"23208:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8550,"name":"AccessManagerExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9203,"src":"23187:20:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":8552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23187:33:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8553,"nodeType":"RevertStatement","src":"23180:40:29"}]}},"id":8556,"nodeType":"IfStatement","src":"23033:198:29","trueBody":{"id":8546,"nodeType":"Block","src":"23067:66:29","statements":[{"errorCall":{"arguments":[{"id":8543,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"23110:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8542,"name":"AccessManagerNotReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9199,"src":"23088:21:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":8544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23088:34:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8545,"nodeType":"RevertStatement","src":"23081:41:29"}]}},"id":8557,"nodeType":"IfStatement","src":"22937:294:29","trueBody":{"id":8536,"nodeType":"Block","src":"22957:70:29","statements":[{"errorCall":{"arguments":[{"id":8533,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"23004:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8532,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9195,"src":"22978:25:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":8534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22978:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8535,"nodeType":"RevertStatement","src":"22971:45:29"}]}},{"expression":{"id":8562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"23241:40:29","subExpression":{"expression":{"baseExpression":{"id":8558,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7240,"src":"23248:10:29","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$7209_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":8560,"indexExpression":{"id":8559,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"23259:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23248:23:29","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$7209_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":8561,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"23272:9:29","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":7206,"src":"23248:33:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8563,"nodeType":"ExpressionStatement","src":"23241:40:29"},{"eventCall":{"arguments":[{"id":8565,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8510,"src":"23353:11:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":8566,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8523,"src":"23366:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":8564,"name":"OperationExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9105,"src":"23335:17:29","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":8567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23335:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8568,"nodeType":"EmitStatement","src":"23330:42:29"},{"expression":{"id":8569,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8523,"src":"23390:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":8514,"id":8570,"nodeType":"Return","src":"23383:12:29"}]},"documentation":{"id":8508,"nodeType":"StructuredDocumentation","src":"22542:179:29","text":" @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n Returns the nonce of the scheduled operation that is consumed."},"id":8572,"implemented":true,"kind":"function","modifiers":[],"name":"_consumeScheduledOp","nameLocation":"22735:19:29","nodeType":"FunctionDefinition","parameters":{"id":8511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8510,"mutability":"mutable","name":"operationId","nameLocation":"22763:11:29","nodeType":"VariableDeclaration","scope":8572,"src":"22755:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8509,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22755:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"22754:21:29"},"returnParameters":{"id":8514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8513,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8572,"src":"22802:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8512,"name":"uint32","nodeType":"ElementaryTypeName","src":"22802:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"22801:8:29"},"scope":9039,"src":"22726:676:29","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[9502],"body":{"id":8593,"nodeType":"Block","src":"23557:67:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":8587,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8575,"src":"23595:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8588,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8577,"src":"23603:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8589,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8579,"src":"23611:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":8585,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"23584:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23588:6:29","memberName":"encode","nodeType":"MemberAccess","src":"23584:10:29","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":8590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23584:32:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8584,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"23574:9:29","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23574:43:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8583,"id":8592,"nodeType":"Return","src":"23567:50:29"}]},"documentation":{"id":8573,"nodeType":"StructuredDocumentation","src":"23408:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"abd9bd2a","id":8594,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"23452:13:29","nodeType":"FunctionDefinition","parameters":{"id":8580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8575,"mutability":"mutable","name":"caller","nameLocation":"23474:6:29","nodeType":"VariableDeclaration","scope":8594,"src":"23466:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8574,"name":"address","nodeType":"ElementaryTypeName","src":"23466:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8577,"mutability":"mutable","name":"target","nameLocation":"23490:6:29","nodeType":"VariableDeclaration","scope":8594,"src":"23482:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8576,"name":"address","nodeType":"ElementaryTypeName","src":"23482:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8579,"mutability":"mutable","name":"data","nameLocation":"23513:4:29","nodeType":"VariableDeclaration","scope":8594,"src":"23498:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8578,"name":"bytes","nodeType":"ElementaryTypeName","src":"23498:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"23465:53:29"},"returnParameters":{"id":8583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8582,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8594,"src":"23548:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8581,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23548:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23547:9:29"},"scope":9039,"src":"23443:181:29","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9510],"body":{"id":8611,"nodeType":"Block","src":"23878:66:29","statements":[{"expression":{"arguments":[{"id":8608,"name":"newAuthority","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8599,"src":"23924:12:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"id":8605,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8597,"src":"23903:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8604,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9079,"src":"23888:14:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$9079_$","typeString":"type(contract IAccessManaged)"}},"id":8606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23888:22:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$9079","typeString":"contract IAccessManaged"}},"id":8607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23911:12:29","memberName":"setAuthority","nodeType":"MemberAccess","referencedDeclaration":9072,"src":"23888:35:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":8609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23888:49:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8610,"nodeType":"ExpressionStatement","src":"23888:49:29"}]},"documentation":{"id":8595,"nodeType":"StructuredDocumentation","src":"23750:30:29","text":"@inheritdoc IAccessManager"},"functionSelector":"18ff183c","id":8612,"implemented":true,"kind":"function","modifiers":[{"id":8602,"kind":"modifierInvocation","modifierName":{"id":8601,"name":"onlyAuthorized","nameLocations":["23863:14:29"],"nodeType":"IdentifierPath","referencedDeclaration":7250,"src":"23863:14:29"},"nodeType":"ModifierInvocation","src":"23863:14:29"}],"name":"updateAuthority","nameLocation":"23794:15:29","nodeType":"FunctionDefinition","parameters":{"id":8600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8597,"mutability":"mutable","name":"target","nameLocation":"23818:6:29","nodeType":"VariableDeclaration","scope":8612,"src":"23810:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8596,"name":"address","nodeType":"ElementaryTypeName","src":"23810:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8599,"mutability":"mutable","name":"newAuthority","nameLocation":"23834:12:29","nodeType":"VariableDeclaration","scope":8612,"src":"23826:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8598,"name":"address","nodeType":"ElementaryTypeName","src":"23826:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23809:38:29"},"returnParameters":{"id":8603,"nodeType":"ParameterList","parameters":[],"src":"23878:0:29"},"scope":9039,"src":"23785:159:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":8665,"nodeType":"Block","src":"24334:467:29","statements":[{"assignments":[8617],"declarations":[{"constant":false,"id":8617,"mutability":"mutable","name":"caller","nameLocation":"24352:6:29","nodeType":"VariableDeclaration","scope":8665,"src":"24344:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8616,"name":"address","nodeType":"ElementaryTypeName","src":"24344:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8620,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":8618,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"24361:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24361:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"24344:29:29"},{"assignments":[8622,8624],"declarations":[{"constant":false,"id":8622,"mutability":"mutable","name":"immediate","nameLocation":"24389:9:29","nodeType":"VariableDeclaration","scope":8665,"src":"24384:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8621,"name":"bool","nodeType":"ElementaryTypeName","src":"24384:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8624,"mutability":"mutable","name":"delay","nameLocation":"24407:5:29","nodeType":"VariableDeclaration","scope":8665,"src":"24400:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8623,"name":"uint32","nodeType":"ElementaryTypeName","src":"24400:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8630,"initialValue":{"arguments":[{"id":8626,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8617,"src":"24429:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8627,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12601,"src":"24437:8:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":8628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24437:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8625,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8966,"src":"24416:12:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,bytes calldata) view returns (bool,uint32)"}},"id":8629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24416:32:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24383:65:29"},{"condition":{"id":8632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"24462:10:29","subExpression":{"id":8631,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8622,"src":"24463:9:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8664,"nodeType":"IfStatement","src":"24458:337:29","trueBody":{"id":8663,"nodeType":"Block","src":"24474:321:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8633,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8624,"src":"24492:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24501:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24492:10:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8661,"nodeType":"Block","src":"24683:102:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":8651,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8617,"src":"24735:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8654,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24751:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":8653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24743:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8652,"name":"address","nodeType":"ElementaryTypeName","src":"24743:7:29","typeDescriptions":{}}},"id":8655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24743:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8656,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12601,"src":"24758:8:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":8657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24758:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8650,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8594,"src":"24721:13:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (address,address,bytes calldata) view returns (bytes32)"}},"id":8658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24721:48:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":8649,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8572,"src":"24701:19:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":8659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24701:69:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8660,"nodeType":"ExpressionStatement","src":"24701:69:29"}]},"id":8662,"nodeType":"IfStatement","src":"24488:297:29","trueBody":{"id":8648,"nodeType":"Block","src":"24504:173:29","statements":[{"assignments":[null,8637,null],"declarations":[null,{"constant":false,"id":8637,"mutability":"mutable","name":"requiredRole","nameLocation":"24532:12:29","nodeType":"VariableDeclaration","scope":8648,"src":"24525:19:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8636,"name":"uint64","nodeType":"ElementaryTypeName","src":"24525:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},null],"id":8642,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8639,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12601,"src":"24572:8:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":8640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24572:10:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8638,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8819,"src":"24550:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"function (bytes calldata) view returns (bool,uint64,uint32)"}},"id":8641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24550:33:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24522:61:29"},{"errorCall":{"arguments":[{"id":8644,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8617,"src":"24641:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8645,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8637,"src":"24649:12:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8643,"name":"AccessManagerUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9215,"src":"24608:32:29","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint64_$returns$_t_error_$","typeString":"function (address,uint64) pure returns (error)"}},"id":8646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24608:54:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8647,"nodeType":"RevertStatement","src":"24601:61:29"}]}}]}}]},"documentation":{"id":8613,"nodeType":"StructuredDocumentation","src":"24070:223:29","text":" @dev Check if the current call is authorized according to admin and roles logic.\n WARNING: Carefully review the considerations of {AccessManaged-restricted} since they apply to this modifier."},"id":8666,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAuthorized","nameLocation":"24307:16:29","nodeType":"FunctionDefinition","parameters":{"id":8614,"nodeType":"ParameterList","parameters":[],"src":"24323:2:29"},"returnParameters":{"id":8615,"nodeType":"ParameterList","parameters":[],"src":"24334:0:29"},"scope":9039,"src":"24298:503:29","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":8818,"nodeType":"Block","src":"25360:1525:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8678,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8669,"src":"25374:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":8679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25379:6:29","memberName":"length","nodeType":"MemberAccess","src":"25374:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":8680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25388:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25374:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8688,"nodeType":"IfStatement","src":"25370:66:29","trueBody":{"id":8687,"nodeType":"Block","src":"25391:45:29","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25413:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25420:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":8684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25423:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8685,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25412:13:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0,int_const 0)"}},"functionReturnParameters":8677,"id":8686,"nodeType":"Return","src":"25405:20:29"}]}},{"assignments":[8690],"declarations":[{"constant":false,"id":8690,"mutability":"mutable","name":"selector","nameLocation":"25453:8:29","nodeType":"VariableDeclaration","scope":8818,"src":"25446:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":8689,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25446:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":8694,"initialValue":{"arguments":[{"id":8692,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8669,"src":"25479:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8691,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"25464:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25464:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"25446:38:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8695,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"25604:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8696,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25616:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25621:9:29","memberName":"labelRole","nodeType":"MemberAccess","referencedDeclaration":7576,"src":"25616:14:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory) external"}},"id":8698,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25631:8:29","memberName":"selector","nodeType":"MemberAccess","src":"25616:23:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25604:35:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8700,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"25655:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8701,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25667:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25672:12:29","memberName":"setRoleAdmin","nodeType":"MemberAccess","referencedDeclaration":7653,"src":"25667:17:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":8703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25685:8:29","memberName":"selector","nodeType":"MemberAccess","src":"25667:26:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25655:38:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25604:89:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8706,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"25709:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8707,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25721:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25726:15:29","memberName":"setRoleGuardian","nodeType":"MemberAccess","referencedDeclaration":7669,"src":"25721:20:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":8709,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25742:8:29","memberName":"selector","nodeType":"MemberAccess","src":"25721:29:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25709:41:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25604:146:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8712,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"25766:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8713,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25778:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25783:13:29","memberName":"setGrantDelay","nodeType":"MemberAccess","referencedDeclaration":7685,"src":"25778:18:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32) external"}},"id":8715,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25797:8:29","memberName":"selector","nodeType":"MemberAccess","src":"25778:27:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25766:39:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25604:201:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8718,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"25821:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8719,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25833:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25838:19:29","memberName":"setTargetAdminDelay","nodeType":"MemberAccess","referencedDeclaration":8019,"src":"25833:24:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32) external"}},"id":8721,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25858:8:29","memberName":"selector","nodeType":"MemberAccess","src":"25833:33:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25821:45:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25604:262:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8730,"nodeType":"IfStatement","src":"25587:343:29","trueBody":{"id":8729,"nodeType":"Block","src":"25877:53:29","statements":[{"expression":{"components":[{"hexValue":"74727565","id":8724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25899:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":8725,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"25905:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":8726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25917:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8727,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25898:21:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":8677,"id":8728,"nodeType":"Return","src":"25891:28:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8731,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"26037:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8732,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26049:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26054:15:29","memberName":"updateAuthority","nodeType":"MemberAccess","referencedDeclaration":8612,"src":"26049:20:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address) external"}},"id":8734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26070:8:29","memberName":"selector","nodeType":"MemberAccess","src":"26049:29:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26037:41:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8736,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"26094:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8737,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26106:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26111:15:29","memberName":"setTargetClosed","nodeType":"MemberAccess","referencedDeclaration":8070,"src":"26106:20:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool) external"}},"id":8739,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26127:8:29","memberName":"selector","nodeType":"MemberAccess","src":"26106:29:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26094:41:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26037:98:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8742,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"26151:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8743,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26163:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26168:21:29","memberName":"setTargetFunctionRole","nodeType":"MemberAccess","referencedDeclaration":7977,"src":"26163:26:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_array$_t_bytes4_$dyn_memory_ptr_$_t_uint64_$returns$__$","typeString":"function (address,bytes4[] memory,uint64) external"}},"id":8745,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26190:8:29","memberName":"selector","nodeType":"MemberAccess","src":"26163:35:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26151:47:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26037:161:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8773,"nodeType":"IfStatement","src":"26020:414:29","trueBody":{"id":8772,"nodeType":"Block","src":"26209:225:29","statements":[{"assignments":[8749],"declarations":[{"constant":false,"id":8749,"mutability":"mutable","name":"target","nameLocation":"26274:6:29","nodeType":"VariableDeclaration","scope":8772,"src":"26266:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8748,"name":"address","nodeType":"ElementaryTypeName","src":"26266:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":8760,"initialValue":{"arguments":[{"baseExpression":{"id":8752,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8669,"src":"26294:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":8754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26304:4:29","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":8755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26294:15:29","startExpression":{"hexValue":"30783034","id":8753,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26299:4:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"0x04"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":8757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26312:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8756,"name":"address","nodeType":"ElementaryTypeName","src":"26312:7:29","typeDescriptions":{}}}],"id":8758,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26311:9:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"}],"expression":{"id":8750,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26283:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8751,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26287:6:29","memberName":"decode","nodeType":"MemberAccess","src":"26283:10:29","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":8759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26283:38:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"26266:55:29"},{"assignments":[8762],"declarations":[{"constant":false,"id":8762,"mutability":"mutable","name":"delay","nameLocation":"26342:5:29","nodeType":"VariableDeclaration","scope":8772,"src":"26335:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8761,"name":"uint32","nodeType":"ElementaryTypeName","src":"26335:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8766,"initialValue":{"arguments":[{"id":8764,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8749,"src":"26370:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8763,"name":"getTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7411,"src":"26350:19:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":8765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26350:27:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"26335:42:29"},{"expression":{"components":[{"hexValue":"74727565","id":8767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26399:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":8768,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7217,"src":"26405:10:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8769,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8762,"src":"26417:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":8770,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26398:25:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"functionReturnParameters":8677,"id":8771,"nodeType":"Return","src":"26391:32:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8774,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"26553:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8775,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26565:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26570:9:29","memberName":"grantRole","nodeType":"MemberAccess","referencedDeclaration":7598,"src":"26565:14:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$_t_uint32_$returns$__$","typeString":"function (uint64,address,uint32) external"}},"id":8777,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26580:8:29","memberName":"selector","nodeType":"MemberAccess","src":"26565:23:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26553:35:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8779,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"26592:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8780,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26604:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}},"id":8781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26609:10:29","memberName":"revokeRole","nodeType":"MemberAccess","referencedDeclaration":7614,"src":"26604:15:29","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address) external"}},"id":8782,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26620:8:29","memberName":"selector","nodeType":"MemberAccess","src":"26604:24:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26592:36:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26553:75:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8806,"nodeType":"IfStatement","src":"26549:254:29","trueBody":{"id":8805,"nodeType":"Block","src":"26630:173:29","statements":[{"assignments":[8786],"declarations":[{"constant":false,"id":8786,"mutability":"mutable","name":"roleId","nameLocation":"26694:6:29","nodeType":"VariableDeclaration","scope":8805,"src":"26687:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8785,"name":"uint64","nodeType":"ElementaryTypeName","src":"26687:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":8797,"initialValue":{"arguments":[{"baseExpression":{"id":8789,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8669,"src":"26714:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":8791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26724:4:29","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":8792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26714:15:29","startExpression":{"hexValue":"30783034","id":8790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26719:4:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"0x04"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":8794,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26732:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":8793,"name":"uint64","nodeType":"ElementaryTypeName","src":"26732:6:29","typeDescriptions":{}}}],"id":8795,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26731:8:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"expression":{"id":8787,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26703:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26707:6:29","memberName":"decode","nodeType":"MemberAccess","src":"26703:10:29","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":8796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26703:37:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"26687:53:29"},{"expression":{"components":[{"hexValue":"74727565","id":8798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26762:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":8800,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8786,"src":"26781:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8799,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7425,"src":"26768:12:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":8801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26768:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":8802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26790:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8803,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26761:31:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":8677,"id":8804,"nodeType":"Return","src":"26754:38:29"}]}},{"expression":{"components":[{"hexValue":"66616c7365","id":8807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26821:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"arguments":[{"id":8811,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26858:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":8810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26850:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8809,"name":"address","nodeType":"ElementaryTypeName","src":"26850:7:29","typeDescriptions":{}}},"id":8812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26850:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8813,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8690,"src":"26865:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8808,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7395,"src":"26828:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":8814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26828:46:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":8815,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26876:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8816,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26820:58:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":8677,"id":8817,"nodeType":"Return","src":"26813:65:29"}]},"documentation":{"id":8667,"nodeType":"StructuredDocumentation","src":"24807:395:29","text":" @dev Get the admin restrictions of a given function call based on the function and arguments involved.\n Returns:\n - bool restricted: does this data match a restricted operation\n - uint64: which role is this operation restricted to\n - uint32: minimum delay to enforce for that operation (max between operation's delay and admin's execution delay)"},"id":8819,"implemented":true,"kind":"function","modifiers":[],"name":"_getAdminRestrictions","nameLocation":"25216:21:29","nodeType":"FunctionDefinition","parameters":{"id":8670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8669,"mutability":"mutable","name":"data","nameLocation":"25262:4:29","nodeType":"VariableDeclaration","scope":8819,"src":"25247:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8668,"name":"bytes","nodeType":"ElementaryTypeName","src":"25247:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25237:35:29"},"returnParameters":{"id":8677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8672,"mutability":"mutable","name":"adminRestricted","nameLocation":"25300:15:29","nodeType":"VariableDeclaration","scope":8819,"src":"25295:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8671,"name":"bool","nodeType":"ElementaryTypeName","src":"25295:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8674,"mutability":"mutable","name":"roleAdminId","nameLocation":"25324:11:29","nodeType":"VariableDeclaration","scope":8819,"src":"25317:18:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8673,"name":"uint64","nodeType":"ElementaryTypeName","src":"25317:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":8676,"mutability":"mutable","name":"executionDelay","nameLocation":"25344:14:29","nodeType":"VariableDeclaration","scope":8819,"src":"25337:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8675,"name":"uint32","nodeType":"ElementaryTypeName","src":"25337:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"25294:65:29"},"scope":9039,"src":"25207:1678:29","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":8863,"nodeType":"Block","src":"27477:217:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8833,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8824,"src":"27491:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":8836,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"27509:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":8835,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27501:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8834,"name":"address","nodeType":"ElementaryTypeName","src":"27501:7:29","typeDescriptions":{}}},"id":8837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27501:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27491:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8861,"nodeType":"Block","src":"27580:108:29","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8845,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8826,"src":"27601:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":8846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27606:6:29","memberName":"length","nodeType":"MemberAccess","src":"27601:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":8847,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27615:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27601:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":8853,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8822,"src":"27640:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8854,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8824,"src":"27648:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8856,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8826,"src":"27671:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8855,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"27656:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27656:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8852,"name":"canCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7345,"src":"27632:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view returns (bool,uint32)"}},"id":8858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27632:45:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"id":8859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"27601:76:29","trueExpression":{"components":[{"hexValue":"66616c7365","id":8849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27620:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27627:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8851,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27619:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":8832,"id":8860,"nodeType":"Return","src":"27594:83:29"}]},"id":8862,"nodeType":"IfStatement","src":"27487:201:29","trueBody":{"id":8844,"nodeType":"Block","src":"27516:58:29","statements":[{"expression":{"arguments":[{"id":8840,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8822,"src":"27550:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8841,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8826,"src":"27558:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8839,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8966,"src":"27537:12:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,bytes calldata) view returns (bool,uint32)"}},"id":8842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27537:26:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":8832,"id":8843,"nodeType":"Return","src":"27530:33:29"}]}}]},"documentation":{"id":8820,"nodeType":"StructuredDocumentation","src":"27011:300:29","text":" @dev An extended version of {canCall} for internal usage that checks {_canCallSelf}\n when the target is this contract.\n Returns:\n - bool immediate: whether the operation can be executed immediately (with no delay)\n - uint32 delay: the execution delay"},"id":8864,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallExtended","nameLocation":"27325:16:29","nodeType":"FunctionDefinition","parameters":{"id":8827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8822,"mutability":"mutable","name":"caller","nameLocation":"27359:6:29","nodeType":"VariableDeclaration","scope":8864,"src":"27351:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8821,"name":"address","nodeType":"ElementaryTypeName","src":"27351:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8824,"mutability":"mutable","name":"target","nameLocation":"27383:6:29","nodeType":"VariableDeclaration","scope":8864,"src":"27375:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8823,"name":"address","nodeType":"ElementaryTypeName","src":"27375:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8826,"mutability":"mutable","name":"data","nameLocation":"27414:4:29","nodeType":"VariableDeclaration","scope":8864,"src":"27399:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8825,"name":"bytes","nodeType":"ElementaryTypeName","src":"27399:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27341:83:29"},"returnParameters":{"id":8832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8829,"mutability":"mutable","name":"immediate","nameLocation":"27452:9:29","nodeType":"VariableDeclaration","scope":8864,"src":"27447:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8828,"name":"bool","nodeType":"ElementaryTypeName","src":"27447:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8831,"mutability":"mutable","name":"delay","nameLocation":"27470:5:29","nodeType":"VariableDeclaration","scope":8864,"src":"27463:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8830,"name":"uint32","nodeType":"ElementaryTypeName","src":"27463:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27446:30:29"},"scope":9039,"src":"27316:378:29","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":8965,"nodeType":"Block","src":"27909:996:29","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8876,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8869,"src":"27923:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":8877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27928:6:29","memberName":"length","nodeType":"MemberAccess","src":"27923:11:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":8878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27937:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27923:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8885,"nodeType":"IfStatement","src":"27919:63:29","trueBody":{"id":8884,"nodeType":"Block","src":"27940:42:29","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27962:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27969:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8882,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27961:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8875,"id":8883,"nodeType":"Return","src":"27954:17:29"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8886,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8867,"src":"27996:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":8889,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28014:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":8888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28006:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8887,"name":"address","nodeType":"ElementaryTypeName","src":"28006:7:29","typeDescriptions":{}}},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28006:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27996:23:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8905,"nodeType":"IfStatement","src":"27992:334:29","trueBody":{"id":8904,"nodeType":"Block","src":"28021:305:29","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":8895,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28283:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":8894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28275:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8893,"name":"address","nodeType":"ElementaryTypeName","src":"28275:7:29","typeDescriptions":{}}},"id":8896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28275:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":8898,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8869,"src":"28305:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8897,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9019,"src":"28290:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":8899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28290:20:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8892,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8984,"src":"28262:12:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":8900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28262:49:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":8901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28313:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8902,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28261:54:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8875,"id":8903,"nodeType":"Return","src":"28254:61:29"}]}},{"assignments":[8907,8909,8911],"declarations":[{"constant":false,"id":8907,"mutability":"mutable","name":"adminRestricted","nameLocation":"28342:15:29","nodeType":"VariableDeclaration","scope":8965,"src":"28337:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8906,"name":"bool","nodeType":"ElementaryTypeName","src":"28337:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8909,"mutability":"mutable","name":"roleId","nameLocation":"28366:6:29","nodeType":"VariableDeclaration","scope":8965,"src":"28359:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8908,"name":"uint64","nodeType":"ElementaryTypeName","src":"28359:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":8911,"mutability":"mutable","name":"operationDelay","nameLocation":"28381:14:29","nodeType":"VariableDeclaration","scope":8965,"src":"28374:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8910,"name":"uint32","nodeType":"ElementaryTypeName","src":"28374:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8915,"initialValue":{"arguments":[{"id":8913,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8869,"src":"28421:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":8912,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8819,"src":"28399:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_calldata_ptr_$returns$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"function (bytes calldata) view returns (bool,uint64,uint32)"}},"id":8914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28399:27:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28336:90:29"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28506:16:29","subExpression":{"id":8916,"name":"adminRestricted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8907,"src":"28507:15:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"arguments":[{"id":8921,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28549:4:29","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$9039","typeString":"contract AccessManager"}],"id":8920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28541:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8919,"name":"address","nodeType":"ElementaryTypeName","src":"28541:7:29","typeDescriptions":{}}},"id":8922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28541:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8918,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7377,"src":"28526:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":8923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28526:29:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28506:49:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8930,"nodeType":"IfStatement","src":"28502:97:29","trueBody":{"id":8929,"nodeType":"Block","src":"28557:42:29","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8925,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28579:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28586:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8927,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28578:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8875,"id":8928,"nodeType":"Return","src":"28571:17:29"}]}},{"assignments":[8932,8934],"declarations":[{"constant":false,"id":8932,"mutability":"mutable","name":"inRole","nameLocation":"28615:6:29","nodeType":"VariableDeclaration","scope":8965,"src":"28610:11:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8931,"name":"bool","nodeType":"ElementaryTypeName","src":"28610:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8934,"mutability":"mutable","name":"executionDelay","nameLocation":"28630:14:29","nodeType":"VariableDeclaration","scope":8965,"src":"28623:21:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8933,"name":"uint32","nodeType":"ElementaryTypeName","src":"28623:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":8939,"initialValue":{"arguments":[{"id":8936,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8909,"src":"28656:6:29","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8937,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8867,"src":"28664:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8935,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7547,"src":"28648:7:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":8938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28648:23:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28609:62:29"},{"condition":{"id":8941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28685:7:29","subExpression":{"id":8940,"name":"inRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8932,"src":"28686:6:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8947,"nodeType":"IfStatement","src":"28681:55:29","trueBody":{"id":8946,"nodeType":"Block","src":"28694:42:29","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":8942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28716:5:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":8943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28723:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":8944,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28715:10:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":8875,"id":8945,"nodeType":"Return","src":"28708:17:29"}]}},{"expression":{"id":8957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8948,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"28806:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8953,"name":"operationDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8911,"src":"28830:14:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":8954,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8934,"src":"28846:14:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":8951,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"28821:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":8952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28826:3:29","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":18424,"src":"28821:8:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":8955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28821:40:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8950,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28814:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":8949,"name":"uint32","nodeType":"ElementaryTypeName","src":"28814:6:29","typeDescriptions":{}}},"id":8956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28814:48:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"28806:56:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":8958,"nodeType":"ExpressionStatement","src":"28806:56:29"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":8961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8959,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"28880:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28889:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28880:10:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":8962,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8874,"src":"28892:5:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":8963,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28879:19:29","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":8875,"id":8964,"nodeType":"Return","src":"28872:26:29"}]},"documentation":{"id":8865,"nodeType":"StructuredDocumentation","src":"27700:93:29","text":" @dev A version of {canCall} that checks for restrictions in this contract."},"id":8966,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallSelf","nameLocation":"27807:12:29","nodeType":"FunctionDefinition","parameters":{"id":8870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8867,"mutability":"mutable","name":"caller","nameLocation":"27828:6:29","nodeType":"VariableDeclaration","scope":8966,"src":"27820:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8866,"name":"address","nodeType":"ElementaryTypeName","src":"27820:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8869,"mutability":"mutable","name":"data","nameLocation":"27851:4:29","nodeType":"VariableDeclaration","scope":8966,"src":"27836:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8868,"name":"bytes","nodeType":"ElementaryTypeName","src":"27836:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27819:37:29"},"returnParameters":{"id":8875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8872,"mutability":"mutable","name":"immediate","nameLocation":"27884:9:29","nodeType":"VariableDeclaration","scope":8966,"src":"27879:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8871,"name":"bool","nodeType":"ElementaryTypeName","src":"27879:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":8874,"mutability":"mutable","name":"delay","nameLocation":"27902:5:29","nodeType":"VariableDeclaration","scope":8966,"src":"27895:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":8873,"name":"uint32","nodeType":"ElementaryTypeName","src":"27895:6:29","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27878:30:29"},"scope":9039,"src":"27798:1107:29","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":8983,"nodeType":"Block","src":"29108:74:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":8981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8976,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7242,"src":"29125:12:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":8978,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8969,"src":"29158:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8979,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8971,"src":"29166:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":8977,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9038,"src":"29141:16:29","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":8980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29141:34:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"29125:50:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":8975,"id":8982,"nodeType":"Return","src":"29118:57:29"}]},"documentation":{"id":8967,"nodeType":"StructuredDocumentation","src":"28911:109:29","text":" @dev Returns true if a call with `target` and `selector` is being executed via {executed}."},"id":8984,"implemented":true,"kind":"function","modifiers":[],"name":"_isExecuting","nameLocation":"29034:12:29","nodeType":"FunctionDefinition","parameters":{"id":8972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8969,"mutability":"mutable","name":"target","nameLocation":"29055:6:29","nodeType":"VariableDeclaration","scope":8984,"src":"29047:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8968,"name":"address","nodeType":"ElementaryTypeName","src":"29047:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8971,"mutability":"mutable","name":"selector","nameLocation":"29070:8:29","nodeType":"VariableDeclaration","scope":8984,"src":"29063:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":8970,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29063:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29046:33:29"},"returnParameters":{"id":8975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8974,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8984,"src":"29102:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8973,"name":"bool","nodeType":"ElementaryTypeName","src":"29102:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29101:6:29"},"scope":9039,"src":"29025:157:29","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":9001,"nodeType":"Block","src":"29352:68:29","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":8995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8992,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8987,"src":"29369:9:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8993,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7354,"src":"29381:10:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":8994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29381:12:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"29369:24:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8996,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"29397:4:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$21997_$","typeString":"type(library Time)"}},"id":8997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29402:9:29","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":21745,"src":"29397:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":8998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29397:16:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"29369:44:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":8991,"id":9000,"nodeType":"Return","src":"29362:51:29"}]},"documentation":{"id":8985,"nodeType":"StructuredDocumentation","src":"29188:93:29","text":" @dev Returns true if a schedule timepoint is past its expiration deadline."},"id":9002,"implemented":true,"kind":"function","modifiers":[],"name":"_isExpired","nameLocation":"29295:10:29","nodeType":"FunctionDefinition","parameters":{"id":8988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8987,"mutability":"mutable","name":"timepoint","nameLocation":"29313:9:29","nodeType":"VariableDeclaration","scope":9002,"src":"29306:16:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":8986,"name":"uint48","nodeType":"ElementaryTypeName","src":"29306:6:29","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"29305:18:29"},"returnParameters":{"id":8991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9002,"src":"29346:4:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8989,"name":"bool","nodeType":"ElementaryTypeName","src":"29346:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29345:6:29"},"scope":9039,"src":"29286:134:29","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":9018,"nodeType":"Block","src":"29605:41:29","statements":[{"expression":{"arguments":[{"baseExpression":{"id":9012,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9005,"src":"29629:4:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":9014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29636:1:29","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":9015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"29629:9:29","startExpression":{"hexValue":"30","id":9013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29634:1:29","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":9011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29622:6:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":9010,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29622:6:29","typeDescriptions":{}}},"id":9016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29622:17:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":9009,"id":9017,"nodeType":"Return","src":"29615:24:29"}]},"documentation":{"id":9003,"nodeType":"StructuredDocumentation","src":"29426:99:29","text":" @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes"},"id":9019,"implemented":true,"kind":"function","modifiers":[],"name":"_checkSelector","nameLocation":"29539:14:29","nodeType":"FunctionDefinition","parameters":{"id":9006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9005,"mutability":"mutable","name":"data","nameLocation":"29569:4:29","nodeType":"VariableDeclaration","scope":9019,"src":"29554:19:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9004,"name":"bytes","nodeType":"ElementaryTypeName","src":"29554:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29553:21:29"},"returnParameters":{"id":9009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9008,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9019,"src":"29597:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9007,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29597:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29596:8:29"},"scope":9039,"src":"29530:116:29","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":9037,"nodeType":"Block","src":"29810:63:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":9032,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9022,"src":"29848:6:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9033,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9024,"src":"29856:8:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":9030,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"29837:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9031,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29841:6:29","memberName":"encode","nodeType":"MemberAccess","src":"29837:10:29","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29837:28:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9029,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"29827:9:29","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29827:39:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":9028,"id":9036,"nodeType":"Return","src":"29820:46:29"}]},"documentation":{"id":9020,"nodeType":"StructuredDocumentation","src":"29652:63:29","text":" @dev Hashing function for execute protection"},"id":9038,"implemented":true,"kind":"function","modifiers":[],"name":"_hashExecutionId","nameLocation":"29729:16:29","nodeType":"FunctionDefinition","parameters":{"id":9025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9022,"mutability":"mutable","name":"target","nameLocation":"29754:6:29","nodeType":"VariableDeclaration","scope":9038,"src":"29746:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9021,"name":"address","nodeType":"ElementaryTypeName","src":"29746:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9024,"mutability":"mutable","name":"selector","nameLocation":"29769:8:29","nodeType":"VariableDeclaration","scope":9038,"src":"29762:15:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9023,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29762:6:29","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29745:33:29"},"returnParameters":{"id":9028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9038,"src":"29801:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9026,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29801:7:29","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"29800:9:29"},"scope":9039,"src":"29720:153:29","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":9040,"src":"3722:26153:29","usedErrors":[9191,9195,9199,9203,9207,9209,9215,9223,9227,9237,9241,12330,12620,12623,19824],"usedEvents":[9098,9105,9112,9119,9132,9139,9146,9153,9162,9169,9178,9187]}],"src":"116:29760:29"},"id":29},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","exportedSymbols":{"IAccessManaged":[9079]},"id":9080,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9041,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:30"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManaged","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":9079,"linearizedBaseContracts":[9079],"name":"IAccessManaged","nameLocation":"153:14:30","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":9042,"nodeType":"StructuredDocumentation","src":"174:73:30","text":" @dev Authority that manages this contract was updated."},"eventSelector":"2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad","id":9046,"name":"AuthorityUpdated","nameLocation":"258:16:30","nodeType":"EventDefinition","parameters":{"id":9045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9044,"indexed":false,"mutability":"mutable","name":"authority","nameLocation":"283:9:30","nodeType":"VariableDeclaration","scope":9046,"src":"275:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9043,"name":"address","nodeType":"ElementaryTypeName","src":"275:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"274:19:30"},"src":"252:42:30"},{"errorSelector":"068ca9d8","id":9050,"name":"AccessManagedUnauthorized","nameLocation":"306:25:30","nodeType":"ErrorDefinition","parameters":{"id":9049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9048,"mutability":"mutable","name":"caller","nameLocation":"340:6:30","nodeType":"VariableDeclaration","scope":9050,"src":"332:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9047,"name":"address","nodeType":"ElementaryTypeName","src":"332:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"331:16:30"},"src":"300:48:30"},{"errorSelector":"af77169d","id":9056,"name":"AccessManagedRequiredDelay","nameLocation":"359:26:30","nodeType":"ErrorDefinition","parameters":{"id":9055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9052,"mutability":"mutable","name":"caller","nameLocation":"394:6:30","nodeType":"VariableDeclaration","scope":9056,"src":"386:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9051,"name":"address","nodeType":"ElementaryTypeName","src":"386:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9054,"mutability":"mutable","name":"delay","nameLocation":"409:5:30","nodeType":"VariableDeclaration","scope":9056,"src":"402:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9053,"name":"uint32","nodeType":"ElementaryTypeName","src":"402:6:30","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"385:30:30"},"src":"353:63:30"},{"errorSelector":"c2f31e5e","id":9060,"name":"AccessManagedInvalidAuthority","nameLocation":"427:29:30","nodeType":"ErrorDefinition","parameters":{"id":9059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9058,"mutability":"mutable","name":"authority","nameLocation":"465:9:30","nodeType":"VariableDeclaration","scope":9060,"src":"457:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9057,"name":"address","nodeType":"ElementaryTypeName","src":"457:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"456:19:30"},"src":"421:55:30"},{"documentation":{"id":9061,"nodeType":"StructuredDocumentation","src":"482:54:30","text":" @dev Returns the current authority."},"functionSelector":"bf7e214f","id":9066,"implemented":false,"kind":"function","modifiers":[],"name":"authority","nameLocation":"550:9:30","nodeType":"FunctionDefinition","parameters":{"id":9062,"nodeType":"ParameterList","parameters":[],"src":"559:2:30"},"returnParameters":{"id":9065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9064,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9066,"src":"585:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9063,"name":"address","nodeType":"ElementaryTypeName","src":"585:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"584:9:30"},"scope":9079,"src":"541:53:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9067,"nodeType":"StructuredDocumentation","src":"600:103:30","text":" @dev Transfers control to a new authority. The caller must be the current authority."},"functionSelector":"7a9e5e4b","id":9072,"implemented":false,"kind":"function","modifiers":[],"name":"setAuthority","nameLocation":"717:12:30","nodeType":"FunctionDefinition","parameters":{"id":9070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9072,"src":"730:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9068,"name":"address","nodeType":"ElementaryTypeName","src":"730:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"729:9:30"},"returnParameters":{"id":9071,"nodeType":"ParameterList","parameters":[],"src":"747:0:30"},"scope":9079,"src":"708:40:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9073,"nodeType":"StructuredDocumentation","src":"754:284:30","text":" @dev Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is\n being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs\n attacker controlled calls."},"functionSelector":"8fb36037","id":9078,"implemented":false,"kind":"function","modifiers":[],"name":"isConsumingScheduledOp","nameLocation":"1052:22:30","nodeType":"FunctionDefinition","parameters":{"id":9074,"nodeType":"ParameterList","parameters":[],"src":"1074:2:30"},"returnParameters":{"id":9077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9076,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9078,"src":"1100:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9075,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1100:6:30","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1099:8:30"},"scope":9079,"src":"1043:65:30","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9080,"src":"143:967:30","usedErrors":[9050,9056,9060],"usedEvents":[9046]}],"src":"117:994:30"},"id":30},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","exportedSymbols":{"IAccessManager":[9511],"Time":[21997]},"id":9512,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9081,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"117:24:31"},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":9083,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9512,"sourceUnit":21998,"src":"143:48:31","symbolAliases":[{"foreign":{"id":9082,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21997,"src":"151:4:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":9511,"linearizedBaseContracts":[9511],"name":"IAccessManager","nameLocation":"203:14:31","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":9084,"nodeType":"StructuredDocumentation","src":"224:58:31","text":" @dev A delayed operation was scheduled."},"eventSelector":"82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b4","id":9098,"name":"OperationScheduled","nameLocation":"293:18:31","nodeType":"EventDefinition","parameters":{"id":9097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9086,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"337:11:31","nodeType":"VariableDeclaration","scope":9098,"src":"321:27:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9085,"name":"bytes32","nodeType":"ElementaryTypeName","src":"321:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9088,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"373:5:31","nodeType":"VariableDeclaration","scope":9098,"src":"358:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9087,"name":"uint32","nodeType":"ElementaryTypeName","src":"358:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9090,"indexed":false,"mutability":"mutable","name":"schedule","nameLocation":"395:8:31","nodeType":"VariableDeclaration","scope":9098,"src":"388:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9089,"name":"uint48","nodeType":"ElementaryTypeName","src":"388:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":9092,"indexed":false,"mutability":"mutable","name":"caller","nameLocation":"421:6:31","nodeType":"VariableDeclaration","scope":9098,"src":"413:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9091,"name":"address","nodeType":"ElementaryTypeName","src":"413:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9094,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"445:6:31","nodeType":"VariableDeclaration","scope":9098,"src":"437:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9093,"name":"address","nodeType":"ElementaryTypeName","src":"437:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9096,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"467:4:31","nodeType":"VariableDeclaration","scope":9098,"src":"461:10:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9095,"name":"bytes","nodeType":"ElementaryTypeName","src":"461:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"311:166:31"},"src":"287:191:31"},{"anonymous":false,"documentation":{"id":9099,"nodeType":"StructuredDocumentation","src":"484:59:31","text":" @dev A scheduled operation was executed."},"eventSelector":"76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d","id":9105,"name":"OperationExecuted","nameLocation":"554:17:31","nodeType":"EventDefinition","parameters":{"id":9104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9101,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"588:11:31","nodeType":"VariableDeclaration","scope":9105,"src":"572:27:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9100,"name":"bytes32","nodeType":"ElementaryTypeName","src":"572:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9103,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"616:5:31","nodeType":"VariableDeclaration","scope":9105,"src":"601:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9102,"name":"uint32","nodeType":"ElementaryTypeName","src":"601:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"571:51:31"},"src":"548:75:31"},{"anonymous":false,"documentation":{"id":9106,"nodeType":"StructuredDocumentation","src":"629:59:31","text":" @dev A scheduled operation was canceled."},"eventSelector":"bd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f7","id":9112,"name":"OperationCanceled","nameLocation":"699:17:31","nodeType":"EventDefinition","parameters":{"id":9111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9108,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"733:11:31","nodeType":"VariableDeclaration","scope":9112,"src":"717:27:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9107,"name":"bytes32","nodeType":"ElementaryTypeName","src":"717:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9110,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"761:5:31","nodeType":"VariableDeclaration","scope":9112,"src":"746:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9109,"name":"uint32","nodeType":"ElementaryTypeName","src":"746:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"716:51:31"},"src":"693:75:31"},{"anonymous":false,"documentation":{"id":9113,"nodeType":"StructuredDocumentation","src":"774:61:31","text":" @dev Informational labelling for a roleId."},"eventSelector":"1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a450","id":9119,"name":"RoleLabel","nameLocation":"846:9:31","nodeType":"EventDefinition","parameters":{"id":9118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9115,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"871:6:31","nodeType":"VariableDeclaration","scope":9119,"src":"856:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9114,"name":"uint64","nodeType":"ElementaryTypeName","src":"856:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9117,"indexed":false,"mutability":"mutable","name":"label","nameLocation":"886:5:31","nodeType":"VariableDeclaration","scope":9119,"src":"879:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9116,"name":"string","nodeType":"ElementaryTypeName","src":"879:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"855:37:31"},"src":"840:53:31"},{"anonymous":false,"documentation":{"id":9120,"nodeType":"StructuredDocumentation","src":"899:375:31","text":" @dev Emitted when `account` is granted `roleId`.\n NOTE: The meaning of the `since` argument depends on the `newMember` argument.\n If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role,\n otherwise it indicates the execution delay for this account and roleId is updated."},"eventSelector":"f98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf","id":9132,"name":"RoleGranted","nameLocation":"1285:11:31","nodeType":"EventDefinition","parameters":{"id":9131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9122,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1312:6:31","nodeType":"VariableDeclaration","scope":9132,"src":"1297:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9121,"name":"uint64","nodeType":"ElementaryTypeName","src":"1297:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9124,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1336:7:31","nodeType":"VariableDeclaration","scope":9132,"src":"1320:23:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9123,"name":"address","nodeType":"ElementaryTypeName","src":"1320:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9126,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"1352:5:31","nodeType":"VariableDeclaration","scope":9132,"src":"1345:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9125,"name":"uint32","nodeType":"ElementaryTypeName","src":"1345:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9128,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"1366:5:31","nodeType":"VariableDeclaration","scope":9132,"src":"1359:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9127,"name":"uint48","nodeType":"ElementaryTypeName","src":"1359:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":9130,"indexed":false,"mutability":"mutable","name":"newMember","nameLocation":"1378:9:31","nodeType":"VariableDeclaration","scope":9132,"src":"1373:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9129,"name":"bool","nodeType":"ElementaryTypeName","src":"1373:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1296:92:31"},"src":"1279:110:31"},{"anonymous":false,"documentation":{"id":9133,"nodeType":"StructuredDocumentation","src":"1395:125:31","text":" @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous."},"eventSelector":"f229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c166","id":9139,"name":"RoleRevoked","nameLocation":"1531:11:31","nodeType":"EventDefinition","parameters":{"id":9138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9135,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1558:6:31","nodeType":"VariableDeclaration","scope":9139,"src":"1543:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9134,"name":"uint64","nodeType":"ElementaryTypeName","src":"1543:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9137,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1582:7:31","nodeType":"VariableDeclaration","scope":9139,"src":"1566:23:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9136,"name":"address","nodeType":"ElementaryTypeName","src":"1566:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1542:48:31"},"src":"1525:66:31"},{"anonymous":false,"documentation":{"id":9140,"nodeType":"StructuredDocumentation","src":"1597:78:31","text":" @dev Role acting as admin over a given `roleId` is updated."},"eventSelector":"1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e6340","id":9146,"name":"RoleAdminChanged","nameLocation":"1686:16:31","nodeType":"EventDefinition","parameters":{"id":9145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9142,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1718:6:31","nodeType":"VariableDeclaration","scope":9146,"src":"1703:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9141,"name":"uint64","nodeType":"ElementaryTypeName","src":"1703:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9144,"indexed":true,"mutability":"mutable","name":"admin","nameLocation":"1741:5:31","nodeType":"VariableDeclaration","scope":9146,"src":"1726:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9143,"name":"uint64","nodeType":"ElementaryTypeName","src":"1726:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1702:45:31"},"src":"1680:68:31"},{"anonymous":false,"documentation":{"id":9147,"nodeType":"StructuredDocumentation","src":"1754:81:31","text":" @dev Role acting as guardian over a given `roleId` is updated."},"eventSelector":"7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae2","id":9153,"name":"RoleGuardianChanged","nameLocation":"1846:19:31","nodeType":"EventDefinition","parameters":{"id":9152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9149,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1881:6:31","nodeType":"VariableDeclaration","scope":9153,"src":"1866:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9148,"name":"uint64","nodeType":"ElementaryTypeName","src":"1866:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9151,"indexed":true,"mutability":"mutable","name":"guardian","nameLocation":"1904:8:31","nodeType":"VariableDeclaration","scope":9153,"src":"1889:23:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9150,"name":"uint64","nodeType":"ElementaryTypeName","src":"1889:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1865:48:31"},"src":"1840:74:31"},{"anonymous":false,"documentation":{"id":9154,"nodeType":"StructuredDocumentation","src":"1920:108:31","text":" @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached."},"eventSelector":"feb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b48","id":9162,"name":"RoleGrantDelayChanged","nameLocation":"2039:21:31","nodeType":"EventDefinition","parameters":{"id":9161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9156,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2076:6:31","nodeType":"VariableDeclaration","scope":9162,"src":"2061:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9155,"name":"uint64","nodeType":"ElementaryTypeName","src":"2061:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9158,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2091:5:31","nodeType":"VariableDeclaration","scope":9162,"src":"2084:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9157,"name":"uint32","nodeType":"ElementaryTypeName","src":"2084:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9160,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2105:5:31","nodeType":"VariableDeclaration","scope":9162,"src":"2098:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9159,"name":"uint48","nodeType":"ElementaryTypeName","src":"2098:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2060:51:31"},"src":"2033:79:31"},{"anonymous":false,"documentation":{"id":9163,"nodeType":"StructuredDocumentation","src":"2118:77:31","text":" @dev Target mode is updated (true = closed, false = open)."},"eventSelector":"90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb138","id":9169,"name":"TargetClosed","nameLocation":"2206:12:31","nodeType":"EventDefinition","parameters":{"id":9168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9165,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2235:6:31","nodeType":"VariableDeclaration","scope":9169,"src":"2219:22:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9164,"name":"address","nodeType":"ElementaryTypeName","src":"2219:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9167,"indexed":false,"mutability":"mutable","name":"closed","nameLocation":"2248:6:31","nodeType":"VariableDeclaration","scope":9169,"src":"2243:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9166,"name":"bool","nodeType":"ElementaryTypeName","src":"2243:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2218:37:31"},"src":"2200:56:31"},{"anonymous":false,"documentation":{"id":9170,"nodeType":"StructuredDocumentation","src":"2262:94:31","text":" @dev Role required to invoke `selector` on `target` is updated to `roleId`."},"eventSelector":"9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151","id":9178,"name":"TargetFunctionRoleUpdated","nameLocation":"2367:25:31","nodeType":"EventDefinition","parameters":{"id":9177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9172,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2409:6:31","nodeType":"VariableDeclaration","scope":9178,"src":"2393:22:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9171,"name":"address","nodeType":"ElementaryTypeName","src":"2393:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9174,"indexed":false,"mutability":"mutable","name":"selector","nameLocation":"2424:8:31","nodeType":"VariableDeclaration","scope":9178,"src":"2417:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9173,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2417:6:31","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":9176,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2449:6:31","nodeType":"VariableDeclaration","scope":9178,"src":"2434:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9175,"name":"uint64","nodeType":"ElementaryTypeName","src":"2434:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2392:64:31"},"src":"2361:96:31"},{"anonymous":false,"documentation":{"id":9179,"nodeType":"StructuredDocumentation","src":"2463:108:31","text":" @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached."},"eventSelector":"a56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c","id":9187,"name":"TargetAdminDelayUpdated","nameLocation":"2582:23:31","nodeType":"EventDefinition","parameters":{"id":9186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9181,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2622:6:31","nodeType":"VariableDeclaration","scope":9187,"src":"2606:22:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9180,"name":"address","nodeType":"ElementaryTypeName","src":"2606:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9183,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2637:5:31","nodeType":"VariableDeclaration","scope":9187,"src":"2630:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9182,"name":"uint32","nodeType":"ElementaryTypeName","src":"2630:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9185,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2651:5:31","nodeType":"VariableDeclaration","scope":9187,"src":"2644:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9184,"name":"uint48","nodeType":"ElementaryTypeName","src":"2644:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2605:52:31"},"src":"2576:82:31"},{"errorSelector":"813e9459","id":9191,"name":"AccessManagerAlreadyScheduled","nameLocation":"2670:29:31","nodeType":"ErrorDefinition","parameters":{"id":9190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9189,"mutability":"mutable","name":"operationId","nameLocation":"2708:11:31","nodeType":"VariableDeclaration","scope":9191,"src":"2700:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9188,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2700:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2699:21:31"},"src":"2664:57:31"},{"errorSelector":"60a299b0","id":9195,"name":"AccessManagerNotScheduled","nameLocation":"2732:25:31","nodeType":"ErrorDefinition","parameters":{"id":9194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9193,"mutability":"mutable","name":"operationId","nameLocation":"2766:11:31","nodeType":"VariableDeclaration","scope":9195,"src":"2758:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9192,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2758:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2757:21:31"},"src":"2726:53:31"},{"errorSelector":"18cb6b7a","id":9199,"name":"AccessManagerNotReady","nameLocation":"2790:21:31","nodeType":"ErrorDefinition","parameters":{"id":9198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9197,"mutability":"mutable","name":"operationId","nameLocation":"2820:11:31","nodeType":"VariableDeclaration","scope":9199,"src":"2812:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9196,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2812:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2811:21:31"},"src":"2784:49:31"},{"errorSelector":"78a5d6e4","id":9203,"name":"AccessManagerExpired","nameLocation":"2844:20:31","nodeType":"ErrorDefinition","parameters":{"id":9202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9201,"mutability":"mutable","name":"operationId","nameLocation":"2873:11:31","nodeType":"VariableDeclaration","scope":9203,"src":"2865:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9200,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2865:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2864:21:31"},"src":"2838:48:31"},{"errorSelector":"1871a90c","id":9207,"name":"AccessManagerLockedRole","nameLocation":"2897:23:31","nodeType":"ErrorDefinition","parameters":{"id":9206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9205,"mutability":"mutable","name":"roleId","nameLocation":"2928:6:31","nodeType":"VariableDeclaration","scope":9207,"src":"2921:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9204,"name":"uint64","nodeType":"ElementaryTypeName","src":"2921:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2920:15:31"},"src":"2891:45:31"},{"errorSelector":"5f159e63","id":9209,"name":"AccessManagerBadConfirmation","nameLocation":"2947:28:31","nodeType":"ErrorDefinition","parameters":{"id":9208,"nodeType":"ParameterList","parameters":[],"src":"2975:2:31"},"src":"2941:37:31"},{"errorSelector":"f07e038f","id":9215,"name":"AccessManagerUnauthorizedAccount","nameLocation":"2989:32:31","nodeType":"ErrorDefinition","parameters":{"id":9214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9211,"mutability":"mutable","name":"msgsender","nameLocation":"3030:9:31","nodeType":"VariableDeclaration","scope":9215,"src":"3022:17:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9210,"name":"address","nodeType":"ElementaryTypeName","src":"3022:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9213,"mutability":"mutable","name":"roleId","nameLocation":"3048:6:31","nodeType":"VariableDeclaration","scope":9215,"src":"3041:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9212,"name":"uint64","nodeType":"ElementaryTypeName","src":"3041:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3021:34:31"},"src":"2983:73:31"},{"errorSelector":"81c6f24b","id":9223,"name":"AccessManagerUnauthorizedCall","nameLocation":"3067:29:31","nodeType":"ErrorDefinition","parameters":{"id":9222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9217,"mutability":"mutable","name":"caller","nameLocation":"3105:6:31","nodeType":"VariableDeclaration","scope":9223,"src":"3097:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9216,"name":"address","nodeType":"ElementaryTypeName","src":"3097:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9219,"mutability":"mutable","name":"target","nameLocation":"3121:6:31","nodeType":"VariableDeclaration","scope":9223,"src":"3113:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9218,"name":"address","nodeType":"ElementaryTypeName","src":"3113:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9221,"mutability":"mutable","name":"selector","nameLocation":"3136:8:31","nodeType":"VariableDeclaration","scope":9223,"src":"3129:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9220,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3129:6:31","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3096:49:31"},"src":"3061:85:31"},{"errorSelector":"320ff748","id":9227,"name":"AccessManagerUnauthorizedConsume","nameLocation":"3157:32:31","nodeType":"ErrorDefinition","parameters":{"id":9226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9225,"mutability":"mutable","name":"target","nameLocation":"3198:6:31","nodeType":"VariableDeclaration","scope":9227,"src":"3190:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9224,"name":"address","nodeType":"ElementaryTypeName","src":"3190:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3189:16:31"},"src":"3151:55:31"},{"errorSelector":"3fe2751c","id":9237,"name":"AccessManagerUnauthorizedCancel","nameLocation":"3217:31:31","nodeType":"ErrorDefinition","parameters":{"id":9236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9229,"mutability":"mutable","name":"msgsender","nameLocation":"3257:9:31","nodeType":"VariableDeclaration","scope":9237,"src":"3249:17:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9228,"name":"address","nodeType":"ElementaryTypeName","src":"3249:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9231,"mutability":"mutable","name":"caller","nameLocation":"3276:6:31","nodeType":"VariableDeclaration","scope":9237,"src":"3268:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9230,"name":"address","nodeType":"ElementaryTypeName","src":"3268:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9233,"mutability":"mutable","name":"target","nameLocation":"3292:6:31","nodeType":"VariableDeclaration","scope":9237,"src":"3284:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9232,"name":"address","nodeType":"ElementaryTypeName","src":"3284:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9235,"mutability":"mutable","name":"selector","nameLocation":"3307:8:31","nodeType":"VariableDeclaration","scope":9237,"src":"3300:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9234,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3300:6:31","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3248:68:31"},"src":"3211:106:31"},{"errorSelector":"0813ada2","id":9241,"name":"AccessManagerInvalidInitialAdmin","nameLocation":"3328:32:31","nodeType":"ErrorDefinition","parameters":{"id":9240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9239,"mutability":"mutable","name":"initialAdmin","nameLocation":"3369:12:31","nodeType":"VariableDeclaration","scope":9241,"src":"3361:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9238,"name":"address","nodeType":"ElementaryTypeName","src":"3361:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3360:22:31"},"src":"3322:61:31"},{"documentation":{"id":9242,"nodeType":"StructuredDocumentation","src":"3389:1393:31","text":" @dev Check if an address (`caller`) is authorised to call a given function on a given contract directly (with\n no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule}\n & {execute} workflow.\n This function is usually called by the targeted contract to control immediate execution of restricted functions.\n Therefore we only return true if the call can be performed without any delay. If the call is subject to a\n previously set delay (not zero), then the function should return false and the caller should schedule the operation\n for future execution.\n If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise\n the operation can be executed if and only if delay is greater than 0.\n NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that\n is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail\n to identify the indirect workflow, and will consider calls that require a delay to be forbidden.\n NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the\n {AccessManager} documentation."},"functionSelector":"b7009613","id":9255,"implemented":false,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"4796:7:31","nodeType":"FunctionDefinition","parameters":{"id":9249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9244,"mutability":"mutable","name":"caller","nameLocation":"4821:6:31","nodeType":"VariableDeclaration","scope":9255,"src":"4813:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9243,"name":"address","nodeType":"ElementaryTypeName","src":"4813:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9246,"mutability":"mutable","name":"target","nameLocation":"4845:6:31","nodeType":"VariableDeclaration","scope":9255,"src":"4837:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9245,"name":"address","nodeType":"ElementaryTypeName","src":"4837:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9248,"mutability":"mutable","name":"selector","nameLocation":"4868:8:31","nodeType":"VariableDeclaration","scope":9255,"src":"4861:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9247,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4861:6:31","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4803:79:31"},"returnParameters":{"id":9254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9251,"mutability":"mutable","name":"allowed","nameLocation":"4911:7:31","nodeType":"VariableDeclaration","scope":9255,"src":"4906:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9250,"name":"bool","nodeType":"ElementaryTypeName","src":"4906:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9253,"mutability":"mutable","name":"delay","nameLocation":"4927:5:31","nodeType":"VariableDeclaration","scope":9255,"src":"4920:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9252,"name":"uint32","nodeType":"ElementaryTypeName","src":"4920:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4905:28:31"},"scope":9511,"src":"4787:147:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9256,"nodeType":"StructuredDocumentation","src":"4940:252:31","text":" @dev Expiration delay for scheduled proposals. Defaults to 1 week.\n IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately,\n disabling any scheduling usage."},"functionSelector":"4665096d","id":9261,"implemented":false,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"5206:10:31","nodeType":"FunctionDefinition","parameters":{"id":9257,"nodeType":"ParameterList","parameters":[],"src":"5216:2:31"},"returnParameters":{"id":9260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9259,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9261,"src":"5242:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9258,"name":"uint32","nodeType":"ElementaryTypeName","src":"5242:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5241:8:31"},"scope":9511,"src":"5197:53:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9262,"nodeType":"StructuredDocumentation","src":"5256:246:31","text":" @dev Minimum setback for all delay updates, with the exception of execution delays. It\n can be increased without setback (and reset via {revokeRole} in the case event of an\n accidental increase). Defaults to 5 days."},"functionSelector":"cc1b6c81","id":9267,"implemented":false,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"5516:10:31","nodeType":"FunctionDefinition","parameters":{"id":9263,"nodeType":"ParameterList","parameters":[],"src":"5526:2:31"},"returnParameters":{"id":9266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9265,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9267,"src":"5552:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9264,"name":"uint32","nodeType":"ElementaryTypeName","src":"5552:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5551:8:31"},"scope":9511,"src":"5507:53:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9268,"nodeType":"StructuredDocumentation","src":"5566:243:31","text":" @dev Get whether the contract is closed disabling any access. Otherwise role permissions are applied.\n NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract."},"functionSelector":"a166aa89","id":9275,"implemented":false,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"5823:14:31","nodeType":"FunctionDefinition","parameters":{"id":9271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9270,"mutability":"mutable","name":"target","nameLocation":"5846:6:31","nodeType":"VariableDeclaration","scope":9275,"src":"5838:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9269,"name":"address","nodeType":"ElementaryTypeName","src":"5838:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5837:16:31"},"returnParameters":{"id":9274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9275,"src":"5877:4:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9272,"name":"bool","nodeType":"ElementaryTypeName","src":"5877:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5876:6:31"},"scope":9511,"src":"5814:69:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9276,"nodeType":"StructuredDocumentation","src":"5889:65:31","text":" @dev Get the role required to call a function."},"functionSelector":"6d5115bd","id":9285,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"5968:21:31","nodeType":"FunctionDefinition","parameters":{"id":9281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9278,"mutability":"mutable","name":"target","nameLocation":"5998:6:31","nodeType":"VariableDeclaration","scope":9285,"src":"5990:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9277,"name":"address","nodeType":"ElementaryTypeName","src":"5990:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9280,"mutability":"mutable","name":"selector","nameLocation":"6013:8:31","nodeType":"VariableDeclaration","scope":9285,"src":"6006:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9279,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6006:6:31","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5989:33:31"},"returnParameters":{"id":9284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9285,"src":"6046:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9282,"name":"uint64","nodeType":"ElementaryTypeName","src":"6046:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6045:8:31"},"scope":9511,"src":"5959:95:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9286,"nodeType":"StructuredDocumentation","src":"6060:127:31","text":" @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay."},"functionSelector":"4c1da1e2","id":9293,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"6201:19:31","nodeType":"FunctionDefinition","parameters":{"id":9289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9288,"mutability":"mutable","name":"target","nameLocation":"6229:6:31","nodeType":"VariableDeclaration","scope":9293,"src":"6221:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9287,"name":"address","nodeType":"ElementaryTypeName","src":"6221:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6220:16:31"},"returnParameters":{"id":9292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9291,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9293,"src":"6260:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9290,"name":"uint32","nodeType":"ElementaryTypeName","src":"6260:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6259:8:31"},"scope":9511,"src":"6192:76:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9294,"nodeType":"StructuredDocumentation","src":"6274:265:31","text":" @dev Get the id of the role that acts as an admin for the given role.\n The admin permission is required to grant the role, revoke the role and update the execution delay to execute\n an operation that is restricted to this role."},"functionSelector":"530dd456","id":9301,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"6553:12:31","nodeType":"FunctionDefinition","parameters":{"id":9297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9296,"mutability":"mutable","name":"roleId","nameLocation":"6573:6:31","nodeType":"VariableDeclaration","scope":9301,"src":"6566:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9295,"name":"uint64","nodeType":"ElementaryTypeName","src":"6566:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6565:15:31"},"returnParameters":{"id":9300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9299,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9301,"src":"6604:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9298,"name":"uint64","nodeType":"ElementaryTypeName","src":"6604:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6603:8:31"},"scope":9511,"src":"6544:68:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9302,"nodeType":"StructuredDocumentation","src":"6618:185:31","text":" @dev Get the role that acts as a guardian for a given role.\n The guardian permission allows canceling operations that have been scheduled under the role."},"functionSelector":"0b0a93ba","id":9309,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"6817:15:31","nodeType":"FunctionDefinition","parameters":{"id":9305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9304,"mutability":"mutable","name":"roleId","nameLocation":"6840:6:31","nodeType":"VariableDeclaration","scope":9309,"src":"6833:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9303,"name":"uint64","nodeType":"ElementaryTypeName","src":"6833:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6832:15:31"},"returnParameters":{"id":9308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9307,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9309,"src":"6871:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9306,"name":"uint64","nodeType":"ElementaryTypeName","src":"6871:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6870:8:31"},"scope":9511,"src":"6808:71:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9310,"nodeType":"StructuredDocumentation","src":"6885:286:31","text":" @dev Get the role current grant delay.\n Its value may change at any point without an event emitted following a call to {setGrantDelay}.\n Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event."},"functionSelector":"12be8727","id":9317,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"7185:17:31","nodeType":"FunctionDefinition","parameters":{"id":9313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9312,"mutability":"mutable","name":"roleId","nameLocation":"7210:6:31","nodeType":"VariableDeclaration","scope":9317,"src":"7203:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9311,"name":"uint64","nodeType":"ElementaryTypeName","src":"7203:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"7202:15:31"},"returnParameters":{"id":9316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9315,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9317,"src":"7241:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9314,"name":"uint32","nodeType":"ElementaryTypeName","src":"7241:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7240:8:31"},"scope":9511,"src":"7176:73:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9318,"nodeType":"StructuredDocumentation","src":"7255:599:31","text":" @dev Get the access details for a given account for a given role. These details include the timepoint at which\n membership becomes active, and the delay applied to all operation by this user that requires this permission\n level.\n Returns:\n [0] Timestamp at which the account membership becomes valid. 0 means role is not granted.\n [1] Current execution delay for the account.\n [2] Pending execution delay for the account.\n [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled."},"functionSelector":"3078f114","id":9333,"implemented":false,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"7868:9:31","nodeType":"FunctionDefinition","parameters":{"id":9323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9320,"mutability":"mutable","name":"roleId","nameLocation":"7894:6:31","nodeType":"VariableDeclaration","scope":9333,"src":"7887:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9319,"name":"uint64","nodeType":"ElementaryTypeName","src":"7887:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9322,"mutability":"mutable","name":"account","nameLocation":"7918:7:31","nodeType":"VariableDeclaration","scope":9333,"src":"7910:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9321,"name":"address","nodeType":"ElementaryTypeName","src":"7910:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7877:54:31"},"returnParameters":{"id":9332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9325,"mutability":"mutable","name":"since","nameLocation":"7962:5:31","nodeType":"VariableDeclaration","scope":9333,"src":"7955:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9324,"name":"uint48","nodeType":"ElementaryTypeName","src":"7955:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":9327,"mutability":"mutable","name":"currentDelay","nameLocation":"7976:12:31","nodeType":"VariableDeclaration","scope":9333,"src":"7969:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9326,"name":"uint32","nodeType":"ElementaryTypeName","src":"7969:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9329,"mutability":"mutable","name":"pendingDelay","nameLocation":"7997:12:31","nodeType":"VariableDeclaration","scope":9333,"src":"7990:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9328,"name":"uint32","nodeType":"ElementaryTypeName","src":"7990:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9331,"mutability":"mutable","name":"effect","nameLocation":"8018:6:31","nodeType":"VariableDeclaration","scope":9333,"src":"8011:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9330,"name":"uint48","nodeType":"ElementaryTypeName","src":"8011:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"7954:71:31"},"scope":9511,"src":"7859:167:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9334,"nodeType":"StructuredDocumentation","src":"8032:230:31","text":" @dev Check if a given account currently has the permission level corresponding to a given role. Note that this\n permission might be associated with an execution delay. {getAccess} can provide more details."},"functionSelector":"d1f856ee","id":9345,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"8276:7:31","nodeType":"FunctionDefinition","parameters":{"id":9339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9336,"mutability":"mutable","name":"roleId","nameLocation":"8291:6:31","nodeType":"VariableDeclaration","scope":9345,"src":"8284:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9335,"name":"uint64","nodeType":"ElementaryTypeName","src":"8284:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9338,"mutability":"mutable","name":"account","nameLocation":"8307:7:31","nodeType":"VariableDeclaration","scope":9345,"src":"8299:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9337,"name":"address","nodeType":"ElementaryTypeName","src":"8299:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8283:32:31"},"returnParameters":{"id":9344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9341,"mutability":"mutable","name":"isMember","nameLocation":"8344:8:31","nodeType":"VariableDeclaration","scope":9345,"src":"8339:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9340,"name":"bool","nodeType":"ElementaryTypeName","src":"8339:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9343,"mutability":"mutable","name":"executionDelay","nameLocation":"8361:14:31","nodeType":"VariableDeclaration","scope":9345,"src":"8354:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9342,"name":"uint32","nodeType":"ElementaryTypeName","src":"8354:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8338:38:31"},"scope":9511,"src":"8267:110:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9346,"nodeType":"StructuredDocumentation","src":"8383:208:31","text":" @dev Give a label to a role, for improved role discoverability by UIs.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleLabel} event."},"functionSelector":"853551b8","id":9353,"implemented":false,"kind":"function","modifiers":[],"name":"labelRole","nameLocation":"8605:9:31","nodeType":"FunctionDefinition","parameters":{"id":9351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9348,"mutability":"mutable","name":"roleId","nameLocation":"8622:6:31","nodeType":"VariableDeclaration","scope":9353,"src":"8615:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9347,"name":"uint64","nodeType":"ElementaryTypeName","src":"8615:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9350,"mutability":"mutable","name":"label","nameLocation":"8646:5:31","nodeType":"VariableDeclaration","scope":9353,"src":"8630:21:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":9349,"name":"string","nodeType":"ElementaryTypeName","src":"8630:6:31","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8614:38:31"},"returnParameters":{"id":9352,"nodeType":"ParameterList","parameters":[],"src":"8661:0:31"},"scope":9511,"src":"8596:66:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9354,"nodeType":"StructuredDocumentation","src":"8668:1222:31","text":" @dev Add `account` to `roleId`, or change its execution delay.\n This gives the account the authorization to call any function that is restricted to this role. An optional\n execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation\n that is restricted to members of this role. The user will only be able to execute the operation after the delay has\n passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}).\n If the account has already been granted this role, the execution delay will be updated. This update is not\n immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is\n called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any\n operation executed in the 3 hours that follows this update was indeed scheduled before this update.\n Requirements:\n - the caller must be an admin for the role (see {getRoleAdmin})\n - granted role must not be the `PUBLIC_ROLE`\n Emits a {RoleGranted} event."},"functionSelector":"25c471a0","id":9363,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"9904:9:31","nodeType":"FunctionDefinition","parameters":{"id":9361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9356,"mutability":"mutable","name":"roleId","nameLocation":"9921:6:31","nodeType":"VariableDeclaration","scope":9363,"src":"9914:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9355,"name":"uint64","nodeType":"ElementaryTypeName","src":"9914:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9358,"mutability":"mutable","name":"account","nameLocation":"9937:7:31","nodeType":"VariableDeclaration","scope":9363,"src":"9929:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9357,"name":"address","nodeType":"ElementaryTypeName","src":"9929:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9360,"mutability":"mutable","name":"executionDelay","nameLocation":"9953:14:31","nodeType":"VariableDeclaration","scope":9363,"src":"9946:21:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9359,"name":"uint32","nodeType":"ElementaryTypeName","src":"9946:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9913:55:31"},"returnParameters":{"id":9362,"nodeType":"ParameterList","parameters":[],"src":"9977:0:31"},"scope":9511,"src":"9895:83:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9364,"nodeType":"StructuredDocumentation","src":"9984:377:31","text":" @dev Remove an account from a role, with immediate effect. If the account does not have the role, this call has\n no effect.\n Requirements:\n - the caller must be an admin for the role (see {getRoleAdmin})\n - revoked role must not be the `PUBLIC_ROLE`\n Emits a {RoleRevoked} event if the account had the role."},"functionSelector":"b7d2b162","id":9371,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"10375:10:31","nodeType":"FunctionDefinition","parameters":{"id":9369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9366,"mutability":"mutable","name":"roleId","nameLocation":"10393:6:31","nodeType":"VariableDeclaration","scope":9371,"src":"10386:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9365,"name":"uint64","nodeType":"ElementaryTypeName","src":"10386:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9368,"mutability":"mutable","name":"account","nameLocation":"10409:7:31","nodeType":"VariableDeclaration","scope":9371,"src":"10401:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9367,"name":"address","nodeType":"ElementaryTypeName","src":"10401:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10385:32:31"},"returnParameters":{"id":9370,"nodeType":"ParameterList","parameters":[],"src":"10426:0:31"},"scope":9511,"src":"10366:61:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9372,"nodeType":"StructuredDocumentation","src":"10433:317:31","text":" @dev Renounce role permissions for the calling account with immediate effect. If the sender is not in\n the role this call has no effect.\n Requirements:\n - the caller must be `callerConfirmation`.\n Emits a {RoleRevoked} event if the account had the role."},"functionSelector":"fe0776f5","id":9379,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10764:12:31","nodeType":"FunctionDefinition","parameters":{"id":9377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9374,"mutability":"mutable","name":"roleId","nameLocation":"10784:6:31","nodeType":"VariableDeclaration","scope":9379,"src":"10777:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9373,"name":"uint64","nodeType":"ElementaryTypeName","src":"10777:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9376,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10800:18:31","nodeType":"VariableDeclaration","scope":9379,"src":"10792:26:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9375,"name":"address","nodeType":"ElementaryTypeName","src":"10792:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10776:43:31"},"returnParameters":{"id":9378,"nodeType":"ParameterList","parameters":[],"src":"10828:0:31"},"scope":9511,"src":"10755:74:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9380,"nodeType":"StructuredDocumentation","src":"10835:184:31","text":" @dev Change admin role for a given role.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleAdminChanged} event"},"functionSelector":"30cae187","id":9387,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleAdmin","nameLocation":"11033:12:31","nodeType":"FunctionDefinition","parameters":{"id":9385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9382,"mutability":"mutable","name":"roleId","nameLocation":"11053:6:31","nodeType":"VariableDeclaration","scope":9387,"src":"11046:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9381,"name":"uint64","nodeType":"ElementaryTypeName","src":"11046:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9384,"mutability":"mutable","name":"admin","nameLocation":"11068:5:31","nodeType":"VariableDeclaration","scope":9387,"src":"11061:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9383,"name":"uint64","nodeType":"ElementaryTypeName","src":"11061:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11045:29:31"},"returnParameters":{"id":9386,"nodeType":"ParameterList","parameters":[],"src":"11083:0:31"},"scope":9511,"src":"11024:60:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9388,"nodeType":"StructuredDocumentation","src":"11090:190:31","text":" @dev Change guardian role for a given role.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleGuardianChanged} event"},"functionSelector":"52962952","id":9395,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleGuardian","nameLocation":"11294:15:31","nodeType":"FunctionDefinition","parameters":{"id":9393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9390,"mutability":"mutable","name":"roleId","nameLocation":"11317:6:31","nodeType":"VariableDeclaration","scope":9395,"src":"11310:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9389,"name":"uint64","nodeType":"ElementaryTypeName","src":"11310:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9392,"mutability":"mutable","name":"guardian","nameLocation":"11332:8:31","nodeType":"VariableDeclaration","scope":9395,"src":"11325:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9391,"name":"uint64","nodeType":"ElementaryTypeName","src":"11325:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11309:32:31"},"returnParameters":{"id":9394,"nodeType":"ParameterList","parameters":[],"src":"11350:0:31"},"scope":9511,"src":"11285:66:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9396,"nodeType":"StructuredDocumentation","src":"11357:196:31","text":" @dev Update the delay for granting a `roleId`.\n Requirements:\n - the caller must be a global admin\n Emits a {RoleGrantDelayChanged} event."},"functionSelector":"a64d95ce","id":9403,"implemented":false,"kind":"function","modifiers":[],"name":"setGrantDelay","nameLocation":"11567:13:31","nodeType":"FunctionDefinition","parameters":{"id":9401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9398,"mutability":"mutable","name":"roleId","nameLocation":"11588:6:31","nodeType":"VariableDeclaration","scope":9403,"src":"11581:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9397,"name":"uint64","nodeType":"ElementaryTypeName","src":"11581:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9400,"mutability":"mutable","name":"newDelay","nameLocation":"11603:8:31","nodeType":"VariableDeclaration","scope":9403,"src":"11596:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9399,"name":"uint32","nodeType":"ElementaryTypeName","src":"11596:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11580:32:31"},"returnParameters":{"id":9402,"nodeType":"ParameterList","parameters":[],"src":"11621:0:31"},"scope":9511,"src":"11558:64:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9404,"nodeType":"StructuredDocumentation","src":"11628:267:31","text":" @dev Set the role required to call functions identified by the `selectors` in the `target` contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetFunctionRoleUpdated} event per selector."},"functionSelector":"08d6122d","id":9414,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetFunctionRole","nameLocation":"11909:21:31","nodeType":"FunctionDefinition","parameters":{"id":9412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9406,"mutability":"mutable","name":"target","nameLocation":"11939:6:31","nodeType":"VariableDeclaration","scope":9414,"src":"11931:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9405,"name":"address","nodeType":"ElementaryTypeName","src":"11931:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9409,"mutability":"mutable","name":"selectors","nameLocation":"11965:9:31","nodeType":"VariableDeclaration","scope":9414,"src":"11947:27:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":9407,"name":"bytes4","nodeType":"ElementaryTypeName","src":"11947:6:31","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":9408,"nodeType":"ArrayTypeName","src":"11947:8:31","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":9411,"mutability":"mutable","name":"roleId","nameLocation":"11983:6:31","nodeType":"VariableDeclaration","scope":9414,"src":"11976:13:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9410,"name":"uint64","nodeType":"ElementaryTypeName","src":"11976:6:31","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11930:60:31"},"returnParameters":{"id":9413,"nodeType":"ParameterList","parameters":[],"src":"11999:0:31"},"scope":9511,"src":"11900:100:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9415,"nodeType":"StructuredDocumentation","src":"12006:229:31","text":" @dev Set the delay for changing the configuration of a given target contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetAdminDelayUpdated} event."},"functionSelector":"d22b5989","id":9422,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetAdminDelay","nameLocation":"12249:19:31","nodeType":"FunctionDefinition","parameters":{"id":9420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9417,"mutability":"mutable","name":"target","nameLocation":"12277:6:31","nodeType":"VariableDeclaration","scope":9422,"src":"12269:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9416,"name":"address","nodeType":"ElementaryTypeName","src":"12269:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9419,"mutability":"mutable","name":"newDelay","nameLocation":"12292:8:31","nodeType":"VariableDeclaration","scope":9422,"src":"12285:15:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9418,"name":"uint32","nodeType":"ElementaryTypeName","src":"12285:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"12268:33:31"},"returnParameters":{"id":9421,"nodeType":"ParameterList","parameters":[],"src":"12310:0:31"},"scope":9511,"src":"12240:71:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9423,"nodeType":"StructuredDocumentation","src":"12317:291:31","text":" @dev Set the closed flag for a contract.\n Closing the manager itself won't disable access to admin methods to avoid locking the contract.\n Requirements:\n - the caller must be a global admin\n Emits a {TargetClosed} event."},"functionSelector":"167bd395","id":9430,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetClosed","nameLocation":"12622:15:31","nodeType":"FunctionDefinition","parameters":{"id":9428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9425,"mutability":"mutable","name":"target","nameLocation":"12646:6:31","nodeType":"VariableDeclaration","scope":9430,"src":"12638:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9424,"name":"address","nodeType":"ElementaryTypeName","src":"12638:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9427,"mutability":"mutable","name":"closed","nameLocation":"12659:6:31","nodeType":"VariableDeclaration","scope":9430,"src":"12654:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9426,"name":"bool","nodeType":"ElementaryTypeName","src":"12654:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12637:29:31"},"returnParameters":{"id":9429,"nodeType":"ParameterList","parameters":[],"src":"12675:0:31"},"scope":9511,"src":"12613:63:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9431,"nodeType":"StructuredDocumentation","src":"12682:209:31","text":" @dev Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the\n operation is not yet scheduled, has expired, was executed, or was canceled."},"functionSelector":"3adc277a","id":9438,"implemented":false,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"12905:11:31","nodeType":"FunctionDefinition","parameters":{"id":9434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9433,"mutability":"mutable","name":"id","nameLocation":"12925:2:31","nodeType":"VariableDeclaration","scope":9438,"src":"12917:10:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9432,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12917:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12916:12:31"},"returnParameters":{"id":9437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9436,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9438,"src":"12952:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9435,"name":"uint48","nodeType":"ElementaryTypeName","src":"12952:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"12951:8:31"},"scope":9511,"src":"12896:64:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9439,"nodeType":"StructuredDocumentation","src":"12966:152:31","text":" @dev Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never\n been scheduled."},"functionSelector":"4136a33c","id":9446,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"13132:8:31","nodeType":"FunctionDefinition","parameters":{"id":9442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9441,"mutability":"mutable","name":"id","nameLocation":"13149:2:31","nodeType":"VariableDeclaration","scope":9446,"src":"13141:10:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9440,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13141:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13140:12:31"},"returnParameters":{"id":9445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9444,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9446,"src":"13176:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9443,"name":"uint32","nodeType":"ElementaryTypeName","src":"13176:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13175:8:31"},"scope":9511,"src":"13123:61:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9447,"nodeType":"StructuredDocumentation","src":"13190:1068:31","text":" @dev Schedule a delayed operation for future execution, and return the operation identifier. It is possible to\n choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays\n required for the caller. The special value zero will automatically set the earliest possible time.\n Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when\n the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this\n scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}.\n Emits a {OperationScheduled} event.\n NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If\n this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target\n contract if it is using standard Solidity ABI encoding."},"functionSelector":"f801a698","id":9460,"implemented":false,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"14272:8:31","nodeType":"FunctionDefinition","parameters":{"id":9454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9449,"mutability":"mutable","name":"target","nameLocation":"14298:6:31","nodeType":"VariableDeclaration","scope":9460,"src":"14290:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9448,"name":"address","nodeType":"ElementaryTypeName","src":"14290:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9451,"mutability":"mutable","name":"data","nameLocation":"14329:4:31","nodeType":"VariableDeclaration","scope":9460,"src":"14314:19:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9450,"name":"bytes","nodeType":"ElementaryTypeName","src":"14314:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9453,"mutability":"mutable","name":"when","nameLocation":"14350:4:31","nodeType":"VariableDeclaration","scope":9460,"src":"14343:11:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":9452,"name":"uint48","nodeType":"ElementaryTypeName","src":"14343:6:31","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14280:80:31"},"returnParameters":{"id":9459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9456,"mutability":"mutable","name":"operationId","nameLocation":"14387:11:31","nodeType":"VariableDeclaration","scope":9460,"src":"14379:19:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9455,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14379:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9458,"mutability":"mutable","name":"nonce","nameLocation":"14407:5:31","nodeType":"VariableDeclaration","scope":9460,"src":"14400:12:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9457,"name":"uint32","nodeType":"ElementaryTypeName","src":"14400:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14378:35:31"},"scope":9511,"src":"14263:151:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9461,"nodeType":"StructuredDocumentation","src":"14420:451:31","text":" @dev Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the\n execution delay is 0.\n Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the\n operation wasn't previously scheduled (if the caller doesn't have an execution delay).\n Emits an {OperationExecuted} event only if the call was scheduled and delayed."},"functionSelector":"1cff79cd","id":9470,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"14885:7:31","nodeType":"FunctionDefinition","parameters":{"id":9466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9463,"mutability":"mutable","name":"target","nameLocation":"14901:6:31","nodeType":"VariableDeclaration","scope":9470,"src":"14893:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9462,"name":"address","nodeType":"ElementaryTypeName","src":"14893:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9465,"mutability":"mutable","name":"data","nameLocation":"14924:4:31","nodeType":"VariableDeclaration","scope":9470,"src":"14909:19:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9464,"name":"bytes","nodeType":"ElementaryTypeName","src":"14909:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14892:37:31"},"returnParameters":{"id":9469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9468,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9470,"src":"14956:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9467,"name":"uint32","nodeType":"ElementaryTypeName","src":"14956:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14955:8:31"},"scope":9511,"src":"14876:88:31","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":9471,"nodeType":"StructuredDocumentation","src":"14970:339:31","text":" @dev Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled\n operation that is cancelled.\n Requirements:\n - the caller must be the proposer, a guardian of the targeted function, or a global admin\n Emits a {OperationCanceled} event."},"functionSelector":"d6bb62c6","id":9482,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"15323:6:31","nodeType":"FunctionDefinition","parameters":{"id":9478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9473,"mutability":"mutable","name":"caller","nameLocation":"15338:6:31","nodeType":"VariableDeclaration","scope":9482,"src":"15330:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9472,"name":"address","nodeType":"ElementaryTypeName","src":"15330:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9475,"mutability":"mutable","name":"target","nameLocation":"15354:6:31","nodeType":"VariableDeclaration","scope":9482,"src":"15346:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9474,"name":"address","nodeType":"ElementaryTypeName","src":"15346:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9477,"mutability":"mutable","name":"data","nameLocation":"15377:4:31","nodeType":"VariableDeclaration","scope":9482,"src":"15362:19:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9476,"name":"bytes","nodeType":"ElementaryTypeName","src":"15362:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15329:53:31"},"returnParameters":{"id":9481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9480,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9482,"src":"15401:6:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9479,"name":"uint32","nodeType":"ElementaryTypeName","src":"15401:6:31","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15400:8:31"},"scope":9511,"src":"15314:95:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9483,"nodeType":"StructuredDocumentation","src":"15415:434:31","text":" @dev Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed\n (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error.\n This is useful for contract that want to enforce that calls targeting them were scheduled on the manager,\n with all the verifications that it implies.\n Emit a {OperationExecuted} event."},"functionSelector":"94c7d7ee","id":9490,"implemented":false,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"15863:18:31","nodeType":"FunctionDefinition","parameters":{"id":9488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9485,"mutability":"mutable","name":"caller","nameLocation":"15890:6:31","nodeType":"VariableDeclaration","scope":9490,"src":"15882:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9484,"name":"address","nodeType":"ElementaryTypeName","src":"15882:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9487,"mutability":"mutable","name":"data","nameLocation":"15913:4:31","nodeType":"VariableDeclaration","scope":9490,"src":"15898:19:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9486,"name":"bytes","nodeType":"ElementaryTypeName","src":"15898:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15881:37:31"},"returnParameters":{"id":9489,"nodeType":"ParameterList","parameters":[],"src":"15927:0:31"},"scope":9511,"src":"15854:74:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9491,"nodeType":"StructuredDocumentation","src":"15934:64:31","text":" @dev Hashing function for delayed operations."},"functionSelector":"abd9bd2a","id":9502,"implemented":false,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"16012:13:31","nodeType":"FunctionDefinition","parameters":{"id":9498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9493,"mutability":"mutable","name":"caller","nameLocation":"16034:6:31","nodeType":"VariableDeclaration","scope":9502,"src":"16026:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9492,"name":"address","nodeType":"ElementaryTypeName","src":"16026:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9495,"mutability":"mutable","name":"target","nameLocation":"16050:6:31","nodeType":"VariableDeclaration","scope":9502,"src":"16042:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9494,"name":"address","nodeType":"ElementaryTypeName","src":"16042:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9497,"mutability":"mutable","name":"data","nameLocation":"16073:4:31","nodeType":"VariableDeclaration","scope":9502,"src":"16058:19:31","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9496,"name":"bytes","nodeType":"ElementaryTypeName","src":"16058:5:31","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16025:53:31"},"returnParameters":{"id":9501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9500,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9502,"src":"16102:7:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9499,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16102:7:31","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16101:9:31"},"scope":9511,"src":"16003:108:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9503,"nodeType":"StructuredDocumentation","src":"16117:169:31","text":" @dev Changes the authority of a target managed by this manager instance.\n Requirements:\n - the caller must be a global admin"},"functionSelector":"18ff183c","id":9510,"implemented":false,"kind":"function","modifiers":[],"name":"updateAuthority","nameLocation":"16300:15:31","nodeType":"FunctionDefinition","parameters":{"id":9508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9505,"mutability":"mutable","name":"target","nameLocation":"16324:6:31","nodeType":"VariableDeclaration","scope":9510,"src":"16316:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9504,"name":"address","nodeType":"ElementaryTypeName","src":"16316:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9507,"mutability":"mutable","name":"newAuthority","nameLocation":"16340:12:31","nodeType":"VariableDeclaration","scope":9510,"src":"16332:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9506,"name":"address","nodeType":"ElementaryTypeName","src":"16332:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16315:38:31"},"returnParameters":{"id":9509,"nodeType":"ParameterList","parameters":[],"src":"16362:0:31"},"scope":9511,"src":"16291:72:31","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":9512,"src":"193:16172:31","usedErrors":[9191,9195,9199,9203,9207,9209,9215,9223,9227,9237,9241],"usedEvents":[9098,9105,9112,9119,9132,9139,9146,9153,9162,9169,9178,9187]}],"src":"117:16249:31"},"id":31},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","exportedSymbols":{"IERC1363":[9593],"IERC165":[18208],"IERC20":[11065]},"id":9594,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9513,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:32"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"./IERC20.sol","id":9515,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9594,"sourceUnit":9623,"src":"133:36:32","symbolAliases":[{"foreign":{"id":9514,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"141:6:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"./IERC165.sol","id":9517,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9594,"sourceUnit":9598,"src":"170:38:32","symbolAliases":[{"foreign":{"id":9516,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18208,"src":"178:7:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9519,"name":"IERC20","nameLocations":["590:6:32"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"590:6:32"},"id":9520,"nodeType":"InheritanceSpecifier","src":"590:6:32"},{"baseName":{"id":9521,"name":"IERC165","nameLocations":["598:7:32"],"nodeType":"IdentifierPath","referencedDeclaration":18208,"src":"598:7:32"},"id":9522,"nodeType":"InheritanceSpecifier","src":"598:7:32"}],"canonicalName":"IERC1363","contractDependencies":[],"contractKind":"interface","documentation":{"id":9518,"nodeType":"StructuredDocumentation","src":"210:357:32","text":" @title IERC1363\n @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction."},"fullyImplemented":false,"id":9593,"linearizedBaseContracts":[9593,18208,11065],"name":"IERC1363","nameLocation":"578:8:32","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9523,"nodeType":"StructuredDocumentation","src":"1148:370:32","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"1296ee62","id":9532,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"1532:15:32","nodeType":"FunctionDefinition","parameters":{"id":9528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9525,"mutability":"mutable","name":"to","nameLocation":"1556:2:32","nodeType":"VariableDeclaration","scope":9532,"src":"1548:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9524,"name":"address","nodeType":"ElementaryTypeName","src":"1548:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9527,"mutability":"mutable","name":"value","nameLocation":"1568:5:32","nodeType":"VariableDeclaration","scope":9532,"src":"1560:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9526,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1547:27:32"},"returnParameters":{"id":9531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9532,"src":"1593:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9529,"name":"bool","nodeType":"ElementaryTypeName","src":"1593:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1592:6:32"},"scope":9593,"src":"1523:76:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9533,"nodeType":"StructuredDocumentation","src":"1605:453:32","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"4000aea0","id":9544,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"2072:15:32","nodeType":"FunctionDefinition","parameters":{"id":9540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9535,"mutability":"mutable","name":"to","nameLocation":"2096:2:32","nodeType":"VariableDeclaration","scope":9544,"src":"2088:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9534,"name":"address","nodeType":"ElementaryTypeName","src":"2088:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9537,"mutability":"mutable","name":"value","nameLocation":"2108:5:32","nodeType":"VariableDeclaration","scope":9544,"src":"2100:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9536,"name":"uint256","nodeType":"ElementaryTypeName","src":"2100:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9539,"mutability":"mutable","name":"data","nameLocation":"2130:4:32","nodeType":"VariableDeclaration","scope":9544,"src":"2115:19:32","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9538,"name":"bytes","nodeType":"ElementaryTypeName","src":"2115:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2087:48:32"},"returnParameters":{"id":9543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9542,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9544,"src":"2154:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9541,"name":"bool","nodeType":"ElementaryTypeName","src":"2154:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2153:6:32"},"scope":9593,"src":"2063:97:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9545,"nodeType":"StructuredDocumentation","src":"2166:453:32","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"d8fbe994","id":9556,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"2633:19:32","nodeType":"FunctionDefinition","parameters":{"id":9552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9547,"mutability":"mutable","name":"from","nameLocation":"2661:4:32","nodeType":"VariableDeclaration","scope":9556,"src":"2653:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9546,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9549,"mutability":"mutable","name":"to","nameLocation":"2675:2:32","nodeType":"VariableDeclaration","scope":9556,"src":"2667:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9548,"name":"address","nodeType":"ElementaryTypeName","src":"2667:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9551,"mutability":"mutable","name":"value","nameLocation":"2687:5:32","nodeType":"VariableDeclaration","scope":9556,"src":"2679:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9550,"name":"uint256","nodeType":"ElementaryTypeName","src":"2679:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2652:41:32"},"returnParameters":{"id":9555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9554,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9556,"src":"2712:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9553,"name":"bool","nodeType":"ElementaryTypeName","src":"2712:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2711:6:32"},"scope":9593,"src":"2624:94:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9557,"nodeType":"StructuredDocumentation","src":"2724:536:32","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"c1d34b89","id":9570,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"3274:19:32","nodeType":"FunctionDefinition","parameters":{"id":9566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9559,"mutability":"mutable","name":"from","nameLocation":"3302:4:32","nodeType":"VariableDeclaration","scope":9570,"src":"3294:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9558,"name":"address","nodeType":"ElementaryTypeName","src":"3294:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9561,"mutability":"mutable","name":"to","nameLocation":"3316:2:32","nodeType":"VariableDeclaration","scope":9570,"src":"3308:10:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9560,"name":"address","nodeType":"ElementaryTypeName","src":"3308:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9563,"mutability":"mutable","name":"value","nameLocation":"3328:5:32","nodeType":"VariableDeclaration","scope":9570,"src":"3320:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9562,"name":"uint256","nodeType":"ElementaryTypeName","src":"3320:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9565,"mutability":"mutable","name":"data","nameLocation":"3350:4:32","nodeType":"VariableDeclaration","scope":9570,"src":"3335:19:32","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9564,"name":"bytes","nodeType":"ElementaryTypeName","src":"3335:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3293:62:32"},"returnParameters":{"id":9569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9568,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9570,"src":"3374:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9567,"name":"bool","nodeType":"ElementaryTypeName","src":"3374:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3373:6:32"},"scope":9593,"src":"3265:115:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9571,"nodeType":"StructuredDocumentation","src":"3386:390:32","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"3177029f","id":9580,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"3790:14:32","nodeType":"FunctionDefinition","parameters":{"id":9576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9573,"mutability":"mutable","name":"spender","nameLocation":"3813:7:32","nodeType":"VariableDeclaration","scope":9580,"src":"3805:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9572,"name":"address","nodeType":"ElementaryTypeName","src":"3805:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9575,"mutability":"mutable","name":"value","nameLocation":"3830:5:32","nodeType":"VariableDeclaration","scope":9580,"src":"3822:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9574,"name":"uint256","nodeType":"ElementaryTypeName","src":"3822:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3804:32:32"},"returnParameters":{"id":9579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9578,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9580,"src":"3855:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9577,"name":"bool","nodeType":"ElementaryTypeName","src":"3855:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3854:6:32"},"scope":9593,"src":"3781:80:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9581,"nodeType":"StructuredDocumentation","src":"3867:478:32","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @param data Additional data with no specified format, sent in call to `spender`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"cae9ca51","id":9592,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"4359:14:32","nodeType":"FunctionDefinition","parameters":{"id":9588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9583,"mutability":"mutable","name":"spender","nameLocation":"4382:7:32","nodeType":"VariableDeclaration","scope":9592,"src":"4374:15:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9582,"name":"address","nodeType":"ElementaryTypeName","src":"4374:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9585,"mutability":"mutable","name":"value","nameLocation":"4399:5:32","nodeType":"VariableDeclaration","scope":9592,"src":"4391:13:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9584,"name":"uint256","nodeType":"ElementaryTypeName","src":"4391:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9587,"mutability":"mutable","name":"data","nameLocation":"4421:4:32","nodeType":"VariableDeclaration","scope":9592,"src":"4406:19:32","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9586,"name":"bytes","nodeType":"ElementaryTypeName","src":"4406:5:32","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4373:53:32"},"returnParameters":{"id":9591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9590,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9592,"src":"4445:4:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9589,"name":"bool","nodeType":"ElementaryTypeName","src":"4445:4:32","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4444:6:32"},"scope":9593,"src":"4350:101:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":9594,"src":"568:3885:32","usedErrors":[],"usedEvents":[10999,11008]}],"src":"107:4347:32"},"id":32},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[18208]},"id":9598,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9595,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:33"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":9597,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9598,"sourceUnit":18209,"src":"132:59:33","symbolAliases":[{"foreign":{"id":9596,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18208,"src":"140:7:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:86:33"},"id":33},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","exportedSymbols":{"IERC1967":[9618]},"id":9619,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9599,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:34"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1967","contractDependencies":[],"contractKind":"interface","documentation":{"id":9600,"nodeType":"StructuredDocumentation","src":"133:101:34","text":" @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC."},"fullyImplemented":true,"id":9618,"linearizedBaseContracts":[9618],"name":"IERC1967","nameLocation":"245:8:34","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":9601,"nodeType":"StructuredDocumentation","src":"260:68:34","text":" @dev Emitted when the implementation is upgraded."},"eventSelector":"bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b","id":9605,"name":"Upgraded","nameLocation":"339:8:34","nodeType":"EventDefinition","parameters":{"id":9604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9603,"indexed":true,"mutability":"mutable","name":"implementation","nameLocation":"364:14:34","nodeType":"VariableDeclaration","scope":9605,"src":"348:30:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9602,"name":"address","nodeType":"ElementaryTypeName","src":"348:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"347:32:34"},"src":"333:47:34"},{"anonymous":false,"documentation":{"id":9606,"nodeType":"StructuredDocumentation","src":"386:67:34","text":" @dev Emitted when the admin account has changed."},"eventSelector":"7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f","id":9612,"name":"AdminChanged","nameLocation":"464:12:34","nodeType":"EventDefinition","parameters":{"id":9611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9608,"indexed":false,"mutability":"mutable","name":"previousAdmin","nameLocation":"485:13:34","nodeType":"VariableDeclaration","scope":9612,"src":"477:21:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9607,"name":"address","nodeType":"ElementaryTypeName","src":"477:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9610,"indexed":false,"mutability":"mutable","name":"newAdmin","nameLocation":"508:8:34","nodeType":"VariableDeclaration","scope":9612,"src":"500:16:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9609,"name":"address","nodeType":"ElementaryTypeName","src":"500:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"476:41:34"},"src":"458:60:34"},{"anonymous":false,"documentation":{"id":9613,"nodeType":"StructuredDocumentation","src":"524:59:34","text":" @dev Emitted when the beacon is changed."},"eventSelector":"1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e","id":9617,"name":"BeaconUpgraded","nameLocation":"594:14:34","nodeType":"EventDefinition","parameters":{"id":9616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9615,"indexed":true,"mutability":"mutable","name":"beacon","nameLocation":"625:6:34","nodeType":"VariableDeclaration","scope":9617,"src":"609:22:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9614,"name":"address","nodeType":"ElementaryTypeName","src":"609:7:34","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"608:24:34"},"src":"588:45:34"}],"scope":9619,"src":"235:400:34","usedErrors":[],"usedEvents":[9605,9612,9617]}],"src":"107:529:34"},"id":34},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[11065]},"id":9623,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9620,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:35"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":9622,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9623,"sourceUnit":11066,"src":"131:49:35","symbolAliases":[{"foreign":{"id":9621,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"139:6:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"105:76:35"},"id":35},"@openzeppelin/contracts/interfaces/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","exportedSymbols":{"IERC20Metadata":[11776]},"id":9627,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9624,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:36"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"../token/ERC20/extensions/IERC20Metadata.sol","id":9626,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9627,"sourceUnit":11777,"src":"139:76:36","symbolAliases":[{"foreign":{"id":9625,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"147:14:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"113:103:36"},"id":36},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","exportedSymbols":{"IERC20":[11065],"IERC20Metadata":[11776],"IERC4626":[9796]},"id":9797,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9628,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:37"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":9630,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9797,"sourceUnit":11066,"src":"133:49:37","symbolAliases":[{"foreign":{"id":9629,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"141:6:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"../token/ERC20/extensions/IERC20Metadata.sol","id":9632,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9797,"sourceUnit":11777,"src":"183:76:37","symbolAliases":[{"foreign":{"id":9631,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"191:14:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9634,"name":"IERC20","nameLocations":["421:6:37"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"421:6:37"},"id":9635,"nodeType":"InheritanceSpecifier","src":"421:6:37"},{"baseName":{"id":9636,"name":"IERC20Metadata","nameLocations":["429:14:37"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"429:14:37"},"id":9637,"nodeType":"InheritanceSpecifier","src":"429:14:37"}],"canonicalName":"IERC4626","contractDependencies":[],"contractKind":"interface","documentation":{"id":9633,"nodeType":"StructuredDocumentation","src":"261:137:37","text":" @dev Interface of the ERC-4626 \"Tokenized Vault Standard\", as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]."},"fullyImplemented":false,"id":9796,"linearizedBaseContracts":[9796,11776,11065],"name":"IERC4626","nameLocation":"409:8:37","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"dcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7","id":9647,"name":"Deposit","nameLocation":"456:7:37","nodeType":"EventDefinition","parameters":{"id":9646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9639,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"480:6:37","nodeType":"VariableDeclaration","scope":9647,"src":"464:22:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9638,"name":"address","nodeType":"ElementaryTypeName","src":"464:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9641,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"504:5:37","nodeType":"VariableDeclaration","scope":9647,"src":"488:21:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9640,"name":"address","nodeType":"ElementaryTypeName","src":"488:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9643,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"519:6:37","nodeType":"VariableDeclaration","scope":9647,"src":"511:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9642,"name":"uint256","nodeType":"ElementaryTypeName","src":"511:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9645,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"535:6:37","nodeType":"VariableDeclaration","scope":9647,"src":"527:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9644,"name":"uint256","nodeType":"ElementaryTypeName","src":"527:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"463:79:37"},"src":"450:93:37"},{"anonymous":false,"eventSelector":"fbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db","id":9659,"name":"Withdraw","nameLocation":"555:8:37","nodeType":"EventDefinition","parameters":{"id":9658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9649,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"589:6:37","nodeType":"VariableDeclaration","scope":9659,"src":"573:22:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9648,"name":"address","nodeType":"ElementaryTypeName","src":"573:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9651,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"621:8:37","nodeType":"VariableDeclaration","scope":9659,"src":"605:24:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9650,"name":"address","nodeType":"ElementaryTypeName","src":"605:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9653,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"655:5:37","nodeType":"VariableDeclaration","scope":9659,"src":"639:21:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9652,"name":"address","nodeType":"ElementaryTypeName","src":"639:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9655,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"678:6:37","nodeType":"VariableDeclaration","scope":9659,"src":"670:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9654,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9657,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"702:6:37","nodeType":"VariableDeclaration","scope":9659,"src":"694:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9656,"name":"uint256","nodeType":"ElementaryTypeName","src":"694:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"563:151:37"},"src":"549:166:37"},{"documentation":{"id":9660,"nodeType":"StructuredDocumentation","src":"721:207:37","text":" @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.\n - MUST be an ERC-20 token contract.\n - MUST NOT revert."},"functionSelector":"38d52e0f","id":9665,"implemented":false,"kind":"function","modifiers":[],"name":"asset","nameLocation":"942:5:37","nodeType":"FunctionDefinition","parameters":{"id":9661,"nodeType":"ParameterList","parameters":[],"src":"947:2:37"},"returnParameters":{"id":9664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9663,"mutability":"mutable","name":"assetTokenAddress","nameLocation":"981:17:37","nodeType":"VariableDeclaration","scope":9665,"src":"973:25:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9662,"name":"address","nodeType":"ElementaryTypeName","src":"973:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"972:27:37"},"scope":9796,"src":"933:67:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9666,"nodeType":"StructuredDocumentation","src":"1006:286:37","text":" @dev Returns the total amount of the underlying asset that is “managed” by Vault.\n - SHOULD include any compounding that occurs from yield.\n - MUST be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT revert."},"functionSelector":"01e1d114","id":9671,"implemented":false,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"1306:11:37","nodeType":"FunctionDefinition","parameters":{"id":9667,"nodeType":"ParameterList","parameters":[],"src":"1317:2:37"},"returnParameters":{"id":9670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9669,"mutability":"mutable","name":"totalManagedAssets","nameLocation":"1351:18:37","nodeType":"VariableDeclaration","scope":9671,"src":"1343:26:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9668,"name":"uint256","nodeType":"ElementaryTypeName","src":"1343:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1342:28:37"},"scope":9796,"src":"1297:74:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9672,"nodeType":"StructuredDocumentation","src":"1377:720:37","text":" @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal\n scenario where all the conditions are met.\n - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT show any variations depending on the caller.\n - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n - MUST NOT revert.\n NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n from."},"functionSelector":"c6e6f592","id":9679,"implemented":false,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"2111:15:37","nodeType":"FunctionDefinition","parameters":{"id":9675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9674,"mutability":"mutable","name":"assets","nameLocation":"2135:6:37","nodeType":"VariableDeclaration","scope":9679,"src":"2127:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9673,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2126:16:37"},"returnParameters":{"id":9678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9677,"mutability":"mutable","name":"shares","nameLocation":"2174:6:37","nodeType":"VariableDeclaration","scope":9679,"src":"2166:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9676,"name":"uint256","nodeType":"ElementaryTypeName","src":"2166:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2165:16:37"},"scope":9796,"src":"2102:80:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9680,"nodeType":"StructuredDocumentation","src":"2188:720:37","text":" @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal\n scenario where all the conditions are met.\n - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT show any variations depending on the caller.\n - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n - MUST NOT revert.\n NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n from."},"functionSelector":"07a2d13a","id":9687,"implemented":false,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"2922:15:37","nodeType":"FunctionDefinition","parameters":{"id":9683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9682,"mutability":"mutable","name":"shares","nameLocation":"2946:6:37","nodeType":"VariableDeclaration","scope":9687,"src":"2938:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9681,"name":"uint256","nodeType":"ElementaryTypeName","src":"2938:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2937:16:37"},"returnParameters":{"id":9686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9685,"mutability":"mutable","name":"assets","nameLocation":"2985:6:37","nodeType":"VariableDeclaration","scope":9687,"src":"2977:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9684,"name":"uint256","nodeType":"ElementaryTypeName","src":"2977:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2976:16:37"},"scope":9796,"src":"2913:80:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9688,"nodeType":"StructuredDocumentation","src":"2999:386:37","text":" @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,\n through a deposit call.\n - MUST return a limited value if receiver is subject to some deposit limit.\n - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.\n - MUST NOT revert."},"functionSelector":"402d267d","id":9695,"implemented":false,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"3399:10:37","nodeType":"FunctionDefinition","parameters":{"id":9691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9690,"mutability":"mutable","name":"receiver","nameLocation":"3418:8:37","nodeType":"VariableDeclaration","scope":9695,"src":"3410:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9689,"name":"address","nodeType":"ElementaryTypeName","src":"3410:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3409:18:37"},"returnParameters":{"id":9694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9693,"mutability":"mutable","name":"maxAssets","nameLocation":"3459:9:37","nodeType":"VariableDeclaration","scope":9695,"src":"3451:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9692,"name":"uint256","nodeType":"ElementaryTypeName","src":"3451:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3450:19:37"},"scope":9796,"src":"3390:80:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9696,"nodeType":"StructuredDocumentation","src":"3476:1012:37","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given\n current on-chain conditions.\n - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit\n   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called\n   in the same transaction.\n - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the\n   deposit would be accepted, regardless if the user has enough tokens approved, etc.\n - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by depositing."},"functionSelector":"ef8b30f7","id":9703,"implemented":false,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"4502:14:37","nodeType":"FunctionDefinition","parameters":{"id":9699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9698,"mutability":"mutable","name":"assets","nameLocation":"4525:6:37","nodeType":"VariableDeclaration","scope":9703,"src":"4517:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9697,"name":"uint256","nodeType":"ElementaryTypeName","src":"4517:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4516:16:37"},"returnParameters":{"id":9702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9701,"mutability":"mutable","name":"shares","nameLocation":"4564:6:37","nodeType":"VariableDeclaration","scope":9703,"src":"4556:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9700,"name":"uint256","nodeType":"ElementaryTypeName","src":"4556:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4555:16:37"},"scope":9796,"src":"4493:79:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9704,"nodeType":"StructuredDocumentation","src":"4578:651:37","text":" @dev Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens.\n - MUST emit the Deposit event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   deposit execution, and are accounted for during deposit.\n - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not\n   approving enough underlying tokens to the Vault contract, etc).\n NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token."},"functionSelector":"6e553f65","id":9713,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"5243:7:37","nodeType":"FunctionDefinition","parameters":{"id":9709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9706,"mutability":"mutable","name":"assets","nameLocation":"5259:6:37","nodeType":"VariableDeclaration","scope":9713,"src":"5251:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9705,"name":"uint256","nodeType":"ElementaryTypeName","src":"5251:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9708,"mutability":"mutable","name":"receiver","nameLocation":"5275:8:37","nodeType":"VariableDeclaration","scope":9713,"src":"5267:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9707,"name":"address","nodeType":"ElementaryTypeName","src":"5267:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5250:34:37"},"returnParameters":{"id":9712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9711,"mutability":"mutable","name":"shares","nameLocation":"5311:6:37","nodeType":"VariableDeclaration","scope":9713,"src":"5303:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9710,"name":"uint256","nodeType":"ElementaryTypeName","src":"5303:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5302:16:37"},"scope":9796,"src":"5234:85:37","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9714,"nodeType":"StructuredDocumentation","src":"5325:341:37","text":" @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.\n - MUST return a limited value if receiver is subject to some mint limit.\n - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.\n - MUST NOT revert."},"functionSelector":"c63d75b6","id":9721,"implemented":false,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"5680:7:37","nodeType":"FunctionDefinition","parameters":{"id":9717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9716,"mutability":"mutable","name":"receiver","nameLocation":"5696:8:37","nodeType":"VariableDeclaration","scope":9721,"src":"5688:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9715,"name":"address","nodeType":"ElementaryTypeName","src":"5688:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5687:18:37"},"returnParameters":{"id":9720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9719,"mutability":"mutable","name":"maxShares","nameLocation":"5737:9:37","nodeType":"VariableDeclaration","scope":9721,"src":"5729:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9718,"name":"uint256","nodeType":"ElementaryTypeName","src":"5729:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5728:19:37"},"scope":9796,"src":"5671:77:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9722,"nodeType":"StructuredDocumentation","src":"5754:984:37","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given\n current on-chain conditions.\n - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call\n   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the\n   same transaction.\n - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint\n   would be accepted, regardless if the user has enough tokens approved, etc.\n - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by minting."},"functionSelector":"b3d7f6b9","id":9729,"implemented":false,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"6752:11:37","nodeType":"FunctionDefinition","parameters":{"id":9725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9724,"mutability":"mutable","name":"shares","nameLocation":"6772:6:37","nodeType":"VariableDeclaration","scope":9729,"src":"6764:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9723,"name":"uint256","nodeType":"ElementaryTypeName","src":"6764:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6763:16:37"},"returnParameters":{"id":9728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9727,"mutability":"mutable","name":"assets","nameLocation":"6811:6:37","nodeType":"VariableDeclaration","scope":9729,"src":"6803:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9726,"name":"uint256","nodeType":"ElementaryTypeName","src":"6803:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6802:16:37"},"scope":9796,"src":"6743:76:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9730,"nodeType":"StructuredDocumentation","src":"6825:642:37","text":" @dev Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens.\n - MUST emit the Deposit event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint\n   execution, and are accounted for during mint.\n - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not\n   approving enough underlying tokens to the Vault contract, etc).\n NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token."},"functionSelector":"94bf804d","id":9739,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"7481:4:37","nodeType":"FunctionDefinition","parameters":{"id":9735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9732,"mutability":"mutable","name":"shares","nameLocation":"7494:6:37","nodeType":"VariableDeclaration","scope":9739,"src":"7486:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9731,"name":"uint256","nodeType":"ElementaryTypeName","src":"7486:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9734,"mutability":"mutable","name":"receiver","nameLocation":"7510:8:37","nodeType":"VariableDeclaration","scope":9739,"src":"7502:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9733,"name":"address","nodeType":"ElementaryTypeName","src":"7502:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7485:34:37"},"returnParameters":{"id":9738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9737,"mutability":"mutable","name":"assets","nameLocation":"7546:6:37","nodeType":"VariableDeclaration","scope":9739,"src":"7538:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9736,"name":"uint256","nodeType":"ElementaryTypeName","src":"7538:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7537:16:37"},"scope":9796,"src":"7472:82:37","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9740,"nodeType":"StructuredDocumentation","src":"7560:293:37","text":" @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the\n Vault, through a withdraw call.\n - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n - MUST NOT revert."},"functionSelector":"ce96cb77","id":9747,"implemented":false,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"7867:11:37","nodeType":"FunctionDefinition","parameters":{"id":9743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9742,"mutability":"mutable","name":"owner","nameLocation":"7887:5:37","nodeType":"VariableDeclaration","scope":9747,"src":"7879:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9741,"name":"address","nodeType":"ElementaryTypeName","src":"7879:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7878:15:37"},"returnParameters":{"id":9746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9745,"mutability":"mutable","name":"maxAssets","nameLocation":"7925:9:37","nodeType":"VariableDeclaration","scope":9747,"src":"7917:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9744,"name":"uint256","nodeType":"ElementaryTypeName","src":"7917:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7916:19:37"},"scope":9796,"src":"7858:78:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9748,"nodeType":"StructuredDocumentation","src":"7942:1034:37","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,\n given current on-chain conditions.\n - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw\n   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if\n   called\n   in the same transaction.\n - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though\n   the withdrawal would be accepted, regardless if the user has enough shares, etc.\n - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by depositing."},"functionSelector":"0a28a477","id":9755,"implemented":false,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"8990:15:37","nodeType":"FunctionDefinition","parameters":{"id":9751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9750,"mutability":"mutable","name":"assets","nameLocation":"9014:6:37","nodeType":"VariableDeclaration","scope":9755,"src":"9006:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9749,"name":"uint256","nodeType":"ElementaryTypeName","src":"9006:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9005:16:37"},"returnParameters":{"id":9754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9753,"mutability":"mutable","name":"shares","nameLocation":"9053:6:37","nodeType":"VariableDeclaration","scope":9755,"src":"9045:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9752,"name":"uint256","nodeType":"ElementaryTypeName","src":"9045:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9044:16:37"},"scope":9796,"src":"8981:80:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9756,"nodeType":"StructuredDocumentation","src":"9067:670:37","text":" @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.\n - MUST emit the Withdraw event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   withdraw execution, and are accounted for during withdraw.\n - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner\n   not having enough shares, etc).\n Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n Those methods should be performed separately."},"functionSelector":"b460af94","id":9767,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"9751:8:37","nodeType":"FunctionDefinition","parameters":{"id":9763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9758,"mutability":"mutable","name":"assets","nameLocation":"9768:6:37","nodeType":"VariableDeclaration","scope":9767,"src":"9760:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9757,"name":"uint256","nodeType":"ElementaryTypeName","src":"9760:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9760,"mutability":"mutable","name":"receiver","nameLocation":"9784:8:37","nodeType":"VariableDeclaration","scope":9767,"src":"9776:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9759,"name":"address","nodeType":"ElementaryTypeName","src":"9776:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9762,"mutability":"mutable","name":"owner","nameLocation":"9802:5:37","nodeType":"VariableDeclaration","scope":9767,"src":"9794:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9761,"name":"address","nodeType":"ElementaryTypeName","src":"9794:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9759:49:37"},"returnParameters":{"id":9766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9765,"mutability":"mutable","name":"shares","nameLocation":"9835:6:37","nodeType":"VariableDeclaration","scope":9767,"src":"9827:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9764,"name":"uint256","nodeType":"ElementaryTypeName","src":"9827:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9826:16:37"},"scope":9796,"src":"9742:101:37","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9768,"nodeType":"StructuredDocumentation","src":"9849:381:37","text":" @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,\n through a redeem call.\n - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.\n - MUST NOT revert."},"functionSelector":"d905777e","id":9775,"implemented":false,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"10244:9:37","nodeType":"FunctionDefinition","parameters":{"id":9771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9770,"mutability":"mutable","name":"owner","nameLocation":"10262:5:37","nodeType":"VariableDeclaration","scope":9775,"src":"10254:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9769,"name":"address","nodeType":"ElementaryTypeName","src":"10254:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10253:15:37"},"returnParameters":{"id":9774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9773,"mutability":"mutable","name":"maxShares","nameLocation":"10300:9:37","nodeType":"VariableDeclaration","scope":9775,"src":"10292:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9772,"name":"uint256","nodeType":"ElementaryTypeName","src":"10292:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10291:19:37"},"scope":9796,"src":"10235:76:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9776,"nodeType":"StructuredDocumentation","src":"10317:1010:37","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block,\n given current on-chain conditions.\n - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call\n   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the\n   same transaction.\n - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the\n   redemption would be accepted, regardless if the user has enough shares, etc.\n - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by redeeming."},"functionSelector":"4cdad506","id":9783,"implemented":false,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"11341:13:37","nodeType":"FunctionDefinition","parameters":{"id":9779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9778,"mutability":"mutable","name":"shares","nameLocation":"11363:6:37","nodeType":"VariableDeclaration","scope":9783,"src":"11355:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9777,"name":"uint256","nodeType":"ElementaryTypeName","src":"11355:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11354:16:37"},"returnParameters":{"id":9782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9781,"mutability":"mutable","name":"assets","nameLocation":"11402:6:37","nodeType":"VariableDeclaration","scope":9783,"src":"11394:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9780,"name":"uint256","nodeType":"ElementaryTypeName","src":"11394:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11393:16:37"},"scope":9796,"src":"11332:78:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9784,"nodeType":"StructuredDocumentation","src":"11416:661:37","text":" @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.\n - MUST emit the Withdraw event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   redeem execution, and are accounted for during redeem.\n - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner\n   not having enough shares, etc).\n NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n Those methods should be performed separately."},"functionSelector":"ba087652","id":9795,"implemented":false,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"12091:6:37","nodeType":"FunctionDefinition","parameters":{"id":9791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9786,"mutability":"mutable","name":"shares","nameLocation":"12106:6:37","nodeType":"VariableDeclaration","scope":9795,"src":"12098:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9785,"name":"uint256","nodeType":"ElementaryTypeName","src":"12098:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9788,"mutability":"mutable","name":"receiver","nameLocation":"12122:8:37","nodeType":"VariableDeclaration","scope":9795,"src":"12114:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9787,"name":"address","nodeType":"ElementaryTypeName","src":"12114:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9790,"mutability":"mutable","name":"owner","nameLocation":"12140:5:37","nodeType":"VariableDeclaration","scope":9795,"src":"12132:13:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9789,"name":"address","nodeType":"ElementaryTypeName","src":"12132:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12097:49:37"},"returnParameters":{"id":9794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9793,"mutability":"mutable","name":"assets","nameLocation":"12173:6:37","nodeType":"VariableDeclaration","scope":9795,"src":"12165:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9792,"name":"uint256","nodeType":"ElementaryTypeName","src":"12165:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12164:16:37"},"scope":9796,"src":"12082:99:37","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":9797,"src":"399:11784:37","usedErrors":[],"usedEvents":[9647,9659,10999,11008]}],"src":"107:12077:37"},"id":37},"@openzeppelin/contracts/interfaces/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","exportedSymbols":{"IERC721":[12302]},"id":9801,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9798,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:38"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../token/ERC721/IERC721.sol","id":9800,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9801,"sourceUnit":12303,"src":"132:52:38","symbolAliases":[{"foreign":{"id":9799,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12302,"src":"140:7:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:79:38"},"id":38},"@openzeppelin/contracts/interfaces/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[12320]},"id":9805,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9802,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:39"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../token/ERC721/IERC721Receiver.sol","id":9804,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9805,"sourceUnit":12321,"src":"140:68:39","symbolAliases":[{"foreign":{"id":9803,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12320,"src":"148:15:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"114:95:39"},"id":39},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","exportedSymbols":{"IERC1822Proxiable":[9814]},"id":9815,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9806,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:40"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1822Proxiable","contractDependencies":[],"contractKind":"interface","documentation":{"id":9807,"nodeType":"StructuredDocumentation","src":"139:204:40","text":" @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n proxy whose upgrades are fully controlled by the current implementation."},"fullyImplemented":false,"id":9814,"linearizedBaseContracts":[9814],"name":"IERC1822Proxiable","nameLocation":"354:17:40","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9808,"nodeType":"StructuredDocumentation","src":"378:438:40","text":" @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n address.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy."},"functionSelector":"52d1902d","id":9813,"implemented":false,"kind":"function","modifiers":[],"name":"proxiableUUID","nameLocation":"830:13:40","nodeType":"FunctionDefinition","parameters":{"id":9809,"nodeType":"ParameterList","parameters":[],"src":"843:2:40"},"returnParameters":{"id":9812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9811,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9813,"src":"869:7:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9810,"name":"bytes32","nodeType":"ElementaryTypeName","src":"869:7:40","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"868:9:40"},"scope":9814,"src":"821:57:40","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9815,"src":"344:536:40","usedErrors":[],"usedEvents":[]}],"src":"113:768:40"},"id":40},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[9951],"IERC20Errors":[9856],"IERC721Errors":[9904]},"id":9952,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9816,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:41"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":9817,"nodeType":"StructuredDocumentation","src":"138:141:41","text":" @dev Standard ERC-20 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens."},"fullyImplemented":true,"id":9856,"linearizedBaseContracts":[9856],"name":"IERC20Errors","nameLocation":"290:12:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9818,"nodeType":"StructuredDocumentation","src":"309:309:41","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"e450d38c","id":9826,"name":"ERC20InsufficientBalance","nameLocation":"629:24:41","nodeType":"ErrorDefinition","parameters":{"id":9825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9820,"mutability":"mutable","name":"sender","nameLocation":"662:6:41","nodeType":"VariableDeclaration","scope":9826,"src":"654:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9819,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9822,"mutability":"mutable","name":"balance","nameLocation":"678:7:41","nodeType":"VariableDeclaration","scope":9826,"src":"670:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9821,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9824,"mutability":"mutable","name":"needed","nameLocation":"695:6:41","nodeType":"VariableDeclaration","scope":9826,"src":"687:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9823,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:41"},"src":"623:80:41"},{"documentation":{"id":9827,"nodeType":"StructuredDocumentation","src":"709:152:41","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":9831,"name":"ERC20InvalidSender","nameLocation":"872:18:41","nodeType":"ErrorDefinition","parameters":{"id":9830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9829,"mutability":"mutable","name":"sender","nameLocation":"899:6:41","nodeType":"VariableDeclaration","scope":9831,"src":"891:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9828,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:41"},"src":"866:41:41"},{"documentation":{"id":9832,"nodeType":"StructuredDocumentation","src":"913:159:41","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"ec442f05","id":9836,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:41","nodeType":"ErrorDefinition","parameters":{"id":9835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9834,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:41","nodeType":"VariableDeclaration","scope":9836,"src":"1104:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9833,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:41"},"src":"1077:45:41"},{"documentation":{"id":9837,"nodeType":"StructuredDocumentation","src":"1128:345:41","text":" @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n @param spender Address that may be allowed to operate on tokens without being their owner.\n @param allowance Amount of tokens a `spender` is allowed to operate with.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"fb8f41b2","id":9845,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:41","nodeType":"ErrorDefinition","parameters":{"id":9844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9839,"mutability":"mutable","name":"spender","nameLocation":"1519:7:41","nodeType":"VariableDeclaration","scope":9845,"src":"1511:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9838,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9841,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:41","nodeType":"VariableDeclaration","scope":9845,"src":"1528:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9840,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9843,"mutability":"mutable","name":"needed","nameLocation":"1555:6:41","nodeType":"VariableDeclaration","scope":9845,"src":"1547:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9842,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:41"},"src":"1478:85:41"},{"documentation":{"id":9846,"nodeType":"StructuredDocumentation","src":"1569:174:41","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"e602df05","id":9850,"name":"ERC20InvalidApprover","nameLocation":"1754:20:41","nodeType":"ErrorDefinition","parameters":{"id":9849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9848,"mutability":"mutable","name":"approver","nameLocation":"1783:8:41","nodeType":"VariableDeclaration","scope":9850,"src":"1775:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9847,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:41"},"src":"1748:45:41"},{"documentation":{"id":9851,"nodeType":"StructuredDocumentation","src":"1799:195:41","text":" @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n @param spender Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"94280d62","id":9855,"name":"ERC20InvalidSpender","nameLocation":"2005:19:41","nodeType":"ErrorDefinition","parameters":{"id":9854,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9853,"mutability":"mutable","name":"spender","nameLocation":"2033:7:41","nodeType":"VariableDeclaration","scope":9855,"src":"2025:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9852,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:41"},"src":"1999:43:41"}],"scope":9952,"src":"280:1764:41","usedErrors":[9826,9831,9836,9845,9850,9855],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":9857,"nodeType":"StructuredDocumentation","src":"2046:143:41","text":" @dev Standard ERC-721 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens."},"fullyImplemented":true,"id":9904,"linearizedBaseContracts":[9904],"name":"IERC721Errors","nameLocation":"2200:13:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9858,"nodeType":"StructuredDocumentation","src":"2220:219:41","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":9862,"name":"ERC721InvalidOwner","nameLocation":"2450:18:41","nodeType":"ErrorDefinition","parameters":{"id":9861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9860,"mutability":"mutable","name":"owner","nameLocation":"2477:5:41","nodeType":"VariableDeclaration","scope":9862,"src":"2469:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9859,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:41"},"src":"2444:40:41"},{"documentation":{"id":9863,"nodeType":"StructuredDocumentation","src":"2490:132:41","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":9867,"name":"ERC721NonexistentToken","nameLocation":"2633:22:41","nodeType":"ErrorDefinition","parameters":{"id":9866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9865,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:41","nodeType":"VariableDeclaration","scope":9867,"src":"2656:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9864,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:41"},"src":"2627:46:41"},{"documentation":{"id":9868,"nodeType":"StructuredDocumentation","src":"2679:289:41","text":" @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param tokenId Identifier number of a token.\n @param owner Address of the current owner of a token."},"errorSelector":"64283d7b","id":9876,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:41","nodeType":"ErrorDefinition","parameters":{"id":9875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9870,"mutability":"mutable","name":"sender","nameLocation":"3008:6:41","nodeType":"VariableDeclaration","scope":9876,"src":"3000:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9869,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9872,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:41","nodeType":"VariableDeclaration","scope":9876,"src":"3016:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9871,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9874,"mutability":"mutable","name":"owner","nameLocation":"3041:5:41","nodeType":"VariableDeclaration","scope":9876,"src":"3033:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9873,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:41"},"src":"2973:75:41"},{"documentation":{"id":9877,"nodeType":"StructuredDocumentation","src":"3054:152:41","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":9881,"name":"ERC721InvalidSender","nameLocation":"3217:19:41","nodeType":"ErrorDefinition","parameters":{"id":9880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9879,"mutability":"mutable","name":"sender","nameLocation":"3245:6:41","nodeType":"VariableDeclaration","scope":9881,"src":"3237:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9878,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:41"},"src":"3211:42:41"},{"documentation":{"id":9882,"nodeType":"StructuredDocumentation","src":"3259:159:41","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"64a0ae92","id":9886,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:41","nodeType":"ErrorDefinition","parameters":{"id":9885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9884,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:41","nodeType":"VariableDeclaration","scope":9886,"src":"3451:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9883,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:41"},"src":"3423:46:41"},{"documentation":{"id":9887,"nodeType":"StructuredDocumentation","src":"3475:247:41","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param tokenId Identifier number of a token."},"errorSelector":"177e802f","id":9893,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:41","nodeType":"ErrorDefinition","parameters":{"id":9892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9889,"mutability":"mutable","name":"operator","nameLocation":"3768:8:41","nodeType":"VariableDeclaration","scope":9893,"src":"3760:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9888,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9891,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:41","nodeType":"VariableDeclaration","scope":9893,"src":"3778:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9890,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:41"},"src":"3727:68:41"},{"documentation":{"id":9894,"nodeType":"StructuredDocumentation","src":"3801:174:41","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"a9fbf51f","id":9898,"name":"ERC721InvalidApprover","nameLocation":"3986:21:41","nodeType":"ErrorDefinition","parameters":{"id":9897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9896,"mutability":"mutable","name":"approver","nameLocation":"4016:8:41","nodeType":"VariableDeclaration","scope":9898,"src":"4008:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9895,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:41"},"src":"3980:46:41"},{"documentation":{"id":9899,"nodeType":"StructuredDocumentation","src":"4032:197:41","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"5b08ba18","id":9903,"name":"ERC721InvalidOperator","nameLocation":"4240:21:41","nodeType":"ErrorDefinition","parameters":{"id":9902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9901,"mutability":"mutable","name":"operator","nameLocation":"4270:8:41","nodeType":"VariableDeclaration","scope":9903,"src":"4262:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9900,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:41"},"src":"4234:46:41"}],"scope":9952,"src":"2190:2092:41","usedErrors":[9862,9867,9876,9881,9886,9893,9898,9903],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":9905,"nodeType":"StructuredDocumentation","src":"4284:145:41","text":" @dev Standard ERC-1155 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens."},"fullyImplemented":true,"id":9951,"linearizedBaseContracts":[9951],"name":"IERC1155Errors","nameLocation":"4440:14:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9906,"nodeType":"StructuredDocumentation","src":"4461:361:41","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer.\n @param tokenId Identifier number of a token."},"errorSelector":"03dee4c5","id":9916,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:41","nodeType":"ErrorDefinition","parameters":{"id":9915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9908,"mutability":"mutable","name":"sender","nameLocation":"4868:6:41","nodeType":"VariableDeclaration","scope":9916,"src":"4860:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9907,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9910,"mutability":"mutable","name":"balance","nameLocation":"4884:7:41","nodeType":"VariableDeclaration","scope":9916,"src":"4876:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9909,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9912,"mutability":"mutable","name":"needed","nameLocation":"4901:6:41","nodeType":"VariableDeclaration","scope":9916,"src":"4893:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9911,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9914,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:41","nodeType":"VariableDeclaration","scope":9916,"src":"4909:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9913,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:41"},"src":"4827:99:41"},{"documentation":{"id":9917,"nodeType":"StructuredDocumentation","src":"4932:152:41","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":9921,"name":"ERC1155InvalidSender","nameLocation":"5095:20:41","nodeType":"ErrorDefinition","parameters":{"id":9920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9919,"mutability":"mutable","name":"sender","nameLocation":"5124:6:41","nodeType":"VariableDeclaration","scope":9921,"src":"5116:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9918,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:41"},"src":"5089:43:41"},{"documentation":{"id":9922,"nodeType":"StructuredDocumentation","src":"5138:159:41","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"57f447ce","id":9926,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:41","nodeType":"ErrorDefinition","parameters":{"id":9925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9924,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:41","nodeType":"VariableDeclaration","scope":9926,"src":"5331:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9923,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:41"},"src":"5302:47:41"},{"documentation":{"id":9927,"nodeType":"StructuredDocumentation","src":"5355:256:41","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param owner Address of the current owner of a token."},"errorSelector":"e237d922","id":9933,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:41","nodeType":"ErrorDefinition","parameters":{"id":9932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9929,"mutability":"mutable","name":"operator","nameLocation":"5659:8:41","nodeType":"VariableDeclaration","scope":9933,"src":"5651:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9928,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9931,"mutability":"mutable","name":"owner","nameLocation":"5677:5:41","nodeType":"VariableDeclaration","scope":9933,"src":"5669:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9930,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:41"},"src":"5616:68:41"},{"documentation":{"id":9934,"nodeType":"StructuredDocumentation","src":"5690:174:41","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"3e31884e","id":9938,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:41","nodeType":"ErrorDefinition","parameters":{"id":9937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9936,"mutability":"mutable","name":"approver","nameLocation":"5906:8:41","nodeType":"VariableDeclaration","scope":9938,"src":"5898:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9935,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:41"},"src":"5869:47:41"},{"documentation":{"id":9939,"nodeType":"StructuredDocumentation","src":"5922:197:41","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"ced3e100","id":9943,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:41","nodeType":"ErrorDefinition","parameters":{"id":9942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9941,"mutability":"mutable","name":"operator","nameLocation":"6161:8:41","nodeType":"VariableDeclaration","scope":9943,"src":"6153:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9940,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:41"},"src":"6124:47:41"},{"documentation":{"id":9944,"nodeType":"StructuredDocumentation","src":"6177:280:41","text":" @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n Used in batch transfers.\n @param idsLength Length of the array of token identifiers\n @param valuesLength Length of the array of token amounts"},"errorSelector":"5b059991","id":9950,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:41","nodeType":"ErrorDefinition","parameters":{"id":9949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9946,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:41","nodeType":"VariableDeclaration","scope":9950,"src":"6494:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9945,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9948,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:41","nodeType":"VariableDeclaration","scope":9950,"src":"6513:20:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9947,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:41"},"src":"6462:73:41"}],"scope":9952,"src":"4430:2107:41","usedErrors":[9916,9921,9926,9933,9938,9943,9950],"usedEvents":[]}],"src":"112:6426:41"},"id":41},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","exportedSymbols":{"Context":[12610],"ERC2771Context":[10094]},"id":10095,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9953,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:42"},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":9955,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10095,"sourceUnit":12611,"src":"135:45:42","symbolAliases":[{"foreign":{"id":9954,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"143:7:42","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9957,"name":"Context","nameLocations":["1005:7:42"],"nodeType":"IdentifierPath","referencedDeclaration":12610,"src":"1005:7:42"},"id":9958,"nodeType":"InheritanceSpecifier","src":"1005:7:42"}],"canonicalName":"ERC2771Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":9956,"nodeType":"StructuredDocumentation","src":"182:786:42","text":" @dev Context variant with ERC-2771 support.\n WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll\n be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771\n specification adding the address size in bytes (20) to the calldata size. An example of an unexpected\n behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive`\n function only accessible if `msg.data.length == 0`.\n WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption.\n Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender}\n recovery."},"fullyImplemented":true,"id":10094,"linearizedBaseContracts":[10094,12610],"name":"ERC2771Context","nameLocation":"987:14:42","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":9959,"nodeType":"StructuredDocumentation","src":"1019:61:42","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":9961,"mutability":"immutable","name":"_trustedForwarder","nameLocation":"1111:17:42","nodeType":"VariableDeclaration","scope":10094,"src":"1085:43:42","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9960,"name":"address","nodeType":"ElementaryTypeName","src":"1085:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"body":{"id":9971,"nodeType":"Block","src":"1490:54:42","statements":[{"expression":{"id":9969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9967,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9961,"src":"1500:17:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9968,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9964,"src":"1520:17:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1500:37:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9970,"nodeType":"ExpressionStatement","src":"1500:37:42"}]},"documentation":{"id":9962,"nodeType":"StructuredDocumentation","src":"1398:48:42","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":9972,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9964,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"1471:17:42","nodeType":"VariableDeclaration","scope":9972,"src":"1463:25:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9963,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:27:42"},"returnParameters":{"id":9966,"nodeType":"ParameterList","parameters":[],"src":"1490:0:42"},"scope":10094,"src":"1451:93:42","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9980,"nodeType":"Block","src":"1690:41:42","statements":[{"expression":{"id":9978,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9961,"src":"1707:17:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9977,"id":9979,"nodeType":"Return","src":"1700:24:42"}]},"documentation":{"id":9973,"nodeType":"StructuredDocumentation","src":"1550:69:42","text":" @dev Returns the address of the trusted forwarder."},"functionSelector":"7da0a877","id":9981,"implemented":true,"kind":"function","modifiers":[],"name":"trustedForwarder","nameLocation":"1633:16:42","nodeType":"FunctionDefinition","parameters":{"id":9974,"nodeType":"ParameterList","parameters":[],"src":"1649:2:42"},"returnParameters":{"id":9977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9976,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9981,"src":"1681:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9975,"name":"address","nodeType":"ElementaryTypeName","src":"1681:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1680:9:42"},"scope":10094,"src":"1624:107:42","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":9994,"nodeType":"Block","src":"1914:55:42","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9989,"name":"forwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9984,"src":"1931:9:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":9990,"name":"trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9981,"src":"1944:16:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1944:18:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1931:31:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":9988,"id":9993,"nodeType":"Return","src":"1924:38:42"}]},"documentation":{"id":9982,"nodeType":"StructuredDocumentation","src":"1737:90:42","text":" @dev Indicates whether any particular address is the trusted forwarder."},"functionSelector":"572b6c05","id":9995,"implemented":true,"kind":"function","modifiers":[],"name":"isTrustedForwarder","nameLocation":"1841:18:42","nodeType":"FunctionDefinition","parameters":{"id":9985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9984,"mutability":"mutable","name":"forwarder","nameLocation":"1868:9:42","nodeType":"VariableDeclaration","scope":9995,"src":"1860:17:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9983,"name":"address","nodeType":"ElementaryTypeName","src":"1860:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1859:19:42"},"returnParameters":{"id":9988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9995,"src":"1908:4:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9986,"name":"bool","nodeType":"ElementaryTypeName","src":"1908:4:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1907:6:42"},"scope":10094,"src":"1832:137:42","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[12592],"body":{"id":10041,"nodeType":"Block","src":"2277:358:42","statements":[{"assignments":[10003],"declarations":[{"constant":false,"id":10003,"mutability":"mutable","name":"calldataLength","nameLocation":"2295:14:42","nodeType":"VariableDeclaration","scope":10041,"src":"2287:22:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10002,"name":"uint256","nodeType":"ElementaryTypeName","src":"2287:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10007,"initialValue":{"expression":{"expression":{"id":10004,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2312:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2316:4:42","memberName":"data","nodeType":"MemberAccess","src":"2312:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":10006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2321:6:42","memberName":"length","nodeType":"MemberAccess","src":"2312:15:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2287:40:42"},{"assignments":[10009],"declarations":[{"constant":false,"id":10009,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"2345:19:42","nodeType":"VariableDeclaration","scope":10041,"src":"2337:27:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10008,"name":"uint256","nodeType":"ElementaryTypeName","src":"2337:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10012,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":10010,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[10093],"referencedDeclaration":10093,"src":"2367:20:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":10011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2367:22:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2337:52:42"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":10014,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2422:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2426:6:42","memberName":"sender","nodeType":"MemberAccess","src":"2422:10:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10013,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9995,"src":"2403:18:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":10016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2403:30:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10017,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10003,"src":"2437:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":10018,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10009,"src":"2455:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2437:37:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2403:71:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10039,"nodeType":"Block","src":"2579:50:42","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10035,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2600:5:42","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771Context_$10094_$","typeString":"type(contract super ERC2771Context)"}},"id":10036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2606:10:42","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":12592,"src":"2600:16:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2600:18:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10001,"id":10038,"nodeType":"Return","src":"2593:25:42"}]},"id":10040,"nodeType":"IfStatement","src":"2399:230:42","trueBody":{"id":10034,"nodeType":"Block","src":"2476:97:42","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":10025,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2513:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2517:4:42","memberName":"data","nodeType":"MemberAccess","src":"2513:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":10030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2513:47:42","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10027,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10003,"src":"2522:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10028,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10009,"src":"2539:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2522:36:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":10024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2505:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":10023,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2505:7:42","typeDescriptions":{}}},"id":10031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2505:56:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":10022,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2497:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10021,"name":"address","nodeType":"ElementaryTypeName","src":"2497:7:42","typeDescriptions":{}}},"id":10032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2497:65:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10001,"id":10033,"nodeType":"Return","src":"2490:72:42"}]}}]},"documentation":{"id":9996,"nodeType":"StructuredDocumentation","src":"1975:226:42","text":" @dev Override for `msg.sender`. Defaults to the original `msg.sender` whenever\n a call is not performed by the trusted forwarder or the calldata length is less than\n 20 bytes (an address length)."},"id":10042,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"2215:10:42","nodeType":"FunctionDefinition","overrides":{"id":9998,"nodeType":"OverrideSpecifier","overrides":[],"src":"2250:8:42"},"parameters":{"id":9997,"nodeType":"ParameterList","parameters":[],"src":"2225:2:42"},"returnParameters":{"id":10001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10000,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10042,"src":"2268:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9999,"name":"address","nodeType":"ElementaryTypeName","src":"2268:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2267:9:42"},"scope":10094,"src":"2206:429:42","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[12601],"body":{"id":10082,"nodeType":"Block","src":"2944:338:42","statements":[{"assignments":[10050],"declarations":[{"constant":false,"id":10050,"mutability":"mutable","name":"calldataLength","nameLocation":"2962:14:42","nodeType":"VariableDeclaration","scope":10082,"src":"2954:22:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10049,"name":"uint256","nodeType":"ElementaryTypeName","src":"2954:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10054,"initialValue":{"expression":{"expression":{"id":10051,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2979:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2983:4:42","memberName":"data","nodeType":"MemberAccess","src":"2979:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":10053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2988:6:42","memberName":"length","nodeType":"MemberAccess","src":"2979:15:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2954:40:42"},{"assignments":[10056],"declarations":[{"constant":false,"id":10056,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"3012:19:42","nodeType":"VariableDeclaration","scope":10082,"src":"3004:27:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10055,"name":"uint256","nodeType":"ElementaryTypeName","src":"3004:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10059,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":10057,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[10093],"referencedDeclaration":10093,"src":"3034:20:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":10058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3034:22:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3004:52:42"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":10061,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3089:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3093:6:42","memberName":"sender","nodeType":"MemberAccess","src":"3089:10:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10060,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9995,"src":"3070:18:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":10063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3070:30:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10064,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10050,"src":"3104:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":10065,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10056,"src":"3122:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3104:37:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3070:71:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10080,"nodeType":"Block","src":"3228:48:42","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10076,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3249:5:42","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771Context_$10094_$","typeString":"type(contract super ERC2771Context)"}},"id":10077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3255:8:42","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":12601,"src":"3249:14:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":10078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3249:16:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":10048,"id":10079,"nodeType":"Return","src":"3242:23:42"}]},"id":10081,"nodeType":"IfStatement","src":"3066:210:42","trueBody":{"id":10075,"nodeType":"Block","src":"3143:79:42","statements":[{"expression":{"baseExpression":{"expression":{"id":10068,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3164:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3168:4:42","memberName":"data","nodeType":"MemberAccess","src":"3164:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10070,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10050,"src":"3174:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10071,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10056,"src":"3191:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3174:36:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3164:47:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"functionReturnParameters":10048,"id":10074,"nodeType":"Return","src":"3157:54:42"}]}}]},"documentation":{"id":10043,"nodeType":"StructuredDocumentation","src":"2641:222:42","text":" @dev Override for `msg.data`. Defaults to the original `msg.data` whenever\n a call is not performed by the trusted forwarder or the calldata length is less than\n 20 bytes (an address length)."},"id":10083,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"2877:8:42","nodeType":"FunctionDefinition","overrides":{"id":10045,"nodeType":"OverrideSpecifier","overrides":[],"src":"2910:8:42"},"parameters":{"id":10044,"nodeType":"ParameterList","parameters":[],"src":"2885:2:42"},"returnParameters":{"id":10048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10047,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10083,"src":"2928:14:42","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10046,"name":"bytes","nodeType":"ElementaryTypeName","src":"2928:5:42","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2927:16:42"},"scope":10094,"src":"2868:414:42","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[12609],"body":{"id":10092,"nodeType":"Block","src":"3466:26:42","statements":[{"expression":{"hexValue":"3230","id":10090,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3483:2:42","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"functionReturnParameters":10089,"id":10091,"nodeType":"Return","src":"3476:9:42"}]},"documentation":{"id":10084,"nodeType":"StructuredDocumentation","src":"3288:92:42","text":" @dev ERC-2771 specifies the context as being a single address (20 bytes)."},"id":10093,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"3394:20:42","nodeType":"FunctionDefinition","overrides":{"id":10086,"nodeType":"OverrideSpecifier","overrides":[],"src":"3439:8:42"},"parameters":{"id":10085,"nodeType":"ParameterList","parameters":[],"src":"3414:2:42"},"returnParameters":{"id":10089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10093,"src":"3457:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10087,"name":"uint256","nodeType":"ElementaryTypeName","src":"3457:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3456:9:42"},"scope":10094,"src":"3385:107:42","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":10095,"src":"969:2525:42","usedErrors":[],"usedEvents":[]}],"src":"109:3386:42"},"id":42},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","exportedSymbols":{"ERC1967Proxy":[10132],"ERC1967Utils":[10426],"Proxy":[10462]},"id":10133,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10096,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"114:24:43"},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"../Proxy.sol","id":10098,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10133,"sourceUnit":10463,"src":"140:35:43","symbolAliases":[{"foreign":{"id":10097,"name":"Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10462,"src":"148:5:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"./ERC1967Utils.sol","id":10100,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10133,"sourceUnit":10427,"src":"176:48:43","symbolAliases":[{"foreign":{"id":10099,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"184:12:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":10102,"name":"Proxy","nameLocations":["625:5:43"],"nodeType":"IdentifierPath","referencedDeclaration":10462,"src":"625:5:43"},"id":10103,"nodeType":"InheritanceSpecifier","src":"625:5:43"}],"canonicalName":"ERC1967Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":10101,"nodeType":"StructuredDocumentation","src":"226:373:43","text":" @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n implementation address that can be changed. This address is stored in storage in the location specified by\n https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n implementation behind the proxy."},"fullyImplemented":true,"id":10132,"linearizedBaseContracts":[10132,10462],"name":"ERC1967Proxy","nameLocation":"609:12:43","nodeType":"ContractDefinition","nodes":[{"body":{"id":10118,"nodeType":"Block","src":"1145:69:43","statements":[{"expression":{"arguments":[{"id":10114,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10106,"src":"1185:14:43","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10115,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10108,"src":"1201:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":10111,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"1155:12:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":10113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1168:16:43","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":10241,"src":"1155:29:43","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":10116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1155:52:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10117,"nodeType":"ExpressionStatement","src":"1155:52:43"}]},"documentation":{"id":10104,"nodeType":"StructuredDocumentation","src":"637:439:43","text":" @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n Requirements:\n - If `data` is empty, `msg.value` must be zero."},"id":10119,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":10109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10106,"mutability":"mutable","name":"implementation","nameLocation":"1101:14:43","nodeType":"VariableDeclaration","scope":10119,"src":"1093:22:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10105,"name":"address","nodeType":"ElementaryTypeName","src":"1093:7:43","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10108,"mutability":"mutable","name":"_data","nameLocation":"1130:5:43","nodeType":"VariableDeclaration","scope":10119,"src":"1117:18:43","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10107,"name":"bytes","nodeType":"ElementaryTypeName","src":"1117:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1092:44:43"},"returnParameters":{"id":10110,"nodeType":"ParameterList","parameters":[],"src":"1145:0:43"},"scope":10132,"src":"1081:133:43","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[10443],"body":{"id":10130,"nodeType":"Block","src":"1659:56:43","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10126,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10426,"src":"1676:12:43","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$10426_$","typeString":"type(library ERC1967Utils)"}},"id":10127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1689:17:43","memberName":"getImplementation","nodeType":"MemberAccess","referencedDeclaration":10178,"src":"1676:30:43","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1676:32:43","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10125,"id":10129,"nodeType":"Return","src":"1669:39:43"}]},"documentation":{"id":10120,"nodeType":"StructuredDocumentation","src":"1220:358:43","text":" @dev Returns the current implementation address.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"},"id":10131,"implemented":true,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"1592:15:43","nodeType":"FunctionDefinition","overrides":{"id":10122,"nodeType":"OverrideSpecifier","overrides":[],"src":"1632:8:43"},"parameters":{"id":10121,"nodeType":"ParameterList","parameters":[],"src":"1607:2:43"},"returnParameters":{"id":10125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10124,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10131,"src":"1650:7:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10123,"name":"address","nodeType":"ElementaryTypeName","src":"1650:7:43","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1649:9:43"},"scope":10132,"src":"1583:132:43","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":10133,"src":"600:1117:43","usedErrors":[10152,10165,12330,12623],"usedEvents":[9605]}],"src":"114:1604:43"},"id":43},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","exportedSymbols":{"Address":[12580],"ERC1967Utils":[10426],"IBeacon":[10472],"IERC1967":[9618],"StorageSlot":[16550]},"id":10427,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10134,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"114:24:44"},{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","file":"../beacon/IBeacon.sol","id":10136,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10427,"sourceUnit":10473,"src":"140:46:44","symbolAliases":[{"foreign":{"id":10135,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10472,"src":"148:7:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","file":"../../interfaces/IERC1967.sol","id":10138,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10427,"sourceUnit":9619,"src":"187:55:44","symbolAliases":[{"foreign":{"id":10137,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9618,"src":"195:8:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":10140,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10427,"sourceUnit":12581,"src":"243:48:44","symbolAliases":[{"foreign":{"id":10139,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"251:7:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"../../utils/StorageSlot.sol","id":10142,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10427,"sourceUnit":16551,"src":"292:56:44","symbolAliases":[{"foreign":{"id":10141,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"300:11:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC1967Utils","contractDependencies":[],"contractKind":"library","documentation":{"id":10143,"nodeType":"StructuredDocumentation","src":"350:145:44","text":" @dev This library provides getters and event emitting update functions for\n https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots."},"fullyImplemented":true,"id":10426,"linearizedBaseContracts":[10426],"name":"ERC1967Utils","nameLocation":"504:12:44","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":10144,"nodeType":"StructuredDocumentation","src":"523:170:44","text":" @dev Storage slot with the address of the current implementation.\n This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1."},"id":10147,"mutability":"constant","name":"IMPLEMENTATION_SLOT","nameLocation":"789:19:44","nodeType":"VariableDeclaration","scope":10426,"src":"763:114:44","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10145,"name":"bytes32","nodeType":"ElementaryTypeName","src":"763:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307833363038393461313362613161333231303636376338323834393264623938646361336532303736636333373335613932306133636135303564333832626263","id":10146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"811:66:44","typeDescriptions":{"typeIdentifier":"t_rational_24440054405305269366569402256811496959409073762505157381672968839269610695612_by_1","typeString":"int_const 2444...(69 digits omitted)...5612"},"value":"0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc"},"visibility":"internal"},{"documentation":{"id":10148,"nodeType":"StructuredDocumentation","src":"884:69:44","text":" @dev The `implementation` of the proxy is invalid."},"errorSelector":"4c9c8ce3","id":10152,"name":"ERC1967InvalidImplementation","nameLocation":"964:28:44","nodeType":"ErrorDefinition","parameters":{"id":10151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10150,"mutability":"mutable","name":"implementation","nameLocation":"1001:14:44","nodeType":"VariableDeclaration","scope":10152,"src":"993:22:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10149,"name":"address","nodeType":"ElementaryTypeName","src":"993:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"992:24:44"},"src":"958:59:44"},{"documentation":{"id":10153,"nodeType":"StructuredDocumentation","src":"1023:60:44","text":" @dev The `admin` of the proxy is invalid."},"errorSelector":"62e77ba2","id":10157,"name":"ERC1967InvalidAdmin","nameLocation":"1094:19:44","nodeType":"ErrorDefinition","parameters":{"id":10156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10155,"mutability":"mutable","name":"admin","nameLocation":"1122:5:44","nodeType":"VariableDeclaration","scope":10157,"src":"1114:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10154,"name":"address","nodeType":"ElementaryTypeName","src":"1114:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1113:15:44"},"src":"1088:41:44"},{"documentation":{"id":10158,"nodeType":"StructuredDocumentation","src":"1135:61:44","text":" @dev The `beacon` of the proxy is invalid."},"errorSelector":"64ced0ec","id":10162,"name":"ERC1967InvalidBeacon","nameLocation":"1207:20:44","nodeType":"ErrorDefinition","parameters":{"id":10161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10160,"mutability":"mutable","name":"beacon","nameLocation":"1236:6:44","nodeType":"VariableDeclaration","scope":10162,"src":"1228:14:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10159,"name":"address","nodeType":"ElementaryTypeName","src":"1228:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1227:16:44"},"src":"1201:43:44"},{"documentation":{"id":10163,"nodeType":"StructuredDocumentation","src":"1250:82:44","text":" @dev An upgrade function sees `msg.value > 0` that may be lost."},"errorSelector":"b398979f","id":10165,"name":"ERC1967NonPayable","nameLocation":"1343:17:44","nodeType":"ErrorDefinition","parameters":{"id":10164,"nodeType":"ParameterList","parameters":[],"src":"1360:2:44"},"src":"1337:26:44"},{"body":{"id":10177,"nodeType":"Block","src":"1502:77:44","statements":[{"expression":{"expression":{"arguments":[{"id":10173,"name":"IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10147,"src":"1546:19:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10171,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"1519:11:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$16550_$","typeString":"type(library StorageSlot)"}},"id":10172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1531:14:44","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":16461,"src":"1519:26:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$16432_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":10174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1519:47:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":10175,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1567:5:44","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":16431,"src":"1519:53:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10170,"id":10176,"nodeType":"Return","src":"1512:60:44"}]},"documentation":{"id":10166,"nodeType":"StructuredDocumentation","src":"1369:67:44","text":" @dev Returns the current implementation address."},"id":10178,"implemented":true,"kind":"function","modifiers":[],"name":"getImplementation","nameLocation":"1450:17:44","nodeType":"FunctionDefinition","parameters":{"id":10167,"nodeType":"ParameterList","parameters":[],"src":"1467:2:44"},"returnParameters":{"id":10170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10169,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10178,"src":"1493:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10168,"name":"address","nodeType":"ElementaryTypeName","src":"1493:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1492:9:44"},"scope":10426,"src":"1441:138:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10204,"nodeType":"Block","src":"1734:218:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":10184,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10181,"src":"1748:17:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":10185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1766:4:44","memberName":"code","nodeType":"MemberAccess","src":"1748:22:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1771:6:44","memberName":"length","nodeType":"MemberAccess","src":"1748:29:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10187,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1781:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1748:34:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10194,"nodeType":"IfStatement","src":"1744:119:44","trueBody":{"id":10193,"nodeType":"Block","src":"1784:79:44","statements":[{"errorCall":{"arguments":[{"id":10190,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10181,"src":"1834:17:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10189,"name":"ERC1967InvalidImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10152,"src":"1805:28:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1805:47:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10192,"nodeType":"RevertStatement","src":"1798:54:44"}]}},{"expression":{"id":10202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":10198,"name":"IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10147,"src":"1899:19:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10195,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"1872:11:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$16550_$","typeString":"type(library StorageSlot)"}},"id":10197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1884:14:44","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":16461,"src":"1872:26:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$16432_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":10199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1872:47:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":10200,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1920:5:44","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":16431,"src":"1872:53:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10201,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10181,"src":"1928:17:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1872:73:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":10203,"nodeType":"ExpressionStatement","src":"1872:73:44"}]},"documentation":{"id":10179,"nodeType":"StructuredDocumentation","src":"1585:81:44","text":" @dev Stores a new address in the ERC-1967 implementation slot."},"id":10205,"implemented":true,"kind":"function","modifiers":[],"name":"_setImplementation","nameLocation":"1680:18:44","nodeType":"FunctionDefinition","parameters":{"id":10182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10181,"mutability":"mutable","name":"newImplementation","nameLocation":"1707:17:44","nodeType":"VariableDeclaration","scope":10205,"src":"1699:25:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10180,"name":"address","nodeType":"ElementaryTypeName","src":"1699:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1698:27:44"},"returnParameters":{"id":10183,"nodeType":"ParameterList","parameters":[],"src":"1734:0:44"},"scope":10426,"src":"1671:281:44","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":10240,"nodeType":"Block","src":"2345:263:44","statements":[{"expression":{"arguments":[{"id":10214,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10208,"src":"2374:17:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10213,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10205,"src":"2355:18:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":10215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2355:37:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10216,"nodeType":"ExpressionStatement","src":"2355:37:44"},{"eventCall":{"arguments":[{"id":10220,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10208,"src":"2425:17:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10217,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9618,"src":"2407:8:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$9618_$","typeString":"type(contract IERC1967)"}},"id":10219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2416:8:44","memberName":"Upgraded","nodeType":"MemberAccess","referencedDeclaration":9605,"src":"2407:17:44","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":10221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2407:36:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10222,"nodeType":"EmitStatement","src":"2402:41:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10223,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10210,"src":"2458:4:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2463:6:44","memberName":"length","nodeType":"MemberAccess","src":"2458:11:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2472:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2458:15:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10238,"nodeType":"Block","src":"2559:43:44","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":10235,"name":"_checkNonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10425,"src":"2573:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":10236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2573:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10237,"nodeType":"ExpressionStatement","src":"2573:18:44"}]},"id":10239,"nodeType":"IfStatement","src":"2454:148:44","trueBody":{"id":10234,"nodeType":"Block","src":"2475:78:44","statements":[{"expression":{"arguments":[{"id":10230,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10208,"src":"2518:17:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10231,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10210,"src":"2537:4:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":10227,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"2489:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$12580_$","typeString":"type(library Address)"}},"id":10229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2497:20:44","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":12497,"src":"2489:28:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":10232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2489:53:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10233,"nodeType":"ExpressionStatement","src":"2489:53:44"}]}}]},"documentation":{"id":10206,"nodeType":"StructuredDocumentation","src":"1958:301:44","text":" @dev Performs implementation upgrade with additional setup call if data is nonempty.\n This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n to avoid stuck value in the contract.\n Emits an {IERC1967-Upgraded} event."},"id":10241,"implemented":true,"kind":"function","modifiers":[],"name":"upgradeToAndCall","nameLocation":"2273:16:44","nodeType":"FunctionDefinition","parameters":{"id":10211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10208,"mutability":"mutable","name":"newImplementation","nameLocation":"2298:17:44","nodeType":"VariableDeclaration","scope":10241,"src":"2290:25:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10207,"name":"address","nodeType":"ElementaryTypeName","src":"2290:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10210,"mutability":"mutable","name":"data","nameLocation":"2330:4:44","nodeType":"VariableDeclaration","scope":10241,"src":"2317:17:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10209,"name":"bytes","nodeType":"ElementaryTypeName","src":"2317:5:44","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2289:46:44"},"returnParameters":{"id":10212,"nodeType":"ParameterList","parameters":[],"src":"2345:0:44"},"scope":10426,"src":"2264:344:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":10242,"nodeType":"StructuredDocumentation","src":"2614:145:44","text":" @dev Storage slot with the admin of the contract.\n This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1."},"id":10245,"mutability":"constant","name":"ADMIN_SLOT","nameLocation":"2855:10:44","nodeType":"VariableDeclaration","scope":10426,"src":"2829:105:44","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10243,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2829:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307862353331323736383461353638623331373361653133623966386136303136653234336536336236653865653131373864366137313738353062356436313033","id":10244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2868:66:44","typeDescriptions":{"typeIdentifier":"t_rational_81955473079516046949633743016697847541294818689821282749996681496272635257091_by_1","typeString":"int_const 8195...(69 digits omitted)...7091"},"value":"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103"},"visibility":"internal"},{"body":{"id":10257,"nodeType":"Block","src":"3339:68:44","statements":[{"expression":{"expression":{"arguments":[{"id":10253,"name":"ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10245,"src":"3383:10:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10251,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"3356:11:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$16550_$","typeString":"type(library StorageSlot)"}},"id":10252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3368:14:44","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":16461,"src":"3356:26:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$16432_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":10254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3356:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":10255,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3395:5:44","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":16431,"src":"3356:44:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10250,"id":10256,"nodeType":"Return","src":"3349:51:44"}]},"documentation":{"id":10246,"nodeType":"StructuredDocumentation","src":"2941:341:44","text":" @dev Returns the current admin.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"},"id":10258,"implemented":true,"kind":"function","modifiers":[],"name":"getAdmin","nameLocation":"3296:8:44","nodeType":"FunctionDefinition","parameters":{"id":10247,"nodeType":"ParameterList","parameters":[],"src":"3304:2:44"},"returnParameters":{"id":10250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10249,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10258,"src":"3330:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10248,"name":"address","nodeType":"ElementaryTypeName","src":"3330:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3329:9:44"},"scope":10426,"src":"3287:120:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10288,"nodeType":"Block","src":"3535:172:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10264,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"3549:8:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3569:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3561:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10265,"name":"address","nodeType":"ElementaryTypeName","src":"3561:7:44","typeDescriptions":{}}},"id":10268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3561:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3549:22:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10278,"nodeType":"IfStatement","src":"3545:91:44","trueBody":{"id":10277,"nodeType":"Block","src":"3573:63:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3622:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3614:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10271,"name":"address","nodeType":"ElementaryTypeName","src":"3614:7:44","typeDescriptions":{}}},"id":10274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3614:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10270,"name":"ERC1967InvalidAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10157,"src":"3594:19:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3594:31:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10276,"nodeType":"RevertStatement","src":"3587:38:44"}]}},{"expression":{"id":10286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":10282,"name":"ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10245,"src":"3672:10:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10279,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"3645:11:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$16550_$","typeString":"type(library StorageSlot)"}},"id":10281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3657:14:44","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":16461,"src":"3645:26:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$16432_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":10283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3645:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":10284,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3684:5:44","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":16431,"src":"3645:44:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10285,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"3692:8:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3645:55:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":10287,"nodeType":"ExpressionStatement","src":"3645:55:44"}]},"documentation":{"id":10259,"nodeType":"StructuredDocumentation","src":"3413:72:44","text":" @dev Stores a new address in the ERC-1967 admin slot."},"id":10289,"implemented":true,"kind":"function","modifiers":[],"name":"_setAdmin","nameLocation":"3499:9:44","nodeType":"FunctionDefinition","parameters":{"id":10262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10261,"mutability":"mutable","name":"newAdmin","nameLocation":"3517:8:44","nodeType":"VariableDeclaration","scope":10289,"src":"3509:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10260,"name":"address","nodeType":"ElementaryTypeName","src":"3509:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3508:18:44"},"returnParameters":{"id":10263,"nodeType":"ParameterList","parameters":[],"src":"3535:0:44"},"scope":10426,"src":"3490:217:44","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":10307,"nodeType":"Block","src":"3875:94:44","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10298,"name":"getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10258,"src":"3912:8:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3912:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10300,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10292,"src":"3924:8:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10295,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9618,"src":"3890:8:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$9618_$","typeString":"type(contract IERC1967)"}},"id":10297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3899:12:44","memberName":"AdminChanged","nodeType":"MemberAccess","referencedDeclaration":9612,"src":"3890:21:44","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":10301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3890:43:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10302,"nodeType":"EmitStatement","src":"3885:48:44"},{"expression":{"arguments":[{"id":10304,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10292,"src":"3953:8:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10303,"name":"_setAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10289,"src":"3943:9:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":10305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3943:19:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10306,"nodeType":"ExpressionStatement","src":"3943:19:44"}]},"documentation":{"id":10290,"nodeType":"StructuredDocumentation","src":"3713:109:44","text":" @dev Changes the admin of the proxy.\n Emits an {IERC1967-AdminChanged} event."},"id":10308,"implemented":true,"kind":"function","modifiers":[],"name":"changeAdmin","nameLocation":"3836:11:44","nodeType":"FunctionDefinition","parameters":{"id":10293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10292,"mutability":"mutable","name":"newAdmin","nameLocation":"3856:8:44","nodeType":"VariableDeclaration","scope":10308,"src":"3848:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10291,"name":"address","nodeType":"ElementaryTypeName","src":"3848:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3847:18:44"},"returnParameters":{"id":10294,"nodeType":"ParameterList","parameters":[],"src":"3875:0:44"},"scope":10426,"src":"3827:142:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":10309,"nodeType":"StructuredDocumentation","src":"3975:201:44","text":" @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1."},"id":10312,"mutability":"constant","name":"BEACON_SLOT","nameLocation":"4272:11:44","nodeType":"VariableDeclaration","scope":10426,"src":"4246:106:44","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10310,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4246:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861336630616437346535343233616562666438306433656634333436353738333335613961373261656165653539666636636233353832623335313333643530","id":10311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4286:66:44","typeDescriptions":{"typeIdentifier":"t_rational_74152234768234802001998023604048924213078445070507226371336425913862612794704_by_1","typeString":"int_const 7415...(69 digits omitted)...4704"},"value":"0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50"},"visibility":"internal"},{"body":{"id":10324,"nodeType":"Block","src":"4468:69:44","statements":[{"expression":{"expression":{"arguments":[{"id":10320,"name":"BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10312,"src":"4512:11:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10318,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"4485:11:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$16550_$","typeString":"type(library StorageSlot)"}},"id":10319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4497:14:44","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":16461,"src":"4485:26:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$16432_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":10321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:39:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":10322,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4525:5:44","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":16431,"src":"4485:45:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10317,"id":10323,"nodeType":"Return","src":"4478:52:44"}]},"documentation":{"id":10313,"nodeType":"StructuredDocumentation","src":"4359:51:44","text":" @dev Returns the current beacon."},"id":10325,"implemented":true,"kind":"function","modifiers":[],"name":"getBeacon","nameLocation":"4424:9:44","nodeType":"FunctionDefinition","parameters":{"id":10314,"nodeType":"ParameterList","parameters":[],"src":"4433:2:44"},"returnParameters":{"id":10317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10316,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10325,"src":"4459:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10315,"name":"address","nodeType":"ElementaryTypeName","src":"4459:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4458:9:44"},"scope":10426,"src":"4415:122:44","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":10370,"nodeType":"Block","src":"4667:390:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":10331,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10328,"src":"4681:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":10332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4691:4:44","memberName":"code","nodeType":"MemberAccess","src":"4681:14:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4696:6:44","memberName":"length","nodeType":"MemberAccess","src":"4681:21:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4706:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4681:26:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10341,"nodeType":"IfStatement","src":"4677:95:44","trueBody":{"id":10340,"nodeType":"Block","src":"4709:63:44","statements":[{"errorCall":{"arguments":[{"id":10337,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10328,"src":"4751:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10336,"name":"ERC1967InvalidBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10162,"src":"4730:20:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4730:31:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10339,"nodeType":"RevertStatement","src":"4723:38:44"}]}},{"expression":{"id":10349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":10345,"name":"BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10312,"src":"4809:11:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":10342,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16550,"src":"4782:11:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$16550_$","typeString":"type(library StorageSlot)"}},"id":10344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4794:14:44","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":16461,"src":"4782:26:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$16432_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":10346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4782:39:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":10347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4822:5:44","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":16431,"src":"4782:45:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10348,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10328,"src":"4830:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4782:57:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":10350,"nodeType":"ExpressionStatement","src":"4782:57:44"},{"assignments":[10352],"declarations":[{"constant":false,"id":10352,"mutability":"mutable","name":"beaconImplementation","nameLocation":"4858:20:44","nodeType":"VariableDeclaration","scope":10370,"src":"4850:28:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10351,"name":"address","nodeType":"ElementaryTypeName","src":"4850:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10358,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":10354,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10328,"src":"4889:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10353,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10472,"src":"4881:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$10472_$","typeString":"type(contract IBeacon)"}},"id":10355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$10472","typeString":"contract IBeacon"}},"id":10356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4900:14:44","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":10471,"src":"4881:33:44","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":10357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:35:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4850:66:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":10359,"name":"beaconImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10352,"src":"4930:20:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":10360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4951:4:44","memberName":"code","nodeType":"MemberAccess","src":"4930:25:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4956:6:44","memberName":"length","nodeType":"MemberAccess","src":"4930:32:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4930:37:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10369,"nodeType":"IfStatement","src":"4926:125:44","trueBody":{"id":10368,"nodeType":"Block","src":"4969:82:44","statements":[{"errorCall":{"arguments":[{"id":10365,"name":"beaconImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10352,"src":"5019:20:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10364,"name":"ERC1967InvalidImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10152,"src":"4990:28:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4990:50:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10367,"nodeType":"RevertStatement","src":"4983:57:44"}]}}]},"documentation":{"id":10326,"nodeType":"StructuredDocumentation","src":"4543:72:44","text":" @dev Stores a new beacon in the ERC-1967 beacon slot."},"id":10371,"implemented":true,"kind":"function","modifiers":[],"name":"_setBeacon","nameLocation":"4629:10:44","nodeType":"FunctionDefinition","parameters":{"id":10329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10328,"mutability":"mutable","name":"newBeacon","nameLocation":"4648:9:44","nodeType":"VariableDeclaration","scope":10371,"src":"4640:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10327,"name":"address","nodeType":"ElementaryTypeName","src":"4640:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4639:19:44"},"returnParameters":{"id":10330,"nodeType":"ParameterList","parameters":[],"src":"4667:0:44"},"scope":10426,"src":"4620:437:44","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":10410,"nodeType":"Block","src":"5661:263:44","statements":[{"expression":{"arguments":[{"id":10380,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10374,"src":"5682:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10379,"name":"_setBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10371,"src":"5671:10:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":10381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5671:21:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10382,"nodeType":"ExpressionStatement","src":"5671:21:44"},{"eventCall":{"arguments":[{"id":10386,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10374,"src":"5731:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10383,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9618,"src":"5707:8:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$9618_$","typeString":"type(contract IERC1967)"}},"id":10385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5716:14:44","memberName":"BeaconUpgraded","nodeType":"MemberAccess","referencedDeclaration":9617,"src":"5707:23:44","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":10387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5707:34:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10388,"nodeType":"EmitStatement","src":"5702:39:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10389,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"5756:4:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5761:6:44","memberName":"length","nodeType":"MemberAccess","src":"5756:11:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5770:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5756:15:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10408,"nodeType":"Block","src":"5875:43:44","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":10405,"name":"_checkNonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10425,"src":"5889:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":10406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5889:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10407,"nodeType":"ExpressionStatement","src":"5889:18:44"}]},"id":10409,"nodeType":"IfStatement","src":"5752:166:44","trueBody":{"id":10404,"nodeType":"Block","src":"5773:96:44","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":10397,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10374,"src":"5824:9:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10396,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10472,"src":"5816:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$10472_$","typeString":"type(contract IBeacon)"}},"id":10398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5816:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$10472","typeString":"contract IBeacon"}},"id":10399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5835:14:44","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":10471,"src":"5816:33:44","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":10400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5816:35:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10401,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"5853:4:44","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":10393,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"5787:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$12580_$","typeString":"type(library Address)"}},"id":10395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5795:20:44","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":12497,"src":"5787:28:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":10402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5787:71:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10403,"nodeType":"ExpressionStatement","src":"5787:71:44"}]}}]},"documentation":{"id":10372,"nodeType":"StructuredDocumentation","src":"5063:514:44","text":" @dev Change the beacon and trigger a setup call if data is nonempty.\n This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n to avoid stuck value in the contract.\n Emits an {IERC1967-BeaconUpgraded} event.\n CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n efficiency."},"id":10411,"implemented":true,"kind":"function","modifiers":[],"name":"upgradeBeaconToAndCall","nameLocation":"5591:22:44","nodeType":"FunctionDefinition","parameters":{"id":10377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10374,"mutability":"mutable","name":"newBeacon","nameLocation":"5622:9:44","nodeType":"VariableDeclaration","scope":10411,"src":"5614:17:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10373,"name":"address","nodeType":"ElementaryTypeName","src":"5614:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10376,"mutability":"mutable","name":"data","nameLocation":"5646:4:44","nodeType":"VariableDeclaration","scope":10411,"src":"5633:17:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10375,"name":"bytes","nodeType":"ElementaryTypeName","src":"5633:5:44","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5613:38:44"},"returnParameters":{"id":10378,"nodeType":"ParameterList","parameters":[],"src":"5661:0:44"},"scope":10426,"src":"5582:342:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10424,"nodeType":"Block","src":"6149:86:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10415,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6163:3:44","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6167:5:44","memberName":"value","nodeType":"MemberAccess","src":"6163:9:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6175:1:44","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6163:13:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10423,"nodeType":"IfStatement","src":"6159:70:44","trueBody":{"id":10422,"nodeType":"Block","src":"6178:51:44","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":10419,"name":"ERC1967NonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10165,"src":"6199:17:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":10420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6199:19:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10421,"nodeType":"RevertStatement","src":"6192:26:44"}]}}]},"documentation":{"id":10412,"nodeType":"StructuredDocumentation","src":"5930:178:44","text":" @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n if an upgrade doesn't perform an initialization call."},"id":10425,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNonPayable","nameLocation":"6122:16:44","nodeType":"FunctionDefinition","parameters":{"id":10413,"nodeType":"ParameterList","parameters":[],"src":"6138:2:44"},"returnParameters":{"id":10414,"nodeType":"ParameterList","parameters":[],"src":"6149:0:44"},"scope":10426,"src":"6113:122:44","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":10427,"src":"496:5741:44","usedErrors":[10152,10157,10162,10165],"usedEvents":[]}],"src":"114:6124:44"},"id":44},"@openzeppelin/contracts/proxy/Proxy.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","exportedSymbols":{"Proxy":[10462]},"id":10463,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10428,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:45"},{"abstract":true,"baseContracts":[],"canonicalName":"Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":10429,"nodeType":"StructuredDocumentation","src":"125:598:45","text":" @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n be specified by overriding the virtual {_implementation} function.\n Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n different contract through the {_delegate} function.\n The success and return data of the delegated call will be returned back to the caller of the proxy."},"fullyImplemented":false,"id":10462,"linearizedBaseContracts":[10462],"name":"Proxy","nameLocation":"742:5:45","nodeType":"ContractDefinition","nodes":[{"body":{"id":10436,"nodeType":"Block","src":"1009:835:45","statements":[{"AST":{"nativeSrc":"1028:810:45","nodeType":"YulBlock","src":"1028:810:45","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1281:1:45","nodeType":"YulLiteral","src":"1281:1:45","type":"","value":"0"},{"kind":"number","nativeSrc":"1284:1:45","nodeType":"YulLiteral","src":"1284:1:45","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1287:12:45","nodeType":"YulIdentifier","src":"1287:12:45"},"nativeSrc":"1287:14:45","nodeType":"YulFunctionCall","src":"1287:14:45"}],"functionName":{"name":"calldatacopy","nativeSrc":"1268:12:45","nodeType":"YulIdentifier","src":"1268:12:45"},"nativeSrc":"1268:34:45","nodeType":"YulFunctionCall","src":"1268:34:45"},"nativeSrc":"1268:34:45","nodeType":"YulExpressionStatement","src":"1268:34:45"},{"nativeSrc":"1429:74:45","nodeType":"YulVariableDeclaration","src":"1429:74:45","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"1456:3:45","nodeType":"YulIdentifier","src":"1456:3:45"},"nativeSrc":"1456:5:45","nodeType":"YulFunctionCall","src":"1456:5:45"},{"name":"implementation","nativeSrc":"1463:14:45","nodeType":"YulIdentifier","src":"1463:14:45"},{"kind":"number","nativeSrc":"1479:1:45","nodeType":"YulLiteral","src":"1479:1:45","type":"","value":"0"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1482:12:45","nodeType":"YulIdentifier","src":"1482:12:45"},"nativeSrc":"1482:14:45","nodeType":"YulFunctionCall","src":"1482:14:45"},{"kind":"number","nativeSrc":"1498:1:45","nodeType":"YulLiteral","src":"1498:1:45","type":"","value":"0"},{"kind":"number","nativeSrc":"1501:1:45","nodeType":"YulLiteral","src":"1501:1:45","type":"","value":"0"}],"functionName":{"name":"delegatecall","nativeSrc":"1443:12:45","nodeType":"YulIdentifier","src":"1443:12:45"},"nativeSrc":"1443:60:45","nodeType":"YulFunctionCall","src":"1443:60:45"},"variables":[{"name":"result","nativeSrc":"1433:6:45","nodeType":"YulTypedName","src":"1433:6:45","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1571:1:45","nodeType":"YulLiteral","src":"1571:1:45","type":"","value":"0"},{"kind":"number","nativeSrc":"1574:1:45","nodeType":"YulLiteral","src":"1574:1:45","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1577:14:45","nodeType":"YulIdentifier","src":"1577:14:45"},"nativeSrc":"1577:16:45","nodeType":"YulFunctionCall","src":"1577:16:45"}],"functionName":{"name":"returndatacopy","nativeSrc":"1556:14:45","nodeType":"YulIdentifier","src":"1556:14:45"},"nativeSrc":"1556:38:45","nodeType":"YulFunctionCall","src":"1556:38:45"},"nativeSrc":"1556:38:45","nodeType":"YulExpressionStatement","src":"1556:38:45"},{"cases":[{"body":{"nativeSrc":"1689:59:45","nodeType":"YulBlock","src":"1689:59:45","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1714:1:45","nodeType":"YulLiteral","src":"1714:1:45","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1717:14:45","nodeType":"YulIdentifier","src":"1717:14:45"},"nativeSrc":"1717:16:45","nodeType":"YulFunctionCall","src":"1717:16:45"}],"functionName":{"name":"revert","nativeSrc":"1707:6:45","nodeType":"YulIdentifier","src":"1707:6:45"},"nativeSrc":"1707:27:45","nodeType":"YulFunctionCall","src":"1707:27:45"},"nativeSrc":"1707:27:45","nodeType":"YulExpressionStatement","src":"1707:27:45"}]},"nativeSrc":"1682:66:45","nodeType":"YulCase","src":"1682:66:45","value":{"kind":"number","nativeSrc":"1687:1:45","nodeType":"YulLiteral","src":"1687:1:45","type":"","value":"0"}},{"body":{"nativeSrc":"1769:59:45","nodeType":"YulBlock","src":"1769:59:45","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1794:1:45","nodeType":"YulLiteral","src":"1794:1:45","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1797:14:45","nodeType":"YulIdentifier","src":"1797:14:45"},"nativeSrc":"1797:16:45","nodeType":"YulFunctionCall","src":"1797:16:45"}],"functionName":{"name":"return","nativeSrc":"1787:6:45","nodeType":"YulIdentifier","src":"1787:6:45"},"nativeSrc":"1787:27:45","nodeType":"YulFunctionCall","src":"1787:27:45"},"nativeSrc":"1787:27:45","nodeType":"YulExpressionStatement","src":"1787:27:45"}]},"nativeSrc":"1761:67:45","nodeType":"YulCase","src":"1761:67:45","value":"default"}],"expression":{"name":"result","nativeSrc":"1615:6:45","nodeType":"YulIdentifier","src":"1615:6:45"},"nativeSrc":"1608:220:45","nodeType":"YulSwitch","src":"1608:220:45"}]},"evmVersion":"cancun","externalReferences":[{"declaration":10432,"isOffset":false,"isSlot":false,"src":"1463:14:45","valueSize":1}],"id":10435,"nodeType":"InlineAssembly","src":"1019:819:45"}]},"documentation":{"id":10430,"nodeType":"StructuredDocumentation","src":"754:190:45","text":" @dev Delegates the current call to `implementation`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":10437,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"958:9:45","nodeType":"FunctionDefinition","parameters":{"id":10433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10432,"mutability":"mutable","name":"implementation","nameLocation":"976:14:45","nodeType":"VariableDeclaration","scope":10437,"src":"968:22:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10431,"name":"address","nodeType":"ElementaryTypeName","src":"968:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"967:24:45"},"returnParameters":{"id":10434,"nodeType":"ParameterList","parameters":[],"src":"1009:0:45"},"scope":10462,"src":"949:895:45","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":10438,"nodeType":"StructuredDocumentation","src":"1850:173:45","text":" @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n function and {_fallback} should delegate."},"id":10443,"implemented":false,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"2037:15:45","nodeType":"FunctionDefinition","parameters":{"id":10439,"nodeType":"ParameterList","parameters":[],"src":"2052:2:45"},"returnParameters":{"id":10442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10443,"src":"2086:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10440,"name":"address","nodeType":"ElementaryTypeName","src":"2086:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2085:9:45"},"scope":10462,"src":"2028:67:45","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":10452,"nodeType":"Block","src":"2361:45:45","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10448,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10443,"src":"2381:15:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2381:17:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10447,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10437,"src":"2371:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":10450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2371:28:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10451,"nodeType":"ExpressionStatement","src":"2371:28:45"}]},"documentation":{"id":10444,"nodeType":"StructuredDocumentation","src":"2101:217:45","text":" @dev Delegates the current call to the address returned by `_implementation()`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":10453,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"2332:9:45","nodeType":"FunctionDefinition","parameters":{"id":10445,"nodeType":"ParameterList","parameters":[],"src":"2341:2:45"},"returnParameters":{"id":10446,"nodeType":"ParameterList","parameters":[],"src":"2361:0:45"},"scope":10462,"src":"2323:83:45","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10460,"nodeType":"Block","src":"2639:28:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":10457,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10453,"src":"2649:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":10458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2649:11:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10459,"nodeType":"ExpressionStatement","src":"2649:11:45"}]},"documentation":{"id":10454,"nodeType":"StructuredDocumentation","src":"2412:186:45","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n function in the contract matches the call data."},"id":10461,"implemented":true,"kind":"fallback","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":10455,"nodeType":"ParameterList","parameters":[],"src":"2611:2:45"},"returnParameters":{"id":10456,"nodeType":"ParameterList","parameters":[],"src":"2639:0:45"},"scope":10462,"src":"2603:64:45","stateMutability":"payable","virtual":true,"visibility":"external"}],"scope":10463,"src":"724:1945:45","usedErrors":[],"usedEvents":[]}],"src":"99:2571:45"},"id":45},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","exportedSymbols":{"IBeacon":[10472]},"id":10473,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10464,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:46"},{"abstract":false,"baseContracts":[],"canonicalName":"IBeacon","contractDependencies":[],"contractKind":"interface","documentation":{"id":10465,"nodeType":"StructuredDocumentation","src":"134:79:46","text":" @dev This is the interface that {BeaconProxy} expects of its beacon."},"fullyImplemented":false,"id":10472,"linearizedBaseContracts":[10472],"name":"IBeacon","nameLocation":"224:7:46","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10466,"nodeType":"StructuredDocumentation","src":"238:168:46","text":" @dev Must return an address that can be used as a delegate call target.\n {UpgradeableBeacon} will check that this address is a contract."},"functionSelector":"5c60da1b","id":10471,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"420:14:46","nodeType":"FunctionDefinition","parameters":{"id":10467,"nodeType":"ParameterList","parameters":[],"src":"434:2:46"},"returnParameters":{"id":10470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10469,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10471,"src":"460:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10468,"name":"address","nodeType":"ElementaryTypeName","src":"460:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"459:9:46"},"scope":10472,"src":"411:58:46","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10473,"src":"214:257:46","usedErrors":[],"usedEvents":[]}],"src":"108:364:46"},"id":46},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[12610],"ERC20":[10987],"IERC20":[11065],"IERC20Errors":[9856],"IERC20Metadata":[11776]},"id":10988,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10474,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:47"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":10476,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10988,"sourceUnit":11066,"src":"131:36:47","symbolAliases":[{"foreign":{"id":10475,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"139:6:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":10478,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10988,"sourceUnit":11777,"src":"168:63:47","symbolAliases":[{"foreign":{"id":10477,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"176:14:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":10480,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10988,"sourceUnit":12611,"src":"232:48:47","symbolAliases":[{"foreign":{"id":10479,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"240:7:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":10482,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10988,"sourceUnit":9952,"src":"281:65:47","symbolAliases":[{"foreign":{"id":10481,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9856,"src":"289:12:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":10484,"name":"Context","nameLocations":["1133:7:47"],"nodeType":"IdentifierPath","referencedDeclaration":12610,"src":"1133:7:47"},"id":10485,"nodeType":"InheritanceSpecifier","src":"1133:7:47"},{"baseName":{"id":10486,"name":"IERC20","nameLocations":["1142:6:47"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"1142:6:47"},"id":10487,"nodeType":"InheritanceSpecifier","src":"1142:6:47"},{"baseName":{"id":10488,"name":"IERC20Metadata","nameLocations":["1150:14:47"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"1150:14:47"},"id":10489,"nodeType":"InheritanceSpecifier","src":"1150:14:47"},{"baseName":{"id":10490,"name":"IERC20Errors","nameLocations":["1166:12:47"],"nodeType":"IdentifierPath","referencedDeclaration":9856,"src":"1166:12:47"},"id":10491,"nodeType":"InheritanceSpecifier","src":"1166:12:47"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":10483,"nodeType":"StructuredDocumentation","src":"348:757:47","text":" @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC-20\n applications."},"fullyImplemented":true,"id":10987,"linearizedBaseContracts":[10987,9856,11776,11065,12610],"name":"ERC20","nameLocation":"1124:5:47","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":10495,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:47","nodeType":"VariableDeclaration","scope":10987,"src":"1185:53:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":10494,"keyName":"account","keyNameLocation":"1201:7:47","keyType":{"id":10492,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":10493,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":10501,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:47","nodeType":"VariableDeclaration","scope":10987,"src":"1245:83:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":10500,"keyName":"account","keyNameLocation":"1261:7:47","keyType":{"id":10496,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":10499,"keyName":"spender","keyNameLocation":"1288:7:47","keyType":{"id":10497,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":10498,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":10503,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:47","nodeType":"VariableDeclaration","scope":10987,"src":"1335:28:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10502,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":10505,"mutability":"mutable","name":"_name","nameLocation":"1385:5:47","nodeType":"VariableDeclaration","scope":10987,"src":"1370:20:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":10504,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":10507,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:47","nodeType":"VariableDeclaration","scope":10987,"src":"1396:22:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":10506,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":10523,"nodeType":"Block","src":"1657:57:47","statements":[{"expression":{"id":10517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10515,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10505,"src":"1667:5:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10516,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10510,"src":"1675:5:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1667:13:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":10518,"nodeType":"ExpressionStatement","src":"1667:13:47"},{"expression":{"id":10521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10519,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10507,"src":"1690:7:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10520,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10512,"src":"1700:7:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1690:17:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":10522,"nodeType":"ExpressionStatement","src":"1690:17:47"}]},"documentation":{"id":10508,"nodeType":"StructuredDocumentation","src":"1425:171:47","text":" @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction."},"id":10524,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":10513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10510,"mutability":"mutable","name":"name_","nameLocation":"1627:5:47","nodeType":"VariableDeclaration","scope":10524,"src":"1613:19:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10509,"name":"string","nodeType":"ElementaryTypeName","src":"1613:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10512,"mutability":"mutable","name":"symbol_","nameLocation":"1648:7:47","nodeType":"VariableDeclaration","scope":10524,"src":"1634:21:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10511,"name":"string","nodeType":"ElementaryTypeName","src":"1634:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1612:44:47"},"returnParameters":{"id":10514,"nodeType":"ParameterList","parameters":[],"src":"1657:0:47"},"scope":10987,"src":"1601:113:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[11763],"body":{"id":10532,"nodeType":"Block","src":"1839:29:47","statements":[{"expression":{"id":10530,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10505,"src":"1856:5:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":10529,"id":10531,"nodeType":"Return","src":"1849:12:47"}]},"documentation":{"id":10525,"nodeType":"StructuredDocumentation","src":"1720:54:47","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":10533,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1788:4:47","nodeType":"FunctionDefinition","parameters":{"id":10526,"nodeType":"ParameterList","parameters":[],"src":"1792:2:47"},"returnParameters":{"id":10529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10533,"src":"1824:13:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10527,"name":"string","nodeType":"ElementaryTypeName","src":"1824:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1823:15:47"},"scope":10987,"src":"1779:89:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11769],"body":{"id":10541,"nodeType":"Block","src":"2043:31:47","statements":[{"expression":{"id":10539,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10507,"src":"2060:7:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":10538,"id":10540,"nodeType":"Return","src":"2053:14:47"}]},"documentation":{"id":10534,"nodeType":"StructuredDocumentation","src":"1874:102:47","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":10542,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1990:6:47","nodeType":"FunctionDefinition","parameters":{"id":10535,"nodeType":"ParameterList","parameters":[],"src":"1996:2:47"},"returnParameters":{"id":10538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10537,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10542,"src":"2028:13:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10536,"name":"string","nodeType":"ElementaryTypeName","src":"2028:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2027:15:47"},"scope":10987,"src":"1981:93:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11775],"body":{"id":10550,"nodeType":"Block","src":"2763:26:47","statements":[{"expression":{"hexValue":"3138","id":10548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:2:47","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":10547,"id":10549,"nodeType":"Return","src":"2773:9:47"}]},"documentation":{"id":10543,"nodeType":"StructuredDocumentation","src":"2080:622:47","text":" @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."},"functionSelector":"313ce567","id":10551,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2716:8:47","nodeType":"FunctionDefinition","parameters":{"id":10544,"nodeType":"ParameterList","parameters":[],"src":"2724:2:47"},"returnParameters":{"id":10547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10546,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10551,"src":"2756:5:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10545,"name":"uint8","nodeType":"ElementaryTypeName","src":"2756:5:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2755:7:47"},"scope":10987,"src":"2707:82:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11014],"body":{"id":10559,"nodeType":"Block","src":"2910:36:47","statements":[{"expression":{"id":10557,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10503,"src":"2927:12:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10556,"id":10558,"nodeType":"Return","src":"2920:19:47"}]},"documentation":{"id":10552,"nodeType":"StructuredDocumentation","src":"2795:49:47","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":10560,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2858:11:47","nodeType":"FunctionDefinition","parameters":{"id":10553,"nodeType":"ParameterList","parameters":[],"src":"2869:2:47"},"returnParameters":{"id":10556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10555,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10560,"src":"2901:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10554,"name":"uint256","nodeType":"ElementaryTypeName","src":"2901:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2900:9:47"},"scope":10987,"src":"2849:97:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11022],"body":{"id":10572,"nodeType":"Block","src":"3078:42:47","statements":[{"expression":{"baseExpression":{"id":10568,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10495,"src":"3095:9:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":10570,"indexExpression":{"id":10569,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10563,"src":"3105:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3095:18:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10567,"id":10571,"nodeType":"Return","src":"3088:25:47"}]},"documentation":{"id":10561,"nodeType":"StructuredDocumentation","src":"2952:47:47","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":10573,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3013:9:47","nodeType":"FunctionDefinition","parameters":{"id":10564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10563,"mutability":"mutable","name":"account","nameLocation":"3031:7:47","nodeType":"VariableDeclaration","scope":10573,"src":"3023:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10562,"name":"address","nodeType":"ElementaryTypeName","src":"3023:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3022:17:47"},"returnParameters":{"id":10567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10566,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10573,"src":"3069:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10565,"name":"uint256","nodeType":"ElementaryTypeName","src":"3069:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3068:9:47"},"scope":10987,"src":"3004:116:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11032],"body":{"id":10596,"nodeType":"Block","src":"3390:103:47","statements":[{"assignments":[10584],"declarations":[{"constant":false,"id":10584,"mutability":"mutable","name":"owner","nameLocation":"3408:5:47","nodeType":"VariableDeclaration","scope":10596,"src":"3400:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10583,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10587,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":10585,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"3416:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3400:28:47"},{"expression":{"arguments":[{"id":10589,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10584,"src":"3448:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10590,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10576,"src":"3455:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10591,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10578,"src":"3459:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10588,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10717,"src":"3438:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3438:27:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10593,"nodeType":"ExpressionStatement","src":"3438:27:47"},{"expression":{"hexValue":"74727565","id":10594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3482:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":10582,"id":10595,"nodeType":"Return","src":"3475:11:47"}]},"documentation":{"id":10574,"nodeType":"StructuredDocumentation","src":"3126:184:47","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":10597,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3324:8:47","nodeType":"FunctionDefinition","parameters":{"id":10579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10576,"mutability":"mutable","name":"to","nameLocation":"3341:2:47","nodeType":"VariableDeclaration","scope":10597,"src":"3333:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10575,"name":"address","nodeType":"ElementaryTypeName","src":"3333:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10578,"mutability":"mutable","name":"value","nameLocation":"3353:5:47","nodeType":"VariableDeclaration","scope":10597,"src":"3345:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10577,"name":"uint256","nodeType":"ElementaryTypeName","src":"3345:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3332:27:47"},"returnParameters":{"id":10582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10581,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10597,"src":"3384:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10580,"name":"bool","nodeType":"ElementaryTypeName","src":"3384:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3383:6:47"},"scope":10987,"src":"3315:178:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[11042],"body":{"id":10613,"nodeType":"Block","src":"3640:51:47","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":10607,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10501,"src":"3657:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":10609,"indexExpression":{"id":10608,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10600,"src":"3669:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:18:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":10611,"indexExpression":{"id":10610,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10602,"src":"3676:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3657:27:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":10606,"id":10612,"nodeType":"Return","src":"3650:34:47"}]},"documentation":{"id":10598,"nodeType":"StructuredDocumentation","src":"3499:47:47","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":10614,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3560:9:47","nodeType":"FunctionDefinition","parameters":{"id":10603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10600,"mutability":"mutable","name":"owner","nameLocation":"3578:5:47","nodeType":"VariableDeclaration","scope":10614,"src":"3570:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10599,"name":"address","nodeType":"ElementaryTypeName","src":"3570:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10602,"mutability":"mutable","name":"spender","nameLocation":"3593:7:47","nodeType":"VariableDeclaration","scope":10614,"src":"3585:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10601,"name":"address","nodeType":"ElementaryTypeName","src":"3585:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3569:32:47"},"returnParameters":{"id":10606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10605,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10614,"src":"3631:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10604,"name":"uint256","nodeType":"ElementaryTypeName","src":"3631:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3630:9:47"},"scope":10987,"src":"3551:140:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[11052],"body":{"id":10637,"nodeType":"Block","src":"4077:107:47","statements":[{"assignments":[10625],"declarations":[{"constant":false,"id":10625,"mutability":"mutable","name":"owner","nameLocation":"4095:5:47","nodeType":"VariableDeclaration","scope":10637,"src":"4087:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10624,"name":"address","nodeType":"ElementaryTypeName","src":"4087:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10628,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":10626,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"4103:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4103:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4087:28:47"},{"expression":{"arguments":[{"id":10630,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10625,"src":"4134:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10631,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10617,"src":"4141:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10632,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10619,"src":"4150:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10629,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[10878,10938],"referencedDeclaration":10878,"src":"4125:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10634,"nodeType":"ExpressionStatement","src":"4125:31:47"},{"expression":{"hexValue":"74727565","id":10635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4173:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":10623,"id":10636,"nodeType":"Return","src":"4166:11:47"}]},"documentation":{"id":10615,"nodeType":"StructuredDocumentation","src":"3697:296:47","text":" @dev See {IERC20-approve}.\n NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":10638,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4007:7:47","nodeType":"FunctionDefinition","parameters":{"id":10620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10617,"mutability":"mutable","name":"spender","nameLocation":"4023:7:47","nodeType":"VariableDeclaration","scope":10638,"src":"4015:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10616,"name":"address","nodeType":"ElementaryTypeName","src":"4015:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10619,"mutability":"mutable","name":"value","nameLocation":"4040:5:47","nodeType":"VariableDeclaration","scope":10638,"src":"4032:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10618,"name":"uint256","nodeType":"ElementaryTypeName","src":"4032:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4014:32:47"},"returnParameters":{"id":10623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10638,"src":"4071:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10621,"name":"bool","nodeType":"ElementaryTypeName","src":"4071:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4070:6:47"},"scope":10987,"src":"3998:186:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[11064],"body":{"id":10669,"nodeType":"Block","src":"4869:151:47","statements":[{"assignments":[10651],"declarations":[{"constant":false,"id":10651,"mutability":"mutable","name":"spender","nameLocation":"4887:7:47","nodeType":"VariableDeclaration","scope":10669,"src":"4879:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10650,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10654,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":10652,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"4897:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4897:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4879:30:47"},{"expression":{"arguments":[{"id":10656,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10641,"src":"4935:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10657,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10651,"src":"4941:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10645,"src":"4950:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10655,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10986,"src":"4919:15:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:37:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10660,"nodeType":"ExpressionStatement","src":"4919:37:47"},{"expression":{"arguments":[{"id":10662,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10641,"src":"4976:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10663,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10643,"src":"4982:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10664,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10645,"src":"4986:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10661,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10717,"src":"4966:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4966:26:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10666,"nodeType":"ExpressionStatement","src":"4966:26:47"},{"expression":{"hexValue":"74727565","id":10667,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5009:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":10649,"id":10668,"nodeType":"Return","src":"5002:11:47"}]},"documentation":{"id":10639,"nodeType":"StructuredDocumentation","src":"4190:581:47","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":10670,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4785:12:47","nodeType":"FunctionDefinition","parameters":{"id":10646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10641,"mutability":"mutable","name":"from","nameLocation":"4806:4:47","nodeType":"VariableDeclaration","scope":10670,"src":"4798:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10640,"name":"address","nodeType":"ElementaryTypeName","src":"4798:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10643,"mutability":"mutable","name":"to","nameLocation":"4820:2:47","nodeType":"VariableDeclaration","scope":10670,"src":"4812:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10642,"name":"address","nodeType":"ElementaryTypeName","src":"4812:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10645,"mutability":"mutable","name":"value","nameLocation":"4832:5:47","nodeType":"VariableDeclaration","scope":10670,"src":"4824:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10644,"name":"uint256","nodeType":"ElementaryTypeName","src":"4824:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4797:41:47"},"returnParameters":{"id":10649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10648,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10670,"src":"4863:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10647,"name":"bool","nodeType":"ElementaryTypeName","src":"4863:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4862:6:47"},"scope":10987,"src":"4776:244:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":10716,"nodeType":"Block","src":"5462:231:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10680,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10673,"src":"5476:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5492:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5484:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10681,"name":"address","nodeType":"ElementaryTypeName","src":"5484:7:47","typeDescriptions":{}}},"id":10684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5476:18:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10694,"nodeType":"IfStatement","src":"5472:86:47","trueBody":{"id":10693,"nodeType":"Block","src":"5496:62:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5544:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5536:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10687,"name":"address","nodeType":"ElementaryTypeName","src":"5536:7:47","typeDescriptions":{}}},"id":10690,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5536:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10686,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9831,"src":"5517:18:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517:30:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10692,"nodeType":"RevertStatement","src":"5510:37:47"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10695,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10675,"src":"5571:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5585:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5577:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10696,"name":"address","nodeType":"ElementaryTypeName","src":"5577:7:47","typeDescriptions":{}}},"id":10699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5577:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5571:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10709,"nodeType":"IfStatement","src":"5567:86:47","trueBody":{"id":10708,"nodeType":"Block","src":"5589:64:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5631:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10702,"name":"address","nodeType":"ElementaryTypeName","src":"5631:7:47","typeDescriptions":{}}},"id":10705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5631:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10701,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9836,"src":"5610:20:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5610:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10707,"nodeType":"RevertStatement","src":"5603:39:47"}]}},{"expression":{"arguments":[{"id":10711,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10673,"src":"5670:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10712,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10675,"src":"5676:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10713,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10677,"src":"5680:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10710,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10794,"src":"5662:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10714,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:24:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10715,"nodeType":"ExpressionStatement","src":"5662:24:47"}]},"documentation":{"id":10671,"nodeType":"StructuredDocumentation","src":"5026:362:47","text":" @dev Moves a `value` amount of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":10717,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5402:9:47","nodeType":"FunctionDefinition","parameters":{"id":10678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10673,"mutability":"mutable","name":"from","nameLocation":"5420:4:47","nodeType":"VariableDeclaration","scope":10717,"src":"5412:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10672,"name":"address","nodeType":"ElementaryTypeName","src":"5412:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10675,"mutability":"mutable","name":"to","nameLocation":"5434:2:47","nodeType":"VariableDeclaration","scope":10717,"src":"5426:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10674,"name":"address","nodeType":"ElementaryTypeName","src":"5426:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10677,"mutability":"mutable","name":"value","nameLocation":"5446:5:47","nodeType":"VariableDeclaration","scope":10717,"src":"5438:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10676,"name":"uint256","nodeType":"ElementaryTypeName","src":"5438:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5411:41:47"},"returnParameters":{"id":10679,"nodeType":"ParameterList","parameters":[],"src":"5462:0:47"},"scope":10987,"src":"5393:300:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10793,"nodeType":"Block","src":"6083:1032:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10727,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10720,"src":"6097:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6113:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6105:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10728,"name":"address","nodeType":"ElementaryTypeName","src":"6105:7:47","typeDescriptions":{}}},"id":10731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6105:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6097:18:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10764,"nodeType":"Block","src":"6271:362:47","statements":[{"assignments":[10739],"declarations":[{"constant":false,"id":10739,"mutability":"mutable","name":"fromBalance","nameLocation":"6293:11:47","nodeType":"VariableDeclaration","scope":10764,"src":"6285:19:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10738,"name":"uint256","nodeType":"ElementaryTypeName","src":"6285:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10743,"initialValue":{"baseExpression":{"id":10740,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10495,"src":"6307:9:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":10742,"indexExpression":{"id":10741,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10720,"src":"6317:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6307:15:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6285:37:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10744,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10739,"src":"6340:11:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10745,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"6354:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6340:19:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10754,"nodeType":"IfStatement","src":"6336:115:47","trueBody":{"id":10753,"nodeType":"Block","src":"6361:90:47","statements":[{"errorCall":{"arguments":[{"id":10748,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10720,"src":"6411:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10749,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10739,"src":"6417:11:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10750,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"6430:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10747,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9826,"src":"6386:24:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":10751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6386:50:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10752,"nodeType":"RevertStatement","src":"6379:57:47"}]}},{"id":10763,"nodeType":"UncheckedBlock","src":"6464:159:47","statements":[{"expression":{"id":10761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":10755,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10495,"src":"6571:9:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":10757,"indexExpression":{"id":10756,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10720,"src":"6581:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6571:15:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10758,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10739,"src":"6589:11:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10759,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"6603:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6589:19:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6571:37:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10762,"nodeType":"ExpressionStatement","src":"6571:37:47"}]}]},"id":10765,"nodeType":"IfStatement","src":"6093:540:47","trueBody":{"id":10737,"nodeType":"Block","src":"6117:148:47","statements":[{"expression":{"id":10735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10733,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10503,"src":"6233:12:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10734,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"6249:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6233:21:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10736,"nodeType":"ExpressionStatement","src":"6233:21:47"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10766,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10722,"src":"6647:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10769,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6661:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10768,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6653:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10767,"name":"address","nodeType":"ElementaryTypeName","src":"6653:7:47","typeDescriptions":{}}},"id":10770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6653:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6647:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10785,"nodeType":"Block","src":"6862:206:47","statements":[{"id":10784,"nodeType":"UncheckedBlock","src":"6876:182:47","statements":[{"expression":{"id":10782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":10778,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10495,"src":"7021:9:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":10780,"indexExpression":{"id":10779,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10722,"src":"7031:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7021:13:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":10781,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"7038:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7021:22:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10783,"nodeType":"ExpressionStatement","src":"7021:22:47"}]}]},"id":10786,"nodeType":"IfStatement","src":"6643:425:47","trueBody":{"id":10777,"nodeType":"Block","src":"6665:191:47","statements":[{"id":10776,"nodeType":"UncheckedBlock","src":"6679:167:47","statements":[{"expression":{"id":10774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10772,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10503,"src":"6810:12:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":10773,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"6826:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6810:21:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10775,"nodeType":"ExpressionStatement","src":"6810:21:47"}]}]}},{"eventCall":{"arguments":[{"id":10788,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10720,"src":"7092:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10789,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10722,"src":"7098:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10790,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10724,"src":"7102:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10787,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10999,"src":"7083:8:47","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7083:25:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10792,"nodeType":"EmitStatement","src":"7078:30:47"}]},"documentation":{"id":10718,"nodeType":"StructuredDocumentation","src":"5699:304:47","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":10794,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"6017:7:47","nodeType":"FunctionDefinition","parameters":{"id":10725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10720,"mutability":"mutable","name":"from","nameLocation":"6033:4:47","nodeType":"VariableDeclaration","scope":10794,"src":"6025:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10719,"name":"address","nodeType":"ElementaryTypeName","src":"6025:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10722,"mutability":"mutable","name":"to","nameLocation":"6047:2:47","nodeType":"VariableDeclaration","scope":10794,"src":"6039:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10721,"name":"address","nodeType":"ElementaryTypeName","src":"6039:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10724,"mutability":"mutable","name":"value","nameLocation":"6059:5:47","nodeType":"VariableDeclaration","scope":10794,"src":"6051:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10723,"name":"uint256","nodeType":"ElementaryTypeName","src":"6051:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6024:41:47"},"returnParameters":{"id":10726,"nodeType":"ParameterList","parameters":[],"src":"6083:0:47"},"scope":10987,"src":"6008:1107:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10826,"nodeType":"Block","src":"7514:152:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10802,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10797,"src":"7528:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7547:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7539:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10803,"name":"address","nodeType":"ElementaryTypeName","src":"7539:7:47","typeDescriptions":{}}},"id":10806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7539:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7528:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10816,"nodeType":"IfStatement","src":"7524:91:47","trueBody":{"id":10815,"nodeType":"Block","src":"7551:64:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7601:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7593:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10809,"name":"address","nodeType":"ElementaryTypeName","src":"7593:7:47","typeDescriptions":{}}},"id":10812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7593:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10808,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9836,"src":"7572:20:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7572:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10814,"nodeType":"RevertStatement","src":"7565:39:47"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":10820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7640:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7632:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10818,"name":"address","nodeType":"ElementaryTypeName","src":"7632:7:47","typeDescriptions":{}}},"id":10821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7632:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10822,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10797,"src":"7644:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10823,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10799,"src":"7653:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10817,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10794,"src":"7624:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7624:35:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10825,"nodeType":"ExpressionStatement","src":"7624:35:47"}]},"documentation":{"id":10795,"nodeType":"StructuredDocumentation","src":"7121:332:47","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":10827,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7467:5:47","nodeType":"FunctionDefinition","parameters":{"id":10800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10797,"mutability":"mutable","name":"account","nameLocation":"7481:7:47","nodeType":"VariableDeclaration","scope":10827,"src":"7473:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10796,"name":"address","nodeType":"ElementaryTypeName","src":"7473:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10799,"mutability":"mutable","name":"value","nameLocation":"7498:5:47","nodeType":"VariableDeclaration","scope":10827,"src":"7490:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10798,"name":"uint256","nodeType":"ElementaryTypeName","src":"7490:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7472:32:47"},"returnParameters":{"id":10801,"nodeType":"ParameterList","parameters":[],"src":"7514:0:47"},"scope":10987,"src":"7458:208:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10859,"nodeType":"Block","src":"8040:150:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10835,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"8054:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8073:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10837,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8065:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10836,"name":"address","nodeType":"ElementaryTypeName","src":"8065:7:47","typeDescriptions":{}}},"id":10839,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8065:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8054:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10849,"nodeType":"IfStatement","src":"8050:89:47","trueBody":{"id":10848,"nodeType":"Block","src":"8077:62:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8125:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8117:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10842,"name":"address","nodeType":"ElementaryTypeName","src":"8117:7:47","typeDescriptions":{}}},"id":10845,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8117:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10841,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9831,"src":"8098:18:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098:30:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10847,"nodeType":"RevertStatement","src":"8091:37:47"}]}},{"expression":{"arguments":[{"id":10851,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"8156:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":10854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8173:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8165:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10852,"name":"address","nodeType":"ElementaryTypeName","src":"8165:7:47","typeDescriptions":{}}},"id":10855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8165:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10856,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10832,"src":"8177:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10850,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10794,"src":"8148:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8148:35:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10858,"nodeType":"ExpressionStatement","src":"8148:35:47"}]},"documentation":{"id":10828,"nodeType":"StructuredDocumentation","src":"7672:307:47","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":10860,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7993:5:47","nodeType":"FunctionDefinition","parameters":{"id":10833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10830,"mutability":"mutable","name":"account","nameLocation":"8007:7:47","nodeType":"VariableDeclaration","scope":10860,"src":"7999:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10829,"name":"address","nodeType":"ElementaryTypeName","src":"7999:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10832,"mutability":"mutable","name":"value","nameLocation":"8024:5:47","nodeType":"VariableDeclaration","scope":10860,"src":"8016:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10831,"name":"uint256","nodeType":"ElementaryTypeName","src":"8016:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7998:32:47"},"returnParameters":{"id":10834,"nodeType":"ParameterList","parameters":[],"src":"8040:0:47"},"scope":10987,"src":"7984:206:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10877,"nodeType":"Block","src":"8800:54:47","statements":[{"expression":{"arguments":[{"id":10871,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10863,"src":"8819:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10872,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10865,"src":"8826:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10867,"src":"8835:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":10874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8842:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10870,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[10878,10938],"referencedDeclaration":10938,"src":"8810:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":10875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8810:37:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10876,"nodeType":"ExpressionStatement","src":"8810:37:47"}]},"documentation":{"id":10861,"nodeType":"StructuredDocumentation","src":"8196:525:47","text":" @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":10878,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8735:8:47","nodeType":"FunctionDefinition","parameters":{"id":10868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10863,"mutability":"mutable","name":"owner","nameLocation":"8752:5:47","nodeType":"VariableDeclaration","scope":10878,"src":"8744:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10862,"name":"address","nodeType":"ElementaryTypeName","src":"8744:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10865,"mutability":"mutable","name":"spender","nameLocation":"8767:7:47","nodeType":"VariableDeclaration","scope":10878,"src":"8759:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10864,"name":"address","nodeType":"ElementaryTypeName","src":"8759:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10867,"mutability":"mutable","name":"value","nameLocation":"8784:5:47","nodeType":"VariableDeclaration","scope":10878,"src":"8776:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10866,"name":"uint256","nodeType":"ElementaryTypeName","src":"8776:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8743:47:47"},"returnParameters":{"id":10869,"nodeType":"ParameterList","parameters":[],"src":"8800:0:47"},"scope":10987,"src":"8726:128:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10937,"nodeType":"Block","src":"9799:334:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10890,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10881,"src":"9813:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10892,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9822:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10891,"name":"address","nodeType":"ElementaryTypeName","src":"9822:7:47","typeDescriptions":{}}},"id":10894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9822:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9813:19:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10904,"nodeType":"IfStatement","src":"9809:89:47","trueBody":{"id":10903,"nodeType":"Block","src":"9834:64:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9884:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10898,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9876:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10897,"name":"address","nodeType":"ElementaryTypeName","src":"9876:7:47","typeDescriptions":{}}},"id":10900,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9876:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10896,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9850,"src":"9855:20:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9855:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10902,"nodeType":"RevertStatement","src":"9848:39:47"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10905,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10883,"src":"9911:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9930:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9922:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10906,"name":"address","nodeType":"ElementaryTypeName","src":"9922:7:47","typeDescriptions":{}}},"id":10909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9922:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9911:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10919,"nodeType":"IfStatement","src":"9907:90:47","trueBody":{"id":10918,"nodeType":"Block","src":"9934:63:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":10914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":10913,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9975:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10912,"name":"address","nodeType":"ElementaryTypeName","src":"9975:7:47","typeDescriptions":{}}},"id":10915,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9975:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10911,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9855,"src":"9955:19:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":10916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9955:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10917,"nodeType":"RevertStatement","src":"9948:38:47"}]}},{"expression":{"id":10926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":10920,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10501,"src":"10006:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":10923,"indexExpression":{"id":10921,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10881,"src":"10018:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10006:18:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":10924,"indexExpression":{"id":10922,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10883,"src":"10025:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10006:27:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10925,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10885,"src":"10036:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10006:35:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10927,"nodeType":"ExpressionStatement","src":"10006:35:47"},{"condition":{"id":10928,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10887,"src":"10055:9:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10936,"nodeType":"IfStatement","src":"10051:76:47","trueBody":{"id":10935,"nodeType":"Block","src":"10066:61:47","statements":[{"eventCall":{"arguments":[{"id":10930,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10881,"src":"10094:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10931,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10883,"src":"10101:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10932,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10885,"src":"10110:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10929,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11008,"src":"10085:8:47","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":10933,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10085:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10934,"nodeType":"EmitStatement","src":"10080:36:47"}]}}]},"documentation":{"id":10879,"nodeType":"StructuredDocumentation","src":"8860:836:47","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":10938,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9710:8:47","nodeType":"FunctionDefinition","parameters":{"id":10888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10881,"mutability":"mutable","name":"owner","nameLocation":"9727:5:47","nodeType":"VariableDeclaration","scope":10938,"src":"9719:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10880,"name":"address","nodeType":"ElementaryTypeName","src":"9719:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10883,"mutability":"mutable","name":"spender","nameLocation":"9742:7:47","nodeType":"VariableDeclaration","scope":10938,"src":"9734:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10882,"name":"address","nodeType":"ElementaryTypeName","src":"9734:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10885,"mutability":"mutable","name":"value","nameLocation":"9759:5:47","nodeType":"VariableDeclaration","scope":10938,"src":"9751:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10884,"name":"uint256","nodeType":"ElementaryTypeName","src":"9751:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10887,"mutability":"mutable","name":"emitEvent","nameLocation":"9771:9:47","nodeType":"VariableDeclaration","scope":10938,"src":"9766:14:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10886,"name":"bool","nodeType":"ElementaryTypeName","src":"9766:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9718:63:47"},"returnParameters":{"id":10889,"nodeType":"ParameterList","parameters":[],"src":"9799:0:47"},"scope":10987,"src":"9701:432:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":10985,"nodeType":"Block","src":"10504:387:47","statements":[{"assignments":[10949],"declarations":[{"constant":false,"id":10949,"mutability":"mutable","name":"currentAllowance","nameLocation":"10522:16:47","nodeType":"VariableDeclaration","scope":10985,"src":"10514:24:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10948,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10954,"initialValue":{"arguments":[{"id":10951,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10941,"src":"10551:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10952,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10943,"src":"10558:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":10950,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10614,"src":"10541:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":10953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10541:25:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:52:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10955,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10949,"src":"10580:16:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":10958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10604:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":10957,"name":"uint256","nodeType":"ElementaryTypeName","src":"10604:7:47","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":10956,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10599:4:47","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10599:13:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":10960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10613:3:47","memberName":"max","nodeType":"MemberAccess","src":"10599:17:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10580:36:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10984,"nodeType":"IfStatement","src":"10576:309:47","trueBody":{"id":10983,"nodeType":"Block","src":"10618:267:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10962,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10949,"src":"10636:16:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":10963,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10945,"src":"10655:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10636:24:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10972,"nodeType":"IfStatement","src":"10632:130:47","trueBody":{"id":10971,"nodeType":"Block","src":"10662:100:47","statements":[{"errorCall":{"arguments":[{"id":10966,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10943,"src":"10714:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10967,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10949,"src":"10723:16:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10968,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10945,"src":"10741:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10965,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9845,"src":"10687:26:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":10969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10687:60:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10970,"nodeType":"RevertStatement","src":"10680:67:47"}]}},{"id":10982,"nodeType":"UncheckedBlock","src":"10775:100:47","statements":[{"expression":{"arguments":[{"id":10974,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10941,"src":"10812:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10975,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10943,"src":"10819:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10976,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10949,"src":"10828:16:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10945,"src":"10847:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10828:24:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":10979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10854:5:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10973,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[10878,10938],"referencedDeclaration":10938,"src":"10803:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":10980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10803:57:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10981,"nodeType":"ExpressionStatement","src":"10803:57:47"}]}]}}]},"documentation":{"id":10939,"nodeType":"StructuredDocumentation","src":"10139:271:47","text":" @dev Updates `owner` s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":10986,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10424:15:47","nodeType":"FunctionDefinition","parameters":{"id":10946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10941,"mutability":"mutable","name":"owner","nameLocation":"10448:5:47","nodeType":"VariableDeclaration","scope":10986,"src":"10440:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10940,"name":"address","nodeType":"ElementaryTypeName","src":"10440:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10943,"mutability":"mutable","name":"spender","nameLocation":"10463:7:47","nodeType":"VariableDeclaration","scope":10986,"src":"10455:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10942,"name":"address","nodeType":"ElementaryTypeName","src":"10455:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10945,"mutability":"mutable","name":"value","nameLocation":"10480:5:47","nodeType":"VariableDeclaration","scope":10986,"src":"10472:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10944,"name":"uint256","nodeType":"ElementaryTypeName","src":"10472:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10439:47:47"},"returnParameters":{"id":10947,"nodeType":"ParameterList","parameters":[],"src":"10504:0:47"},"scope":10987,"src":"10415:476:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":10988,"src":"1106:9787:47","usedErrors":[9826,9831,9836,9845,9850,9855],"usedEvents":[10999,11008]}],"src":"105:10789:47"},"id":47},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[11065]},"id":11066,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10989,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:48"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":10990,"nodeType":"StructuredDocumentation","src":"132:71:48","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":11065,"linearizedBaseContracts":[11065],"name":"IERC20","nameLocation":"214:6:48","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":10991,"nodeType":"StructuredDocumentation","src":"227:158:48","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":10999,"name":"Transfer","nameLocation":"396:8:48","nodeType":"EventDefinition","parameters":{"id":10998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10993,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:48","nodeType":"VariableDeclaration","scope":10999,"src":"405:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10992,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10995,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:48","nodeType":"VariableDeclaration","scope":10999,"src":"427:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10994,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10997,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:48","nodeType":"VariableDeclaration","scope":10999,"src":"447:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10996,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:48"},"src":"390:72:48"},{"anonymous":false,"documentation":{"id":11000,"nodeType":"StructuredDocumentation","src":"468:148:48","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":11008,"name":"Approval","nameLocation":"627:8:48","nodeType":"EventDefinition","parameters":{"id":11007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11002,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:48","nodeType":"VariableDeclaration","scope":11008,"src":"636:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11001,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11004,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:48","nodeType":"VariableDeclaration","scope":11008,"src":"659:23:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11003,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11006,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:48","nodeType":"VariableDeclaration","scope":11008,"src":"684:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11005,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:48"},"src":"621:78:48"},{"documentation":{"id":11009,"nodeType":"StructuredDocumentation","src":"705:65:48","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":11014,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:48","nodeType":"FunctionDefinition","parameters":{"id":11010,"nodeType":"ParameterList","parameters":[],"src":"795:2:48"},"returnParameters":{"id":11013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11012,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11014,"src":"821:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11011,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:48"},"scope":11065,"src":"775:55:48","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":11015,"nodeType":"StructuredDocumentation","src":"836:71:48","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":11022,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:48","nodeType":"FunctionDefinition","parameters":{"id":11018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11017,"mutability":"mutable","name":"account","nameLocation":"939:7:48","nodeType":"VariableDeclaration","scope":11022,"src":"931:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11016,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:48"},"returnParameters":{"id":11021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11022,"src":"971:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11019,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:48"},"scope":11065,"src":"912:68:48","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":11023,"nodeType":"StructuredDocumentation","src":"986:213:48","text":" @dev Moves a `value` amount of 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":11032,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1213:8:48","nodeType":"FunctionDefinition","parameters":{"id":11028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11025,"mutability":"mutable","name":"to","nameLocation":"1230:2:48","nodeType":"VariableDeclaration","scope":11032,"src":"1222:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11024,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11027,"mutability":"mutable","name":"value","nameLocation":"1242:5:48","nodeType":"VariableDeclaration","scope":11032,"src":"1234:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11026,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:48"},"returnParameters":{"id":11031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11030,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11032,"src":"1267:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11029,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:48"},"scope":11065,"src":"1204:69:48","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":11033,"nodeType":"StructuredDocumentation","src":"1279:264:48","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":11042,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1557:9:48","nodeType":"FunctionDefinition","parameters":{"id":11038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11035,"mutability":"mutable","name":"owner","nameLocation":"1575:5:48","nodeType":"VariableDeclaration","scope":11042,"src":"1567:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11034,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11037,"mutability":"mutable","name":"spender","nameLocation":"1590:7:48","nodeType":"VariableDeclaration","scope":11042,"src":"1582:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11036,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:48"},"returnParameters":{"id":11041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11040,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11042,"src":"1622:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11039,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:48"},"scope":11065,"src":"1548:83:48","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":11043,"nodeType":"StructuredDocumentation","src":"1637:667:48","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n 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":11052,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2318:7:48","nodeType":"FunctionDefinition","parameters":{"id":11048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11045,"mutability":"mutable","name":"spender","nameLocation":"2334:7:48","nodeType":"VariableDeclaration","scope":11052,"src":"2326:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11044,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11047,"mutability":"mutable","name":"value","nameLocation":"2351:5:48","nodeType":"VariableDeclaration","scope":11052,"src":"2343:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11046,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:48"},"returnParameters":{"id":11051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11052,"src":"2376:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11049,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:48"},"scope":11065,"src":"2309:73:48","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":11053,"nodeType":"StructuredDocumentation","src":"2388:297:48","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the\n allowance mechanism. `value` 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":11064,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2699:12:48","nodeType":"FunctionDefinition","parameters":{"id":11060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11055,"mutability":"mutable","name":"from","nameLocation":"2720:4:48","nodeType":"VariableDeclaration","scope":11064,"src":"2712:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11054,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11057,"mutability":"mutable","name":"to","nameLocation":"2734:2:48","nodeType":"VariableDeclaration","scope":11064,"src":"2726:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11056,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11059,"mutability":"mutable","name":"value","nameLocation":"2746:5:48","nodeType":"VariableDeclaration","scope":11064,"src":"2738:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11058,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:48"},"returnParameters":{"id":11063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11062,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11064,"src":"2771:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11061,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:48"},"scope":11065,"src":"2690:87:48","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":11066,"src":"204:2575:48","usedErrors":[],"usedEvents":[10999,11008]}],"src":"106:2674:48"},"id":48},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","exportedSymbols":{"ERC20":[10987],"ERC4626":[11750],"IERC20":[11065],"IERC20Metadata":[11776],"IERC4626":[9796],"Math":[19814],"SafeERC20":[12185]},"id":11751,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11067,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:49"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":11071,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11751,"sourceUnit":10988,"src":"144:59:49","symbolAliases":[{"foreign":{"id":11068,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"152:6:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":11069,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"160:14:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":11070,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10987,"src":"176:5:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"../utils/SafeERC20.sol","id":11073,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11751,"sourceUnit":12186,"src":"204:49:49","symbolAliases":[{"foreign":{"id":11072,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"212:9:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"../../../interfaces/IERC4626.sol","id":11075,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11751,"sourceUnit":9797,"src":"254:58:49","symbolAliases":[{"foreign":{"id":11074,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"262:8:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../../utils/math/Math.sol","id":11077,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11751,"sourceUnit":19815,"src":"313:50:49","symbolAliases":[{"foreign":{"id":11076,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"321:4:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":11079,"name":"ERC20","nameLocations":["3298:5:49"],"nodeType":"IdentifierPath","referencedDeclaration":10987,"src":"3298:5:49"},"id":11080,"nodeType":"InheritanceSpecifier","src":"3298:5:49"},{"baseName":{"id":11081,"name":"IERC4626","nameLocations":["3305:8:49"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"3305:8:49"},"id":11082,"nodeType":"InheritanceSpecifier","src":"3305:8:49"}],"canonicalName":"ERC4626","contractDependencies":[],"contractKind":"contract","documentation":{"id":11078,"nodeType":"StructuredDocumentation","src":"365:2903:49","text":" @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n contract and not the \"assets\" token which is an independent contract.\n [CAUTION]\n ====\n In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n verifying the amount received is as expected, using a wrapper that performs these checks such as\n https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n underlying math can be found xref:erc4626.adoc#inflation-attack[here].\n The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n `_convertToShares` and `_convertToAssets` functions.\n To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n ===="},"fullyImplemented":true,"id":11750,"linearizedBaseContracts":[11750,9796,10987,9856,11776,11065,12610],"name":"ERC4626","nameLocation":"3287:7:49","nodeType":"ContractDefinition","nodes":[{"global":false,"id":11085,"libraryName":{"id":11083,"name":"Math","nameLocations":["3326:4:49"],"nodeType":"IdentifierPath","referencedDeclaration":19814,"src":"3326:4:49"},"nodeType":"UsingForDirective","src":"3320:23:49","typeName":{"id":11084,"name":"uint256","nodeType":"ElementaryTypeName","src":"3335:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"id":11088,"mutability":"immutable","name":"_asset","nameLocation":"3374:6:49","nodeType":"VariableDeclaration","scope":11750,"src":"3349:31:49","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11087,"nodeType":"UserDefinedTypeName","pathNode":{"id":11086,"name":"IERC20","nameLocations":["3349:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"3349:6:49"},"referencedDeclaration":11065,"src":"3349:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"private"},{"constant":false,"id":11090,"mutability":"immutable","name":"_underlyingDecimals","nameLocation":"3410:19:49","nodeType":"VariableDeclaration","scope":11750,"src":"3386:43:49","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11089,"name":"uint8","nodeType":"ElementaryTypeName","src":"3386:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"documentation":{"id":11091,"nodeType":"StructuredDocumentation","src":"3436:92:49","text":" @dev Attempted to deposit more assets than the max amount for `receiver`."},"errorSelector":"79012fb2","id":11099,"name":"ERC4626ExceededMaxDeposit","nameLocation":"3539:25:49","nodeType":"ErrorDefinition","parameters":{"id":11098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11093,"mutability":"mutable","name":"receiver","nameLocation":"3573:8:49","nodeType":"VariableDeclaration","scope":11099,"src":"3565:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11092,"name":"address","nodeType":"ElementaryTypeName","src":"3565:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11095,"mutability":"mutable","name":"assets","nameLocation":"3591:6:49","nodeType":"VariableDeclaration","scope":11099,"src":"3583:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11094,"name":"uint256","nodeType":"ElementaryTypeName","src":"3583:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11097,"mutability":"mutable","name":"max","nameLocation":"3607:3:49","nodeType":"VariableDeclaration","scope":11099,"src":"3599:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11096,"name":"uint256","nodeType":"ElementaryTypeName","src":"3599:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3564:47:49"},"src":"3533:79:49"},{"documentation":{"id":11100,"nodeType":"StructuredDocumentation","src":"3618:89:49","text":" @dev Attempted to mint more shares than the max amount for `receiver`."},"errorSelector":"284ff667","id":11108,"name":"ERC4626ExceededMaxMint","nameLocation":"3718:22:49","nodeType":"ErrorDefinition","parameters":{"id":11107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11102,"mutability":"mutable","name":"receiver","nameLocation":"3749:8:49","nodeType":"VariableDeclaration","scope":11108,"src":"3741:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11101,"name":"address","nodeType":"ElementaryTypeName","src":"3741:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11104,"mutability":"mutable","name":"shares","nameLocation":"3767:6:49","nodeType":"VariableDeclaration","scope":11108,"src":"3759:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11103,"name":"uint256","nodeType":"ElementaryTypeName","src":"3759:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11106,"mutability":"mutable","name":"max","nameLocation":"3783:3:49","nodeType":"VariableDeclaration","scope":11108,"src":"3775:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11105,"name":"uint256","nodeType":"ElementaryTypeName","src":"3775:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3740:47:49"},"src":"3712:76:49"},{"documentation":{"id":11109,"nodeType":"StructuredDocumentation","src":"3794:93:49","text":" @dev Attempted to withdraw more assets than the max amount for `receiver`."},"errorSelector":"fe9cceec","id":11117,"name":"ERC4626ExceededMaxWithdraw","nameLocation":"3898:26:49","nodeType":"ErrorDefinition","parameters":{"id":11116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11111,"mutability":"mutable","name":"owner","nameLocation":"3933:5:49","nodeType":"VariableDeclaration","scope":11117,"src":"3925:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11110,"name":"address","nodeType":"ElementaryTypeName","src":"3925:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11113,"mutability":"mutable","name":"assets","nameLocation":"3948:6:49","nodeType":"VariableDeclaration","scope":11117,"src":"3940:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11112,"name":"uint256","nodeType":"ElementaryTypeName","src":"3940:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11115,"mutability":"mutable","name":"max","nameLocation":"3964:3:49","nodeType":"VariableDeclaration","scope":11117,"src":"3956:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11114,"name":"uint256","nodeType":"ElementaryTypeName","src":"3956:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3924:44:49"},"src":"3892:77:49"},{"documentation":{"id":11118,"nodeType":"StructuredDocumentation","src":"3975:91:49","text":" @dev Attempted to redeem more shares than the max amount for `receiver`."},"errorSelector":"b94abeec","id":11126,"name":"ERC4626ExceededMaxRedeem","nameLocation":"4077:24:49","nodeType":"ErrorDefinition","parameters":{"id":11125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11120,"mutability":"mutable","name":"owner","nameLocation":"4110:5:49","nodeType":"VariableDeclaration","scope":11126,"src":"4102:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11119,"name":"address","nodeType":"ElementaryTypeName","src":"4102:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11122,"mutability":"mutable","name":"shares","nameLocation":"4125:6:49","nodeType":"VariableDeclaration","scope":11126,"src":"4117:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11121,"name":"uint256","nodeType":"ElementaryTypeName","src":"4117:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11124,"mutability":"mutable","name":"max","nameLocation":"4141:3:49","nodeType":"VariableDeclaration","scope":11126,"src":"4133:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11123,"name":"uint256","nodeType":"ElementaryTypeName","src":"4133:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4101:44:49"},"src":"4071:75:49"},{"body":{"id":11152,"nodeType":"Block","src":"4305:168:49","statements":[{"assignments":[11134,11136],"declarations":[{"constant":false,"id":11134,"mutability":"mutable","name":"success","nameLocation":"4321:7:49","nodeType":"VariableDeclaration","scope":11152,"src":"4316:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11133,"name":"bool","nodeType":"ElementaryTypeName","src":"4316:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11136,"mutability":"mutable","name":"assetDecimals","nameLocation":"4336:13:49","nodeType":"VariableDeclaration","scope":11152,"src":"4330:19:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11135,"name":"uint8","nodeType":"ElementaryTypeName","src":"4330:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11140,"initialValue":{"arguments":[{"id":11138,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11130,"src":"4374:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":11137,"name":"_tryGetAssetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"4353:20:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IERC20_$11065_$returns$_t_bool_$_t_uint8_$","typeString":"function (contract IERC20) view returns (bool,uint8)"}},"id":11139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4353:28:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"nodeType":"VariableDeclarationStatement","src":"4315:66:49"},{"expression":{"id":11146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11141,"name":"_underlyingDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11090,"src":"4391:19:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"id":11142,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11134,"src":"4413:7:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3138","id":11144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4439:2:49","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"id":11145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4413:28:49","trueExpression":{"id":11143,"name":"assetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11136,"src":"4423:13:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4391:50:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11147,"nodeType":"ExpressionStatement","src":"4391:50:49"},{"expression":{"id":11150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11148,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"4451:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11149,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11130,"src":"4460:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"src":"4451:15:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11151,"nodeType":"ExpressionStatement","src":"4451:15:49"}]},"documentation":{"id":11127,"nodeType":"StructuredDocumentation","src":"4152:121:49","text":" @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777)."},"id":11153,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":11131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11130,"mutability":"mutable","name":"asset_","nameLocation":"4297:6:49","nodeType":"VariableDeclaration","scope":11153,"src":"4290:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11129,"nodeType":"UserDefinedTypeName","pathNode":{"id":11128,"name":"IERC20","nameLocations":["4290:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"4290:6:49"},"referencedDeclaration":11065,"src":"4290:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"4289:15:49"},"returnParameters":{"id":11132,"nodeType":"ParameterList","parameters":[],"src":"4305:0:49"},"scope":11750,"src":"4278:195:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11219,"nodeType":"Block","src":"4713:453:49","statements":[{"assignments":[11165,11167],"declarations":[{"constant":false,"id":11165,"mutability":"mutable","name":"success","nameLocation":"4729:7:49","nodeType":"VariableDeclaration","scope":11219,"src":"4724:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11164,"name":"bool","nodeType":"ElementaryTypeName","src":"4724:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11167,"mutability":"mutable","name":"encodedDecimals","nameLocation":"4751:15:49","nodeType":"VariableDeclaration","scope":11219,"src":"4738:28:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11166,"name":"bytes","nodeType":"ElementaryTypeName","src":"4738:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11180,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":11175,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"4825:14:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":11176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4840:8:49","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":11775,"src":"4825:23:49","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"}},{"components":[],"id":11177,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"4850:2:49","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"},{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}],"expression":{"id":11173,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4810:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4814:10:49","memberName":"encodeCall","nodeType":"MemberAccess","src":"4810:14:49","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4810:43:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"arguments":[{"id":11170,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11157,"src":"4778:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":11169,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4770:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11168,"name":"address","nodeType":"ElementaryTypeName","src":"4770:7:49","typeDescriptions":{}}},"id":11171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4770:15:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":11172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4786:10:49","memberName":"staticcall","nodeType":"MemberAccess","src":"4770:26:49","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":11179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4770:93:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4723:140:49"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11181,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11165,"src":"4877:7:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11182,"name":"encodedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11167,"src":"4888:15:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4904:6:49","memberName":"length","nodeType":"MemberAccess","src":"4888:22:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":11184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4914:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4888:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4877:39:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11214,"nodeType":"IfStatement","src":"4873:260:49","trueBody":{"id":11213,"nodeType":"Block","src":"4918:215:49","statements":[{"assignments":[11188],"declarations":[{"constant":false,"id":11188,"mutability":"mutable","name":"returnedDecimals","nameLocation":"4940:16:49","nodeType":"VariableDeclaration","scope":11213,"src":"4932:24:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11187,"name":"uint256","nodeType":"ElementaryTypeName","src":"4932:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11196,"initialValue":{"arguments":[{"id":11191,"name":"encodedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11167,"src":"4970:15:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":11193,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4988:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11192,"name":"uint256","nodeType":"ElementaryTypeName","src":"4988:7:49","typeDescriptions":{}}}],"id":11194,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"4987:9:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"expression":{"id":11189,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4959:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4963:6:49","memberName":"decode","nodeType":"MemberAccess","src":"4959:10:49","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":11195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4959:38:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4932:65:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11197,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"5015:16:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":11200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5040:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11199,"name":"uint8","nodeType":"ElementaryTypeName","src":"5040:5:49","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":11198,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5035:4:49","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5035:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":11202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5047:3:49","memberName":"max","nodeType":"MemberAccess","src":"5035:15:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5015:35:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11212,"nodeType":"IfStatement","src":"5011:112:49","trueBody":{"id":11211,"nodeType":"Block","src":"5052:71:49","statements":[{"expression":{"components":[{"hexValue":"74727565","id":11204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5078:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":11207,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"5090:16:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5084:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11205,"name":"uint8","nodeType":"ElementaryTypeName","src":"5084:5:49","typeDescriptions":{}}},"id":11208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5084:23:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":11209,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5077:31:49","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"functionReturnParameters":11163,"id":11210,"nodeType":"Return","src":"5070:38:49"}]}}]}},{"expression":{"components":[{"hexValue":"66616c7365","id":11215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5150:5:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":11216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5157:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11217,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"5149:10:49","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":11163,"id":11218,"nodeType":"Return","src":"5142:17:49"}]},"documentation":{"id":11154,"nodeType":"StructuredDocumentation","src":"4479:132:49","text":" @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way."},"id":11220,"implemented":true,"kind":"function","modifiers":[],"name":"_tryGetAssetDecimals","nameLocation":"4625:20:49","nodeType":"FunctionDefinition","parameters":{"id":11158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11157,"mutability":"mutable","name":"asset_","nameLocation":"4653:6:49","nodeType":"VariableDeclaration","scope":11220,"src":"4646:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11156,"nodeType":"UserDefinedTypeName","pathNode":{"id":11155,"name":"IERC20","nameLocations":["4646:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"4646:6:49"},"referencedDeclaration":11065,"src":"4646:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"4645:15:49"},"returnParameters":{"id":11163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11160,"mutability":"mutable","name":"ok","nameLocation":"4688:2:49","nodeType":"VariableDeclaration","scope":11220,"src":"4683:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11159,"name":"bool","nodeType":"ElementaryTypeName","src":"4683:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11162,"mutability":"mutable","name":"assetDecimals","nameLocation":"4698:13:49","nodeType":"VariableDeclaration","scope":11220,"src":"4692:19:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11161,"name":"uint8","nodeType":"ElementaryTypeName","src":"4692:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4682:30:49"},"scope":11750,"src":"4616:550:49","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[10551,11775],"body":{"id":11234,"nodeType":"Block","src":"5659:63:49","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11229,"name":"_underlyingDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11090,"src":"5676:19:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11230,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11749,"src":"5698:15:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":11231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5698:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5676:39:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":11228,"id":11233,"nodeType":"Return","src":"5669:46:49"}]},"documentation":{"id":11221,"nodeType":"StructuredDocumentation","src":"5172:394:49","text":" @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n See {IERC20Metadata-decimals}."},"functionSelector":"313ce567","id":11235,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"5580:8:49","nodeType":"FunctionDefinition","overrides":{"id":11225,"nodeType":"OverrideSpecifier","overrides":[{"id":11223,"name":"IERC20Metadata","nameLocations":["5620:14:49"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"5620:14:49"},{"id":11224,"name":"ERC20","nameLocations":["5636:5:49"],"nodeType":"IdentifierPath","referencedDeclaration":10987,"src":"5636:5:49"}],"src":"5611:31:49"},"parameters":{"id":11222,"nodeType":"ParameterList","parameters":[],"src":"5588:2:49"},"returnParameters":{"id":11228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11235,"src":"5652:5:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11226,"name":"uint8","nodeType":"ElementaryTypeName","src":"5652:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5651:7:49"},"scope":11750,"src":"5571:151:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9665],"body":{"id":11246,"nodeType":"Block","src":"5821:39:49","statements":[{"expression":{"arguments":[{"id":11243,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"5846:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":11242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5838:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11241,"name":"address","nodeType":"ElementaryTypeName","src":"5838:7:49","typeDescriptions":{}}},"id":11244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5838:15:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":11240,"id":11245,"nodeType":"Return","src":"5831:22:49"}]},"documentation":{"id":11236,"nodeType":"StructuredDocumentation","src":"5728:33:49","text":"@dev See {IERC4626-asset}. "},"functionSelector":"38d52e0f","id":11247,"implemented":true,"kind":"function","modifiers":[],"name":"asset","nameLocation":"5775:5:49","nodeType":"FunctionDefinition","parameters":{"id":11237,"nodeType":"ParameterList","parameters":[],"src":"5780:2:49"},"returnParameters":{"id":11240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11239,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11247,"src":"5812:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11238,"name":"address","nodeType":"ElementaryTypeName","src":"5812:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5811:9:49"},"scope":11750,"src":"5766:94:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9671],"body":{"id":11261,"nodeType":"Block","src":"5971:55:49","statements":[{"expression":{"arguments":[{"arguments":[{"id":11257,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6013:4:49","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626_$11750","typeString":"contract ERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626_$11750","typeString":"contract ERC4626"}],"id":11256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6005:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11255,"name":"address","nodeType":"ElementaryTypeName","src":"6005:7:49","typeDescriptions":{}}},"id":11258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6005:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11253,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"5988:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5995:9:49","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":11022,"src":"5988:16:49","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":11259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5988:31:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11252,"id":11260,"nodeType":"Return","src":"5981:38:49"}]},"documentation":{"id":11248,"nodeType":"StructuredDocumentation","src":"5866:39:49","text":"@dev See {IERC4626-totalAssets}. "},"functionSelector":"01e1d114","id":11262,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"5919:11:49","nodeType":"FunctionDefinition","parameters":{"id":11249,"nodeType":"ParameterList","parameters":[],"src":"5930:2:49"},"returnParameters":{"id":11252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11251,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11262,"src":"5962:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11250,"name":"uint256","nodeType":"ElementaryTypeName","src":"5962:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5961:9:49"},"scope":11750,"src":"5910:116:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9679],"body":{"id":11277,"nodeType":"Block","src":"6159:69:49","statements":[{"expression":{"arguments":[{"id":11271,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11265,"src":"6193:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11272,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"6201:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6206:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"6201:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6215:5:49","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"6201:19:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11270,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11629,"src":"6176:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6176:45:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11269,"id":11276,"nodeType":"Return","src":"6169:52:49"}]},"documentation":{"id":11263,"nodeType":"StructuredDocumentation","src":"6032:43:49","text":"@dev See {IERC4626-convertToShares}. "},"functionSelector":"c6e6f592","id":11278,"implemented":true,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"6089:15:49","nodeType":"FunctionDefinition","parameters":{"id":11266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11265,"mutability":"mutable","name":"assets","nameLocation":"6113:6:49","nodeType":"VariableDeclaration","scope":11278,"src":"6105:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11264,"name":"uint256","nodeType":"ElementaryTypeName","src":"6105:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6104:16:49"},"returnParameters":{"id":11269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11278,"src":"6150:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11267,"name":"uint256","nodeType":"ElementaryTypeName","src":"6150:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6149:9:49"},"scope":11750,"src":"6080:148:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9687],"body":{"id":11293,"nodeType":"Block","src":"6361:69:49","statements":[{"expression":{"arguments":[{"id":11287,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11281,"src":"6395:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11288,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"6403:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6408:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"6403:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6417:5:49","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"6403:19:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11286,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11657,"src":"6378:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6378:45:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11285,"id":11292,"nodeType":"Return","src":"6371:52:49"}]},"documentation":{"id":11279,"nodeType":"StructuredDocumentation","src":"6234:43:49","text":"@dev See {IERC4626-convertToAssets}. "},"functionSelector":"07a2d13a","id":11294,"implemented":true,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"6291:15:49","nodeType":"FunctionDefinition","parameters":{"id":11282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11281,"mutability":"mutable","name":"shares","nameLocation":"6315:6:49","nodeType":"VariableDeclaration","scope":11294,"src":"6307:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11280,"name":"uint256","nodeType":"ElementaryTypeName","src":"6307:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6306:16:49"},"returnParameters":{"id":11285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11284,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11294,"src":"6352:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11283,"name":"uint256","nodeType":"ElementaryTypeName","src":"6352:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6351:9:49"},"scope":11750,"src":"6282:148:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9695],"body":{"id":11308,"nodeType":"Block","src":"6546:41:49","statements":[{"expression":{"expression":{"arguments":[{"id":11304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6568:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11303,"name":"uint256","nodeType":"ElementaryTypeName","src":"6568:7:49","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":11302,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6563:4:49","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6563:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":11306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6577:3:49","memberName":"max","nodeType":"MemberAccess","src":"6563:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11301,"id":11307,"nodeType":"Return","src":"6556:24:49"}]},"documentation":{"id":11295,"nodeType":"StructuredDocumentation","src":"6436:38:49","text":"@dev See {IERC4626-maxDeposit}. "},"functionSelector":"402d267d","id":11309,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"6488:10:49","nodeType":"FunctionDefinition","parameters":{"id":11298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11297,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11309,"src":"6499:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11296,"name":"address","nodeType":"ElementaryTypeName","src":"6499:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6498:9:49"},"returnParameters":{"id":11301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11309,"src":"6537:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11299,"name":"uint256","nodeType":"ElementaryTypeName","src":"6537:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6536:9:49"},"scope":11750,"src":"6479:108:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9721],"body":{"id":11323,"nodeType":"Block","src":"6697:41:49","statements":[{"expression":{"expression":{"arguments":[{"id":11319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6719:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11318,"name":"uint256","nodeType":"ElementaryTypeName","src":"6719:7:49","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":11317,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6714:4:49","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6714:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":11321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6728:3:49","memberName":"max","nodeType":"MemberAccess","src":"6714:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11316,"id":11322,"nodeType":"Return","src":"6707:24:49"}]},"documentation":{"id":11310,"nodeType":"StructuredDocumentation","src":"6593:35:49","text":"@dev See {IERC4626-maxMint}. "},"functionSelector":"c63d75b6","id":11324,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"6642:7:49","nodeType":"FunctionDefinition","parameters":{"id":11313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11324,"src":"6650:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11311,"name":"address","nodeType":"ElementaryTypeName","src":"6650:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6649:9:49"},"returnParameters":{"id":11316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11315,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11324,"src":"6688:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11314,"name":"uint256","nodeType":"ElementaryTypeName","src":"6688:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6687:9:49"},"scope":11750,"src":"6633:105:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9747],"body":{"id":11341,"nodeType":"Block","src":"6862:79:49","statements":[{"expression":{"arguments":[{"arguments":[{"id":11334,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11327,"src":"6906:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11333,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10573,"src":"6896:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":11335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6896:16:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11336,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"6914:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6919:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"6914:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6928:5:49","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"6914:19:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11332,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11657,"src":"6879:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6879:55:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11331,"id":11340,"nodeType":"Return","src":"6872:62:49"}]},"documentation":{"id":11325,"nodeType":"StructuredDocumentation","src":"6744:39:49","text":"@dev See {IERC4626-maxWithdraw}. "},"functionSelector":"ce96cb77","id":11342,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"6797:11:49","nodeType":"FunctionDefinition","parameters":{"id":11328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11327,"mutability":"mutable","name":"owner","nameLocation":"6817:5:49","nodeType":"VariableDeclaration","scope":11342,"src":"6809:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11326,"name":"address","nodeType":"ElementaryTypeName","src":"6809:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6808:15:49"},"returnParameters":{"id":11331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11330,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11342,"src":"6853:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11329,"name":"uint256","nodeType":"ElementaryTypeName","src":"6853:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6852:9:49"},"scope":11750,"src":"6788:153:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9775],"body":{"id":11354,"nodeType":"Block","src":"7061:40:49","statements":[{"expression":{"arguments":[{"id":11351,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11345,"src":"7088:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11350,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10573,"src":"7078:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":11352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7078:16:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11349,"id":11353,"nodeType":"Return","src":"7071:23:49"}]},"documentation":{"id":11343,"nodeType":"StructuredDocumentation","src":"6947:37:49","text":"@dev See {IERC4626-maxRedeem}. "},"functionSelector":"d905777e","id":11355,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"6998:9:49","nodeType":"FunctionDefinition","parameters":{"id":11346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11345,"mutability":"mutable","name":"owner","nameLocation":"7016:5:49","nodeType":"VariableDeclaration","scope":11355,"src":"7008:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11344,"name":"address","nodeType":"ElementaryTypeName","src":"7008:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7007:15:49"},"returnParameters":{"id":11349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11348,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11355,"src":"7052:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11347,"name":"uint256","nodeType":"ElementaryTypeName","src":"7052:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7051:9:49"},"scope":11750,"src":"6989:112:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9703],"body":{"id":11370,"nodeType":"Block","src":"7232:69:49","statements":[{"expression":{"arguments":[{"id":11364,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11358,"src":"7266:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11365,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"7274:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7279:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"7274:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7288:5:49","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"7274:19:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11363,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11629,"src":"7249:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7249:45:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11362,"id":11369,"nodeType":"Return","src":"7242:52:49"}]},"documentation":{"id":11356,"nodeType":"StructuredDocumentation","src":"7107:42:49","text":"@dev See {IERC4626-previewDeposit}. "},"functionSelector":"ef8b30f7","id":11371,"implemented":true,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"7163:14:49","nodeType":"FunctionDefinition","parameters":{"id":11359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11358,"mutability":"mutable","name":"assets","nameLocation":"7186:6:49","nodeType":"VariableDeclaration","scope":11371,"src":"7178:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11357,"name":"uint256","nodeType":"ElementaryTypeName","src":"7178:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7177:16:49"},"returnParameters":{"id":11362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11361,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11371,"src":"7223:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11360,"name":"uint256","nodeType":"ElementaryTypeName","src":"7223:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7222:9:49"},"scope":11750,"src":"7154:147:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9729],"body":{"id":11386,"nodeType":"Block","src":"7426:68:49","statements":[{"expression":{"arguments":[{"id":11380,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11374,"src":"7460:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11381,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"7468:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7473:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"7468:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7482:4:49","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":18217,"src":"7468:18:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11379,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11657,"src":"7443:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7443:44:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11378,"id":11385,"nodeType":"Return","src":"7436:51:49"}]},"documentation":{"id":11372,"nodeType":"StructuredDocumentation","src":"7307:39:49","text":"@dev See {IERC4626-previewMint}. "},"functionSelector":"b3d7f6b9","id":11387,"implemented":true,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"7360:11:49","nodeType":"FunctionDefinition","parameters":{"id":11375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11374,"mutability":"mutable","name":"shares","nameLocation":"7380:6:49","nodeType":"VariableDeclaration","scope":11387,"src":"7372:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11373,"name":"uint256","nodeType":"ElementaryTypeName","src":"7372:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7371:16:49"},"returnParameters":{"id":11378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11377,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11387,"src":"7417:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11376,"name":"uint256","nodeType":"ElementaryTypeName","src":"7417:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7416:9:49"},"scope":11750,"src":"7351:143:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9755],"body":{"id":11402,"nodeType":"Block","src":"7627:68:49","statements":[{"expression":{"arguments":[{"id":11396,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11390,"src":"7661:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11397,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"7669:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7674:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"7669:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11399,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7683:4:49","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":18217,"src":"7669:18:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11395,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11629,"src":"7644:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7644:44:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11394,"id":11401,"nodeType":"Return","src":"7637:51:49"}]},"documentation":{"id":11388,"nodeType":"StructuredDocumentation","src":"7500:43:49","text":"@dev See {IERC4626-previewWithdraw}. "},"functionSelector":"0a28a477","id":11403,"implemented":true,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"7557:15:49","nodeType":"FunctionDefinition","parameters":{"id":11391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11390,"mutability":"mutable","name":"assets","nameLocation":"7581:6:49","nodeType":"VariableDeclaration","scope":11403,"src":"7573:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11389,"name":"uint256","nodeType":"ElementaryTypeName","src":"7573:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7572:16:49"},"returnParameters":{"id":11394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11393,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11403,"src":"7618:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11392,"name":"uint256","nodeType":"ElementaryTypeName","src":"7618:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7617:9:49"},"scope":11750,"src":"7548:147:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9783],"body":{"id":11418,"nodeType":"Block","src":"7824:69:49","statements":[{"expression":{"arguments":[{"id":11412,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11406,"src":"7858:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":11413,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"7866:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":11414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7871:8:49","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":18220,"src":"7866:13:49","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$18220_$","typeString":"type(enum Math.Rounding)"}},"id":11415,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7880:5:49","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":18216,"src":"7866:19:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":11411,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11657,"src":"7841:16:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":11416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7841:45:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11410,"id":11417,"nodeType":"Return","src":"7834:52:49"}]},"documentation":{"id":11404,"nodeType":"StructuredDocumentation","src":"7701:41:49","text":"@dev See {IERC4626-previewRedeem}. "},"functionSelector":"4cdad506","id":11419,"implemented":true,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"7756:13:49","nodeType":"FunctionDefinition","parameters":{"id":11407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11406,"mutability":"mutable","name":"shares","nameLocation":"7778:6:49","nodeType":"VariableDeclaration","scope":11419,"src":"7770:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11405,"name":"uint256","nodeType":"ElementaryTypeName","src":"7770:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7769:16:49"},"returnParameters":{"id":11410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11409,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11419,"src":"7815:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11408,"name":"uint256","nodeType":"ElementaryTypeName","src":"7815:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7814:9:49"},"scope":11750,"src":"7747:146:49","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[9713],"body":{"id":11462,"nodeType":"Block","src":"8023:308:49","statements":[{"assignments":[11430],"declarations":[{"constant":false,"id":11430,"mutability":"mutable","name":"maxAssets","nameLocation":"8041:9:49","nodeType":"VariableDeclaration","scope":11462,"src":"8033:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11429,"name":"uint256","nodeType":"ElementaryTypeName","src":"8033:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11434,"initialValue":{"arguments":[{"id":11432,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11424,"src":"8064:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11431,"name":"maxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11309,"src":"8053:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":11433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8053:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8033:40:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11435,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11422,"src":"8087:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":11436,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11430,"src":"8096:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8087:18:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11445,"nodeType":"IfStatement","src":"8083:110:49","trueBody":{"id":11444,"nodeType":"Block","src":"8107:86:49","statements":[{"errorCall":{"arguments":[{"id":11439,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11424,"src":"8154:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11440,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11422,"src":"8164:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11441,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11430,"src":"8172:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11438,"name":"ERC4626ExceededMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11099,"src":"8128:25:49","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":11442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8128:54:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11443,"nodeType":"RevertStatement","src":"8121:61:49"}]}},{"assignments":[11447],"declarations":[{"constant":false,"id":11447,"mutability":"mutable","name":"shares","nameLocation":"8211:6:49","nodeType":"VariableDeclaration","scope":11462,"src":"8203:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11446,"name":"uint256","nodeType":"ElementaryTypeName","src":"8203:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11451,"initialValue":{"arguments":[{"id":11449,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11422,"src":"8235:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11448,"name":"previewDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11371,"src":"8220:14:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":11450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8220:22:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8203:39:49"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11453,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"8261:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8261:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11455,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11424,"src":"8275:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11456,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11422,"src":"8285:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11457,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11447,"src":"8293:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11452,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11694,"src":"8252:8:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":11458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8252:48:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11459,"nodeType":"ExpressionStatement","src":"8252:48:49"},{"expression":{"id":11460,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11447,"src":"8318:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11428,"id":11461,"nodeType":"Return","src":"8311:13:49"}]},"documentation":{"id":11420,"nodeType":"StructuredDocumentation","src":"7899:35:49","text":"@dev See {IERC4626-deposit}. "},"functionSelector":"6e553f65","id":11463,"implemented":true,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"7948:7:49","nodeType":"FunctionDefinition","parameters":{"id":11425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11422,"mutability":"mutable","name":"assets","nameLocation":"7964:6:49","nodeType":"VariableDeclaration","scope":11463,"src":"7956:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11421,"name":"uint256","nodeType":"ElementaryTypeName","src":"7956:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11424,"mutability":"mutable","name":"receiver","nameLocation":"7980:8:49","nodeType":"VariableDeclaration","scope":11463,"src":"7972:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11423,"name":"address","nodeType":"ElementaryTypeName","src":"7972:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7955:34:49"},"returnParameters":{"id":11428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11427,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11463,"src":"8014:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11426,"name":"uint256","nodeType":"ElementaryTypeName","src":"8014:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8013:9:49"},"scope":11750,"src":"7939:392:49","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9739],"body":{"id":11506,"nodeType":"Block","src":"8455:299:49","statements":[{"assignments":[11474],"declarations":[{"constant":false,"id":11474,"mutability":"mutable","name":"maxShares","nameLocation":"8473:9:49","nodeType":"VariableDeclaration","scope":11506,"src":"8465:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11473,"name":"uint256","nodeType":"ElementaryTypeName","src":"8465:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11478,"initialValue":{"arguments":[{"id":11476,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11468,"src":"8493:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11475,"name":"maxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11324,"src":"8485:7:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":11477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8485:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8465:37:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11479,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11466,"src":"8516:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":11480,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"8525:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8516:18:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11489,"nodeType":"IfStatement","src":"8512:107:49","trueBody":{"id":11488,"nodeType":"Block","src":"8536:83:49","statements":[{"errorCall":{"arguments":[{"id":11483,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11468,"src":"8580:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11484,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11466,"src":"8590:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11485,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11474,"src":"8598:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11482,"name":"ERC4626ExceededMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11108,"src":"8557:22:49","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":11486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8557:51:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11487,"nodeType":"RevertStatement","src":"8550:58:49"}]}},{"assignments":[11491],"declarations":[{"constant":false,"id":11491,"mutability":"mutable","name":"assets","nameLocation":"8637:6:49","nodeType":"VariableDeclaration","scope":11506,"src":"8629:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11490,"name":"uint256","nodeType":"ElementaryTypeName","src":"8629:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11495,"initialValue":{"arguments":[{"id":11493,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11466,"src":"8658:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11492,"name":"previewMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11387,"src":"8646:11:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":11494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8646:19:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8629:36:49"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11497,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"8684:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8684:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11499,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11468,"src":"8698:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11500,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11491,"src":"8708:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11501,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11466,"src":"8716:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11496,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11694,"src":"8675:8:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":11502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8675:48:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11503,"nodeType":"ExpressionStatement","src":"8675:48:49"},{"expression":{"id":11504,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11491,"src":"8741:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11472,"id":11505,"nodeType":"Return","src":"8734:13:49"}]},"documentation":{"id":11464,"nodeType":"StructuredDocumentation","src":"8337:32:49","text":"@dev See {IERC4626-mint}. "},"functionSelector":"94bf804d","id":11507,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"8383:4:49","nodeType":"FunctionDefinition","parameters":{"id":11469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11466,"mutability":"mutable","name":"shares","nameLocation":"8396:6:49","nodeType":"VariableDeclaration","scope":11507,"src":"8388:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11465,"name":"uint256","nodeType":"ElementaryTypeName","src":"8388:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11468,"mutability":"mutable","name":"receiver","nameLocation":"8412:8:49","nodeType":"VariableDeclaration","scope":11507,"src":"8404:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11467,"name":"address","nodeType":"ElementaryTypeName","src":"8404:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8387:34:49"},"returnParameters":{"id":11472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11507,"src":"8446:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11470,"name":"uint256","nodeType":"ElementaryTypeName","src":"8446:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8445:9:49"},"scope":11750,"src":"8374:380:49","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9767],"body":{"id":11553,"nodeType":"Block","src":"8901:313:49","statements":[{"assignments":[11520],"declarations":[{"constant":false,"id":11520,"mutability":"mutable","name":"maxAssets","nameLocation":"8919:9:49","nodeType":"VariableDeclaration","scope":11553,"src":"8911:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11519,"name":"uint256","nodeType":"ElementaryTypeName","src":"8911:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11524,"initialValue":{"arguments":[{"id":11522,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11514,"src":"8943:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11521,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11342,"src":"8931:11:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":11523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8931:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8911:38:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11525,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11510,"src":"8963:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":11526,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11520,"src":"8972:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8963:18:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11535,"nodeType":"IfStatement","src":"8959:108:49","trueBody":{"id":11534,"nodeType":"Block","src":"8983:84:49","statements":[{"errorCall":{"arguments":[{"id":11529,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11514,"src":"9031:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11530,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11510,"src":"9038:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11531,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11520,"src":"9046:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11528,"name":"ERC4626ExceededMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11117,"src":"9004:26:49","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":11532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9004:52:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11533,"nodeType":"RevertStatement","src":"8997:59:49"}]}},{"assignments":[11537],"declarations":[{"constant":false,"id":11537,"mutability":"mutable","name":"shares","nameLocation":"9085:6:49","nodeType":"VariableDeclaration","scope":11553,"src":"9077:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11536,"name":"uint256","nodeType":"ElementaryTypeName","src":"9077:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11541,"initialValue":{"arguments":[{"id":11539,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11510,"src":"9110:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11538,"name":"previewWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"9094:15:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":11540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9094:23:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9077:40:49"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11543,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"9137:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9137:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11545,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11512,"src":"9151:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11546,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11514,"src":"9161:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11547,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11510,"src":"9168:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11548,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11537,"src":"9176:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11542,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11741,"src":"9127:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":11549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9127:56:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11550,"nodeType":"ExpressionStatement","src":"9127:56:49"},{"expression":{"id":11551,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11537,"src":"9201:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11518,"id":11552,"nodeType":"Return","src":"9194:13:49"}]},"documentation":{"id":11508,"nodeType":"StructuredDocumentation","src":"8760:36:49","text":"@dev See {IERC4626-withdraw}. "},"functionSelector":"b460af94","id":11554,"implemented":true,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"8810:8:49","nodeType":"FunctionDefinition","parameters":{"id":11515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11510,"mutability":"mutable","name":"assets","nameLocation":"8827:6:49","nodeType":"VariableDeclaration","scope":11554,"src":"8819:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11509,"name":"uint256","nodeType":"ElementaryTypeName","src":"8819:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11512,"mutability":"mutable","name":"receiver","nameLocation":"8843:8:49","nodeType":"VariableDeclaration","scope":11554,"src":"8835:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11511,"name":"address","nodeType":"ElementaryTypeName","src":"8835:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11514,"mutability":"mutable","name":"owner","nameLocation":"8861:5:49","nodeType":"VariableDeclaration","scope":11554,"src":"8853:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11513,"name":"address","nodeType":"ElementaryTypeName","src":"8853:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8818:49:49"},"returnParameters":{"id":11518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11517,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11554,"src":"8892:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11516,"name":"uint256","nodeType":"ElementaryTypeName","src":"8892:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8891:9:49"},"scope":11750,"src":"8801:413:49","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[9795],"body":{"id":11600,"nodeType":"Block","src":"9357:307:49","statements":[{"assignments":[11567],"declarations":[{"constant":false,"id":11567,"mutability":"mutable","name":"maxShares","nameLocation":"9375:9:49","nodeType":"VariableDeclaration","scope":11600,"src":"9367:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11566,"name":"uint256","nodeType":"ElementaryTypeName","src":"9367:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11571,"initialValue":{"arguments":[{"id":11569,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11561,"src":"9397:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11568,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11355,"src":"9387:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":11570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9387:16:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9367:36:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11572,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11557,"src":"9417:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":11573,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11567,"src":"9426:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9417:18:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11582,"nodeType":"IfStatement","src":"9413:106:49","trueBody":{"id":11581,"nodeType":"Block","src":"9437:82:49","statements":[{"errorCall":{"arguments":[{"id":11576,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11561,"src":"9483:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11577,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11557,"src":"9490:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11578,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11567,"src":"9498:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11575,"name":"ERC4626ExceededMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11126,"src":"9458:24:49","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":11579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9458:50:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11580,"nodeType":"RevertStatement","src":"9451:57:49"}]}},{"assignments":[11584],"declarations":[{"constant":false,"id":11584,"mutability":"mutable","name":"assets","nameLocation":"9537:6:49","nodeType":"VariableDeclaration","scope":11600,"src":"9529:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11583,"name":"uint256","nodeType":"ElementaryTypeName","src":"9529:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11588,"initialValue":{"arguments":[{"id":11586,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11557,"src":"9560:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11585,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11419,"src":"9546:13:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":11587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9546:21:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9529:38:49"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11590,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"9587:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":11591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9587:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11592,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11559,"src":"9601:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11593,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11561,"src":"9611:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11594,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11584,"src":"9618:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11595,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11557,"src":"9626:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11589,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11741,"src":"9577:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":11596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9577:56:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11597,"nodeType":"ExpressionStatement","src":"9577:56:49"},{"expression":{"id":11598,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11584,"src":"9651:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11565,"id":11599,"nodeType":"Return","src":"9644:13:49"}]},"documentation":{"id":11555,"nodeType":"StructuredDocumentation","src":"9220:34:49","text":"@dev See {IERC4626-redeem}. "},"functionSelector":"ba087652","id":11601,"implemented":true,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"9268:6:49","nodeType":"FunctionDefinition","parameters":{"id":11562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11557,"mutability":"mutable","name":"shares","nameLocation":"9283:6:49","nodeType":"VariableDeclaration","scope":11601,"src":"9275:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11556,"name":"uint256","nodeType":"ElementaryTypeName","src":"9275:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11559,"mutability":"mutable","name":"receiver","nameLocation":"9299:8:49","nodeType":"VariableDeclaration","scope":11601,"src":"9291:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11558,"name":"address","nodeType":"ElementaryTypeName","src":"9291:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11561,"mutability":"mutable","name":"owner","nameLocation":"9317:5:49","nodeType":"VariableDeclaration","scope":11601,"src":"9309:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11560,"name":"address","nodeType":"ElementaryTypeName","src":"9309:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9274:49:49"},"returnParameters":{"id":11565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11564,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11601,"src":"9348:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11563,"name":"uint256","nodeType":"ElementaryTypeName","src":"9348:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9347:9:49"},"scope":11750,"src":"9259:405:49","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":11628,"nodeType":"Block","src":"9894:107:49","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11614,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10560,"src":"9925:11:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9925:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9941:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11617,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11749,"src":"9947:15:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":11618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9947:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"9941:23:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9925:39:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11621,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11262,"src":"9966:11:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9966:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9982:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9966:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11625,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11607,"src":"9985:8:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"expression":{"id":11612,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11604,"src":"9911:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9918:6:49","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"9911:13:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":11626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9911:83:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11611,"id":11627,"nodeType":"Return","src":"9904:90:49"}]},"documentation":{"id":11602,"nodeType":"StructuredDocumentation","src":"9670:113:49","text":" @dev Internal conversion function (from assets to shares) with support for rounding direction."},"id":11629,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToShares","nameLocation":"9797:16:49","nodeType":"FunctionDefinition","parameters":{"id":11608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11604,"mutability":"mutable","name":"assets","nameLocation":"9822:6:49","nodeType":"VariableDeclaration","scope":11629,"src":"9814:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11603,"name":"uint256","nodeType":"ElementaryTypeName","src":"9814:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11607,"mutability":"mutable","name":"rounding","nameLocation":"9844:8:49","nodeType":"VariableDeclaration","scope":11629,"src":"9830:22:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":11606,"nodeType":"UserDefinedTypeName","pathNode":{"id":11605,"name":"Math.Rounding","nameLocations":["9830:4:49","9835:8:49"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"9830:13:49"},"referencedDeclaration":18220,"src":"9830:13:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9813:40:49"},"returnParameters":{"id":11611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11629,"src":"9885:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11609,"name":"uint256","nodeType":"ElementaryTypeName","src":"9885:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9884:9:49"},"scope":11750,"src":"9788:213:49","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":11656,"nodeType":"Block","src":"10231:107:49","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11642,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11262,"src":"10262:11:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10262:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10278:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10262:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11646,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10560,"src":"10281:11:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11647,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10281:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10297:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11649,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11749,"src":"10303:15:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":11650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10303:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"10297:23:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10281:39:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11653,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11635,"src":"10322:8:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"expression":{"id":11640,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11632,"src":"10248:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10255:6:49","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"10248:13:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":11654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10248:83:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11639,"id":11655,"nodeType":"Return","src":"10241:90:49"}]},"documentation":{"id":11630,"nodeType":"StructuredDocumentation","src":"10007:113:49","text":" @dev Internal conversion function (from shares to assets) with support for rounding direction."},"id":11657,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToAssets","nameLocation":"10134:16:49","nodeType":"FunctionDefinition","parameters":{"id":11636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11632,"mutability":"mutable","name":"shares","nameLocation":"10159:6:49","nodeType":"VariableDeclaration","scope":11657,"src":"10151:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11631,"name":"uint256","nodeType":"ElementaryTypeName","src":"10151:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11635,"mutability":"mutable","name":"rounding","nameLocation":"10181:8:49","nodeType":"VariableDeclaration","scope":11657,"src":"10167:22:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":11634,"nodeType":"UserDefinedTypeName","pathNode":{"id":11633,"name":"Math.Rounding","nameLocations":["10167:4:49","10172:8:49"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"10167:13:49"},"referencedDeclaration":18220,"src":"10167:13:49","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"10150:40:49"},"returnParameters":{"id":11639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11638,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11657,"src":"10222:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11637,"name":"uint256","nodeType":"ElementaryTypeName","src":"10222:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10221:9:49"},"scope":11750,"src":"10125:213:49","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":11693,"nodeType":"Block","src":"10503:730:49","statements":[{"expression":{"arguments":[{"id":11672,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"11098:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":11673,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11660,"src":"11106:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":11676,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"11122:4:49","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626_$11750","typeString":"contract ERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626_$11750","typeString":"contract ERC4626"}],"id":11675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11114:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11674,"name":"address","nodeType":"ElementaryTypeName","src":"11114:7:49","typeDescriptions":{}}},"id":11677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11114:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11678,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11664,"src":"11129:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11669,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"11071:9:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$12185_$","typeString":"type(library SafeERC20)"}},"id":11671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11081:16:49","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":11848,"src":"11071:26:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":11679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11071:65:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11680,"nodeType":"ExpressionStatement","src":"11071:65:49"},{"expression":{"arguments":[{"id":11682,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11662,"src":"11152:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11683,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11666,"src":"11162:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11681,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"11146:5:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":11684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11146:23:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11685,"nodeType":"ExpressionStatement","src":"11146:23:49"},{"eventCall":{"arguments":[{"id":11687,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11660,"src":"11193:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11688,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11662,"src":"11201:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11689,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11664,"src":"11211:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11690,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11666,"src":"11219:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11686,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9647,"src":"11185:7:49","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":11691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11185:41:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11692,"nodeType":"EmitStatement","src":"11180:46:49"}]},"documentation":{"id":11658,"nodeType":"StructuredDocumentation","src":"10344:53:49","text":" @dev Deposit/mint common workflow."},"id":11694,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"10411:8:49","nodeType":"FunctionDefinition","parameters":{"id":11667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11660,"mutability":"mutable","name":"caller","nameLocation":"10428:6:49","nodeType":"VariableDeclaration","scope":11694,"src":"10420:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11659,"name":"address","nodeType":"ElementaryTypeName","src":"10420:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11662,"mutability":"mutable","name":"receiver","nameLocation":"10444:8:49","nodeType":"VariableDeclaration","scope":11694,"src":"10436:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11661,"name":"address","nodeType":"ElementaryTypeName","src":"10436:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11664,"mutability":"mutable","name":"assets","nameLocation":"10462:6:49","nodeType":"VariableDeclaration","scope":11694,"src":"10454:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11663,"name":"uint256","nodeType":"ElementaryTypeName","src":"10454:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11666,"mutability":"mutable","name":"shares","nameLocation":"10478:6:49","nodeType":"VariableDeclaration","scope":11694,"src":"10470:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11665,"name":"uint256","nodeType":"ElementaryTypeName","src":"10470:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10419:66:49"},"returnParameters":{"id":11668,"nodeType":"ParameterList","parameters":[],"src":"10503:0:49"},"scope":11750,"src":"10402:831:49","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":11740,"nodeType":"Block","src":"11463:752:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11708,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11697,"src":"11477:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11709,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11701,"src":"11487:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11477:15:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11718,"nodeType":"IfStatement","src":"11473:84:49","trueBody":{"id":11717,"nodeType":"Block","src":"11494:63:49","statements":[{"expression":{"arguments":[{"id":11712,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11701,"src":"11524:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11713,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11697,"src":"11531:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11714,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11705,"src":"11539:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11711,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10986,"src":"11508:15:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":11715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11508:38:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11716,"nodeType":"ExpressionStatement","src":"11508:38:49"}]}},{"expression":{"arguments":[{"id":11720,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11701,"src":"12071:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11721,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11705,"src":"12078:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11719,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10860,"src":"12065:5:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":11722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12065:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11723,"nodeType":"ExpressionStatement","src":"12065:20:49"},{"expression":{"arguments":[{"id":11727,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"12118:6:49","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":11728,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11699,"src":"12126:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11729,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11703,"src":"12136:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11724,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"12095:9:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$12185_$","typeString":"type(library SafeERC20)"}},"id":11726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12105:12:49","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":11821,"src":"12095:22:49","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":11730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12095:48:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11731,"nodeType":"ExpressionStatement","src":"12095:48:49"},{"eventCall":{"arguments":[{"id":11733,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11697,"src":"12168:6:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11734,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11699,"src":"12176:8:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11735,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11701,"src":"12186:5:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11736,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11703,"src":"12193:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11737,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11705,"src":"12201:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11732,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9659,"src":"12159:8:49","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":11738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12159:49:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11739,"nodeType":"EmitStatement","src":"12154:54:49"}]},"documentation":{"id":11695,"nodeType":"StructuredDocumentation","src":"11239:56:49","text":" @dev Withdraw/redeem common workflow."},"id":11741,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"11309:9:49","nodeType":"FunctionDefinition","parameters":{"id":11706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11697,"mutability":"mutable","name":"caller","nameLocation":"11336:6:49","nodeType":"VariableDeclaration","scope":11741,"src":"11328:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11696,"name":"address","nodeType":"ElementaryTypeName","src":"11328:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11699,"mutability":"mutable","name":"receiver","nameLocation":"11360:8:49","nodeType":"VariableDeclaration","scope":11741,"src":"11352:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11698,"name":"address","nodeType":"ElementaryTypeName","src":"11352:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11701,"mutability":"mutable","name":"owner","nameLocation":"11386:5:49","nodeType":"VariableDeclaration","scope":11741,"src":"11378:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11700,"name":"address","nodeType":"ElementaryTypeName","src":"11378:7:49","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11703,"mutability":"mutable","name":"assets","nameLocation":"11409:6:49","nodeType":"VariableDeclaration","scope":11741,"src":"11401:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11702,"name":"uint256","nodeType":"ElementaryTypeName","src":"11401:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11705,"mutability":"mutable","name":"shares","nameLocation":"11433:6:49","nodeType":"VariableDeclaration","scope":11741,"src":"11425:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11704,"name":"uint256","nodeType":"ElementaryTypeName","src":"11425:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11318:127:49"},"returnParameters":{"id":11707,"nodeType":"ParameterList","parameters":[],"src":"11463:0:49"},"scope":11750,"src":"11300:915:49","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":11748,"nodeType":"Block","src":"12286:25:49","statements":[{"expression":{"hexValue":"30","id":11746,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12303:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":11745,"id":11747,"nodeType":"Return","src":"12296:8:49"}]},"id":11749,"implemented":true,"kind":"function","modifiers":[],"name":"_decimalsOffset","nameLocation":"12230:15:49","nodeType":"FunctionDefinition","parameters":{"id":11742,"nodeType":"ParameterList","parameters":[],"src":"12245:2:49"},"returnParameters":{"id":11745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11749,"src":"12279:5:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11743,"name":"uint8","nodeType":"ElementaryTypeName","src":"12279:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"12278:7:49"},"scope":11750,"src":"12221:90:49","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":11751,"src":"3269:9044:49","usedErrors":[9826,9831,9836,9845,9850,9855,11099,11108,11117,11126,11788],"usedEvents":[9647,9659,10999,11008]}],"src":"118:12196:49"},"id":49},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[11065],"IERC20Metadata":[11776]},"id":11777,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11752,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"125:24:50"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":11754,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11777,"sourceUnit":11066,"src":"151:37:50","symbolAliases":[{"foreign":{"id":11753,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"159:6:50","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":11756,"name":"IERC20","nameLocations":["306:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"306:6:50"},"id":11757,"nodeType":"InheritanceSpecifier","src":"306:6:50"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":11755,"nodeType":"StructuredDocumentation","src":"190:87:50","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":11776,"linearizedBaseContracts":[11776,11065],"name":"IERC20Metadata","nameLocation":"288:14:50","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":11758,"nodeType":"StructuredDocumentation","src":"319:54:50","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":11763,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:50","nodeType":"FunctionDefinition","parameters":{"id":11759,"nodeType":"ParameterList","parameters":[],"src":"391:2:50"},"returnParameters":{"id":11762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11761,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11763,"src":"417:13:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11760,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:50"},"scope":11776,"src":"378:54:50","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":11764,"nodeType":"StructuredDocumentation","src":"438:56:50","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":11769,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:50","nodeType":"FunctionDefinition","parameters":{"id":11765,"nodeType":"ParameterList","parameters":[],"src":"514:2:50"},"returnParameters":{"id":11768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11767,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11769,"src":"540:13:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11766,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:50"},"scope":11776,"src":"499:56:50","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":11770,"nodeType":"StructuredDocumentation","src":"561:65:50","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":11775,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:50","nodeType":"FunctionDefinition","parameters":{"id":11771,"nodeType":"ParameterList","parameters":[],"src":"648:2:50"},"returnParameters":{"id":11774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11773,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11775,"src":"674:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11772,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:50"},"scope":11776,"src":"631:50:50","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":11777,"src":"278:405:50","usedErrors":[],"usedEvents":[10999,11008]}],"src":"125:559:50"},"id":50},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","exportedSymbols":{"IERC1363":[9593],"IERC20":[11065],"SafeERC20":[12185]},"id":12186,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":11778,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:51"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":11780,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12186,"sourceUnit":11066,"src":"141:37:51","symbolAliases":[{"foreign":{"id":11779,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"149:6:51","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"../../../interfaces/IERC1363.sol","id":11782,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12186,"sourceUnit":9594,"src":"179:58:51","symbolAliases":[{"foreign":{"id":11781,"name":"IERC1363","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9593,"src":"187:8:51","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SafeERC20","contractDependencies":[],"contractKind":"library","documentation":{"id":11783,"nodeType":"StructuredDocumentation","src":"239:458:51","text":" @title SafeERC20\n @dev Wrappers around ERC-20 operations that throw on failure (when the token\n contract returns false). Tokens that return no value (and instead revert or\n throw on failure) are also supported, non-reverting calls are assumed to be\n successful.\n To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n which allows you to call the safe operations as `token.safeTransfer(...)`, etc."},"fullyImplemented":true,"id":12185,"linearizedBaseContracts":[12185],"name":"SafeERC20","nameLocation":"706:9:51","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":11784,"nodeType":"StructuredDocumentation","src":"722:65:51","text":" @dev An operation with an ERC-20 token failed."},"errorSelector":"5274afe7","id":11788,"name":"SafeERC20FailedOperation","nameLocation":"798:24:51","nodeType":"ErrorDefinition","parameters":{"id":11787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11786,"mutability":"mutable","name":"token","nameLocation":"831:5:51","nodeType":"VariableDeclaration","scope":11788,"src":"823:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11785,"name":"address","nodeType":"ElementaryTypeName","src":"823:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"822:15:51"},"src":"792:46:51"},{"documentation":{"id":11789,"nodeType":"StructuredDocumentation","src":"844:71:51","text":" @dev Indicates a failed `decreaseAllowance` request."},"errorSelector":"e570110f","id":11797,"name":"SafeERC20FailedDecreaseAllowance","nameLocation":"926:32:51","nodeType":"ErrorDefinition","parameters":{"id":11796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11791,"mutability":"mutable","name":"spender","nameLocation":"967:7:51","nodeType":"VariableDeclaration","scope":11797,"src":"959:15:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11790,"name":"address","nodeType":"ElementaryTypeName","src":"959:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11793,"mutability":"mutable","name":"currentAllowance","nameLocation":"984:16:51","nodeType":"VariableDeclaration","scope":11797,"src":"976:24:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11792,"name":"uint256","nodeType":"ElementaryTypeName","src":"976:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11795,"mutability":"mutable","name":"requestedDecrease","nameLocation":"1010:17:51","nodeType":"VariableDeclaration","scope":11797,"src":"1002:25:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11794,"name":"uint256","nodeType":"ElementaryTypeName","src":"1002:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"958:70:51"},"src":"920:109:51"},{"body":{"id":11820,"nodeType":"Block","src":"1291:88:51","statements":[{"expression":{"arguments":[{"id":11809,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11801,"src":"1321:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":11812,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11801,"src":"1343:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1349:8:51","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":11032,"src":"1343:14:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":11814,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11803,"src":"1360:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11815,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11805,"src":"1364:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11816,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1359:11:51","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}],"expression":{"id":11810,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1328:3:51","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11811,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1332:10:51","memberName":"encodeCall","nodeType":"MemberAccess","src":"1328:14:51","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1328:43:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11808,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12143,"src":"1301:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":11818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1301:71:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11819,"nodeType":"ExpressionStatement","src":"1301:71:51"}]},"documentation":{"id":11798,"nodeType":"StructuredDocumentation","src":"1035:179:51","text":" @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n non-reverting calls are assumed to be successful."},"id":11821,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransfer","nameLocation":"1228:12:51","nodeType":"FunctionDefinition","parameters":{"id":11806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11801,"mutability":"mutable","name":"token","nameLocation":"1248:5:51","nodeType":"VariableDeclaration","scope":11821,"src":"1241:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11800,"nodeType":"UserDefinedTypeName","pathNode":{"id":11799,"name":"IERC20","nameLocations":["1241:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"1241:6:51"},"referencedDeclaration":11065,"src":"1241:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":11803,"mutability":"mutable","name":"to","nameLocation":"1263:2:51","nodeType":"VariableDeclaration","scope":11821,"src":"1255:10:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11802,"name":"address","nodeType":"ElementaryTypeName","src":"1255:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11805,"mutability":"mutable","name":"value","nameLocation":"1275:5:51","nodeType":"VariableDeclaration","scope":11821,"src":"1267:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11804,"name":"uint256","nodeType":"ElementaryTypeName","src":"1267:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1240:41:51"},"returnParameters":{"id":11807,"nodeType":"ParameterList","parameters":[],"src":"1291:0:51"},"scope":12185,"src":"1219:160:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11847,"nodeType":"Block","src":"1708:98:51","statements":[{"expression":{"arguments":[{"id":11835,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"1738:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":11838,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11825,"src":"1760:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1766:12:51","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":11064,"src":"1760:18:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},{"components":[{"id":11840,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11827,"src":"1781:4:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11841,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11829,"src":"1787:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11842,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11831,"src":"1791:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11843,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1780:17:51","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_address_$_t_uint256_$","typeString":"tuple(address,address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_address_$_t_uint256_$","typeString":"tuple(address,address,uint256)"}],"expression":{"id":11836,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1745:3:51","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11837,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1749:10:51","memberName":"encodeCall","nodeType":"MemberAccess","src":"1745:14:51","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1745:53:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11834,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12143,"src":"1718:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":11845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1718:81:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11846,"nodeType":"ExpressionStatement","src":"1718:81:51"}]},"documentation":{"id":11822,"nodeType":"StructuredDocumentation","src":"1385:228:51","text":" @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n calling contract. If `token` returns no value, non-reverting calls are assumed to be successful."},"id":11848,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1627:16:51","nodeType":"FunctionDefinition","parameters":{"id":11832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11825,"mutability":"mutable","name":"token","nameLocation":"1651:5:51","nodeType":"VariableDeclaration","scope":11848,"src":"1644:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11824,"nodeType":"UserDefinedTypeName","pathNode":{"id":11823,"name":"IERC20","nameLocations":["1644:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"1644:6:51"},"referencedDeclaration":11065,"src":"1644:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":11827,"mutability":"mutable","name":"from","nameLocation":"1666:4:51","nodeType":"VariableDeclaration","scope":11848,"src":"1658:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11826,"name":"address","nodeType":"ElementaryTypeName","src":"1658:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11829,"mutability":"mutable","name":"to","nameLocation":"1680:2:51","nodeType":"VariableDeclaration","scope":11848,"src":"1672:10:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11828,"name":"address","nodeType":"ElementaryTypeName","src":"1672:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11831,"mutability":"mutable","name":"value","nameLocation":"1692:5:51","nodeType":"VariableDeclaration","scope":11848,"src":"1684:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11830,"name":"uint256","nodeType":"ElementaryTypeName","src":"1684:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1643:55:51"},"returnParameters":{"id":11833,"nodeType":"ParameterList","parameters":[],"src":"1708:0:51"},"scope":12185,"src":"1618:188:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11878,"nodeType":"Block","src":"2548:139:51","statements":[{"assignments":[11860],"declarations":[{"constant":false,"id":11860,"mutability":"mutable","name":"oldAllowance","nameLocation":"2566:12:51","nodeType":"VariableDeclaration","scope":11878,"src":"2558:20:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11859,"name":"uint256","nodeType":"ElementaryTypeName","src":"2558:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11869,"initialValue":{"arguments":[{"arguments":[{"id":11865,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"2605:4:51","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$12185","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$12185","typeString":"library SafeERC20"}],"id":11864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2597:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11863,"name":"address","nodeType":"ElementaryTypeName","src":"2597:7:51","typeDescriptions":{}}},"id":11866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2597:13:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11867,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11854,"src":"2612:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11861,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11852,"src":"2581:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2587:9:51","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":11042,"src":"2581:15:51","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":11868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2581:39:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2558:62:51"},{"expression":{"arguments":[{"id":11871,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11852,"src":"2643:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":11872,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11854,"src":"2650:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11873,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11860,"src":"2659:12:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11874,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11856,"src":"2674:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2659:20:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11870,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"2630:12:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":11876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2630:50:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11877,"nodeType":"ExpressionStatement","src":"2630:50:51"}]},"documentation":{"id":11849,"nodeType":"StructuredDocumentation","src":"1812:645:51","text":" @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":11879,"implemented":true,"kind":"function","modifiers":[],"name":"safeIncreaseAllowance","nameLocation":"2471:21:51","nodeType":"FunctionDefinition","parameters":{"id":11857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11852,"mutability":"mutable","name":"token","nameLocation":"2500:5:51","nodeType":"VariableDeclaration","scope":11879,"src":"2493:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11851,"nodeType":"UserDefinedTypeName","pathNode":{"id":11850,"name":"IERC20","nameLocations":["2493:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"2493:6:51"},"referencedDeclaration":11065,"src":"2493:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":11854,"mutability":"mutable","name":"spender","nameLocation":"2515:7:51","nodeType":"VariableDeclaration","scope":11879,"src":"2507:15:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11853,"name":"address","nodeType":"ElementaryTypeName","src":"2507:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11856,"mutability":"mutable","name":"value","nameLocation":"2532:5:51","nodeType":"VariableDeclaration","scope":11879,"src":"2524:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11855,"name":"uint256","nodeType":"ElementaryTypeName","src":"2524:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2492:46:51"},"returnParameters":{"id":11858,"nodeType":"ParameterList","parameters":[],"src":"2548:0:51"},"scope":12185,"src":"2462:225:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11921,"nodeType":"Block","src":"3453:370:51","statements":[{"id":11920,"nodeType":"UncheckedBlock","src":"3463:354:51","statements":[{"assignments":[11891],"declarations":[{"constant":false,"id":11891,"mutability":"mutable","name":"currentAllowance","nameLocation":"3495:16:51","nodeType":"VariableDeclaration","scope":11920,"src":"3487:24:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11890,"name":"uint256","nodeType":"ElementaryTypeName","src":"3487:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11900,"initialValue":{"arguments":[{"arguments":[{"id":11896,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3538:4:51","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$12185","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$12185","typeString":"library SafeERC20"}],"id":11895,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3530:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11894,"name":"address","nodeType":"ElementaryTypeName","src":"3530:7:51","typeDescriptions":{}}},"id":11897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3530:13:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11898,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11885,"src":"3545:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11892,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11883,"src":"3514:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3520:9:51","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":11042,"src":"3514:15:51","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":11899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3514:39:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3487:66:51"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11901,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11891,"src":"3571:16:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11902,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11887,"src":"3590:17:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3571:36:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11911,"nodeType":"IfStatement","src":"3567:160:51","trueBody":{"id":11910,"nodeType":"Block","src":"3609:118:51","statements":[{"errorCall":{"arguments":[{"id":11905,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11885,"src":"3667:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11906,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11891,"src":"3676:16:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11907,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11887,"src":"3694:17:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11904,"name":"SafeERC20FailedDecreaseAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11797,"src":"3634:32:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":11908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3634:78:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11909,"nodeType":"RevertStatement","src":"3627:85:51"}]}},{"expression":{"arguments":[{"id":11913,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11883,"src":"3753:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":11914,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11885,"src":"3760:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11915,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11891,"src":"3769:16:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":11916,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11887,"src":"3788:17:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3769:36:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11912,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"3740:12:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":11918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3740:66:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11919,"nodeType":"ExpressionStatement","src":"3740:66:51"}]}]},"documentation":{"id":11880,"nodeType":"StructuredDocumentation","src":"2693:657:51","text":" @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n value, non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":11922,"implemented":true,"kind":"function","modifiers":[],"name":"safeDecreaseAllowance","nameLocation":"3364:21:51","nodeType":"FunctionDefinition","parameters":{"id":11888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11883,"mutability":"mutable","name":"token","nameLocation":"3393:5:51","nodeType":"VariableDeclaration","scope":11922,"src":"3386:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11882,"nodeType":"UserDefinedTypeName","pathNode":{"id":11881,"name":"IERC20","nameLocations":["3386:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"3386:6:51"},"referencedDeclaration":11065,"src":"3386:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":11885,"mutability":"mutable","name":"spender","nameLocation":"3408:7:51","nodeType":"VariableDeclaration","scope":11922,"src":"3400:15:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11884,"name":"address","nodeType":"ElementaryTypeName","src":"3400:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11887,"mutability":"mutable","name":"requestedDecrease","nameLocation":"3425:17:51","nodeType":"VariableDeclaration","scope":11922,"src":"3417:25:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11886,"name":"uint256","nodeType":"ElementaryTypeName","src":"3417:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3385:58:51"},"returnParameters":{"id":11889,"nodeType":"ParameterList","parameters":[],"src":"3453:0:51"},"scope":12185,"src":"3355:468:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11968,"nodeType":"Block","src":"4477:303:51","statements":[{"assignments":[11934],"declarations":[{"constant":false,"id":11934,"mutability":"mutable","name":"approvalCall","nameLocation":"4500:12:51","nodeType":"VariableDeclaration","scope":11968,"src":"4487:25:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11933,"name":"bytes","nodeType":"ElementaryTypeName","src":"4487:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11943,"initialValue":{"arguments":[{"expression":{"id":11937,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"4530:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4536:7:51","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"4530:13:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":11939,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11928,"src":"4546:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11940,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11930,"src":"4555:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11941,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4545:16:51","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}],"expression":{"id":11935,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4515:3:51","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4519:10:51","memberName":"encodeCall","nodeType":"MemberAccess","src":"4515:14:51","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4515:47:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4487:75:51"},{"condition":{"id":11948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4577:45:51","subExpression":{"arguments":[{"id":11945,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"4602:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":11946,"name":"approvalCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11934,"src":"4609:12:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11944,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12184,"src":"4578:23:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":11947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4578:44:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11967,"nodeType":"IfStatement","src":"4573:201:51","trueBody":{"id":11966,"nodeType":"Block","src":"4624:150:51","statements":[{"expression":{"arguments":[{"id":11950,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"4658:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":11953,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"4680:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":11954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4686:7:51","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"4680:13:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":11955,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11928,"src":"4696:7:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":11956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4705:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":11957,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4695:12:51","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_rational_0_by_1_$","typeString":"tuple(address,int_const 0)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_rational_0_by_1_$","typeString":"tuple(address,int_const 0)"}],"expression":{"id":11951,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4665:3:51","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4669:10:51","memberName":"encodeCall","nodeType":"MemberAccess","src":"4665:14:51","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4665:43:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11949,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12143,"src":"4638:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":11959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4638:71:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11960,"nodeType":"ExpressionStatement","src":"4638:71:51"},{"expression":{"arguments":[{"id":11962,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"4743:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},{"id":11963,"name":"approvalCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11934,"src":"4750:12:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11961,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12143,"src":"4723:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":11964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4723:40:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11965,"nodeType":"ExpressionStatement","src":"4723:40:51"}]}}]},"documentation":{"id":11923,"nodeType":"StructuredDocumentation","src":"3829:566:51","text":" @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n to be set to zero before setting it to a non-zero value, such as USDT.\n NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n set here."},"id":11969,"implemented":true,"kind":"function","modifiers":[],"name":"forceApprove","nameLocation":"4409:12:51","nodeType":"FunctionDefinition","parameters":{"id":11931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11926,"mutability":"mutable","name":"token","nameLocation":"4429:5:51","nodeType":"VariableDeclaration","scope":11969,"src":"4422:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":11925,"nodeType":"UserDefinedTypeName","pathNode":{"id":11924,"name":"IERC20","nameLocations":["4422:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"4422:6:51"},"referencedDeclaration":11065,"src":"4422:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":11928,"mutability":"mutable","name":"spender","nameLocation":"4444:7:51","nodeType":"VariableDeclaration","scope":11969,"src":"4436:15:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11927,"name":"address","nodeType":"ElementaryTypeName","src":"4436:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11930,"mutability":"mutable","name":"value","nameLocation":"4461:5:51","nodeType":"VariableDeclaration","scope":11969,"src":"4453:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11929,"name":"uint256","nodeType":"ElementaryTypeName","src":"4453:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4421:46:51"},"returnParameters":{"id":11932,"nodeType":"ParameterList","parameters":[],"src":"4477:0:51"},"scope":12185,"src":"4400:380:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12011,"nodeType":"Block","src":"5227:219:51","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":11982,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11975,"src":"5241:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":11983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5244:4:51","memberName":"code","nodeType":"MemberAccess","src":"5241:7:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5249:6:51","memberName":"length","nodeType":"MemberAccess","src":"5241:14:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5259:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5241:19:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":12000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5327:39:51","subExpression":{"arguments":[{"id":11996,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11975,"src":"5350:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11997,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11977,"src":"5354:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11998,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11979,"src":"5361:4:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":11994,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11973,"src":"5328:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},"id":11995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5334:15:51","memberName":"transferAndCall","nodeType":"MemberAccess","referencedDeclaration":9544,"src":"5328:21:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":11999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5328:38:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12009,"nodeType":"IfStatement","src":"5323:117:51","trueBody":{"id":12008,"nodeType":"Block","src":"5368:72:51","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":12004,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11973,"src":"5422:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}],"id":12003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5414:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12002,"name":"address","nodeType":"ElementaryTypeName","src":"5414:7:51","typeDescriptions":{}}},"id":12005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5414:14:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12001,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11788,"src":"5389:24:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:40:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12007,"nodeType":"RevertStatement","src":"5382:47:51"}]}},"id":12010,"nodeType":"IfStatement","src":"5237:203:51","trueBody":{"id":11993,"nodeType":"Block","src":"5262:55:51","statements":[{"expression":{"arguments":[{"id":11988,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11973,"src":"5289:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},{"id":11989,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11975,"src":"5296:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":11990,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11977,"src":"5300:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11987,"name":"safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11821,"src":"5276:12:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":11991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5276:30:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11992,"nodeType":"ExpressionStatement","src":"5276:30:51"}]}}]},"documentation":{"id":11970,"nodeType":"StructuredDocumentation","src":"4786:333:51","text":" @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":12012,"implemented":true,"kind":"function","modifiers":[],"name":"transferAndCallRelaxed","nameLocation":"5133:22:51","nodeType":"FunctionDefinition","parameters":{"id":11980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11973,"mutability":"mutable","name":"token","nameLocation":"5165:5:51","nodeType":"VariableDeclaration","scope":12012,"src":"5156:14:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"},"typeName":{"id":11972,"nodeType":"UserDefinedTypeName","pathNode":{"id":11971,"name":"IERC1363","nameLocations":["5156:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":9593,"src":"5156:8:51"},"referencedDeclaration":9593,"src":"5156:8:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":11975,"mutability":"mutable","name":"to","nameLocation":"5180:2:51","nodeType":"VariableDeclaration","scope":12012,"src":"5172:10:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11974,"name":"address","nodeType":"ElementaryTypeName","src":"5172:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11977,"mutability":"mutable","name":"value","nameLocation":"5192:5:51","nodeType":"VariableDeclaration","scope":12012,"src":"5184:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11976,"name":"uint256","nodeType":"ElementaryTypeName","src":"5184:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11979,"mutability":"mutable","name":"data","nameLocation":"5212:4:51","nodeType":"VariableDeclaration","scope":12012,"src":"5199:17:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11978,"name":"bytes","nodeType":"ElementaryTypeName","src":"5199:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5155:62:51"},"returnParameters":{"id":11981,"nodeType":"ParameterList","parameters":[],"src":"5227:0:51"},"scope":12185,"src":"5124:322:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12058,"nodeType":"Block","src":"5965:239:51","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":12027,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12020,"src":"5979:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5982:4:51","memberName":"code","nodeType":"MemberAccess","src":"5979:7:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5987:6:51","memberName":"length","nodeType":"MemberAccess","src":"5979:14:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5997:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5979:19:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":12047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6075:49:51","subExpression":{"arguments":[{"id":12042,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12018,"src":"6102:4:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12043,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12020,"src":"6108:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12044,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12022,"src":"6112:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12045,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12024,"src":"6119:4:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12040,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12016,"src":"6076:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},"id":12041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6082:19:51","memberName":"transferFromAndCall","nodeType":"MemberAccess","referencedDeclaration":9570,"src":"6076:25:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,address,uint256,bytes memory) external returns (bool)"}},"id":12046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6076:48:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12056,"nodeType":"IfStatement","src":"6071:127:51","trueBody":{"id":12055,"nodeType":"Block","src":"6126:72:51","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":12051,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12016,"src":"6180:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}],"id":12050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6172:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12049,"name":"address","nodeType":"ElementaryTypeName","src":"6172:7:51","typeDescriptions":{}}},"id":12052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6172:14:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12048,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11788,"src":"6147:24:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6147:40:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12054,"nodeType":"RevertStatement","src":"6140:47:51"}]}},"id":12057,"nodeType":"IfStatement","src":"5975:223:51","trueBody":{"id":12039,"nodeType":"Block","src":"6000:65:51","statements":[{"expression":{"arguments":[{"id":12033,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12016,"src":"6031:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},{"id":12034,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12018,"src":"6038:4:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12035,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12020,"src":"6044:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12036,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12022,"src":"6048:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12032,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11848,"src":"6014:16:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":12037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6014:40:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12038,"nodeType":"ExpressionStatement","src":"6014:40:51"}]}}]},"documentation":{"id":12013,"nodeType":"StructuredDocumentation","src":"5452:341:51","text":" @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":12059,"implemented":true,"kind":"function","modifiers":[],"name":"transferFromAndCallRelaxed","nameLocation":"5807:26:51","nodeType":"FunctionDefinition","parameters":{"id":12025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12016,"mutability":"mutable","name":"token","nameLocation":"5852:5:51","nodeType":"VariableDeclaration","scope":12059,"src":"5843:14:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"},"typeName":{"id":12015,"nodeType":"UserDefinedTypeName","pathNode":{"id":12014,"name":"IERC1363","nameLocations":["5843:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":9593,"src":"5843:8:51"},"referencedDeclaration":9593,"src":"5843:8:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":12018,"mutability":"mutable","name":"from","nameLocation":"5875:4:51","nodeType":"VariableDeclaration","scope":12059,"src":"5867:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12017,"name":"address","nodeType":"ElementaryTypeName","src":"5867:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12020,"mutability":"mutable","name":"to","nameLocation":"5897:2:51","nodeType":"VariableDeclaration","scope":12059,"src":"5889:10:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12019,"name":"address","nodeType":"ElementaryTypeName","src":"5889:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12022,"mutability":"mutable","name":"value","nameLocation":"5917:5:51","nodeType":"VariableDeclaration","scope":12059,"src":"5909:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12021,"name":"uint256","nodeType":"ElementaryTypeName","src":"5909:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12024,"mutability":"mutable","name":"data","nameLocation":"5945:4:51","nodeType":"VariableDeclaration","scope":12059,"src":"5932:17:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12023,"name":"bytes","nodeType":"ElementaryTypeName","src":"5932:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5833:122:51"},"returnParameters":{"id":12026,"nodeType":"ParameterList","parameters":[],"src":"5965:0:51"},"scope":12185,"src":"5798:406:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12101,"nodeType":"Block","src":"6971:218:51","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":12072,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"6985:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6988:4:51","memberName":"code","nodeType":"MemberAccess","src":"6985:7:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6993:6:51","memberName":"length","nodeType":"MemberAccess","src":"6985:14:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7003:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6985:19:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":12090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7071:38:51","subExpression":{"arguments":[{"id":12086,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"7093:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12087,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12067,"src":"7097:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12088,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12069,"src":"7104:4:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12084,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12063,"src":"7072:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},"id":12085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7078:14:51","memberName":"approveAndCall","nodeType":"MemberAccess","referencedDeclaration":9592,"src":"7072:20:51","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":12089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7072:37:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12099,"nodeType":"IfStatement","src":"7067:116:51","trueBody":{"id":12098,"nodeType":"Block","src":"7111:72:51","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":12094,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12063,"src":"7165:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}],"id":12093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7157:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12092,"name":"address","nodeType":"ElementaryTypeName","src":"7157:7:51","typeDescriptions":{}}},"id":12095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7157:14:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12091,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11788,"src":"7132:24:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7132:40:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12097,"nodeType":"RevertStatement","src":"7125:47:51"}]}},"id":12100,"nodeType":"IfStatement","src":"6981:202:51","trueBody":{"id":12083,"nodeType":"Block","src":"7006:55:51","statements":[{"expression":{"arguments":[{"id":12078,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12063,"src":"7033:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},{"id":12079,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"7040:2:51","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12080,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12067,"src":"7044:5:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12077,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"7020:12:51","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":12081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7020:30:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12082,"nodeType":"ExpressionStatement","src":"7020:30:51"}]}}]},"documentation":{"id":12060,"nodeType":"StructuredDocumentation","src":"6210:654:51","text":" @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n once without retrying, and relies on the returned value to be true.\n Reverts if the returned value is other than `true`."},"id":12102,"implemented":true,"kind":"function","modifiers":[],"name":"approveAndCallRelaxed","nameLocation":"6878:21:51","nodeType":"FunctionDefinition","parameters":{"id":12070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12063,"mutability":"mutable","name":"token","nameLocation":"6909:5:51","nodeType":"VariableDeclaration","scope":12102,"src":"6900:14:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"},"typeName":{"id":12062,"nodeType":"UserDefinedTypeName","pathNode":{"id":12061,"name":"IERC1363","nameLocations":["6900:8:51"],"nodeType":"IdentifierPath","referencedDeclaration":9593,"src":"6900:8:51"},"referencedDeclaration":9593,"src":"6900:8:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$9593","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":12065,"mutability":"mutable","name":"to","nameLocation":"6924:2:51","nodeType":"VariableDeclaration","scope":12102,"src":"6916:10:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12064,"name":"address","nodeType":"ElementaryTypeName","src":"6916:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12067,"mutability":"mutable","name":"value","nameLocation":"6936:5:51","nodeType":"VariableDeclaration","scope":12102,"src":"6928:13:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12066,"name":"uint256","nodeType":"ElementaryTypeName","src":"6928:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12069,"mutability":"mutable","name":"data","nameLocation":"6956:4:51","nodeType":"VariableDeclaration","scope":12102,"src":"6943:17:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12068,"name":"bytes","nodeType":"ElementaryTypeName","src":"6943:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6899:62:51"},"returnParameters":{"id":12071,"nodeType":"ParameterList","parameters":[],"src":"6971:0:51"},"scope":12185,"src":"6869:320:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12142,"nodeType":"Block","src":"7756:650:51","statements":[{"assignments":[12112],"declarations":[{"constant":false,"id":12112,"mutability":"mutable","name":"returnSize","nameLocation":"7774:10:51","nodeType":"VariableDeclaration","scope":12142,"src":"7766:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12111,"name":"uint256","nodeType":"ElementaryTypeName","src":"7766:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12113,"nodeType":"VariableDeclarationStatement","src":"7766:18:51"},{"assignments":[12115],"declarations":[{"constant":false,"id":12115,"mutability":"mutable","name":"returnValue","nameLocation":"7802:11:51","nodeType":"VariableDeclaration","scope":12142,"src":"7794:19:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12114,"name":"uint256","nodeType":"ElementaryTypeName","src":"7794:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12116,"nodeType":"VariableDeclarationStatement","src":"7794:19:51"},{"AST":{"nativeSrc":"7848:396:51","nodeType":"YulBlock","src":"7848:396:51","statements":[{"nativeSrc":"7862:75:51","nodeType":"YulVariableDeclaration","src":"7862:75:51","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"7882:3:51","nodeType":"YulIdentifier","src":"7882:3:51"},"nativeSrc":"7882:5:51","nodeType":"YulFunctionCall","src":"7882:5:51"},{"name":"token","nativeSrc":"7889:5:51","nodeType":"YulIdentifier","src":"7889:5:51"},{"kind":"number","nativeSrc":"7896:1:51","nodeType":"YulLiteral","src":"7896:1:51","type":"","value":"0"},{"arguments":[{"name":"data","nativeSrc":"7903:4:51","nodeType":"YulIdentifier","src":"7903:4:51"},{"kind":"number","nativeSrc":"7909:4:51","nodeType":"YulLiteral","src":"7909:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7899:3:51","nodeType":"YulIdentifier","src":"7899:3:51"},"nativeSrc":"7899:15:51","nodeType":"YulFunctionCall","src":"7899:15:51"},{"arguments":[{"name":"data","nativeSrc":"7922:4:51","nodeType":"YulIdentifier","src":"7922:4:51"}],"functionName":{"name":"mload","nativeSrc":"7916:5:51","nodeType":"YulIdentifier","src":"7916:5:51"},"nativeSrc":"7916:11:51","nodeType":"YulFunctionCall","src":"7916:11:51"},{"kind":"number","nativeSrc":"7929:1:51","nodeType":"YulLiteral","src":"7929:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7932:4:51","nodeType":"YulLiteral","src":"7932:4:51","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"7877:4:51","nodeType":"YulIdentifier","src":"7877:4:51"},"nativeSrc":"7877:60:51","nodeType":"YulFunctionCall","src":"7877:60:51"},"variables":[{"name":"success","nativeSrc":"7866:7:51","nodeType":"YulTypedName","src":"7866:7:51","type":""}]},{"body":{"nativeSrc":"7998:157:51","nodeType":"YulBlock","src":"7998:157:51","statements":[{"nativeSrc":"8016:22:51","nodeType":"YulVariableDeclaration","src":"8016:22:51","value":{"arguments":[{"kind":"number","nativeSrc":"8033:4:51","nodeType":"YulLiteral","src":"8033:4:51","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"8027:5:51","nodeType":"YulIdentifier","src":"8027:5:51"},"nativeSrc":"8027:11:51","nodeType":"YulFunctionCall","src":"8027:11:51"},"variables":[{"name":"ptr","nativeSrc":"8020:3:51","nodeType":"YulTypedName","src":"8020:3:51","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"8070:3:51","nodeType":"YulIdentifier","src":"8070:3:51"},{"kind":"number","nativeSrc":"8075:1:51","nodeType":"YulLiteral","src":"8075:1:51","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"8078:14:51","nodeType":"YulIdentifier","src":"8078:14:51"},"nativeSrc":"8078:16:51","nodeType":"YulFunctionCall","src":"8078:16:51"}],"functionName":{"name":"returndatacopy","nativeSrc":"8055:14:51","nodeType":"YulIdentifier","src":"8055:14:51"},"nativeSrc":"8055:40:51","nodeType":"YulFunctionCall","src":"8055:40:51"},"nativeSrc":"8055:40:51","nodeType":"YulExpressionStatement","src":"8055:40:51"},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"8119:3:51","nodeType":"YulIdentifier","src":"8119:3:51"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"8124:14:51","nodeType":"YulIdentifier","src":"8124:14:51"},"nativeSrc":"8124:16:51","nodeType":"YulFunctionCall","src":"8124:16:51"}],"functionName":{"name":"revert","nativeSrc":"8112:6:51","nodeType":"YulIdentifier","src":"8112:6:51"},"nativeSrc":"8112:29:51","nodeType":"YulFunctionCall","src":"8112:29:51"},"nativeSrc":"8112:29:51","nodeType":"YulExpressionStatement","src":"8112:29:51"}]},"condition":{"arguments":[{"name":"success","nativeSrc":"7989:7:51","nodeType":"YulIdentifier","src":"7989:7:51"}],"functionName":{"name":"iszero","nativeSrc":"7982:6:51","nodeType":"YulIdentifier","src":"7982:6:51"},"nativeSrc":"7982:15:51","nodeType":"YulFunctionCall","src":"7982:15:51"},"nativeSrc":"7979:176:51","nodeType":"YulIf","src":"7979:176:51"},{"nativeSrc":"8168:30:51","nodeType":"YulAssignment","src":"8168:30:51","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"8182:14:51","nodeType":"YulIdentifier","src":"8182:14:51"},"nativeSrc":"8182:16:51","nodeType":"YulFunctionCall","src":"8182:16:51"},"variableNames":[{"name":"returnSize","nativeSrc":"8168:10:51","nodeType":"YulIdentifier","src":"8168:10:51"}]},{"nativeSrc":"8211:23:51","nodeType":"YulAssignment","src":"8211:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"8232:1:51","nodeType":"YulLiteral","src":"8232:1:51","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"8226:5:51","nodeType":"YulIdentifier","src":"8226:5:51"},"nativeSrc":"8226:8:51","nodeType":"YulFunctionCall","src":"8226:8:51"},"variableNames":[{"name":"returnValue","nativeSrc":"8211:11:51","nodeType":"YulIdentifier","src":"8211:11:51"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12108,"isOffset":false,"isSlot":false,"src":"7903:4:51","valueSize":1},{"declaration":12108,"isOffset":false,"isSlot":false,"src":"7922:4:51","valueSize":1},{"declaration":12112,"isOffset":false,"isSlot":false,"src":"8168:10:51","valueSize":1},{"declaration":12115,"isOffset":false,"isSlot":false,"src":"8211:11:51","valueSize":1},{"declaration":12106,"isOffset":false,"isSlot":false,"src":"7889:5:51","valueSize":1}],"flags":["memory-safe"],"id":12117,"nodeType":"InlineAssembly","src":"7823:421:51"},{"condition":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12118,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12112,"src":"8258:10:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8272:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8258:15:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12129,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12115,"src":"8310:11:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":12130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8325:1:51","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8310:16:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8258:68:51","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":12123,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12106,"src":"8284:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":12122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8276:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12121,"name":"address","nodeType":"ElementaryTypeName","src":"8276:7:51","typeDescriptions":{}}},"id":12124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8276:14:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8291:4:51","memberName":"code","nodeType":"MemberAccess","src":"8276:19:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8296:6:51","memberName":"length","nodeType":"MemberAccess","src":"8276:26:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12127,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8306:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8276:31:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12141,"nodeType":"IfStatement","src":"8254:146:51","trueBody":{"id":12140,"nodeType":"Block","src":"8328:72:51","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":12136,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12106,"src":"8382:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":12135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8374:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12134,"name":"address","nodeType":"ElementaryTypeName","src":"8374:7:51","typeDescriptions":{}}},"id":12137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:14:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12133,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11788,"src":"8349:24:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8349:40:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12139,"nodeType":"RevertStatement","src":"8342:47:51"}]}}]},"documentation":{"id":12103,"nodeType":"StructuredDocumentation","src":"7195:486:51","text":" @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n on the return value: the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param data The call data (encoded using abi.encode or one of its variants).\n This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements."},"id":12143,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturn","nameLocation":"7695:19:51","nodeType":"FunctionDefinition","parameters":{"id":12109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12106,"mutability":"mutable","name":"token","nameLocation":"7722:5:51","nodeType":"VariableDeclaration","scope":12143,"src":"7715:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":12105,"nodeType":"UserDefinedTypeName","pathNode":{"id":12104,"name":"IERC20","nameLocations":["7715:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"7715:6:51"},"referencedDeclaration":11065,"src":"7715:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":12108,"mutability":"mutable","name":"data","nameLocation":"7742:4:51","nodeType":"VariableDeclaration","scope":12143,"src":"7729:17:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12107,"name":"bytes","nodeType":"ElementaryTypeName","src":"7729:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7714:33:51"},"returnParameters":{"id":12110,"nodeType":"ParameterList","parameters":[],"src":"7756:0:51"},"scope":12185,"src":"7686:720:51","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":12183,"nodeType":"Block","src":"8997:391:51","statements":[{"assignments":[12155],"declarations":[{"constant":false,"id":12155,"mutability":"mutable","name":"success","nameLocation":"9012:7:51","nodeType":"VariableDeclaration","scope":12183,"src":"9007:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12154,"name":"bool","nodeType":"ElementaryTypeName","src":"9007:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":12156,"nodeType":"VariableDeclarationStatement","src":"9007:12:51"},{"assignments":[12158],"declarations":[{"constant":false,"id":12158,"mutability":"mutable","name":"returnSize","nameLocation":"9037:10:51","nodeType":"VariableDeclaration","scope":12183,"src":"9029:18:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12157,"name":"uint256","nodeType":"ElementaryTypeName","src":"9029:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12159,"nodeType":"VariableDeclarationStatement","src":"9029:18:51"},{"assignments":[12161],"declarations":[{"constant":false,"id":12161,"mutability":"mutable","name":"returnValue","nameLocation":"9065:11:51","nodeType":"VariableDeclaration","scope":12183,"src":"9057:19:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12160,"name":"uint256","nodeType":"ElementaryTypeName","src":"9057:7:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12162,"nodeType":"VariableDeclarationStatement","src":"9057:19:51"},{"AST":{"nativeSrc":"9111:174:51","nodeType":"YulBlock","src":"9111:174:51","statements":[{"nativeSrc":"9125:71:51","nodeType":"YulAssignment","src":"9125:71:51","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"9141:3:51","nodeType":"YulIdentifier","src":"9141:3:51"},"nativeSrc":"9141:5:51","nodeType":"YulFunctionCall","src":"9141:5:51"},{"name":"token","nativeSrc":"9148:5:51","nodeType":"YulIdentifier","src":"9148:5:51"},{"kind":"number","nativeSrc":"9155:1:51","nodeType":"YulLiteral","src":"9155:1:51","type":"","value":"0"},{"arguments":[{"name":"data","nativeSrc":"9162:4:51","nodeType":"YulIdentifier","src":"9162:4:51"},{"kind":"number","nativeSrc":"9168:4:51","nodeType":"YulLiteral","src":"9168:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9158:3:51","nodeType":"YulIdentifier","src":"9158:3:51"},"nativeSrc":"9158:15:51","nodeType":"YulFunctionCall","src":"9158:15:51"},{"arguments":[{"name":"data","nativeSrc":"9181:4:51","nodeType":"YulIdentifier","src":"9181:4:51"}],"functionName":{"name":"mload","nativeSrc":"9175:5:51","nodeType":"YulIdentifier","src":"9175:5:51"},"nativeSrc":"9175:11:51","nodeType":"YulFunctionCall","src":"9175:11:51"},{"kind":"number","nativeSrc":"9188:1:51","nodeType":"YulLiteral","src":"9188:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9191:4:51","nodeType":"YulLiteral","src":"9191:4:51","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"9136:4:51","nodeType":"YulIdentifier","src":"9136:4:51"},"nativeSrc":"9136:60:51","nodeType":"YulFunctionCall","src":"9136:60:51"},"variableNames":[{"name":"success","nativeSrc":"9125:7:51","nodeType":"YulIdentifier","src":"9125:7:51"}]},{"nativeSrc":"9209:30:51","nodeType":"YulAssignment","src":"9209:30:51","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9223:14:51","nodeType":"YulIdentifier","src":"9223:14:51"},"nativeSrc":"9223:16:51","nodeType":"YulFunctionCall","src":"9223:16:51"},"variableNames":[{"name":"returnSize","nativeSrc":"9209:10:51","nodeType":"YulIdentifier","src":"9209:10:51"}]},{"nativeSrc":"9252:23:51","nodeType":"YulAssignment","src":"9252:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"9273:1:51","nodeType":"YulLiteral","src":"9273:1:51","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"9267:5:51","nodeType":"YulIdentifier","src":"9267:5:51"},"nativeSrc":"9267:8:51","nodeType":"YulFunctionCall","src":"9267:8:51"},"variableNames":[{"name":"returnValue","nativeSrc":"9252:11:51","nodeType":"YulIdentifier","src":"9252:11:51"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12149,"isOffset":false,"isSlot":false,"src":"9162:4:51","valueSize":1},{"declaration":12149,"isOffset":false,"isSlot":false,"src":"9181:4:51","valueSize":1},{"declaration":12158,"isOffset":false,"isSlot":false,"src":"9209:10:51","valueSize":1},{"declaration":12161,"isOffset":false,"isSlot":false,"src":"9252:11:51","valueSize":1},{"declaration":12155,"isOffset":false,"isSlot":false,"src":"9125:7:51","valueSize":1},{"declaration":12147,"isOffset":false,"isSlot":false,"src":"9148:5:51","valueSize":1}],"flags":["memory-safe"],"id":12163,"nodeType":"InlineAssembly","src":"9086:199:51"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12164,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12155,"src":"9301:7:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12165,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12158,"src":"9313:10:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9327:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9313:15:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12176,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12161,"src":"9364:11:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":12177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9379:1:51","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9364:16:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9313:67:51","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":12170,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12147,"src":"9339:5:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":12169,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9331:7:51","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12168,"name":"address","nodeType":"ElementaryTypeName","src":"9331:7:51","typeDescriptions":{}}},"id":12171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9331:14:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9346:4:51","memberName":"code","nodeType":"MemberAccess","src":"9331:19:51","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9351:6:51","memberName":"length","nodeType":"MemberAccess","src":"9331:26:51","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9360:1:51","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9331:30:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":12180,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9312:69:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9301:80:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":12153,"id":12182,"nodeType":"Return","src":"9294:87:51"}]},"documentation":{"id":12144,"nodeType":"StructuredDocumentation","src":"8412:491:51","text":" @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n on the return value: the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param data The call data (encoded using abi.encode or one of its variants).\n This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead."},"id":12184,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturnBool","nameLocation":"8917:23:51","nodeType":"FunctionDefinition","parameters":{"id":12150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12147,"mutability":"mutable","name":"token","nameLocation":"8948:5:51","nodeType":"VariableDeclaration","scope":12184,"src":"8941:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":12146,"nodeType":"UserDefinedTypeName","pathNode":{"id":12145,"name":"IERC20","nameLocations":["8941:6:51"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"8941:6:51"},"referencedDeclaration":11065,"src":"8941:6:51","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":12149,"mutability":"mutable","name":"data","nameLocation":"8968:4:51","nodeType":"VariableDeclaration","scope":12184,"src":"8955:17:51","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12148,"name":"bytes","nodeType":"ElementaryTypeName","src":"8955:5:51","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8940:33:51"},"returnParameters":{"id":12153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12152,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12184,"src":"8991:4:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12151,"name":"bool","nodeType":"ElementaryTypeName","src":"8991:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8990:6:51"},"scope":12185,"src":"8908:480:51","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":12186,"src":"698:8692:51","usedErrors":[11788,11797],"usedEvents":[]}],"src":"115:9276:51"},"id":51},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","exportedSymbols":{"IERC165":[18208],"IERC721":[12302]},"id":12303,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12187,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:52"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":12189,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12303,"sourceUnit":18209,"src":"134:62:52","symbolAliases":[{"foreign":{"id":12188,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18208,"src":"142:7:52","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":12191,"name":"IERC165","nameLocations":["288:7:52"],"nodeType":"IdentifierPath","referencedDeclaration":18208,"src":"288:7:52"},"id":12192,"nodeType":"InheritanceSpecifier","src":"288:7:52"}],"canonicalName":"IERC721","contractDependencies":[],"contractKind":"interface","documentation":{"id":12190,"nodeType":"StructuredDocumentation","src":"198:68:52","text":" @dev Required interface of an ERC-721 compliant contract."},"fullyImplemented":false,"id":12302,"linearizedBaseContracts":[12302,18208],"name":"IERC721","nameLocation":"277:7:52","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":12193,"nodeType":"StructuredDocumentation","src":"302:88:52","text":" @dev Emitted when `tokenId` token is transferred from `from` to `to`."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":12201,"name":"Transfer","nameLocation":"401:8:52","nodeType":"EventDefinition","parameters":{"id":12200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12195,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"426:4:52","nodeType":"VariableDeclaration","scope":12201,"src":"410:20:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12194,"name":"address","nodeType":"ElementaryTypeName","src":"410:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12197,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"448:2:52","nodeType":"VariableDeclaration","scope":12201,"src":"432:18:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12196,"name":"address","nodeType":"ElementaryTypeName","src":"432:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12199,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"468:7:52","nodeType":"VariableDeclaration","scope":12201,"src":"452:23:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12198,"name":"uint256","nodeType":"ElementaryTypeName","src":"452:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"409:67:52"},"src":"395:82:52"},{"anonymous":false,"documentation":{"id":12202,"nodeType":"StructuredDocumentation","src":"483:94:52","text":" @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":12210,"name":"Approval","nameLocation":"588:8:52","nodeType":"EventDefinition","parameters":{"id":12209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12204,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"613:5:52","nodeType":"VariableDeclaration","scope":12210,"src":"597:21:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12203,"name":"address","nodeType":"ElementaryTypeName","src":"597:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12206,"indexed":true,"mutability":"mutable","name":"approved","nameLocation":"636:8:52","nodeType":"VariableDeclaration","scope":12210,"src":"620:24:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12205,"name":"address","nodeType":"ElementaryTypeName","src":"620:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12208,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"662:7:52","nodeType":"VariableDeclaration","scope":12210,"src":"646:23:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12207,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"596:74:52"},"src":"582:89:52"},{"anonymous":false,"documentation":{"id":12211,"nodeType":"StructuredDocumentation","src":"677:117:52","text":" @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."},"eventSelector":"17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31","id":12219,"name":"ApprovalForAll","nameLocation":"805:14:52","nodeType":"EventDefinition","parameters":{"id":12218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12213,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"836:5:52","nodeType":"VariableDeclaration","scope":12219,"src":"820:21:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12212,"name":"address","nodeType":"ElementaryTypeName","src":"820:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12215,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"859:8:52","nodeType":"VariableDeclaration","scope":12219,"src":"843:24:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12214,"name":"address","nodeType":"ElementaryTypeName","src":"843:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12217,"indexed":false,"mutability":"mutable","name":"approved","nameLocation":"874:8:52","nodeType":"VariableDeclaration","scope":12219,"src":"869:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12216,"name":"bool","nodeType":"ElementaryTypeName","src":"869:4:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"819:64:52"},"src":"799:85:52"},{"documentation":{"id":12220,"nodeType":"StructuredDocumentation","src":"890:76:52","text":" @dev Returns the number of tokens in ``owner``'s account."},"functionSelector":"70a08231","id":12227,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"980:9:52","nodeType":"FunctionDefinition","parameters":{"id":12223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12222,"mutability":"mutable","name":"owner","nameLocation":"998:5:52","nodeType":"VariableDeclaration","scope":12227,"src":"990:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12221,"name":"address","nodeType":"ElementaryTypeName","src":"990:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"989:15:52"},"returnParameters":{"id":12226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12225,"mutability":"mutable","name":"balance","nameLocation":"1036:7:52","nodeType":"VariableDeclaration","scope":12227,"src":"1028:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12224,"name":"uint256","nodeType":"ElementaryTypeName","src":"1028:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1027:17:52"},"scope":12302,"src":"971:74:52","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":12228,"nodeType":"StructuredDocumentation","src":"1051:131:52","text":" @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"6352211e","id":12235,"implemented":false,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"1196:7:52","nodeType":"FunctionDefinition","parameters":{"id":12231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12230,"mutability":"mutable","name":"tokenId","nameLocation":"1212:7:52","nodeType":"VariableDeclaration","scope":12235,"src":"1204:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12229,"name":"uint256","nodeType":"ElementaryTypeName","src":"1204:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1203:17:52"},"returnParameters":{"id":12234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12233,"mutability":"mutable","name":"owner","nameLocation":"1252:5:52","nodeType":"VariableDeclaration","scope":12235,"src":"1244:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12232,"name":"address","nodeType":"ElementaryTypeName","src":"1244:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1243:15:52"},"scope":12302,"src":"1187:72:52","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":12236,"nodeType":"StructuredDocumentation","src":"1265:565:52","text":" @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n   a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"b88d4fde","id":12247,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1844:16:52","nodeType":"FunctionDefinition","parameters":{"id":12245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12238,"mutability":"mutable","name":"from","nameLocation":"1869:4:52","nodeType":"VariableDeclaration","scope":12247,"src":"1861:12:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12237,"name":"address","nodeType":"ElementaryTypeName","src":"1861:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12240,"mutability":"mutable","name":"to","nameLocation":"1883:2:52","nodeType":"VariableDeclaration","scope":12247,"src":"1875:10:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12239,"name":"address","nodeType":"ElementaryTypeName","src":"1875:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12242,"mutability":"mutable","name":"tokenId","nameLocation":"1895:7:52","nodeType":"VariableDeclaration","scope":12247,"src":"1887:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12241,"name":"uint256","nodeType":"ElementaryTypeName","src":"1887:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12244,"mutability":"mutable","name":"data","nameLocation":"1919:4:52","nodeType":"VariableDeclaration","scope":12247,"src":"1904:19:52","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":12243,"name":"bytes","nodeType":"ElementaryTypeName","src":"1904:5:52","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1860:64:52"},"returnParameters":{"id":12246,"nodeType":"ParameterList","parameters":[],"src":"1933:0:52"},"scope":12302,"src":"1835:99:52","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":12248,"nodeType":"StructuredDocumentation","src":"1940:706:52","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n   {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n   a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"42842e0e","id":12257,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"2660:16:52","nodeType":"FunctionDefinition","parameters":{"id":12255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12250,"mutability":"mutable","name":"from","nameLocation":"2685:4:52","nodeType":"VariableDeclaration","scope":12257,"src":"2677:12:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12249,"name":"address","nodeType":"ElementaryTypeName","src":"2677:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12252,"mutability":"mutable","name":"to","nameLocation":"2699:2:52","nodeType":"VariableDeclaration","scope":12257,"src":"2691:10:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12251,"name":"address","nodeType":"ElementaryTypeName","src":"2691:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12254,"mutability":"mutable","name":"tokenId","nameLocation":"2711:7:52","nodeType":"VariableDeclaration","scope":12257,"src":"2703:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12253,"name":"uint256","nodeType":"ElementaryTypeName","src":"2703:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:52"},"returnParameters":{"id":12256,"nodeType":"ParameterList","parameters":[],"src":"2728:0:52"},"scope":12302,"src":"2651:78:52","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":12258,"nodeType":"StructuredDocumentation","src":"2735:733:52","text":" @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n understand this adds an external call which potentially creates a reentrancy vulnerability.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":12267,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"3482:12:52","nodeType":"FunctionDefinition","parameters":{"id":12265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12260,"mutability":"mutable","name":"from","nameLocation":"3503:4:52","nodeType":"VariableDeclaration","scope":12267,"src":"3495:12:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12259,"name":"address","nodeType":"ElementaryTypeName","src":"3495:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12262,"mutability":"mutable","name":"to","nameLocation":"3517:2:52","nodeType":"VariableDeclaration","scope":12267,"src":"3509:10:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12261,"name":"address","nodeType":"ElementaryTypeName","src":"3509:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12264,"mutability":"mutable","name":"tokenId","nameLocation":"3529:7:52","nodeType":"VariableDeclaration","scope":12267,"src":"3521:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12263,"name":"uint256","nodeType":"ElementaryTypeName","src":"3521:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3494:43:52"},"returnParameters":{"id":12266,"nodeType":"ParameterList","parameters":[],"src":"3546:0:52"},"scope":12302,"src":"3473:74:52","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":12268,"nodeType":"StructuredDocumentation","src":"3553:452:52","text":" @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":12275,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4019:7:52","nodeType":"FunctionDefinition","parameters":{"id":12273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12270,"mutability":"mutable","name":"to","nameLocation":"4035:2:52","nodeType":"VariableDeclaration","scope":12275,"src":"4027:10:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12269,"name":"address","nodeType":"ElementaryTypeName","src":"4027:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12272,"mutability":"mutable","name":"tokenId","nameLocation":"4047:7:52","nodeType":"VariableDeclaration","scope":12275,"src":"4039:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12271,"name":"uint256","nodeType":"ElementaryTypeName","src":"4039:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4026:29:52"},"returnParameters":{"id":12274,"nodeType":"ParameterList","parameters":[],"src":"4064:0:52"},"scope":12302,"src":"4010:55:52","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":12276,"nodeType":"StructuredDocumentation","src":"4071:315:52","text":" @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the address zero.\n Emits an {ApprovalForAll} event."},"functionSelector":"a22cb465","id":12283,"implemented":false,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4400:17:52","nodeType":"FunctionDefinition","parameters":{"id":12281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12278,"mutability":"mutable","name":"operator","nameLocation":"4426:8:52","nodeType":"VariableDeclaration","scope":12283,"src":"4418:16:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12277,"name":"address","nodeType":"ElementaryTypeName","src":"4418:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12280,"mutability":"mutable","name":"approved","nameLocation":"4441:8:52","nodeType":"VariableDeclaration","scope":12283,"src":"4436:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12279,"name":"bool","nodeType":"ElementaryTypeName","src":"4436:4:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4417:33:52"},"returnParameters":{"id":12282,"nodeType":"ParameterList","parameters":[],"src":"4459:0:52"},"scope":12302,"src":"4391:69:52","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":12284,"nodeType":"StructuredDocumentation","src":"4466:139:52","text":" @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"081812fc","id":12291,"implemented":false,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4619:11:52","nodeType":"FunctionDefinition","parameters":{"id":12287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12286,"mutability":"mutable","name":"tokenId","nameLocation":"4639:7:52","nodeType":"VariableDeclaration","scope":12291,"src":"4631:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12285,"name":"uint256","nodeType":"ElementaryTypeName","src":"4631:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4630:17:52"},"returnParameters":{"id":12290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12289,"mutability":"mutable","name":"operator","nameLocation":"4679:8:52","nodeType":"VariableDeclaration","scope":12291,"src":"4671:16:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12288,"name":"address","nodeType":"ElementaryTypeName","src":"4671:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4670:18:52"},"scope":12302,"src":"4610:79:52","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":12292,"nodeType":"StructuredDocumentation","src":"4695:138:52","text":" @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"},"functionSelector":"e985e9c5","id":12301,"implemented":false,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4847:16:52","nodeType":"FunctionDefinition","parameters":{"id":12297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12294,"mutability":"mutable","name":"owner","nameLocation":"4872:5:52","nodeType":"VariableDeclaration","scope":12301,"src":"4864:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12293,"name":"address","nodeType":"ElementaryTypeName","src":"4864:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12296,"mutability":"mutable","name":"operator","nameLocation":"4887:8:52","nodeType":"VariableDeclaration","scope":12301,"src":"4879:16:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12295,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4863:33:52"},"returnParameters":{"id":12300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12299,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12301,"src":"4920:4:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12298,"name":"bool","nodeType":"ElementaryTypeName","src":"4920:4:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4919:6:52"},"scope":12302,"src":"4838:88:52","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":12303,"src":"267:4661:52","usedErrors":[],"usedEvents":[12201,12210,12219]}],"src":"108:4821:52"},"id":52},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[12320]},"id":12321,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12304,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:53"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":12305,"nodeType":"StructuredDocumentation","src":"142:154:53","text":" @title ERC-721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC-721 asset contracts."},"fullyImplemented":false,"id":12320,"linearizedBaseContracts":[12320],"name":"IERC721Receiver","nameLocation":"307:15:53","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":12306,"nodeType":"StructuredDocumentation","src":"329:500:53","text":" @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\n It must return its Solidity selector to confirm the token transfer.\n If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n reverted.\n The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":12319,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"843:16:53","nodeType":"FunctionDefinition","parameters":{"id":12315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12308,"mutability":"mutable","name":"operator","nameLocation":"877:8:53","nodeType":"VariableDeclaration","scope":12319,"src":"869:16:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12307,"name":"address","nodeType":"ElementaryTypeName","src":"869:7:53","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12310,"mutability":"mutable","name":"from","nameLocation":"903:4:53","nodeType":"VariableDeclaration","scope":12319,"src":"895:12:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12309,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:53","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12312,"mutability":"mutable","name":"tokenId","nameLocation":"925:7:53","nodeType":"VariableDeclaration","scope":12319,"src":"917:15:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12311,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:53","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12314,"mutability":"mutable","name":"data","nameLocation":"957:4:53","nodeType":"VariableDeclaration","scope":12319,"src":"942:19:53","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":12313,"name":"bytes","nodeType":"ElementaryTypeName","src":"942:5:53","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"859:108:53"},"returnParameters":{"id":12318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12317,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12319,"src":"986:6:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12316,"name":"bytes4","nodeType":"ElementaryTypeName","src":"986:6:53","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"985:8:53"},"scope":12320,"src":"834:160:53","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":12321,"src":"297:699:53","usedErrors":[],"usedEvents":[]}],"src":"116:881:53"},"id":53},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[12580],"Errors":[12632]},"id":12581,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12322,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:54"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":12324,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12581,"sourceUnit":12633,"src":"127:36:54","symbolAliases":[{"foreign":{"id":12323,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12632,"src":"135:6:54","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":12325,"nodeType":"StructuredDocumentation","src":"165:67:54","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":12580,"linearizedBaseContracts":[12580],"name":"Address","nameLocation":"241:7:54","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":12326,"nodeType":"StructuredDocumentation","src":"255:75:54","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":12330,"name":"AddressEmptyCode","nameLocation":"341:16:54","nodeType":"ErrorDefinition","parameters":{"id":12329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12328,"mutability":"mutable","name":"target","nameLocation":"366:6:54","nodeType":"VariableDeclaration","scope":12330,"src":"358:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12327,"name":"address","nodeType":"ElementaryTypeName","src":"358:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"357:16:54"},"src":"335:39:54"},{"body":{"id":12377,"nodeType":"Block","src":"1361:294:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":12340,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1383:4:54","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}],"id":12339,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1375:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12338,"name":"address","nodeType":"ElementaryTypeName","src":"1375:7:54","typeDescriptions":{}}},"id":12341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1375:13:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1389:7:54","memberName":"balance","nodeType":"MemberAccess","src":"1375:21:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12343,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12335,"src":"1399:6:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1375:30:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12357,"nodeType":"IfStatement","src":"1371:125:54","trueBody":{"id":12356,"nodeType":"Block","src":"1407:89:54","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":12350,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1463:4:54","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}],"id":12349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1455:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12348,"name":"address","nodeType":"ElementaryTypeName","src":"1455:7:54","typeDescriptions":{}}},"id":12351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1455:13:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1469:7:54","memberName":"balance","nodeType":"MemberAccess","src":"1455:21:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12353,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12335,"src":"1478:6:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12345,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12632,"src":"1428:6:54","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$12632_$","typeString":"type(library Errors)"}},"id":12347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:19:54","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":12620,"src":"1428:26:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":12354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:57:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12355,"nodeType":"RevertStatement","src":"1421:64:54"}]}},{"assignments":[12359,12361],"declarations":[{"constant":false,"id":12359,"mutability":"mutable","name":"success","nameLocation":"1512:7:54","nodeType":"VariableDeclaration","scope":12377,"src":"1507:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12358,"name":"bool","nodeType":"ElementaryTypeName","src":"1507:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12361,"mutability":"mutable","name":"returndata","nameLocation":"1534:10:54","nodeType":"VariableDeclaration","scope":12377,"src":"1521:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12360,"name":"bytes","nodeType":"ElementaryTypeName","src":"1521:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12368,"initialValue":{"arguments":[{"hexValue":"","id":12366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1578:2:54","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":12362,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12333,"src":"1548:9:54","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":12363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1558:4:54","memberName":"call","nodeType":"MemberAccess","src":"1548:14:54","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":12365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":12364,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12335,"src":"1570:6:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"1548:29:54","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":12367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1548:33:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1506:75:54"},{"condition":{"id":12370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1595:8:54","subExpression":{"id":12369,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12359,"src":"1596:7:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12376,"nodeType":"IfStatement","src":"1591:58:54","trueBody":{"id":12375,"nodeType":"Block","src":"1605:44:54","statements":[{"expression":{"arguments":[{"id":12372,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12361,"src":"1627:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12371,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12579,"src":"1619:7:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":12373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:19:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12374,"nodeType":"ExpressionStatement","src":"1619:19:54"}]}}]},"documentation":{"id":12331,"nodeType":"StructuredDocumentation","src":"380:905:54","text":" @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\n https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n of certain opcodes, possibly making contracts go over the 2300 gas limit\n imposed by `transfer`, making them unable to receive funds via\n `transfer`. {sendValue} removes this limitation.\n https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n IMPORTANT: because control is transferred to `recipient`, care must be\n taken to not create reentrancy vulnerabilities. Consider using\n {ReentrancyGuard} or the\n https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."},"id":12378,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1299:9:54","nodeType":"FunctionDefinition","parameters":{"id":12336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12333,"mutability":"mutable","name":"recipient","nameLocation":"1325:9:54","nodeType":"VariableDeclaration","scope":12378,"src":"1309:25:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":12332,"name":"address","nodeType":"ElementaryTypeName","src":"1309:15:54","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":12335,"mutability":"mutable","name":"amount","nameLocation":"1344:6:54","nodeType":"VariableDeclaration","scope":12378,"src":"1336:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12334,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1308:43:54"},"returnParameters":{"id":12337,"nodeType":"ParameterList","parameters":[],"src":"1361:0:54"},"scope":12580,"src":"1290:365:54","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12394,"nodeType":"Block","src":"2589:62:54","statements":[{"expression":{"arguments":[{"id":12389,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12381,"src":"2628:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12390,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12383,"src":"2636:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":12391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2642:1:54","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":12388,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12445,"src":"2606:21:54","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory,uint256) returns (bytes memory)"}},"id":12392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2606:38:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12387,"id":12393,"nodeType":"Return","src":"2599:45:54"}]},"documentation":{"id":12379,"nodeType":"StructuredDocumentation","src":"1661:834:54","text":" @dev Performs a Solidity function call using a low level `call`. A\n plain `call` is an unsafe replacement for a function call: use this\n function instead.\n If `target` reverts with a revert reason or custom error, it is bubbled\n up by this function (like regular Solidity function calls). However, if\n the call reverted with no returned reason, this function reverts with a\n {Errors.FailedCall} error.\n Returns the raw returned data. To convert to the expected return value,\n use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert."},"id":12395,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2509:12:54","nodeType":"FunctionDefinition","parameters":{"id":12384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12381,"mutability":"mutable","name":"target","nameLocation":"2530:6:54","nodeType":"VariableDeclaration","scope":12395,"src":"2522:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12380,"name":"address","nodeType":"ElementaryTypeName","src":"2522:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12383,"mutability":"mutable","name":"data","nameLocation":"2551:4:54","nodeType":"VariableDeclaration","scope":12395,"src":"2538:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12382,"name":"bytes","nodeType":"ElementaryTypeName","src":"2538:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2521:35:54"},"returnParameters":{"id":12387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12386,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12395,"src":"2575:12:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12385,"name":"bytes","nodeType":"ElementaryTypeName","src":"2575:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2574:14:54"},"scope":12580,"src":"2500:151:54","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12444,"nodeType":"Block","src":"3088:294:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":12409,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3110:4:54","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}],"id":12408,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3102:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12407,"name":"address","nodeType":"ElementaryTypeName","src":"3102:7:54","typeDescriptions":{}}},"id":12410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3102:13:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3116:7:54","memberName":"balance","nodeType":"MemberAccess","src":"3102:21:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12412,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12402,"src":"3126:5:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3102:29:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12426,"nodeType":"IfStatement","src":"3098:123:54","trueBody":{"id":12425,"nodeType":"Block","src":"3133:88:54","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":12419,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3189:4:54","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$12580","typeString":"library Address"}],"id":12418,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3181:7:54","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12417,"name":"address","nodeType":"ElementaryTypeName","src":"3181:7:54","typeDescriptions":{}}},"id":12420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3181:13:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3195:7:54","memberName":"balance","nodeType":"MemberAccess","src":"3181:21:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12422,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12402,"src":"3204:5:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12414,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12632,"src":"3154:6:54","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$12632_$","typeString":"type(library Errors)"}},"id":12416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3161:19:54","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":12620,"src":"3154:26:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":12423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3154:56:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12424,"nodeType":"RevertStatement","src":"3147:63:54"}]}},{"assignments":[12428,12430],"declarations":[{"constant":false,"id":12428,"mutability":"mutable","name":"success","nameLocation":"3236:7:54","nodeType":"VariableDeclaration","scope":12444,"src":"3231:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12427,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12430,"mutability":"mutable","name":"returndata","nameLocation":"3258:10:54","nodeType":"VariableDeclaration","scope":12444,"src":"3245:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12429,"name":"bytes","nodeType":"ElementaryTypeName","src":"3245:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12437,"initialValue":{"arguments":[{"id":12435,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12400,"src":"3298:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12431,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12398,"src":"3272:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3279:4:54","memberName":"call","nodeType":"MemberAccess","src":"3272:11:54","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":12434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":12433,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12402,"src":"3291:5:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"3272:25:54","typeDescriptions":{"typeIdentifier":"t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value","typeString":"function (bytes memory) payable returns (bool,bytes memory)"}},"id":12436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:31:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3230:73:54"},{"expression":{"arguments":[{"id":12439,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12398,"src":"3347:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12440,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12428,"src":"3355:7:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12441,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12430,"src":"3364:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12438,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12537,"src":"3320:26:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":12442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3320:55:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12406,"id":12443,"nodeType":"Return","src":"3313:62:54"}]},"documentation":{"id":12396,"nodeType":"StructuredDocumentation","src":"2657:313:54","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`."},"id":12445,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"2984:21:54","nodeType":"FunctionDefinition","parameters":{"id":12403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12398,"mutability":"mutable","name":"target","nameLocation":"3014:6:54","nodeType":"VariableDeclaration","scope":12445,"src":"3006:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12397,"name":"address","nodeType":"ElementaryTypeName","src":"3006:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12400,"mutability":"mutable","name":"data","nameLocation":"3035:4:54","nodeType":"VariableDeclaration","scope":12445,"src":"3022:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12399,"name":"bytes","nodeType":"ElementaryTypeName","src":"3022:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":12402,"mutability":"mutable","name":"value","nameLocation":"3049:5:54","nodeType":"VariableDeclaration","scope":12445,"src":"3041:13:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12401,"name":"uint256","nodeType":"ElementaryTypeName","src":"3041:7:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3005:50:54"},"returnParameters":{"id":12406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12445,"src":"3074:12:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12404,"name":"bytes","nodeType":"ElementaryTypeName","src":"3074:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3073:14:54"},"scope":12580,"src":"2975:407:54","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12470,"nodeType":"Block","src":"3621:154:54","statements":[{"assignments":[12456,12458],"declarations":[{"constant":false,"id":12456,"mutability":"mutable","name":"success","nameLocation":"3637:7:54","nodeType":"VariableDeclaration","scope":12470,"src":"3632:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12455,"name":"bool","nodeType":"ElementaryTypeName","src":"3632:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12458,"mutability":"mutable","name":"returndata","nameLocation":"3659:10:54","nodeType":"VariableDeclaration","scope":12470,"src":"3646:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12457,"name":"bytes","nodeType":"ElementaryTypeName","src":"3646:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12463,"initialValue":{"arguments":[{"id":12461,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12450,"src":"3691:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12459,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12448,"src":"3673:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3680:10:54","memberName":"staticcall","nodeType":"MemberAccess","src":"3673:17:54","typeDescriptions":{"typeIdentifier":"t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) view returns (bool,bytes memory)"}},"id":12462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3673:23:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"3631:65:54"},{"expression":{"arguments":[{"id":12465,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12448,"src":"3740:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12466,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12456,"src":"3748:7:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12467,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12458,"src":"3757:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12464,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12537,"src":"3713:26:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":12468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:55:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12454,"id":12469,"nodeType":"Return","src":"3706:62:54"}]},"documentation":{"id":12446,"nodeType":"StructuredDocumentation","src":"3388:128:54","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":12471,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"3530:18:54","nodeType":"FunctionDefinition","parameters":{"id":12451,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12448,"mutability":"mutable","name":"target","nameLocation":"3557:6:54","nodeType":"VariableDeclaration","scope":12471,"src":"3549:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12447,"name":"address","nodeType":"ElementaryTypeName","src":"3549:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12450,"mutability":"mutable","name":"data","nameLocation":"3578:4:54","nodeType":"VariableDeclaration","scope":12471,"src":"3565:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12449,"name":"bytes","nodeType":"ElementaryTypeName","src":"3565:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3548:35:54"},"returnParameters":{"id":12454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12453,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12471,"src":"3607:12:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12452,"name":"bytes","nodeType":"ElementaryTypeName","src":"3607:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3606:14:54"},"scope":12580,"src":"3521:254:54","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12496,"nodeType":"Block","src":"4013:156:54","statements":[{"assignments":[12482,12484],"declarations":[{"constant":false,"id":12482,"mutability":"mutable","name":"success","nameLocation":"4029:7:54","nodeType":"VariableDeclaration","scope":12496,"src":"4024:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12481,"name":"bool","nodeType":"ElementaryTypeName","src":"4024:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12484,"mutability":"mutable","name":"returndata","nameLocation":"4051:10:54","nodeType":"VariableDeclaration","scope":12496,"src":"4038:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12483,"name":"bytes","nodeType":"ElementaryTypeName","src":"4038:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12489,"initialValue":{"arguments":[{"id":12487,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12476,"src":"4085:4:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12485,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12474,"src":"4065:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4072:12:54","memberName":"delegatecall","nodeType":"MemberAccess","src":"4065:19:54","typeDescriptions":{"typeIdentifier":"t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory) returns (bool,bytes memory)"}},"id":12488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4065:25:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4023:67:54"},{"expression":{"arguments":[{"id":12491,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12474,"src":"4134:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12492,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12482,"src":"4142:7:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":12493,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12484,"src":"4151:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12490,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12537,"src":"4107:26:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory) view returns (bytes memory)"}},"id":12494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:55:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12480,"id":12495,"nodeType":"Return","src":"4100:62:54"}]},"documentation":{"id":12472,"nodeType":"StructuredDocumentation","src":"3781:130:54","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":12497,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"3925:20:54","nodeType":"FunctionDefinition","parameters":{"id":12477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12474,"mutability":"mutable","name":"target","nameLocation":"3954:6:54","nodeType":"VariableDeclaration","scope":12497,"src":"3946:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12473,"name":"address","nodeType":"ElementaryTypeName","src":"3946:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12476,"mutability":"mutable","name":"data","nameLocation":"3975:4:54","nodeType":"VariableDeclaration","scope":12497,"src":"3962:17:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12475,"name":"bytes","nodeType":"ElementaryTypeName","src":"3962:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3945:35:54"},"returnParameters":{"id":12480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12497,"src":"3999:12:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12478,"name":"bytes","nodeType":"ElementaryTypeName","src":"3999:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3998:14:54"},"scope":12580,"src":"3916:253:54","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12536,"nodeType":"Block","src":"4595:424:54","statements":[{"condition":{"id":12510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4609:8:54","subExpression":{"id":12509,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12502,"src":"4610:7:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12534,"nodeType":"Block","src":"4669:344:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12516,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"4857:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4868:6:54","memberName":"length","nodeType":"MemberAccess","src":"4857:17:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4878:1:54","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4857:22:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":12520,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12500,"src":"4883:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":12521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4890:4:54","memberName":"code","nodeType":"MemberAccess","src":"4883:11:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4895:6:54","memberName":"length","nodeType":"MemberAccess","src":"4883:18:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4905:1:54","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4883:23:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4857:49:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12531,"nodeType":"IfStatement","src":"4853:119:54","trueBody":{"id":12530,"nodeType":"Block","src":"4908:64:54","statements":[{"errorCall":{"arguments":[{"id":12527,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12500,"src":"4950:6:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12526,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12330,"src":"4933:16:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4933:24:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12529,"nodeType":"RevertStatement","src":"4926:31:54"}]}},{"expression":{"id":12532,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"4992:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12508,"id":12533,"nodeType":"Return","src":"4985:17:54"}]},"id":12535,"nodeType":"IfStatement","src":"4605:408:54","trueBody":{"id":12515,"nodeType":"Block","src":"4619:44:54","statements":[{"expression":{"arguments":[{"id":12512,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12504,"src":"4641:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12511,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12579,"src":"4633:7:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":12513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4633:19:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12514,"nodeType":"ExpressionStatement","src":"4633:19:54"}]}}]},"documentation":{"id":12498,"nodeType":"StructuredDocumentation","src":"4175:257:54","text":" @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n of an unsuccessful call."},"id":12537,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"4446:26:54","nodeType":"FunctionDefinition","parameters":{"id":12505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12500,"mutability":"mutable","name":"target","nameLocation":"4490:6:54","nodeType":"VariableDeclaration","scope":12537,"src":"4482:14:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12499,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12502,"mutability":"mutable","name":"success","nameLocation":"4511:7:54","nodeType":"VariableDeclaration","scope":12537,"src":"4506:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12501,"name":"bool","nodeType":"ElementaryTypeName","src":"4506:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12504,"mutability":"mutable","name":"returndata","nameLocation":"4541:10:54","nodeType":"VariableDeclaration","scope":12537,"src":"4528:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12503,"name":"bytes","nodeType":"ElementaryTypeName","src":"4528:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4472:85:54"},"returnParameters":{"id":12508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12507,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12537,"src":"4581:12:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12506,"name":"bytes","nodeType":"ElementaryTypeName","src":"4581:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4580:14:54"},"scope":12580,"src":"4437:582:54","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":12558,"nodeType":"Block","src":"5323:122:54","statements":[{"condition":{"id":12548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5337:8:54","subExpression":{"id":12547,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12540,"src":"5338:7:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12556,"nodeType":"Block","src":"5397:42:54","statements":[{"expression":{"id":12554,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12542,"src":"5418:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12546,"id":12555,"nodeType":"Return","src":"5411:17:54"}]},"id":12557,"nodeType":"IfStatement","src":"5333:106:54","trueBody":{"id":12553,"nodeType":"Block","src":"5347:44:54","statements":[{"expression":{"arguments":[{"id":12550,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12542,"src":"5369:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":12549,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12579,"src":"5361:7:54","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":12551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5361:19:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12552,"nodeType":"ExpressionStatement","src":"5361:19:54"}]}}]},"documentation":{"id":12538,"nodeType":"StructuredDocumentation","src":"5025:191:54","text":" @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n revert reason or with a default {Errors.FailedCall} error."},"id":12559,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"5230:16:54","nodeType":"FunctionDefinition","parameters":{"id":12543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12540,"mutability":"mutable","name":"success","nameLocation":"5252:7:54","nodeType":"VariableDeclaration","scope":12559,"src":"5247:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12539,"name":"bool","nodeType":"ElementaryTypeName","src":"5247:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":12542,"mutability":"mutable","name":"returndata","nameLocation":"5274:10:54","nodeType":"VariableDeclaration","scope":12559,"src":"5261:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12541,"name":"bytes","nodeType":"ElementaryTypeName","src":"5261:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5246:39:54"},"returnParameters":{"id":12546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12559,"src":"5309:12:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12544,"name":"bytes","nodeType":"ElementaryTypeName","src":"5309:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5308:14:54"},"scope":12580,"src":"5221:224:54","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12578,"nodeType":"Block","src":"5614:432:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12565,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12562,"src":"5690:10:54","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5701:6:54","memberName":"length","nodeType":"MemberAccess","src":"5690:17:54","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5710:1:54","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5690:21:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12576,"nodeType":"Block","src":"5989:51:54","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12571,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12632,"src":"6010:6:54","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$12632_$","typeString":"type(library Errors)"}},"id":12573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6017:10:54","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":12623,"src":"6010:17:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":12574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6010:19:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":12575,"nodeType":"RevertStatement","src":"6003:26:54"}]},"id":12577,"nodeType":"IfStatement","src":"5686:354:54","trueBody":{"id":12570,"nodeType":"Block","src":"5713:270:54","statements":[{"AST":{"nativeSrc":"5840:133:54","nodeType":"YulBlock","src":"5840:133:54","statements":[{"nativeSrc":"5858:40:54","nodeType":"YulVariableDeclaration","src":"5858:40:54","value":{"arguments":[{"name":"returndata","nativeSrc":"5887:10:54","nodeType":"YulIdentifier","src":"5887:10:54"}],"functionName":{"name":"mload","nativeSrc":"5881:5:54","nodeType":"YulIdentifier","src":"5881:5:54"},"nativeSrc":"5881:17:54","nodeType":"YulFunctionCall","src":"5881:17:54"},"variables":[{"name":"returndata_size","nativeSrc":"5862:15:54","nodeType":"YulTypedName","src":"5862:15:54","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5926:2:54","nodeType":"YulLiteral","src":"5926:2:54","type":"","value":"32"},{"name":"returndata","nativeSrc":"5930:10:54","nodeType":"YulIdentifier","src":"5930:10:54"}],"functionName":{"name":"add","nativeSrc":"5922:3:54","nodeType":"YulIdentifier","src":"5922:3:54"},"nativeSrc":"5922:19:54","nodeType":"YulFunctionCall","src":"5922:19:54"},{"name":"returndata_size","nativeSrc":"5943:15:54","nodeType":"YulIdentifier","src":"5943:15:54"}],"functionName":{"name":"revert","nativeSrc":"5915:6:54","nodeType":"YulIdentifier","src":"5915:6:54"},"nativeSrc":"5915:44:54","nodeType":"YulFunctionCall","src":"5915:44:54"},"nativeSrc":"5915:44:54","nodeType":"YulExpressionStatement","src":"5915:44:54"}]},"evmVersion":"cancun","externalReferences":[{"declaration":12562,"isOffset":false,"isSlot":false,"src":"5887:10:54","valueSize":1},{"declaration":12562,"isOffset":false,"isSlot":false,"src":"5930:10:54","valueSize":1}],"flags":["memory-safe"],"id":12569,"nodeType":"InlineAssembly","src":"5815:158:54"}]}}]},"documentation":{"id":12560,"nodeType":"StructuredDocumentation","src":"5451:103:54","text":" @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}."},"id":12579,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"5568:7:54","nodeType":"FunctionDefinition","parameters":{"id":12563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12562,"mutability":"mutable","name":"returndata","nameLocation":"5589:10:54","nodeType":"VariableDeclaration","scope":12579,"src":"5576:23:54","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12561,"name":"bytes","nodeType":"ElementaryTypeName","src":"5576:5:54","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5575:25:54"},"returnParameters":{"id":12564,"nodeType":"ParameterList","parameters":[],"src":"5614:0:54"},"scope":12580,"src":"5559:487:54","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":12581,"src":"233:5815:54","usedErrors":[12330],"usedEvents":[]}],"src":"101:5948:54"},"id":54},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[12610]},"id":12611,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12582,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:55"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":12583,"nodeType":"StructuredDocumentation","src":"127:496:55","text":" @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."},"fullyImplemented":true,"id":12610,"linearizedBaseContracts":[12610],"name":"Context","nameLocation":"642:7:55","nodeType":"ContractDefinition","nodes":[{"body":{"id":12591,"nodeType":"Block","src":"718:34:55","statements":[{"expression":{"expression":{"id":12588,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:55","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:55","memberName":"sender","nodeType":"MemberAccess","src":"735:10:55","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":12587,"id":12590,"nodeType":"Return","src":"728:17:55"}]},"id":12592,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:55","nodeType":"FunctionDefinition","parameters":{"id":12584,"nodeType":"ParameterList","parameters":[],"src":"675:2:55"},"returnParameters":{"id":12587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12586,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12592,"src":"709:7:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12585,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:55"},"scope":12610,"src":"656:96:55","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":12600,"nodeType":"Block","src":"825:32:55","statements":[{"expression":{"expression":{"id":12597,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:55","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:55","memberName":"data","nodeType":"MemberAccess","src":"842:8:55","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":12596,"id":12599,"nodeType":"Return","src":"835:15:55"}]},"id":12601,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:55","nodeType":"FunctionDefinition","parameters":{"id":12593,"nodeType":"ParameterList","parameters":[],"src":"775:2:55"},"returnParameters":{"id":12596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12601,"src":"809:14:55","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":12594,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:55","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:55"},"scope":12610,"src":"758:99:55","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":12608,"nodeType":"Block","src":"935:25:55","statements":[{"expression":{"hexValue":"30","id":12606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:55","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":12605,"id":12607,"nodeType":"Return","src":"945:8:55"}]},"id":12609,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:55","nodeType":"FunctionDefinition","parameters":{"id":12602,"nodeType":"ParameterList","parameters":[],"src":"892:2:55"},"returnParameters":{"id":12605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12604,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12609,"src":"926:7:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12603,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:55","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:55"},"scope":12610,"src":"863:97:55","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":12611,"src":"624:338:55","usedErrors":[],"usedEvents":[]}],"src":"101:862:55"},"id":55},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[12632]},"id":12633,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12612,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:56"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":12613,"nodeType":"StructuredDocumentation","src":"126:284:56","text":" @dev Collection of common custom errors used in multiple contracts\n IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n It is recommended to avoid relying on the error API for critical functionality.\n _Available since v5.1._"},"fullyImplemented":true,"id":12632,"linearizedBaseContracts":[12632],"name":"Errors","nameLocation":"419:6:56","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":12614,"nodeType":"StructuredDocumentation","src":"432:94:56","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":12620,"name":"InsufficientBalance","nameLocation":"537:19:56","nodeType":"ErrorDefinition","parameters":{"id":12619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12616,"mutability":"mutable","name":"balance","nameLocation":"565:7:56","nodeType":"VariableDeclaration","scope":12620,"src":"557:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12615,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12618,"mutability":"mutable","name":"needed","nameLocation":"582:6:56","nodeType":"VariableDeclaration","scope":12620,"src":"574:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12617,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:56"},"src":"531:59:56"},{"documentation":{"id":12621,"nodeType":"StructuredDocumentation","src":"596:89:56","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":12623,"name":"FailedCall","nameLocation":"696:10:56","nodeType":"ErrorDefinition","parameters":{"id":12622,"nodeType":"ParameterList","parameters":[],"src":"706:2:56"},"src":"690:19:56"},{"documentation":{"id":12624,"nodeType":"StructuredDocumentation","src":"715:46:56","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":12626,"name":"FailedDeployment","nameLocation":"772:16:56","nodeType":"ErrorDefinition","parameters":{"id":12625,"nodeType":"ParameterList","parameters":[],"src":"788:2:56"},"src":"766:25:56"},{"documentation":{"id":12627,"nodeType":"StructuredDocumentation","src":"797:58:56","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":12631,"name":"MissingPrecompile","nameLocation":"866:17:56","nodeType":"ErrorDefinition","parameters":{"id":12630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12629,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12631,"src":"884:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12628,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:56"},"src":"860:33:56"}],"scope":12633,"src":"411:484:56","usedErrors":[12620,12623,12626,12631],"usedEvents":[]}],"src":"100:796:56"},"id":56},"@openzeppelin/contracts/utils/Multicall.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","exportedSymbols":{"Address":[12580],"Context":[12610],"Multicall":[12719]},"id":12720,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12634,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:57"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"./Address.sol","id":12636,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12720,"sourceUnit":12581,"src":"129:38:57","symbolAliases":[{"foreign":{"id":12635,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"137:7:57","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"./Context.sol","id":12638,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12720,"sourceUnit":12611,"src":"168:38:57","symbolAliases":[{"foreign":{"id":12637,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"176:7:57","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":12640,"name":"Context","nameLocations":["1037:7:57"],"nodeType":"IdentifierPath","referencedDeclaration":12610,"src":"1037:7:57"},"id":12641,"nodeType":"InheritanceSpecifier","src":"1037:7:57"}],"canonicalName":"Multicall","contractDependencies":[],"contractKind":"contract","documentation":{"id":12639,"nodeType":"StructuredDocumentation","src":"208:797:57","text":" @dev Provides a function to batch together multiple calls in a single external call.\n Consider any assumption about calldata validation performed by the sender may be violated if it's not especially\n careful about sending transactions invoking {multicall}. For example, a relay address that filters function\n selectors won't filter calls nested within a {multicall} operation.\n NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}).\n If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`\n to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of\n {_msgSender} are not propagated to subcalls."},"fullyImplemented":true,"id":12719,"linearizedBaseContracts":[12719,12610],"name":"Multicall","nameLocation":"1024:9:57","nodeType":"ContractDefinition","nodes":[{"body":{"id":12717,"nodeType":"Block","src":"1300:392:57","statements":[{"assignments":[12652],"declarations":[{"constant":false,"id":12652,"mutability":"mutable","name":"context","nameLocation":"1323:7:57","nodeType":"VariableDeclaration","scope":12717,"src":"1310:20:57","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12651,"name":"bytes","nodeType":"ElementaryTypeName","src":"1310:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":12672,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12653,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1333:3:57","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1337:6:57","memberName":"sender","nodeType":"MemberAccess","src":"1333:10:57","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":12655,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12592,"src":"1347:10:57","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":12656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1347:12:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1333:26:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"expression":{"id":12662,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1401:3:57","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1405:4:57","memberName":"data","nodeType":"MemberAccess","src":"1401:8:57","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":12670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1401:51:57","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":12664,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1410:3:57","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1414:4:57","memberName":"data","nodeType":"MemberAccess","src":"1410:8:57","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":12666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1419:6:57","memberName":"length","nodeType":"MemberAccess","src":"1410:15:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":12667,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12609,"src":"1428:20:57","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":12668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:22:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1410:40:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"id":12671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1333:119:57","trueExpression":{"arguments":[{"hexValue":"30","id":12660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1384:1:57","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":12659,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1374:9:57","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":12658,"name":"bytes","nodeType":"ElementaryTypeName","src":"1378:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":12661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1374:12:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1310:142:57"},{"expression":{"id":12680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12673,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1463:7:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":12677,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12645,"src":"1485:4:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":12678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1490:6:57","memberName":"length","nodeType":"MemberAccess","src":"1485:11:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12676,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1473:11:57","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":12674,"name":"bytes","nodeType":"ElementaryTypeName","src":"1477:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":12675,"nodeType":"ArrayTypeName","src":"1477:7:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":12679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1473:24:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"1463:34:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":12681,"nodeType":"ExpressionStatement","src":"1463:34:57"},{"body":{"id":12713,"nodeType":"Block","src":"1549:113:57","statements":[{"expression":{"id":12711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12693,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1563:7:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":12695,"indexExpression":{"id":12694,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12683,"src":"1571:1:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1563:10:57","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":12700,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1613:4:57","typeDescriptions":{"typeIdentifier":"t_contract$_Multicall_$12719","typeString":"contract Multicall"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Multicall_$12719","typeString":"contract Multicall"}],"id":12699,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1605:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12698,"name":"address","nodeType":"ElementaryTypeName","src":"1605:7:57","typeDescriptions":{}}},"id":12701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1605:13:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":12705,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12645,"src":"1633:4:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":12707,"indexExpression":{"id":12706,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12683,"src":"1638:1:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1633:7:57","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":12708,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12652,"src":"1642:7:57","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1620:5:57","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":12702,"name":"bytes","nodeType":"ElementaryTypeName","src":"1620:5:57","typeDescriptions":{}}},"id":12704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1626:6:57","memberName":"concat","nodeType":"MemberAccess","src":"1620:12:57","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":12709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1620:30:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":12696,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"1576:7:57","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$12580_$","typeString":"type(library Address)"}},"id":12697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1584:20:57","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":12497,"src":"1576:28:57","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":12710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1576:75:57","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"1563:88:57","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12712,"nodeType":"ExpressionStatement","src":"1563:88:57"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12686,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12683,"src":"1527:1:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":12687,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12645,"src":"1531:4:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":12688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1536:6:57","memberName":"length","nodeType":"MemberAccess","src":"1531:11:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1527:15:57","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12714,"initializationExpression":{"assignments":[12683],"declarations":[{"constant":false,"id":12683,"mutability":"mutable","name":"i","nameLocation":"1520:1:57","nodeType":"VariableDeclaration","scope":12714,"src":"1512:9:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12682,"name":"uint256","nodeType":"ElementaryTypeName","src":"1512:7:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12685,"initialValue":{"hexValue":"30","id":12684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1524:1:57","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1512:13:57"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":12691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1544:3:57","subExpression":{"id":12690,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12683,"src":"1544:1:57","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12692,"nodeType":"ExpressionStatement","src":"1544:3:57"},"nodeType":"ForStatement","src":"1507:155:57"},{"expression":{"id":12715,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12649,"src":"1678:7:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"functionReturnParameters":12650,"id":12716,"nodeType":"Return","src":"1671:14:57"}]},"documentation":{"id":12642,"nodeType":"StructuredDocumentation","src":"1051:152:57","text":" @dev Receives and executes a batch of function calls on this contract.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"ac9650d8","id":12718,"implemented":true,"kind":"function","modifiers":[],"name":"multicall","nameLocation":"1217:9:57","nodeType":"FunctionDefinition","parameters":{"id":12646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12645,"mutability":"mutable","name":"data","nameLocation":"1244:4:57","nodeType":"VariableDeclaration","scope":12718,"src":"1227:21:57","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":12643,"name":"bytes","nodeType":"ElementaryTypeName","src":"1227:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":12644,"nodeType":"ArrayTypeName","src":"1227:7:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1226:23:57"},"returnParameters":{"id":12650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12649,"mutability":"mutable","name":"results","nameLocation":"1291:7:57","nodeType":"VariableDeclaration","scope":12718,"src":"1276:22:57","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":12647,"name":"bytes","nodeType":"ElementaryTypeName","src":"1276:5:57","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":12648,"nodeType":"ArrayTypeName","src":"1276:7:57","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1275:24:57"},"scope":12719,"src":"1208:484:57","stateMutability":"nonpayable","virtual":true,"visibility":"external"}],"scope":12720,"src":"1006:688:57","usedErrors":[12330,12623],"usedEvents":[]}],"src":"103:1592:57"},"id":57},"@openzeppelin/contracts/utils/Packing.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Packing.sol","exportedSymbols":{"Packing":[16305]},"id":16306,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12721,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"185:24:58"},{"abstract":false,"baseContracts":[],"canonicalName":"Packing","contractDependencies":[],"contractKind":"library","documentation":{"id":12722,"nodeType":"StructuredDocumentation","src":"211:852:58","text":" @dev Helper library packing and unpacking multiple values into bytesXX.\n Example usage:\n ```solidity\n library MyPacker {\n     type MyType is bytes32;\n     function _pack(address account, bytes4 selector, uint64 period) external pure returns (MyType) {\n         bytes12 subpack = Packing.pack_4_8(selector, bytes8(period));\n         bytes32 pack = Packing.pack_20_12(bytes20(account), subpack);\n         return MyType.wrap(pack);\n     }\n     function _unpack(MyType self) external pure returns (address, bytes4, uint64) {\n         bytes32 pack = MyType.unwrap(self);\n         return (\n             address(Packing.extract_32_20(pack, 0)),\n             Packing.extract_32_4(pack, 20),\n             uint64(Packing.extract_32_8(pack, 24))\n         );\n     }\n }\n ```\n _Available since v5.1._"},"fullyImplemented":true,"id":16305,"linearizedBaseContracts":[16305],"name":"Packing","nameLocation":"1111:7:58","nodeType":"ContractDefinition","nodes":[{"errorSelector":"3ba97636","id":12724,"name":"OutOfRangeAccess","nameLocation":"1131:16:58","nodeType":"ErrorDefinition","parameters":{"id":12723,"nodeType":"ParameterList","parameters":[],"src":"1147:2:58"},"src":"1125:25:58"},{"body":{"id":12734,"nodeType":"Block","src":"1239:196:58","statements":[{"AST":{"nativeSrc":"1274:155:58","nodeType":"YulBlock","src":"1274:155:58","statements":[{"nativeSrc":"1288:35:58","nodeType":"YulAssignment","src":"1288:35:58","value":{"arguments":[{"name":"left","nativeSrc":"1300:4:58","nodeType":"YulIdentifier","src":"1300:4:58"},{"arguments":[{"kind":"number","nativeSrc":"1310:3:58","nodeType":"YulLiteral","src":"1310:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"1319:1:58","nodeType":"YulLiteral","src":"1319:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1315:3:58","nodeType":"YulIdentifier","src":"1315:3:58"},"nativeSrc":"1315:6:58","nodeType":"YulFunctionCall","src":"1315:6:58"}],"functionName":{"name":"shl","nativeSrc":"1306:3:58","nodeType":"YulIdentifier","src":"1306:3:58"},"nativeSrc":"1306:16:58","nodeType":"YulFunctionCall","src":"1306:16:58"}],"functionName":{"name":"and","nativeSrc":"1296:3:58","nodeType":"YulIdentifier","src":"1296:3:58"},"nativeSrc":"1296:27:58","nodeType":"YulFunctionCall","src":"1296:27:58"},"variableNames":[{"name":"left","nativeSrc":"1288:4:58","nodeType":"YulIdentifier","src":"1288:4:58"}]},{"nativeSrc":"1336:37:58","nodeType":"YulAssignment","src":"1336:37:58","value":{"arguments":[{"name":"right","nativeSrc":"1349:5:58","nodeType":"YulIdentifier","src":"1349:5:58"},{"arguments":[{"kind":"number","nativeSrc":"1360:3:58","nodeType":"YulLiteral","src":"1360:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"1369:1:58","nodeType":"YulLiteral","src":"1369:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1365:3:58","nodeType":"YulIdentifier","src":"1365:3:58"},"nativeSrc":"1365:6:58","nodeType":"YulFunctionCall","src":"1365:6:58"}],"functionName":{"name":"shl","nativeSrc":"1356:3:58","nodeType":"YulIdentifier","src":"1356:3:58"},"nativeSrc":"1356:16:58","nodeType":"YulFunctionCall","src":"1356:16:58"}],"functionName":{"name":"and","nativeSrc":"1345:3:58","nodeType":"YulIdentifier","src":"1345:3:58"},"nativeSrc":"1345:28:58","nodeType":"YulFunctionCall","src":"1345:28:58"},"variableNames":[{"name":"right","nativeSrc":"1336:5:58","nodeType":"YulIdentifier","src":"1336:5:58"}]},{"nativeSrc":"1386:33:58","nodeType":"YulAssignment","src":"1386:33:58","value":{"arguments":[{"name":"left","nativeSrc":"1399:4:58","nodeType":"YulIdentifier","src":"1399:4:58"},{"arguments":[{"kind":"number","nativeSrc":"1409:1:58","nodeType":"YulLiteral","src":"1409:1:58","type":"","value":"8"},{"name":"right","nativeSrc":"1412:5:58","nodeType":"YulIdentifier","src":"1412:5:58"}],"functionName":{"name":"shr","nativeSrc":"1405:3:58","nodeType":"YulIdentifier","src":"1405:3:58"},"nativeSrc":"1405:13:58","nodeType":"YulFunctionCall","src":"1405:13:58"}],"functionName":{"name":"or","nativeSrc":"1396:2:58","nodeType":"YulIdentifier","src":"1396:2:58"},"nativeSrc":"1396:23:58","nodeType":"YulFunctionCall","src":"1396:23:58"},"variableNames":[{"name":"result","nativeSrc":"1386:6:58","nodeType":"YulIdentifier","src":"1386:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12726,"isOffset":false,"isSlot":false,"src":"1288:4:58","valueSize":1},{"declaration":12726,"isOffset":false,"isSlot":false,"src":"1300:4:58","valueSize":1},{"declaration":12726,"isOffset":false,"isSlot":false,"src":"1399:4:58","valueSize":1},{"declaration":12731,"isOffset":false,"isSlot":false,"src":"1386:6:58","valueSize":1},{"declaration":12728,"isOffset":false,"isSlot":false,"src":"1336:5:58","valueSize":1},{"declaration":12728,"isOffset":false,"isSlot":false,"src":"1349:5:58","valueSize":1},{"declaration":12728,"isOffset":false,"isSlot":false,"src":"1412:5:58","valueSize":1}],"flags":["memory-safe"],"id":12733,"nodeType":"InlineAssembly","src":"1249:180:58"}]},"id":12735,"implemented":true,"kind":"function","modifiers":[],"name":"pack_1_1","nameLocation":"1165:8:58","nodeType":"FunctionDefinition","parameters":{"id":12729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12726,"mutability":"mutable","name":"left","nameLocation":"1181:4:58","nodeType":"VariableDeclaration","scope":12735,"src":"1174:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":12725,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1174:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":12728,"mutability":"mutable","name":"right","nameLocation":"1194:5:58","nodeType":"VariableDeclaration","scope":12735,"src":"1187:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":12727,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1187:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"1173:27:58"},"returnParameters":{"id":12732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12731,"mutability":"mutable","name":"result","nameLocation":"1231:6:58","nodeType":"VariableDeclaration","scope":12735,"src":"1224:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12730,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1224:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"1223:15:58"},"scope":16305,"src":"1156:279:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12745,"nodeType":"Block","src":"1524:197:58","statements":[{"AST":{"nativeSrc":"1559:156:58","nodeType":"YulBlock","src":"1559:156:58","statements":[{"nativeSrc":"1573:35:58","nodeType":"YulAssignment","src":"1573:35:58","value":{"arguments":[{"name":"left","nativeSrc":"1585:4:58","nodeType":"YulIdentifier","src":"1585:4:58"},{"arguments":[{"kind":"number","nativeSrc":"1595:3:58","nodeType":"YulLiteral","src":"1595:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"1604:1:58","nodeType":"YulLiteral","src":"1604:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1600:3:58","nodeType":"YulIdentifier","src":"1600:3:58"},"nativeSrc":"1600:6:58","nodeType":"YulFunctionCall","src":"1600:6:58"}],"functionName":{"name":"shl","nativeSrc":"1591:3:58","nodeType":"YulIdentifier","src":"1591:3:58"},"nativeSrc":"1591:16:58","nodeType":"YulFunctionCall","src":"1591:16:58"}],"functionName":{"name":"and","nativeSrc":"1581:3:58","nodeType":"YulIdentifier","src":"1581:3:58"},"nativeSrc":"1581:27:58","nodeType":"YulFunctionCall","src":"1581:27:58"},"variableNames":[{"name":"left","nativeSrc":"1573:4:58","nodeType":"YulIdentifier","src":"1573:4:58"}]},{"nativeSrc":"1621:37:58","nodeType":"YulAssignment","src":"1621:37:58","value":{"arguments":[{"name":"right","nativeSrc":"1634:5:58","nodeType":"YulIdentifier","src":"1634:5:58"},{"arguments":[{"kind":"number","nativeSrc":"1645:3:58","nodeType":"YulLiteral","src":"1645:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"1654:1:58","nodeType":"YulLiteral","src":"1654:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1650:3:58","nodeType":"YulIdentifier","src":"1650:3:58"},"nativeSrc":"1650:6:58","nodeType":"YulFunctionCall","src":"1650:6:58"}],"functionName":{"name":"shl","nativeSrc":"1641:3:58","nodeType":"YulIdentifier","src":"1641:3:58"},"nativeSrc":"1641:16:58","nodeType":"YulFunctionCall","src":"1641:16:58"}],"functionName":{"name":"and","nativeSrc":"1630:3:58","nodeType":"YulIdentifier","src":"1630:3:58"},"nativeSrc":"1630:28:58","nodeType":"YulFunctionCall","src":"1630:28:58"},"variableNames":[{"name":"right","nativeSrc":"1621:5:58","nodeType":"YulIdentifier","src":"1621:5:58"}]},{"nativeSrc":"1671:34:58","nodeType":"YulAssignment","src":"1671:34:58","value":{"arguments":[{"name":"left","nativeSrc":"1684:4:58","nodeType":"YulIdentifier","src":"1684:4:58"},{"arguments":[{"kind":"number","nativeSrc":"1694:2:58","nodeType":"YulLiteral","src":"1694:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"1698:5:58","nodeType":"YulIdentifier","src":"1698:5:58"}],"functionName":{"name":"shr","nativeSrc":"1690:3:58","nodeType":"YulIdentifier","src":"1690:3:58"},"nativeSrc":"1690:14:58","nodeType":"YulFunctionCall","src":"1690:14:58"}],"functionName":{"name":"or","nativeSrc":"1681:2:58","nodeType":"YulIdentifier","src":"1681:2:58"},"nativeSrc":"1681:24:58","nodeType":"YulFunctionCall","src":"1681:24:58"},"variableNames":[{"name":"result","nativeSrc":"1671:6:58","nodeType":"YulIdentifier","src":"1671:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12737,"isOffset":false,"isSlot":false,"src":"1573:4:58","valueSize":1},{"declaration":12737,"isOffset":false,"isSlot":false,"src":"1585:4:58","valueSize":1},{"declaration":12737,"isOffset":false,"isSlot":false,"src":"1684:4:58","valueSize":1},{"declaration":12742,"isOffset":false,"isSlot":false,"src":"1671:6:58","valueSize":1},{"declaration":12739,"isOffset":false,"isSlot":false,"src":"1621:5:58","valueSize":1},{"declaration":12739,"isOffset":false,"isSlot":false,"src":"1634:5:58","valueSize":1},{"declaration":12739,"isOffset":false,"isSlot":false,"src":"1698:5:58","valueSize":1}],"flags":["memory-safe"],"id":12744,"nodeType":"InlineAssembly","src":"1534:181:58"}]},"id":12746,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_2","nameLocation":"1450:8:58","nodeType":"FunctionDefinition","parameters":{"id":12740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12737,"mutability":"mutable","name":"left","nameLocation":"1466:4:58","nodeType":"VariableDeclaration","scope":12746,"src":"1459:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12736,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1459:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12739,"mutability":"mutable","name":"right","nameLocation":"1479:5:58","nodeType":"VariableDeclaration","scope":12746,"src":"1472:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12738,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1472:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"1458:27:58"},"returnParameters":{"id":12743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12742,"mutability":"mutable","name":"result","nameLocation":"1516:6:58","nodeType":"VariableDeclaration","scope":12746,"src":"1509:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12741,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1509:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1508:15:58"},"scope":16305,"src":"1441:280:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12756,"nodeType":"Block","src":"1810:197:58","statements":[{"AST":{"nativeSrc":"1845:156:58","nodeType":"YulBlock","src":"1845:156:58","statements":[{"nativeSrc":"1859:35:58","nodeType":"YulAssignment","src":"1859:35:58","value":{"arguments":[{"name":"left","nativeSrc":"1871:4:58","nodeType":"YulIdentifier","src":"1871:4:58"},{"arguments":[{"kind":"number","nativeSrc":"1881:3:58","nodeType":"YulLiteral","src":"1881:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"1890:1:58","nodeType":"YulLiteral","src":"1890:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1886:3:58","nodeType":"YulIdentifier","src":"1886:3:58"},"nativeSrc":"1886:6:58","nodeType":"YulFunctionCall","src":"1886:6:58"}],"functionName":{"name":"shl","nativeSrc":"1877:3:58","nodeType":"YulIdentifier","src":"1877:3:58"},"nativeSrc":"1877:16:58","nodeType":"YulFunctionCall","src":"1877:16:58"}],"functionName":{"name":"and","nativeSrc":"1867:3:58","nodeType":"YulIdentifier","src":"1867:3:58"},"nativeSrc":"1867:27:58","nodeType":"YulFunctionCall","src":"1867:27:58"},"variableNames":[{"name":"left","nativeSrc":"1859:4:58","nodeType":"YulIdentifier","src":"1859:4:58"}]},{"nativeSrc":"1907:37:58","nodeType":"YulAssignment","src":"1907:37:58","value":{"arguments":[{"name":"right","nativeSrc":"1920:5:58","nodeType":"YulIdentifier","src":"1920:5:58"},{"arguments":[{"kind":"number","nativeSrc":"1931:3:58","nodeType":"YulLiteral","src":"1931:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"1940:1:58","nodeType":"YulLiteral","src":"1940:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1936:3:58","nodeType":"YulIdentifier","src":"1936:3:58"},"nativeSrc":"1936:6:58","nodeType":"YulFunctionCall","src":"1936:6:58"}],"functionName":{"name":"shl","nativeSrc":"1927:3:58","nodeType":"YulIdentifier","src":"1927:3:58"},"nativeSrc":"1927:16:58","nodeType":"YulFunctionCall","src":"1927:16:58"}],"functionName":{"name":"and","nativeSrc":"1916:3:58","nodeType":"YulIdentifier","src":"1916:3:58"},"nativeSrc":"1916:28:58","nodeType":"YulFunctionCall","src":"1916:28:58"},"variableNames":[{"name":"right","nativeSrc":"1907:5:58","nodeType":"YulIdentifier","src":"1907:5:58"}]},{"nativeSrc":"1957:34:58","nodeType":"YulAssignment","src":"1957:34:58","value":{"arguments":[{"name":"left","nativeSrc":"1970:4:58","nodeType":"YulIdentifier","src":"1970:4:58"},{"arguments":[{"kind":"number","nativeSrc":"1980:2:58","nodeType":"YulLiteral","src":"1980:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"1984:5:58","nodeType":"YulIdentifier","src":"1984:5:58"}],"functionName":{"name":"shr","nativeSrc":"1976:3:58","nodeType":"YulIdentifier","src":"1976:3:58"},"nativeSrc":"1976:14:58","nodeType":"YulFunctionCall","src":"1976:14:58"}],"functionName":{"name":"or","nativeSrc":"1967:2:58","nodeType":"YulIdentifier","src":"1967:2:58"},"nativeSrc":"1967:24:58","nodeType":"YulFunctionCall","src":"1967:24:58"},"variableNames":[{"name":"result","nativeSrc":"1957:6:58","nodeType":"YulIdentifier","src":"1957:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12748,"isOffset":false,"isSlot":false,"src":"1859:4:58","valueSize":1},{"declaration":12748,"isOffset":false,"isSlot":false,"src":"1871:4:58","valueSize":1},{"declaration":12748,"isOffset":false,"isSlot":false,"src":"1970:4:58","valueSize":1},{"declaration":12753,"isOffset":false,"isSlot":false,"src":"1957:6:58","valueSize":1},{"declaration":12750,"isOffset":false,"isSlot":false,"src":"1907:5:58","valueSize":1},{"declaration":12750,"isOffset":false,"isSlot":false,"src":"1920:5:58","valueSize":1},{"declaration":12750,"isOffset":false,"isSlot":false,"src":"1984:5:58","valueSize":1}],"flags":["memory-safe"],"id":12755,"nodeType":"InlineAssembly","src":"1820:181:58"}]},"id":12757,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_4","nameLocation":"1736:8:58","nodeType":"FunctionDefinition","parameters":{"id":12751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12748,"mutability":"mutable","name":"left","nameLocation":"1752:4:58","nodeType":"VariableDeclaration","scope":12757,"src":"1745:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12747,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1745:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12750,"mutability":"mutable","name":"right","nameLocation":"1765:5:58","nodeType":"VariableDeclaration","scope":12757,"src":"1758:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12749,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1758:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1744:27:58"},"returnParameters":{"id":12754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12753,"mutability":"mutable","name":"result","nameLocation":"1802:6:58","nodeType":"VariableDeclaration","scope":12757,"src":"1795:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12752,"name":"bytes6","nodeType":"ElementaryTypeName","src":"1795:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"1794:15:58"},"scope":16305,"src":"1727:280:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12767,"nodeType":"Block","src":"2096:197:58","statements":[{"AST":{"nativeSrc":"2131:156:58","nodeType":"YulBlock","src":"2131:156:58","statements":[{"nativeSrc":"2145:35:58","nodeType":"YulAssignment","src":"2145:35:58","value":{"arguments":[{"name":"left","nativeSrc":"2157:4:58","nodeType":"YulIdentifier","src":"2157:4:58"},{"arguments":[{"kind":"number","nativeSrc":"2167:3:58","nodeType":"YulLiteral","src":"2167:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"2176:1:58","nodeType":"YulLiteral","src":"2176:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2172:3:58","nodeType":"YulIdentifier","src":"2172:3:58"},"nativeSrc":"2172:6:58","nodeType":"YulFunctionCall","src":"2172:6:58"}],"functionName":{"name":"shl","nativeSrc":"2163:3:58","nodeType":"YulIdentifier","src":"2163:3:58"},"nativeSrc":"2163:16:58","nodeType":"YulFunctionCall","src":"2163:16:58"}],"functionName":{"name":"and","nativeSrc":"2153:3:58","nodeType":"YulIdentifier","src":"2153:3:58"},"nativeSrc":"2153:27:58","nodeType":"YulFunctionCall","src":"2153:27:58"},"variableNames":[{"name":"left","nativeSrc":"2145:4:58","nodeType":"YulIdentifier","src":"2145:4:58"}]},{"nativeSrc":"2193:37:58","nodeType":"YulAssignment","src":"2193:37:58","value":{"arguments":[{"name":"right","nativeSrc":"2206:5:58","nodeType":"YulIdentifier","src":"2206:5:58"},{"arguments":[{"kind":"number","nativeSrc":"2217:3:58","nodeType":"YulLiteral","src":"2217:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"2226:1:58","nodeType":"YulLiteral","src":"2226:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2222:3:58","nodeType":"YulIdentifier","src":"2222:3:58"},"nativeSrc":"2222:6:58","nodeType":"YulFunctionCall","src":"2222:6:58"}],"functionName":{"name":"shl","nativeSrc":"2213:3:58","nodeType":"YulIdentifier","src":"2213:3:58"},"nativeSrc":"2213:16:58","nodeType":"YulFunctionCall","src":"2213:16:58"}],"functionName":{"name":"and","nativeSrc":"2202:3:58","nodeType":"YulIdentifier","src":"2202:3:58"},"nativeSrc":"2202:28:58","nodeType":"YulFunctionCall","src":"2202:28:58"},"variableNames":[{"name":"right","nativeSrc":"2193:5:58","nodeType":"YulIdentifier","src":"2193:5:58"}]},{"nativeSrc":"2243:34:58","nodeType":"YulAssignment","src":"2243:34:58","value":{"arguments":[{"name":"left","nativeSrc":"2256:4:58","nodeType":"YulIdentifier","src":"2256:4:58"},{"arguments":[{"kind":"number","nativeSrc":"2266:2:58","nodeType":"YulLiteral","src":"2266:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"2270:5:58","nodeType":"YulIdentifier","src":"2270:5:58"}],"functionName":{"name":"shr","nativeSrc":"2262:3:58","nodeType":"YulIdentifier","src":"2262:3:58"},"nativeSrc":"2262:14:58","nodeType":"YulFunctionCall","src":"2262:14:58"}],"functionName":{"name":"or","nativeSrc":"2253:2:58","nodeType":"YulIdentifier","src":"2253:2:58"},"nativeSrc":"2253:24:58","nodeType":"YulFunctionCall","src":"2253:24:58"},"variableNames":[{"name":"result","nativeSrc":"2243:6:58","nodeType":"YulIdentifier","src":"2243:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12759,"isOffset":false,"isSlot":false,"src":"2145:4:58","valueSize":1},{"declaration":12759,"isOffset":false,"isSlot":false,"src":"2157:4:58","valueSize":1},{"declaration":12759,"isOffset":false,"isSlot":false,"src":"2256:4:58","valueSize":1},{"declaration":12764,"isOffset":false,"isSlot":false,"src":"2243:6:58","valueSize":1},{"declaration":12761,"isOffset":false,"isSlot":false,"src":"2193:5:58","valueSize":1},{"declaration":12761,"isOffset":false,"isSlot":false,"src":"2206:5:58","valueSize":1},{"declaration":12761,"isOffset":false,"isSlot":false,"src":"2270:5:58","valueSize":1}],"flags":["memory-safe"],"id":12766,"nodeType":"InlineAssembly","src":"2106:181:58"}]},"id":12768,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_6","nameLocation":"2022:8:58","nodeType":"FunctionDefinition","parameters":{"id":12762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12759,"mutability":"mutable","name":"left","nameLocation":"2038:4:58","nodeType":"VariableDeclaration","scope":12768,"src":"2031:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12758,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2031:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12761,"mutability":"mutable","name":"right","nameLocation":"2051:5:58","nodeType":"VariableDeclaration","scope":12768,"src":"2044:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12760,"name":"bytes6","nodeType":"ElementaryTypeName","src":"2044:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"2030:27:58"},"returnParameters":{"id":12765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12764,"mutability":"mutable","name":"result","nameLocation":"2088:6:58","nodeType":"VariableDeclaration","scope":12768,"src":"2081:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12763,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2081:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"2080:15:58"},"scope":16305,"src":"2013:280:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12778,"nodeType":"Block","src":"2383:197:58","statements":[{"AST":{"nativeSrc":"2418:156:58","nodeType":"YulBlock","src":"2418:156:58","statements":[{"nativeSrc":"2432:35:58","nodeType":"YulAssignment","src":"2432:35:58","value":{"arguments":[{"name":"left","nativeSrc":"2444:4:58","nodeType":"YulIdentifier","src":"2444:4:58"},{"arguments":[{"kind":"number","nativeSrc":"2454:3:58","nodeType":"YulLiteral","src":"2454:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"2463:1:58","nodeType":"YulLiteral","src":"2463:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2459:3:58","nodeType":"YulIdentifier","src":"2459:3:58"},"nativeSrc":"2459:6:58","nodeType":"YulFunctionCall","src":"2459:6:58"}],"functionName":{"name":"shl","nativeSrc":"2450:3:58","nodeType":"YulIdentifier","src":"2450:3:58"},"nativeSrc":"2450:16:58","nodeType":"YulFunctionCall","src":"2450:16:58"}],"functionName":{"name":"and","nativeSrc":"2440:3:58","nodeType":"YulIdentifier","src":"2440:3:58"},"nativeSrc":"2440:27:58","nodeType":"YulFunctionCall","src":"2440:27:58"},"variableNames":[{"name":"left","nativeSrc":"2432:4:58","nodeType":"YulIdentifier","src":"2432:4:58"}]},{"nativeSrc":"2480:37:58","nodeType":"YulAssignment","src":"2480:37:58","value":{"arguments":[{"name":"right","nativeSrc":"2493:5:58","nodeType":"YulIdentifier","src":"2493:5:58"},{"arguments":[{"kind":"number","nativeSrc":"2504:3:58","nodeType":"YulLiteral","src":"2504:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"2513:1:58","nodeType":"YulLiteral","src":"2513:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2509:3:58","nodeType":"YulIdentifier","src":"2509:3:58"},"nativeSrc":"2509:6:58","nodeType":"YulFunctionCall","src":"2509:6:58"}],"functionName":{"name":"shl","nativeSrc":"2500:3:58","nodeType":"YulIdentifier","src":"2500:3:58"},"nativeSrc":"2500:16:58","nodeType":"YulFunctionCall","src":"2500:16:58"}],"functionName":{"name":"and","nativeSrc":"2489:3:58","nodeType":"YulIdentifier","src":"2489:3:58"},"nativeSrc":"2489:28:58","nodeType":"YulFunctionCall","src":"2489:28:58"},"variableNames":[{"name":"right","nativeSrc":"2480:5:58","nodeType":"YulIdentifier","src":"2480:5:58"}]},{"nativeSrc":"2530:34:58","nodeType":"YulAssignment","src":"2530:34:58","value":{"arguments":[{"name":"left","nativeSrc":"2543:4:58","nodeType":"YulIdentifier","src":"2543:4:58"},{"arguments":[{"kind":"number","nativeSrc":"2553:2:58","nodeType":"YulLiteral","src":"2553:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"2557:5:58","nodeType":"YulIdentifier","src":"2557:5:58"}],"functionName":{"name":"shr","nativeSrc":"2549:3:58","nodeType":"YulIdentifier","src":"2549:3:58"},"nativeSrc":"2549:14:58","nodeType":"YulFunctionCall","src":"2549:14:58"}],"functionName":{"name":"or","nativeSrc":"2540:2:58","nodeType":"YulIdentifier","src":"2540:2:58"},"nativeSrc":"2540:24:58","nodeType":"YulFunctionCall","src":"2540:24:58"},"variableNames":[{"name":"result","nativeSrc":"2530:6:58","nodeType":"YulIdentifier","src":"2530:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12770,"isOffset":false,"isSlot":false,"src":"2432:4:58","valueSize":1},{"declaration":12770,"isOffset":false,"isSlot":false,"src":"2444:4:58","valueSize":1},{"declaration":12770,"isOffset":false,"isSlot":false,"src":"2543:4:58","valueSize":1},{"declaration":12775,"isOffset":false,"isSlot":false,"src":"2530:6:58","valueSize":1},{"declaration":12772,"isOffset":false,"isSlot":false,"src":"2480:5:58","valueSize":1},{"declaration":12772,"isOffset":false,"isSlot":false,"src":"2493:5:58","valueSize":1},{"declaration":12772,"isOffset":false,"isSlot":false,"src":"2557:5:58","valueSize":1}],"flags":["memory-safe"],"id":12777,"nodeType":"InlineAssembly","src":"2393:181:58"}]},"id":12779,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_8","nameLocation":"2308:8:58","nodeType":"FunctionDefinition","parameters":{"id":12773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12770,"mutability":"mutable","name":"left","nameLocation":"2324:4:58","nodeType":"VariableDeclaration","scope":12779,"src":"2317:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12769,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2317:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12772,"mutability":"mutable","name":"right","nameLocation":"2337:5:58","nodeType":"VariableDeclaration","scope":12779,"src":"2330:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12771,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2330:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"2316:27:58"},"returnParameters":{"id":12776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12775,"mutability":"mutable","name":"result","nameLocation":"2375:6:58","nodeType":"VariableDeclaration","scope":12779,"src":"2367:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":12774,"name":"bytes10","nodeType":"ElementaryTypeName","src":"2367:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"2366:16:58"},"scope":16305,"src":"2299:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12789,"nodeType":"Block","src":"2672:197:58","statements":[{"AST":{"nativeSrc":"2707:156:58","nodeType":"YulBlock","src":"2707:156:58","statements":[{"nativeSrc":"2721:35:58","nodeType":"YulAssignment","src":"2721:35:58","value":{"arguments":[{"name":"left","nativeSrc":"2733:4:58","nodeType":"YulIdentifier","src":"2733:4:58"},{"arguments":[{"kind":"number","nativeSrc":"2743:3:58","nodeType":"YulLiteral","src":"2743:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"2752:1:58","nodeType":"YulLiteral","src":"2752:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2748:3:58","nodeType":"YulIdentifier","src":"2748:3:58"},"nativeSrc":"2748:6:58","nodeType":"YulFunctionCall","src":"2748:6:58"}],"functionName":{"name":"shl","nativeSrc":"2739:3:58","nodeType":"YulIdentifier","src":"2739:3:58"},"nativeSrc":"2739:16:58","nodeType":"YulFunctionCall","src":"2739:16:58"}],"functionName":{"name":"and","nativeSrc":"2729:3:58","nodeType":"YulIdentifier","src":"2729:3:58"},"nativeSrc":"2729:27:58","nodeType":"YulFunctionCall","src":"2729:27:58"},"variableNames":[{"name":"left","nativeSrc":"2721:4:58","nodeType":"YulIdentifier","src":"2721:4:58"}]},{"nativeSrc":"2769:37:58","nodeType":"YulAssignment","src":"2769:37:58","value":{"arguments":[{"name":"right","nativeSrc":"2782:5:58","nodeType":"YulIdentifier","src":"2782:5:58"},{"arguments":[{"kind":"number","nativeSrc":"2793:3:58","nodeType":"YulLiteral","src":"2793:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"2802:1:58","nodeType":"YulLiteral","src":"2802:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2798:3:58","nodeType":"YulIdentifier","src":"2798:3:58"},"nativeSrc":"2798:6:58","nodeType":"YulFunctionCall","src":"2798:6:58"}],"functionName":{"name":"shl","nativeSrc":"2789:3:58","nodeType":"YulIdentifier","src":"2789:3:58"},"nativeSrc":"2789:16:58","nodeType":"YulFunctionCall","src":"2789:16:58"}],"functionName":{"name":"and","nativeSrc":"2778:3:58","nodeType":"YulIdentifier","src":"2778:3:58"},"nativeSrc":"2778:28:58","nodeType":"YulFunctionCall","src":"2778:28:58"},"variableNames":[{"name":"right","nativeSrc":"2769:5:58","nodeType":"YulIdentifier","src":"2769:5:58"}]},{"nativeSrc":"2819:34:58","nodeType":"YulAssignment","src":"2819:34:58","value":{"arguments":[{"name":"left","nativeSrc":"2832:4:58","nodeType":"YulIdentifier","src":"2832:4:58"},{"arguments":[{"kind":"number","nativeSrc":"2842:2:58","nodeType":"YulLiteral","src":"2842:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"2846:5:58","nodeType":"YulIdentifier","src":"2846:5:58"}],"functionName":{"name":"shr","nativeSrc":"2838:3:58","nodeType":"YulIdentifier","src":"2838:3:58"},"nativeSrc":"2838:14:58","nodeType":"YulFunctionCall","src":"2838:14:58"}],"functionName":{"name":"or","nativeSrc":"2829:2:58","nodeType":"YulIdentifier","src":"2829:2:58"},"nativeSrc":"2829:24:58","nodeType":"YulFunctionCall","src":"2829:24:58"},"variableNames":[{"name":"result","nativeSrc":"2819:6:58","nodeType":"YulIdentifier","src":"2819:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12781,"isOffset":false,"isSlot":false,"src":"2721:4:58","valueSize":1},{"declaration":12781,"isOffset":false,"isSlot":false,"src":"2733:4:58","valueSize":1},{"declaration":12781,"isOffset":false,"isSlot":false,"src":"2832:4:58","valueSize":1},{"declaration":12786,"isOffset":false,"isSlot":false,"src":"2819:6:58","valueSize":1},{"declaration":12783,"isOffset":false,"isSlot":false,"src":"2769:5:58","valueSize":1},{"declaration":12783,"isOffset":false,"isSlot":false,"src":"2782:5:58","valueSize":1},{"declaration":12783,"isOffset":false,"isSlot":false,"src":"2846:5:58","valueSize":1}],"flags":["memory-safe"],"id":12788,"nodeType":"InlineAssembly","src":"2682:181:58"}]},"id":12790,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_10","nameLocation":"2595:9:58","nodeType":"FunctionDefinition","parameters":{"id":12784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12781,"mutability":"mutable","name":"left","nameLocation":"2612:4:58","nodeType":"VariableDeclaration","scope":12790,"src":"2605:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12780,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2605:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12783,"mutability":"mutable","name":"right","nameLocation":"2626:5:58","nodeType":"VariableDeclaration","scope":12790,"src":"2618:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":12782,"name":"bytes10","nodeType":"ElementaryTypeName","src":"2618:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"2604:28:58"},"returnParameters":{"id":12787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12786,"mutability":"mutable","name":"result","nameLocation":"2664:6:58","nodeType":"VariableDeclaration","scope":12790,"src":"2656:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":12785,"name":"bytes12","nodeType":"ElementaryTypeName","src":"2656:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"2655:16:58"},"scope":16305,"src":"2586:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12800,"nodeType":"Block","src":"2961:196:58","statements":[{"AST":{"nativeSrc":"2996:155:58","nodeType":"YulBlock","src":"2996:155:58","statements":[{"nativeSrc":"3010:35:58","nodeType":"YulAssignment","src":"3010:35:58","value":{"arguments":[{"name":"left","nativeSrc":"3022:4:58","nodeType":"YulIdentifier","src":"3022:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3032:3:58","nodeType":"YulLiteral","src":"3032:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"3041:1:58","nodeType":"YulLiteral","src":"3041:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3037:3:58","nodeType":"YulIdentifier","src":"3037:3:58"},"nativeSrc":"3037:6:58","nodeType":"YulFunctionCall","src":"3037:6:58"}],"functionName":{"name":"shl","nativeSrc":"3028:3:58","nodeType":"YulIdentifier","src":"3028:3:58"},"nativeSrc":"3028:16:58","nodeType":"YulFunctionCall","src":"3028:16:58"}],"functionName":{"name":"and","nativeSrc":"3018:3:58","nodeType":"YulIdentifier","src":"3018:3:58"},"nativeSrc":"3018:27:58","nodeType":"YulFunctionCall","src":"3018:27:58"},"variableNames":[{"name":"left","nativeSrc":"3010:4:58","nodeType":"YulIdentifier","src":"3010:4:58"}]},{"nativeSrc":"3058:36:58","nodeType":"YulAssignment","src":"3058:36:58","value":{"arguments":[{"name":"right","nativeSrc":"3071:5:58","nodeType":"YulIdentifier","src":"3071:5:58"},{"arguments":[{"kind":"number","nativeSrc":"3082:2:58","nodeType":"YulLiteral","src":"3082:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"3090:1:58","nodeType":"YulLiteral","src":"3090:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3086:3:58","nodeType":"YulIdentifier","src":"3086:3:58"},"nativeSrc":"3086:6:58","nodeType":"YulFunctionCall","src":"3086:6:58"}],"functionName":{"name":"shl","nativeSrc":"3078:3:58","nodeType":"YulIdentifier","src":"3078:3:58"},"nativeSrc":"3078:15:58","nodeType":"YulFunctionCall","src":"3078:15:58"}],"functionName":{"name":"and","nativeSrc":"3067:3:58","nodeType":"YulIdentifier","src":"3067:3:58"},"nativeSrc":"3067:27:58","nodeType":"YulFunctionCall","src":"3067:27:58"},"variableNames":[{"name":"right","nativeSrc":"3058:5:58","nodeType":"YulIdentifier","src":"3058:5:58"}]},{"nativeSrc":"3107:34:58","nodeType":"YulAssignment","src":"3107:34:58","value":{"arguments":[{"name":"left","nativeSrc":"3120:4:58","nodeType":"YulIdentifier","src":"3120:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3130:2:58","nodeType":"YulLiteral","src":"3130:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"3134:5:58","nodeType":"YulIdentifier","src":"3134:5:58"}],"functionName":{"name":"shr","nativeSrc":"3126:3:58","nodeType":"YulIdentifier","src":"3126:3:58"},"nativeSrc":"3126:14:58","nodeType":"YulFunctionCall","src":"3126:14:58"}],"functionName":{"name":"or","nativeSrc":"3117:2:58","nodeType":"YulIdentifier","src":"3117:2:58"},"nativeSrc":"3117:24:58","nodeType":"YulFunctionCall","src":"3117:24:58"},"variableNames":[{"name":"result","nativeSrc":"3107:6:58","nodeType":"YulIdentifier","src":"3107:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12792,"isOffset":false,"isSlot":false,"src":"3010:4:58","valueSize":1},{"declaration":12792,"isOffset":false,"isSlot":false,"src":"3022:4:58","valueSize":1},{"declaration":12792,"isOffset":false,"isSlot":false,"src":"3120:4:58","valueSize":1},{"declaration":12797,"isOffset":false,"isSlot":false,"src":"3107:6:58","valueSize":1},{"declaration":12794,"isOffset":false,"isSlot":false,"src":"3058:5:58","valueSize":1},{"declaration":12794,"isOffset":false,"isSlot":false,"src":"3071:5:58","valueSize":1},{"declaration":12794,"isOffset":false,"isSlot":false,"src":"3134:5:58","valueSize":1}],"flags":["memory-safe"],"id":12799,"nodeType":"InlineAssembly","src":"2971:180:58"}]},"id":12801,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_20","nameLocation":"2884:9:58","nodeType":"FunctionDefinition","parameters":{"id":12795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12792,"mutability":"mutable","name":"left","nameLocation":"2901:4:58","nodeType":"VariableDeclaration","scope":12801,"src":"2894:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12791,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2894:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12794,"mutability":"mutable","name":"right","nameLocation":"2915:5:58","nodeType":"VariableDeclaration","scope":12801,"src":"2907:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":12793,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2907:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"2893:28:58"},"returnParameters":{"id":12798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12797,"mutability":"mutable","name":"result","nameLocation":"2953:6:58","nodeType":"VariableDeclaration","scope":12801,"src":"2945:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":12796,"name":"bytes22","nodeType":"ElementaryTypeName","src":"2945:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"2944:16:58"},"scope":16305,"src":"2875:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12811,"nodeType":"Block","src":"3249:196:58","statements":[{"AST":{"nativeSrc":"3284:155:58","nodeType":"YulBlock","src":"3284:155:58","statements":[{"nativeSrc":"3298:35:58","nodeType":"YulAssignment","src":"3298:35:58","value":{"arguments":[{"name":"left","nativeSrc":"3310:4:58","nodeType":"YulIdentifier","src":"3310:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3320:3:58","nodeType":"YulLiteral","src":"3320:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"3329:1:58","nodeType":"YulLiteral","src":"3329:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3325:3:58","nodeType":"YulIdentifier","src":"3325:3:58"},"nativeSrc":"3325:6:58","nodeType":"YulFunctionCall","src":"3325:6:58"}],"functionName":{"name":"shl","nativeSrc":"3316:3:58","nodeType":"YulIdentifier","src":"3316:3:58"},"nativeSrc":"3316:16:58","nodeType":"YulFunctionCall","src":"3316:16:58"}],"functionName":{"name":"and","nativeSrc":"3306:3:58","nodeType":"YulIdentifier","src":"3306:3:58"},"nativeSrc":"3306:27:58","nodeType":"YulFunctionCall","src":"3306:27:58"},"variableNames":[{"name":"left","nativeSrc":"3298:4:58","nodeType":"YulIdentifier","src":"3298:4:58"}]},{"nativeSrc":"3346:36:58","nodeType":"YulAssignment","src":"3346:36:58","value":{"arguments":[{"name":"right","nativeSrc":"3359:5:58","nodeType":"YulIdentifier","src":"3359:5:58"},{"arguments":[{"kind":"number","nativeSrc":"3370:2:58","nodeType":"YulLiteral","src":"3370:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"3378:1:58","nodeType":"YulLiteral","src":"3378:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3374:3:58","nodeType":"YulIdentifier","src":"3374:3:58"},"nativeSrc":"3374:6:58","nodeType":"YulFunctionCall","src":"3374:6:58"}],"functionName":{"name":"shl","nativeSrc":"3366:3:58","nodeType":"YulIdentifier","src":"3366:3:58"},"nativeSrc":"3366:15:58","nodeType":"YulFunctionCall","src":"3366:15:58"}],"functionName":{"name":"and","nativeSrc":"3355:3:58","nodeType":"YulIdentifier","src":"3355:3:58"},"nativeSrc":"3355:27:58","nodeType":"YulFunctionCall","src":"3355:27:58"},"variableNames":[{"name":"right","nativeSrc":"3346:5:58","nodeType":"YulIdentifier","src":"3346:5:58"}]},{"nativeSrc":"3395:34:58","nodeType":"YulAssignment","src":"3395:34:58","value":{"arguments":[{"name":"left","nativeSrc":"3408:4:58","nodeType":"YulIdentifier","src":"3408:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3418:2:58","nodeType":"YulLiteral","src":"3418:2:58","type":"","value":"16"},{"name":"right","nativeSrc":"3422:5:58","nodeType":"YulIdentifier","src":"3422:5:58"}],"functionName":{"name":"shr","nativeSrc":"3414:3:58","nodeType":"YulIdentifier","src":"3414:3:58"},"nativeSrc":"3414:14:58","nodeType":"YulFunctionCall","src":"3414:14:58"}],"functionName":{"name":"or","nativeSrc":"3405:2:58","nodeType":"YulIdentifier","src":"3405:2:58"},"nativeSrc":"3405:24:58","nodeType":"YulFunctionCall","src":"3405:24:58"},"variableNames":[{"name":"result","nativeSrc":"3395:6:58","nodeType":"YulIdentifier","src":"3395:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12803,"isOffset":false,"isSlot":false,"src":"3298:4:58","valueSize":1},{"declaration":12803,"isOffset":false,"isSlot":false,"src":"3310:4:58","valueSize":1},{"declaration":12803,"isOffset":false,"isSlot":false,"src":"3408:4:58","valueSize":1},{"declaration":12808,"isOffset":false,"isSlot":false,"src":"3395:6:58","valueSize":1},{"declaration":12805,"isOffset":false,"isSlot":false,"src":"3346:5:58","valueSize":1},{"declaration":12805,"isOffset":false,"isSlot":false,"src":"3359:5:58","valueSize":1},{"declaration":12805,"isOffset":false,"isSlot":false,"src":"3422:5:58","valueSize":1}],"flags":["memory-safe"],"id":12810,"nodeType":"InlineAssembly","src":"3259:180:58"}]},"id":12812,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_22","nameLocation":"3172:9:58","nodeType":"FunctionDefinition","parameters":{"id":12806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12803,"mutability":"mutable","name":"left","nameLocation":"3189:4:58","nodeType":"VariableDeclaration","scope":12812,"src":"3182:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12802,"name":"bytes2","nodeType":"ElementaryTypeName","src":"3182:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":12805,"mutability":"mutable","name":"right","nameLocation":"3203:5:58","nodeType":"VariableDeclaration","scope":12812,"src":"3195:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":12804,"name":"bytes22","nodeType":"ElementaryTypeName","src":"3195:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"3181:28:58"},"returnParameters":{"id":12809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12808,"mutability":"mutable","name":"result","nameLocation":"3241:6:58","nodeType":"VariableDeclaration","scope":12812,"src":"3233:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":12807,"name":"bytes24","nodeType":"ElementaryTypeName","src":"3233:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"3232:16:58"},"scope":16305,"src":"3163:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12822,"nodeType":"Block","src":"3534:197:58","statements":[{"AST":{"nativeSrc":"3569:156:58","nodeType":"YulBlock","src":"3569:156:58","statements":[{"nativeSrc":"3583:35:58","nodeType":"YulAssignment","src":"3583:35:58","value":{"arguments":[{"name":"left","nativeSrc":"3595:4:58","nodeType":"YulIdentifier","src":"3595:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3605:3:58","nodeType":"YulLiteral","src":"3605:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"3614:1:58","nodeType":"YulLiteral","src":"3614:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3610:3:58","nodeType":"YulIdentifier","src":"3610:3:58"},"nativeSrc":"3610:6:58","nodeType":"YulFunctionCall","src":"3610:6:58"}],"functionName":{"name":"shl","nativeSrc":"3601:3:58","nodeType":"YulIdentifier","src":"3601:3:58"},"nativeSrc":"3601:16:58","nodeType":"YulFunctionCall","src":"3601:16:58"}],"functionName":{"name":"and","nativeSrc":"3591:3:58","nodeType":"YulIdentifier","src":"3591:3:58"},"nativeSrc":"3591:27:58","nodeType":"YulFunctionCall","src":"3591:27:58"},"variableNames":[{"name":"left","nativeSrc":"3583:4:58","nodeType":"YulIdentifier","src":"3583:4:58"}]},{"nativeSrc":"3631:37:58","nodeType":"YulAssignment","src":"3631:37:58","value":{"arguments":[{"name":"right","nativeSrc":"3644:5:58","nodeType":"YulIdentifier","src":"3644:5:58"},{"arguments":[{"kind":"number","nativeSrc":"3655:3:58","nodeType":"YulLiteral","src":"3655:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"3664:1:58","nodeType":"YulLiteral","src":"3664:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3660:3:58","nodeType":"YulIdentifier","src":"3660:3:58"},"nativeSrc":"3660:6:58","nodeType":"YulFunctionCall","src":"3660:6:58"}],"functionName":{"name":"shl","nativeSrc":"3651:3:58","nodeType":"YulIdentifier","src":"3651:3:58"},"nativeSrc":"3651:16:58","nodeType":"YulFunctionCall","src":"3651:16:58"}],"functionName":{"name":"and","nativeSrc":"3640:3:58","nodeType":"YulIdentifier","src":"3640:3:58"},"nativeSrc":"3640:28:58","nodeType":"YulFunctionCall","src":"3640:28:58"},"variableNames":[{"name":"right","nativeSrc":"3631:5:58","nodeType":"YulIdentifier","src":"3631:5:58"}]},{"nativeSrc":"3681:34:58","nodeType":"YulAssignment","src":"3681:34:58","value":{"arguments":[{"name":"left","nativeSrc":"3694:4:58","nodeType":"YulIdentifier","src":"3694:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3704:2:58","nodeType":"YulLiteral","src":"3704:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"3708:5:58","nodeType":"YulIdentifier","src":"3708:5:58"}],"functionName":{"name":"shr","nativeSrc":"3700:3:58","nodeType":"YulIdentifier","src":"3700:3:58"},"nativeSrc":"3700:14:58","nodeType":"YulFunctionCall","src":"3700:14:58"}],"functionName":{"name":"or","nativeSrc":"3691:2:58","nodeType":"YulIdentifier","src":"3691:2:58"},"nativeSrc":"3691:24:58","nodeType":"YulFunctionCall","src":"3691:24:58"},"variableNames":[{"name":"result","nativeSrc":"3681:6:58","nodeType":"YulIdentifier","src":"3681:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12814,"isOffset":false,"isSlot":false,"src":"3583:4:58","valueSize":1},{"declaration":12814,"isOffset":false,"isSlot":false,"src":"3595:4:58","valueSize":1},{"declaration":12814,"isOffset":false,"isSlot":false,"src":"3694:4:58","valueSize":1},{"declaration":12819,"isOffset":false,"isSlot":false,"src":"3681:6:58","valueSize":1},{"declaration":12816,"isOffset":false,"isSlot":false,"src":"3631:5:58","valueSize":1},{"declaration":12816,"isOffset":false,"isSlot":false,"src":"3644:5:58","valueSize":1},{"declaration":12816,"isOffset":false,"isSlot":false,"src":"3708:5:58","valueSize":1}],"flags":["memory-safe"],"id":12821,"nodeType":"InlineAssembly","src":"3544:181:58"}]},"id":12823,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_2","nameLocation":"3460:8:58","nodeType":"FunctionDefinition","parameters":{"id":12817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12814,"mutability":"mutable","name":"left","nameLocation":"3476:4:58","nodeType":"VariableDeclaration","scope":12823,"src":"3469:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12813,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3469:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12816,"mutability":"mutable","name":"right","nameLocation":"3489:5:58","nodeType":"VariableDeclaration","scope":12823,"src":"3482:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12815,"name":"bytes2","nodeType":"ElementaryTypeName","src":"3482:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"3468:27:58"},"returnParameters":{"id":12820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12819,"mutability":"mutable","name":"result","nameLocation":"3526:6:58","nodeType":"VariableDeclaration","scope":12823,"src":"3519:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12818,"name":"bytes6","nodeType":"ElementaryTypeName","src":"3519:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"3518:15:58"},"scope":16305,"src":"3451:280:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12833,"nodeType":"Block","src":"3820:197:58","statements":[{"AST":{"nativeSrc":"3855:156:58","nodeType":"YulBlock","src":"3855:156:58","statements":[{"nativeSrc":"3869:35:58","nodeType":"YulAssignment","src":"3869:35:58","value":{"arguments":[{"name":"left","nativeSrc":"3881:4:58","nodeType":"YulIdentifier","src":"3881:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3891:3:58","nodeType":"YulLiteral","src":"3891:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"3900:1:58","nodeType":"YulLiteral","src":"3900:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3896:3:58","nodeType":"YulIdentifier","src":"3896:3:58"},"nativeSrc":"3896:6:58","nodeType":"YulFunctionCall","src":"3896:6:58"}],"functionName":{"name":"shl","nativeSrc":"3887:3:58","nodeType":"YulIdentifier","src":"3887:3:58"},"nativeSrc":"3887:16:58","nodeType":"YulFunctionCall","src":"3887:16:58"}],"functionName":{"name":"and","nativeSrc":"3877:3:58","nodeType":"YulIdentifier","src":"3877:3:58"},"nativeSrc":"3877:27:58","nodeType":"YulFunctionCall","src":"3877:27:58"},"variableNames":[{"name":"left","nativeSrc":"3869:4:58","nodeType":"YulIdentifier","src":"3869:4:58"}]},{"nativeSrc":"3917:37:58","nodeType":"YulAssignment","src":"3917:37:58","value":{"arguments":[{"name":"right","nativeSrc":"3930:5:58","nodeType":"YulIdentifier","src":"3930:5:58"},{"arguments":[{"kind":"number","nativeSrc":"3941:3:58","nodeType":"YulLiteral","src":"3941:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"3950:1:58","nodeType":"YulLiteral","src":"3950:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3946:3:58","nodeType":"YulIdentifier","src":"3946:3:58"},"nativeSrc":"3946:6:58","nodeType":"YulFunctionCall","src":"3946:6:58"}],"functionName":{"name":"shl","nativeSrc":"3937:3:58","nodeType":"YulIdentifier","src":"3937:3:58"},"nativeSrc":"3937:16:58","nodeType":"YulFunctionCall","src":"3937:16:58"}],"functionName":{"name":"and","nativeSrc":"3926:3:58","nodeType":"YulIdentifier","src":"3926:3:58"},"nativeSrc":"3926:28:58","nodeType":"YulFunctionCall","src":"3926:28:58"},"variableNames":[{"name":"right","nativeSrc":"3917:5:58","nodeType":"YulIdentifier","src":"3917:5:58"}]},{"nativeSrc":"3967:34:58","nodeType":"YulAssignment","src":"3967:34:58","value":{"arguments":[{"name":"left","nativeSrc":"3980:4:58","nodeType":"YulIdentifier","src":"3980:4:58"},{"arguments":[{"kind":"number","nativeSrc":"3990:2:58","nodeType":"YulLiteral","src":"3990:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"3994:5:58","nodeType":"YulIdentifier","src":"3994:5:58"}],"functionName":{"name":"shr","nativeSrc":"3986:3:58","nodeType":"YulIdentifier","src":"3986:3:58"},"nativeSrc":"3986:14:58","nodeType":"YulFunctionCall","src":"3986:14:58"}],"functionName":{"name":"or","nativeSrc":"3977:2:58","nodeType":"YulIdentifier","src":"3977:2:58"},"nativeSrc":"3977:24:58","nodeType":"YulFunctionCall","src":"3977:24:58"},"variableNames":[{"name":"result","nativeSrc":"3967:6:58","nodeType":"YulIdentifier","src":"3967:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12825,"isOffset":false,"isSlot":false,"src":"3869:4:58","valueSize":1},{"declaration":12825,"isOffset":false,"isSlot":false,"src":"3881:4:58","valueSize":1},{"declaration":12825,"isOffset":false,"isSlot":false,"src":"3980:4:58","valueSize":1},{"declaration":12830,"isOffset":false,"isSlot":false,"src":"3967:6:58","valueSize":1},{"declaration":12827,"isOffset":false,"isSlot":false,"src":"3917:5:58","valueSize":1},{"declaration":12827,"isOffset":false,"isSlot":false,"src":"3930:5:58","valueSize":1},{"declaration":12827,"isOffset":false,"isSlot":false,"src":"3994:5:58","valueSize":1}],"flags":["memory-safe"],"id":12832,"nodeType":"InlineAssembly","src":"3830:181:58"}]},"id":12834,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_4","nameLocation":"3746:8:58","nodeType":"FunctionDefinition","parameters":{"id":12828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12825,"mutability":"mutable","name":"left","nameLocation":"3762:4:58","nodeType":"VariableDeclaration","scope":12834,"src":"3755:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12824,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3755:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12827,"mutability":"mutable","name":"right","nameLocation":"3775:5:58","nodeType":"VariableDeclaration","scope":12834,"src":"3768:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12826,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3768:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3754:27:58"},"returnParameters":{"id":12831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12830,"mutability":"mutable","name":"result","nameLocation":"3812:6:58","nodeType":"VariableDeclaration","scope":12834,"src":"3805:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12829,"name":"bytes8","nodeType":"ElementaryTypeName","src":"3805:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"3804:15:58"},"scope":16305,"src":"3737:280:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12844,"nodeType":"Block","src":"4107:197:58","statements":[{"AST":{"nativeSrc":"4142:156:58","nodeType":"YulBlock","src":"4142:156:58","statements":[{"nativeSrc":"4156:35:58","nodeType":"YulAssignment","src":"4156:35:58","value":{"arguments":[{"name":"left","nativeSrc":"4168:4:58","nodeType":"YulIdentifier","src":"4168:4:58"},{"arguments":[{"kind":"number","nativeSrc":"4178:3:58","nodeType":"YulLiteral","src":"4178:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"4187:1:58","nodeType":"YulLiteral","src":"4187:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4183:3:58","nodeType":"YulIdentifier","src":"4183:3:58"},"nativeSrc":"4183:6:58","nodeType":"YulFunctionCall","src":"4183:6:58"}],"functionName":{"name":"shl","nativeSrc":"4174:3:58","nodeType":"YulIdentifier","src":"4174:3:58"},"nativeSrc":"4174:16:58","nodeType":"YulFunctionCall","src":"4174:16:58"}],"functionName":{"name":"and","nativeSrc":"4164:3:58","nodeType":"YulIdentifier","src":"4164:3:58"},"nativeSrc":"4164:27:58","nodeType":"YulFunctionCall","src":"4164:27:58"},"variableNames":[{"name":"left","nativeSrc":"4156:4:58","nodeType":"YulIdentifier","src":"4156:4:58"}]},{"nativeSrc":"4204:37:58","nodeType":"YulAssignment","src":"4204:37:58","value":{"arguments":[{"name":"right","nativeSrc":"4217:5:58","nodeType":"YulIdentifier","src":"4217:5:58"},{"arguments":[{"kind":"number","nativeSrc":"4228:3:58","nodeType":"YulLiteral","src":"4228:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"4237:1:58","nodeType":"YulLiteral","src":"4237:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4233:3:58","nodeType":"YulIdentifier","src":"4233:3:58"},"nativeSrc":"4233:6:58","nodeType":"YulFunctionCall","src":"4233:6:58"}],"functionName":{"name":"shl","nativeSrc":"4224:3:58","nodeType":"YulIdentifier","src":"4224:3:58"},"nativeSrc":"4224:16:58","nodeType":"YulFunctionCall","src":"4224:16:58"}],"functionName":{"name":"and","nativeSrc":"4213:3:58","nodeType":"YulIdentifier","src":"4213:3:58"},"nativeSrc":"4213:28:58","nodeType":"YulFunctionCall","src":"4213:28:58"},"variableNames":[{"name":"right","nativeSrc":"4204:5:58","nodeType":"YulIdentifier","src":"4204:5:58"}]},{"nativeSrc":"4254:34:58","nodeType":"YulAssignment","src":"4254:34:58","value":{"arguments":[{"name":"left","nativeSrc":"4267:4:58","nodeType":"YulIdentifier","src":"4267:4:58"},{"arguments":[{"kind":"number","nativeSrc":"4277:2:58","nodeType":"YulLiteral","src":"4277:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"4281:5:58","nodeType":"YulIdentifier","src":"4281:5:58"}],"functionName":{"name":"shr","nativeSrc":"4273:3:58","nodeType":"YulIdentifier","src":"4273:3:58"},"nativeSrc":"4273:14:58","nodeType":"YulFunctionCall","src":"4273:14:58"}],"functionName":{"name":"or","nativeSrc":"4264:2:58","nodeType":"YulIdentifier","src":"4264:2:58"},"nativeSrc":"4264:24:58","nodeType":"YulFunctionCall","src":"4264:24:58"},"variableNames":[{"name":"result","nativeSrc":"4254:6:58","nodeType":"YulIdentifier","src":"4254:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12836,"isOffset":false,"isSlot":false,"src":"4156:4:58","valueSize":1},{"declaration":12836,"isOffset":false,"isSlot":false,"src":"4168:4:58","valueSize":1},{"declaration":12836,"isOffset":false,"isSlot":false,"src":"4267:4:58","valueSize":1},{"declaration":12841,"isOffset":false,"isSlot":false,"src":"4254:6:58","valueSize":1},{"declaration":12838,"isOffset":false,"isSlot":false,"src":"4204:5:58","valueSize":1},{"declaration":12838,"isOffset":false,"isSlot":false,"src":"4217:5:58","valueSize":1},{"declaration":12838,"isOffset":false,"isSlot":false,"src":"4281:5:58","valueSize":1}],"flags":["memory-safe"],"id":12843,"nodeType":"InlineAssembly","src":"4117:181:58"}]},"id":12845,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_6","nameLocation":"4032:8:58","nodeType":"FunctionDefinition","parameters":{"id":12839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12836,"mutability":"mutable","name":"left","nameLocation":"4048:4:58","nodeType":"VariableDeclaration","scope":12845,"src":"4041:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12835,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4041:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12838,"mutability":"mutable","name":"right","nameLocation":"4061:5:58","nodeType":"VariableDeclaration","scope":12845,"src":"4054:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12837,"name":"bytes6","nodeType":"ElementaryTypeName","src":"4054:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"4040:27:58"},"returnParameters":{"id":12842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12841,"mutability":"mutable","name":"result","nameLocation":"4099:6:58","nodeType":"VariableDeclaration","scope":12845,"src":"4091:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":12840,"name":"bytes10","nodeType":"ElementaryTypeName","src":"4091:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"4090:16:58"},"scope":16305,"src":"4023:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12855,"nodeType":"Block","src":"4394:197:58","statements":[{"AST":{"nativeSrc":"4429:156:58","nodeType":"YulBlock","src":"4429:156:58","statements":[{"nativeSrc":"4443:35:58","nodeType":"YulAssignment","src":"4443:35:58","value":{"arguments":[{"name":"left","nativeSrc":"4455:4:58","nodeType":"YulIdentifier","src":"4455:4:58"},{"arguments":[{"kind":"number","nativeSrc":"4465:3:58","nodeType":"YulLiteral","src":"4465:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"4474:1:58","nodeType":"YulLiteral","src":"4474:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4470:3:58","nodeType":"YulIdentifier","src":"4470:3:58"},"nativeSrc":"4470:6:58","nodeType":"YulFunctionCall","src":"4470:6:58"}],"functionName":{"name":"shl","nativeSrc":"4461:3:58","nodeType":"YulIdentifier","src":"4461:3:58"},"nativeSrc":"4461:16:58","nodeType":"YulFunctionCall","src":"4461:16:58"}],"functionName":{"name":"and","nativeSrc":"4451:3:58","nodeType":"YulIdentifier","src":"4451:3:58"},"nativeSrc":"4451:27:58","nodeType":"YulFunctionCall","src":"4451:27:58"},"variableNames":[{"name":"left","nativeSrc":"4443:4:58","nodeType":"YulIdentifier","src":"4443:4:58"}]},{"nativeSrc":"4491:37:58","nodeType":"YulAssignment","src":"4491:37:58","value":{"arguments":[{"name":"right","nativeSrc":"4504:5:58","nodeType":"YulIdentifier","src":"4504:5:58"},{"arguments":[{"kind":"number","nativeSrc":"4515:3:58","nodeType":"YulLiteral","src":"4515:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"4524:1:58","nodeType":"YulLiteral","src":"4524:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4520:3:58","nodeType":"YulIdentifier","src":"4520:3:58"},"nativeSrc":"4520:6:58","nodeType":"YulFunctionCall","src":"4520:6:58"}],"functionName":{"name":"shl","nativeSrc":"4511:3:58","nodeType":"YulIdentifier","src":"4511:3:58"},"nativeSrc":"4511:16:58","nodeType":"YulFunctionCall","src":"4511:16:58"}],"functionName":{"name":"and","nativeSrc":"4500:3:58","nodeType":"YulIdentifier","src":"4500:3:58"},"nativeSrc":"4500:28:58","nodeType":"YulFunctionCall","src":"4500:28:58"},"variableNames":[{"name":"right","nativeSrc":"4491:5:58","nodeType":"YulIdentifier","src":"4491:5:58"}]},{"nativeSrc":"4541:34:58","nodeType":"YulAssignment","src":"4541:34:58","value":{"arguments":[{"name":"left","nativeSrc":"4554:4:58","nodeType":"YulIdentifier","src":"4554:4:58"},{"arguments":[{"kind":"number","nativeSrc":"4564:2:58","nodeType":"YulLiteral","src":"4564:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"4568:5:58","nodeType":"YulIdentifier","src":"4568:5:58"}],"functionName":{"name":"shr","nativeSrc":"4560:3:58","nodeType":"YulIdentifier","src":"4560:3:58"},"nativeSrc":"4560:14:58","nodeType":"YulFunctionCall","src":"4560:14:58"}],"functionName":{"name":"or","nativeSrc":"4551:2:58","nodeType":"YulIdentifier","src":"4551:2:58"},"nativeSrc":"4551:24:58","nodeType":"YulFunctionCall","src":"4551:24:58"},"variableNames":[{"name":"result","nativeSrc":"4541:6:58","nodeType":"YulIdentifier","src":"4541:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12847,"isOffset":false,"isSlot":false,"src":"4443:4:58","valueSize":1},{"declaration":12847,"isOffset":false,"isSlot":false,"src":"4455:4:58","valueSize":1},{"declaration":12847,"isOffset":false,"isSlot":false,"src":"4554:4:58","valueSize":1},{"declaration":12852,"isOffset":false,"isSlot":false,"src":"4541:6:58","valueSize":1},{"declaration":12849,"isOffset":false,"isSlot":false,"src":"4491:5:58","valueSize":1},{"declaration":12849,"isOffset":false,"isSlot":false,"src":"4504:5:58","valueSize":1},{"declaration":12849,"isOffset":false,"isSlot":false,"src":"4568:5:58","valueSize":1}],"flags":["memory-safe"],"id":12854,"nodeType":"InlineAssembly","src":"4404:181:58"}]},"id":12856,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_8","nameLocation":"4319:8:58","nodeType":"FunctionDefinition","parameters":{"id":12850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12847,"mutability":"mutable","name":"left","nameLocation":"4335:4:58","nodeType":"VariableDeclaration","scope":12856,"src":"4328:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12846,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4328:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12849,"mutability":"mutable","name":"right","nameLocation":"4348:5:58","nodeType":"VariableDeclaration","scope":12856,"src":"4341:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12848,"name":"bytes8","nodeType":"ElementaryTypeName","src":"4341:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"4327:27:58"},"returnParameters":{"id":12853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12852,"mutability":"mutable","name":"result","nameLocation":"4386:6:58","nodeType":"VariableDeclaration","scope":12856,"src":"4378:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":12851,"name":"bytes12","nodeType":"ElementaryTypeName","src":"4378:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"4377:16:58"},"scope":16305,"src":"4310:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12866,"nodeType":"Block","src":"4683:197:58","statements":[{"AST":{"nativeSrc":"4718:156:58","nodeType":"YulBlock","src":"4718:156:58","statements":[{"nativeSrc":"4732:35:58","nodeType":"YulAssignment","src":"4732:35:58","value":{"arguments":[{"name":"left","nativeSrc":"4744:4:58","nodeType":"YulIdentifier","src":"4744:4:58"},{"arguments":[{"kind":"number","nativeSrc":"4754:3:58","nodeType":"YulLiteral","src":"4754:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"4763:1:58","nodeType":"YulLiteral","src":"4763:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4759:3:58","nodeType":"YulIdentifier","src":"4759:3:58"},"nativeSrc":"4759:6:58","nodeType":"YulFunctionCall","src":"4759:6:58"}],"functionName":{"name":"shl","nativeSrc":"4750:3:58","nodeType":"YulIdentifier","src":"4750:3:58"},"nativeSrc":"4750:16:58","nodeType":"YulFunctionCall","src":"4750:16:58"}],"functionName":{"name":"and","nativeSrc":"4740:3:58","nodeType":"YulIdentifier","src":"4740:3:58"},"nativeSrc":"4740:27:58","nodeType":"YulFunctionCall","src":"4740:27:58"},"variableNames":[{"name":"left","nativeSrc":"4732:4:58","nodeType":"YulIdentifier","src":"4732:4:58"}]},{"nativeSrc":"4780:37:58","nodeType":"YulAssignment","src":"4780:37:58","value":{"arguments":[{"name":"right","nativeSrc":"4793:5:58","nodeType":"YulIdentifier","src":"4793:5:58"},{"arguments":[{"kind":"number","nativeSrc":"4804:3:58","nodeType":"YulLiteral","src":"4804:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"4813:1:58","nodeType":"YulLiteral","src":"4813:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4809:3:58","nodeType":"YulIdentifier","src":"4809:3:58"},"nativeSrc":"4809:6:58","nodeType":"YulFunctionCall","src":"4809:6:58"}],"functionName":{"name":"shl","nativeSrc":"4800:3:58","nodeType":"YulIdentifier","src":"4800:3:58"},"nativeSrc":"4800:16:58","nodeType":"YulFunctionCall","src":"4800:16:58"}],"functionName":{"name":"and","nativeSrc":"4789:3:58","nodeType":"YulIdentifier","src":"4789:3:58"},"nativeSrc":"4789:28:58","nodeType":"YulFunctionCall","src":"4789:28:58"},"variableNames":[{"name":"right","nativeSrc":"4780:5:58","nodeType":"YulIdentifier","src":"4780:5:58"}]},{"nativeSrc":"4830:34:58","nodeType":"YulAssignment","src":"4830:34:58","value":{"arguments":[{"name":"left","nativeSrc":"4843:4:58","nodeType":"YulIdentifier","src":"4843:4:58"},{"arguments":[{"kind":"number","nativeSrc":"4853:2:58","nodeType":"YulLiteral","src":"4853:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"4857:5:58","nodeType":"YulIdentifier","src":"4857:5:58"}],"functionName":{"name":"shr","nativeSrc":"4849:3:58","nodeType":"YulIdentifier","src":"4849:3:58"},"nativeSrc":"4849:14:58","nodeType":"YulFunctionCall","src":"4849:14:58"}],"functionName":{"name":"or","nativeSrc":"4840:2:58","nodeType":"YulIdentifier","src":"4840:2:58"},"nativeSrc":"4840:24:58","nodeType":"YulFunctionCall","src":"4840:24:58"},"variableNames":[{"name":"result","nativeSrc":"4830:6:58","nodeType":"YulIdentifier","src":"4830:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12858,"isOffset":false,"isSlot":false,"src":"4732:4:58","valueSize":1},{"declaration":12858,"isOffset":false,"isSlot":false,"src":"4744:4:58","valueSize":1},{"declaration":12858,"isOffset":false,"isSlot":false,"src":"4843:4:58","valueSize":1},{"declaration":12863,"isOffset":false,"isSlot":false,"src":"4830:6:58","valueSize":1},{"declaration":12860,"isOffset":false,"isSlot":false,"src":"4780:5:58","valueSize":1},{"declaration":12860,"isOffset":false,"isSlot":false,"src":"4793:5:58","valueSize":1},{"declaration":12860,"isOffset":false,"isSlot":false,"src":"4857:5:58","valueSize":1}],"flags":["memory-safe"],"id":12865,"nodeType":"InlineAssembly","src":"4693:181:58"}]},"id":12867,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_12","nameLocation":"4606:9:58","nodeType":"FunctionDefinition","parameters":{"id":12861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12858,"mutability":"mutable","name":"left","nameLocation":"4623:4:58","nodeType":"VariableDeclaration","scope":12867,"src":"4616:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12857,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4616:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12860,"mutability":"mutable","name":"right","nameLocation":"4637:5:58","nodeType":"VariableDeclaration","scope":12867,"src":"4629:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":12859,"name":"bytes12","nodeType":"ElementaryTypeName","src":"4629:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"4615:28:58"},"returnParameters":{"id":12864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12863,"mutability":"mutable","name":"result","nameLocation":"4675:6:58","nodeType":"VariableDeclaration","scope":12867,"src":"4667:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":12862,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4667:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"4666:16:58"},"scope":16305,"src":"4597:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12877,"nodeType":"Block","src":"4972:197:58","statements":[{"AST":{"nativeSrc":"5007:156:58","nodeType":"YulBlock","src":"5007:156:58","statements":[{"nativeSrc":"5021:35:58","nodeType":"YulAssignment","src":"5021:35:58","value":{"arguments":[{"name":"left","nativeSrc":"5033:4:58","nodeType":"YulIdentifier","src":"5033:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5043:3:58","nodeType":"YulLiteral","src":"5043:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5052:1:58","nodeType":"YulLiteral","src":"5052:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5048:3:58","nodeType":"YulIdentifier","src":"5048:3:58"},"nativeSrc":"5048:6:58","nodeType":"YulFunctionCall","src":"5048:6:58"}],"functionName":{"name":"shl","nativeSrc":"5039:3:58","nodeType":"YulIdentifier","src":"5039:3:58"},"nativeSrc":"5039:16:58","nodeType":"YulFunctionCall","src":"5039:16:58"}],"functionName":{"name":"and","nativeSrc":"5029:3:58","nodeType":"YulIdentifier","src":"5029:3:58"},"nativeSrc":"5029:27:58","nodeType":"YulFunctionCall","src":"5029:27:58"},"variableNames":[{"name":"left","nativeSrc":"5021:4:58","nodeType":"YulIdentifier","src":"5021:4:58"}]},{"nativeSrc":"5069:37:58","nodeType":"YulAssignment","src":"5069:37:58","value":{"arguments":[{"name":"right","nativeSrc":"5082:5:58","nodeType":"YulIdentifier","src":"5082:5:58"},{"arguments":[{"kind":"number","nativeSrc":"5093:3:58","nodeType":"YulLiteral","src":"5093:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"5102:1:58","nodeType":"YulLiteral","src":"5102:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5098:3:58","nodeType":"YulIdentifier","src":"5098:3:58"},"nativeSrc":"5098:6:58","nodeType":"YulFunctionCall","src":"5098:6:58"}],"functionName":{"name":"shl","nativeSrc":"5089:3:58","nodeType":"YulIdentifier","src":"5089:3:58"},"nativeSrc":"5089:16:58","nodeType":"YulFunctionCall","src":"5089:16:58"}],"functionName":{"name":"and","nativeSrc":"5078:3:58","nodeType":"YulIdentifier","src":"5078:3:58"},"nativeSrc":"5078:28:58","nodeType":"YulFunctionCall","src":"5078:28:58"},"variableNames":[{"name":"right","nativeSrc":"5069:5:58","nodeType":"YulIdentifier","src":"5069:5:58"}]},{"nativeSrc":"5119:34:58","nodeType":"YulAssignment","src":"5119:34:58","value":{"arguments":[{"name":"left","nativeSrc":"5132:4:58","nodeType":"YulIdentifier","src":"5132:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5142:2:58","nodeType":"YulLiteral","src":"5142:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"5146:5:58","nodeType":"YulIdentifier","src":"5146:5:58"}],"functionName":{"name":"shr","nativeSrc":"5138:3:58","nodeType":"YulIdentifier","src":"5138:3:58"},"nativeSrc":"5138:14:58","nodeType":"YulFunctionCall","src":"5138:14:58"}],"functionName":{"name":"or","nativeSrc":"5129:2:58","nodeType":"YulIdentifier","src":"5129:2:58"},"nativeSrc":"5129:24:58","nodeType":"YulFunctionCall","src":"5129:24:58"},"variableNames":[{"name":"result","nativeSrc":"5119:6:58","nodeType":"YulIdentifier","src":"5119:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12869,"isOffset":false,"isSlot":false,"src":"5021:4:58","valueSize":1},{"declaration":12869,"isOffset":false,"isSlot":false,"src":"5033:4:58","valueSize":1},{"declaration":12869,"isOffset":false,"isSlot":false,"src":"5132:4:58","valueSize":1},{"declaration":12874,"isOffset":false,"isSlot":false,"src":"5119:6:58","valueSize":1},{"declaration":12871,"isOffset":false,"isSlot":false,"src":"5069:5:58","valueSize":1},{"declaration":12871,"isOffset":false,"isSlot":false,"src":"5082:5:58","valueSize":1},{"declaration":12871,"isOffset":false,"isSlot":false,"src":"5146:5:58","valueSize":1}],"flags":["memory-safe"],"id":12876,"nodeType":"InlineAssembly","src":"4982:181:58"}]},"id":12878,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_16","nameLocation":"4895:9:58","nodeType":"FunctionDefinition","parameters":{"id":12872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12869,"mutability":"mutable","name":"left","nameLocation":"4912:4:58","nodeType":"VariableDeclaration","scope":12878,"src":"4905:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12868,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4905:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12871,"mutability":"mutable","name":"right","nameLocation":"4926:5:58","nodeType":"VariableDeclaration","scope":12878,"src":"4918:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":12870,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4918:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"4904:28:58"},"returnParameters":{"id":12875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12874,"mutability":"mutable","name":"result","nameLocation":"4964:6:58","nodeType":"VariableDeclaration","scope":12878,"src":"4956:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":12873,"name":"bytes20","nodeType":"ElementaryTypeName","src":"4956:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"4955:16:58"},"scope":16305,"src":"4886:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12888,"nodeType":"Block","src":"5261:196:58","statements":[{"AST":{"nativeSrc":"5296:155:58","nodeType":"YulBlock","src":"5296:155:58","statements":[{"nativeSrc":"5310:35:58","nodeType":"YulAssignment","src":"5310:35:58","value":{"arguments":[{"name":"left","nativeSrc":"5322:4:58","nodeType":"YulIdentifier","src":"5322:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5332:3:58","nodeType":"YulLiteral","src":"5332:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5341:1:58","nodeType":"YulLiteral","src":"5341:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5337:3:58","nodeType":"YulIdentifier","src":"5337:3:58"},"nativeSrc":"5337:6:58","nodeType":"YulFunctionCall","src":"5337:6:58"}],"functionName":{"name":"shl","nativeSrc":"5328:3:58","nodeType":"YulIdentifier","src":"5328:3:58"},"nativeSrc":"5328:16:58","nodeType":"YulFunctionCall","src":"5328:16:58"}],"functionName":{"name":"and","nativeSrc":"5318:3:58","nodeType":"YulIdentifier","src":"5318:3:58"},"nativeSrc":"5318:27:58","nodeType":"YulFunctionCall","src":"5318:27:58"},"variableNames":[{"name":"left","nativeSrc":"5310:4:58","nodeType":"YulIdentifier","src":"5310:4:58"}]},{"nativeSrc":"5358:36:58","nodeType":"YulAssignment","src":"5358:36:58","value":{"arguments":[{"name":"right","nativeSrc":"5371:5:58","nodeType":"YulIdentifier","src":"5371:5:58"},{"arguments":[{"kind":"number","nativeSrc":"5382:2:58","nodeType":"YulLiteral","src":"5382:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"5390:1:58","nodeType":"YulLiteral","src":"5390:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5386:3:58","nodeType":"YulIdentifier","src":"5386:3:58"},"nativeSrc":"5386:6:58","nodeType":"YulFunctionCall","src":"5386:6:58"}],"functionName":{"name":"shl","nativeSrc":"5378:3:58","nodeType":"YulIdentifier","src":"5378:3:58"},"nativeSrc":"5378:15:58","nodeType":"YulFunctionCall","src":"5378:15:58"}],"functionName":{"name":"and","nativeSrc":"5367:3:58","nodeType":"YulIdentifier","src":"5367:3:58"},"nativeSrc":"5367:27:58","nodeType":"YulFunctionCall","src":"5367:27:58"},"variableNames":[{"name":"right","nativeSrc":"5358:5:58","nodeType":"YulIdentifier","src":"5358:5:58"}]},{"nativeSrc":"5407:34:58","nodeType":"YulAssignment","src":"5407:34:58","value":{"arguments":[{"name":"left","nativeSrc":"5420:4:58","nodeType":"YulIdentifier","src":"5420:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5430:2:58","nodeType":"YulLiteral","src":"5430:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"5434:5:58","nodeType":"YulIdentifier","src":"5434:5:58"}],"functionName":{"name":"shr","nativeSrc":"5426:3:58","nodeType":"YulIdentifier","src":"5426:3:58"},"nativeSrc":"5426:14:58","nodeType":"YulFunctionCall","src":"5426:14:58"}],"functionName":{"name":"or","nativeSrc":"5417:2:58","nodeType":"YulIdentifier","src":"5417:2:58"},"nativeSrc":"5417:24:58","nodeType":"YulFunctionCall","src":"5417:24:58"},"variableNames":[{"name":"result","nativeSrc":"5407:6:58","nodeType":"YulIdentifier","src":"5407:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12880,"isOffset":false,"isSlot":false,"src":"5310:4:58","valueSize":1},{"declaration":12880,"isOffset":false,"isSlot":false,"src":"5322:4:58","valueSize":1},{"declaration":12880,"isOffset":false,"isSlot":false,"src":"5420:4:58","valueSize":1},{"declaration":12885,"isOffset":false,"isSlot":false,"src":"5407:6:58","valueSize":1},{"declaration":12882,"isOffset":false,"isSlot":false,"src":"5358:5:58","valueSize":1},{"declaration":12882,"isOffset":false,"isSlot":false,"src":"5371:5:58","valueSize":1},{"declaration":12882,"isOffset":false,"isSlot":false,"src":"5434:5:58","valueSize":1}],"flags":["memory-safe"],"id":12887,"nodeType":"InlineAssembly","src":"5271:180:58"}]},"id":12889,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_20","nameLocation":"5184:9:58","nodeType":"FunctionDefinition","parameters":{"id":12883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12880,"mutability":"mutable","name":"left","nameLocation":"5201:4:58","nodeType":"VariableDeclaration","scope":12889,"src":"5194:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12879,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5194:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12882,"mutability":"mutable","name":"right","nameLocation":"5215:5:58","nodeType":"VariableDeclaration","scope":12889,"src":"5207:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":12881,"name":"bytes20","nodeType":"ElementaryTypeName","src":"5207:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"5193:28:58"},"returnParameters":{"id":12886,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12885,"mutability":"mutable","name":"result","nameLocation":"5253:6:58","nodeType":"VariableDeclaration","scope":12889,"src":"5245:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":12884,"name":"bytes24","nodeType":"ElementaryTypeName","src":"5245:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"5244:16:58"},"scope":16305,"src":"5175:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12899,"nodeType":"Block","src":"5549:196:58","statements":[{"AST":{"nativeSrc":"5584:155:58","nodeType":"YulBlock","src":"5584:155:58","statements":[{"nativeSrc":"5598:35:58","nodeType":"YulAssignment","src":"5598:35:58","value":{"arguments":[{"name":"left","nativeSrc":"5610:4:58","nodeType":"YulIdentifier","src":"5610:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5620:3:58","nodeType":"YulLiteral","src":"5620:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5629:1:58","nodeType":"YulLiteral","src":"5629:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5625:3:58","nodeType":"YulIdentifier","src":"5625:3:58"},"nativeSrc":"5625:6:58","nodeType":"YulFunctionCall","src":"5625:6:58"}],"functionName":{"name":"shl","nativeSrc":"5616:3:58","nodeType":"YulIdentifier","src":"5616:3:58"},"nativeSrc":"5616:16:58","nodeType":"YulFunctionCall","src":"5616:16:58"}],"functionName":{"name":"and","nativeSrc":"5606:3:58","nodeType":"YulIdentifier","src":"5606:3:58"},"nativeSrc":"5606:27:58","nodeType":"YulFunctionCall","src":"5606:27:58"},"variableNames":[{"name":"left","nativeSrc":"5598:4:58","nodeType":"YulIdentifier","src":"5598:4:58"}]},{"nativeSrc":"5646:36:58","nodeType":"YulAssignment","src":"5646:36:58","value":{"arguments":[{"name":"right","nativeSrc":"5659:5:58","nodeType":"YulIdentifier","src":"5659:5:58"},{"arguments":[{"kind":"number","nativeSrc":"5670:2:58","nodeType":"YulLiteral","src":"5670:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"5678:1:58","nodeType":"YulLiteral","src":"5678:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5674:3:58","nodeType":"YulIdentifier","src":"5674:3:58"},"nativeSrc":"5674:6:58","nodeType":"YulFunctionCall","src":"5674:6:58"}],"functionName":{"name":"shl","nativeSrc":"5666:3:58","nodeType":"YulIdentifier","src":"5666:3:58"},"nativeSrc":"5666:15:58","nodeType":"YulFunctionCall","src":"5666:15:58"}],"functionName":{"name":"and","nativeSrc":"5655:3:58","nodeType":"YulIdentifier","src":"5655:3:58"},"nativeSrc":"5655:27:58","nodeType":"YulFunctionCall","src":"5655:27:58"},"variableNames":[{"name":"right","nativeSrc":"5646:5:58","nodeType":"YulIdentifier","src":"5646:5:58"}]},{"nativeSrc":"5695:34:58","nodeType":"YulAssignment","src":"5695:34:58","value":{"arguments":[{"name":"left","nativeSrc":"5708:4:58","nodeType":"YulIdentifier","src":"5708:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5718:2:58","nodeType":"YulLiteral","src":"5718:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"5722:5:58","nodeType":"YulIdentifier","src":"5722:5:58"}],"functionName":{"name":"shr","nativeSrc":"5714:3:58","nodeType":"YulIdentifier","src":"5714:3:58"},"nativeSrc":"5714:14:58","nodeType":"YulFunctionCall","src":"5714:14:58"}],"functionName":{"name":"or","nativeSrc":"5705:2:58","nodeType":"YulIdentifier","src":"5705:2:58"},"nativeSrc":"5705:24:58","nodeType":"YulFunctionCall","src":"5705:24:58"},"variableNames":[{"name":"result","nativeSrc":"5695:6:58","nodeType":"YulIdentifier","src":"5695:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12891,"isOffset":false,"isSlot":false,"src":"5598:4:58","valueSize":1},{"declaration":12891,"isOffset":false,"isSlot":false,"src":"5610:4:58","valueSize":1},{"declaration":12891,"isOffset":false,"isSlot":false,"src":"5708:4:58","valueSize":1},{"declaration":12896,"isOffset":false,"isSlot":false,"src":"5695:6:58","valueSize":1},{"declaration":12893,"isOffset":false,"isSlot":false,"src":"5646:5:58","valueSize":1},{"declaration":12893,"isOffset":false,"isSlot":false,"src":"5659:5:58","valueSize":1},{"declaration":12893,"isOffset":false,"isSlot":false,"src":"5722:5:58","valueSize":1}],"flags":["memory-safe"],"id":12898,"nodeType":"InlineAssembly","src":"5559:180:58"}]},"id":12900,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_24","nameLocation":"5472:9:58","nodeType":"FunctionDefinition","parameters":{"id":12894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12891,"mutability":"mutable","name":"left","nameLocation":"5489:4:58","nodeType":"VariableDeclaration","scope":12900,"src":"5482:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12890,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5482:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12893,"mutability":"mutable","name":"right","nameLocation":"5503:5:58","nodeType":"VariableDeclaration","scope":12900,"src":"5495:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":12892,"name":"bytes24","nodeType":"ElementaryTypeName","src":"5495:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"5481:28:58"},"returnParameters":{"id":12897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12896,"mutability":"mutable","name":"result","nameLocation":"5541:6:58","nodeType":"VariableDeclaration","scope":12900,"src":"5533:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":12895,"name":"bytes28","nodeType":"ElementaryTypeName","src":"5533:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"5532:16:58"},"scope":16305,"src":"5463:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12910,"nodeType":"Block","src":"5837:196:58","statements":[{"AST":{"nativeSrc":"5872:155:58","nodeType":"YulBlock","src":"5872:155:58","statements":[{"nativeSrc":"5886:35:58","nodeType":"YulAssignment","src":"5886:35:58","value":{"arguments":[{"name":"left","nativeSrc":"5898:4:58","nodeType":"YulIdentifier","src":"5898:4:58"},{"arguments":[{"kind":"number","nativeSrc":"5908:3:58","nodeType":"YulLiteral","src":"5908:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5917:1:58","nodeType":"YulLiteral","src":"5917:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5913:3:58","nodeType":"YulIdentifier","src":"5913:3:58"},"nativeSrc":"5913:6:58","nodeType":"YulFunctionCall","src":"5913:6:58"}],"functionName":{"name":"shl","nativeSrc":"5904:3:58","nodeType":"YulIdentifier","src":"5904:3:58"},"nativeSrc":"5904:16:58","nodeType":"YulFunctionCall","src":"5904:16:58"}],"functionName":{"name":"and","nativeSrc":"5894:3:58","nodeType":"YulIdentifier","src":"5894:3:58"},"nativeSrc":"5894:27:58","nodeType":"YulFunctionCall","src":"5894:27:58"},"variableNames":[{"name":"left","nativeSrc":"5886:4:58","nodeType":"YulIdentifier","src":"5886:4:58"}]},{"nativeSrc":"5934:36:58","nodeType":"YulAssignment","src":"5934:36:58","value":{"arguments":[{"name":"right","nativeSrc":"5947:5:58","nodeType":"YulIdentifier","src":"5947:5:58"},{"arguments":[{"kind":"number","nativeSrc":"5958:2:58","nodeType":"YulLiteral","src":"5958:2:58","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"5966:1:58","nodeType":"YulLiteral","src":"5966:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5962:3:58","nodeType":"YulIdentifier","src":"5962:3:58"},"nativeSrc":"5962:6:58","nodeType":"YulFunctionCall","src":"5962:6:58"}],"functionName":{"name":"shl","nativeSrc":"5954:3:58","nodeType":"YulIdentifier","src":"5954:3:58"},"nativeSrc":"5954:15:58","nodeType":"YulFunctionCall","src":"5954:15:58"}],"functionName":{"name":"and","nativeSrc":"5943:3:58","nodeType":"YulIdentifier","src":"5943:3:58"},"nativeSrc":"5943:27:58","nodeType":"YulFunctionCall","src":"5943:27:58"},"variableNames":[{"name":"right","nativeSrc":"5934:5:58","nodeType":"YulIdentifier","src":"5934:5:58"}]},{"nativeSrc":"5983:34:58","nodeType":"YulAssignment","src":"5983:34:58","value":{"arguments":[{"name":"left","nativeSrc":"5996:4:58","nodeType":"YulIdentifier","src":"5996:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6006:2:58","nodeType":"YulLiteral","src":"6006:2:58","type":"","value":"32"},{"name":"right","nativeSrc":"6010:5:58","nodeType":"YulIdentifier","src":"6010:5:58"}],"functionName":{"name":"shr","nativeSrc":"6002:3:58","nodeType":"YulIdentifier","src":"6002:3:58"},"nativeSrc":"6002:14:58","nodeType":"YulFunctionCall","src":"6002:14:58"}],"functionName":{"name":"or","nativeSrc":"5993:2:58","nodeType":"YulIdentifier","src":"5993:2:58"},"nativeSrc":"5993:24:58","nodeType":"YulFunctionCall","src":"5993:24:58"},"variableNames":[{"name":"result","nativeSrc":"5983:6:58","nodeType":"YulIdentifier","src":"5983:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12902,"isOffset":false,"isSlot":false,"src":"5886:4:58","valueSize":1},{"declaration":12902,"isOffset":false,"isSlot":false,"src":"5898:4:58","valueSize":1},{"declaration":12902,"isOffset":false,"isSlot":false,"src":"5996:4:58","valueSize":1},{"declaration":12907,"isOffset":false,"isSlot":false,"src":"5983:6:58","valueSize":1},{"declaration":12904,"isOffset":false,"isSlot":false,"src":"5934:5:58","valueSize":1},{"declaration":12904,"isOffset":false,"isSlot":false,"src":"5947:5:58","valueSize":1},{"declaration":12904,"isOffset":false,"isSlot":false,"src":"6010:5:58","valueSize":1}],"flags":["memory-safe"],"id":12909,"nodeType":"InlineAssembly","src":"5847:180:58"}]},"id":12911,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_28","nameLocation":"5760:9:58","nodeType":"FunctionDefinition","parameters":{"id":12905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12902,"mutability":"mutable","name":"left","nameLocation":"5777:4:58","nodeType":"VariableDeclaration","scope":12911,"src":"5770:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12901,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5770:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":12904,"mutability":"mutable","name":"right","nameLocation":"5791:5:58","nodeType":"VariableDeclaration","scope":12911,"src":"5783:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":12903,"name":"bytes28","nodeType":"ElementaryTypeName","src":"5783:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"5769:28:58"},"returnParameters":{"id":12908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12907,"mutability":"mutable","name":"result","nameLocation":"5829:6:58","nodeType":"VariableDeclaration","scope":12911,"src":"5821:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":12906,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5821:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5820:16:58"},"scope":16305,"src":"5751:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12921,"nodeType":"Block","src":"6122:197:58","statements":[{"AST":{"nativeSrc":"6157:156:58","nodeType":"YulBlock","src":"6157:156:58","statements":[{"nativeSrc":"6171:35:58","nodeType":"YulAssignment","src":"6171:35:58","value":{"arguments":[{"name":"left","nativeSrc":"6183:4:58","nodeType":"YulIdentifier","src":"6183:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6193:3:58","nodeType":"YulLiteral","src":"6193:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6202:1:58","nodeType":"YulLiteral","src":"6202:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6198:3:58","nodeType":"YulIdentifier","src":"6198:3:58"},"nativeSrc":"6198:6:58","nodeType":"YulFunctionCall","src":"6198:6:58"}],"functionName":{"name":"shl","nativeSrc":"6189:3:58","nodeType":"YulIdentifier","src":"6189:3:58"},"nativeSrc":"6189:16:58","nodeType":"YulFunctionCall","src":"6189:16:58"}],"functionName":{"name":"and","nativeSrc":"6179:3:58","nodeType":"YulIdentifier","src":"6179:3:58"},"nativeSrc":"6179:27:58","nodeType":"YulFunctionCall","src":"6179:27:58"},"variableNames":[{"name":"left","nativeSrc":"6171:4:58","nodeType":"YulIdentifier","src":"6171:4:58"}]},{"nativeSrc":"6219:37:58","nodeType":"YulAssignment","src":"6219:37:58","value":{"arguments":[{"name":"right","nativeSrc":"6232:5:58","nodeType":"YulIdentifier","src":"6232:5:58"},{"arguments":[{"kind":"number","nativeSrc":"6243:3:58","nodeType":"YulLiteral","src":"6243:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"6252:1:58","nodeType":"YulLiteral","src":"6252:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6248:3:58","nodeType":"YulIdentifier","src":"6248:3:58"},"nativeSrc":"6248:6:58","nodeType":"YulFunctionCall","src":"6248:6:58"}],"functionName":{"name":"shl","nativeSrc":"6239:3:58","nodeType":"YulIdentifier","src":"6239:3:58"},"nativeSrc":"6239:16:58","nodeType":"YulFunctionCall","src":"6239:16:58"}],"functionName":{"name":"and","nativeSrc":"6228:3:58","nodeType":"YulIdentifier","src":"6228:3:58"},"nativeSrc":"6228:28:58","nodeType":"YulFunctionCall","src":"6228:28:58"},"variableNames":[{"name":"right","nativeSrc":"6219:5:58","nodeType":"YulIdentifier","src":"6219:5:58"}]},{"nativeSrc":"6269:34:58","nodeType":"YulAssignment","src":"6269:34:58","value":{"arguments":[{"name":"left","nativeSrc":"6282:4:58","nodeType":"YulIdentifier","src":"6282:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6292:2:58","nodeType":"YulLiteral","src":"6292:2:58","type":"","value":"48"},{"name":"right","nativeSrc":"6296:5:58","nodeType":"YulIdentifier","src":"6296:5:58"}],"functionName":{"name":"shr","nativeSrc":"6288:3:58","nodeType":"YulIdentifier","src":"6288:3:58"},"nativeSrc":"6288:14:58","nodeType":"YulFunctionCall","src":"6288:14:58"}],"functionName":{"name":"or","nativeSrc":"6279:2:58","nodeType":"YulIdentifier","src":"6279:2:58"},"nativeSrc":"6279:24:58","nodeType":"YulFunctionCall","src":"6279:24:58"},"variableNames":[{"name":"result","nativeSrc":"6269:6:58","nodeType":"YulIdentifier","src":"6269:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12913,"isOffset":false,"isSlot":false,"src":"6171:4:58","valueSize":1},{"declaration":12913,"isOffset":false,"isSlot":false,"src":"6183:4:58","valueSize":1},{"declaration":12913,"isOffset":false,"isSlot":false,"src":"6282:4:58","valueSize":1},{"declaration":12918,"isOffset":false,"isSlot":false,"src":"6269:6:58","valueSize":1},{"declaration":12915,"isOffset":false,"isSlot":false,"src":"6219:5:58","valueSize":1},{"declaration":12915,"isOffset":false,"isSlot":false,"src":"6232:5:58","valueSize":1},{"declaration":12915,"isOffset":false,"isSlot":false,"src":"6296:5:58","valueSize":1}],"flags":["memory-safe"],"id":12920,"nodeType":"InlineAssembly","src":"6132:181:58"}]},"id":12922,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_2","nameLocation":"6048:8:58","nodeType":"FunctionDefinition","parameters":{"id":12916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12913,"mutability":"mutable","name":"left","nameLocation":"6064:4:58","nodeType":"VariableDeclaration","scope":12922,"src":"6057:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12912,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6057:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":12915,"mutability":"mutable","name":"right","nameLocation":"6077:5:58","nodeType":"VariableDeclaration","scope":12922,"src":"6070:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12914,"name":"bytes2","nodeType":"ElementaryTypeName","src":"6070:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"6056:27:58"},"returnParameters":{"id":12919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12918,"mutability":"mutable","name":"result","nameLocation":"6114:6:58","nodeType":"VariableDeclaration","scope":12922,"src":"6107:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12917,"name":"bytes8","nodeType":"ElementaryTypeName","src":"6107:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"6106:15:58"},"scope":16305,"src":"6039:280:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12932,"nodeType":"Block","src":"6409:197:58","statements":[{"AST":{"nativeSrc":"6444:156:58","nodeType":"YulBlock","src":"6444:156:58","statements":[{"nativeSrc":"6458:35:58","nodeType":"YulAssignment","src":"6458:35:58","value":{"arguments":[{"name":"left","nativeSrc":"6470:4:58","nodeType":"YulIdentifier","src":"6470:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6480:3:58","nodeType":"YulLiteral","src":"6480:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6489:1:58","nodeType":"YulLiteral","src":"6489:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6485:3:58","nodeType":"YulIdentifier","src":"6485:3:58"},"nativeSrc":"6485:6:58","nodeType":"YulFunctionCall","src":"6485:6:58"}],"functionName":{"name":"shl","nativeSrc":"6476:3:58","nodeType":"YulIdentifier","src":"6476:3:58"},"nativeSrc":"6476:16:58","nodeType":"YulFunctionCall","src":"6476:16:58"}],"functionName":{"name":"and","nativeSrc":"6466:3:58","nodeType":"YulIdentifier","src":"6466:3:58"},"nativeSrc":"6466:27:58","nodeType":"YulFunctionCall","src":"6466:27:58"},"variableNames":[{"name":"left","nativeSrc":"6458:4:58","nodeType":"YulIdentifier","src":"6458:4:58"}]},{"nativeSrc":"6506:37:58","nodeType":"YulAssignment","src":"6506:37:58","value":{"arguments":[{"name":"right","nativeSrc":"6519:5:58","nodeType":"YulIdentifier","src":"6519:5:58"},{"arguments":[{"kind":"number","nativeSrc":"6530:3:58","nodeType":"YulLiteral","src":"6530:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"6539:1:58","nodeType":"YulLiteral","src":"6539:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6535:3:58","nodeType":"YulIdentifier","src":"6535:3:58"},"nativeSrc":"6535:6:58","nodeType":"YulFunctionCall","src":"6535:6:58"}],"functionName":{"name":"shl","nativeSrc":"6526:3:58","nodeType":"YulIdentifier","src":"6526:3:58"},"nativeSrc":"6526:16:58","nodeType":"YulFunctionCall","src":"6526:16:58"}],"functionName":{"name":"and","nativeSrc":"6515:3:58","nodeType":"YulIdentifier","src":"6515:3:58"},"nativeSrc":"6515:28:58","nodeType":"YulFunctionCall","src":"6515:28:58"},"variableNames":[{"name":"right","nativeSrc":"6506:5:58","nodeType":"YulIdentifier","src":"6506:5:58"}]},{"nativeSrc":"6556:34:58","nodeType":"YulAssignment","src":"6556:34:58","value":{"arguments":[{"name":"left","nativeSrc":"6569:4:58","nodeType":"YulIdentifier","src":"6569:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6579:2:58","nodeType":"YulLiteral","src":"6579:2:58","type":"","value":"48"},{"name":"right","nativeSrc":"6583:5:58","nodeType":"YulIdentifier","src":"6583:5:58"}],"functionName":{"name":"shr","nativeSrc":"6575:3:58","nodeType":"YulIdentifier","src":"6575:3:58"},"nativeSrc":"6575:14:58","nodeType":"YulFunctionCall","src":"6575:14:58"}],"functionName":{"name":"or","nativeSrc":"6566:2:58","nodeType":"YulIdentifier","src":"6566:2:58"},"nativeSrc":"6566:24:58","nodeType":"YulFunctionCall","src":"6566:24:58"},"variableNames":[{"name":"result","nativeSrc":"6556:6:58","nodeType":"YulIdentifier","src":"6556:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12924,"isOffset":false,"isSlot":false,"src":"6458:4:58","valueSize":1},{"declaration":12924,"isOffset":false,"isSlot":false,"src":"6470:4:58","valueSize":1},{"declaration":12924,"isOffset":false,"isSlot":false,"src":"6569:4:58","valueSize":1},{"declaration":12929,"isOffset":false,"isSlot":false,"src":"6556:6:58","valueSize":1},{"declaration":12926,"isOffset":false,"isSlot":false,"src":"6506:5:58","valueSize":1},{"declaration":12926,"isOffset":false,"isSlot":false,"src":"6519:5:58","valueSize":1},{"declaration":12926,"isOffset":false,"isSlot":false,"src":"6583:5:58","valueSize":1}],"flags":["memory-safe"],"id":12931,"nodeType":"InlineAssembly","src":"6419:181:58"}]},"id":12933,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_4","nameLocation":"6334:8:58","nodeType":"FunctionDefinition","parameters":{"id":12927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12924,"mutability":"mutable","name":"left","nameLocation":"6350:4:58","nodeType":"VariableDeclaration","scope":12933,"src":"6343:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12923,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6343:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":12926,"mutability":"mutable","name":"right","nameLocation":"6363:5:58","nodeType":"VariableDeclaration","scope":12933,"src":"6356:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12925,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6356:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6342:27:58"},"returnParameters":{"id":12930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12929,"mutability":"mutable","name":"result","nameLocation":"6401:6:58","nodeType":"VariableDeclaration","scope":12933,"src":"6393:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":12928,"name":"bytes10","nodeType":"ElementaryTypeName","src":"6393:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"6392:16:58"},"scope":16305,"src":"6325:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12943,"nodeType":"Block","src":"6696:197:58","statements":[{"AST":{"nativeSrc":"6731:156:58","nodeType":"YulBlock","src":"6731:156:58","statements":[{"nativeSrc":"6745:35:58","nodeType":"YulAssignment","src":"6745:35:58","value":{"arguments":[{"name":"left","nativeSrc":"6757:4:58","nodeType":"YulIdentifier","src":"6757:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6767:3:58","nodeType":"YulLiteral","src":"6767:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6776:1:58","nodeType":"YulLiteral","src":"6776:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6772:3:58","nodeType":"YulIdentifier","src":"6772:3:58"},"nativeSrc":"6772:6:58","nodeType":"YulFunctionCall","src":"6772:6:58"}],"functionName":{"name":"shl","nativeSrc":"6763:3:58","nodeType":"YulIdentifier","src":"6763:3:58"},"nativeSrc":"6763:16:58","nodeType":"YulFunctionCall","src":"6763:16:58"}],"functionName":{"name":"and","nativeSrc":"6753:3:58","nodeType":"YulIdentifier","src":"6753:3:58"},"nativeSrc":"6753:27:58","nodeType":"YulFunctionCall","src":"6753:27:58"},"variableNames":[{"name":"left","nativeSrc":"6745:4:58","nodeType":"YulIdentifier","src":"6745:4:58"}]},{"nativeSrc":"6793:37:58","nodeType":"YulAssignment","src":"6793:37:58","value":{"arguments":[{"name":"right","nativeSrc":"6806:5:58","nodeType":"YulIdentifier","src":"6806:5:58"},{"arguments":[{"kind":"number","nativeSrc":"6817:3:58","nodeType":"YulLiteral","src":"6817:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6826:1:58","nodeType":"YulLiteral","src":"6826:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6822:3:58","nodeType":"YulIdentifier","src":"6822:3:58"},"nativeSrc":"6822:6:58","nodeType":"YulFunctionCall","src":"6822:6:58"}],"functionName":{"name":"shl","nativeSrc":"6813:3:58","nodeType":"YulIdentifier","src":"6813:3:58"},"nativeSrc":"6813:16:58","nodeType":"YulFunctionCall","src":"6813:16:58"}],"functionName":{"name":"and","nativeSrc":"6802:3:58","nodeType":"YulIdentifier","src":"6802:3:58"},"nativeSrc":"6802:28:58","nodeType":"YulFunctionCall","src":"6802:28:58"},"variableNames":[{"name":"right","nativeSrc":"6793:5:58","nodeType":"YulIdentifier","src":"6793:5:58"}]},{"nativeSrc":"6843:34:58","nodeType":"YulAssignment","src":"6843:34:58","value":{"arguments":[{"name":"left","nativeSrc":"6856:4:58","nodeType":"YulIdentifier","src":"6856:4:58"},{"arguments":[{"kind":"number","nativeSrc":"6866:2:58","nodeType":"YulLiteral","src":"6866:2:58","type":"","value":"48"},{"name":"right","nativeSrc":"6870:5:58","nodeType":"YulIdentifier","src":"6870:5:58"}],"functionName":{"name":"shr","nativeSrc":"6862:3:58","nodeType":"YulIdentifier","src":"6862:3:58"},"nativeSrc":"6862:14:58","nodeType":"YulFunctionCall","src":"6862:14:58"}],"functionName":{"name":"or","nativeSrc":"6853:2:58","nodeType":"YulIdentifier","src":"6853:2:58"},"nativeSrc":"6853:24:58","nodeType":"YulFunctionCall","src":"6853:24:58"},"variableNames":[{"name":"result","nativeSrc":"6843:6:58","nodeType":"YulIdentifier","src":"6843:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12935,"isOffset":false,"isSlot":false,"src":"6745:4:58","valueSize":1},{"declaration":12935,"isOffset":false,"isSlot":false,"src":"6757:4:58","valueSize":1},{"declaration":12935,"isOffset":false,"isSlot":false,"src":"6856:4:58","valueSize":1},{"declaration":12940,"isOffset":false,"isSlot":false,"src":"6843:6:58","valueSize":1},{"declaration":12937,"isOffset":false,"isSlot":false,"src":"6793:5:58","valueSize":1},{"declaration":12937,"isOffset":false,"isSlot":false,"src":"6806:5:58","valueSize":1},{"declaration":12937,"isOffset":false,"isSlot":false,"src":"6870:5:58","valueSize":1}],"flags":["memory-safe"],"id":12942,"nodeType":"InlineAssembly","src":"6706:181:58"}]},"id":12944,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_6","nameLocation":"6621:8:58","nodeType":"FunctionDefinition","parameters":{"id":12938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12935,"mutability":"mutable","name":"left","nameLocation":"6637:4:58","nodeType":"VariableDeclaration","scope":12944,"src":"6630:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12934,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6630:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":12937,"mutability":"mutable","name":"right","nameLocation":"6650:5:58","nodeType":"VariableDeclaration","scope":12944,"src":"6643:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12936,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6643:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"6629:27:58"},"returnParameters":{"id":12941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12940,"mutability":"mutable","name":"result","nameLocation":"6688:6:58","nodeType":"VariableDeclaration","scope":12944,"src":"6680:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":12939,"name":"bytes12","nodeType":"ElementaryTypeName","src":"6680:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"6679:16:58"},"scope":16305,"src":"6612:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12954,"nodeType":"Block","src":"6985:197:58","statements":[{"AST":{"nativeSrc":"7020:156:58","nodeType":"YulBlock","src":"7020:156:58","statements":[{"nativeSrc":"7034:35:58","nodeType":"YulAssignment","src":"7034:35:58","value":{"arguments":[{"name":"left","nativeSrc":"7046:4:58","nodeType":"YulIdentifier","src":"7046:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7056:3:58","nodeType":"YulLiteral","src":"7056:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"7065:1:58","nodeType":"YulLiteral","src":"7065:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7061:3:58","nodeType":"YulIdentifier","src":"7061:3:58"},"nativeSrc":"7061:6:58","nodeType":"YulFunctionCall","src":"7061:6:58"}],"functionName":{"name":"shl","nativeSrc":"7052:3:58","nodeType":"YulIdentifier","src":"7052:3:58"},"nativeSrc":"7052:16:58","nodeType":"YulFunctionCall","src":"7052:16:58"}],"functionName":{"name":"and","nativeSrc":"7042:3:58","nodeType":"YulIdentifier","src":"7042:3:58"},"nativeSrc":"7042:27:58","nodeType":"YulFunctionCall","src":"7042:27:58"},"variableNames":[{"name":"left","nativeSrc":"7034:4:58","nodeType":"YulIdentifier","src":"7034:4:58"}]},{"nativeSrc":"7082:37:58","nodeType":"YulAssignment","src":"7082:37:58","value":{"arguments":[{"name":"right","nativeSrc":"7095:5:58","nodeType":"YulIdentifier","src":"7095:5:58"},{"arguments":[{"kind":"number","nativeSrc":"7106:3:58","nodeType":"YulLiteral","src":"7106:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"7115:1:58","nodeType":"YulLiteral","src":"7115:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7111:3:58","nodeType":"YulIdentifier","src":"7111:3:58"},"nativeSrc":"7111:6:58","nodeType":"YulFunctionCall","src":"7111:6:58"}],"functionName":{"name":"shl","nativeSrc":"7102:3:58","nodeType":"YulIdentifier","src":"7102:3:58"},"nativeSrc":"7102:16:58","nodeType":"YulFunctionCall","src":"7102:16:58"}],"functionName":{"name":"and","nativeSrc":"7091:3:58","nodeType":"YulIdentifier","src":"7091:3:58"},"nativeSrc":"7091:28:58","nodeType":"YulFunctionCall","src":"7091:28:58"},"variableNames":[{"name":"right","nativeSrc":"7082:5:58","nodeType":"YulIdentifier","src":"7082:5:58"}]},{"nativeSrc":"7132:34:58","nodeType":"YulAssignment","src":"7132:34:58","value":{"arguments":[{"name":"left","nativeSrc":"7145:4:58","nodeType":"YulIdentifier","src":"7145:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7155:2:58","nodeType":"YulLiteral","src":"7155:2:58","type":"","value":"48"},{"name":"right","nativeSrc":"7159:5:58","nodeType":"YulIdentifier","src":"7159:5:58"}],"functionName":{"name":"shr","nativeSrc":"7151:3:58","nodeType":"YulIdentifier","src":"7151:3:58"},"nativeSrc":"7151:14:58","nodeType":"YulFunctionCall","src":"7151:14:58"}],"functionName":{"name":"or","nativeSrc":"7142:2:58","nodeType":"YulIdentifier","src":"7142:2:58"},"nativeSrc":"7142:24:58","nodeType":"YulFunctionCall","src":"7142:24:58"},"variableNames":[{"name":"result","nativeSrc":"7132:6:58","nodeType":"YulIdentifier","src":"7132:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12946,"isOffset":false,"isSlot":false,"src":"7034:4:58","valueSize":1},{"declaration":12946,"isOffset":false,"isSlot":false,"src":"7046:4:58","valueSize":1},{"declaration":12946,"isOffset":false,"isSlot":false,"src":"7145:4:58","valueSize":1},{"declaration":12951,"isOffset":false,"isSlot":false,"src":"7132:6:58","valueSize":1},{"declaration":12948,"isOffset":false,"isSlot":false,"src":"7082:5:58","valueSize":1},{"declaration":12948,"isOffset":false,"isSlot":false,"src":"7095:5:58","valueSize":1},{"declaration":12948,"isOffset":false,"isSlot":false,"src":"7159:5:58","valueSize":1}],"flags":["memory-safe"],"id":12953,"nodeType":"InlineAssembly","src":"6995:181:58"}]},"id":12955,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_10","nameLocation":"6908:9:58","nodeType":"FunctionDefinition","parameters":{"id":12949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12946,"mutability":"mutable","name":"left","nameLocation":"6925:4:58","nodeType":"VariableDeclaration","scope":12955,"src":"6918:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12945,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6918:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":12948,"mutability":"mutable","name":"right","nameLocation":"6939:5:58","nodeType":"VariableDeclaration","scope":12955,"src":"6931:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":12947,"name":"bytes10","nodeType":"ElementaryTypeName","src":"6931:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"6917:28:58"},"returnParameters":{"id":12952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12951,"mutability":"mutable","name":"result","nameLocation":"6977:6:58","nodeType":"VariableDeclaration","scope":12955,"src":"6969:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":12950,"name":"bytes16","nodeType":"ElementaryTypeName","src":"6969:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"6968:16:58"},"scope":16305,"src":"6899:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12965,"nodeType":"Block","src":"7274:197:58","statements":[{"AST":{"nativeSrc":"7309:156:58","nodeType":"YulBlock","src":"7309:156:58","statements":[{"nativeSrc":"7323:35:58","nodeType":"YulAssignment","src":"7323:35:58","value":{"arguments":[{"name":"left","nativeSrc":"7335:4:58","nodeType":"YulIdentifier","src":"7335:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7345:3:58","nodeType":"YulLiteral","src":"7345:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"7354:1:58","nodeType":"YulLiteral","src":"7354:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7350:3:58","nodeType":"YulIdentifier","src":"7350:3:58"},"nativeSrc":"7350:6:58","nodeType":"YulFunctionCall","src":"7350:6:58"}],"functionName":{"name":"shl","nativeSrc":"7341:3:58","nodeType":"YulIdentifier","src":"7341:3:58"},"nativeSrc":"7341:16:58","nodeType":"YulFunctionCall","src":"7341:16:58"}],"functionName":{"name":"and","nativeSrc":"7331:3:58","nodeType":"YulIdentifier","src":"7331:3:58"},"nativeSrc":"7331:27:58","nodeType":"YulFunctionCall","src":"7331:27:58"},"variableNames":[{"name":"left","nativeSrc":"7323:4:58","nodeType":"YulIdentifier","src":"7323:4:58"}]},{"nativeSrc":"7371:37:58","nodeType":"YulAssignment","src":"7371:37:58","value":{"arguments":[{"name":"right","nativeSrc":"7384:5:58","nodeType":"YulIdentifier","src":"7384:5:58"},{"arguments":[{"kind":"number","nativeSrc":"7395:3:58","nodeType":"YulLiteral","src":"7395:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"7404:1:58","nodeType":"YulLiteral","src":"7404:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7400:3:58","nodeType":"YulIdentifier","src":"7400:3:58"},"nativeSrc":"7400:6:58","nodeType":"YulFunctionCall","src":"7400:6:58"}],"functionName":{"name":"shl","nativeSrc":"7391:3:58","nodeType":"YulIdentifier","src":"7391:3:58"},"nativeSrc":"7391:16:58","nodeType":"YulFunctionCall","src":"7391:16:58"}],"functionName":{"name":"and","nativeSrc":"7380:3:58","nodeType":"YulIdentifier","src":"7380:3:58"},"nativeSrc":"7380:28:58","nodeType":"YulFunctionCall","src":"7380:28:58"},"variableNames":[{"name":"right","nativeSrc":"7371:5:58","nodeType":"YulIdentifier","src":"7371:5:58"}]},{"nativeSrc":"7421:34:58","nodeType":"YulAssignment","src":"7421:34:58","value":{"arguments":[{"name":"left","nativeSrc":"7434:4:58","nodeType":"YulIdentifier","src":"7434:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7444:2:58","nodeType":"YulLiteral","src":"7444:2:58","type":"","value":"48"},{"name":"right","nativeSrc":"7448:5:58","nodeType":"YulIdentifier","src":"7448:5:58"}],"functionName":{"name":"shr","nativeSrc":"7440:3:58","nodeType":"YulIdentifier","src":"7440:3:58"},"nativeSrc":"7440:14:58","nodeType":"YulFunctionCall","src":"7440:14:58"}],"functionName":{"name":"or","nativeSrc":"7431:2:58","nodeType":"YulIdentifier","src":"7431:2:58"},"nativeSrc":"7431:24:58","nodeType":"YulFunctionCall","src":"7431:24:58"},"variableNames":[{"name":"result","nativeSrc":"7421:6:58","nodeType":"YulIdentifier","src":"7421:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12957,"isOffset":false,"isSlot":false,"src":"7323:4:58","valueSize":1},{"declaration":12957,"isOffset":false,"isSlot":false,"src":"7335:4:58","valueSize":1},{"declaration":12957,"isOffset":false,"isSlot":false,"src":"7434:4:58","valueSize":1},{"declaration":12962,"isOffset":false,"isSlot":false,"src":"7421:6:58","valueSize":1},{"declaration":12959,"isOffset":false,"isSlot":false,"src":"7371:5:58","valueSize":1},{"declaration":12959,"isOffset":false,"isSlot":false,"src":"7384:5:58","valueSize":1},{"declaration":12959,"isOffset":false,"isSlot":false,"src":"7448:5:58","valueSize":1}],"flags":["memory-safe"],"id":12964,"nodeType":"InlineAssembly","src":"7284:181:58"}]},"id":12966,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_16","nameLocation":"7197:9:58","nodeType":"FunctionDefinition","parameters":{"id":12960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12957,"mutability":"mutable","name":"left","nameLocation":"7214:4:58","nodeType":"VariableDeclaration","scope":12966,"src":"7207:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12956,"name":"bytes6","nodeType":"ElementaryTypeName","src":"7207:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":12959,"mutability":"mutable","name":"right","nameLocation":"7228:5:58","nodeType":"VariableDeclaration","scope":12966,"src":"7220:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":12958,"name":"bytes16","nodeType":"ElementaryTypeName","src":"7220:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"7206:28:58"},"returnParameters":{"id":12963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12962,"mutability":"mutable","name":"result","nameLocation":"7266:6:58","nodeType":"VariableDeclaration","scope":12966,"src":"7258:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":12961,"name":"bytes22","nodeType":"ElementaryTypeName","src":"7258:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"7257:16:58"},"scope":16305,"src":"7188:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12976,"nodeType":"Block","src":"7563:196:58","statements":[{"AST":{"nativeSrc":"7598:155:58","nodeType":"YulBlock","src":"7598:155:58","statements":[{"nativeSrc":"7612:35:58","nodeType":"YulAssignment","src":"7612:35:58","value":{"arguments":[{"name":"left","nativeSrc":"7624:4:58","nodeType":"YulIdentifier","src":"7624:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7634:3:58","nodeType":"YulLiteral","src":"7634:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"7643:1:58","nodeType":"YulLiteral","src":"7643:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7639:3:58","nodeType":"YulIdentifier","src":"7639:3:58"},"nativeSrc":"7639:6:58","nodeType":"YulFunctionCall","src":"7639:6:58"}],"functionName":{"name":"shl","nativeSrc":"7630:3:58","nodeType":"YulIdentifier","src":"7630:3:58"},"nativeSrc":"7630:16:58","nodeType":"YulFunctionCall","src":"7630:16:58"}],"functionName":{"name":"and","nativeSrc":"7620:3:58","nodeType":"YulIdentifier","src":"7620:3:58"},"nativeSrc":"7620:27:58","nodeType":"YulFunctionCall","src":"7620:27:58"},"variableNames":[{"name":"left","nativeSrc":"7612:4:58","nodeType":"YulIdentifier","src":"7612:4:58"}]},{"nativeSrc":"7660:36:58","nodeType":"YulAssignment","src":"7660:36:58","value":{"arguments":[{"name":"right","nativeSrc":"7673:5:58","nodeType":"YulIdentifier","src":"7673:5:58"},{"arguments":[{"kind":"number","nativeSrc":"7684:2:58","nodeType":"YulLiteral","src":"7684:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"7692:1:58","nodeType":"YulLiteral","src":"7692:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7688:3:58","nodeType":"YulIdentifier","src":"7688:3:58"},"nativeSrc":"7688:6:58","nodeType":"YulFunctionCall","src":"7688:6:58"}],"functionName":{"name":"shl","nativeSrc":"7680:3:58","nodeType":"YulIdentifier","src":"7680:3:58"},"nativeSrc":"7680:15:58","nodeType":"YulFunctionCall","src":"7680:15:58"}],"functionName":{"name":"and","nativeSrc":"7669:3:58","nodeType":"YulIdentifier","src":"7669:3:58"},"nativeSrc":"7669:27:58","nodeType":"YulFunctionCall","src":"7669:27:58"},"variableNames":[{"name":"right","nativeSrc":"7660:5:58","nodeType":"YulIdentifier","src":"7660:5:58"}]},{"nativeSrc":"7709:34:58","nodeType":"YulAssignment","src":"7709:34:58","value":{"arguments":[{"name":"left","nativeSrc":"7722:4:58","nodeType":"YulIdentifier","src":"7722:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7732:2:58","nodeType":"YulLiteral","src":"7732:2:58","type":"","value":"48"},{"name":"right","nativeSrc":"7736:5:58","nodeType":"YulIdentifier","src":"7736:5:58"}],"functionName":{"name":"shr","nativeSrc":"7728:3:58","nodeType":"YulIdentifier","src":"7728:3:58"},"nativeSrc":"7728:14:58","nodeType":"YulFunctionCall","src":"7728:14:58"}],"functionName":{"name":"or","nativeSrc":"7719:2:58","nodeType":"YulIdentifier","src":"7719:2:58"},"nativeSrc":"7719:24:58","nodeType":"YulFunctionCall","src":"7719:24:58"},"variableNames":[{"name":"result","nativeSrc":"7709:6:58","nodeType":"YulIdentifier","src":"7709:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12968,"isOffset":false,"isSlot":false,"src":"7612:4:58","valueSize":1},{"declaration":12968,"isOffset":false,"isSlot":false,"src":"7624:4:58","valueSize":1},{"declaration":12968,"isOffset":false,"isSlot":false,"src":"7722:4:58","valueSize":1},{"declaration":12973,"isOffset":false,"isSlot":false,"src":"7709:6:58","valueSize":1},{"declaration":12970,"isOffset":false,"isSlot":false,"src":"7660:5:58","valueSize":1},{"declaration":12970,"isOffset":false,"isSlot":false,"src":"7673:5:58","valueSize":1},{"declaration":12970,"isOffset":false,"isSlot":false,"src":"7736:5:58","valueSize":1}],"flags":["memory-safe"],"id":12975,"nodeType":"InlineAssembly","src":"7573:180:58"}]},"id":12977,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_22","nameLocation":"7486:9:58","nodeType":"FunctionDefinition","parameters":{"id":12971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12968,"mutability":"mutable","name":"left","nameLocation":"7503:4:58","nodeType":"VariableDeclaration","scope":12977,"src":"7496:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":12967,"name":"bytes6","nodeType":"ElementaryTypeName","src":"7496:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":12970,"mutability":"mutable","name":"right","nameLocation":"7517:5:58","nodeType":"VariableDeclaration","scope":12977,"src":"7509:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":12969,"name":"bytes22","nodeType":"ElementaryTypeName","src":"7509:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"7495:28:58"},"returnParameters":{"id":12974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12973,"mutability":"mutable","name":"result","nameLocation":"7555:6:58","nodeType":"VariableDeclaration","scope":12977,"src":"7547:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":12972,"name":"bytes28","nodeType":"ElementaryTypeName","src":"7547:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"7546:16:58"},"scope":16305,"src":"7477:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12987,"nodeType":"Block","src":"7849:197:58","statements":[{"AST":{"nativeSrc":"7884:156:58","nodeType":"YulBlock","src":"7884:156:58","statements":[{"nativeSrc":"7898:35:58","nodeType":"YulAssignment","src":"7898:35:58","value":{"arguments":[{"name":"left","nativeSrc":"7910:4:58","nodeType":"YulIdentifier","src":"7910:4:58"},{"arguments":[{"kind":"number","nativeSrc":"7920:3:58","nodeType":"YulLiteral","src":"7920:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"7929:1:58","nodeType":"YulLiteral","src":"7929:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7925:3:58","nodeType":"YulIdentifier","src":"7925:3:58"},"nativeSrc":"7925:6:58","nodeType":"YulFunctionCall","src":"7925:6:58"}],"functionName":{"name":"shl","nativeSrc":"7916:3:58","nodeType":"YulIdentifier","src":"7916:3:58"},"nativeSrc":"7916:16:58","nodeType":"YulFunctionCall","src":"7916:16:58"}],"functionName":{"name":"and","nativeSrc":"7906:3:58","nodeType":"YulIdentifier","src":"7906:3:58"},"nativeSrc":"7906:27:58","nodeType":"YulFunctionCall","src":"7906:27:58"},"variableNames":[{"name":"left","nativeSrc":"7898:4:58","nodeType":"YulIdentifier","src":"7898:4:58"}]},{"nativeSrc":"7946:37:58","nodeType":"YulAssignment","src":"7946:37:58","value":{"arguments":[{"name":"right","nativeSrc":"7959:5:58","nodeType":"YulIdentifier","src":"7959:5:58"},{"arguments":[{"kind":"number","nativeSrc":"7970:3:58","nodeType":"YulLiteral","src":"7970:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"7979:1:58","nodeType":"YulLiteral","src":"7979:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7975:3:58","nodeType":"YulIdentifier","src":"7975:3:58"},"nativeSrc":"7975:6:58","nodeType":"YulFunctionCall","src":"7975:6:58"}],"functionName":{"name":"shl","nativeSrc":"7966:3:58","nodeType":"YulIdentifier","src":"7966:3:58"},"nativeSrc":"7966:16:58","nodeType":"YulFunctionCall","src":"7966:16:58"}],"functionName":{"name":"and","nativeSrc":"7955:3:58","nodeType":"YulIdentifier","src":"7955:3:58"},"nativeSrc":"7955:28:58","nodeType":"YulFunctionCall","src":"7955:28:58"},"variableNames":[{"name":"right","nativeSrc":"7946:5:58","nodeType":"YulIdentifier","src":"7946:5:58"}]},{"nativeSrc":"7996:34:58","nodeType":"YulAssignment","src":"7996:34:58","value":{"arguments":[{"name":"left","nativeSrc":"8009:4:58","nodeType":"YulIdentifier","src":"8009:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8019:2:58","nodeType":"YulLiteral","src":"8019:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"8023:5:58","nodeType":"YulIdentifier","src":"8023:5:58"}],"functionName":{"name":"shr","nativeSrc":"8015:3:58","nodeType":"YulIdentifier","src":"8015:3:58"},"nativeSrc":"8015:14:58","nodeType":"YulFunctionCall","src":"8015:14:58"}],"functionName":{"name":"or","nativeSrc":"8006:2:58","nodeType":"YulIdentifier","src":"8006:2:58"},"nativeSrc":"8006:24:58","nodeType":"YulFunctionCall","src":"8006:24:58"},"variableNames":[{"name":"result","nativeSrc":"7996:6:58","nodeType":"YulIdentifier","src":"7996:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12979,"isOffset":false,"isSlot":false,"src":"7898:4:58","valueSize":1},{"declaration":12979,"isOffset":false,"isSlot":false,"src":"7910:4:58","valueSize":1},{"declaration":12979,"isOffset":false,"isSlot":false,"src":"8009:4:58","valueSize":1},{"declaration":12984,"isOffset":false,"isSlot":false,"src":"7996:6:58","valueSize":1},{"declaration":12981,"isOffset":false,"isSlot":false,"src":"7946:5:58","valueSize":1},{"declaration":12981,"isOffset":false,"isSlot":false,"src":"7959:5:58","valueSize":1},{"declaration":12981,"isOffset":false,"isSlot":false,"src":"8023:5:58","valueSize":1}],"flags":["memory-safe"],"id":12986,"nodeType":"InlineAssembly","src":"7859:181:58"}]},"id":12988,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_2","nameLocation":"7774:8:58","nodeType":"FunctionDefinition","parameters":{"id":12982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12979,"mutability":"mutable","name":"left","nameLocation":"7790:4:58","nodeType":"VariableDeclaration","scope":12988,"src":"7783:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12978,"name":"bytes8","nodeType":"ElementaryTypeName","src":"7783:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":12981,"mutability":"mutable","name":"right","nameLocation":"7803:5:58","nodeType":"VariableDeclaration","scope":12988,"src":"7796:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":12980,"name":"bytes2","nodeType":"ElementaryTypeName","src":"7796:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"7782:27:58"},"returnParameters":{"id":12985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12984,"mutability":"mutable","name":"result","nameLocation":"7841:6:58","nodeType":"VariableDeclaration","scope":12988,"src":"7833:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":12983,"name":"bytes10","nodeType":"ElementaryTypeName","src":"7833:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"7832:16:58"},"scope":16305,"src":"7765:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12998,"nodeType":"Block","src":"8136:197:58","statements":[{"AST":{"nativeSrc":"8171:156:58","nodeType":"YulBlock","src":"8171:156:58","statements":[{"nativeSrc":"8185:35:58","nodeType":"YulAssignment","src":"8185:35:58","value":{"arguments":[{"name":"left","nativeSrc":"8197:4:58","nodeType":"YulIdentifier","src":"8197:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8207:3:58","nodeType":"YulLiteral","src":"8207:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8216:1:58","nodeType":"YulLiteral","src":"8216:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8212:3:58","nodeType":"YulIdentifier","src":"8212:3:58"},"nativeSrc":"8212:6:58","nodeType":"YulFunctionCall","src":"8212:6:58"}],"functionName":{"name":"shl","nativeSrc":"8203:3:58","nodeType":"YulIdentifier","src":"8203:3:58"},"nativeSrc":"8203:16:58","nodeType":"YulFunctionCall","src":"8203:16:58"}],"functionName":{"name":"and","nativeSrc":"8193:3:58","nodeType":"YulIdentifier","src":"8193:3:58"},"nativeSrc":"8193:27:58","nodeType":"YulFunctionCall","src":"8193:27:58"},"variableNames":[{"name":"left","nativeSrc":"8185:4:58","nodeType":"YulIdentifier","src":"8185:4:58"}]},{"nativeSrc":"8233:37:58","nodeType":"YulAssignment","src":"8233:37:58","value":{"arguments":[{"name":"right","nativeSrc":"8246:5:58","nodeType":"YulIdentifier","src":"8246:5:58"},{"arguments":[{"kind":"number","nativeSrc":"8257:3:58","nodeType":"YulLiteral","src":"8257:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"8266:1:58","nodeType":"YulLiteral","src":"8266:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8262:3:58","nodeType":"YulIdentifier","src":"8262:3:58"},"nativeSrc":"8262:6:58","nodeType":"YulFunctionCall","src":"8262:6:58"}],"functionName":{"name":"shl","nativeSrc":"8253:3:58","nodeType":"YulIdentifier","src":"8253:3:58"},"nativeSrc":"8253:16:58","nodeType":"YulFunctionCall","src":"8253:16:58"}],"functionName":{"name":"and","nativeSrc":"8242:3:58","nodeType":"YulIdentifier","src":"8242:3:58"},"nativeSrc":"8242:28:58","nodeType":"YulFunctionCall","src":"8242:28:58"},"variableNames":[{"name":"right","nativeSrc":"8233:5:58","nodeType":"YulIdentifier","src":"8233:5:58"}]},{"nativeSrc":"8283:34:58","nodeType":"YulAssignment","src":"8283:34:58","value":{"arguments":[{"name":"left","nativeSrc":"8296:4:58","nodeType":"YulIdentifier","src":"8296:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8306:2:58","nodeType":"YulLiteral","src":"8306:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"8310:5:58","nodeType":"YulIdentifier","src":"8310:5:58"}],"functionName":{"name":"shr","nativeSrc":"8302:3:58","nodeType":"YulIdentifier","src":"8302:3:58"},"nativeSrc":"8302:14:58","nodeType":"YulFunctionCall","src":"8302:14:58"}],"functionName":{"name":"or","nativeSrc":"8293:2:58","nodeType":"YulIdentifier","src":"8293:2:58"},"nativeSrc":"8293:24:58","nodeType":"YulFunctionCall","src":"8293:24:58"},"variableNames":[{"name":"result","nativeSrc":"8283:6:58","nodeType":"YulIdentifier","src":"8283:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":12990,"isOffset":false,"isSlot":false,"src":"8185:4:58","valueSize":1},{"declaration":12990,"isOffset":false,"isSlot":false,"src":"8197:4:58","valueSize":1},{"declaration":12990,"isOffset":false,"isSlot":false,"src":"8296:4:58","valueSize":1},{"declaration":12995,"isOffset":false,"isSlot":false,"src":"8283:6:58","valueSize":1},{"declaration":12992,"isOffset":false,"isSlot":false,"src":"8233:5:58","valueSize":1},{"declaration":12992,"isOffset":false,"isSlot":false,"src":"8246:5:58","valueSize":1},{"declaration":12992,"isOffset":false,"isSlot":false,"src":"8310:5:58","valueSize":1}],"flags":["memory-safe"],"id":12997,"nodeType":"InlineAssembly","src":"8146:181:58"}]},"id":12999,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_4","nameLocation":"8061:8:58","nodeType":"FunctionDefinition","parameters":{"id":12993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12990,"mutability":"mutable","name":"left","nameLocation":"8077:4:58","nodeType":"VariableDeclaration","scope":12999,"src":"8070:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":12989,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8070:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":12992,"mutability":"mutable","name":"right","nameLocation":"8090:5:58","nodeType":"VariableDeclaration","scope":12999,"src":"8083:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":12991,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8083:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8069:27:58"},"returnParameters":{"id":12996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12995,"mutability":"mutable","name":"result","nameLocation":"8128:6:58","nodeType":"VariableDeclaration","scope":12999,"src":"8120:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":12994,"name":"bytes12","nodeType":"ElementaryTypeName","src":"8120:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"8119:16:58"},"scope":16305,"src":"8052:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13009,"nodeType":"Block","src":"8423:197:58","statements":[{"AST":{"nativeSrc":"8458:156:58","nodeType":"YulBlock","src":"8458:156:58","statements":[{"nativeSrc":"8472:35:58","nodeType":"YulAssignment","src":"8472:35:58","value":{"arguments":[{"name":"left","nativeSrc":"8484:4:58","nodeType":"YulIdentifier","src":"8484:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8494:3:58","nodeType":"YulLiteral","src":"8494:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8503:1:58","nodeType":"YulLiteral","src":"8503:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8499:3:58","nodeType":"YulIdentifier","src":"8499:3:58"},"nativeSrc":"8499:6:58","nodeType":"YulFunctionCall","src":"8499:6:58"}],"functionName":{"name":"shl","nativeSrc":"8490:3:58","nodeType":"YulIdentifier","src":"8490:3:58"},"nativeSrc":"8490:16:58","nodeType":"YulFunctionCall","src":"8490:16:58"}],"functionName":{"name":"and","nativeSrc":"8480:3:58","nodeType":"YulIdentifier","src":"8480:3:58"},"nativeSrc":"8480:27:58","nodeType":"YulFunctionCall","src":"8480:27:58"},"variableNames":[{"name":"left","nativeSrc":"8472:4:58","nodeType":"YulIdentifier","src":"8472:4:58"}]},{"nativeSrc":"8520:37:58","nodeType":"YulAssignment","src":"8520:37:58","value":{"arguments":[{"name":"right","nativeSrc":"8533:5:58","nodeType":"YulIdentifier","src":"8533:5:58"},{"arguments":[{"kind":"number","nativeSrc":"8544:3:58","nodeType":"YulLiteral","src":"8544:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8553:1:58","nodeType":"YulLiteral","src":"8553:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8549:3:58","nodeType":"YulIdentifier","src":"8549:3:58"},"nativeSrc":"8549:6:58","nodeType":"YulFunctionCall","src":"8549:6:58"}],"functionName":{"name":"shl","nativeSrc":"8540:3:58","nodeType":"YulIdentifier","src":"8540:3:58"},"nativeSrc":"8540:16:58","nodeType":"YulFunctionCall","src":"8540:16:58"}],"functionName":{"name":"and","nativeSrc":"8529:3:58","nodeType":"YulIdentifier","src":"8529:3:58"},"nativeSrc":"8529:28:58","nodeType":"YulFunctionCall","src":"8529:28:58"},"variableNames":[{"name":"right","nativeSrc":"8520:5:58","nodeType":"YulIdentifier","src":"8520:5:58"}]},{"nativeSrc":"8570:34:58","nodeType":"YulAssignment","src":"8570:34:58","value":{"arguments":[{"name":"left","nativeSrc":"8583:4:58","nodeType":"YulIdentifier","src":"8583:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8593:2:58","nodeType":"YulLiteral","src":"8593:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"8597:5:58","nodeType":"YulIdentifier","src":"8597:5:58"}],"functionName":{"name":"shr","nativeSrc":"8589:3:58","nodeType":"YulIdentifier","src":"8589:3:58"},"nativeSrc":"8589:14:58","nodeType":"YulFunctionCall","src":"8589:14:58"}],"functionName":{"name":"or","nativeSrc":"8580:2:58","nodeType":"YulIdentifier","src":"8580:2:58"},"nativeSrc":"8580:24:58","nodeType":"YulFunctionCall","src":"8580:24:58"},"variableNames":[{"name":"result","nativeSrc":"8570:6:58","nodeType":"YulIdentifier","src":"8570:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13001,"isOffset":false,"isSlot":false,"src":"8472:4:58","valueSize":1},{"declaration":13001,"isOffset":false,"isSlot":false,"src":"8484:4:58","valueSize":1},{"declaration":13001,"isOffset":false,"isSlot":false,"src":"8583:4:58","valueSize":1},{"declaration":13006,"isOffset":false,"isSlot":false,"src":"8570:6:58","valueSize":1},{"declaration":13003,"isOffset":false,"isSlot":false,"src":"8520:5:58","valueSize":1},{"declaration":13003,"isOffset":false,"isSlot":false,"src":"8533:5:58","valueSize":1},{"declaration":13003,"isOffset":false,"isSlot":false,"src":"8597:5:58","valueSize":1}],"flags":["memory-safe"],"id":13008,"nodeType":"InlineAssembly","src":"8433:181:58"}]},"id":13010,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_8","nameLocation":"8348:8:58","nodeType":"FunctionDefinition","parameters":{"id":13004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13001,"mutability":"mutable","name":"left","nameLocation":"8364:4:58","nodeType":"VariableDeclaration","scope":13010,"src":"8357:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13000,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8357:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13003,"mutability":"mutable","name":"right","nameLocation":"8377:5:58","nodeType":"VariableDeclaration","scope":13010,"src":"8370:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13002,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8370:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"8356:27:58"},"returnParameters":{"id":13007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13006,"mutability":"mutable","name":"result","nameLocation":"8415:6:58","nodeType":"VariableDeclaration","scope":13010,"src":"8407:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13005,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8407:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8406:16:58"},"scope":16305,"src":"8339:281:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13020,"nodeType":"Block","src":"8712:197:58","statements":[{"AST":{"nativeSrc":"8747:156:58","nodeType":"YulBlock","src":"8747:156:58","statements":[{"nativeSrc":"8761:35:58","nodeType":"YulAssignment","src":"8761:35:58","value":{"arguments":[{"name":"left","nativeSrc":"8773:4:58","nodeType":"YulIdentifier","src":"8773:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8783:3:58","nodeType":"YulLiteral","src":"8783:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8792:1:58","nodeType":"YulLiteral","src":"8792:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8788:3:58","nodeType":"YulIdentifier","src":"8788:3:58"},"nativeSrc":"8788:6:58","nodeType":"YulFunctionCall","src":"8788:6:58"}],"functionName":{"name":"shl","nativeSrc":"8779:3:58","nodeType":"YulIdentifier","src":"8779:3:58"},"nativeSrc":"8779:16:58","nodeType":"YulFunctionCall","src":"8779:16:58"}],"functionName":{"name":"and","nativeSrc":"8769:3:58","nodeType":"YulIdentifier","src":"8769:3:58"},"nativeSrc":"8769:27:58","nodeType":"YulFunctionCall","src":"8769:27:58"},"variableNames":[{"name":"left","nativeSrc":"8761:4:58","nodeType":"YulIdentifier","src":"8761:4:58"}]},{"nativeSrc":"8809:37:58","nodeType":"YulAssignment","src":"8809:37:58","value":{"arguments":[{"name":"right","nativeSrc":"8822:5:58","nodeType":"YulIdentifier","src":"8822:5:58"},{"arguments":[{"kind":"number","nativeSrc":"8833:3:58","nodeType":"YulLiteral","src":"8833:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"8842:1:58","nodeType":"YulLiteral","src":"8842:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8838:3:58","nodeType":"YulIdentifier","src":"8838:3:58"},"nativeSrc":"8838:6:58","nodeType":"YulFunctionCall","src":"8838:6:58"}],"functionName":{"name":"shl","nativeSrc":"8829:3:58","nodeType":"YulIdentifier","src":"8829:3:58"},"nativeSrc":"8829:16:58","nodeType":"YulFunctionCall","src":"8829:16:58"}],"functionName":{"name":"and","nativeSrc":"8818:3:58","nodeType":"YulIdentifier","src":"8818:3:58"},"nativeSrc":"8818:28:58","nodeType":"YulFunctionCall","src":"8818:28:58"},"variableNames":[{"name":"right","nativeSrc":"8809:5:58","nodeType":"YulIdentifier","src":"8809:5:58"}]},{"nativeSrc":"8859:34:58","nodeType":"YulAssignment","src":"8859:34:58","value":{"arguments":[{"name":"left","nativeSrc":"8872:4:58","nodeType":"YulIdentifier","src":"8872:4:58"},{"arguments":[{"kind":"number","nativeSrc":"8882:2:58","nodeType":"YulLiteral","src":"8882:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"8886:5:58","nodeType":"YulIdentifier","src":"8886:5:58"}],"functionName":{"name":"shr","nativeSrc":"8878:3:58","nodeType":"YulIdentifier","src":"8878:3:58"},"nativeSrc":"8878:14:58","nodeType":"YulFunctionCall","src":"8878:14:58"}],"functionName":{"name":"or","nativeSrc":"8869:2:58","nodeType":"YulIdentifier","src":"8869:2:58"},"nativeSrc":"8869:24:58","nodeType":"YulFunctionCall","src":"8869:24:58"},"variableNames":[{"name":"result","nativeSrc":"8859:6:58","nodeType":"YulIdentifier","src":"8859:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13012,"isOffset":false,"isSlot":false,"src":"8761:4:58","valueSize":1},{"declaration":13012,"isOffset":false,"isSlot":false,"src":"8773:4:58","valueSize":1},{"declaration":13012,"isOffset":false,"isSlot":false,"src":"8872:4:58","valueSize":1},{"declaration":13017,"isOffset":false,"isSlot":false,"src":"8859:6:58","valueSize":1},{"declaration":13014,"isOffset":false,"isSlot":false,"src":"8809:5:58","valueSize":1},{"declaration":13014,"isOffset":false,"isSlot":false,"src":"8822:5:58","valueSize":1},{"declaration":13014,"isOffset":false,"isSlot":false,"src":"8886:5:58","valueSize":1}],"flags":["memory-safe"],"id":13019,"nodeType":"InlineAssembly","src":"8722:181:58"}]},"id":13021,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_12","nameLocation":"8635:9:58","nodeType":"FunctionDefinition","parameters":{"id":13015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13012,"mutability":"mutable","name":"left","nameLocation":"8652:4:58","nodeType":"VariableDeclaration","scope":13021,"src":"8645:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13011,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8645:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13014,"mutability":"mutable","name":"right","nameLocation":"8666:5:58","nodeType":"VariableDeclaration","scope":13021,"src":"8658:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13013,"name":"bytes12","nodeType":"ElementaryTypeName","src":"8658:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"8644:28:58"},"returnParameters":{"id":13018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13017,"mutability":"mutable","name":"result","nameLocation":"8704:6:58","nodeType":"VariableDeclaration","scope":13021,"src":"8696:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13016,"name":"bytes20","nodeType":"ElementaryTypeName","src":"8696:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"8695:16:58"},"scope":16305,"src":"8626:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13031,"nodeType":"Block","src":"9001:197:58","statements":[{"AST":{"nativeSrc":"9036:156:58","nodeType":"YulBlock","src":"9036:156:58","statements":[{"nativeSrc":"9050:35:58","nodeType":"YulAssignment","src":"9050:35:58","value":{"arguments":[{"name":"left","nativeSrc":"9062:4:58","nodeType":"YulIdentifier","src":"9062:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9072:3:58","nodeType":"YulLiteral","src":"9072:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"9081:1:58","nodeType":"YulLiteral","src":"9081:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9077:3:58","nodeType":"YulIdentifier","src":"9077:3:58"},"nativeSrc":"9077:6:58","nodeType":"YulFunctionCall","src":"9077:6:58"}],"functionName":{"name":"shl","nativeSrc":"9068:3:58","nodeType":"YulIdentifier","src":"9068:3:58"},"nativeSrc":"9068:16:58","nodeType":"YulFunctionCall","src":"9068:16:58"}],"functionName":{"name":"and","nativeSrc":"9058:3:58","nodeType":"YulIdentifier","src":"9058:3:58"},"nativeSrc":"9058:27:58","nodeType":"YulFunctionCall","src":"9058:27:58"},"variableNames":[{"name":"left","nativeSrc":"9050:4:58","nodeType":"YulIdentifier","src":"9050:4:58"}]},{"nativeSrc":"9098:37:58","nodeType":"YulAssignment","src":"9098:37:58","value":{"arguments":[{"name":"right","nativeSrc":"9111:5:58","nodeType":"YulIdentifier","src":"9111:5:58"},{"arguments":[{"kind":"number","nativeSrc":"9122:3:58","nodeType":"YulLiteral","src":"9122:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"9131:1:58","nodeType":"YulLiteral","src":"9131:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9127:3:58","nodeType":"YulIdentifier","src":"9127:3:58"},"nativeSrc":"9127:6:58","nodeType":"YulFunctionCall","src":"9127:6:58"}],"functionName":{"name":"shl","nativeSrc":"9118:3:58","nodeType":"YulIdentifier","src":"9118:3:58"},"nativeSrc":"9118:16:58","nodeType":"YulFunctionCall","src":"9118:16:58"}],"functionName":{"name":"and","nativeSrc":"9107:3:58","nodeType":"YulIdentifier","src":"9107:3:58"},"nativeSrc":"9107:28:58","nodeType":"YulFunctionCall","src":"9107:28:58"},"variableNames":[{"name":"right","nativeSrc":"9098:5:58","nodeType":"YulIdentifier","src":"9098:5:58"}]},{"nativeSrc":"9148:34:58","nodeType":"YulAssignment","src":"9148:34:58","value":{"arguments":[{"name":"left","nativeSrc":"9161:4:58","nodeType":"YulIdentifier","src":"9161:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9171:2:58","nodeType":"YulLiteral","src":"9171:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"9175:5:58","nodeType":"YulIdentifier","src":"9175:5:58"}],"functionName":{"name":"shr","nativeSrc":"9167:3:58","nodeType":"YulIdentifier","src":"9167:3:58"},"nativeSrc":"9167:14:58","nodeType":"YulFunctionCall","src":"9167:14:58"}],"functionName":{"name":"or","nativeSrc":"9158:2:58","nodeType":"YulIdentifier","src":"9158:2:58"},"nativeSrc":"9158:24:58","nodeType":"YulFunctionCall","src":"9158:24:58"},"variableNames":[{"name":"result","nativeSrc":"9148:6:58","nodeType":"YulIdentifier","src":"9148:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13023,"isOffset":false,"isSlot":false,"src":"9050:4:58","valueSize":1},{"declaration":13023,"isOffset":false,"isSlot":false,"src":"9062:4:58","valueSize":1},{"declaration":13023,"isOffset":false,"isSlot":false,"src":"9161:4:58","valueSize":1},{"declaration":13028,"isOffset":false,"isSlot":false,"src":"9148:6:58","valueSize":1},{"declaration":13025,"isOffset":false,"isSlot":false,"src":"9098:5:58","valueSize":1},{"declaration":13025,"isOffset":false,"isSlot":false,"src":"9111:5:58","valueSize":1},{"declaration":13025,"isOffset":false,"isSlot":false,"src":"9175:5:58","valueSize":1}],"flags":["memory-safe"],"id":13030,"nodeType":"InlineAssembly","src":"9011:181:58"}]},"id":13032,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_16","nameLocation":"8924:9:58","nodeType":"FunctionDefinition","parameters":{"id":13026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13023,"mutability":"mutable","name":"left","nameLocation":"8941:4:58","nodeType":"VariableDeclaration","scope":13032,"src":"8934:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13022,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8934:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13025,"mutability":"mutable","name":"right","nameLocation":"8955:5:58","nodeType":"VariableDeclaration","scope":13032,"src":"8947:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13024,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8947:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8933:28:58"},"returnParameters":{"id":13029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13028,"mutability":"mutable","name":"result","nameLocation":"8993:6:58","nodeType":"VariableDeclaration","scope":13032,"src":"8985:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13027,"name":"bytes24","nodeType":"ElementaryTypeName","src":"8985:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"8984:16:58"},"scope":16305,"src":"8915:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13042,"nodeType":"Block","src":"9290:196:58","statements":[{"AST":{"nativeSrc":"9325:155:58","nodeType":"YulBlock","src":"9325:155:58","statements":[{"nativeSrc":"9339:35:58","nodeType":"YulAssignment","src":"9339:35:58","value":{"arguments":[{"name":"left","nativeSrc":"9351:4:58","nodeType":"YulIdentifier","src":"9351:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9361:3:58","nodeType":"YulLiteral","src":"9361:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"9370:1:58","nodeType":"YulLiteral","src":"9370:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9366:3:58","nodeType":"YulIdentifier","src":"9366:3:58"},"nativeSrc":"9366:6:58","nodeType":"YulFunctionCall","src":"9366:6:58"}],"functionName":{"name":"shl","nativeSrc":"9357:3:58","nodeType":"YulIdentifier","src":"9357:3:58"},"nativeSrc":"9357:16:58","nodeType":"YulFunctionCall","src":"9357:16:58"}],"functionName":{"name":"and","nativeSrc":"9347:3:58","nodeType":"YulIdentifier","src":"9347:3:58"},"nativeSrc":"9347:27:58","nodeType":"YulFunctionCall","src":"9347:27:58"},"variableNames":[{"name":"left","nativeSrc":"9339:4:58","nodeType":"YulIdentifier","src":"9339:4:58"}]},{"nativeSrc":"9387:36:58","nodeType":"YulAssignment","src":"9387:36:58","value":{"arguments":[{"name":"right","nativeSrc":"9400:5:58","nodeType":"YulIdentifier","src":"9400:5:58"},{"arguments":[{"kind":"number","nativeSrc":"9411:2:58","nodeType":"YulLiteral","src":"9411:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"9419:1:58","nodeType":"YulLiteral","src":"9419:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9415:3:58","nodeType":"YulIdentifier","src":"9415:3:58"},"nativeSrc":"9415:6:58","nodeType":"YulFunctionCall","src":"9415:6:58"}],"functionName":{"name":"shl","nativeSrc":"9407:3:58","nodeType":"YulIdentifier","src":"9407:3:58"},"nativeSrc":"9407:15:58","nodeType":"YulFunctionCall","src":"9407:15:58"}],"functionName":{"name":"and","nativeSrc":"9396:3:58","nodeType":"YulIdentifier","src":"9396:3:58"},"nativeSrc":"9396:27:58","nodeType":"YulFunctionCall","src":"9396:27:58"},"variableNames":[{"name":"right","nativeSrc":"9387:5:58","nodeType":"YulIdentifier","src":"9387:5:58"}]},{"nativeSrc":"9436:34:58","nodeType":"YulAssignment","src":"9436:34:58","value":{"arguments":[{"name":"left","nativeSrc":"9449:4:58","nodeType":"YulIdentifier","src":"9449:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9459:2:58","nodeType":"YulLiteral","src":"9459:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"9463:5:58","nodeType":"YulIdentifier","src":"9463:5:58"}],"functionName":{"name":"shr","nativeSrc":"9455:3:58","nodeType":"YulIdentifier","src":"9455:3:58"},"nativeSrc":"9455:14:58","nodeType":"YulFunctionCall","src":"9455:14:58"}],"functionName":{"name":"or","nativeSrc":"9446:2:58","nodeType":"YulIdentifier","src":"9446:2:58"},"nativeSrc":"9446:24:58","nodeType":"YulFunctionCall","src":"9446:24:58"},"variableNames":[{"name":"result","nativeSrc":"9436:6:58","nodeType":"YulIdentifier","src":"9436:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13034,"isOffset":false,"isSlot":false,"src":"9339:4:58","valueSize":1},{"declaration":13034,"isOffset":false,"isSlot":false,"src":"9351:4:58","valueSize":1},{"declaration":13034,"isOffset":false,"isSlot":false,"src":"9449:4:58","valueSize":1},{"declaration":13039,"isOffset":false,"isSlot":false,"src":"9436:6:58","valueSize":1},{"declaration":13036,"isOffset":false,"isSlot":false,"src":"9387:5:58","valueSize":1},{"declaration":13036,"isOffset":false,"isSlot":false,"src":"9400:5:58","valueSize":1},{"declaration":13036,"isOffset":false,"isSlot":false,"src":"9463:5:58","valueSize":1}],"flags":["memory-safe"],"id":13041,"nodeType":"InlineAssembly","src":"9300:180:58"}]},"id":13043,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_20","nameLocation":"9213:9:58","nodeType":"FunctionDefinition","parameters":{"id":13037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13034,"mutability":"mutable","name":"left","nameLocation":"9230:4:58","nodeType":"VariableDeclaration","scope":13043,"src":"9223:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13033,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9223:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13036,"mutability":"mutable","name":"right","nameLocation":"9244:5:58","nodeType":"VariableDeclaration","scope":13043,"src":"9236:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13035,"name":"bytes20","nodeType":"ElementaryTypeName","src":"9236:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"9222:28:58"},"returnParameters":{"id":13040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13039,"mutability":"mutable","name":"result","nameLocation":"9282:6:58","nodeType":"VariableDeclaration","scope":13043,"src":"9274:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13038,"name":"bytes28","nodeType":"ElementaryTypeName","src":"9274:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"9273:16:58"},"scope":16305,"src":"9204:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13053,"nodeType":"Block","src":"9578:196:58","statements":[{"AST":{"nativeSrc":"9613:155:58","nodeType":"YulBlock","src":"9613:155:58","statements":[{"nativeSrc":"9627:35:58","nodeType":"YulAssignment","src":"9627:35:58","value":{"arguments":[{"name":"left","nativeSrc":"9639:4:58","nodeType":"YulIdentifier","src":"9639:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9649:3:58","nodeType":"YulLiteral","src":"9649:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"9658:1:58","nodeType":"YulLiteral","src":"9658:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9654:3:58","nodeType":"YulIdentifier","src":"9654:3:58"},"nativeSrc":"9654:6:58","nodeType":"YulFunctionCall","src":"9654:6:58"}],"functionName":{"name":"shl","nativeSrc":"9645:3:58","nodeType":"YulIdentifier","src":"9645:3:58"},"nativeSrc":"9645:16:58","nodeType":"YulFunctionCall","src":"9645:16:58"}],"functionName":{"name":"and","nativeSrc":"9635:3:58","nodeType":"YulIdentifier","src":"9635:3:58"},"nativeSrc":"9635:27:58","nodeType":"YulFunctionCall","src":"9635:27:58"},"variableNames":[{"name":"left","nativeSrc":"9627:4:58","nodeType":"YulIdentifier","src":"9627:4:58"}]},{"nativeSrc":"9675:36:58","nodeType":"YulAssignment","src":"9675:36:58","value":{"arguments":[{"name":"right","nativeSrc":"9688:5:58","nodeType":"YulIdentifier","src":"9688:5:58"},{"arguments":[{"kind":"number","nativeSrc":"9699:2:58","nodeType":"YulLiteral","src":"9699:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"9707:1:58","nodeType":"YulLiteral","src":"9707:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9703:3:58","nodeType":"YulIdentifier","src":"9703:3:58"},"nativeSrc":"9703:6:58","nodeType":"YulFunctionCall","src":"9703:6:58"}],"functionName":{"name":"shl","nativeSrc":"9695:3:58","nodeType":"YulIdentifier","src":"9695:3:58"},"nativeSrc":"9695:15:58","nodeType":"YulFunctionCall","src":"9695:15:58"}],"functionName":{"name":"and","nativeSrc":"9684:3:58","nodeType":"YulIdentifier","src":"9684:3:58"},"nativeSrc":"9684:27:58","nodeType":"YulFunctionCall","src":"9684:27:58"},"variableNames":[{"name":"right","nativeSrc":"9675:5:58","nodeType":"YulIdentifier","src":"9675:5:58"}]},{"nativeSrc":"9724:34:58","nodeType":"YulAssignment","src":"9724:34:58","value":{"arguments":[{"name":"left","nativeSrc":"9737:4:58","nodeType":"YulIdentifier","src":"9737:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9747:2:58","nodeType":"YulLiteral","src":"9747:2:58","type":"","value":"64"},{"name":"right","nativeSrc":"9751:5:58","nodeType":"YulIdentifier","src":"9751:5:58"}],"functionName":{"name":"shr","nativeSrc":"9743:3:58","nodeType":"YulIdentifier","src":"9743:3:58"},"nativeSrc":"9743:14:58","nodeType":"YulFunctionCall","src":"9743:14:58"}],"functionName":{"name":"or","nativeSrc":"9734:2:58","nodeType":"YulIdentifier","src":"9734:2:58"},"nativeSrc":"9734:24:58","nodeType":"YulFunctionCall","src":"9734:24:58"},"variableNames":[{"name":"result","nativeSrc":"9724:6:58","nodeType":"YulIdentifier","src":"9724:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13045,"isOffset":false,"isSlot":false,"src":"9627:4:58","valueSize":1},{"declaration":13045,"isOffset":false,"isSlot":false,"src":"9639:4:58","valueSize":1},{"declaration":13045,"isOffset":false,"isSlot":false,"src":"9737:4:58","valueSize":1},{"declaration":13050,"isOffset":false,"isSlot":false,"src":"9724:6:58","valueSize":1},{"declaration":13047,"isOffset":false,"isSlot":false,"src":"9675:5:58","valueSize":1},{"declaration":13047,"isOffset":false,"isSlot":false,"src":"9688:5:58","valueSize":1},{"declaration":13047,"isOffset":false,"isSlot":false,"src":"9751:5:58","valueSize":1}],"flags":["memory-safe"],"id":13052,"nodeType":"InlineAssembly","src":"9588:180:58"}]},"id":13054,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_24","nameLocation":"9501:9:58","nodeType":"FunctionDefinition","parameters":{"id":13048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13045,"mutability":"mutable","name":"left","nameLocation":"9518:4:58","nodeType":"VariableDeclaration","scope":13054,"src":"9511:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13044,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9511:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13047,"mutability":"mutable","name":"right","nameLocation":"9532:5:58","nodeType":"VariableDeclaration","scope":13054,"src":"9524:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13046,"name":"bytes24","nodeType":"ElementaryTypeName","src":"9524:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"9510:28:58"},"returnParameters":{"id":13051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13050,"mutability":"mutable","name":"result","nameLocation":"9570:6:58","nodeType":"VariableDeclaration","scope":13054,"src":"9562:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13049,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9562:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9561:16:58"},"scope":16305,"src":"9492:282:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13064,"nodeType":"Block","src":"9866:197:58","statements":[{"AST":{"nativeSrc":"9901:156:58","nodeType":"YulBlock","src":"9901:156:58","statements":[{"nativeSrc":"9915:35:58","nodeType":"YulAssignment","src":"9915:35:58","value":{"arguments":[{"name":"left","nativeSrc":"9927:4:58","nodeType":"YulIdentifier","src":"9927:4:58"},{"arguments":[{"kind":"number","nativeSrc":"9937:3:58","nodeType":"YulLiteral","src":"9937:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"9946:1:58","nodeType":"YulLiteral","src":"9946:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9942:3:58","nodeType":"YulIdentifier","src":"9942:3:58"},"nativeSrc":"9942:6:58","nodeType":"YulFunctionCall","src":"9942:6:58"}],"functionName":{"name":"shl","nativeSrc":"9933:3:58","nodeType":"YulIdentifier","src":"9933:3:58"},"nativeSrc":"9933:16:58","nodeType":"YulFunctionCall","src":"9933:16:58"}],"functionName":{"name":"and","nativeSrc":"9923:3:58","nodeType":"YulIdentifier","src":"9923:3:58"},"nativeSrc":"9923:27:58","nodeType":"YulFunctionCall","src":"9923:27:58"},"variableNames":[{"name":"left","nativeSrc":"9915:4:58","nodeType":"YulIdentifier","src":"9915:4:58"}]},{"nativeSrc":"9963:37:58","nodeType":"YulAssignment","src":"9963:37:58","value":{"arguments":[{"name":"right","nativeSrc":"9976:5:58","nodeType":"YulIdentifier","src":"9976:5:58"},{"arguments":[{"kind":"number","nativeSrc":"9987:3:58","nodeType":"YulLiteral","src":"9987:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"9996:1:58","nodeType":"YulLiteral","src":"9996:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9992:3:58","nodeType":"YulIdentifier","src":"9992:3:58"},"nativeSrc":"9992:6:58","nodeType":"YulFunctionCall","src":"9992:6:58"}],"functionName":{"name":"shl","nativeSrc":"9983:3:58","nodeType":"YulIdentifier","src":"9983:3:58"},"nativeSrc":"9983:16:58","nodeType":"YulFunctionCall","src":"9983:16:58"}],"functionName":{"name":"and","nativeSrc":"9972:3:58","nodeType":"YulIdentifier","src":"9972:3:58"},"nativeSrc":"9972:28:58","nodeType":"YulFunctionCall","src":"9972:28:58"},"variableNames":[{"name":"right","nativeSrc":"9963:5:58","nodeType":"YulIdentifier","src":"9963:5:58"}]},{"nativeSrc":"10013:34:58","nodeType":"YulAssignment","src":"10013:34:58","value":{"arguments":[{"name":"left","nativeSrc":"10026:4:58","nodeType":"YulIdentifier","src":"10026:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10036:2:58","nodeType":"YulLiteral","src":"10036:2:58","type":"","value":"80"},{"name":"right","nativeSrc":"10040:5:58","nodeType":"YulIdentifier","src":"10040:5:58"}],"functionName":{"name":"shr","nativeSrc":"10032:3:58","nodeType":"YulIdentifier","src":"10032:3:58"},"nativeSrc":"10032:14:58","nodeType":"YulFunctionCall","src":"10032:14:58"}],"functionName":{"name":"or","nativeSrc":"10023:2:58","nodeType":"YulIdentifier","src":"10023:2:58"},"nativeSrc":"10023:24:58","nodeType":"YulFunctionCall","src":"10023:24:58"},"variableNames":[{"name":"result","nativeSrc":"10013:6:58","nodeType":"YulIdentifier","src":"10013:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13056,"isOffset":false,"isSlot":false,"src":"10026:4:58","valueSize":1},{"declaration":13056,"isOffset":false,"isSlot":false,"src":"9915:4:58","valueSize":1},{"declaration":13056,"isOffset":false,"isSlot":false,"src":"9927:4:58","valueSize":1},{"declaration":13061,"isOffset":false,"isSlot":false,"src":"10013:6:58","valueSize":1},{"declaration":13058,"isOffset":false,"isSlot":false,"src":"10040:5:58","valueSize":1},{"declaration":13058,"isOffset":false,"isSlot":false,"src":"9963:5:58","valueSize":1},{"declaration":13058,"isOffset":false,"isSlot":false,"src":"9976:5:58","valueSize":1}],"flags":["memory-safe"],"id":13063,"nodeType":"InlineAssembly","src":"9876:181:58"}]},"id":13065,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_2","nameLocation":"9789:9:58","nodeType":"FunctionDefinition","parameters":{"id":13059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13056,"mutability":"mutable","name":"left","nameLocation":"9807:4:58","nodeType":"VariableDeclaration","scope":13065,"src":"9799:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13055,"name":"bytes10","nodeType":"ElementaryTypeName","src":"9799:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13058,"mutability":"mutable","name":"right","nameLocation":"9820:5:58","nodeType":"VariableDeclaration","scope":13065,"src":"9813:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13057,"name":"bytes2","nodeType":"ElementaryTypeName","src":"9813:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"9798:28:58"},"returnParameters":{"id":13062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13061,"mutability":"mutable","name":"result","nameLocation":"9858:6:58","nodeType":"VariableDeclaration","scope":13065,"src":"9850:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13060,"name":"bytes12","nodeType":"ElementaryTypeName","src":"9850:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"9849:16:58"},"scope":16305,"src":"9780:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13075,"nodeType":"Block","src":"10155:197:58","statements":[{"AST":{"nativeSrc":"10190:156:58","nodeType":"YulBlock","src":"10190:156:58","statements":[{"nativeSrc":"10204:35:58","nodeType":"YulAssignment","src":"10204:35:58","value":{"arguments":[{"name":"left","nativeSrc":"10216:4:58","nodeType":"YulIdentifier","src":"10216:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10226:3:58","nodeType":"YulLiteral","src":"10226:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10235:1:58","nodeType":"YulLiteral","src":"10235:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10231:3:58","nodeType":"YulIdentifier","src":"10231:3:58"},"nativeSrc":"10231:6:58","nodeType":"YulFunctionCall","src":"10231:6:58"}],"functionName":{"name":"shl","nativeSrc":"10222:3:58","nodeType":"YulIdentifier","src":"10222:3:58"},"nativeSrc":"10222:16:58","nodeType":"YulFunctionCall","src":"10222:16:58"}],"functionName":{"name":"and","nativeSrc":"10212:3:58","nodeType":"YulIdentifier","src":"10212:3:58"},"nativeSrc":"10212:27:58","nodeType":"YulFunctionCall","src":"10212:27:58"},"variableNames":[{"name":"left","nativeSrc":"10204:4:58","nodeType":"YulIdentifier","src":"10204:4:58"}]},{"nativeSrc":"10252:37:58","nodeType":"YulAssignment","src":"10252:37:58","value":{"arguments":[{"name":"right","nativeSrc":"10265:5:58","nodeType":"YulIdentifier","src":"10265:5:58"},{"arguments":[{"kind":"number","nativeSrc":"10276:3:58","nodeType":"YulLiteral","src":"10276:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"10285:1:58","nodeType":"YulLiteral","src":"10285:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10281:3:58","nodeType":"YulIdentifier","src":"10281:3:58"},"nativeSrc":"10281:6:58","nodeType":"YulFunctionCall","src":"10281:6:58"}],"functionName":{"name":"shl","nativeSrc":"10272:3:58","nodeType":"YulIdentifier","src":"10272:3:58"},"nativeSrc":"10272:16:58","nodeType":"YulFunctionCall","src":"10272:16:58"}],"functionName":{"name":"and","nativeSrc":"10261:3:58","nodeType":"YulIdentifier","src":"10261:3:58"},"nativeSrc":"10261:28:58","nodeType":"YulFunctionCall","src":"10261:28:58"},"variableNames":[{"name":"right","nativeSrc":"10252:5:58","nodeType":"YulIdentifier","src":"10252:5:58"}]},{"nativeSrc":"10302:34:58","nodeType":"YulAssignment","src":"10302:34:58","value":{"arguments":[{"name":"left","nativeSrc":"10315:4:58","nodeType":"YulIdentifier","src":"10315:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10325:2:58","nodeType":"YulLiteral","src":"10325:2:58","type":"","value":"80"},{"name":"right","nativeSrc":"10329:5:58","nodeType":"YulIdentifier","src":"10329:5:58"}],"functionName":{"name":"shr","nativeSrc":"10321:3:58","nodeType":"YulIdentifier","src":"10321:3:58"},"nativeSrc":"10321:14:58","nodeType":"YulFunctionCall","src":"10321:14:58"}],"functionName":{"name":"or","nativeSrc":"10312:2:58","nodeType":"YulIdentifier","src":"10312:2:58"},"nativeSrc":"10312:24:58","nodeType":"YulFunctionCall","src":"10312:24:58"},"variableNames":[{"name":"result","nativeSrc":"10302:6:58","nodeType":"YulIdentifier","src":"10302:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13067,"isOffset":false,"isSlot":false,"src":"10204:4:58","valueSize":1},{"declaration":13067,"isOffset":false,"isSlot":false,"src":"10216:4:58","valueSize":1},{"declaration":13067,"isOffset":false,"isSlot":false,"src":"10315:4:58","valueSize":1},{"declaration":13072,"isOffset":false,"isSlot":false,"src":"10302:6:58","valueSize":1},{"declaration":13069,"isOffset":false,"isSlot":false,"src":"10252:5:58","valueSize":1},{"declaration":13069,"isOffset":false,"isSlot":false,"src":"10265:5:58","valueSize":1},{"declaration":13069,"isOffset":false,"isSlot":false,"src":"10329:5:58","valueSize":1}],"flags":["memory-safe"],"id":13074,"nodeType":"InlineAssembly","src":"10165:181:58"}]},"id":13076,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_6","nameLocation":"10078:9:58","nodeType":"FunctionDefinition","parameters":{"id":13070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13067,"mutability":"mutable","name":"left","nameLocation":"10096:4:58","nodeType":"VariableDeclaration","scope":13076,"src":"10088:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13066,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10088:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13069,"mutability":"mutable","name":"right","nameLocation":"10109:5:58","nodeType":"VariableDeclaration","scope":13076,"src":"10102:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13068,"name":"bytes6","nodeType":"ElementaryTypeName","src":"10102:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"10087:28:58"},"returnParameters":{"id":13073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13072,"mutability":"mutable","name":"result","nameLocation":"10147:6:58","nodeType":"VariableDeclaration","scope":13076,"src":"10139:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13071,"name":"bytes16","nodeType":"ElementaryTypeName","src":"10139:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"10138:16:58"},"scope":16305,"src":"10069:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13086,"nodeType":"Block","src":"10446:197:58","statements":[{"AST":{"nativeSrc":"10481:156:58","nodeType":"YulBlock","src":"10481:156:58","statements":[{"nativeSrc":"10495:35:58","nodeType":"YulAssignment","src":"10495:35:58","value":{"arguments":[{"name":"left","nativeSrc":"10507:4:58","nodeType":"YulIdentifier","src":"10507:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10517:3:58","nodeType":"YulLiteral","src":"10517:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10526:1:58","nodeType":"YulLiteral","src":"10526:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10522:3:58","nodeType":"YulIdentifier","src":"10522:3:58"},"nativeSrc":"10522:6:58","nodeType":"YulFunctionCall","src":"10522:6:58"}],"functionName":{"name":"shl","nativeSrc":"10513:3:58","nodeType":"YulIdentifier","src":"10513:3:58"},"nativeSrc":"10513:16:58","nodeType":"YulFunctionCall","src":"10513:16:58"}],"functionName":{"name":"and","nativeSrc":"10503:3:58","nodeType":"YulIdentifier","src":"10503:3:58"},"nativeSrc":"10503:27:58","nodeType":"YulFunctionCall","src":"10503:27:58"},"variableNames":[{"name":"left","nativeSrc":"10495:4:58","nodeType":"YulIdentifier","src":"10495:4:58"}]},{"nativeSrc":"10543:37:58","nodeType":"YulAssignment","src":"10543:37:58","value":{"arguments":[{"name":"right","nativeSrc":"10556:5:58","nodeType":"YulIdentifier","src":"10556:5:58"},{"arguments":[{"kind":"number","nativeSrc":"10567:3:58","nodeType":"YulLiteral","src":"10567:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10576:1:58","nodeType":"YulLiteral","src":"10576:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10572:3:58","nodeType":"YulIdentifier","src":"10572:3:58"},"nativeSrc":"10572:6:58","nodeType":"YulFunctionCall","src":"10572:6:58"}],"functionName":{"name":"shl","nativeSrc":"10563:3:58","nodeType":"YulIdentifier","src":"10563:3:58"},"nativeSrc":"10563:16:58","nodeType":"YulFunctionCall","src":"10563:16:58"}],"functionName":{"name":"and","nativeSrc":"10552:3:58","nodeType":"YulIdentifier","src":"10552:3:58"},"nativeSrc":"10552:28:58","nodeType":"YulFunctionCall","src":"10552:28:58"},"variableNames":[{"name":"right","nativeSrc":"10543:5:58","nodeType":"YulIdentifier","src":"10543:5:58"}]},{"nativeSrc":"10593:34:58","nodeType":"YulAssignment","src":"10593:34:58","value":{"arguments":[{"name":"left","nativeSrc":"10606:4:58","nodeType":"YulIdentifier","src":"10606:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10616:2:58","nodeType":"YulLiteral","src":"10616:2:58","type":"","value":"80"},{"name":"right","nativeSrc":"10620:5:58","nodeType":"YulIdentifier","src":"10620:5:58"}],"functionName":{"name":"shr","nativeSrc":"10612:3:58","nodeType":"YulIdentifier","src":"10612:3:58"},"nativeSrc":"10612:14:58","nodeType":"YulFunctionCall","src":"10612:14:58"}],"functionName":{"name":"or","nativeSrc":"10603:2:58","nodeType":"YulIdentifier","src":"10603:2:58"},"nativeSrc":"10603:24:58","nodeType":"YulFunctionCall","src":"10603:24:58"},"variableNames":[{"name":"result","nativeSrc":"10593:6:58","nodeType":"YulIdentifier","src":"10593:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13078,"isOffset":false,"isSlot":false,"src":"10495:4:58","valueSize":1},{"declaration":13078,"isOffset":false,"isSlot":false,"src":"10507:4:58","valueSize":1},{"declaration":13078,"isOffset":false,"isSlot":false,"src":"10606:4:58","valueSize":1},{"declaration":13083,"isOffset":false,"isSlot":false,"src":"10593:6:58","valueSize":1},{"declaration":13080,"isOffset":false,"isSlot":false,"src":"10543:5:58","valueSize":1},{"declaration":13080,"isOffset":false,"isSlot":false,"src":"10556:5:58","valueSize":1},{"declaration":13080,"isOffset":false,"isSlot":false,"src":"10620:5:58","valueSize":1}],"flags":["memory-safe"],"id":13085,"nodeType":"InlineAssembly","src":"10456:181:58"}]},"id":13087,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_10","nameLocation":"10367:10:58","nodeType":"FunctionDefinition","parameters":{"id":13081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13078,"mutability":"mutable","name":"left","nameLocation":"10386:4:58","nodeType":"VariableDeclaration","scope":13087,"src":"10378:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13077,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10378:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13080,"mutability":"mutable","name":"right","nameLocation":"10400:5:58","nodeType":"VariableDeclaration","scope":13087,"src":"10392:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13079,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10392:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"10377:29:58"},"returnParameters":{"id":13084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13083,"mutability":"mutable","name":"result","nameLocation":"10438:6:58","nodeType":"VariableDeclaration","scope":13087,"src":"10430:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13082,"name":"bytes20","nodeType":"ElementaryTypeName","src":"10430:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"10429:16:58"},"scope":16305,"src":"10358:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13097,"nodeType":"Block","src":"10737:197:58","statements":[{"AST":{"nativeSrc":"10772:156:58","nodeType":"YulBlock","src":"10772:156:58","statements":[{"nativeSrc":"10786:35:58","nodeType":"YulAssignment","src":"10786:35:58","value":{"arguments":[{"name":"left","nativeSrc":"10798:4:58","nodeType":"YulIdentifier","src":"10798:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10808:3:58","nodeType":"YulLiteral","src":"10808:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10817:1:58","nodeType":"YulLiteral","src":"10817:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10813:3:58","nodeType":"YulIdentifier","src":"10813:3:58"},"nativeSrc":"10813:6:58","nodeType":"YulFunctionCall","src":"10813:6:58"}],"functionName":{"name":"shl","nativeSrc":"10804:3:58","nodeType":"YulIdentifier","src":"10804:3:58"},"nativeSrc":"10804:16:58","nodeType":"YulFunctionCall","src":"10804:16:58"}],"functionName":{"name":"and","nativeSrc":"10794:3:58","nodeType":"YulIdentifier","src":"10794:3:58"},"nativeSrc":"10794:27:58","nodeType":"YulFunctionCall","src":"10794:27:58"},"variableNames":[{"name":"left","nativeSrc":"10786:4:58","nodeType":"YulIdentifier","src":"10786:4:58"}]},{"nativeSrc":"10834:37:58","nodeType":"YulAssignment","src":"10834:37:58","value":{"arguments":[{"name":"right","nativeSrc":"10847:5:58","nodeType":"YulIdentifier","src":"10847:5:58"},{"arguments":[{"kind":"number","nativeSrc":"10858:3:58","nodeType":"YulLiteral","src":"10858:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"10867:1:58","nodeType":"YulLiteral","src":"10867:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10863:3:58","nodeType":"YulIdentifier","src":"10863:3:58"},"nativeSrc":"10863:6:58","nodeType":"YulFunctionCall","src":"10863:6:58"}],"functionName":{"name":"shl","nativeSrc":"10854:3:58","nodeType":"YulIdentifier","src":"10854:3:58"},"nativeSrc":"10854:16:58","nodeType":"YulFunctionCall","src":"10854:16:58"}],"functionName":{"name":"and","nativeSrc":"10843:3:58","nodeType":"YulIdentifier","src":"10843:3:58"},"nativeSrc":"10843:28:58","nodeType":"YulFunctionCall","src":"10843:28:58"},"variableNames":[{"name":"right","nativeSrc":"10834:5:58","nodeType":"YulIdentifier","src":"10834:5:58"}]},{"nativeSrc":"10884:34:58","nodeType":"YulAssignment","src":"10884:34:58","value":{"arguments":[{"name":"left","nativeSrc":"10897:4:58","nodeType":"YulIdentifier","src":"10897:4:58"},{"arguments":[{"kind":"number","nativeSrc":"10907:2:58","nodeType":"YulLiteral","src":"10907:2:58","type":"","value":"80"},{"name":"right","nativeSrc":"10911:5:58","nodeType":"YulIdentifier","src":"10911:5:58"}],"functionName":{"name":"shr","nativeSrc":"10903:3:58","nodeType":"YulIdentifier","src":"10903:3:58"},"nativeSrc":"10903:14:58","nodeType":"YulFunctionCall","src":"10903:14:58"}],"functionName":{"name":"or","nativeSrc":"10894:2:58","nodeType":"YulIdentifier","src":"10894:2:58"},"nativeSrc":"10894:24:58","nodeType":"YulFunctionCall","src":"10894:24:58"},"variableNames":[{"name":"result","nativeSrc":"10884:6:58","nodeType":"YulIdentifier","src":"10884:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13089,"isOffset":false,"isSlot":false,"src":"10786:4:58","valueSize":1},{"declaration":13089,"isOffset":false,"isSlot":false,"src":"10798:4:58","valueSize":1},{"declaration":13089,"isOffset":false,"isSlot":false,"src":"10897:4:58","valueSize":1},{"declaration":13094,"isOffset":false,"isSlot":false,"src":"10884:6:58","valueSize":1},{"declaration":13091,"isOffset":false,"isSlot":false,"src":"10834:5:58","valueSize":1},{"declaration":13091,"isOffset":false,"isSlot":false,"src":"10847:5:58","valueSize":1},{"declaration":13091,"isOffset":false,"isSlot":false,"src":"10911:5:58","valueSize":1}],"flags":["memory-safe"],"id":13096,"nodeType":"InlineAssembly","src":"10747:181:58"}]},"id":13098,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_12","nameLocation":"10658:10:58","nodeType":"FunctionDefinition","parameters":{"id":13092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13089,"mutability":"mutable","name":"left","nameLocation":"10677:4:58","nodeType":"VariableDeclaration","scope":13098,"src":"10669:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13088,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10669:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13091,"mutability":"mutable","name":"right","nameLocation":"10691:5:58","nodeType":"VariableDeclaration","scope":13098,"src":"10683:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13090,"name":"bytes12","nodeType":"ElementaryTypeName","src":"10683:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"10668:29:58"},"returnParameters":{"id":13095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13094,"mutability":"mutable","name":"result","nameLocation":"10729:6:58","nodeType":"VariableDeclaration","scope":13098,"src":"10721:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13093,"name":"bytes22","nodeType":"ElementaryTypeName","src":"10721:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"10720:16:58"},"scope":16305,"src":"10649:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13108,"nodeType":"Block","src":"11028:196:58","statements":[{"AST":{"nativeSrc":"11063:155:58","nodeType":"YulBlock","src":"11063:155:58","statements":[{"nativeSrc":"11077:35:58","nodeType":"YulAssignment","src":"11077:35:58","value":{"arguments":[{"name":"left","nativeSrc":"11089:4:58","nodeType":"YulIdentifier","src":"11089:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11099:3:58","nodeType":"YulLiteral","src":"11099:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"11108:1:58","nodeType":"YulLiteral","src":"11108:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11104:3:58","nodeType":"YulIdentifier","src":"11104:3:58"},"nativeSrc":"11104:6:58","nodeType":"YulFunctionCall","src":"11104:6:58"}],"functionName":{"name":"shl","nativeSrc":"11095:3:58","nodeType":"YulIdentifier","src":"11095:3:58"},"nativeSrc":"11095:16:58","nodeType":"YulFunctionCall","src":"11095:16:58"}],"functionName":{"name":"and","nativeSrc":"11085:3:58","nodeType":"YulIdentifier","src":"11085:3:58"},"nativeSrc":"11085:27:58","nodeType":"YulFunctionCall","src":"11085:27:58"},"variableNames":[{"name":"left","nativeSrc":"11077:4:58","nodeType":"YulIdentifier","src":"11077:4:58"}]},{"nativeSrc":"11125:36:58","nodeType":"YulAssignment","src":"11125:36:58","value":{"arguments":[{"name":"right","nativeSrc":"11138:5:58","nodeType":"YulIdentifier","src":"11138:5:58"},{"arguments":[{"kind":"number","nativeSrc":"11149:2:58","nodeType":"YulLiteral","src":"11149:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"11157:1:58","nodeType":"YulLiteral","src":"11157:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11153:3:58","nodeType":"YulIdentifier","src":"11153:3:58"},"nativeSrc":"11153:6:58","nodeType":"YulFunctionCall","src":"11153:6:58"}],"functionName":{"name":"shl","nativeSrc":"11145:3:58","nodeType":"YulIdentifier","src":"11145:3:58"},"nativeSrc":"11145:15:58","nodeType":"YulFunctionCall","src":"11145:15:58"}],"functionName":{"name":"and","nativeSrc":"11134:3:58","nodeType":"YulIdentifier","src":"11134:3:58"},"nativeSrc":"11134:27:58","nodeType":"YulFunctionCall","src":"11134:27:58"},"variableNames":[{"name":"right","nativeSrc":"11125:5:58","nodeType":"YulIdentifier","src":"11125:5:58"}]},{"nativeSrc":"11174:34:58","nodeType":"YulAssignment","src":"11174:34:58","value":{"arguments":[{"name":"left","nativeSrc":"11187:4:58","nodeType":"YulIdentifier","src":"11187:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11197:2:58","nodeType":"YulLiteral","src":"11197:2:58","type":"","value":"80"},{"name":"right","nativeSrc":"11201:5:58","nodeType":"YulIdentifier","src":"11201:5:58"}],"functionName":{"name":"shr","nativeSrc":"11193:3:58","nodeType":"YulIdentifier","src":"11193:3:58"},"nativeSrc":"11193:14:58","nodeType":"YulFunctionCall","src":"11193:14:58"}],"functionName":{"name":"or","nativeSrc":"11184:2:58","nodeType":"YulIdentifier","src":"11184:2:58"},"nativeSrc":"11184:24:58","nodeType":"YulFunctionCall","src":"11184:24:58"},"variableNames":[{"name":"result","nativeSrc":"11174:6:58","nodeType":"YulIdentifier","src":"11174:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13100,"isOffset":false,"isSlot":false,"src":"11077:4:58","valueSize":1},{"declaration":13100,"isOffset":false,"isSlot":false,"src":"11089:4:58","valueSize":1},{"declaration":13100,"isOffset":false,"isSlot":false,"src":"11187:4:58","valueSize":1},{"declaration":13105,"isOffset":false,"isSlot":false,"src":"11174:6:58","valueSize":1},{"declaration":13102,"isOffset":false,"isSlot":false,"src":"11125:5:58","valueSize":1},{"declaration":13102,"isOffset":false,"isSlot":false,"src":"11138:5:58","valueSize":1},{"declaration":13102,"isOffset":false,"isSlot":false,"src":"11201:5:58","valueSize":1}],"flags":["memory-safe"],"id":13107,"nodeType":"InlineAssembly","src":"11038:180:58"}]},"id":13109,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_22","nameLocation":"10949:10:58","nodeType":"FunctionDefinition","parameters":{"id":13103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13100,"mutability":"mutable","name":"left","nameLocation":"10968:4:58","nodeType":"VariableDeclaration","scope":13109,"src":"10960:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13099,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10960:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13102,"mutability":"mutable","name":"right","nameLocation":"10982:5:58","nodeType":"VariableDeclaration","scope":13109,"src":"10974:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13101,"name":"bytes22","nodeType":"ElementaryTypeName","src":"10974:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"10959:29:58"},"returnParameters":{"id":13106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13105,"mutability":"mutable","name":"result","nameLocation":"11020:6:58","nodeType":"VariableDeclaration","scope":13109,"src":"11012:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13104,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11012:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11011:16:58"},"scope":16305,"src":"10940:284:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13119,"nodeType":"Block","src":"11316:197:58","statements":[{"AST":{"nativeSrc":"11351:156:58","nodeType":"YulBlock","src":"11351:156:58","statements":[{"nativeSrc":"11365:35:58","nodeType":"YulAssignment","src":"11365:35:58","value":{"arguments":[{"name":"left","nativeSrc":"11377:4:58","nodeType":"YulIdentifier","src":"11377:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11387:3:58","nodeType":"YulLiteral","src":"11387:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"11396:1:58","nodeType":"YulLiteral","src":"11396:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11392:3:58","nodeType":"YulIdentifier","src":"11392:3:58"},"nativeSrc":"11392:6:58","nodeType":"YulFunctionCall","src":"11392:6:58"}],"functionName":{"name":"shl","nativeSrc":"11383:3:58","nodeType":"YulIdentifier","src":"11383:3:58"},"nativeSrc":"11383:16:58","nodeType":"YulFunctionCall","src":"11383:16:58"}],"functionName":{"name":"and","nativeSrc":"11373:3:58","nodeType":"YulIdentifier","src":"11373:3:58"},"nativeSrc":"11373:27:58","nodeType":"YulFunctionCall","src":"11373:27:58"},"variableNames":[{"name":"left","nativeSrc":"11365:4:58","nodeType":"YulIdentifier","src":"11365:4:58"}]},{"nativeSrc":"11413:37:58","nodeType":"YulAssignment","src":"11413:37:58","value":{"arguments":[{"name":"right","nativeSrc":"11426:5:58","nodeType":"YulIdentifier","src":"11426:5:58"},{"arguments":[{"kind":"number","nativeSrc":"11437:3:58","nodeType":"YulLiteral","src":"11437:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"11446:1:58","nodeType":"YulLiteral","src":"11446:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11442:3:58","nodeType":"YulIdentifier","src":"11442:3:58"},"nativeSrc":"11442:6:58","nodeType":"YulFunctionCall","src":"11442:6:58"}],"functionName":{"name":"shl","nativeSrc":"11433:3:58","nodeType":"YulIdentifier","src":"11433:3:58"},"nativeSrc":"11433:16:58","nodeType":"YulFunctionCall","src":"11433:16:58"}],"functionName":{"name":"and","nativeSrc":"11422:3:58","nodeType":"YulIdentifier","src":"11422:3:58"},"nativeSrc":"11422:28:58","nodeType":"YulFunctionCall","src":"11422:28:58"},"variableNames":[{"name":"right","nativeSrc":"11413:5:58","nodeType":"YulIdentifier","src":"11413:5:58"}]},{"nativeSrc":"11463:34:58","nodeType":"YulAssignment","src":"11463:34:58","value":{"arguments":[{"name":"left","nativeSrc":"11476:4:58","nodeType":"YulIdentifier","src":"11476:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11486:2:58","nodeType":"YulLiteral","src":"11486:2:58","type":"","value":"96"},{"name":"right","nativeSrc":"11490:5:58","nodeType":"YulIdentifier","src":"11490:5:58"}],"functionName":{"name":"shr","nativeSrc":"11482:3:58","nodeType":"YulIdentifier","src":"11482:3:58"},"nativeSrc":"11482:14:58","nodeType":"YulFunctionCall","src":"11482:14:58"}],"functionName":{"name":"or","nativeSrc":"11473:2:58","nodeType":"YulIdentifier","src":"11473:2:58"},"nativeSrc":"11473:24:58","nodeType":"YulFunctionCall","src":"11473:24:58"},"variableNames":[{"name":"result","nativeSrc":"11463:6:58","nodeType":"YulIdentifier","src":"11463:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13111,"isOffset":false,"isSlot":false,"src":"11365:4:58","valueSize":1},{"declaration":13111,"isOffset":false,"isSlot":false,"src":"11377:4:58","valueSize":1},{"declaration":13111,"isOffset":false,"isSlot":false,"src":"11476:4:58","valueSize":1},{"declaration":13116,"isOffset":false,"isSlot":false,"src":"11463:6:58","valueSize":1},{"declaration":13113,"isOffset":false,"isSlot":false,"src":"11413:5:58","valueSize":1},{"declaration":13113,"isOffset":false,"isSlot":false,"src":"11426:5:58","valueSize":1},{"declaration":13113,"isOffset":false,"isSlot":false,"src":"11490:5:58","valueSize":1}],"flags":["memory-safe"],"id":13118,"nodeType":"InlineAssembly","src":"11326:181:58"}]},"id":13120,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_4","nameLocation":"11239:9:58","nodeType":"FunctionDefinition","parameters":{"id":13114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13111,"mutability":"mutable","name":"left","nameLocation":"11257:4:58","nodeType":"VariableDeclaration","scope":13120,"src":"11249:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13110,"name":"bytes12","nodeType":"ElementaryTypeName","src":"11249:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13113,"mutability":"mutable","name":"right","nameLocation":"11270:5:58","nodeType":"VariableDeclaration","scope":13120,"src":"11263:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13112,"name":"bytes4","nodeType":"ElementaryTypeName","src":"11263:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"11248:28:58"},"returnParameters":{"id":13117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13116,"mutability":"mutable","name":"result","nameLocation":"11308:6:58","nodeType":"VariableDeclaration","scope":13120,"src":"11300:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13115,"name":"bytes16","nodeType":"ElementaryTypeName","src":"11300:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"11299:16:58"},"scope":16305,"src":"11230:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13130,"nodeType":"Block","src":"11605:197:58","statements":[{"AST":{"nativeSrc":"11640:156:58","nodeType":"YulBlock","src":"11640:156:58","statements":[{"nativeSrc":"11654:35:58","nodeType":"YulAssignment","src":"11654:35:58","value":{"arguments":[{"name":"left","nativeSrc":"11666:4:58","nodeType":"YulIdentifier","src":"11666:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11676:3:58","nodeType":"YulLiteral","src":"11676:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"11685:1:58","nodeType":"YulLiteral","src":"11685:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11681:3:58","nodeType":"YulIdentifier","src":"11681:3:58"},"nativeSrc":"11681:6:58","nodeType":"YulFunctionCall","src":"11681:6:58"}],"functionName":{"name":"shl","nativeSrc":"11672:3:58","nodeType":"YulIdentifier","src":"11672:3:58"},"nativeSrc":"11672:16:58","nodeType":"YulFunctionCall","src":"11672:16:58"}],"functionName":{"name":"and","nativeSrc":"11662:3:58","nodeType":"YulIdentifier","src":"11662:3:58"},"nativeSrc":"11662:27:58","nodeType":"YulFunctionCall","src":"11662:27:58"},"variableNames":[{"name":"left","nativeSrc":"11654:4:58","nodeType":"YulIdentifier","src":"11654:4:58"}]},{"nativeSrc":"11702:37:58","nodeType":"YulAssignment","src":"11702:37:58","value":{"arguments":[{"name":"right","nativeSrc":"11715:5:58","nodeType":"YulIdentifier","src":"11715:5:58"},{"arguments":[{"kind":"number","nativeSrc":"11726:3:58","nodeType":"YulLiteral","src":"11726:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"11735:1:58","nodeType":"YulLiteral","src":"11735:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11731:3:58","nodeType":"YulIdentifier","src":"11731:3:58"},"nativeSrc":"11731:6:58","nodeType":"YulFunctionCall","src":"11731:6:58"}],"functionName":{"name":"shl","nativeSrc":"11722:3:58","nodeType":"YulIdentifier","src":"11722:3:58"},"nativeSrc":"11722:16:58","nodeType":"YulFunctionCall","src":"11722:16:58"}],"functionName":{"name":"and","nativeSrc":"11711:3:58","nodeType":"YulIdentifier","src":"11711:3:58"},"nativeSrc":"11711:28:58","nodeType":"YulFunctionCall","src":"11711:28:58"},"variableNames":[{"name":"right","nativeSrc":"11702:5:58","nodeType":"YulIdentifier","src":"11702:5:58"}]},{"nativeSrc":"11752:34:58","nodeType":"YulAssignment","src":"11752:34:58","value":{"arguments":[{"name":"left","nativeSrc":"11765:4:58","nodeType":"YulIdentifier","src":"11765:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11775:2:58","nodeType":"YulLiteral","src":"11775:2:58","type":"","value":"96"},{"name":"right","nativeSrc":"11779:5:58","nodeType":"YulIdentifier","src":"11779:5:58"}],"functionName":{"name":"shr","nativeSrc":"11771:3:58","nodeType":"YulIdentifier","src":"11771:3:58"},"nativeSrc":"11771:14:58","nodeType":"YulFunctionCall","src":"11771:14:58"}],"functionName":{"name":"or","nativeSrc":"11762:2:58","nodeType":"YulIdentifier","src":"11762:2:58"},"nativeSrc":"11762:24:58","nodeType":"YulFunctionCall","src":"11762:24:58"},"variableNames":[{"name":"result","nativeSrc":"11752:6:58","nodeType":"YulIdentifier","src":"11752:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13122,"isOffset":false,"isSlot":false,"src":"11654:4:58","valueSize":1},{"declaration":13122,"isOffset":false,"isSlot":false,"src":"11666:4:58","valueSize":1},{"declaration":13122,"isOffset":false,"isSlot":false,"src":"11765:4:58","valueSize":1},{"declaration":13127,"isOffset":false,"isSlot":false,"src":"11752:6:58","valueSize":1},{"declaration":13124,"isOffset":false,"isSlot":false,"src":"11702:5:58","valueSize":1},{"declaration":13124,"isOffset":false,"isSlot":false,"src":"11715:5:58","valueSize":1},{"declaration":13124,"isOffset":false,"isSlot":false,"src":"11779:5:58","valueSize":1}],"flags":["memory-safe"],"id":13129,"nodeType":"InlineAssembly","src":"11615:181:58"}]},"id":13131,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_8","nameLocation":"11528:9:58","nodeType":"FunctionDefinition","parameters":{"id":13125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13122,"mutability":"mutable","name":"left","nameLocation":"11546:4:58","nodeType":"VariableDeclaration","scope":13131,"src":"11538:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13121,"name":"bytes12","nodeType":"ElementaryTypeName","src":"11538:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13124,"mutability":"mutable","name":"right","nameLocation":"11559:5:58","nodeType":"VariableDeclaration","scope":13131,"src":"11552:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13123,"name":"bytes8","nodeType":"ElementaryTypeName","src":"11552:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"11537:28:58"},"returnParameters":{"id":13128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13127,"mutability":"mutable","name":"result","nameLocation":"11597:6:58","nodeType":"VariableDeclaration","scope":13131,"src":"11589:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13126,"name":"bytes20","nodeType":"ElementaryTypeName","src":"11589:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"11588:16:58"},"scope":16305,"src":"11519:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13141,"nodeType":"Block","src":"11896:197:58","statements":[{"AST":{"nativeSrc":"11931:156:58","nodeType":"YulBlock","src":"11931:156:58","statements":[{"nativeSrc":"11945:35:58","nodeType":"YulAssignment","src":"11945:35:58","value":{"arguments":[{"name":"left","nativeSrc":"11957:4:58","nodeType":"YulIdentifier","src":"11957:4:58"},{"arguments":[{"kind":"number","nativeSrc":"11967:3:58","nodeType":"YulLiteral","src":"11967:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"11976:1:58","nodeType":"YulLiteral","src":"11976:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11972:3:58","nodeType":"YulIdentifier","src":"11972:3:58"},"nativeSrc":"11972:6:58","nodeType":"YulFunctionCall","src":"11972:6:58"}],"functionName":{"name":"shl","nativeSrc":"11963:3:58","nodeType":"YulIdentifier","src":"11963:3:58"},"nativeSrc":"11963:16:58","nodeType":"YulFunctionCall","src":"11963:16:58"}],"functionName":{"name":"and","nativeSrc":"11953:3:58","nodeType":"YulIdentifier","src":"11953:3:58"},"nativeSrc":"11953:27:58","nodeType":"YulFunctionCall","src":"11953:27:58"},"variableNames":[{"name":"left","nativeSrc":"11945:4:58","nodeType":"YulIdentifier","src":"11945:4:58"}]},{"nativeSrc":"11993:37:58","nodeType":"YulAssignment","src":"11993:37:58","value":{"arguments":[{"name":"right","nativeSrc":"12006:5:58","nodeType":"YulIdentifier","src":"12006:5:58"},{"arguments":[{"kind":"number","nativeSrc":"12017:3:58","nodeType":"YulLiteral","src":"12017:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"12026:1:58","nodeType":"YulLiteral","src":"12026:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12022:3:58","nodeType":"YulIdentifier","src":"12022:3:58"},"nativeSrc":"12022:6:58","nodeType":"YulFunctionCall","src":"12022:6:58"}],"functionName":{"name":"shl","nativeSrc":"12013:3:58","nodeType":"YulIdentifier","src":"12013:3:58"},"nativeSrc":"12013:16:58","nodeType":"YulFunctionCall","src":"12013:16:58"}],"functionName":{"name":"and","nativeSrc":"12002:3:58","nodeType":"YulIdentifier","src":"12002:3:58"},"nativeSrc":"12002:28:58","nodeType":"YulFunctionCall","src":"12002:28:58"},"variableNames":[{"name":"right","nativeSrc":"11993:5:58","nodeType":"YulIdentifier","src":"11993:5:58"}]},{"nativeSrc":"12043:34:58","nodeType":"YulAssignment","src":"12043:34:58","value":{"arguments":[{"name":"left","nativeSrc":"12056:4:58","nodeType":"YulIdentifier","src":"12056:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12066:2:58","nodeType":"YulLiteral","src":"12066:2:58","type":"","value":"96"},{"name":"right","nativeSrc":"12070:5:58","nodeType":"YulIdentifier","src":"12070:5:58"}],"functionName":{"name":"shr","nativeSrc":"12062:3:58","nodeType":"YulIdentifier","src":"12062:3:58"},"nativeSrc":"12062:14:58","nodeType":"YulFunctionCall","src":"12062:14:58"}],"functionName":{"name":"or","nativeSrc":"12053:2:58","nodeType":"YulIdentifier","src":"12053:2:58"},"nativeSrc":"12053:24:58","nodeType":"YulFunctionCall","src":"12053:24:58"},"variableNames":[{"name":"result","nativeSrc":"12043:6:58","nodeType":"YulIdentifier","src":"12043:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13133,"isOffset":false,"isSlot":false,"src":"11945:4:58","valueSize":1},{"declaration":13133,"isOffset":false,"isSlot":false,"src":"11957:4:58","valueSize":1},{"declaration":13133,"isOffset":false,"isSlot":false,"src":"12056:4:58","valueSize":1},{"declaration":13138,"isOffset":false,"isSlot":false,"src":"12043:6:58","valueSize":1},{"declaration":13135,"isOffset":false,"isSlot":false,"src":"11993:5:58","valueSize":1},{"declaration":13135,"isOffset":false,"isSlot":false,"src":"12006:5:58","valueSize":1},{"declaration":13135,"isOffset":false,"isSlot":false,"src":"12070:5:58","valueSize":1}],"flags":["memory-safe"],"id":13140,"nodeType":"InlineAssembly","src":"11906:181:58"}]},"id":13142,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_10","nameLocation":"11817:10:58","nodeType":"FunctionDefinition","parameters":{"id":13136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13133,"mutability":"mutable","name":"left","nameLocation":"11836:4:58","nodeType":"VariableDeclaration","scope":13142,"src":"11828:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13132,"name":"bytes12","nodeType":"ElementaryTypeName","src":"11828:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13135,"mutability":"mutable","name":"right","nameLocation":"11850:5:58","nodeType":"VariableDeclaration","scope":13142,"src":"11842:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13134,"name":"bytes10","nodeType":"ElementaryTypeName","src":"11842:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"11827:29:58"},"returnParameters":{"id":13139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13138,"mutability":"mutable","name":"result","nameLocation":"11888:6:58","nodeType":"VariableDeclaration","scope":13142,"src":"11880:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13137,"name":"bytes22","nodeType":"ElementaryTypeName","src":"11880:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"11879:16:58"},"scope":16305,"src":"11808:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13152,"nodeType":"Block","src":"12187:197:58","statements":[{"AST":{"nativeSrc":"12222:156:58","nodeType":"YulBlock","src":"12222:156:58","statements":[{"nativeSrc":"12236:35:58","nodeType":"YulAssignment","src":"12236:35:58","value":{"arguments":[{"name":"left","nativeSrc":"12248:4:58","nodeType":"YulIdentifier","src":"12248:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12258:3:58","nodeType":"YulLiteral","src":"12258:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12267:1:58","nodeType":"YulLiteral","src":"12267:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12263:3:58","nodeType":"YulIdentifier","src":"12263:3:58"},"nativeSrc":"12263:6:58","nodeType":"YulFunctionCall","src":"12263:6:58"}],"functionName":{"name":"shl","nativeSrc":"12254:3:58","nodeType":"YulIdentifier","src":"12254:3:58"},"nativeSrc":"12254:16:58","nodeType":"YulFunctionCall","src":"12254:16:58"}],"functionName":{"name":"and","nativeSrc":"12244:3:58","nodeType":"YulIdentifier","src":"12244:3:58"},"nativeSrc":"12244:27:58","nodeType":"YulFunctionCall","src":"12244:27:58"},"variableNames":[{"name":"left","nativeSrc":"12236:4:58","nodeType":"YulIdentifier","src":"12236:4:58"}]},{"nativeSrc":"12284:37:58","nodeType":"YulAssignment","src":"12284:37:58","value":{"arguments":[{"name":"right","nativeSrc":"12297:5:58","nodeType":"YulIdentifier","src":"12297:5:58"},{"arguments":[{"kind":"number","nativeSrc":"12308:3:58","nodeType":"YulLiteral","src":"12308:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12317:1:58","nodeType":"YulLiteral","src":"12317:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12313:3:58","nodeType":"YulIdentifier","src":"12313:3:58"},"nativeSrc":"12313:6:58","nodeType":"YulFunctionCall","src":"12313:6:58"}],"functionName":{"name":"shl","nativeSrc":"12304:3:58","nodeType":"YulIdentifier","src":"12304:3:58"},"nativeSrc":"12304:16:58","nodeType":"YulFunctionCall","src":"12304:16:58"}],"functionName":{"name":"and","nativeSrc":"12293:3:58","nodeType":"YulIdentifier","src":"12293:3:58"},"nativeSrc":"12293:28:58","nodeType":"YulFunctionCall","src":"12293:28:58"},"variableNames":[{"name":"right","nativeSrc":"12284:5:58","nodeType":"YulIdentifier","src":"12284:5:58"}]},{"nativeSrc":"12334:34:58","nodeType":"YulAssignment","src":"12334:34:58","value":{"arguments":[{"name":"left","nativeSrc":"12347:4:58","nodeType":"YulIdentifier","src":"12347:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12357:2:58","nodeType":"YulLiteral","src":"12357:2:58","type":"","value":"96"},{"name":"right","nativeSrc":"12361:5:58","nodeType":"YulIdentifier","src":"12361:5:58"}],"functionName":{"name":"shr","nativeSrc":"12353:3:58","nodeType":"YulIdentifier","src":"12353:3:58"},"nativeSrc":"12353:14:58","nodeType":"YulFunctionCall","src":"12353:14:58"}],"functionName":{"name":"or","nativeSrc":"12344:2:58","nodeType":"YulIdentifier","src":"12344:2:58"},"nativeSrc":"12344:24:58","nodeType":"YulFunctionCall","src":"12344:24:58"},"variableNames":[{"name":"result","nativeSrc":"12334:6:58","nodeType":"YulIdentifier","src":"12334:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13144,"isOffset":false,"isSlot":false,"src":"12236:4:58","valueSize":1},{"declaration":13144,"isOffset":false,"isSlot":false,"src":"12248:4:58","valueSize":1},{"declaration":13144,"isOffset":false,"isSlot":false,"src":"12347:4:58","valueSize":1},{"declaration":13149,"isOffset":false,"isSlot":false,"src":"12334:6:58","valueSize":1},{"declaration":13146,"isOffset":false,"isSlot":false,"src":"12284:5:58","valueSize":1},{"declaration":13146,"isOffset":false,"isSlot":false,"src":"12297:5:58","valueSize":1},{"declaration":13146,"isOffset":false,"isSlot":false,"src":"12361:5:58","valueSize":1}],"flags":["memory-safe"],"id":13151,"nodeType":"InlineAssembly","src":"12197:181:58"}]},"id":13153,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_12","nameLocation":"12108:10:58","nodeType":"FunctionDefinition","parameters":{"id":13147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13144,"mutability":"mutable","name":"left","nameLocation":"12127:4:58","nodeType":"VariableDeclaration","scope":13153,"src":"12119:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13143,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12119:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13146,"mutability":"mutable","name":"right","nameLocation":"12141:5:58","nodeType":"VariableDeclaration","scope":13153,"src":"12133:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13145,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12133:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"12118:29:58"},"returnParameters":{"id":13150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13149,"mutability":"mutable","name":"result","nameLocation":"12179:6:58","nodeType":"VariableDeclaration","scope":13153,"src":"12171:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13148,"name":"bytes24","nodeType":"ElementaryTypeName","src":"12171:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"12170:16:58"},"scope":16305,"src":"12099:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13163,"nodeType":"Block","src":"12478:197:58","statements":[{"AST":{"nativeSrc":"12513:156:58","nodeType":"YulBlock","src":"12513:156:58","statements":[{"nativeSrc":"12527:35:58","nodeType":"YulAssignment","src":"12527:35:58","value":{"arguments":[{"name":"left","nativeSrc":"12539:4:58","nodeType":"YulIdentifier","src":"12539:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12549:3:58","nodeType":"YulLiteral","src":"12549:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12558:1:58","nodeType":"YulLiteral","src":"12558:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12554:3:58","nodeType":"YulIdentifier","src":"12554:3:58"},"nativeSrc":"12554:6:58","nodeType":"YulFunctionCall","src":"12554:6:58"}],"functionName":{"name":"shl","nativeSrc":"12545:3:58","nodeType":"YulIdentifier","src":"12545:3:58"},"nativeSrc":"12545:16:58","nodeType":"YulFunctionCall","src":"12545:16:58"}],"functionName":{"name":"and","nativeSrc":"12535:3:58","nodeType":"YulIdentifier","src":"12535:3:58"},"nativeSrc":"12535:27:58","nodeType":"YulFunctionCall","src":"12535:27:58"},"variableNames":[{"name":"left","nativeSrc":"12527:4:58","nodeType":"YulIdentifier","src":"12527:4:58"}]},{"nativeSrc":"12575:37:58","nodeType":"YulAssignment","src":"12575:37:58","value":{"arguments":[{"name":"right","nativeSrc":"12588:5:58","nodeType":"YulIdentifier","src":"12588:5:58"},{"arguments":[{"kind":"number","nativeSrc":"12599:3:58","nodeType":"YulLiteral","src":"12599:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"12608:1:58","nodeType":"YulLiteral","src":"12608:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12604:3:58","nodeType":"YulIdentifier","src":"12604:3:58"},"nativeSrc":"12604:6:58","nodeType":"YulFunctionCall","src":"12604:6:58"}],"functionName":{"name":"shl","nativeSrc":"12595:3:58","nodeType":"YulIdentifier","src":"12595:3:58"},"nativeSrc":"12595:16:58","nodeType":"YulFunctionCall","src":"12595:16:58"}],"functionName":{"name":"and","nativeSrc":"12584:3:58","nodeType":"YulIdentifier","src":"12584:3:58"},"nativeSrc":"12584:28:58","nodeType":"YulFunctionCall","src":"12584:28:58"},"variableNames":[{"name":"right","nativeSrc":"12575:5:58","nodeType":"YulIdentifier","src":"12575:5:58"}]},{"nativeSrc":"12625:34:58","nodeType":"YulAssignment","src":"12625:34:58","value":{"arguments":[{"name":"left","nativeSrc":"12638:4:58","nodeType":"YulIdentifier","src":"12638:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12648:2:58","nodeType":"YulLiteral","src":"12648:2:58","type":"","value":"96"},{"name":"right","nativeSrc":"12652:5:58","nodeType":"YulIdentifier","src":"12652:5:58"}],"functionName":{"name":"shr","nativeSrc":"12644:3:58","nodeType":"YulIdentifier","src":"12644:3:58"},"nativeSrc":"12644:14:58","nodeType":"YulFunctionCall","src":"12644:14:58"}],"functionName":{"name":"or","nativeSrc":"12635:2:58","nodeType":"YulIdentifier","src":"12635:2:58"},"nativeSrc":"12635:24:58","nodeType":"YulFunctionCall","src":"12635:24:58"},"variableNames":[{"name":"result","nativeSrc":"12625:6:58","nodeType":"YulIdentifier","src":"12625:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13155,"isOffset":false,"isSlot":false,"src":"12527:4:58","valueSize":1},{"declaration":13155,"isOffset":false,"isSlot":false,"src":"12539:4:58","valueSize":1},{"declaration":13155,"isOffset":false,"isSlot":false,"src":"12638:4:58","valueSize":1},{"declaration":13160,"isOffset":false,"isSlot":false,"src":"12625:6:58","valueSize":1},{"declaration":13157,"isOffset":false,"isSlot":false,"src":"12575:5:58","valueSize":1},{"declaration":13157,"isOffset":false,"isSlot":false,"src":"12588:5:58","valueSize":1},{"declaration":13157,"isOffset":false,"isSlot":false,"src":"12652:5:58","valueSize":1}],"flags":["memory-safe"],"id":13162,"nodeType":"InlineAssembly","src":"12488:181:58"}]},"id":13164,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_16","nameLocation":"12399:10:58","nodeType":"FunctionDefinition","parameters":{"id":13158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13155,"mutability":"mutable","name":"left","nameLocation":"12418:4:58","nodeType":"VariableDeclaration","scope":13164,"src":"12410:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13154,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12410:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13157,"mutability":"mutable","name":"right","nameLocation":"12432:5:58","nodeType":"VariableDeclaration","scope":13164,"src":"12424:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13156,"name":"bytes16","nodeType":"ElementaryTypeName","src":"12424:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"12409:29:58"},"returnParameters":{"id":13161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13160,"mutability":"mutable","name":"result","nameLocation":"12470:6:58","nodeType":"VariableDeclaration","scope":13164,"src":"12462:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13159,"name":"bytes28","nodeType":"ElementaryTypeName","src":"12462:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"12461:16:58"},"scope":16305,"src":"12390:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13174,"nodeType":"Block","src":"12769:196:58","statements":[{"AST":{"nativeSrc":"12804:155:58","nodeType":"YulBlock","src":"12804:155:58","statements":[{"nativeSrc":"12818:35:58","nodeType":"YulAssignment","src":"12818:35:58","value":{"arguments":[{"name":"left","nativeSrc":"12830:4:58","nodeType":"YulIdentifier","src":"12830:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12840:3:58","nodeType":"YulLiteral","src":"12840:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12849:1:58","nodeType":"YulLiteral","src":"12849:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12845:3:58","nodeType":"YulIdentifier","src":"12845:3:58"},"nativeSrc":"12845:6:58","nodeType":"YulFunctionCall","src":"12845:6:58"}],"functionName":{"name":"shl","nativeSrc":"12836:3:58","nodeType":"YulIdentifier","src":"12836:3:58"},"nativeSrc":"12836:16:58","nodeType":"YulFunctionCall","src":"12836:16:58"}],"functionName":{"name":"and","nativeSrc":"12826:3:58","nodeType":"YulIdentifier","src":"12826:3:58"},"nativeSrc":"12826:27:58","nodeType":"YulFunctionCall","src":"12826:27:58"},"variableNames":[{"name":"left","nativeSrc":"12818:4:58","nodeType":"YulIdentifier","src":"12818:4:58"}]},{"nativeSrc":"12866:36:58","nodeType":"YulAssignment","src":"12866:36:58","value":{"arguments":[{"name":"right","nativeSrc":"12879:5:58","nodeType":"YulIdentifier","src":"12879:5:58"},{"arguments":[{"kind":"number","nativeSrc":"12890:2:58","nodeType":"YulLiteral","src":"12890:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"12898:1:58","nodeType":"YulLiteral","src":"12898:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12894:3:58","nodeType":"YulIdentifier","src":"12894:3:58"},"nativeSrc":"12894:6:58","nodeType":"YulFunctionCall","src":"12894:6:58"}],"functionName":{"name":"shl","nativeSrc":"12886:3:58","nodeType":"YulIdentifier","src":"12886:3:58"},"nativeSrc":"12886:15:58","nodeType":"YulFunctionCall","src":"12886:15:58"}],"functionName":{"name":"and","nativeSrc":"12875:3:58","nodeType":"YulIdentifier","src":"12875:3:58"},"nativeSrc":"12875:27:58","nodeType":"YulFunctionCall","src":"12875:27:58"},"variableNames":[{"name":"right","nativeSrc":"12866:5:58","nodeType":"YulIdentifier","src":"12866:5:58"}]},{"nativeSrc":"12915:34:58","nodeType":"YulAssignment","src":"12915:34:58","value":{"arguments":[{"name":"left","nativeSrc":"12928:4:58","nodeType":"YulIdentifier","src":"12928:4:58"},{"arguments":[{"kind":"number","nativeSrc":"12938:2:58","nodeType":"YulLiteral","src":"12938:2:58","type":"","value":"96"},{"name":"right","nativeSrc":"12942:5:58","nodeType":"YulIdentifier","src":"12942:5:58"}],"functionName":{"name":"shr","nativeSrc":"12934:3:58","nodeType":"YulIdentifier","src":"12934:3:58"},"nativeSrc":"12934:14:58","nodeType":"YulFunctionCall","src":"12934:14:58"}],"functionName":{"name":"or","nativeSrc":"12925:2:58","nodeType":"YulIdentifier","src":"12925:2:58"},"nativeSrc":"12925:24:58","nodeType":"YulFunctionCall","src":"12925:24:58"},"variableNames":[{"name":"result","nativeSrc":"12915:6:58","nodeType":"YulIdentifier","src":"12915:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13166,"isOffset":false,"isSlot":false,"src":"12818:4:58","valueSize":1},{"declaration":13166,"isOffset":false,"isSlot":false,"src":"12830:4:58","valueSize":1},{"declaration":13166,"isOffset":false,"isSlot":false,"src":"12928:4:58","valueSize":1},{"declaration":13171,"isOffset":false,"isSlot":false,"src":"12915:6:58","valueSize":1},{"declaration":13168,"isOffset":false,"isSlot":false,"src":"12866:5:58","valueSize":1},{"declaration":13168,"isOffset":false,"isSlot":false,"src":"12879:5:58","valueSize":1},{"declaration":13168,"isOffset":false,"isSlot":false,"src":"12942:5:58","valueSize":1}],"flags":["memory-safe"],"id":13173,"nodeType":"InlineAssembly","src":"12779:180:58"}]},"id":13175,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_20","nameLocation":"12690:10:58","nodeType":"FunctionDefinition","parameters":{"id":13169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13166,"mutability":"mutable","name":"left","nameLocation":"12709:4:58","nodeType":"VariableDeclaration","scope":13175,"src":"12701:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13165,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12701:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13168,"mutability":"mutable","name":"right","nameLocation":"12723:5:58","nodeType":"VariableDeclaration","scope":13175,"src":"12715:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13167,"name":"bytes20","nodeType":"ElementaryTypeName","src":"12715:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"12700:29:58"},"returnParameters":{"id":13172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13171,"mutability":"mutable","name":"result","nameLocation":"12761:6:58","nodeType":"VariableDeclaration","scope":13175,"src":"12753:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13170,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12753:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12752:16:58"},"scope":16305,"src":"12681:284:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13185,"nodeType":"Block","src":"13057:198:58","statements":[{"AST":{"nativeSrc":"13092:157:58","nodeType":"YulBlock","src":"13092:157:58","statements":[{"nativeSrc":"13106:35:58","nodeType":"YulAssignment","src":"13106:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13118:4:58","nodeType":"YulIdentifier","src":"13118:4:58"},{"arguments":[{"kind":"number","nativeSrc":"13128:3:58","nodeType":"YulLiteral","src":"13128:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"13137:1:58","nodeType":"YulLiteral","src":"13137:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13133:3:58","nodeType":"YulIdentifier","src":"13133:3:58"},"nativeSrc":"13133:6:58","nodeType":"YulFunctionCall","src":"13133:6:58"}],"functionName":{"name":"shl","nativeSrc":"13124:3:58","nodeType":"YulIdentifier","src":"13124:3:58"},"nativeSrc":"13124:16:58","nodeType":"YulFunctionCall","src":"13124:16:58"}],"functionName":{"name":"and","nativeSrc":"13114:3:58","nodeType":"YulIdentifier","src":"13114:3:58"},"nativeSrc":"13114:27:58","nodeType":"YulFunctionCall","src":"13114:27:58"},"variableNames":[{"name":"left","nativeSrc":"13106:4:58","nodeType":"YulIdentifier","src":"13106:4:58"}]},{"nativeSrc":"13154:37:58","nodeType":"YulAssignment","src":"13154:37:58","value":{"arguments":[{"name":"right","nativeSrc":"13167:5:58","nodeType":"YulIdentifier","src":"13167:5:58"},{"arguments":[{"kind":"number","nativeSrc":"13178:3:58","nodeType":"YulLiteral","src":"13178:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"13187:1:58","nodeType":"YulLiteral","src":"13187:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13183:3:58","nodeType":"YulIdentifier","src":"13183:3:58"},"nativeSrc":"13183:6:58","nodeType":"YulFunctionCall","src":"13183:6:58"}],"functionName":{"name":"shl","nativeSrc":"13174:3:58","nodeType":"YulIdentifier","src":"13174:3:58"},"nativeSrc":"13174:16:58","nodeType":"YulFunctionCall","src":"13174:16:58"}],"functionName":{"name":"and","nativeSrc":"13163:3:58","nodeType":"YulIdentifier","src":"13163:3:58"},"nativeSrc":"13163:28:58","nodeType":"YulFunctionCall","src":"13163:28:58"},"variableNames":[{"name":"right","nativeSrc":"13154:5:58","nodeType":"YulIdentifier","src":"13154:5:58"}]},{"nativeSrc":"13204:35:58","nodeType":"YulAssignment","src":"13204:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13217:4:58","nodeType":"YulIdentifier","src":"13217:4:58"},{"arguments":[{"kind":"number","nativeSrc":"13227:3:58","nodeType":"YulLiteral","src":"13227:3:58","type":"","value":"128"},{"name":"right","nativeSrc":"13232:5:58","nodeType":"YulIdentifier","src":"13232:5:58"}],"functionName":{"name":"shr","nativeSrc":"13223:3:58","nodeType":"YulIdentifier","src":"13223:3:58"},"nativeSrc":"13223:15:58","nodeType":"YulFunctionCall","src":"13223:15:58"}],"functionName":{"name":"or","nativeSrc":"13214:2:58","nodeType":"YulIdentifier","src":"13214:2:58"},"nativeSrc":"13214:25:58","nodeType":"YulFunctionCall","src":"13214:25:58"},"variableNames":[{"name":"result","nativeSrc":"13204:6:58","nodeType":"YulIdentifier","src":"13204:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13177,"isOffset":false,"isSlot":false,"src":"13106:4:58","valueSize":1},{"declaration":13177,"isOffset":false,"isSlot":false,"src":"13118:4:58","valueSize":1},{"declaration":13177,"isOffset":false,"isSlot":false,"src":"13217:4:58","valueSize":1},{"declaration":13182,"isOffset":false,"isSlot":false,"src":"13204:6:58","valueSize":1},{"declaration":13179,"isOffset":false,"isSlot":false,"src":"13154:5:58","valueSize":1},{"declaration":13179,"isOffset":false,"isSlot":false,"src":"13167:5:58","valueSize":1},{"declaration":13179,"isOffset":false,"isSlot":false,"src":"13232:5:58","valueSize":1}],"flags":["memory-safe"],"id":13184,"nodeType":"InlineAssembly","src":"13067:182:58"}]},"id":13186,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_4","nameLocation":"12980:9:58","nodeType":"FunctionDefinition","parameters":{"id":13180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13177,"mutability":"mutable","name":"left","nameLocation":"12998:4:58","nodeType":"VariableDeclaration","scope":13186,"src":"12990:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13176,"name":"bytes16","nodeType":"ElementaryTypeName","src":"12990:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13179,"mutability":"mutable","name":"right","nameLocation":"13011:5:58","nodeType":"VariableDeclaration","scope":13186,"src":"13004:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13178,"name":"bytes4","nodeType":"ElementaryTypeName","src":"13004:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"12989:28:58"},"returnParameters":{"id":13183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13182,"mutability":"mutable","name":"result","nameLocation":"13049:6:58","nodeType":"VariableDeclaration","scope":13186,"src":"13041:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13181,"name":"bytes20","nodeType":"ElementaryTypeName","src":"13041:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"13040:16:58"},"scope":16305,"src":"12971:284:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13196,"nodeType":"Block","src":"13347:198:58","statements":[{"AST":{"nativeSrc":"13382:157:58","nodeType":"YulBlock","src":"13382:157:58","statements":[{"nativeSrc":"13396:35:58","nodeType":"YulAssignment","src":"13396:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13408:4:58","nodeType":"YulIdentifier","src":"13408:4:58"},{"arguments":[{"kind":"number","nativeSrc":"13418:3:58","nodeType":"YulLiteral","src":"13418:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"13427:1:58","nodeType":"YulLiteral","src":"13427:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13423:3:58","nodeType":"YulIdentifier","src":"13423:3:58"},"nativeSrc":"13423:6:58","nodeType":"YulFunctionCall","src":"13423:6:58"}],"functionName":{"name":"shl","nativeSrc":"13414:3:58","nodeType":"YulIdentifier","src":"13414:3:58"},"nativeSrc":"13414:16:58","nodeType":"YulFunctionCall","src":"13414:16:58"}],"functionName":{"name":"and","nativeSrc":"13404:3:58","nodeType":"YulIdentifier","src":"13404:3:58"},"nativeSrc":"13404:27:58","nodeType":"YulFunctionCall","src":"13404:27:58"},"variableNames":[{"name":"left","nativeSrc":"13396:4:58","nodeType":"YulIdentifier","src":"13396:4:58"}]},{"nativeSrc":"13444:37:58","nodeType":"YulAssignment","src":"13444:37:58","value":{"arguments":[{"name":"right","nativeSrc":"13457:5:58","nodeType":"YulIdentifier","src":"13457:5:58"},{"arguments":[{"kind":"number","nativeSrc":"13468:3:58","nodeType":"YulLiteral","src":"13468:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"13477:1:58","nodeType":"YulLiteral","src":"13477:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13473:3:58","nodeType":"YulIdentifier","src":"13473:3:58"},"nativeSrc":"13473:6:58","nodeType":"YulFunctionCall","src":"13473:6:58"}],"functionName":{"name":"shl","nativeSrc":"13464:3:58","nodeType":"YulIdentifier","src":"13464:3:58"},"nativeSrc":"13464:16:58","nodeType":"YulFunctionCall","src":"13464:16:58"}],"functionName":{"name":"and","nativeSrc":"13453:3:58","nodeType":"YulIdentifier","src":"13453:3:58"},"nativeSrc":"13453:28:58","nodeType":"YulFunctionCall","src":"13453:28:58"},"variableNames":[{"name":"right","nativeSrc":"13444:5:58","nodeType":"YulIdentifier","src":"13444:5:58"}]},{"nativeSrc":"13494:35:58","nodeType":"YulAssignment","src":"13494:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13507:4:58","nodeType":"YulIdentifier","src":"13507:4:58"},{"arguments":[{"kind":"number","nativeSrc":"13517:3:58","nodeType":"YulLiteral","src":"13517:3:58","type":"","value":"128"},{"name":"right","nativeSrc":"13522:5:58","nodeType":"YulIdentifier","src":"13522:5:58"}],"functionName":{"name":"shr","nativeSrc":"13513:3:58","nodeType":"YulIdentifier","src":"13513:3:58"},"nativeSrc":"13513:15:58","nodeType":"YulFunctionCall","src":"13513:15:58"}],"functionName":{"name":"or","nativeSrc":"13504:2:58","nodeType":"YulIdentifier","src":"13504:2:58"},"nativeSrc":"13504:25:58","nodeType":"YulFunctionCall","src":"13504:25:58"},"variableNames":[{"name":"result","nativeSrc":"13494:6:58","nodeType":"YulIdentifier","src":"13494:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13188,"isOffset":false,"isSlot":false,"src":"13396:4:58","valueSize":1},{"declaration":13188,"isOffset":false,"isSlot":false,"src":"13408:4:58","valueSize":1},{"declaration":13188,"isOffset":false,"isSlot":false,"src":"13507:4:58","valueSize":1},{"declaration":13193,"isOffset":false,"isSlot":false,"src":"13494:6:58","valueSize":1},{"declaration":13190,"isOffset":false,"isSlot":false,"src":"13444:5:58","valueSize":1},{"declaration":13190,"isOffset":false,"isSlot":false,"src":"13457:5:58","valueSize":1},{"declaration":13190,"isOffset":false,"isSlot":false,"src":"13522:5:58","valueSize":1}],"flags":["memory-safe"],"id":13195,"nodeType":"InlineAssembly","src":"13357:182:58"}]},"id":13197,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_6","nameLocation":"13270:9:58","nodeType":"FunctionDefinition","parameters":{"id":13191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13188,"mutability":"mutable","name":"left","nameLocation":"13288:4:58","nodeType":"VariableDeclaration","scope":13197,"src":"13280:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13187,"name":"bytes16","nodeType":"ElementaryTypeName","src":"13280:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13190,"mutability":"mutable","name":"right","nameLocation":"13301:5:58","nodeType":"VariableDeclaration","scope":13197,"src":"13294:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13189,"name":"bytes6","nodeType":"ElementaryTypeName","src":"13294:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"13279:28:58"},"returnParameters":{"id":13194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13193,"mutability":"mutable","name":"result","nameLocation":"13339:6:58","nodeType":"VariableDeclaration","scope":13197,"src":"13331:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13192,"name":"bytes22","nodeType":"ElementaryTypeName","src":"13331:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"13330:16:58"},"scope":16305,"src":"13261:284:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13207,"nodeType":"Block","src":"13637:198:58","statements":[{"AST":{"nativeSrc":"13672:157:58","nodeType":"YulBlock","src":"13672:157:58","statements":[{"nativeSrc":"13686:35:58","nodeType":"YulAssignment","src":"13686:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13698:4:58","nodeType":"YulIdentifier","src":"13698:4:58"},{"arguments":[{"kind":"number","nativeSrc":"13708:3:58","nodeType":"YulLiteral","src":"13708:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"13717:1:58","nodeType":"YulLiteral","src":"13717:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13713:3:58","nodeType":"YulIdentifier","src":"13713:3:58"},"nativeSrc":"13713:6:58","nodeType":"YulFunctionCall","src":"13713:6:58"}],"functionName":{"name":"shl","nativeSrc":"13704:3:58","nodeType":"YulIdentifier","src":"13704:3:58"},"nativeSrc":"13704:16:58","nodeType":"YulFunctionCall","src":"13704:16:58"}],"functionName":{"name":"and","nativeSrc":"13694:3:58","nodeType":"YulIdentifier","src":"13694:3:58"},"nativeSrc":"13694:27:58","nodeType":"YulFunctionCall","src":"13694:27:58"},"variableNames":[{"name":"left","nativeSrc":"13686:4:58","nodeType":"YulIdentifier","src":"13686:4:58"}]},{"nativeSrc":"13734:37:58","nodeType":"YulAssignment","src":"13734:37:58","value":{"arguments":[{"name":"right","nativeSrc":"13747:5:58","nodeType":"YulIdentifier","src":"13747:5:58"},{"arguments":[{"kind":"number","nativeSrc":"13758:3:58","nodeType":"YulLiteral","src":"13758:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"13767:1:58","nodeType":"YulLiteral","src":"13767:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13763:3:58","nodeType":"YulIdentifier","src":"13763:3:58"},"nativeSrc":"13763:6:58","nodeType":"YulFunctionCall","src":"13763:6:58"}],"functionName":{"name":"shl","nativeSrc":"13754:3:58","nodeType":"YulIdentifier","src":"13754:3:58"},"nativeSrc":"13754:16:58","nodeType":"YulFunctionCall","src":"13754:16:58"}],"functionName":{"name":"and","nativeSrc":"13743:3:58","nodeType":"YulIdentifier","src":"13743:3:58"},"nativeSrc":"13743:28:58","nodeType":"YulFunctionCall","src":"13743:28:58"},"variableNames":[{"name":"right","nativeSrc":"13734:5:58","nodeType":"YulIdentifier","src":"13734:5:58"}]},{"nativeSrc":"13784:35:58","nodeType":"YulAssignment","src":"13784:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13797:4:58","nodeType":"YulIdentifier","src":"13797:4:58"},{"arguments":[{"kind":"number","nativeSrc":"13807:3:58","nodeType":"YulLiteral","src":"13807:3:58","type":"","value":"128"},{"name":"right","nativeSrc":"13812:5:58","nodeType":"YulIdentifier","src":"13812:5:58"}],"functionName":{"name":"shr","nativeSrc":"13803:3:58","nodeType":"YulIdentifier","src":"13803:3:58"},"nativeSrc":"13803:15:58","nodeType":"YulFunctionCall","src":"13803:15:58"}],"functionName":{"name":"or","nativeSrc":"13794:2:58","nodeType":"YulIdentifier","src":"13794:2:58"},"nativeSrc":"13794:25:58","nodeType":"YulFunctionCall","src":"13794:25:58"},"variableNames":[{"name":"result","nativeSrc":"13784:6:58","nodeType":"YulIdentifier","src":"13784:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13199,"isOffset":false,"isSlot":false,"src":"13686:4:58","valueSize":1},{"declaration":13199,"isOffset":false,"isSlot":false,"src":"13698:4:58","valueSize":1},{"declaration":13199,"isOffset":false,"isSlot":false,"src":"13797:4:58","valueSize":1},{"declaration":13204,"isOffset":false,"isSlot":false,"src":"13784:6:58","valueSize":1},{"declaration":13201,"isOffset":false,"isSlot":false,"src":"13734:5:58","valueSize":1},{"declaration":13201,"isOffset":false,"isSlot":false,"src":"13747:5:58","valueSize":1},{"declaration":13201,"isOffset":false,"isSlot":false,"src":"13812:5:58","valueSize":1}],"flags":["memory-safe"],"id":13206,"nodeType":"InlineAssembly","src":"13647:182:58"}]},"id":13208,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_8","nameLocation":"13560:9:58","nodeType":"FunctionDefinition","parameters":{"id":13202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13199,"mutability":"mutable","name":"left","nameLocation":"13578:4:58","nodeType":"VariableDeclaration","scope":13208,"src":"13570:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13198,"name":"bytes16","nodeType":"ElementaryTypeName","src":"13570:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13201,"mutability":"mutable","name":"right","nameLocation":"13591:5:58","nodeType":"VariableDeclaration","scope":13208,"src":"13584:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13200,"name":"bytes8","nodeType":"ElementaryTypeName","src":"13584:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"13569:28:58"},"returnParameters":{"id":13205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13204,"mutability":"mutable","name":"result","nameLocation":"13629:6:58","nodeType":"VariableDeclaration","scope":13208,"src":"13621:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13203,"name":"bytes24","nodeType":"ElementaryTypeName","src":"13621:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"13620:16:58"},"scope":16305,"src":"13551:284:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13218,"nodeType":"Block","src":"13929:198:58","statements":[{"AST":{"nativeSrc":"13964:157:58","nodeType":"YulBlock","src":"13964:157:58","statements":[{"nativeSrc":"13978:35:58","nodeType":"YulAssignment","src":"13978:35:58","value":{"arguments":[{"name":"left","nativeSrc":"13990:4:58","nodeType":"YulIdentifier","src":"13990:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14000:3:58","nodeType":"YulLiteral","src":"14000:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"14009:1:58","nodeType":"YulLiteral","src":"14009:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14005:3:58","nodeType":"YulIdentifier","src":"14005:3:58"},"nativeSrc":"14005:6:58","nodeType":"YulFunctionCall","src":"14005:6:58"}],"functionName":{"name":"shl","nativeSrc":"13996:3:58","nodeType":"YulIdentifier","src":"13996:3:58"},"nativeSrc":"13996:16:58","nodeType":"YulFunctionCall","src":"13996:16:58"}],"functionName":{"name":"and","nativeSrc":"13986:3:58","nodeType":"YulIdentifier","src":"13986:3:58"},"nativeSrc":"13986:27:58","nodeType":"YulFunctionCall","src":"13986:27:58"},"variableNames":[{"name":"left","nativeSrc":"13978:4:58","nodeType":"YulIdentifier","src":"13978:4:58"}]},{"nativeSrc":"14026:37:58","nodeType":"YulAssignment","src":"14026:37:58","value":{"arguments":[{"name":"right","nativeSrc":"14039:5:58","nodeType":"YulIdentifier","src":"14039:5:58"},{"arguments":[{"kind":"number","nativeSrc":"14050:3:58","nodeType":"YulLiteral","src":"14050:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"14059:1:58","nodeType":"YulLiteral","src":"14059:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14055:3:58","nodeType":"YulIdentifier","src":"14055:3:58"},"nativeSrc":"14055:6:58","nodeType":"YulFunctionCall","src":"14055:6:58"}],"functionName":{"name":"shl","nativeSrc":"14046:3:58","nodeType":"YulIdentifier","src":"14046:3:58"},"nativeSrc":"14046:16:58","nodeType":"YulFunctionCall","src":"14046:16:58"}],"functionName":{"name":"and","nativeSrc":"14035:3:58","nodeType":"YulIdentifier","src":"14035:3:58"},"nativeSrc":"14035:28:58","nodeType":"YulFunctionCall","src":"14035:28:58"},"variableNames":[{"name":"right","nativeSrc":"14026:5:58","nodeType":"YulIdentifier","src":"14026:5:58"}]},{"nativeSrc":"14076:35:58","nodeType":"YulAssignment","src":"14076:35:58","value":{"arguments":[{"name":"left","nativeSrc":"14089:4:58","nodeType":"YulIdentifier","src":"14089:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14099:3:58","nodeType":"YulLiteral","src":"14099:3:58","type":"","value":"128"},{"name":"right","nativeSrc":"14104:5:58","nodeType":"YulIdentifier","src":"14104:5:58"}],"functionName":{"name":"shr","nativeSrc":"14095:3:58","nodeType":"YulIdentifier","src":"14095:3:58"},"nativeSrc":"14095:15:58","nodeType":"YulFunctionCall","src":"14095:15:58"}],"functionName":{"name":"or","nativeSrc":"14086:2:58","nodeType":"YulIdentifier","src":"14086:2:58"},"nativeSrc":"14086:25:58","nodeType":"YulFunctionCall","src":"14086:25:58"},"variableNames":[{"name":"result","nativeSrc":"14076:6:58","nodeType":"YulIdentifier","src":"14076:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13210,"isOffset":false,"isSlot":false,"src":"13978:4:58","valueSize":1},{"declaration":13210,"isOffset":false,"isSlot":false,"src":"13990:4:58","valueSize":1},{"declaration":13210,"isOffset":false,"isSlot":false,"src":"14089:4:58","valueSize":1},{"declaration":13215,"isOffset":false,"isSlot":false,"src":"14076:6:58","valueSize":1},{"declaration":13212,"isOffset":false,"isSlot":false,"src":"14026:5:58","valueSize":1},{"declaration":13212,"isOffset":false,"isSlot":false,"src":"14039:5:58","valueSize":1},{"declaration":13212,"isOffset":false,"isSlot":false,"src":"14104:5:58","valueSize":1}],"flags":["memory-safe"],"id":13217,"nodeType":"InlineAssembly","src":"13939:182:58"}]},"id":13219,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_12","nameLocation":"13850:10:58","nodeType":"FunctionDefinition","parameters":{"id":13213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13210,"mutability":"mutable","name":"left","nameLocation":"13869:4:58","nodeType":"VariableDeclaration","scope":13219,"src":"13861:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13209,"name":"bytes16","nodeType":"ElementaryTypeName","src":"13861:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13212,"mutability":"mutable","name":"right","nameLocation":"13883:5:58","nodeType":"VariableDeclaration","scope":13219,"src":"13875:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13211,"name":"bytes12","nodeType":"ElementaryTypeName","src":"13875:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"13860:29:58"},"returnParameters":{"id":13216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13215,"mutability":"mutable","name":"result","nameLocation":"13921:6:58","nodeType":"VariableDeclaration","scope":13219,"src":"13913:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13214,"name":"bytes28","nodeType":"ElementaryTypeName","src":"13913:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"13912:16:58"},"scope":16305,"src":"13841:286:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13229,"nodeType":"Block","src":"14221:198:58","statements":[{"AST":{"nativeSrc":"14256:157:58","nodeType":"YulBlock","src":"14256:157:58","statements":[{"nativeSrc":"14270:35:58","nodeType":"YulAssignment","src":"14270:35:58","value":{"arguments":[{"name":"left","nativeSrc":"14282:4:58","nodeType":"YulIdentifier","src":"14282:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14292:3:58","nodeType":"YulLiteral","src":"14292:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"14301:1:58","nodeType":"YulLiteral","src":"14301:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14297:3:58","nodeType":"YulIdentifier","src":"14297:3:58"},"nativeSrc":"14297:6:58","nodeType":"YulFunctionCall","src":"14297:6:58"}],"functionName":{"name":"shl","nativeSrc":"14288:3:58","nodeType":"YulIdentifier","src":"14288:3:58"},"nativeSrc":"14288:16:58","nodeType":"YulFunctionCall","src":"14288:16:58"}],"functionName":{"name":"and","nativeSrc":"14278:3:58","nodeType":"YulIdentifier","src":"14278:3:58"},"nativeSrc":"14278:27:58","nodeType":"YulFunctionCall","src":"14278:27:58"},"variableNames":[{"name":"left","nativeSrc":"14270:4:58","nodeType":"YulIdentifier","src":"14270:4:58"}]},{"nativeSrc":"14318:37:58","nodeType":"YulAssignment","src":"14318:37:58","value":{"arguments":[{"name":"right","nativeSrc":"14331:5:58","nodeType":"YulIdentifier","src":"14331:5:58"},{"arguments":[{"kind":"number","nativeSrc":"14342:3:58","nodeType":"YulLiteral","src":"14342:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"14351:1:58","nodeType":"YulLiteral","src":"14351:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14347:3:58","nodeType":"YulIdentifier","src":"14347:3:58"},"nativeSrc":"14347:6:58","nodeType":"YulFunctionCall","src":"14347:6:58"}],"functionName":{"name":"shl","nativeSrc":"14338:3:58","nodeType":"YulIdentifier","src":"14338:3:58"},"nativeSrc":"14338:16:58","nodeType":"YulFunctionCall","src":"14338:16:58"}],"functionName":{"name":"and","nativeSrc":"14327:3:58","nodeType":"YulIdentifier","src":"14327:3:58"},"nativeSrc":"14327:28:58","nodeType":"YulFunctionCall","src":"14327:28:58"},"variableNames":[{"name":"right","nativeSrc":"14318:5:58","nodeType":"YulIdentifier","src":"14318:5:58"}]},{"nativeSrc":"14368:35:58","nodeType":"YulAssignment","src":"14368:35:58","value":{"arguments":[{"name":"left","nativeSrc":"14381:4:58","nodeType":"YulIdentifier","src":"14381:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14391:3:58","nodeType":"YulLiteral","src":"14391:3:58","type":"","value":"128"},{"name":"right","nativeSrc":"14396:5:58","nodeType":"YulIdentifier","src":"14396:5:58"}],"functionName":{"name":"shr","nativeSrc":"14387:3:58","nodeType":"YulIdentifier","src":"14387:3:58"},"nativeSrc":"14387:15:58","nodeType":"YulFunctionCall","src":"14387:15:58"}],"functionName":{"name":"or","nativeSrc":"14378:2:58","nodeType":"YulIdentifier","src":"14378:2:58"},"nativeSrc":"14378:25:58","nodeType":"YulFunctionCall","src":"14378:25:58"},"variableNames":[{"name":"result","nativeSrc":"14368:6:58","nodeType":"YulIdentifier","src":"14368:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13221,"isOffset":false,"isSlot":false,"src":"14270:4:58","valueSize":1},{"declaration":13221,"isOffset":false,"isSlot":false,"src":"14282:4:58","valueSize":1},{"declaration":13221,"isOffset":false,"isSlot":false,"src":"14381:4:58","valueSize":1},{"declaration":13226,"isOffset":false,"isSlot":false,"src":"14368:6:58","valueSize":1},{"declaration":13223,"isOffset":false,"isSlot":false,"src":"14318:5:58","valueSize":1},{"declaration":13223,"isOffset":false,"isSlot":false,"src":"14331:5:58","valueSize":1},{"declaration":13223,"isOffset":false,"isSlot":false,"src":"14396:5:58","valueSize":1}],"flags":["memory-safe"],"id":13228,"nodeType":"InlineAssembly","src":"14231:182:58"}]},"id":13230,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_16","nameLocation":"14142:10:58","nodeType":"FunctionDefinition","parameters":{"id":13224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13221,"mutability":"mutable","name":"left","nameLocation":"14161:4:58","nodeType":"VariableDeclaration","scope":13230,"src":"14153:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13220,"name":"bytes16","nodeType":"ElementaryTypeName","src":"14153:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13223,"mutability":"mutable","name":"right","nameLocation":"14175:5:58","nodeType":"VariableDeclaration","scope":13230,"src":"14167:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13222,"name":"bytes16","nodeType":"ElementaryTypeName","src":"14167:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"14152:29:58"},"returnParameters":{"id":13227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13226,"mutability":"mutable","name":"result","nameLocation":"14213:6:58","nodeType":"VariableDeclaration","scope":13230,"src":"14205:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13225,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14205:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14204:16:58"},"scope":16305,"src":"14133:286:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13240,"nodeType":"Block","src":"14511:197:58","statements":[{"AST":{"nativeSrc":"14546:156:58","nodeType":"YulBlock","src":"14546:156:58","statements":[{"nativeSrc":"14560:34:58","nodeType":"YulAssignment","src":"14560:34:58","value":{"arguments":[{"name":"left","nativeSrc":"14572:4:58","nodeType":"YulIdentifier","src":"14572:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14582:2:58","nodeType":"YulLiteral","src":"14582:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"14590:1:58","nodeType":"YulLiteral","src":"14590:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14586:3:58","nodeType":"YulIdentifier","src":"14586:3:58"},"nativeSrc":"14586:6:58","nodeType":"YulFunctionCall","src":"14586:6:58"}],"functionName":{"name":"shl","nativeSrc":"14578:3:58","nodeType":"YulIdentifier","src":"14578:3:58"},"nativeSrc":"14578:15:58","nodeType":"YulFunctionCall","src":"14578:15:58"}],"functionName":{"name":"and","nativeSrc":"14568:3:58","nodeType":"YulIdentifier","src":"14568:3:58"},"nativeSrc":"14568:26:58","nodeType":"YulFunctionCall","src":"14568:26:58"},"variableNames":[{"name":"left","nativeSrc":"14560:4:58","nodeType":"YulIdentifier","src":"14560:4:58"}]},{"nativeSrc":"14607:37:58","nodeType":"YulAssignment","src":"14607:37:58","value":{"arguments":[{"name":"right","nativeSrc":"14620:5:58","nodeType":"YulIdentifier","src":"14620:5:58"},{"arguments":[{"kind":"number","nativeSrc":"14631:3:58","nodeType":"YulLiteral","src":"14631:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"14640:1:58","nodeType":"YulLiteral","src":"14640:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14636:3:58","nodeType":"YulIdentifier","src":"14636:3:58"},"nativeSrc":"14636:6:58","nodeType":"YulFunctionCall","src":"14636:6:58"}],"functionName":{"name":"shl","nativeSrc":"14627:3:58","nodeType":"YulIdentifier","src":"14627:3:58"},"nativeSrc":"14627:16:58","nodeType":"YulFunctionCall","src":"14627:16:58"}],"functionName":{"name":"and","nativeSrc":"14616:3:58","nodeType":"YulIdentifier","src":"14616:3:58"},"nativeSrc":"14616:28:58","nodeType":"YulFunctionCall","src":"14616:28:58"},"variableNames":[{"name":"right","nativeSrc":"14607:5:58","nodeType":"YulIdentifier","src":"14607:5:58"}]},{"nativeSrc":"14657:35:58","nodeType":"YulAssignment","src":"14657:35:58","value":{"arguments":[{"name":"left","nativeSrc":"14670:4:58","nodeType":"YulIdentifier","src":"14670:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14680:3:58","nodeType":"YulLiteral","src":"14680:3:58","type":"","value":"160"},{"name":"right","nativeSrc":"14685:5:58","nodeType":"YulIdentifier","src":"14685:5:58"}],"functionName":{"name":"shr","nativeSrc":"14676:3:58","nodeType":"YulIdentifier","src":"14676:3:58"},"nativeSrc":"14676:15:58","nodeType":"YulFunctionCall","src":"14676:15:58"}],"functionName":{"name":"or","nativeSrc":"14667:2:58","nodeType":"YulIdentifier","src":"14667:2:58"},"nativeSrc":"14667:25:58","nodeType":"YulFunctionCall","src":"14667:25:58"},"variableNames":[{"name":"result","nativeSrc":"14657:6:58","nodeType":"YulIdentifier","src":"14657:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13232,"isOffset":false,"isSlot":false,"src":"14560:4:58","valueSize":1},{"declaration":13232,"isOffset":false,"isSlot":false,"src":"14572:4:58","valueSize":1},{"declaration":13232,"isOffset":false,"isSlot":false,"src":"14670:4:58","valueSize":1},{"declaration":13237,"isOffset":false,"isSlot":false,"src":"14657:6:58","valueSize":1},{"declaration":13234,"isOffset":false,"isSlot":false,"src":"14607:5:58","valueSize":1},{"declaration":13234,"isOffset":false,"isSlot":false,"src":"14620:5:58","valueSize":1},{"declaration":13234,"isOffset":false,"isSlot":false,"src":"14685:5:58","valueSize":1}],"flags":["memory-safe"],"id":13239,"nodeType":"InlineAssembly","src":"14521:181:58"}]},"id":13241,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_2","nameLocation":"14434:9:58","nodeType":"FunctionDefinition","parameters":{"id":13235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13232,"mutability":"mutable","name":"left","nameLocation":"14452:4:58","nodeType":"VariableDeclaration","scope":13241,"src":"14444:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13231,"name":"bytes20","nodeType":"ElementaryTypeName","src":"14444:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":13234,"mutability":"mutable","name":"right","nameLocation":"14465:5:58","nodeType":"VariableDeclaration","scope":13241,"src":"14458:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13233,"name":"bytes2","nodeType":"ElementaryTypeName","src":"14458:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"14443:28:58"},"returnParameters":{"id":13238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13237,"mutability":"mutable","name":"result","nameLocation":"14503:6:58","nodeType":"VariableDeclaration","scope":13241,"src":"14495:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13236,"name":"bytes22","nodeType":"ElementaryTypeName","src":"14495:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"14494:16:58"},"scope":16305,"src":"14425:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13251,"nodeType":"Block","src":"14800:197:58","statements":[{"AST":{"nativeSrc":"14835:156:58","nodeType":"YulBlock","src":"14835:156:58","statements":[{"nativeSrc":"14849:34:58","nodeType":"YulAssignment","src":"14849:34:58","value":{"arguments":[{"name":"left","nativeSrc":"14861:4:58","nodeType":"YulIdentifier","src":"14861:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14871:2:58","nodeType":"YulLiteral","src":"14871:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"14879:1:58","nodeType":"YulLiteral","src":"14879:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14875:3:58","nodeType":"YulIdentifier","src":"14875:3:58"},"nativeSrc":"14875:6:58","nodeType":"YulFunctionCall","src":"14875:6:58"}],"functionName":{"name":"shl","nativeSrc":"14867:3:58","nodeType":"YulIdentifier","src":"14867:3:58"},"nativeSrc":"14867:15:58","nodeType":"YulFunctionCall","src":"14867:15:58"}],"functionName":{"name":"and","nativeSrc":"14857:3:58","nodeType":"YulIdentifier","src":"14857:3:58"},"nativeSrc":"14857:26:58","nodeType":"YulFunctionCall","src":"14857:26:58"},"variableNames":[{"name":"left","nativeSrc":"14849:4:58","nodeType":"YulIdentifier","src":"14849:4:58"}]},{"nativeSrc":"14896:37:58","nodeType":"YulAssignment","src":"14896:37:58","value":{"arguments":[{"name":"right","nativeSrc":"14909:5:58","nodeType":"YulIdentifier","src":"14909:5:58"},{"arguments":[{"kind":"number","nativeSrc":"14920:3:58","nodeType":"YulLiteral","src":"14920:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"14929:1:58","nodeType":"YulLiteral","src":"14929:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14925:3:58","nodeType":"YulIdentifier","src":"14925:3:58"},"nativeSrc":"14925:6:58","nodeType":"YulFunctionCall","src":"14925:6:58"}],"functionName":{"name":"shl","nativeSrc":"14916:3:58","nodeType":"YulIdentifier","src":"14916:3:58"},"nativeSrc":"14916:16:58","nodeType":"YulFunctionCall","src":"14916:16:58"}],"functionName":{"name":"and","nativeSrc":"14905:3:58","nodeType":"YulIdentifier","src":"14905:3:58"},"nativeSrc":"14905:28:58","nodeType":"YulFunctionCall","src":"14905:28:58"},"variableNames":[{"name":"right","nativeSrc":"14896:5:58","nodeType":"YulIdentifier","src":"14896:5:58"}]},{"nativeSrc":"14946:35:58","nodeType":"YulAssignment","src":"14946:35:58","value":{"arguments":[{"name":"left","nativeSrc":"14959:4:58","nodeType":"YulIdentifier","src":"14959:4:58"},{"arguments":[{"kind":"number","nativeSrc":"14969:3:58","nodeType":"YulLiteral","src":"14969:3:58","type":"","value":"160"},{"name":"right","nativeSrc":"14974:5:58","nodeType":"YulIdentifier","src":"14974:5:58"}],"functionName":{"name":"shr","nativeSrc":"14965:3:58","nodeType":"YulIdentifier","src":"14965:3:58"},"nativeSrc":"14965:15:58","nodeType":"YulFunctionCall","src":"14965:15:58"}],"functionName":{"name":"or","nativeSrc":"14956:2:58","nodeType":"YulIdentifier","src":"14956:2:58"},"nativeSrc":"14956:25:58","nodeType":"YulFunctionCall","src":"14956:25:58"},"variableNames":[{"name":"result","nativeSrc":"14946:6:58","nodeType":"YulIdentifier","src":"14946:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13243,"isOffset":false,"isSlot":false,"src":"14849:4:58","valueSize":1},{"declaration":13243,"isOffset":false,"isSlot":false,"src":"14861:4:58","valueSize":1},{"declaration":13243,"isOffset":false,"isSlot":false,"src":"14959:4:58","valueSize":1},{"declaration":13248,"isOffset":false,"isSlot":false,"src":"14946:6:58","valueSize":1},{"declaration":13245,"isOffset":false,"isSlot":false,"src":"14896:5:58","valueSize":1},{"declaration":13245,"isOffset":false,"isSlot":false,"src":"14909:5:58","valueSize":1},{"declaration":13245,"isOffset":false,"isSlot":false,"src":"14974:5:58","valueSize":1}],"flags":["memory-safe"],"id":13250,"nodeType":"InlineAssembly","src":"14810:181:58"}]},"id":13252,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_4","nameLocation":"14723:9:58","nodeType":"FunctionDefinition","parameters":{"id":13246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13243,"mutability":"mutable","name":"left","nameLocation":"14741:4:58","nodeType":"VariableDeclaration","scope":13252,"src":"14733:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13242,"name":"bytes20","nodeType":"ElementaryTypeName","src":"14733:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":13245,"mutability":"mutable","name":"right","nameLocation":"14754:5:58","nodeType":"VariableDeclaration","scope":13252,"src":"14747:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13244,"name":"bytes4","nodeType":"ElementaryTypeName","src":"14747:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"14732:28:58"},"returnParameters":{"id":13249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13248,"mutability":"mutable","name":"result","nameLocation":"14792:6:58","nodeType":"VariableDeclaration","scope":13252,"src":"14784:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13247,"name":"bytes24","nodeType":"ElementaryTypeName","src":"14784:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"14783:16:58"},"scope":16305,"src":"14714:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13262,"nodeType":"Block","src":"15089:197:58","statements":[{"AST":{"nativeSrc":"15124:156:58","nodeType":"YulBlock","src":"15124:156:58","statements":[{"nativeSrc":"15138:34:58","nodeType":"YulAssignment","src":"15138:34:58","value":{"arguments":[{"name":"left","nativeSrc":"15150:4:58","nodeType":"YulIdentifier","src":"15150:4:58"},{"arguments":[{"kind":"number","nativeSrc":"15160:2:58","nodeType":"YulLiteral","src":"15160:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"15168:1:58","nodeType":"YulLiteral","src":"15168:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15164:3:58","nodeType":"YulIdentifier","src":"15164:3:58"},"nativeSrc":"15164:6:58","nodeType":"YulFunctionCall","src":"15164:6:58"}],"functionName":{"name":"shl","nativeSrc":"15156:3:58","nodeType":"YulIdentifier","src":"15156:3:58"},"nativeSrc":"15156:15:58","nodeType":"YulFunctionCall","src":"15156:15:58"}],"functionName":{"name":"and","nativeSrc":"15146:3:58","nodeType":"YulIdentifier","src":"15146:3:58"},"nativeSrc":"15146:26:58","nodeType":"YulFunctionCall","src":"15146:26:58"},"variableNames":[{"name":"left","nativeSrc":"15138:4:58","nodeType":"YulIdentifier","src":"15138:4:58"}]},{"nativeSrc":"15185:37:58","nodeType":"YulAssignment","src":"15185:37:58","value":{"arguments":[{"name":"right","nativeSrc":"15198:5:58","nodeType":"YulIdentifier","src":"15198:5:58"},{"arguments":[{"kind":"number","nativeSrc":"15209:3:58","nodeType":"YulLiteral","src":"15209:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"15218:1:58","nodeType":"YulLiteral","src":"15218:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15214:3:58","nodeType":"YulIdentifier","src":"15214:3:58"},"nativeSrc":"15214:6:58","nodeType":"YulFunctionCall","src":"15214:6:58"}],"functionName":{"name":"shl","nativeSrc":"15205:3:58","nodeType":"YulIdentifier","src":"15205:3:58"},"nativeSrc":"15205:16:58","nodeType":"YulFunctionCall","src":"15205:16:58"}],"functionName":{"name":"and","nativeSrc":"15194:3:58","nodeType":"YulIdentifier","src":"15194:3:58"},"nativeSrc":"15194:28:58","nodeType":"YulFunctionCall","src":"15194:28:58"},"variableNames":[{"name":"right","nativeSrc":"15185:5:58","nodeType":"YulIdentifier","src":"15185:5:58"}]},{"nativeSrc":"15235:35:58","nodeType":"YulAssignment","src":"15235:35:58","value":{"arguments":[{"name":"left","nativeSrc":"15248:4:58","nodeType":"YulIdentifier","src":"15248:4:58"},{"arguments":[{"kind":"number","nativeSrc":"15258:3:58","nodeType":"YulLiteral","src":"15258:3:58","type":"","value":"160"},{"name":"right","nativeSrc":"15263:5:58","nodeType":"YulIdentifier","src":"15263:5:58"}],"functionName":{"name":"shr","nativeSrc":"15254:3:58","nodeType":"YulIdentifier","src":"15254:3:58"},"nativeSrc":"15254:15:58","nodeType":"YulFunctionCall","src":"15254:15:58"}],"functionName":{"name":"or","nativeSrc":"15245:2:58","nodeType":"YulIdentifier","src":"15245:2:58"},"nativeSrc":"15245:25:58","nodeType":"YulFunctionCall","src":"15245:25:58"},"variableNames":[{"name":"result","nativeSrc":"15235:6:58","nodeType":"YulIdentifier","src":"15235:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13254,"isOffset":false,"isSlot":false,"src":"15138:4:58","valueSize":1},{"declaration":13254,"isOffset":false,"isSlot":false,"src":"15150:4:58","valueSize":1},{"declaration":13254,"isOffset":false,"isSlot":false,"src":"15248:4:58","valueSize":1},{"declaration":13259,"isOffset":false,"isSlot":false,"src":"15235:6:58","valueSize":1},{"declaration":13256,"isOffset":false,"isSlot":false,"src":"15185:5:58","valueSize":1},{"declaration":13256,"isOffset":false,"isSlot":false,"src":"15198:5:58","valueSize":1},{"declaration":13256,"isOffset":false,"isSlot":false,"src":"15263:5:58","valueSize":1}],"flags":["memory-safe"],"id":13261,"nodeType":"InlineAssembly","src":"15099:181:58"}]},"id":13263,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_8","nameLocation":"15012:9:58","nodeType":"FunctionDefinition","parameters":{"id":13257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13254,"mutability":"mutable","name":"left","nameLocation":"15030:4:58","nodeType":"VariableDeclaration","scope":13263,"src":"15022:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13253,"name":"bytes20","nodeType":"ElementaryTypeName","src":"15022:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":13256,"mutability":"mutable","name":"right","nameLocation":"15043:5:58","nodeType":"VariableDeclaration","scope":13263,"src":"15036:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13255,"name":"bytes8","nodeType":"ElementaryTypeName","src":"15036:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"15021:28:58"},"returnParameters":{"id":13260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13259,"mutability":"mutable","name":"result","nameLocation":"15081:6:58","nodeType":"VariableDeclaration","scope":13263,"src":"15073:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13258,"name":"bytes28","nodeType":"ElementaryTypeName","src":"15073:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"15072:16:58"},"scope":16305,"src":"15003:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13273,"nodeType":"Block","src":"15380:197:58","statements":[{"AST":{"nativeSrc":"15415:156:58","nodeType":"YulBlock","src":"15415:156:58","statements":[{"nativeSrc":"15429:34:58","nodeType":"YulAssignment","src":"15429:34:58","value":{"arguments":[{"name":"left","nativeSrc":"15441:4:58","nodeType":"YulIdentifier","src":"15441:4:58"},{"arguments":[{"kind":"number","nativeSrc":"15451:2:58","nodeType":"YulLiteral","src":"15451:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"15459:1:58","nodeType":"YulLiteral","src":"15459:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15455:3:58","nodeType":"YulIdentifier","src":"15455:3:58"},"nativeSrc":"15455:6:58","nodeType":"YulFunctionCall","src":"15455:6:58"}],"functionName":{"name":"shl","nativeSrc":"15447:3:58","nodeType":"YulIdentifier","src":"15447:3:58"},"nativeSrc":"15447:15:58","nodeType":"YulFunctionCall","src":"15447:15:58"}],"functionName":{"name":"and","nativeSrc":"15437:3:58","nodeType":"YulIdentifier","src":"15437:3:58"},"nativeSrc":"15437:26:58","nodeType":"YulFunctionCall","src":"15437:26:58"},"variableNames":[{"name":"left","nativeSrc":"15429:4:58","nodeType":"YulIdentifier","src":"15429:4:58"}]},{"nativeSrc":"15476:37:58","nodeType":"YulAssignment","src":"15476:37:58","value":{"arguments":[{"name":"right","nativeSrc":"15489:5:58","nodeType":"YulIdentifier","src":"15489:5:58"},{"arguments":[{"kind":"number","nativeSrc":"15500:3:58","nodeType":"YulLiteral","src":"15500:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"15509:1:58","nodeType":"YulLiteral","src":"15509:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15505:3:58","nodeType":"YulIdentifier","src":"15505:3:58"},"nativeSrc":"15505:6:58","nodeType":"YulFunctionCall","src":"15505:6:58"}],"functionName":{"name":"shl","nativeSrc":"15496:3:58","nodeType":"YulIdentifier","src":"15496:3:58"},"nativeSrc":"15496:16:58","nodeType":"YulFunctionCall","src":"15496:16:58"}],"functionName":{"name":"and","nativeSrc":"15485:3:58","nodeType":"YulIdentifier","src":"15485:3:58"},"nativeSrc":"15485:28:58","nodeType":"YulFunctionCall","src":"15485:28:58"},"variableNames":[{"name":"right","nativeSrc":"15476:5:58","nodeType":"YulIdentifier","src":"15476:5:58"}]},{"nativeSrc":"15526:35:58","nodeType":"YulAssignment","src":"15526:35:58","value":{"arguments":[{"name":"left","nativeSrc":"15539:4:58","nodeType":"YulIdentifier","src":"15539:4:58"},{"arguments":[{"kind":"number","nativeSrc":"15549:3:58","nodeType":"YulLiteral","src":"15549:3:58","type":"","value":"160"},{"name":"right","nativeSrc":"15554:5:58","nodeType":"YulIdentifier","src":"15554:5:58"}],"functionName":{"name":"shr","nativeSrc":"15545:3:58","nodeType":"YulIdentifier","src":"15545:3:58"},"nativeSrc":"15545:15:58","nodeType":"YulFunctionCall","src":"15545:15:58"}],"functionName":{"name":"or","nativeSrc":"15536:2:58","nodeType":"YulIdentifier","src":"15536:2:58"},"nativeSrc":"15536:25:58","nodeType":"YulFunctionCall","src":"15536:25:58"},"variableNames":[{"name":"result","nativeSrc":"15526:6:58","nodeType":"YulIdentifier","src":"15526:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13265,"isOffset":false,"isSlot":false,"src":"15429:4:58","valueSize":1},{"declaration":13265,"isOffset":false,"isSlot":false,"src":"15441:4:58","valueSize":1},{"declaration":13265,"isOffset":false,"isSlot":false,"src":"15539:4:58","valueSize":1},{"declaration":13270,"isOffset":false,"isSlot":false,"src":"15526:6:58","valueSize":1},{"declaration":13267,"isOffset":false,"isSlot":false,"src":"15476:5:58","valueSize":1},{"declaration":13267,"isOffset":false,"isSlot":false,"src":"15489:5:58","valueSize":1},{"declaration":13267,"isOffset":false,"isSlot":false,"src":"15554:5:58","valueSize":1}],"flags":["memory-safe"],"id":13272,"nodeType":"InlineAssembly","src":"15390:181:58"}]},"id":13274,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_12","nameLocation":"15301:10:58","nodeType":"FunctionDefinition","parameters":{"id":13268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13265,"mutability":"mutable","name":"left","nameLocation":"15320:4:58","nodeType":"VariableDeclaration","scope":13274,"src":"15312:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":13264,"name":"bytes20","nodeType":"ElementaryTypeName","src":"15312:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":13267,"mutability":"mutable","name":"right","nameLocation":"15334:5:58","nodeType":"VariableDeclaration","scope":13274,"src":"15326:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13266,"name":"bytes12","nodeType":"ElementaryTypeName","src":"15326:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"15311:29:58"},"returnParameters":{"id":13271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13270,"mutability":"mutable","name":"result","nameLocation":"15372:6:58","nodeType":"VariableDeclaration","scope":13274,"src":"15364:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13269,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15364:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15363:16:58"},"scope":16305,"src":"15292:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13284,"nodeType":"Block","src":"15669:197:58","statements":[{"AST":{"nativeSrc":"15704:156:58","nodeType":"YulBlock","src":"15704:156:58","statements":[{"nativeSrc":"15718:34:58","nodeType":"YulAssignment","src":"15718:34:58","value":{"arguments":[{"name":"left","nativeSrc":"15730:4:58","nodeType":"YulIdentifier","src":"15730:4:58"},{"arguments":[{"kind":"number","nativeSrc":"15740:2:58","nodeType":"YulLiteral","src":"15740:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"15748:1:58","nodeType":"YulLiteral","src":"15748:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15744:3:58","nodeType":"YulIdentifier","src":"15744:3:58"},"nativeSrc":"15744:6:58","nodeType":"YulFunctionCall","src":"15744:6:58"}],"functionName":{"name":"shl","nativeSrc":"15736:3:58","nodeType":"YulIdentifier","src":"15736:3:58"},"nativeSrc":"15736:15:58","nodeType":"YulFunctionCall","src":"15736:15:58"}],"functionName":{"name":"and","nativeSrc":"15726:3:58","nodeType":"YulIdentifier","src":"15726:3:58"},"nativeSrc":"15726:26:58","nodeType":"YulFunctionCall","src":"15726:26:58"},"variableNames":[{"name":"left","nativeSrc":"15718:4:58","nodeType":"YulIdentifier","src":"15718:4:58"}]},{"nativeSrc":"15765:37:58","nodeType":"YulAssignment","src":"15765:37:58","value":{"arguments":[{"name":"right","nativeSrc":"15778:5:58","nodeType":"YulIdentifier","src":"15778:5:58"},{"arguments":[{"kind":"number","nativeSrc":"15789:3:58","nodeType":"YulLiteral","src":"15789:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"15798:1:58","nodeType":"YulLiteral","src":"15798:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15794:3:58","nodeType":"YulIdentifier","src":"15794:3:58"},"nativeSrc":"15794:6:58","nodeType":"YulFunctionCall","src":"15794:6:58"}],"functionName":{"name":"shl","nativeSrc":"15785:3:58","nodeType":"YulIdentifier","src":"15785:3:58"},"nativeSrc":"15785:16:58","nodeType":"YulFunctionCall","src":"15785:16:58"}],"functionName":{"name":"and","nativeSrc":"15774:3:58","nodeType":"YulIdentifier","src":"15774:3:58"},"nativeSrc":"15774:28:58","nodeType":"YulFunctionCall","src":"15774:28:58"},"variableNames":[{"name":"right","nativeSrc":"15765:5:58","nodeType":"YulIdentifier","src":"15765:5:58"}]},{"nativeSrc":"15815:35:58","nodeType":"YulAssignment","src":"15815:35:58","value":{"arguments":[{"name":"left","nativeSrc":"15828:4:58","nodeType":"YulIdentifier","src":"15828:4:58"},{"arguments":[{"kind":"number","nativeSrc":"15838:3:58","nodeType":"YulLiteral","src":"15838:3:58","type":"","value":"176"},{"name":"right","nativeSrc":"15843:5:58","nodeType":"YulIdentifier","src":"15843:5:58"}],"functionName":{"name":"shr","nativeSrc":"15834:3:58","nodeType":"YulIdentifier","src":"15834:3:58"},"nativeSrc":"15834:15:58","nodeType":"YulFunctionCall","src":"15834:15:58"}],"functionName":{"name":"or","nativeSrc":"15825:2:58","nodeType":"YulIdentifier","src":"15825:2:58"},"nativeSrc":"15825:25:58","nodeType":"YulFunctionCall","src":"15825:25:58"},"variableNames":[{"name":"result","nativeSrc":"15815:6:58","nodeType":"YulIdentifier","src":"15815:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13276,"isOffset":false,"isSlot":false,"src":"15718:4:58","valueSize":1},{"declaration":13276,"isOffset":false,"isSlot":false,"src":"15730:4:58","valueSize":1},{"declaration":13276,"isOffset":false,"isSlot":false,"src":"15828:4:58","valueSize":1},{"declaration":13281,"isOffset":false,"isSlot":false,"src":"15815:6:58","valueSize":1},{"declaration":13278,"isOffset":false,"isSlot":false,"src":"15765:5:58","valueSize":1},{"declaration":13278,"isOffset":false,"isSlot":false,"src":"15778:5:58","valueSize":1},{"declaration":13278,"isOffset":false,"isSlot":false,"src":"15843:5:58","valueSize":1}],"flags":["memory-safe"],"id":13283,"nodeType":"InlineAssembly","src":"15679:181:58"}]},"id":13285,"implemented":true,"kind":"function","modifiers":[],"name":"pack_22_2","nameLocation":"15592:9:58","nodeType":"FunctionDefinition","parameters":{"id":13279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13276,"mutability":"mutable","name":"left","nameLocation":"15610:4:58","nodeType":"VariableDeclaration","scope":13285,"src":"15602:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13275,"name":"bytes22","nodeType":"ElementaryTypeName","src":"15602:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":13278,"mutability":"mutable","name":"right","nameLocation":"15623:5:58","nodeType":"VariableDeclaration","scope":13285,"src":"15616:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13277,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15616:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"15601:28:58"},"returnParameters":{"id":13282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13281,"mutability":"mutable","name":"result","nameLocation":"15661:6:58","nodeType":"VariableDeclaration","scope":13285,"src":"15653:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13280,"name":"bytes24","nodeType":"ElementaryTypeName","src":"15653:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"15652:16:58"},"scope":16305,"src":"15583:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13295,"nodeType":"Block","src":"15958:197:58","statements":[{"AST":{"nativeSrc":"15993:156:58","nodeType":"YulBlock","src":"15993:156:58","statements":[{"nativeSrc":"16007:34:58","nodeType":"YulAssignment","src":"16007:34:58","value":{"arguments":[{"name":"left","nativeSrc":"16019:4:58","nodeType":"YulIdentifier","src":"16019:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16029:2:58","nodeType":"YulLiteral","src":"16029:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"16037:1:58","nodeType":"YulLiteral","src":"16037:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16033:3:58","nodeType":"YulIdentifier","src":"16033:3:58"},"nativeSrc":"16033:6:58","nodeType":"YulFunctionCall","src":"16033:6:58"}],"functionName":{"name":"shl","nativeSrc":"16025:3:58","nodeType":"YulIdentifier","src":"16025:3:58"},"nativeSrc":"16025:15:58","nodeType":"YulFunctionCall","src":"16025:15:58"}],"functionName":{"name":"and","nativeSrc":"16015:3:58","nodeType":"YulIdentifier","src":"16015:3:58"},"nativeSrc":"16015:26:58","nodeType":"YulFunctionCall","src":"16015:26:58"},"variableNames":[{"name":"left","nativeSrc":"16007:4:58","nodeType":"YulIdentifier","src":"16007:4:58"}]},{"nativeSrc":"16054:37:58","nodeType":"YulAssignment","src":"16054:37:58","value":{"arguments":[{"name":"right","nativeSrc":"16067:5:58","nodeType":"YulIdentifier","src":"16067:5:58"},{"arguments":[{"kind":"number","nativeSrc":"16078:3:58","nodeType":"YulLiteral","src":"16078:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"16087:1:58","nodeType":"YulLiteral","src":"16087:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16083:3:58","nodeType":"YulIdentifier","src":"16083:3:58"},"nativeSrc":"16083:6:58","nodeType":"YulFunctionCall","src":"16083:6:58"}],"functionName":{"name":"shl","nativeSrc":"16074:3:58","nodeType":"YulIdentifier","src":"16074:3:58"},"nativeSrc":"16074:16:58","nodeType":"YulFunctionCall","src":"16074:16:58"}],"functionName":{"name":"and","nativeSrc":"16063:3:58","nodeType":"YulIdentifier","src":"16063:3:58"},"nativeSrc":"16063:28:58","nodeType":"YulFunctionCall","src":"16063:28:58"},"variableNames":[{"name":"right","nativeSrc":"16054:5:58","nodeType":"YulIdentifier","src":"16054:5:58"}]},{"nativeSrc":"16104:35:58","nodeType":"YulAssignment","src":"16104:35:58","value":{"arguments":[{"name":"left","nativeSrc":"16117:4:58","nodeType":"YulIdentifier","src":"16117:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16127:3:58","nodeType":"YulLiteral","src":"16127:3:58","type":"","value":"176"},{"name":"right","nativeSrc":"16132:5:58","nodeType":"YulIdentifier","src":"16132:5:58"}],"functionName":{"name":"shr","nativeSrc":"16123:3:58","nodeType":"YulIdentifier","src":"16123:3:58"},"nativeSrc":"16123:15:58","nodeType":"YulFunctionCall","src":"16123:15:58"}],"functionName":{"name":"or","nativeSrc":"16114:2:58","nodeType":"YulIdentifier","src":"16114:2:58"},"nativeSrc":"16114:25:58","nodeType":"YulFunctionCall","src":"16114:25:58"},"variableNames":[{"name":"result","nativeSrc":"16104:6:58","nodeType":"YulIdentifier","src":"16104:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13287,"isOffset":false,"isSlot":false,"src":"16007:4:58","valueSize":1},{"declaration":13287,"isOffset":false,"isSlot":false,"src":"16019:4:58","valueSize":1},{"declaration":13287,"isOffset":false,"isSlot":false,"src":"16117:4:58","valueSize":1},{"declaration":13292,"isOffset":false,"isSlot":false,"src":"16104:6:58","valueSize":1},{"declaration":13289,"isOffset":false,"isSlot":false,"src":"16054:5:58","valueSize":1},{"declaration":13289,"isOffset":false,"isSlot":false,"src":"16067:5:58","valueSize":1},{"declaration":13289,"isOffset":false,"isSlot":false,"src":"16132:5:58","valueSize":1}],"flags":["memory-safe"],"id":13294,"nodeType":"InlineAssembly","src":"15968:181:58"}]},"id":13296,"implemented":true,"kind":"function","modifiers":[],"name":"pack_22_6","nameLocation":"15881:9:58","nodeType":"FunctionDefinition","parameters":{"id":13290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13287,"mutability":"mutable","name":"left","nameLocation":"15899:4:58","nodeType":"VariableDeclaration","scope":13296,"src":"15891:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13286,"name":"bytes22","nodeType":"ElementaryTypeName","src":"15891:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":13289,"mutability":"mutable","name":"right","nameLocation":"15912:5:58","nodeType":"VariableDeclaration","scope":13296,"src":"15905:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13288,"name":"bytes6","nodeType":"ElementaryTypeName","src":"15905:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"15890:28:58"},"returnParameters":{"id":13293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13292,"mutability":"mutable","name":"result","nameLocation":"15950:6:58","nodeType":"VariableDeclaration","scope":13296,"src":"15942:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13291,"name":"bytes28","nodeType":"ElementaryTypeName","src":"15942:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"15941:16:58"},"scope":16305,"src":"15872:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13306,"nodeType":"Block","src":"16249:197:58","statements":[{"AST":{"nativeSrc":"16284:156:58","nodeType":"YulBlock","src":"16284:156:58","statements":[{"nativeSrc":"16298:34:58","nodeType":"YulAssignment","src":"16298:34:58","value":{"arguments":[{"name":"left","nativeSrc":"16310:4:58","nodeType":"YulIdentifier","src":"16310:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16320:2:58","nodeType":"YulLiteral","src":"16320:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"16328:1:58","nodeType":"YulLiteral","src":"16328:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16324:3:58","nodeType":"YulIdentifier","src":"16324:3:58"},"nativeSrc":"16324:6:58","nodeType":"YulFunctionCall","src":"16324:6:58"}],"functionName":{"name":"shl","nativeSrc":"16316:3:58","nodeType":"YulIdentifier","src":"16316:3:58"},"nativeSrc":"16316:15:58","nodeType":"YulFunctionCall","src":"16316:15:58"}],"functionName":{"name":"and","nativeSrc":"16306:3:58","nodeType":"YulIdentifier","src":"16306:3:58"},"nativeSrc":"16306:26:58","nodeType":"YulFunctionCall","src":"16306:26:58"},"variableNames":[{"name":"left","nativeSrc":"16298:4:58","nodeType":"YulIdentifier","src":"16298:4:58"}]},{"nativeSrc":"16345:37:58","nodeType":"YulAssignment","src":"16345:37:58","value":{"arguments":[{"name":"right","nativeSrc":"16358:5:58","nodeType":"YulIdentifier","src":"16358:5:58"},{"arguments":[{"kind":"number","nativeSrc":"16369:3:58","nodeType":"YulLiteral","src":"16369:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"16378:1:58","nodeType":"YulLiteral","src":"16378:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16374:3:58","nodeType":"YulIdentifier","src":"16374:3:58"},"nativeSrc":"16374:6:58","nodeType":"YulFunctionCall","src":"16374:6:58"}],"functionName":{"name":"shl","nativeSrc":"16365:3:58","nodeType":"YulIdentifier","src":"16365:3:58"},"nativeSrc":"16365:16:58","nodeType":"YulFunctionCall","src":"16365:16:58"}],"functionName":{"name":"and","nativeSrc":"16354:3:58","nodeType":"YulIdentifier","src":"16354:3:58"},"nativeSrc":"16354:28:58","nodeType":"YulFunctionCall","src":"16354:28:58"},"variableNames":[{"name":"right","nativeSrc":"16345:5:58","nodeType":"YulIdentifier","src":"16345:5:58"}]},{"nativeSrc":"16395:35:58","nodeType":"YulAssignment","src":"16395:35:58","value":{"arguments":[{"name":"left","nativeSrc":"16408:4:58","nodeType":"YulIdentifier","src":"16408:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16418:3:58","nodeType":"YulLiteral","src":"16418:3:58","type":"","value":"176"},{"name":"right","nativeSrc":"16423:5:58","nodeType":"YulIdentifier","src":"16423:5:58"}],"functionName":{"name":"shr","nativeSrc":"16414:3:58","nodeType":"YulIdentifier","src":"16414:3:58"},"nativeSrc":"16414:15:58","nodeType":"YulFunctionCall","src":"16414:15:58"}],"functionName":{"name":"or","nativeSrc":"16405:2:58","nodeType":"YulIdentifier","src":"16405:2:58"},"nativeSrc":"16405:25:58","nodeType":"YulFunctionCall","src":"16405:25:58"},"variableNames":[{"name":"result","nativeSrc":"16395:6:58","nodeType":"YulIdentifier","src":"16395:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13298,"isOffset":false,"isSlot":false,"src":"16298:4:58","valueSize":1},{"declaration":13298,"isOffset":false,"isSlot":false,"src":"16310:4:58","valueSize":1},{"declaration":13298,"isOffset":false,"isSlot":false,"src":"16408:4:58","valueSize":1},{"declaration":13303,"isOffset":false,"isSlot":false,"src":"16395:6:58","valueSize":1},{"declaration":13300,"isOffset":false,"isSlot":false,"src":"16345:5:58","valueSize":1},{"declaration":13300,"isOffset":false,"isSlot":false,"src":"16358:5:58","valueSize":1},{"declaration":13300,"isOffset":false,"isSlot":false,"src":"16423:5:58","valueSize":1}],"flags":["memory-safe"],"id":13305,"nodeType":"InlineAssembly","src":"16259:181:58"}]},"id":13307,"implemented":true,"kind":"function","modifiers":[],"name":"pack_22_10","nameLocation":"16170:10:58","nodeType":"FunctionDefinition","parameters":{"id":13301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13298,"mutability":"mutable","name":"left","nameLocation":"16189:4:58","nodeType":"VariableDeclaration","scope":13307,"src":"16181:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":13297,"name":"bytes22","nodeType":"ElementaryTypeName","src":"16181:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":13300,"mutability":"mutable","name":"right","nameLocation":"16203:5:58","nodeType":"VariableDeclaration","scope":13307,"src":"16195:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13299,"name":"bytes10","nodeType":"ElementaryTypeName","src":"16195:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"16180:29:58"},"returnParameters":{"id":13304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13303,"mutability":"mutable","name":"result","nameLocation":"16241:6:58","nodeType":"VariableDeclaration","scope":13307,"src":"16233:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16233:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16232:16:58"},"scope":16305,"src":"16161:285:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13317,"nodeType":"Block","src":"16538:197:58","statements":[{"AST":{"nativeSrc":"16573:156:58","nodeType":"YulBlock","src":"16573:156:58","statements":[{"nativeSrc":"16587:34:58","nodeType":"YulAssignment","src":"16587:34:58","value":{"arguments":[{"name":"left","nativeSrc":"16599:4:58","nodeType":"YulIdentifier","src":"16599:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16609:2:58","nodeType":"YulLiteral","src":"16609:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"16617:1:58","nodeType":"YulLiteral","src":"16617:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16613:3:58","nodeType":"YulIdentifier","src":"16613:3:58"},"nativeSrc":"16613:6:58","nodeType":"YulFunctionCall","src":"16613:6:58"}],"functionName":{"name":"shl","nativeSrc":"16605:3:58","nodeType":"YulIdentifier","src":"16605:3:58"},"nativeSrc":"16605:15:58","nodeType":"YulFunctionCall","src":"16605:15:58"}],"functionName":{"name":"and","nativeSrc":"16595:3:58","nodeType":"YulIdentifier","src":"16595:3:58"},"nativeSrc":"16595:26:58","nodeType":"YulFunctionCall","src":"16595:26:58"},"variableNames":[{"name":"left","nativeSrc":"16587:4:58","nodeType":"YulIdentifier","src":"16587:4:58"}]},{"nativeSrc":"16634:37:58","nodeType":"YulAssignment","src":"16634:37:58","value":{"arguments":[{"name":"right","nativeSrc":"16647:5:58","nodeType":"YulIdentifier","src":"16647:5:58"},{"arguments":[{"kind":"number","nativeSrc":"16658:3:58","nodeType":"YulLiteral","src":"16658:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"16667:1:58","nodeType":"YulLiteral","src":"16667:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16663:3:58","nodeType":"YulIdentifier","src":"16663:3:58"},"nativeSrc":"16663:6:58","nodeType":"YulFunctionCall","src":"16663:6:58"}],"functionName":{"name":"shl","nativeSrc":"16654:3:58","nodeType":"YulIdentifier","src":"16654:3:58"},"nativeSrc":"16654:16:58","nodeType":"YulFunctionCall","src":"16654:16:58"}],"functionName":{"name":"and","nativeSrc":"16643:3:58","nodeType":"YulIdentifier","src":"16643:3:58"},"nativeSrc":"16643:28:58","nodeType":"YulFunctionCall","src":"16643:28:58"},"variableNames":[{"name":"right","nativeSrc":"16634:5:58","nodeType":"YulIdentifier","src":"16634:5:58"}]},{"nativeSrc":"16684:35:58","nodeType":"YulAssignment","src":"16684:35:58","value":{"arguments":[{"name":"left","nativeSrc":"16697:4:58","nodeType":"YulIdentifier","src":"16697:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16707:3:58","nodeType":"YulLiteral","src":"16707:3:58","type":"","value":"192"},{"name":"right","nativeSrc":"16712:5:58","nodeType":"YulIdentifier","src":"16712:5:58"}],"functionName":{"name":"shr","nativeSrc":"16703:3:58","nodeType":"YulIdentifier","src":"16703:3:58"},"nativeSrc":"16703:15:58","nodeType":"YulFunctionCall","src":"16703:15:58"}],"functionName":{"name":"or","nativeSrc":"16694:2:58","nodeType":"YulIdentifier","src":"16694:2:58"},"nativeSrc":"16694:25:58","nodeType":"YulFunctionCall","src":"16694:25:58"},"variableNames":[{"name":"result","nativeSrc":"16684:6:58","nodeType":"YulIdentifier","src":"16684:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13309,"isOffset":false,"isSlot":false,"src":"16587:4:58","valueSize":1},{"declaration":13309,"isOffset":false,"isSlot":false,"src":"16599:4:58","valueSize":1},{"declaration":13309,"isOffset":false,"isSlot":false,"src":"16697:4:58","valueSize":1},{"declaration":13314,"isOffset":false,"isSlot":false,"src":"16684:6:58","valueSize":1},{"declaration":13311,"isOffset":false,"isSlot":false,"src":"16634:5:58","valueSize":1},{"declaration":13311,"isOffset":false,"isSlot":false,"src":"16647:5:58","valueSize":1},{"declaration":13311,"isOffset":false,"isSlot":false,"src":"16712:5:58","valueSize":1}],"flags":["memory-safe"],"id":13316,"nodeType":"InlineAssembly","src":"16548:181:58"}]},"id":13318,"implemented":true,"kind":"function","modifiers":[],"name":"pack_24_4","nameLocation":"16461:9:58","nodeType":"FunctionDefinition","parameters":{"id":13312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13309,"mutability":"mutable","name":"left","nameLocation":"16479:4:58","nodeType":"VariableDeclaration","scope":13318,"src":"16471:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13308,"name":"bytes24","nodeType":"ElementaryTypeName","src":"16471:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":13311,"mutability":"mutable","name":"right","nameLocation":"16492:5:58","nodeType":"VariableDeclaration","scope":13318,"src":"16485:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13310,"name":"bytes4","nodeType":"ElementaryTypeName","src":"16485:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"16470:28:58"},"returnParameters":{"id":13315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13314,"mutability":"mutable","name":"result","nameLocation":"16530:6:58","nodeType":"VariableDeclaration","scope":13318,"src":"16522:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13313,"name":"bytes28","nodeType":"ElementaryTypeName","src":"16522:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"16521:16:58"},"scope":16305,"src":"16452:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13328,"nodeType":"Block","src":"16827:197:58","statements":[{"AST":{"nativeSrc":"16862:156:58","nodeType":"YulBlock","src":"16862:156:58","statements":[{"nativeSrc":"16876:34:58","nodeType":"YulAssignment","src":"16876:34:58","value":{"arguments":[{"name":"left","nativeSrc":"16888:4:58","nodeType":"YulIdentifier","src":"16888:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16898:2:58","nodeType":"YulLiteral","src":"16898:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"16906:1:58","nodeType":"YulLiteral","src":"16906:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16902:3:58","nodeType":"YulIdentifier","src":"16902:3:58"},"nativeSrc":"16902:6:58","nodeType":"YulFunctionCall","src":"16902:6:58"}],"functionName":{"name":"shl","nativeSrc":"16894:3:58","nodeType":"YulIdentifier","src":"16894:3:58"},"nativeSrc":"16894:15:58","nodeType":"YulFunctionCall","src":"16894:15:58"}],"functionName":{"name":"and","nativeSrc":"16884:3:58","nodeType":"YulIdentifier","src":"16884:3:58"},"nativeSrc":"16884:26:58","nodeType":"YulFunctionCall","src":"16884:26:58"},"variableNames":[{"name":"left","nativeSrc":"16876:4:58","nodeType":"YulIdentifier","src":"16876:4:58"}]},{"nativeSrc":"16923:37:58","nodeType":"YulAssignment","src":"16923:37:58","value":{"arguments":[{"name":"right","nativeSrc":"16936:5:58","nodeType":"YulIdentifier","src":"16936:5:58"},{"arguments":[{"kind":"number","nativeSrc":"16947:3:58","nodeType":"YulLiteral","src":"16947:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"16956:1:58","nodeType":"YulLiteral","src":"16956:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16952:3:58","nodeType":"YulIdentifier","src":"16952:3:58"},"nativeSrc":"16952:6:58","nodeType":"YulFunctionCall","src":"16952:6:58"}],"functionName":{"name":"shl","nativeSrc":"16943:3:58","nodeType":"YulIdentifier","src":"16943:3:58"},"nativeSrc":"16943:16:58","nodeType":"YulFunctionCall","src":"16943:16:58"}],"functionName":{"name":"and","nativeSrc":"16932:3:58","nodeType":"YulIdentifier","src":"16932:3:58"},"nativeSrc":"16932:28:58","nodeType":"YulFunctionCall","src":"16932:28:58"},"variableNames":[{"name":"right","nativeSrc":"16923:5:58","nodeType":"YulIdentifier","src":"16923:5:58"}]},{"nativeSrc":"16973:35:58","nodeType":"YulAssignment","src":"16973:35:58","value":{"arguments":[{"name":"left","nativeSrc":"16986:4:58","nodeType":"YulIdentifier","src":"16986:4:58"},{"arguments":[{"kind":"number","nativeSrc":"16996:3:58","nodeType":"YulLiteral","src":"16996:3:58","type":"","value":"192"},{"name":"right","nativeSrc":"17001:5:58","nodeType":"YulIdentifier","src":"17001:5:58"}],"functionName":{"name":"shr","nativeSrc":"16992:3:58","nodeType":"YulIdentifier","src":"16992:3:58"},"nativeSrc":"16992:15:58","nodeType":"YulFunctionCall","src":"16992:15:58"}],"functionName":{"name":"or","nativeSrc":"16983:2:58","nodeType":"YulIdentifier","src":"16983:2:58"},"nativeSrc":"16983:25:58","nodeType":"YulFunctionCall","src":"16983:25:58"},"variableNames":[{"name":"result","nativeSrc":"16973:6:58","nodeType":"YulIdentifier","src":"16973:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13320,"isOffset":false,"isSlot":false,"src":"16876:4:58","valueSize":1},{"declaration":13320,"isOffset":false,"isSlot":false,"src":"16888:4:58","valueSize":1},{"declaration":13320,"isOffset":false,"isSlot":false,"src":"16986:4:58","valueSize":1},{"declaration":13325,"isOffset":false,"isSlot":false,"src":"16973:6:58","valueSize":1},{"declaration":13322,"isOffset":false,"isSlot":false,"src":"16923:5:58","valueSize":1},{"declaration":13322,"isOffset":false,"isSlot":false,"src":"16936:5:58","valueSize":1},{"declaration":13322,"isOffset":false,"isSlot":false,"src":"17001:5:58","valueSize":1}],"flags":["memory-safe"],"id":13327,"nodeType":"InlineAssembly","src":"16837:181:58"}]},"id":13329,"implemented":true,"kind":"function","modifiers":[],"name":"pack_24_8","nameLocation":"16750:9:58","nodeType":"FunctionDefinition","parameters":{"id":13323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13320,"mutability":"mutable","name":"left","nameLocation":"16768:4:58","nodeType":"VariableDeclaration","scope":13329,"src":"16760:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13319,"name":"bytes24","nodeType":"ElementaryTypeName","src":"16760:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":13322,"mutability":"mutable","name":"right","nameLocation":"16781:5:58","nodeType":"VariableDeclaration","scope":13329,"src":"16774:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13321,"name":"bytes8","nodeType":"ElementaryTypeName","src":"16774:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"16759:28:58"},"returnParameters":{"id":13326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13325,"mutability":"mutable","name":"result","nameLocation":"16819:6:58","nodeType":"VariableDeclaration","scope":13329,"src":"16811:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13324,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16811:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16810:16:58"},"scope":16305,"src":"16741:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13339,"nodeType":"Block","src":"17116:197:58","statements":[{"AST":{"nativeSrc":"17151:156:58","nodeType":"YulBlock","src":"17151:156:58","statements":[{"nativeSrc":"17165:34:58","nodeType":"YulAssignment","src":"17165:34:58","value":{"arguments":[{"name":"left","nativeSrc":"17177:4:58","nodeType":"YulIdentifier","src":"17177:4:58"},{"arguments":[{"kind":"number","nativeSrc":"17187:2:58","nodeType":"YulLiteral","src":"17187:2:58","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"17195:1:58","nodeType":"YulLiteral","src":"17195:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17191:3:58","nodeType":"YulIdentifier","src":"17191:3:58"},"nativeSrc":"17191:6:58","nodeType":"YulFunctionCall","src":"17191:6:58"}],"functionName":{"name":"shl","nativeSrc":"17183:3:58","nodeType":"YulIdentifier","src":"17183:3:58"},"nativeSrc":"17183:15:58","nodeType":"YulFunctionCall","src":"17183:15:58"}],"functionName":{"name":"and","nativeSrc":"17173:3:58","nodeType":"YulIdentifier","src":"17173:3:58"},"nativeSrc":"17173:26:58","nodeType":"YulFunctionCall","src":"17173:26:58"},"variableNames":[{"name":"left","nativeSrc":"17165:4:58","nodeType":"YulIdentifier","src":"17165:4:58"}]},{"nativeSrc":"17212:37:58","nodeType":"YulAssignment","src":"17212:37:58","value":{"arguments":[{"name":"right","nativeSrc":"17225:5:58","nodeType":"YulIdentifier","src":"17225:5:58"},{"arguments":[{"kind":"number","nativeSrc":"17236:3:58","nodeType":"YulLiteral","src":"17236:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"17245:1:58","nodeType":"YulLiteral","src":"17245:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17241:3:58","nodeType":"YulIdentifier","src":"17241:3:58"},"nativeSrc":"17241:6:58","nodeType":"YulFunctionCall","src":"17241:6:58"}],"functionName":{"name":"shl","nativeSrc":"17232:3:58","nodeType":"YulIdentifier","src":"17232:3:58"},"nativeSrc":"17232:16:58","nodeType":"YulFunctionCall","src":"17232:16:58"}],"functionName":{"name":"and","nativeSrc":"17221:3:58","nodeType":"YulIdentifier","src":"17221:3:58"},"nativeSrc":"17221:28:58","nodeType":"YulFunctionCall","src":"17221:28:58"},"variableNames":[{"name":"right","nativeSrc":"17212:5:58","nodeType":"YulIdentifier","src":"17212:5:58"}]},{"nativeSrc":"17262:35:58","nodeType":"YulAssignment","src":"17262:35:58","value":{"arguments":[{"name":"left","nativeSrc":"17275:4:58","nodeType":"YulIdentifier","src":"17275:4:58"},{"arguments":[{"kind":"number","nativeSrc":"17285:3:58","nodeType":"YulLiteral","src":"17285:3:58","type":"","value":"224"},{"name":"right","nativeSrc":"17290:5:58","nodeType":"YulIdentifier","src":"17290:5:58"}],"functionName":{"name":"shr","nativeSrc":"17281:3:58","nodeType":"YulIdentifier","src":"17281:3:58"},"nativeSrc":"17281:15:58","nodeType":"YulFunctionCall","src":"17281:15:58"}],"functionName":{"name":"or","nativeSrc":"17272:2:58","nodeType":"YulIdentifier","src":"17272:2:58"},"nativeSrc":"17272:25:58","nodeType":"YulFunctionCall","src":"17272:25:58"},"variableNames":[{"name":"result","nativeSrc":"17262:6:58","nodeType":"YulIdentifier","src":"17262:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13331,"isOffset":false,"isSlot":false,"src":"17165:4:58","valueSize":1},{"declaration":13331,"isOffset":false,"isSlot":false,"src":"17177:4:58","valueSize":1},{"declaration":13331,"isOffset":false,"isSlot":false,"src":"17275:4:58","valueSize":1},{"declaration":13336,"isOffset":false,"isSlot":false,"src":"17262:6:58","valueSize":1},{"declaration":13333,"isOffset":false,"isSlot":false,"src":"17212:5:58","valueSize":1},{"declaration":13333,"isOffset":false,"isSlot":false,"src":"17225:5:58","valueSize":1},{"declaration":13333,"isOffset":false,"isSlot":false,"src":"17290:5:58","valueSize":1}],"flags":["memory-safe"],"id":13338,"nodeType":"InlineAssembly","src":"17126:181:58"}]},"id":13340,"implemented":true,"kind":"function","modifiers":[],"name":"pack_28_4","nameLocation":"17039:9:58","nodeType":"FunctionDefinition","parameters":{"id":13334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13331,"mutability":"mutable","name":"left","nameLocation":"17057:4:58","nodeType":"VariableDeclaration","scope":13340,"src":"17049:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":13330,"name":"bytes28","nodeType":"ElementaryTypeName","src":"17049:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":13333,"mutability":"mutable","name":"right","nameLocation":"17070:5:58","nodeType":"VariableDeclaration","scope":13340,"src":"17063:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13332,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17063:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"17048:28:58"},"returnParameters":{"id":13337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13336,"mutability":"mutable","name":"result","nameLocation":"17108:6:58","nodeType":"VariableDeclaration","scope":13340,"src":"17100:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":13335,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17100:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17099:16:58"},"scope":16305,"src":"17030:283:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13357,"nodeType":"Block","src":"17405:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13349,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13344,"src":"17419:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":13350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17428:1:58","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17419:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13355,"nodeType":"IfStatement","src":"17415:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13352,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"17438:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17438:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13354,"nodeType":"RevertStatement","src":"17431:25:58"}},{"AST":{"nativeSrc":"17491:82:58","nodeType":"YulBlock","src":"17491:82:58","statements":[{"nativeSrc":"17505:58:58","nodeType":"YulAssignment","src":"17505:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17527:1:58","nodeType":"YulLiteral","src":"17527:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"17530:6:58","nodeType":"YulIdentifier","src":"17530:6:58"}],"functionName":{"name":"mul","nativeSrc":"17523:3:58","nodeType":"YulIdentifier","src":"17523:3:58"},"nativeSrc":"17523:14:58","nodeType":"YulFunctionCall","src":"17523:14:58"},{"name":"self","nativeSrc":"17539:4:58","nodeType":"YulIdentifier","src":"17539:4:58"}],"functionName":{"name":"shl","nativeSrc":"17519:3:58","nodeType":"YulIdentifier","src":"17519:3:58"},"nativeSrc":"17519:25:58","nodeType":"YulFunctionCall","src":"17519:25:58"},{"arguments":[{"kind":"number","nativeSrc":"17550:3:58","nodeType":"YulLiteral","src":"17550:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"17559:1:58","nodeType":"YulLiteral","src":"17559:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17555:3:58","nodeType":"YulIdentifier","src":"17555:3:58"},"nativeSrc":"17555:6:58","nodeType":"YulFunctionCall","src":"17555:6:58"}],"functionName":{"name":"shl","nativeSrc":"17546:3:58","nodeType":"YulIdentifier","src":"17546:3:58"},"nativeSrc":"17546:16:58","nodeType":"YulFunctionCall","src":"17546:16:58"}],"functionName":{"name":"and","nativeSrc":"17515:3:58","nodeType":"YulIdentifier","src":"17515:3:58"},"nativeSrc":"17515:48:58","nodeType":"YulFunctionCall","src":"17515:48:58"},"variableNames":[{"name":"result","nativeSrc":"17505:6:58","nodeType":"YulIdentifier","src":"17505:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13344,"isOffset":false,"isSlot":false,"src":"17530:6:58","valueSize":1},{"declaration":13347,"isOffset":false,"isSlot":false,"src":"17505:6:58","valueSize":1},{"declaration":13342,"isOffset":false,"isSlot":false,"src":"17539:4:58","valueSize":1}],"flags":["memory-safe"],"id":13356,"nodeType":"InlineAssembly","src":"17466:107:58"}]},"id":13358,"implemented":true,"kind":"function","modifiers":[],"name":"extract_2_1","nameLocation":"17328:11:58","nodeType":"FunctionDefinition","parameters":{"id":13345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13342,"mutability":"mutable","name":"self","nameLocation":"17347:4:58","nodeType":"VariableDeclaration","scope":13358,"src":"17340:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13341,"name":"bytes2","nodeType":"ElementaryTypeName","src":"17340:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13344,"mutability":"mutable","name":"offset","nameLocation":"17359:6:58","nodeType":"VariableDeclaration","scope":13358,"src":"17353:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13343,"name":"uint8","nodeType":"ElementaryTypeName","src":"17353:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17339:27:58"},"returnParameters":{"id":13348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13347,"mutability":"mutable","name":"result","nameLocation":"17397:6:58","nodeType":"VariableDeclaration","scope":13358,"src":"17390:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13346,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17390:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"17389:15:58"},"scope":16305,"src":"17319:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13377,"nodeType":"Block","src":"17685:230:58","statements":[{"assignments":[13370],"declarations":[{"constant":false,"id":13370,"mutability":"mutable","name":"oldValue","nameLocation":"17702:8:58","nodeType":"VariableDeclaration","scope":13377,"src":"17695:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13369,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17695:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13375,"initialValue":{"arguments":[{"id":13372,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13360,"src":"17725:4:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},{"id":13373,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13364,"src":"17731:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes2","typeString":"bytes2"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13371,"name":"extract_2_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13358,"src":"17713:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes2_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes2,uint8) pure returns (bytes1)"}},"id":13374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17713:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"17695:43:58"},{"AST":{"nativeSrc":"17773:136:58","nodeType":"YulBlock","src":"17773:136:58","statements":[{"nativeSrc":"17787:37:58","nodeType":"YulAssignment","src":"17787:37:58","value":{"arguments":[{"name":"value","nativeSrc":"17800:5:58","nodeType":"YulIdentifier","src":"17800:5:58"},{"arguments":[{"kind":"number","nativeSrc":"17811:3:58","nodeType":"YulLiteral","src":"17811:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"17820:1:58","nodeType":"YulLiteral","src":"17820:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17816:3:58","nodeType":"YulIdentifier","src":"17816:3:58"},"nativeSrc":"17816:6:58","nodeType":"YulFunctionCall","src":"17816:6:58"}],"functionName":{"name":"shl","nativeSrc":"17807:3:58","nodeType":"YulIdentifier","src":"17807:3:58"},"nativeSrc":"17807:16:58","nodeType":"YulFunctionCall","src":"17807:16:58"}],"functionName":{"name":"and","nativeSrc":"17796:3:58","nodeType":"YulIdentifier","src":"17796:3:58"},"nativeSrc":"17796:28:58","nodeType":"YulFunctionCall","src":"17796:28:58"},"variableNames":[{"name":"value","nativeSrc":"17787:5:58","nodeType":"YulIdentifier","src":"17787:5:58"}]},{"nativeSrc":"17837:62:58","nodeType":"YulAssignment","src":"17837:62:58","value":{"arguments":[{"name":"self","nativeSrc":"17851:4:58","nodeType":"YulIdentifier","src":"17851:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17865:1:58","nodeType":"YulLiteral","src":"17865:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"17868:6:58","nodeType":"YulIdentifier","src":"17868:6:58"}],"functionName":{"name":"mul","nativeSrc":"17861:3:58","nodeType":"YulIdentifier","src":"17861:3:58"},"nativeSrc":"17861:14:58","nodeType":"YulFunctionCall","src":"17861:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"17881:8:58","nodeType":"YulIdentifier","src":"17881:8:58"},{"name":"value","nativeSrc":"17891:5:58","nodeType":"YulIdentifier","src":"17891:5:58"}],"functionName":{"name":"xor","nativeSrc":"17877:3:58","nodeType":"YulIdentifier","src":"17877:3:58"},"nativeSrc":"17877:20:58","nodeType":"YulFunctionCall","src":"17877:20:58"}],"functionName":{"name":"shr","nativeSrc":"17857:3:58","nodeType":"YulIdentifier","src":"17857:3:58"},"nativeSrc":"17857:41:58","nodeType":"YulFunctionCall","src":"17857:41:58"}],"functionName":{"name":"xor","nativeSrc":"17847:3:58","nodeType":"YulIdentifier","src":"17847:3:58"},"nativeSrc":"17847:52:58","nodeType":"YulFunctionCall","src":"17847:52:58"},"variableNames":[{"name":"result","nativeSrc":"17837:6:58","nodeType":"YulIdentifier","src":"17837:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13364,"isOffset":false,"isSlot":false,"src":"17868:6:58","valueSize":1},{"declaration":13370,"isOffset":false,"isSlot":false,"src":"17881:8:58","valueSize":1},{"declaration":13367,"isOffset":false,"isSlot":false,"src":"17837:6:58","valueSize":1},{"declaration":13360,"isOffset":false,"isSlot":false,"src":"17851:4:58","valueSize":1},{"declaration":13362,"isOffset":false,"isSlot":false,"src":"17787:5:58","valueSize":1},{"declaration":13362,"isOffset":false,"isSlot":false,"src":"17800:5:58","valueSize":1},{"declaration":13362,"isOffset":false,"isSlot":false,"src":"17891:5:58","valueSize":1}],"flags":["memory-safe"],"id":13376,"nodeType":"InlineAssembly","src":"17748:161:58"}]},"id":13378,"implemented":true,"kind":"function","modifiers":[],"name":"replace_2_1","nameLocation":"17594:11:58","nodeType":"FunctionDefinition","parameters":{"id":13365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13360,"mutability":"mutable","name":"self","nameLocation":"17613:4:58","nodeType":"VariableDeclaration","scope":13378,"src":"17606:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13359,"name":"bytes2","nodeType":"ElementaryTypeName","src":"17606:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13362,"mutability":"mutable","name":"value","nameLocation":"17626:5:58","nodeType":"VariableDeclaration","scope":13378,"src":"17619:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13361,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17619:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13364,"mutability":"mutable","name":"offset","nameLocation":"17639:6:58","nodeType":"VariableDeclaration","scope":13378,"src":"17633:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13363,"name":"uint8","nodeType":"ElementaryTypeName","src":"17633:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17605:41:58"},"returnParameters":{"id":13368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13367,"mutability":"mutable","name":"result","nameLocation":"17677:6:58","nodeType":"VariableDeclaration","scope":13378,"src":"17670:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13366,"name":"bytes2","nodeType":"ElementaryTypeName","src":"17670:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"17669:15:58"},"scope":16305,"src":"17585:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13395,"nodeType":"Block","src":"18007:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13387,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13382,"src":"18021:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"33","id":13388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18030:1:58","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"18021:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13393,"nodeType":"IfStatement","src":"18017:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13390,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"18040:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18040:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13392,"nodeType":"RevertStatement","src":"18033:25:58"}},{"AST":{"nativeSrc":"18093:82:58","nodeType":"YulBlock","src":"18093:82:58","statements":[{"nativeSrc":"18107:58:58","nodeType":"YulAssignment","src":"18107:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18129:1:58","nodeType":"YulLiteral","src":"18129:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"18132:6:58","nodeType":"YulIdentifier","src":"18132:6:58"}],"functionName":{"name":"mul","nativeSrc":"18125:3:58","nodeType":"YulIdentifier","src":"18125:3:58"},"nativeSrc":"18125:14:58","nodeType":"YulFunctionCall","src":"18125:14:58"},{"name":"self","nativeSrc":"18141:4:58","nodeType":"YulIdentifier","src":"18141:4:58"}],"functionName":{"name":"shl","nativeSrc":"18121:3:58","nodeType":"YulIdentifier","src":"18121:3:58"},"nativeSrc":"18121:25:58","nodeType":"YulFunctionCall","src":"18121:25:58"},{"arguments":[{"kind":"number","nativeSrc":"18152:3:58","nodeType":"YulLiteral","src":"18152:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"18161:1:58","nodeType":"YulLiteral","src":"18161:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18157:3:58","nodeType":"YulIdentifier","src":"18157:3:58"},"nativeSrc":"18157:6:58","nodeType":"YulFunctionCall","src":"18157:6:58"}],"functionName":{"name":"shl","nativeSrc":"18148:3:58","nodeType":"YulIdentifier","src":"18148:3:58"},"nativeSrc":"18148:16:58","nodeType":"YulFunctionCall","src":"18148:16:58"}],"functionName":{"name":"and","nativeSrc":"18117:3:58","nodeType":"YulIdentifier","src":"18117:3:58"},"nativeSrc":"18117:48:58","nodeType":"YulFunctionCall","src":"18117:48:58"},"variableNames":[{"name":"result","nativeSrc":"18107:6:58","nodeType":"YulIdentifier","src":"18107:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13382,"isOffset":false,"isSlot":false,"src":"18132:6:58","valueSize":1},{"declaration":13385,"isOffset":false,"isSlot":false,"src":"18107:6:58","valueSize":1},{"declaration":13380,"isOffset":false,"isSlot":false,"src":"18141:4:58","valueSize":1}],"flags":["memory-safe"],"id":13394,"nodeType":"InlineAssembly","src":"18068:107:58"}]},"id":13396,"implemented":true,"kind":"function","modifiers":[],"name":"extract_4_1","nameLocation":"17930:11:58","nodeType":"FunctionDefinition","parameters":{"id":13383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13380,"mutability":"mutable","name":"self","nameLocation":"17949:4:58","nodeType":"VariableDeclaration","scope":13396,"src":"17942:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13379,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17942:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13382,"mutability":"mutable","name":"offset","nameLocation":"17961:6:58","nodeType":"VariableDeclaration","scope":13396,"src":"17955:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13381,"name":"uint8","nodeType":"ElementaryTypeName","src":"17955:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17941:27:58"},"returnParameters":{"id":13386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13385,"mutability":"mutable","name":"result","nameLocation":"17999:6:58","nodeType":"VariableDeclaration","scope":13396,"src":"17992:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13384,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17992:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"17991:15:58"},"scope":16305,"src":"17921:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13415,"nodeType":"Block","src":"18287:230:58","statements":[{"assignments":[13408],"declarations":[{"constant":false,"id":13408,"mutability":"mutable","name":"oldValue","nameLocation":"18304:8:58","nodeType":"VariableDeclaration","scope":13415,"src":"18297:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13407,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18297:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13413,"initialValue":{"arguments":[{"id":13410,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13398,"src":"18327:4:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":13411,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13402,"src":"18333:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13409,"name":"extract_4_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13396,"src":"18315:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes4_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes4,uint8) pure returns (bytes1)"}},"id":13412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18315:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"18297:43:58"},{"AST":{"nativeSrc":"18375:136:58","nodeType":"YulBlock","src":"18375:136:58","statements":[{"nativeSrc":"18389:37:58","nodeType":"YulAssignment","src":"18389:37:58","value":{"arguments":[{"name":"value","nativeSrc":"18402:5:58","nodeType":"YulIdentifier","src":"18402:5:58"},{"arguments":[{"kind":"number","nativeSrc":"18413:3:58","nodeType":"YulLiteral","src":"18413:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"18422:1:58","nodeType":"YulLiteral","src":"18422:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18418:3:58","nodeType":"YulIdentifier","src":"18418:3:58"},"nativeSrc":"18418:6:58","nodeType":"YulFunctionCall","src":"18418:6:58"}],"functionName":{"name":"shl","nativeSrc":"18409:3:58","nodeType":"YulIdentifier","src":"18409:3:58"},"nativeSrc":"18409:16:58","nodeType":"YulFunctionCall","src":"18409:16:58"}],"functionName":{"name":"and","nativeSrc":"18398:3:58","nodeType":"YulIdentifier","src":"18398:3:58"},"nativeSrc":"18398:28:58","nodeType":"YulFunctionCall","src":"18398:28:58"},"variableNames":[{"name":"value","nativeSrc":"18389:5:58","nodeType":"YulIdentifier","src":"18389:5:58"}]},{"nativeSrc":"18439:62:58","nodeType":"YulAssignment","src":"18439:62:58","value":{"arguments":[{"name":"self","nativeSrc":"18453:4:58","nodeType":"YulIdentifier","src":"18453:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18467:1:58","nodeType":"YulLiteral","src":"18467:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"18470:6:58","nodeType":"YulIdentifier","src":"18470:6:58"}],"functionName":{"name":"mul","nativeSrc":"18463:3:58","nodeType":"YulIdentifier","src":"18463:3:58"},"nativeSrc":"18463:14:58","nodeType":"YulFunctionCall","src":"18463:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"18483:8:58","nodeType":"YulIdentifier","src":"18483:8:58"},{"name":"value","nativeSrc":"18493:5:58","nodeType":"YulIdentifier","src":"18493:5:58"}],"functionName":{"name":"xor","nativeSrc":"18479:3:58","nodeType":"YulIdentifier","src":"18479:3:58"},"nativeSrc":"18479:20:58","nodeType":"YulFunctionCall","src":"18479:20:58"}],"functionName":{"name":"shr","nativeSrc":"18459:3:58","nodeType":"YulIdentifier","src":"18459:3:58"},"nativeSrc":"18459:41:58","nodeType":"YulFunctionCall","src":"18459:41:58"}],"functionName":{"name":"xor","nativeSrc":"18449:3:58","nodeType":"YulIdentifier","src":"18449:3:58"},"nativeSrc":"18449:52:58","nodeType":"YulFunctionCall","src":"18449:52:58"},"variableNames":[{"name":"result","nativeSrc":"18439:6:58","nodeType":"YulIdentifier","src":"18439:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13402,"isOffset":false,"isSlot":false,"src":"18470:6:58","valueSize":1},{"declaration":13408,"isOffset":false,"isSlot":false,"src":"18483:8:58","valueSize":1},{"declaration":13405,"isOffset":false,"isSlot":false,"src":"18439:6:58","valueSize":1},{"declaration":13398,"isOffset":false,"isSlot":false,"src":"18453:4:58","valueSize":1},{"declaration":13400,"isOffset":false,"isSlot":false,"src":"18389:5:58","valueSize":1},{"declaration":13400,"isOffset":false,"isSlot":false,"src":"18402:5:58","valueSize":1},{"declaration":13400,"isOffset":false,"isSlot":false,"src":"18493:5:58","valueSize":1}],"flags":["memory-safe"],"id":13414,"nodeType":"InlineAssembly","src":"18350:161:58"}]},"id":13416,"implemented":true,"kind":"function","modifiers":[],"name":"replace_4_1","nameLocation":"18196:11:58","nodeType":"FunctionDefinition","parameters":{"id":13403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13398,"mutability":"mutable","name":"self","nameLocation":"18215:4:58","nodeType":"VariableDeclaration","scope":13416,"src":"18208:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13397,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18208:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13400,"mutability":"mutable","name":"value","nameLocation":"18228:5:58","nodeType":"VariableDeclaration","scope":13416,"src":"18221:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13399,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18221:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13402,"mutability":"mutable","name":"offset","nameLocation":"18241:6:58","nodeType":"VariableDeclaration","scope":13416,"src":"18235:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13401,"name":"uint8","nodeType":"ElementaryTypeName","src":"18235:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"18207:41:58"},"returnParameters":{"id":13406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13405,"mutability":"mutable","name":"result","nameLocation":"18279:6:58","nodeType":"VariableDeclaration","scope":13416,"src":"18272:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13404,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18272:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"18271:15:58"},"scope":16305,"src":"18187:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13433,"nodeType":"Block","src":"18609:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13425,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13420,"src":"18623:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":13426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18632:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"18623:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13431,"nodeType":"IfStatement","src":"18619:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13428,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"18642:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18642:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13430,"nodeType":"RevertStatement","src":"18635:25:58"}},{"AST":{"nativeSrc":"18695:82:58","nodeType":"YulBlock","src":"18695:82:58","statements":[{"nativeSrc":"18709:58:58","nodeType":"YulAssignment","src":"18709:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18731:1:58","nodeType":"YulLiteral","src":"18731:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"18734:6:58","nodeType":"YulIdentifier","src":"18734:6:58"}],"functionName":{"name":"mul","nativeSrc":"18727:3:58","nodeType":"YulIdentifier","src":"18727:3:58"},"nativeSrc":"18727:14:58","nodeType":"YulFunctionCall","src":"18727:14:58"},{"name":"self","nativeSrc":"18743:4:58","nodeType":"YulIdentifier","src":"18743:4:58"}],"functionName":{"name":"shl","nativeSrc":"18723:3:58","nodeType":"YulIdentifier","src":"18723:3:58"},"nativeSrc":"18723:25:58","nodeType":"YulFunctionCall","src":"18723:25:58"},{"arguments":[{"kind":"number","nativeSrc":"18754:3:58","nodeType":"YulLiteral","src":"18754:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"18763:1:58","nodeType":"YulLiteral","src":"18763:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18759:3:58","nodeType":"YulIdentifier","src":"18759:3:58"},"nativeSrc":"18759:6:58","nodeType":"YulFunctionCall","src":"18759:6:58"}],"functionName":{"name":"shl","nativeSrc":"18750:3:58","nodeType":"YulIdentifier","src":"18750:3:58"},"nativeSrc":"18750:16:58","nodeType":"YulFunctionCall","src":"18750:16:58"}],"functionName":{"name":"and","nativeSrc":"18719:3:58","nodeType":"YulIdentifier","src":"18719:3:58"},"nativeSrc":"18719:48:58","nodeType":"YulFunctionCall","src":"18719:48:58"},"variableNames":[{"name":"result","nativeSrc":"18709:6:58","nodeType":"YulIdentifier","src":"18709:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13420,"isOffset":false,"isSlot":false,"src":"18734:6:58","valueSize":1},{"declaration":13423,"isOffset":false,"isSlot":false,"src":"18709:6:58","valueSize":1},{"declaration":13418,"isOffset":false,"isSlot":false,"src":"18743:4:58","valueSize":1}],"flags":["memory-safe"],"id":13432,"nodeType":"InlineAssembly","src":"18670:107:58"}]},"id":13434,"implemented":true,"kind":"function","modifiers":[],"name":"extract_4_2","nameLocation":"18532:11:58","nodeType":"FunctionDefinition","parameters":{"id":13421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13418,"mutability":"mutable","name":"self","nameLocation":"18551:4:58","nodeType":"VariableDeclaration","scope":13434,"src":"18544:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13417,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18544:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13420,"mutability":"mutable","name":"offset","nameLocation":"18563:6:58","nodeType":"VariableDeclaration","scope":13434,"src":"18557:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13419,"name":"uint8","nodeType":"ElementaryTypeName","src":"18557:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"18543:27:58"},"returnParameters":{"id":13424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13423,"mutability":"mutable","name":"result","nameLocation":"18601:6:58","nodeType":"VariableDeclaration","scope":13434,"src":"18594:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13422,"name":"bytes2","nodeType":"ElementaryTypeName","src":"18594:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"18593:15:58"},"scope":16305,"src":"18523:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13453,"nodeType":"Block","src":"18889:230:58","statements":[{"assignments":[13446],"declarations":[{"constant":false,"id":13446,"mutability":"mutable","name":"oldValue","nameLocation":"18906:8:58","nodeType":"VariableDeclaration","scope":13453,"src":"18899:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13445,"name":"bytes2","nodeType":"ElementaryTypeName","src":"18899:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":13451,"initialValue":{"arguments":[{"id":13448,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13436,"src":"18929:4:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":13449,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13440,"src":"18935:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13447,"name":"extract_4_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13434,"src":"18917:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes4_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes4,uint8) pure returns (bytes2)"}},"id":13450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18917:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"18899:43:58"},{"AST":{"nativeSrc":"18977:136:58","nodeType":"YulBlock","src":"18977:136:58","statements":[{"nativeSrc":"18991:37:58","nodeType":"YulAssignment","src":"18991:37:58","value":{"arguments":[{"name":"value","nativeSrc":"19004:5:58","nodeType":"YulIdentifier","src":"19004:5:58"},{"arguments":[{"kind":"number","nativeSrc":"19015:3:58","nodeType":"YulLiteral","src":"19015:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"19024:1:58","nodeType":"YulLiteral","src":"19024:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19020:3:58","nodeType":"YulIdentifier","src":"19020:3:58"},"nativeSrc":"19020:6:58","nodeType":"YulFunctionCall","src":"19020:6:58"}],"functionName":{"name":"shl","nativeSrc":"19011:3:58","nodeType":"YulIdentifier","src":"19011:3:58"},"nativeSrc":"19011:16:58","nodeType":"YulFunctionCall","src":"19011:16:58"}],"functionName":{"name":"and","nativeSrc":"19000:3:58","nodeType":"YulIdentifier","src":"19000:3:58"},"nativeSrc":"19000:28:58","nodeType":"YulFunctionCall","src":"19000:28:58"},"variableNames":[{"name":"value","nativeSrc":"18991:5:58","nodeType":"YulIdentifier","src":"18991:5:58"}]},{"nativeSrc":"19041:62:58","nodeType":"YulAssignment","src":"19041:62:58","value":{"arguments":[{"name":"self","nativeSrc":"19055:4:58","nodeType":"YulIdentifier","src":"19055:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19069:1:58","nodeType":"YulLiteral","src":"19069:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"19072:6:58","nodeType":"YulIdentifier","src":"19072:6:58"}],"functionName":{"name":"mul","nativeSrc":"19065:3:58","nodeType":"YulIdentifier","src":"19065:3:58"},"nativeSrc":"19065:14:58","nodeType":"YulFunctionCall","src":"19065:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"19085:8:58","nodeType":"YulIdentifier","src":"19085:8:58"},{"name":"value","nativeSrc":"19095:5:58","nodeType":"YulIdentifier","src":"19095:5:58"}],"functionName":{"name":"xor","nativeSrc":"19081:3:58","nodeType":"YulIdentifier","src":"19081:3:58"},"nativeSrc":"19081:20:58","nodeType":"YulFunctionCall","src":"19081:20:58"}],"functionName":{"name":"shr","nativeSrc":"19061:3:58","nodeType":"YulIdentifier","src":"19061:3:58"},"nativeSrc":"19061:41:58","nodeType":"YulFunctionCall","src":"19061:41:58"}],"functionName":{"name":"xor","nativeSrc":"19051:3:58","nodeType":"YulIdentifier","src":"19051:3:58"},"nativeSrc":"19051:52:58","nodeType":"YulFunctionCall","src":"19051:52:58"},"variableNames":[{"name":"result","nativeSrc":"19041:6:58","nodeType":"YulIdentifier","src":"19041:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13440,"isOffset":false,"isSlot":false,"src":"19072:6:58","valueSize":1},{"declaration":13446,"isOffset":false,"isSlot":false,"src":"19085:8:58","valueSize":1},{"declaration":13443,"isOffset":false,"isSlot":false,"src":"19041:6:58","valueSize":1},{"declaration":13436,"isOffset":false,"isSlot":false,"src":"19055:4:58","valueSize":1},{"declaration":13438,"isOffset":false,"isSlot":false,"src":"18991:5:58","valueSize":1},{"declaration":13438,"isOffset":false,"isSlot":false,"src":"19004:5:58","valueSize":1},{"declaration":13438,"isOffset":false,"isSlot":false,"src":"19095:5:58","valueSize":1}],"flags":["memory-safe"],"id":13452,"nodeType":"InlineAssembly","src":"18952:161:58"}]},"id":13454,"implemented":true,"kind":"function","modifiers":[],"name":"replace_4_2","nameLocation":"18798:11:58","nodeType":"FunctionDefinition","parameters":{"id":13441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13436,"mutability":"mutable","name":"self","nameLocation":"18817:4:58","nodeType":"VariableDeclaration","scope":13454,"src":"18810:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13435,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18810:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13438,"mutability":"mutable","name":"value","nameLocation":"18830:5:58","nodeType":"VariableDeclaration","scope":13454,"src":"18823:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13437,"name":"bytes2","nodeType":"ElementaryTypeName","src":"18823:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13440,"mutability":"mutable","name":"offset","nameLocation":"18843:6:58","nodeType":"VariableDeclaration","scope":13454,"src":"18837:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13439,"name":"uint8","nodeType":"ElementaryTypeName","src":"18837:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"18809:41:58"},"returnParameters":{"id":13444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13443,"mutability":"mutable","name":"result","nameLocation":"18881:6:58","nodeType":"VariableDeclaration","scope":13454,"src":"18874:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13442,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18874:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"18873:15:58"},"scope":16305,"src":"18789:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13471,"nodeType":"Block","src":"19211:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13463,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13458,"src":"19225:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":13464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19234:1:58","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"19225:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13469,"nodeType":"IfStatement","src":"19221:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13466,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"19244:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19244:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13468,"nodeType":"RevertStatement","src":"19237:25:58"}},{"AST":{"nativeSrc":"19297:82:58","nodeType":"YulBlock","src":"19297:82:58","statements":[{"nativeSrc":"19311:58:58","nodeType":"YulAssignment","src":"19311:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19333:1:58","nodeType":"YulLiteral","src":"19333:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"19336:6:58","nodeType":"YulIdentifier","src":"19336:6:58"}],"functionName":{"name":"mul","nativeSrc":"19329:3:58","nodeType":"YulIdentifier","src":"19329:3:58"},"nativeSrc":"19329:14:58","nodeType":"YulFunctionCall","src":"19329:14:58"},{"name":"self","nativeSrc":"19345:4:58","nodeType":"YulIdentifier","src":"19345:4:58"}],"functionName":{"name":"shl","nativeSrc":"19325:3:58","nodeType":"YulIdentifier","src":"19325:3:58"},"nativeSrc":"19325:25:58","nodeType":"YulFunctionCall","src":"19325:25:58"},{"arguments":[{"kind":"number","nativeSrc":"19356:3:58","nodeType":"YulLiteral","src":"19356:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"19365:1:58","nodeType":"YulLiteral","src":"19365:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19361:3:58","nodeType":"YulIdentifier","src":"19361:3:58"},"nativeSrc":"19361:6:58","nodeType":"YulFunctionCall","src":"19361:6:58"}],"functionName":{"name":"shl","nativeSrc":"19352:3:58","nodeType":"YulIdentifier","src":"19352:3:58"},"nativeSrc":"19352:16:58","nodeType":"YulFunctionCall","src":"19352:16:58"}],"functionName":{"name":"and","nativeSrc":"19321:3:58","nodeType":"YulIdentifier","src":"19321:3:58"},"nativeSrc":"19321:48:58","nodeType":"YulFunctionCall","src":"19321:48:58"},"variableNames":[{"name":"result","nativeSrc":"19311:6:58","nodeType":"YulIdentifier","src":"19311:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13458,"isOffset":false,"isSlot":false,"src":"19336:6:58","valueSize":1},{"declaration":13461,"isOffset":false,"isSlot":false,"src":"19311:6:58","valueSize":1},{"declaration":13456,"isOffset":false,"isSlot":false,"src":"19345:4:58","valueSize":1}],"flags":["memory-safe"],"id":13470,"nodeType":"InlineAssembly","src":"19272:107:58"}]},"id":13472,"implemented":true,"kind":"function","modifiers":[],"name":"extract_6_1","nameLocation":"19134:11:58","nodeType":"FunctionDefinition","parameters":{"id":13459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13456,"mutability":"mutable","name":"self","nameLocation":"19153:4:58","nodeType":"VariableDeclaration","scope":13472,"src":"19146:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13455,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19146:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13458,"mutability":"mutable","name":"offset","nameLocation":"19165:6:58","nodeType":"VariableDeclaration","scope":13472,"src":"19159:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13457,"name":"uint8","nodeType":"ElementaryTypeName","src":"19159:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19145:27:58"},"returnParameters":{"id":13462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13461,"mutability":"mutable","name":"result","nameLocation":"19203:6:58","nodeType":"VariableDeclaration","scope":13472,"src":"19196:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13460,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19196:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"19195:15:58"},"scope":16305,"src":"19125:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13491,"nodeType":"Block","src":"19491:230:58","statements":[{"assignments":[13484],"declarations":[{"constant":false,"id":13484,"mutability":"mutable","name":"oldValue","nameLocation":"19508:8:58","nodeType":"VariableDeclaration","scope":13491,"src":"19501:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13483,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19501:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13489,"initialValue":{"arguments":[{"id":13486,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13474,"src":"19531:4:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},{"id":13487,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13478,"src":"19537:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes6","typeString":"bytes6"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13485,"name":"extract_6_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13472,"src":"19519:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes6_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes6,uint8) pure returns (bytes1)"}},"id":13488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19519:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"19501:43:58"},{"AST":{"nativeSrc":"19579:136:58","nodeType":"YulBlock","src":"19579:136:58","statements":[{"nativeSrc":"19593:37:58","nodeType":"YulAssignment","src":"19593:37:58","value":{"arguments":[{"name":"value","nativeSrc":"19606:5:58","nodeType":"YulIdentifier","src":"19606:5:58"},{"arguments":[{"kind":"number","nativeSrc":"19617:3:58","nodeType":"YulLiteral","src":"19617:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"19626:1:58","nodeType":"YulLiteral","src":"19626:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19622:3:58","nodeType":"YulIdentifier","src":"19622:3:58"},"nativeSrc":"19622:6:58","nodeType":"YulFunctionCall","src":"19622:6:58"}],"functionName":{"name":"shl","nativeSrc":"19613:3:58","nodeType":"YulIdentifier","src":"19613:3:58"},"nativeSrc":"19613:16:58","nodeType":"YulFunctionCall","src":"19613:16:58"}],"functionName":{"name":"and","nativeSrc":"19602:3:58","nodeType":"YulIdentifier","src":"19602:3:58"},"nativeSrc":"19602:28:58","nodeType":"YulFunctionCall","src":"19602:28:58"},"variableNames":[{"name":"value","nativeSrc":"19593:5:58","nodeType":"YulIdentifier","src":"19593:5:58"}]},{"nativeSrc":"19643:62:58","nodeType":"YulAssignment","src":"19643:62:58","value":{"arguments":[{"name":"self","nativeSrc":"19657:4:58","nodeType":"YulIdentifier","src":"19657:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19671:1:58","nodeType":"YulLiteral","src":"19671:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"19674:6:58","nodeType":"YulIdentifier","src":"19674:6:58"}],"functionName":{"name":"mul","nativeSrc":"19667:3:58","nodeType":"YulIdentifier","src":"19667:3:58"},"nativeSrc":"19667:14:58","nodeType":"YulFunctionCall","src":"19667:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"19687:8:58","nodeType":"YulIdentifier","src":"19687:8:58"},{"name":"value","nativeSrc":"19697:5:58","nodeType":"YulIdentifier","src":"19697:5:58"}],"functionName":{"name":"xor","nativeSrc":"19683:3:58","nodeType":"YulIdentifier","src":"19683:3:58"},"nativeSrc":"19683:20:58","nodeType":"YulFunctionCall","src":"19683:20:58"}],"functionName":{"name":"shr","nativeSrc":"19663:3:58","nodeType":"YulIdentifier","src":"19663:3:58"},"nativeSrc":"19663:41:58","nodeType":"YulFunctionCall","src":"19663:41:58"}],"functionName":{"name":"xor","nativeSrc":"19653:3:58","nodeType":"YulIdentifier","src":"19653:3:58"},"nativeSrc":"19653:52:58","nodeType":"YulFunctionCall","src":"19653:52:58"},"variableNames":[{"name":"result","nativeSrc":"19643:6:58","nodeType":"YulIdentifier","src":"19643:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13478,"isOffset":false,"isSlot":false,"src":"19674:6:58","valueSize":1},{"declaration":13484,"isOffset":false,"isSlot":false,"src":"19687:8:58","valueSize":1},{"declaration":13481,"isOffset":false,"isSlot":false,"src":"19643:6:58","valueSize":1},{"declaration":13474,"isOffset":false,"isSlot":false,"src":"19657:4:58","valueSize":1},{"declaration":13476,"isOffset":false,"isSlot":false,"src":"19593:5:58","valueSize":1},{"declaration":13476,"isOffset":false,"isSlot":false,"src":"19606:5:58","valueSize":1},{"declaration":13476,"isOffset":false,"isSlot":false,"src":"19697:5:58","valueSize":1}],"flags":["memory-safe"],"id":13490,"nodeType":"InlineAssembly","src":"19554:161:58"}]},"id":13492,"implemented":true,"kind":"function","modifiers":[],"name":"replace_6_1","nameLocation":"19400:11:58","nodeType":"FunctionDefinition","parameters":{"id":13479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13474,"mutability":"mutable","name":"self","nameLocation":"19419:4:58","nodeType":"VariableDeclaration","scope":13492,"src":"19412:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13473,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19412:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13476,"mutability":"mutable","name":"value","nameLocation":"19432:5:58","nodeType":"VariableDeclaration","scope":13492,"src":"19425:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13475,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19425:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13478,"mutability":"mutable","name":"offset","nameLocation":"19445:6:58","nodeType":"VariableDeclaration","scope":13492,"src":"19439:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13477,"name":"uint8","nodeType":"ElementaryTypeName","src":"19439:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19411:41:58"},"returnParameters":{"id":13482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13481,"mutability":"mutable","name":"result","nameLocation":"19483:6:58","nodeType":"VariableDeclaration","scope":13492,"src":"19476:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13480,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19476:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"19475:15:58"},"scope":16305,"src":"19391:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13509,"nodeType":"Block","src":"19813:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13501,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13496,"src":"19827:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":13502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19836:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19827:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13507,"nodeType":"IfStatement","src":"19823:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13504,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"19846:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19846:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13506,"nodeType":"RevertStatement","src":"19839:25:58"}},{"AST":{"nativeSrc":"19899:82:58","nodeType":"YulBlock","src":"19899:82:58","statements":[{"nativeSrc":"19913:58:58","nodeType":"YulAssignment","src":"19913:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19935:1:58","nodeType":"YulLiteral","src":"19935:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"19938:6:58","nodeType":"YulIdentifier","src":"19938:6:58"}],"functionName":{"name":"mul","nativeSrc":"19931:3:58","nodeType":"YulIdentifier","src":"19931:3:58"},"nativeSrc":"19931:14:58","nodeType":"YulFunctionCall","src":"19931:14:58"},{"name":"self","nativeSrc":"19947:4:58","nodeType":"YulIdentifier","src":"19947:4:58"}],"functionName":{"name":"shl","nativeSrc":"19927:3:58","nodeType":"YulIdentifier","src":"19927:3:58"},"nativeSrc":"19927:25:58","nodeType":"YulFunctionCall","src":"19927:25:58"},{"arguments":[{"kind":"number","nativeSrc":"19958:3:58","nodeType":"YulLiteral","src":"19958:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"19967:1:58","nodeType":"YulLiteral","src":"19967:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19963:3:58","nodeType":"YulIdentifier","src":"19963:3:58"},"nativeSrc":"19963:6:58","nodeType":"YulFunctionCall","src":"19963:6:58"}],"functionName":{"name":"shl","nativeSrc":"19954:3:58","nodeType":"YulIdentifier","src":"19954:3:58"},"nativeSrc":"19954:16:58","nodeType":"YulFunctionCall","src":"19954:16:58"}],"functionName":{"name":"and","nativeSrc":"19923:3:58","nodeType":"YulIdentifier","src":"19923:3:58"},"nativeSrc":"19923:48:58","nodeType":"YulFunctionCall","src":"19923:48:58"},"variableNames":[{"name":"result","nativeSrc":"19913:6:58","nodeType":"YulIdentifier","src":"19913:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13496,"isOffset":false,"isSlot":false,"src":"19938:6:58","valueSize":1},{"declaration":13499,"isOffset":false,"isSlot":false,"src":"19913:6:58","valueSize":1},{"declaration":13494,"isOffset":false,"isSlot":false,"src":"19947:4:58","valueSize":1}],"flags":["memory-safe"],"id":13508,"nodeType":"InlineAssembly","src":"19874:107:58"}]},"id":13510,"implemented":true,"kind":"function","modifiers":[],"name":"extract_6_2","nameLocation":"19736:11:58","nodeType":"FunctionDefinition","parameters":{"id":13497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13494,"mutability":"mutable","name":"self","nameLocation":"19755:4:58","nodeType":"VariableDeclaration","scope":13510,"src":"19748:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13493,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19748:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13496,"mutability":"mutable","name":"offset","nameLocation":"19767:6:58","nodeType":"VariableDeclaration","scope":13510,"src":"19761:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13495,"name":"uint8","nodeType":"ElementaryTypeName","src":"19761:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19747:27:58"},"returnParameters":{"id":13500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13499,"mutability":"mutable","name":"result","nameLocation":"19805:6:58","nodeType":"VariableDeclaration","scope":13510,"src":"19798:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13498,"name":"bytes2","nodeType":"ElementaryTypeName","src":"19798:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"19797:15:58"},"scope":16305,"src":"19727:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13529,"nodeType":"Block","src":"20093:230:58","statements":[{"assignments":[13522],"declarations":[{"constant":false,"id":13522,"mutability":"mutable","name":"oldValue","nameLocation":"20110:8:58","nodeType":"VariableDeclaration","scope":13529,"src":"20103:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13521,"name":"bytes2","nodeType":"ElementaryTypeName","src":"20103:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":13527,"initialValue":{"arguments":[{"id":13524,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13512,"src":"20133:4:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},{"id":13525,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13516,"src":"20139:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes6","typeString":"bytes6"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13523,"name":"extract_6_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13510,"src":"20121:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes6_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes6,uint8) pure returns (bytes2)"}},"id":13526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20121:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"20103:43:58"},{"AST":{"nativeSrc":"20181:136:58","nodeType":"YulBlock","src":"20181:136:58","statements":[{"nativeSrc":"20195:37:58","nodeType":"YulAssignment","src":"20195:37:58","value":{"arguments":[{"name":"value","nativeSrc":"20208:5:58","nodeType":"YulIdentifier","src":"20208:5:58"},{"arguments":[{"kind":"number","nativeSrc":"20219:3:58","nodeType":"YulLiteral","src":"20219:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"20228:1:58","nodeType":"YulLiteral","src":"20228:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20224:3:58","nodeType":"YulIdentifier","src":"20224:3:58"},"nativeSrc":"20224:6:58","nodeType":"YulFunctionCall","src":"20224:6:58"}],"functionName":{"name":"shl","nativeSrc":"20215:3:58","nodeType":"YulIdentifier","src":"20215:3:58"},"nativeSrc":"20215:16:58","nodeType":"YulFunctionCall","src":"20215:16:58"}],"functionName":{"name":"and","nativeSrc":"20204:3:58","nodeType":"YulIdentifier","src":"20204:3:58"},"nativeSrc":"20204:28:58","nodeType":"YulFunctionCall","src":"20204:28:58"},"variableNames":[{"name":"value","nativeSrc":"20195:5:58","nodeType":"YulIdentifier","src":"20195:5:58"}]},{"nativeSrc":"20245:62:58","nodeType":"YulAssignment","src":"20245:62:58","value":{"arguments":[{"name":"self","nativeSrc":"20259:4:58","nodeType":"YulIdentifier","src":"20259:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20273:1:58","nodeType":"YulLiteral","src":"20273:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"20276:6:58","nodeType":"YulIdentifier","src":"20276:6:58"}],"functionName":{"name":"mul","nativeSrc":"20269:3:58","nodeType":"YulIdentifier","src":"20269:3:58"},"nativeSrc":"20269:14:58","nodeType":"YulFunctionCall","src":"20269:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"20289:8:58","nodeType":"YulIdentifier","src":"20289:8:58"},{"name":"value","nativeSrc":"20299:5:58","nodeType":"YulIdentifier","src":"20299:5:58"}],"functionName":{"name":"xor","nativeSrc":"20285:3:58","nodeType":"YulIdentifier","src":"20285:3:58"},"nativeSrc":"20285:20:58","nodeType":"YulFunctionCall","src":"20285:20:58"}],"functionName":{"name":"shr","nativeSrc":"20265:3:58","nodeType":"YulIdentifier","src":"20265:3:58"},"nativeSrc":"20265:41:58","nodeType":"YulFunctionCall","src":"20265:41:58"}],"functionName":{"name":"xor","nativeSrc":"20255:3:58","nodeType":"YulIdentifier","src":"20255:3:58"},"nativeSrc":"20255:52:58","nodeType":"YulFunctionCall","src":"20255:52:58"},"variableNames":[{"name":"result","nativeSrc":"20245:6:58","nodeType":"YulIdentifier","src":"20245:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13516,"isOffset":false,"isSlot":false,"src":"20276:6:58","valueSize":1},{"declaration":13522,"isOffset":false,"isSlot":false,"src":"20289:8:58","valueSize":1},{"declaration":13519,"isOffset":false,"isSlot":false,"src":"20245:6:58","valueSize":1},{"declaration":13512,"isOffset":false,"isSlot":false,"src":"20259:4:58","valueSize":1},{"declaration":13514,"isOffset":false,"isSlot":false,"src":"20195:5:58","valueSize":1},{"declaration":13514,"isOffset":false,"isSlot":false,"src":"20208:5:58","valueSize":1},{"declaration":13514,"isOffset":false,"isSlot":false,"src":"20299:5:58","valueSize":1}],"flags":["memory-safe"],"id":13528,"nodeType":"InlineAssembly","src":"20156:161:58"}]},"id":13530,"implemented":true,"kind":"function","modifiers":[],"name":"replace_6_2","nameLocation":"20002:11:58","nodeType":"FunctionDefinition","parameters":{"id":13517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13512,"mutability":"mutable","name":"self","nameLocation":"20021:4:58","nodeType":"VariableDeclaration","scope":13530,"src":"20014:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13511,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20014:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13514,"mutability":"mutable","name":"value","nameLocation":"20034:5:58","nodeType":"VariableDeclaration","scope":13530,"src":"20027:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13513,"name":"bytes2","nodeType":"ElementaryTypeName","src":"20027:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13516,"mutability":"mutable","name":"offset","nameLocation":"20047:6:58","nodeType":"VariableDeclaration","scope":13530,"src":"20041:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13515,"name":"uint8","nodeType":"ElementaryTypeName","src":"20041:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20013:41:58"},"returnParameters":{"id":13520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13519,"mutability":"mutable","name":"result","nameLocation":"20085:6:58","nodeType":"VariableDeclaration","scope":13530,"src":"20078:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13518,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20078:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"20077:15:58"},"scope":16305,"src":"19993:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13547,"nodeType":"Block","src":"20415:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13539,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13534,"src":"20429:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":13540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20438:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"20429:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13545,"nodeType":"IfStatement","src":"20425:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13542,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"20448:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20448:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13544,"nodeType":"RevertStatement","src":"20441:25:58"}},{"AST":{"nativeSrc":"20501:82:58","nodeType":"YulBlock","src":"20501:82:58","statements":[{"nativeSrc":"20515:58:58","nodeType":"YulAssignment","src":"20515:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20537:1:58","nodeType":"YulLiteral","src":"20537:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"20540:6:58","nodeType":"YulIdentifier","src":"20540:6:58"}],"functionName":{"name":"mul","nativeSrc":"20533:3:58","nodeType":"YulIdentifier","src":"20533:3:58"},"nativeSrc":"20533:14:58","nodeType":"YulFunctionCall","src":"20533:14:58"},{"name":"self","nativeSrc":"20549:4:58","nodeType":"YulIdentifier","src":"20549:4:58"}],"functionName":{"name":"shl","nativeSrc":"20529:3:58","nodeType":"YulIdentifier","src":"20529:3:58"},"nativeSrc":"20529:25:58","nodeType":"YulFunctionCall","src":"20529:25:58"},{"arguments":[{"kind":"number","nativeSrc":"20560:3:58","nodeType":"YulLiteral","src":"20560:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"20569:1:58","nodeType":"YulLiteral","src":"20569:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20565:3:58","nodeType":"YulIdentifier","src":"20565:3:58"},"nativeSrc":"20565:6:58","nodeType":"YulFunctionCall","src":"20565:6:58"}],"functionName":{"name":"shl","nativeSrc":"20556:3:58","nodeType":"YulIdentifier","src":"20556:3:58"},"nativeSrc":"20556:16:58","nodeType":"YulFunctionCall","src":"20556:16:58"}],"functionName":{"name":"and","nativeSrc":"20525:3:58","nodeType":"YulIdentifier","src":"20525:3:58"},"nativeSrc":"20525:48:58","nodeType":"YulFunctionCall","src":"20525:48:58"},"variableNames":[{"name":"result","nativeSrc":"20515:6:58","nodeType":"YulIdentifier","src":"20515:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13534,"isOffset":false,"isSlot":false,"src":"20540:6:58","valueSize":1},{"declaration":13537,"isOffset":false,"isSlot":false,"src":"20515:6:58","valueSize":1},{"declaration":13532,"isOffset":false,"isSlot":false,"src":"20549:4:58","valueSize":1}],"flags":["memory-safe"],"id":13546,"nodeType":"InlineAssembly","src":"20476:107:58"}]},"id":13548,"implemented":true,"kind":"function","modifiers":[],"name":"extract_6_4","nameLocation":"20338:11:58","nodeType":"FunctionDefinition","parameters":{"id":13535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13532,"mutability":"mutable","name":"self","nameLocation":"20357:4:58","nodeType":"VariableDeclaration","scope":13548,"src":"20350:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13531,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20350:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13534,"mutability":"mutable","name":"offset","nameLocation":"20369:6:58","nodeType":"VariableDeclaration","scope":13548,"src":"20363:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13533,"name":"uint8","nodeType":"ElementaryTypeName","src":"20363:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20349:27:58"},"returnParameters":{"id":13538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13537,"mutability":"mutable","name":"result","nameLocation":"20407:6:58","nodeType":"VariableDeclaration","scope":13548,"src":"20400:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13536,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20400:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"20399:15:58"},"scope":16305,"src":"20329:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13567,"nodeType":"Block","src":"20695:230:58","statements":[{"assignments":[13560],"declarations":[{"constant":false,"id":13560,"mutability":"mutable","name":"oldValue","nameLocation":"20712:8:58","nodeType":"VariableDeclaration","scope":13567,"src":"20705:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13559,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20705:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":13565,"initialValue":{"arguments":[{"id":13562,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13550,"src":"20735:4:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},{"id":13563,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13554,"src":"20741:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes6","typeString":"bytes6"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13561,"name":"extract_6_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13548,"src":"20723:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes6_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes6,uint8) pure returns (bytes4)"}},"id":13564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20723:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"20705:43:58"},{"AST":{"nativeSrc":"20783:136:58","nodeType":"YulBlock","src":"20783:136:58","statements":[{"nativeSrc":"20797:37:58","nodeType":"YulAssignment","src":"20797:37:58","value":{"arguments":[{"name":"value","nativeSrc":"20810:5:58","nodeType":"YulIdentifier","src":"20810:5:58"},{"arguments":[{"kind":"number","nativeSrc":"20821:3:58","nodeType":"YulLiteral","src":"20821:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"20830:1:58","nodeType":"YulLiteral","src":"20830:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20826:3:58","nodeType":"YulIdentifier","src":"20826:3:58"},"nativeSrc":"20826:6:58","nodeType":"YulFunctionCall","src":"20826:6:58"}],"functionName":{"name":"shl","nativeSrc":"20817:3:58","nodeType":"YulIdentifier","src":"20817:3:58"},"nativeSrc":"20817:16:58","nodeType":"YulFunctionCall","src":"20817:16:58"}],"functionName":{"name":"and","nativeSrc":"20806:3:58","nodeType":"YulIdentifier","src":"20806:3:58"},"nativeSrc":"20806:28:58","nodeType":"YulFunctionCall","src":"20806:28:58"},"variableNames":[{"name":"value","nativeSrc":"20797:5:58","nodeType":"YulIdentifier","src":"20797:5:58"}]},{"nativeSrc":"20847:62:58","nodeType":"YulAssignment","src":"20847:62:58","value":{"arguments":[{"name":"self","nativeSrc":"20861:4:58","nodeType":"YulIdentifier","src":"20861:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20875:1:58","nodeType":"YulLiteral","src":"20875:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"20878:6:58","nodeType":"YulIdentifier","src":"20878:6:58"}],"functionName":{"name":"mul","nativeSrc":"20871:3:58","nodeType":"YulIdentifier","src":"20871:3:58"},"nativeSrc":"20871:14:58","nodeType":"YulFunctionCall","src":"20871:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"20891:8:58","nodeType":"YulIdentifier","src":"20891:8:58"},{"name":"value","nativeSrc":"20901:5:58","nodeType":"YulIdentifier","src":"20901:5:58"}],"functionName":{"name":"xor","nativeSrc":"20887:3:58","nodeType":"YulIdentifier","src":"20887:3:58"},"nativeSrc":"20887:20:58","nodeType":"YulFunctionCall","src":"20887:20:58"}],"functionName":{"name":"shr","nativeSrc":"20867:3:58","nodeType":"YulIdentifier","src":"20867:3:58"},"nativeSrc":"20867:41:58","nodeType":"YulFunctionCall","src":"20867:41:58"}],"functionName":{"name":"xor","nativeSrc":"20857:3:58","nodeType":"YulIdentifier","src":"20857:3:58"},"nativeSrc":"20857:52:58","nodeType":"YulFunctionCall","src":"20857:52:58"},"variableNames":[{"name":"result","nativeSrc":"20847:6:58","nodeType":"YulIdentifier","src":"20847:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13554,"isOffset":false,"isSlot":false,"src":"20878:6:58","valueSize":1},{"declaration":13560,"isOffset":false,"isSlot":false,"src":"20891:8:58","valueSize":1},{"declaration":13557,"isOffset":false,"isSlot":false,"src":"20847:6:58","valueSize":1},{"declaration":13550,"isOffset":false,"isSlot":false,"src":"20861:4:58","valueSize":1},{"declaration":13552,"isOffset":false,"isSlot":false,"src":"20797:5:58","valueSize":1},{"declaration":13552,"isOffset":false,"isSlot":false,"src":"20810:5:58","valueSize":1},{"declaration":13552,"isOffset":false,"isSlot":false,"src":"20901:5:58","valueSize":1}],"flags":["memory-safe"],"id":13566,"nodeType":"InlineAssembly","src":"20758:161:58"}]},"id":13568,"implemented":true,"kind":"function","modifiers":[],"name":"replace_6_4","nameLocation":"20604:11:58","nodeType":"FunctionDefinition","parameters":{"id":13555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13550,"mutability":"mutable","name":"self","nameLocation":"20623:4:58","nodeType":"VariableDeclaration","scope":13568,"src":"20616:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13549,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20616:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13552,"mutability":"mutable","name":"value","nameLocation":"20636:5:58","nodeType":"VariableDeclaration","scope":13568,"src":"20629:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13551,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20629:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13554,"mutability":"mutable","name":"offset","nameLocation":"20649:6:58","nodeType":"VariableDeclaration","scope":13568,"src":"20643:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13553,"name":"uint8","nodeType":"ElementaryTypeName","src":"20643:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20615:41:58"},"returnParameters":{"id":13558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13557,"mutability":"mutable","name":"result","nameLocation":"20687:6:58","nodeType":"VariableDeclaration","scope":13568,"src":"20680:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13556,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20680:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"20679:15:58"},"scope":16305,"src":"20595:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13585,"nodeType":"Block","src":"21017:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13577,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13572,"src":"21031:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":13578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21040:1:58","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"21031:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13583,"nodeType":"IfStatement","src":"21027:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13580,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"21050:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21050:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13582,"nodeType":"RevertStatement","src":"21043:25:58"}},{"AST":{"nativeSrc":"21103:82:58","nodeType":"YulBlock","src":"21103:82:58","statements":[{"nativeSrc":"21117:58:58","nodeType":"YulAssignment","src":"21117:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21139:1:58","nodeType":"YulLiteral","src":"21139:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"21142:6:58","nodeType":"YulIdentifier","src":"21142:6:58"}],"functionName":{"name":"mul","nativeSrc":"21135:3:58","nodeType":"YulIdentifier","src":"21135:3:58"},"nativeSrc":"21135:14:58","nodeType":"YulFunctionCall","src":"21135:14:58"},{"name":"self","nativeSrc":"21151:4:58","nodeType":"YulIdentifier","src":"21151:4:58"}],"functionName":{"name":"shl","nativeSrc":"21131:3:58","nodeType":"YulIdentifier","src":"21131:3:58"},"nativeSrc":"21131:25:58","nodeType":"YulFunctionCall","src":"21131:25:58"},{"arguments":[{"kind":"number","nativeSrc":"21162:3:58","nodeType":"YulLiteral","src":"21162:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"21171:1:58","nodeType":"YulLiteral","src":"21171:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"21167:3:58","nodeType":"YulIdentifier","src":"21167:3:58"},"nativeSrc":"21167:6:58","nodeType":"YulFunctionCall","src":"21167:6:58"}],"functionName":{"name":"shl","nativeSrc":"21158:3:58","nodeType":"YulIdentifier","src":"21158:3:58"},"nativeSrc":"21158:16:58","nodeType":"YulFunctionCall","src":"21158:16:58"}],"functionName":{"name":"and","nativeSrc":"21127:3:58","nodeType":"YulIdentifier","src":"21127:3:58"},"nativeSrc":"21127:48:58","nodeType":"YulFunctionCall","src":"21127:48:58"},"variableNames":[{"name":"result","nativeSrc":"21117:6:58","nodeType":"YulIdentifier","src":"21117:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13572,"isOffset":false,"isSlot":false,"src":"21142:6:58","valueSize":1},{"declaration":13575,"isOffset":false,"isSlot":false,"src":"21117:6:58","valueSize":1},{"declaration":13570,"isOffset":false,"isSlot":false,"src":"21151:4:58","valueSize":1}],"flags":["memory-safe"],"id":13584,"nodeType":"InlineAssembly","src":"21078:107:58"}]},"id":13586,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_1","nameLocation":"20940:11:58","nodeType":"FunctionDefinition","parameters":{"id":13573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13570,"mutability":"mutable","name":"self","nameLocation":"20959:4:58","nodeType":"VariableDeclaration","scope":13586,"src":"20952:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13569,"name":"bytes8","nodeType":"ElementaryTypeName","src":"20952:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13572,"mutability":"mutable","name":"offset","nameLocation":"20971:6:58","nodeType":"VariableDeclaration","scope":13586,"src":"20965:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13571,"name":"uint8","nodeType":"ElementaryTypeName","src":"20965:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20951:27:58"},"returnParameters":{"id":13576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13575,"mutability":"mutable","name":"result","nameLocation":"21009:6:58","nodeType":"VariableDeclaration","scope":13586,"src":"21002:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13574,"name":"bytes1","nodeType":"ElementaryTypeName","src":"21002:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"21001:15:58"},"scope":16305,"src":"20931:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13605,"nodeType":"Block","src":"21297:230:58","statements":[{"assignments":[13598],"declarations":[{"constant":false,"id":13598,"mutability":"mutable","name":"oldValue","nameLocation":"21314:8:58","nodeType":"VariableDeclaration","scope":13605,"src":"21307:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13597,"name":"bytes1","nodeType":"ElementaryTypeName","src":"21307:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13603,"initialValue":{"arguments":[{"id":13600,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13588,"src":"21337:4:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":13601,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13592,"src":"21343:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13599,"name":"extract_8_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13586,"src":"21325:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes8,uint8) pure returns (bytes1)"}},"id":13602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21325:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"21307:43:58"},{"AST":{"nativeSrc":"21385:136:58","nodeType":"YulBlock","src":"21385:136:58","statements":[{"nativeSrc":"21399:37:58","nodeType":"YulAssignment","src":"21399:37:58","value":{"arguments":[{"name":"value","nativeSrc":"21412:5:58","nodeType":"YulIdentifier","src":"21412:5:58"},{"arguments":[{"kind":"number","nativeSrc":"21423:3:58","nodeType":"YulLiteral","src":"21423:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"21432:1:58","nodeType":"YulLiteral","src":"21432:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"21428:3:58","nodeType":"YulIdentifier","src":"21428:3:58"},"nativeSrc":"21428:6:58","nodeType":"YulFunctionCall","src":"21428:6:58"}],"functionName":{"name":"shl","nativeSrc":"21419:3:58","nodeType":"YulIdentifier","src":"21419:3:58"},"nativeSrc":"21419:16:58","nodeType":"YulFunctionCall","src":"21419:16:58"}],"functionName":{"name":"and","nativeSrc":"21408:3:58","nodeType":"YulIdentifier","src":"21408:3:58"},"nativeSrc":"21408:28:58","nodeType":"YulFunctionCall","src":"21408:28:58"},"variableNames":[{"name":"value","nativeSrc":"21399:5:58","nodeType":"YulIdentifier","src":"21399:5:58"}]},{"nativeSrc":"21449:62:58","nodeType":"YulAssignment","src":"21449:62:58","value":{"arguments":[{"name":"self","nativeSrc":"21463:4:58","nodeType":"YulIdentifier","src":"21463:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21477:1:58","nodeType":"YulLiteral","src":"21477:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"21480:6:58","nodeType":"YulIdentifier","src":"21480:6:58"}],"functionName":{"name":"mul","nativeSrc":"21473:3:58","nodeType":"YulIdentifier","src":"21473:3:58"},"nativeSrc":"21473:14:58","nodeType":"YulFunctionCall","src":"21473:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"21493:8:58","nodeType":"YulIdentifier","src":"21493:8:58"},{"name":"value","nativeSrc":"21503:5:58","nodeType":"YulIdentifier","src":"21503:5:58"}],"functionName":{"name":"xor","nativeSrc":"21489:3:58","nodeType":"YulIdentifier","src":"21489:3:58"},"nativeSrc":"21489:20:58","nodeType":"YulFunctionCall","src":"21489:20:58"}],"functionName":{"name":"shr","nativeSrc":"21469:3:58","nodeType":"YulIdentifier","src":"21469:3:58"},"nativeSrc":"21469:41:58","nodeType":"YulFunctionCall","src":"21469:41:58"}],"functionName":{"name":"xor","nativeSrc":"21459:3:58","nodeType":"YulIdentifier","src":"21459:3:58"},"nativeSrc":"21459:52:58","nodeType":"YulFunctionCall","src":"21459:52:58"},"variableNames":[{"name":"result","nativeSrc":"21449:6:58","nodeType":"YulIdentifier","src":"21449:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13592,"isOffset":false,"isSlot":false,"src":"21480:6:58","valueSize":1},{"declaration":13598,"isOffset":false,"isSlot":false,"src":"21493:8:58","valueSize":1},{"declaration":13595,"isOffset":false,"isSlot":false,"src":"21449:6:58","valueSize":1},{"declaration":13588,"isOffset":false,"isSlot":false,"src":"21463:4:58","valueSize":1},{"declaration":13590,"isOffset":false,"isSlot":false,"src":"21399:5:58","valueSize":1},{"declaration":13590,"isOffset":false,"isSlot":false,"src":"21412:5:58","valueSize":1},{"declaration":13590,"isOffset":false,"isSlot":false,"src":"21503:5:58","valueSize":1}],"flags":["memory-safe"],"id":13604,"nodeType":"InlineAssembly","src":"21360:161:58"}]},"id":13606,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_1","nameLocation":"21206:11:58","nodeType":"FunctionDefinition","parameters":{"id":13593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13588,"mutability":"mutable","name":"self","nameLocation":"21225:4:58","nodeType":"VariableDeclaration","scope":13606,"src":"21218:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13587,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21218:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13590,"mutability":"mutable","name":"value","nameLocation":"21238:5:58","nodeType":"VariableDeclaration","scope":13606,"src":"21231:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13589,"name":"bytes1","nodeType":"ElementaryTypeName","src":"21231:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13592,"mutability":"mutable","name":"offset","nameLocation":"21251:6:58","nodeType":"VariableDeclaration","scope":13606,"src":"21245:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13591,"name":"uint8","nodeType":"ElementaryTypeName","src":"21245:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"21217:41:58"},"returnParameters":{"id":13596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13595,"mutability":"mutable","name":"result","nameLocation":"21289:6:58","nodeType":"VariableDeclaration","scope":13606,"src":"21282:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13594,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21282:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"21281:15:58"},"scope":16305,"src":"21197:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13623,"nodeType":"Block","src":"21619:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13615,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13610,"src":"21633:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":13616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21642:1:58","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"21633:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13621,"nodeType":"IfStatement","src":"21629:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13618,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"21652:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21652:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13620,"nodeType":"RevertStatement","src":"21645:25:58"}},{"AST":{"nativeSrc":"21705:82:58","nodeType":"YulBlock","src":"21705:82:58","statements":[{"nativeSrc":"21719:58:58","nodeType":"YulAssignment","src":"21719:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21741:1:58","nodeType":"YulLiteral","src":"21741:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"21744:6:58","nodeType":"YulIdentifier","src":"21744:6:58"}],"functionName":{"name":"mul","nativeSrc":"21737:3:58","nodeType":"YulIdentifier","src":"21737:3:58"},"nativeSrc":"21737:14:58","nodeType":"YulFunctionCall","src":"21737:14:58"},{"name":"self","nativeSrc":"21753:4:58","nodeType":"YulIdentifier","src":"21753:4:58"}],"functionName":{"name":"shl","nativeSrc":"21733:3:58","nodeType":"YulIdentifier","src":"21733:3:58"},"nativeSrc":"21733:25:58","nodeType":"YulFunctionCall","src":"21733:25:58"},{"arguments":[{"kind":"number","nativeSrc":"21764:3:58","nodeType":"YulLiteral","src":"21764:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"21773:1:58","nodeType":"YulLiteral","src":"21773:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"21769:3:58","nodeType":"YulIdentifier","src":"21769:3:58"},"nativeSrc":"21769:6:58","nodeType":"YulFunctionCall","src":"21769:6:58"}],"functionName":{"name":"shl","nativeSrc":"21760:3:58","nodeType":"YulIdentifier","src":"21760:3:58"},"nativeSrc":"21760:16:58","nodeType":"YulFunctionCall","src":"21760:16:58"}],"functionName":{"name":"and","nativeSrc":"21729:3:58","nodeType":"YulIdentifier","src":"21729:3:58"},"nativeSrc":"21729:48:58","nodeType":"YulFunctionCall","src":"21729:48:58"},"variableNames":[{"name":"result","nativeSrc":"21719:6:58","nodeType":"YulIdentifier","src":"21719:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13610,"isOffset":false,"isSlot":false,"src":"21744:6:58","valueSize":1},{"declaration":13613,"isOffset":false,"isSlot":false,"src":"21719:6:58","valueSize":1},{"declaration":13608,"isOffset":false,"isSlot":false,"src":"21753:4:58","valueSize":1}],"flags":["memory-safe"],"id":13622,"nodeType":"InlineAssembly","src":"21680:107:58"}]},"id":13624,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_2","nameLocation":"21542:11:58","nodeType":"FunctionDefinition","parameters":{"id":13611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13608,"mutability":"mutable","name":"self","nameLocation":"21561:4:58","nodeType":"VariableDeclaration","scope":13624,"src":"21554:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13607,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21554:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13610,"mutability":"mutable","name":"offset","nameLocation":"21573:6:58","nodeType":"VariableDeclaration","scope":13624,"src":"21567:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13609,"name":"uint8","nodeType":"ElementaryTypeName","src":"21567:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"21553:27:58"},"returnParameters":{"id":13614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13613,"mutability":"mutable","name":"result","nameLocation":"21611:6:58","nodeType":"VariableDeclaration","scope":13624,"src":"21604:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13612,"name":"bytes2","nodeType":"ElementaryTypeName","src":"21604:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"21603:15:58"},"scope":16305,"src":"21533:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13643,"nodeType":"Block","src":"21899:230:58","statements":[{"assignments":[13636],"declarations":[{"constant":false,"id":13636,"mutability":"mutable","name":"oldValue","nameLocation":"21916:8:58","nodeType":"VariableDeclaration","scope":13643,"src":"21909:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13635,"name":"bytes2","nodeType":"ElementaryTypeName","src":"21909:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":13641,"initialValue":{"arguments":[{"id":13638,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13626,"src":"21939:4:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":13639,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13630,"src":"21945:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13637,"name":"extract_8_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13624,"src":"21927:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes8,uint8) pure returns (bytes2)"}},"id":13640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21927:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"21909:43:58"},{"AST":{"nativeSrc":"21987:136:58","nodeType":"YulBlock","src":"21987:136:58","statements":[{"nativeSrc":"22001:37:58","nodeType":"YulAssignment","src":"22001:37:58","value":{"arguments":[{"name":"value","nativeSrc":"22014:5:58","nodeType":"YulIdentifier","src":"22014:5:58"},{"arguments":[{"kind":"number","nativeSrc":"22025:3:58","nodeType":"YulLiteral","src":"22025:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"22034:1:58","nodeType":"YulLiteral","src":"22034:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22030:3:58","nodeType":"YulIdentifier","src":"22030:3:58"},"nativeSrc":"22030:6:58","nodeType":"YulFunctionCall","src":"22030:6:58"}],"functionName":{"name":"shl","nativeSrc":"22021:3:58","nodeType":"YulIdentifier","src":"22021:3:58"},"nativeSrc":"22021:16:58","nodeType":"YulFunctionCall","src":"22021:16:58"}],"functionName":{"name":"and","nativeSrc":"22010:3:58","nodeType":"YulIdentifier","src":"22010:3:58"},"nativeSrc":"22010:28:58","nodeType":"YulFunctionCall","src":"22010:28:58"},"variableNames":[{"name":"value","nativeSrc":"22001:5:58","nodeType":"YulIdentifier","src":"22001:5:58"}]},{"nativeSrc":"22051:62:58","nodeType":"YulAssignment","src":"22051:62:58","value":{"arguments":[{"name":"self","nativeSrc":"22065:4:58","nodeType":"YulIdentifier","src":"22065:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22079:1:58","nodeType":"YulLiteral","src":"22079:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"22082:6:58","nodeType":"YulIdentifier","src":"22082:6:58"}],"functionName":{"name":"mul","nativeSrc":"22075:3:58","nodeType":"YulIdentifier","src":"22075:3:58"},"nativeSrc":"22075:14:58","nodeType":"YulFunctionCall","src":"22075:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"22095:8:58","nodeType":"YulIdentifier","src":"22095:8:58"},{"name":"value","nativeSrc":"22105:5:58","nodeType":"YulIdentifier","src":"22105:5:58"}],"functionName":{"name":"xor","nativeSrc":"22091:3:58","nodeType":"YulIdentifier","src":"22091:3:58"},"nativeSrc":"22091:20:58","nodeType":"YulFunctionCall","src":"22091:20:58"}],"functionName":{"name":"shr","nativeSrc":"22071:3:58","nodeType":"YulIdentifier","src":"22071:3:58"},"nativeSrc":"22071:41:58","nodeType":"YulFunctionCall","src":"22071:41:58"}],"functionName":{"name":"xor","nativeSrc":"22061:3:58","nodeType":"YulIdentifier","src":"22061:3:58"},"nativeSrc":"22061:52:58","nodeType":"YulFunctionCall","src":"22061:52:58"},"variableNames":[{"name":"result","nativeSrc":"22051:6:58","nodeType":"YulIdentifier","src":"22051:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13630,"isOffset":false,"isSlot":false,"src":"22082:6:58","valueSize":1},{"declaration":13636,"isOffset":false,"isSlot":false,"src":"22095:8:58","valueSize":1},{"declaration":13633,"isOffset":false,"isSlot":false,"src":"22051:6:58","valueSize":1},{"declaration":13626,"isOffset":false,"isSlot":false,"src":"22065:4:58","valueSize":1},{"declaration":13628,"isOffset":false,"isSlot":false,"src":"22001:5:58","valueSize":1},{"declaration":13628,"isOffset":false,"isSlot":false,"src":"22014:5:58","valueSize":1},{"declaration":13628,"isOffset":false,"isSlot":false,"src":"22105:5:58","valueSize":1}],"flags":["memory-safe"],"id":13642,"nodeType":"InlineAssembly","src":"21962:161:58"}]},"id":13644,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_2","nameLocation":"21808:11:58","nodeType":"FunctionDefinition","parameters":{"id":13631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13626,"mutability":"mutable","name":"self","nameLocation":"21827:4:58","nodeType":"VariableDeclaration","scope":13644,"src":"21820:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13625,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21820:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13628,"mutability":"mutable","name":"value","nameLocation":"21840:5:58","nodeType":"VariableDeclaration","scope":13644,"src":"21833:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13627,"name":"bytes2","nodeType":"ElementaryTypeName","src":"21833:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13630,"mutability":"mutable","name":"offset","nameLocation":"21853:6:58","nodeType":"VariableDeclaration","scope":13644,"src":"21847:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13629,"name":"uint8","nodeType":"ElementaryTypeName","src":"21847:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"21819:41:58"},"returnParameters":{"id":13634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13633,"mutability":"mutable","name":"result","nameLocation":"21891:6:58","nodeType":"VariableDeclaration","scope":13644,"src":"21884:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13632,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21884:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"21883:15:58"},"scope":16305,"src":"21799:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13661,"nodeType":"Block","src":"22221:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13653,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13648,"src":"22235:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":13654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22244:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22235:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13659,"nodeType":"IfStatement","src":"22231:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13656,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"22254:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22254:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13658,"nodeType":"RevertStatement","src":"22247:25:58"}},{"AST":{"nativeSrc":"22307:82:58","nodeType":"YulBlock","src":"22307:82:58","statements":[{"nativeSrc":"22321:58:58","nodeType":"YulAssignment","src":"22321:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22343:1:58","nodeType":"YulLiteral","src":"22343:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"22346:6:58","nodeType":"YulIdentifier","src":"22346:6:58"}],"functionName":{"name":"mul","nativeSrc":"22339:3:58","nodeType":"YulIdentifier","src":"22339:3:58"},"nativeSrc":"22339:14:58","nodeType":"YulFunctionCall","src":"22339:14:58"},{"name":"self","nativeSrc":"22355:4:58","nodeType":"YulIdentifier","src":"22355:4:58"}],"functionName":{"name":"shl","nativeSrc":"22335:3:58","nodeType":"YulIdentifier","src":"22335:3:58"},"nativeSrc":"22335:25:58","nodeType":"YulFunctionCall","src":"22335:25:58"},{"arguments":[{"kind":"number","nativeSrc":"22366:3:58","nodeType":"YulLiteral","src":"22366:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"22375:1:58","nodeType":"YulLiteral","src":"22375:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22371:3:58","nodeType":"YulIdentifier","src":"22371:3:58"},"nativeSrc":"22371:6:58","nodeType":"YulFunctionCall","src":"22371:6:58"}],"functionName":{"name":"shl","nativeSrc":"22362:3:58","nodeType":"YulIdentifier","src":"22362:3:58"},"nativeSrc":"22362:16:58","nodeType":"YulFunctionCall","src":"22362:16:58"}],"functionName":{"name":"and","nativeSrc":"22331:3:58","nodeType":"YulIdentifier","src":"22331:3:58"},"nativeSrc":"22331:48:58","nodeType":"YulFunctionCall","src":"22331:48:58"},"variableNames":[{"name":"result","nativeSrc":"22321:6:58","nodeType":"YulIdentifier","src":"22321:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13648,"isOffset":false,"isSlot":false,"src":"22346:6:58","valueSize":1},{"declaration":13651,"isOffset":false,"isSlot":false,"src":"22321:6:58","valueSize":1},{"declaration":13646,"isOffset":false,"isSlot":false,"src":"22355:4:58","valueSize":1}],"flags":["memory-safe"],"id":13660,"nodeType":"InlineAssembly","src":"22282:107:58"}]},"id":13662,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_4","nameLocation":"22144:11:58","nodeType":"FunctionDefinition","parameters":{"id":13649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13646,"mutability":"mutable","name":"self","nameLocation":"22163:4:58","nodeType":"VariableDeclaration","scope":13662,"src":"22156:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13645,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22156:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13648,"mutability":"mutable","name":"offset","nameLocation":"22175:6:58","nodeType":"VariableDeclaration","scope":13662,"src":"22169:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13647,"name":"uint8","nodeType":"ElementaryTypeName","src":"22169:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"22155:27:58"},"returnParameters":{"id":13652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13651,"mutability":"mutable","name":"result","nameLocation":"22213:6:58","nodeType":"VariableDeclaration","scope":13662,"src":"22206:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13650,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22206:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"22205:15:58"},"scope":16305,"src":"22135:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13681,"nodeType":"Block","src":"22501:230:58","statements":[{"assignments":[13674],"declarations":[{"constant":false,"id":13674,"mutability":"mutable","name":"oldValue","nameLocation":"22518:8:58","nodeType":"VariableDeclaration","scope":13681,"src":"22511:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13673,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22511:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":13679,"initialValue":{"arguments":[{"id":13676,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13664,"src":"22541:4:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":13677,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13668,"src":"22547:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13675,"name":"extract_8_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13662,"src":"22529:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes8,uint8) pure returns (bytes4)"}},"id":13678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22529:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"22511:43:58"},{"AST":{"nativeSrc":"22589:136:58","nodeType":"YulBlock","src":"22589:136:58","statements":[{"nativeSrc":"22603:37:58","nodeType":"YulAssignment","src":"22603:37:58","value":{"arguments":[{"name":"value","nativeSrc":"22616:5:58","nodeType":"YulIdentifier","src":"22616:5:58"},{"arguments":[{"kind":"number","nativeSrc":"22627:3:58","nodeType":"YulLiteral","src":"22627:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"22636:1:58","nodeType":"YulLiteral","src":"22636:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22632:3:58","nodeType":"YulIdentifier","src":"22632:3:58"},"nativeSrc":"22632:6:58","nodeType":"YulFunctionCall","src":"22632:6:58"}],"functionName":{"name":"shl","nativeSrc":"22623:3:58","nodeType":"YulIdentifier","src":"22623:3:58"},"nativeSrc":"22623:16:58","nodeType":"YulFunctionCall","src":"22623:16:58"}],"functionName":{"name":"and","nativeSrc":"22612:3:58","nodeType":"YulIdentifier","src":"22612:3:58"},"nativeSrc":"22612:28:58","nodeType":"YulFunctionCall","src":"22612:28:58"},"variableNames":[{"name":"value","nativeSrc":"22603:5:58","nodeType":"YulIdentifier","src":"22603:5:58"}]},{"nativeSrc":"22653:62:58","nodeType":"YulAssignment","src":"22653:62:58","value":{"arguments":[{"name":"self","nativeSrc":"22667:4:58","nodeType":"YulIdentifier","src":"22667:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22681:1:58","nodeType":"YulLiteral","src":"22681:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"22684:6:58","nodeType":"YulIdentifier","src":"22684:6:58"}],"functionName":{"name":"mul","nativeSrc":"22677:3:58","nodeType":"YulIdentifier","src":"22677:3:58"},"nativeSrc":"22677:14:58","nodeType":"YulFunctionCall","src":"22677:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"22697:8:58","nodeType":"YulIdentifier","src":"22697:8:58"},{"name":"value","nativeSrc":"22707:5:58","nodeType":"YulIdentifier","src":"22707:5:58"}],"functionName":{"name":"xor","nativeSrc":"22693:3:58","nodeType":"YulIdentifier","src":"22693:3:58"},"nativeSrc":"22693:20:58","nodeType":"YulFunctionCall","src":"22693:20:58"}],"functionName":{"name":"shr","nativeSrc":"22673:3:58","nodeType":"YulIdentifier","src":"22673:3:58"},"nativeSrc":"22673:41:58","nodeType":"YulFunctionCall","src":"22673:41:58"}],"functionName":{"name":"xor","nativeSrc":"22663:3:58","nodeType":"YulIdentifier","src":"22663:3:58"},"nativeSrc":"22663:52:58","nodeType":"YulFunctionCall","src":"22663:52:58"},"variableNames":[{"name":"result","nativeSrc":"22653:6:58","nodeType":"YulIdentifier","src":"22653:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13668,"isOffset":false,"isSlot":false,"src":"22684:6:58","valueSize":1},{"declaration":13674,"isOffset":false,"isSlot":false,"src":"22697:8:58","valueSize":1},{"declaration":13671,"isOffset":false,"isSlot":false,"src":"22653:6:58","valueSize":1},{"declaration":13664,"isOffset":false,"isSlot":false,"src":"22667:4:58","valueSize":1},{"declaration":13666,"isOffset":false,"isSlot":false,"src":"22603:5:58","valueSize":1},{"declaration":13666,"isOffset":false,"isSlot":false,"src":"22616:5:58","valueSize":1},{"declaration":13666,"isOffset":false,"isSlot":false,"src":"22707:5:58","valueSize":1}],"flags":["memory-safe"],"id":13680,"nodeType":"InlineAssembly","src":"22564:161:58"}]},"id":13682,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_4","nameLocation":"22410:11:58","nodeType":"FunctionDefinition","parameters":{"id":13669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13664,"mutability":"mutable","name":"self","nameLocation":"22429:4:58","nodeType":"VariableDeclaration","scope":13682,"src":"22422:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13663,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22422:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13666,"mutability":"mutable","name":"value","nameLocation":"22442:5:58","nodeType":"VariableDeclaration","scope":13682,"src":"22435:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13665,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22435:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13668,"mutability":"mutable","name":"offset","nameLocation":"22455:6:58","nodeType":"VariableDeclaration","scope":13682,"src":"22449:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13667,"name":"uint8","nodeType":"ElementaryTypeName","src":"22449:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"22421:41:58"},"returnParameters":{"id":13672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13671,"mutability":"mutable","name":"result","nameLocation":"22493:6:58","nodeType":"VariableDeclaration","scope":13682,"src":"22486:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13670,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22486:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"22485:15:58"},"scope":16305,"src":"22401:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13699,"nodeType":"Block","src":"22823:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13691,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13686,"src":"22837:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":13692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22846:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22837:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13697,"nodeType":"IfStatement","src":"22833:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13694,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"22856:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22856:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13696,"nodeType":"RevertStatement","src":"22849:25:58"}},{"AST":{"nativeSrc":"22909:82:58","nodeType":"YulBlock","src":"22909:82:58","statements":[{"nativeSrc":"22923:58:58","nodeType":"YulAssignment","src":"22923:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22945:1:58","nodeType":"YulLiteral","src":"22945:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"22948:6:58","nodeType":"YulIdentifier","src":"22948:6:58"}],"functionName":{"name":"mul","nativeSrc":"22941:3:58","nodeType":"YulIdentifier","src":"22941:3:58"},"nativeSrc":"22941:14:58","nodeType":"YulFunctionCall","src":"22941:14:58"},{"name":"self","nativeSrc":"22957:4:58","nodeType":"YulIdentifier","src":"22957:4:58"}],"functionName":{"name":"shl","nativeSrc":"22937:3:58","nodeType":"YulIdentifier","src":"22937:3:58"},"nativeSrc":"22937:25:58","nodeType":"YulFunctionCall","src":"22937:25:58"},{"arguments":[{"kind":"number","nativeSrc":"22968:3:58","nodeType":"YulLiteral","src":"22968:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"22977:1:58","nodeType":"YulLiteral","src":"22977:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22973:3:58","nodeType":"YulIdentifier","src":"22973:3:58"},"nativeSrc":"22973:6:58","nodeType":"YulFunctionCall","src":"22973:6:58"}],"functionName":{"name":"shl","nativeSrc":"22964:3:58","nodeType":"YulIdentifier","src":"22964:3:58"},"nativeSrc":"22964:16:58","nodeType":"YulFunctionCall","src":"22964:16:58"}],"functionName":{"name":"and","nativeSrc":"22933:3:58","nodeType":"YulIdentifier","src":"22933:3:58"},"nativeSrc":"22933:48:58","nodeType":"YulFunctionCall","src":"22933:48:58"},"variableNames":[{"name":"result","nativeSrc":"22923:6:58","nodeType":"YulIdentifier","src":"22923:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13686,"isOffset":false,"isSlot":false,"src":"22948:6:58","valueSize":1},{"declaration":13689,"isOffset":false,"isSlot":false,"src":"22923:6:58","valueSize":1},{"declaration":13684,"isOffset":false,"isSlot":false,"src":"22957:4:58","valueSize":1}],"flags":["memory-safe"],"id":13698,"nodeType":"InlineAssembly","src":"22884:107:58"}]},"id":13700,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_6","nameLocation":"22746:11:58","nodeType":"FunctionDefinition","parameters":{"id":13687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13684,"mutability":"mutable","name":"self","nameLocation":"22765:4:58","nodeType":"VariableDeclaration","scope":13700,"src":"22758:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13683,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22758:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13686,"mutability":"mutable","name":"offset","nameLocation":"22777:6:58","nodeType":"VariableDeclaration","scope":13700,"src":"22771:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13685,"name":"uint8","nodeType":"ElementaryTypeName","src":"22771:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"22757:27:58"},"returnParameters":{"id":13690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13689,"mutability":"mutable","name":"result","nameLocation":"22815:6:58","nodeType":"VariableDeclaration","scope":13700,"src":"22808:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13688,"name":"bytes6","nodeType":"ElementaryTypeName","src":"22808:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"22807:15:58"},"scope":16305,"src":"22737:260:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13719,"nodeType":"Block","src":"23103:230:58","statements":[{"assignments":[13712],"declarations":[{"constant":false,"id":13712,"mutability":"mutable","name":"oldValue","nameLocation":"23120:8:58","nodeType":"VariableDeclaration","scope":13719,"src":"23113:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13711,"name":"bytes6","nodeType":"ElementaryTypeName","src":"23113:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":13717,"initialValue":{"arguments":[{"id":13714,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13702,"src":"23143:4:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":13715,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13706,"src":"23149:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13713,"name":"extract_8_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13700,"src":"23131:11:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes8,uint8) pure returns (bytes6)"}},"id":13716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23131:25:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"23113:43:58"},{"AST":{"nativeSrc":"23191:136:58","nodeType":"YulBlock","src":"23191:136:58","statements":[{"nativeSrc":"23205:37:58","nodeType":"YulAssignment","src":"23205:37:58","value":{"arguments":[{"name":"value","nativeSrc":"23218:5:58","nodeType":"YulIdentifier","src":"23218:5:58"},{"arguments":[{"kind":"number","nativeSrc":"23229:3:58","nodeType":"YulLiteral","src":"23229:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"23238:1:58","nodeType":"YulLiteral","src":"23238:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23234:3:58","nodeType":"YulIdentifier","src":"23234:3:58"},"nativeSrc":"23234:6:58","nodeType":"YulFunctionCall","src":"23234:6:58"}],"functionName":{"name":"shl","nativeSrc":"23225:3:58","nodeType":"YulIdentifier","src":"23225:3:58"},"nativeSrc":"23225:16:58","nodeType":"YulFunctionCall","src":"23225:16:58"}],"functionName":{"name":"and","nativeSrc":"23214:3:58","nodeType":"YulIdentifier","src":"23214:3:58"},"nativeSrc":"23214:28:58","nodeType":"YulFunctionCall","src":"23214:28:58"},"variableNames":[{"name":"value","nativeSrc":"23205:5:58","nodeType":"YulIdentifier","src":"23205:5:58"}]},{"nativeSrc":"23255:62:58","nodeType":"YulAssignment","src":"23255:62:58","value":{"arguments":[{"name":"self","nativeSrc":"23269:4:58","nodeType":"YulIdentifier","src":"23269:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23283:1:58","nodeType":"YulLiteral","src":"23283:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"23286:6:58","nodeType":"YulIdentifier","src":"23286:6:58"}],"functionName":{"name":"mul","nativeSrc":"23279:3:58","nodeType":"YulIdentifier","src":"23279:3:58"},"nativeSrc":"23279:14:58","nodeType":"YulFunctionCall","src":"23279:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"23299:8:58","nodeType":"YulIdentifier","src":"23299:8:58"},{"name":"value","nativeSrc":"23309:5:58","nodeType":"YulIdentifier","src":"23309:5:58"}],"functionName":{"name":"xor","nativeSrc":"23295:3:58","nodeType":"YulIdentifier","src":"23295:3:58"},"nativeSrc":"23295:20:58","nodeType":"YulFunctionCall","src":"23295:20:58"}],"functionName":{"name":"shr","nativeSrc":"23275:3:58","nodeType":"YulIdentifier","src":"23275:3:58"},"nativeSrc":"23275:41:58","nodeType":"YulFunctionCall","src":"23275:41:58"}],"functionName":{"name":"xor","nativeSrc":"23265:3:58","nodeType":"YulIdentifier","src":"23265:3:58"},"nativeSrc":"23265:52:58","nodeType":"YulFunctionCall","src":"23265:52:58"},"variableNames":[{"name":"result","nativeSrc":"23255:6:58","nodeType":"YulIdentifier","src":"23255:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13706,"isOffset":false,"isSlot":false,"src":"23286:6:58","valueSize":1},{"declaration":13712,"isOffset":false,"isSlot":false,"src":"23299:8:58","valueSize":1},{"declaration":13709,"isOffset":false,"isSlot":false,"src":"23255:6:58","valueSize":1},{"declaration":13702,"isOffset":false,"isSlot":false,"src":"23269:4:58","valueSize":1},{"declaration":13704,"isOffset":false,"isSlot":false,"src":"23205:5:58","valueSize":1},{"declaration":13704,"isOffset":false,"isSlot":false,"src":"23218:5:58","valueSize":1},{"declaration":13704,"isOffset":false,"isSlot":false,"src":"23309:5:58","valueSize":1}],"flags":["memory-safe"],"id":13718,"nodeType":"InlineAssembly","src":"23166:161:58"}]},"id":13720,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_6","nameLocation":"23012:11:58","nodeType":"FunctionDefinition","parameters":{"id":13707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13702,"mutability":"mutable","name":"self","nameLocation":"23031:4:58","nodeType":"VariableDeclaration","scope":13720,"src":"23024:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13701,"name":"bytes8","nodeType":"ElementaryTypeName","src":"23024:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13704,"mutability":"mutable","name":"value","nameLocation":"23044:5:58","nodeType":"VariableDeclaration","scope":13720,"src":"23037:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13703,"name":"bytes6","nodeType":"ElementaryTypeName","src":"23037:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13706,"mutability":"mutable","name":"offset","nameLocation":"23057:6:58","nodeType":"VariableDeclaration","scope":13720,"src":"23051:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13705,"name":"uint8","nodeType":"ElementaryTypeName","src":"23051:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23023:41:58"},"returnParameters":{"id":13710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13709,"mutability":"mutable","name":"result","nameLocation":"23095:6:58","nodeType":"VariableDeclaration","scope":13720,"src":"23088:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13708,"name":"bytes8","nodeType":"ElementaryTypeName","src":"23088:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"23087:15:58"},"scope":16305,"src":"23003:330:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13737,"nodeType":"Block","src":"23427:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13729,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13724,"src":"23441:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":13730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23450:1:58","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"23441:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13735,"nodeType":"IfStatement","src":"23437:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13732,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"23460:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23460:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13734,"nodeType":"RevertStatement","src":"23453:25:58"}},{"AST":{"nativeSrc":"23513:82:58","nodeType":"YulBlock","src":"23513:82:58","statements":[{"nativeSrc":"23527:58:58","nodeType":"YulAssignment","src":"23527:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23549:1:58","nodeType":"YulLiteral","src":"23549:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"23552:6:58","nodeType":"YulIdentifier","src":"23552:6:58"}],"functionName":{"name":"mul","nativeSrc":"23545:3:58","nodeType":"YulIdentifier","src":"23545:3:58"},"nativeSrc":"23545:14:58","nodeType":"YulFunctionCall","src":"23545:14:58"},{"name":"self","nativeSrc":"23561:4:58","nodeType":"YulIdentifier","src":"23561:4:58"}],"functionName":{"name":"shl","nativeSrc":"23541:3:58","nodeType":"YulIdentifier","src":"23541:3:58"},"nativeSrc":"23541:25:58","nodeType":"YulFunctionCall","src":"23541:25:58"},{"arguments":[{"kind":"number","nativeSrc":"23572:3:58","nodeType":"YulLiteral","src":"23572:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"23581:1:58","nodeType":"YulLiteral","src":"23581:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23577:3:58","nodeType":"YulIdentifier","src":"23577:3:58"},"nativeSrc":"23577:6:58","nodeType":"YulFunctionCall","src":"23577:6:58"}],"functionName":{"name":"shl","nativeSrc":"23568:3:58","nodeType":"YulIdentifier","src":"23568:3:58"},"nativeSrc":"23568:16:58","nodeType":"YulFunctionCall","src":"23568:16:58"}],"functionName":{"name":"and","nativeSrc":"23537:3:58","nodeType":"YulIdentifier","src":"23537:3:58"},"nativeSrc":"23537:48:58","nodeType":"YulFunctionCall","src":"23537:48:58"},"variableNames":[{"name":"result","nativeSrc":"23527:6:58","nodeType":"YulIdentifier","src":"23527:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13724,"isOffset":false,"isSlot":false,"src":"23552:6:58","valueSize":1},{"declaration":13727,"isOffset":false,"isSlot":false,"src":"23527:6:58","valueSize":1},{"declaration":13722,"isOffset":false,"isSlot":false,"src":"23561:4:58","valueSize":1}],"flags":["memory-safe"],"id":13736,"nodeType":"InlineAssembly","src":"23488:107:58"}]},"id":13738,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_1","nameLocation":"23348:12:58","nodeType":"FunctionDefinition","parameters":{"id":13725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13722,"mutability":"mutable","name":"self","nameLocation":"23369:4:58","nodeType":"VariableDeclaration","scope":13738,"src":"23361:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13721,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23361:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13724,"mutability":"mutable","name":"offset","nameLocation":"23381:6:58","nodeType":"VariableDeclaration","scope":13738,"src":"23375:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13723,"name":"uint8","nodeType":"ElementaryTypeName","src":"23375:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23360:28:58"},"returnParameters":{"id":13728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13727,"mutability":"mutable","name":"result","nameLocation":"23419:6:58","nodeType":"VariableDeclaration","scope":13738,"src":"23412:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13726,"name":"bytes1","nodeType":"ElementaryTypeName","src":"23412:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"23411:15:58"},"scope":16305,"src":"23339:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13757,"nodeType":"Block","src":"23710:231:58","statements":[{"assignments":[13750],"declarations":[{"constant":false,"id":13750,"mutability":"mutable","name":"oldValue","nameLocation":"23727:8:58","nodeType":"VariableDeclaration","scope":13757,"src":"23720:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13749,"name":"bytes1","nodeType":"ElementaryTypeName","src":"23720:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13755,"initialValue":{"arguments":[{"id":13752,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13740,"src":"23751:4:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":13753,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13744,"src":"23757:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13751,"name":"extract_10_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13738,"src":"23738:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes10,uint8) pure returns (bytes1)"}},"id":13754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23738:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"23720:44:58"},{"AST":{"nativeSrc":"23799:136:58","nodeType":"YulBlock","src":"23799:136:58","statements":[{"nativeSrc":"23813:37:58","nodeType":"YulAssignment","src":"23813:37:58","value":{"arguments":[{"name":"value","nativeSrc":"23826:5:58","nodeType":"YulIdentifier","src":"23826:5:58"},{"arguments":[{"kind":"number","nativeSrc":"23837:3:58","nodeType":"YulLiteral","src":"23837:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"23846:1:58","nodeType":"YulLiteral","src":"23846:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23842:3:58","nodeType":"YulIdentifier","src":"23842:3:58"},"nativeSrc":"23842:6:58","nodeType":"YulFunctionCall","src":"23842:6:58"}],"functionName":{"name":"shl","nativeSrc":"23833:3:58","nodeType":"YulIdentifier","src":"23833:3:58"},"nativeSrc":"23833:16:58","nodeType":"YulFunctionCall","src":"23833:16:58"}],"functionName":{"name":"and","nativeSrc":"23822:3:58","nodeType":"YulIdentifier","src":"23822:3:58"},"nativeSrc":"23822:28:58","nodeType":"YulFunctionCall","src":"23822:28:58"},"variableNames":[{"name":"value","nativeSrc":"23813:5:58","nodeType":"YulIdentifier","src":"23813:5:58"}]},{"nativeSrc":"23863:62:58","nodeType":"YulAssignment","src":"23863:62:58","value":{"arguments":[{"name":"self","nativeSrc":"23877:4:58","nodeType":"YulIdentifier","src":"23877:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23891:1:58","nodeType":"YulLiteral","src":"23891:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"23894:6:58","nodeType":"YulIdentifier","src":"23894:6:58"}],"functionName":{"name":"mul","nativeSrc":"23887:3:58","nodeType":"YulIdentifier","src":"23887:3:58"},"nativeSrc":"23887:14:58","nodeType":"YulFunctionCall","src":"23887:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"23907:8:58","nodeType":"YulIdentifier","src":"23907:8:58"},{"name":"value","nativeSrc":"23917:5:58","nodeType":"YulIdentifier","src":"23917:5:58"}],"functionName":{"name":"xor","nativeSrc":"23903:3:58","nodeType":"YulIdentifier","src":"23903:3:58"},"nativeSrc":"23903:20:58","nodeType":"YulFunctionCall","src":"23903:20:58"}],"functionName":{"name":"shr","nativeSrc":"23883:3:58","nodeType":"YulIdentifier","src":"23883:3:58"},"nativeSrc":"23883:41:58","nodeType":"YulFunctionCall","src":"23883:41:58"}],"functionName":{"name":"xor","nativeSrc":"23873:3:58","nodeType":"YulIdentifier","src":"23873:3:58"},"nativeSrc":"23873:52:58","nodeType":"YulFunctionCall","src":"23873:52:58"},"variableNames":[{"name":"result","nativeSrc":"23863:6:58","nodeType":"YulIdentifier","src":"23863:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13744,"isOffset":false,"isSlot":false,"src":"23894:6:58","valueSize":1},{"declaration":13750,"isOffset":false,"isSlot":false,"src":"23907:8:58","valueSize":1},{"declaration":13747,"isOffset":false,"isSlot":false,"src":"23863:6:58","valueSize":1},{"declaration":13740,"isOffset":false,"isSlot":false,"src":"23877:4:58","valueSize":1},{"declaration":13742,"isOffset":false,"isSlot":false,"src":"23813:5:58","valueSize":1},{"declaration":13742,"isOffset":false,"isSlot":false,"src":"23826:5:58","valueSize":1},{"declaration":13742,"isOffset":false,"isSlot":false,"src":"23917:5:58","valueSize":1}],"flags":["memory-safe"],"id":13756,"nodeType":"InlineAssembly","src":"23774:161:58"}]},"id":13758,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_1","nameLocation":"23616:12:58","nodeType":"FunctionDefinition","parameters":{"id":13745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13740,"mutability":"mutable","name":"self","nameLocation":"23637:4:58","nodeType":"VariableDeclaration","scope":13758,"src":"23629:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13739,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23629:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13742,"mutability":"mutable","name":"value","nameLocation":"23650:5:58","nodeType":"VariableDeclaration","scope":13758,"src":"23643:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13741,"name":"bytes1","nodeType":"ElementaryTypeName","src":"23643:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13744,"mutability":"mutable","name":"offset","nameLocation":"23663:6:58","nodeType":"VariableDeclaration","scope":13758,"src":"23657:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13743,"name":"uint8","nodeType":"ElementaryTypeName","src":"23657:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23628:42:58"},"returnParameters":{"id":13748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13747,"mutability":"mutable","name":"result","nameLocation":"23702:6:58","nodeType":"VariableDeclaration","scope":13758,"src":"23694:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13746,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23694:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"23693:16:58"},"scope":16305,"src":"23607:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13775,"nodeType":"Block","src":"24035:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13767,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13762,"src":"24049:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":13768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24058:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"24049:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13773,"nodeType":"IfStatement","src":"24045:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13770,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"24068:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24068:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13772,"nodeType":"RevertStatement","src":"24061:25:58"}},{"AST":{"nativeSrc":"24121:82:58","nodeType":"YulBlock","src":"24121:82:58","statements":[{"nativeSrc":"24135:58:58","nodeType":"YulAssignment","src":"24135:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24157:1:58","nodeType":"YulLiteral","src":"24157:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"24160:6:58","nodeType":"YulIdentifier","src":"24160:6:58"}],"functionName":{"name":"mul","nativeSrc":"24153:3:58","nodeType":"YulIdentifier","src":"24153:3:58"},"nativeSrc":"24153:14:58","nodeType":"YulFunctionCall","src":"24153:14:58"},{"name":"self","nativeSrc":"24169:4:58","nodeType":"YulIdentifier","src":"24169:4:58"}],"functionName":{"name":"shl","nativeSrc":"24149:3:58","nodeType":"YulIdentifier","src":"24149:3:58"},"nativeSrc":"24149:25:58","nodeType":"YulFunctionCall","src":"24149:25:58"},{"arguments":[{"kind":"number","nativeSrc":"24180:3:58","nodeType":"YulLiteral","src":"24180:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"24189:1:58","nodeType":"YulLiteral","src":"24189:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24185:3:58","nodeType":"YulIdentifier","src":"24185:3:58"},"nativeSrc":"24185:6:58","nodeType":"YulFunctionCall","src":"24185:6:58"}],"functionName":{"name":"shl","nativeSrc":"24176:3:58","nodeType":"YulIdentifier","src":"24176:3:58"},"nativeSrc":"24176:16:58","nodeType":"YulFunctionCall","src":"24176:16:58"}],"functionName":{"name":"and","nativeSrc":"24145:3:58","nodeType":"YulIdentifier","src":"24145:3:58"},"nativeSrc":"24145:48:58","nodeType":"YulFunctionCall","src":"24145:48:58"},"variableNames":[{"name":"result","nativeSrc":"24135:6:58","nodeType":"YulIdentifier","src":"24135:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13762,"isOffset":false,"isSlot":false,"src":"24160:6:58","valueSize":1},{"declaration":13765,"isOffset":false,"isSlot":false,"src":"24135:6:58","valueSize":1},{"declaration":13760,"isOffset":false,"isSlot":false,"src":"24169:4:58","valueSize":1}],"flags":["memory-safe"],"id":13774,"nodeType":"InlineAssembly","src":"24096:107:58"}]},"id":13776,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_2","nameLocation":"23956:12:58","nodeType":"FunctionDefinition","parameters":{"id":13763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13760,"mutability":"mutable","name":"self","nameLocation":"23977:4:58","nodeType":"VariableDeclaration","scope":13776,"src":"23969:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13759,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23969:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13762,"mutability":"mutable","name":"offset","nameLocation":"23989:6:58","nodeType":"VariableDeclaration","scope":13776,"src":"23983:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13761,"name":"uint8","nodeType":"ElementaryTypeName","src":"23983:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23968:28:58"},"returnParameters":{"id":13766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13765,"mutability":"mutable","name":"result","nameLocation":"24027:6:58","nodeType":"VariableDeclaration","scope":13776,"src":"24020:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13764,"name":"bytes2","nodeType":"ElementaryTypeName","src":"24020:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"24019:15:58"},"scope":16305,"src":"23947:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13795,"nodeType":"Block","src":"24318:231:58","statements":[{"assignments":[13788],"declarations":[{"constant":false,"id":13788,"mutability":"mutable","name":"oldValue","nameLocation":"24335:8:58","nodeType":"VariableDeclaration","scope":13795,"src":"24328:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13787,"name":"bytes2","nodeType":"ElementaryTypeName","src":"24328:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":13793,"initialValue":{"arguments":[{"id":13790,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13778,"src":"24359:4:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":13791,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13782,"src":"24365:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13789,"name":"extract_10_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13776,"src":"24346:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes10,uint8) pure returns (bytes2)"}},"id":13792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24346:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"24328:44:58"},{"AST":{"nativeSrc":"24407:136:58","nodeType":"YulBlock","src":"24407:136:58","statements":[{"nativeSrc":"24421:37:58","nodeType":"YulAssignment","src":"24421:37:58","value":{"arguments":[{"name":"value","nativeSrc":"24434:5:58","nodeType":"YulIdentifier","src":"24434:5:58"},{"arguments":[{"kind":"number","nativeSrc":"24445:3:58","nodeType":"YulLiteral","src":"24445:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"24454:1:58","nodeType":"YulLiteral","src":"24454:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24450:3:58","nodeType":"YulIdentifier","src":"24450:3:58"},"nativeSrc":"24450:6:58","nodeType":"YulFunctionCall","src":"24450:6:58"}],"functionName":{"name":"shl","nativeSrc":"24441:3:58","nodeType":"YulIdentifier","src":"24441:3:58"},"nativeSrc":"24441:16:58","nodeType":"YulFunctionCall","src":"24441:16:58"}],"functionName":{"name":"and","nativeSrc":"24430:3:58","nodeType":"YulIdentifier","src":"24430:3:58"},"nativeSrc":"24430:28:58","nodeType":"YulFunctionCall","src":"24430:28:58"},"variableNames":[{"name":"value","nativeSrc":"24421:5:58","nodeType":"YulIdentifier","src":"24421:5:58"}]},{"nativeSrc":"24471:62:58","nodeType":"YulAssignment","src":"24471:62:58","value":{"arguments":[{"name":"self","nativeSrc":"24485:4:58","nodeType":"YulIdentifier","src":"24485:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24499:1:58","nodeType":"YulLiteral","src":"24499:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"24502:6:58","nodeType":"YulIdentifier","src":"24502:6:58"}],"functionName":{"name":"mul","nativeSrc":"24495:3:58","nodeType":"YulIdentifier","src":"24495:3:58"},"nativeSrc":"24495:14:58","nodeType":"YulFunctionCall","src":"24495:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"24515:8:58","nodeType":"YulIdentifier","src":"24515:8:58"},{"name":"value","nativeSrc":"24525:5:58","nodeType":"YulIdentifier","src":"24525:5:58"}],"functionName":{"name":"xor","nativeSrc":"24511:3:58","nodeType":"YulIdentifier","src":"24511:3:58"},"nativeSrc":"24511:20:58","nodeType":"YulFunctionCall","src":"24511:20:58"}],"functionName":{"name":"shr","nativeSrc":"24491:3:58","nodeType":"YulIdentifier","src":"24491:3:58"},"nativeSrc":"24491:41:58","nodeType":"YulFunctionCall","src":"24491:41:58"}],"functionName":{"name":"xor","nativeSrc":"24481:3:58","nodeType":"YulIdentifier","src":"24481:3:58"},"nativeSrc":"24481:52:58","nodeType":"YulFunctionCall","src":"24481:52:58"},"variableNames":[{"name":"result","nativeSrc":"24471:6:58","nodeType":"YulIdentifier","src":"24471:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13782,"isOffset":false,"isSlot":false,"src":"24502:6:58","valueSize":1},{"declaration":13788,"isOffset":false,"isSlot":false,"src":"24515:8:58","valueSize":1},{"declaration":13785,"isOffset":false,"isSlot":false,"src":"24471:6:58","valueSize":1},{"declaration":13778,"isOffset":false,"isSlot":false,"src":"24485:4:58","valueSize":1},{"declaration":13780,"isOffset":false,"isSlot":false,"src":"24421:5:58","valueSize":1},{"declaration":13780,"isOffset":false,"isSlot":false,"src":"24434:5:58","valueSize":1},{"declaration":13780,"isOffset":false,"isSlot":false,"src":"24525:5:58","valueSize":1}],"flags":["memory-safe"],"id":13794,"nodeType":"InlineAssembly","src":"24382:161:58"}]},"id":13796,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_2","nameLocation":"24224:12:58","nodeType":"FunctionDefinition","parameters":{"id":13783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13778,"mutability":"mutable","name":"self","nameLocation":"24245:4:58","nodeType":"VariableDeclaration","scope":13796,"src":"24237:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13777,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24237:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13780,"mutability":"mutable","name":"value","nameLocation":"24258:5:58","nodeType":"VariableDeclaration","scope":13796,"src":"24251:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13779,"name":"bytes2","nodeType":"ElementaryTypeName","src":"24251:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13782,"mutability":"mutable","name":"offset","nameLocation":"24271:6:58","nodeType":"VariableDeclaration","scope":13796,"src":"24265:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13781,"name":"uint8","nodeType":"ElementaryTypeName","src":"24265:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"24236:42:58"},"returnParameters":{"id":13786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13785,"mutability":"mutable","name":"result","nameLocation":"24310:6:58","nodeType":"VariableDeclaration","scope":13796,"src":"24302:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13784,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24302:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"24301:16:58"},"scope":16305,"src":"24215:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13813,"nodeType":"Block","src":"24643:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13805,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13800,"src":"24657:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":13806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24666:1:58","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"24657:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13811,"nodeType":"IfStatement","src":"24653:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13808,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"24676:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24676:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13810,"nodeType":"RevertStatement","src":"24669:25:58"}},{"AST":{"nativeSrc":"24729:82:58","nodeType":"YulBlock","src":"24729:82:58","statements":[{"nativeSrc":"24743:58:58","nodeType":"YulAssignment","src":"24743:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24765:1:58","nodeType":"YulLiteral","src":"24765:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"24768:6:58","nodeType":"YulIdentifier","src":"24768:6:58"}],"functionName":{"name":"mul","nativeSrc":"24761:3:58","nodeType":"YulIdentifier","src":"24761:3:58"},"nativeSrc":"24761:14:58","nodeType":"YulFunctionCall","src":"24761:14:58"},{"name":"self","nativeSrc":"24777:4:58","nodeType":"YulIdentifier","src":"24777:4:58"}],"functionName":{"name":"shl","nativeSrc":"24757:3:58","nodeType":"YulIdentifier","src":"24757:3:58"},"nativeSrc":"24757:25:58","nodeType":"YulFunctionCall","src":"24757:25:58"},{"arguments":[{"kind":"number","nativeSrc":"24788:3:58","nodeType":"YulLiteral","src":"24788:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"24797:1:58","nodeType":"YulLiteral","src":"24797:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24793:3:58","nodeType":"YulIdentifier","src":"24793:3:58"},"nativeSrc":"24793:6:58","nodeType":"YulFunctionCall","src":"24793:6:58"}],"functionName":{"name":"shl","nativeSrc":"24784:3:58","nodeType":"YulIdentifier","src":"24784:3:58"},"nativeSrc":"24784:16:58","nodeType":"YulFunctionCall","src":"24784:16:58"}],"functionName":{"name":"and","nativeSrc":"24753:3:58","nodeType":"YulIdentifier","src":"24753:3:58"},"nativeSrc":"24753:48:58","nodeType":"YulFunctionCall","src":"24753:48:58"},"variableNames":[{"name":"result","nativeSrc":"24743:6:58","nodeType":"YulIdentifier","src":"24743:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13800,"isOffset":false,"isSlot":false,"src":"24768:6:58","valueSize":1},{"declaration":13803,"isOffset":false,"isSlot":false,"src":"24743:6:58","valueSize":1},{"declaration":13798,"isOffset":false,"isSlot":false,"src":"24777:4:58","valueSize":1}],"flags":["memory-safe"],"id":13812,"nodeType":"InlineAssembly","src":"24704:107:58"}]},"id":13814,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_4","nameLocation":"24564:12:58","nodeType":"FunctionDefinition","parameters":{"id":13801,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13798,"mutability":"mutable","name":"self","nameLocation":"24585:4:58","nodeType":"VariableDeclaration","scope":13814,"src":"24577:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13797,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24577:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13800,"mutability":"mutable","name":"offset","nameLocation":"24597:6:58","nodeType":"VariableDeclaration","scope":13814,"src":"24591:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13799,"name":"uint8","nodeType":"ElementaryTypeName","src":"24591:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"24576:28:58"},"returnParameters":{"id":13804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13803,"mutability":"mutable","name":"result","nameLocation":"24635:6:58","nodeType":"VariableDeclaration","scope":13814,"src":"24628:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13802,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24628:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"24627:15:58"},"scope":16305,"src":"24555:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13833,"nodeType":"Block","src":"24926:231:58","statements":[{"assignments":[13826],"declarations":[{"constant":false,"id":13826,"mutability":"mutable","name":"oldValue","nameLocation":"24943:8:58","nodeType":"VariableDeclaration","scope":13833,"src":"24936:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13825,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24936:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":13831,"initialValue":{"arguments":[{"id":13828,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13816,"src":"24967:4:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":13829,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13820,"src":"24973:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13827,"name":"extract_10_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13814,"src":"24954:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes10,uint8) pure returns (bytes4)"}},"id":13830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24954:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"24936:44:58"},{"AST":{"nativeSrc":"25015:136:58","nodeType":"YulBlock","src":"25015:136:58","statements":[{"nativeSrc":"25029:37:58","nodeType":"YulAssignment","src":"25029:37:58","value":{"arguments":[{"name":"value","nativeSrc":"25042:5:58","nodeType":"YulIdentifier","src":"25042:5:58"},{"arguments":[{"kind":"number","nativeSrc":"25053:3:58","nodeType":"YulLiteral","src":"25053:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"25062:1:58","nodeType":"YulLiteral","src":"25062:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25058:3:58","nodeType":"YulIdentifier","src":"25058:3:58"},"nativeSrc":"25058:6:58","nodeType":"YulFunctionCall","src":"25058:6:58"}],"functionName":{"name":"shl","nativeSrc":"25049:3:58","nodeType":"YulIdentifier","src":"25049:3:58"},"nativeSrc":"25049:16:58","nodeType":"YulFunctionCall","src":"25049:16:58"}],"functionName":{"name":"and","nativeSrc":"25038:3:58","nodeType":"YulIdentifier","src":"25038:3:58"},"nativeSrc":"25038:28:58","nodeType":"YulFunctionCall","src":"25038:28:58"},"variableNames":[{"name":"value","nativeSrc":"25029:5:58","nodeType":"YulIdentifier","src":"25029:5:58"}]},{"nativeSrc":"25079:62:58","nodeType":"YulAssignment","src":"25079:62:58","value":{"arguments":[{"name":"self","nativeSrc":"25093:4:58","nodeType":"YulIdentifier","src":"25093:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25107:1:58","nodeType":"YulLiteral","src":"25107:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"25110:6:58","nodeType":"YulIdentifier","src":"25110:6:58"}],"functionName":{"name":"mul","nativeSrc":"25103:3:58","nodeType":"YulIdentifier","src":"25103:3:58"},"nativeSrc":"25103:14:58","nodeType":"YulFunctionCall","src":"25103:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"25123:8:58","nodeType":"YulIdentifier","src":"25123:8:58"},{"name":"value","nativeSrc":"25133:5:58","nodeType":"YulIdentifier","src":"25133:5:58"}],"functionName":{"name":"xor","nativeSrc":"25119:3:58","nodeType":"YulIdentifier","src":"25119:3:58"},"nativeSrc":"25119:20:58","nodeType":"YulFunctionCall","src":"25119:20:58"}],"functionName":{"name":"shr","nativeSrc":"25099:3:58","nodeType":"YulIdentifier","src":"25099:3:58"},"nativeSrc":"25099:41:58","nodeType":"YulFunctionCall","src":"25099:41:58"}],"functionName":{"name":"xor","nativeSrc":"25089:3:58","nodeType":"YulIdentifier","src":"25089:3:58"},"nativeSrc":"25089:52:58","nodeType":"YulFunctionCall","src":"25089:52:58"},"variableNames":[{"name":"result","nativeSrc":"25079:6:58","nodeType":"YulIdentifier","src":"25079:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13820,"isOffset":false,"isSlot":false,"src":"25110:6:58","valueSize":1},{"declaration":13826,"isOffset":false,"isSlot":false,"src":"25123:8:58","valueSize":1},{"declaration":13823,"isOffset":false,"isSlot":false,"src":"25079:6:58","valueSize":1},{"declaration":13816,"isOffset":false,"isSlot":false,"src":"25093:4:58","valueSize":1},{"declaration":13818,"isOffset":false,"isSlot":false,"src":"25029:5:58","valueSize":1},{"declaration":13818,"isOffset":false,"isSlot":false,"src":"25042:5:58","valueSize":1},{"declaration":13818,"isOffset":false,"isSlot":false,"src":"25133:5:58","valueSize":1}],"flags":["memory-safe"],"id":13832,"nodeType":"InlineAssembly","src":"24990:161:58"}]},"id":13834,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_4","nameLocation":"24832:12:58","nodeType":"FunctionDefinition","parameters":{"id":13821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13816,"mutability":"mutable","name":"self","nameLocation":"24853:4:58","nodeType":"VariableDeclaration","scope":13834,"src":"24845:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13815,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24845:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13818,"mutability":"mutable","name":"value","nameLocation":"24866:5:58","nodeType":"VariableDeclaration","scope":13834,"src":"24859:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13817,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24859:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":13820,"mutability":"mutable","name":"offset","nameLocation":"24879:6:58","nodeType":"VariableDeclaration","scope":13834,"src":"24873:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13819,"name":"uint8","nodeType":"ElementaryTypeName","src":"24873:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"24844:42:58"},"returnParameters":{"id":13824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13823,"mutability":"mutable","name":"result","nameLocation":"24918:6:58","nodeType":"VariableDeclaration","scope":13834,"src":"24910:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13822,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24910:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"24909:16:58"},"scope":16305,"src":"24823:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13851,"nodeType":"Block","src":"25251:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13843,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13838,"src":"25265:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":13844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25274:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25265:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13849,"nodeType":"IfStatement","src":"25261:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13846,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"25284:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25284:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13848,"nodeType":"RevertStatement","src":"25277:25:58"}},{"AST":{"nativeSrc":"25337:82:58","nodeType":"YulBlock","src":"25337:82:58","statements":[{"nativeSrc":"25351:58:58","nodeType":"YulAssignment","src":"25351:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25373:1:58","nodeType":"YulLiteral","src":"25373:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"25376:6:58","nodeType":"YulIdentifier","src":"25376:6:58"}],"functionName":{"name":"mul","nativeSrc":"25369:3:58","nodeType":"YulIdentifier","src":"25369:3:58"},"nativeSrc":"25369:14:58","nodeType":"YulFunctionCall","src":"25369:14:58"},{"name":"self","nativeSrc":"25385:4:58","nodeType":"YulIdentifier","src":"25385:4:58"}],"functionName":{"name":"shl","nativeSrc":"25365:3:58","nodeType":"YulIdentifier","src":"25365:3:58"},"nativeSrc":"25365:25:58","nodeType":"YulFunctionCall","src":"25365:25:58"},{"arguments":[{"kind":"number","nativeSrc":"25396:3:58","nodeType":"YulLiteral","src":"25396:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"25405:1:58","nodeType":"YulLiteral","src":"25405:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25401:3:58","nodeType":"YulIdentifier","src":"25401:3:58"},"nativeSrc":"25401:6:58","nodeType":"YulFunctionCall","src":"25401:6:58"}],"functionName":{"name":"shl","nativeSrc":"25392:3:58","nodeType":"YulIdentifier","src":"25392:3:58"},"nativeSrc":"25392:16:58","nodeType":"YulFunctionCall","src":"25392:16:58"}],"functionName":{"name":"and","nativeSrc":"25361:3:58","nodeType":"YulIdentifier","src":"25361:3:58"},"nativeSrc":"25361:48:58","nodeType":"YulFunctionCall","src":"25361:48:58"},"variableNames":[{"name":"result","nativeSrc":"25351:6:58","nodeType":"YulIdentifier","src":"25351:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13838,"isOffset":false,"isSlot":false,"src":"25376:6:58","valueSize":1},{"declaration":13841,"isOffset":false,"isSlot":false,"src":"25351:6:58","valueSize":1},{"declaration":13836,"isOffset":false,"isSlot":false,"src":"25385:4:58","valueSize":1}],"flags":["memory-safe"],"id":13850,"nodeType":"InlineAssembly","src":"25312:107:58"}]},"id":13852,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_6","nameLocation":"25172:12:58","nodeType":"FunctionDefinition","parameters":{"id":13839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13836,"mutability":"mutable","name":"self","nameLocation":"25193:4:58","nodeType":"VariableDeclaration","scope":13852,"src":"25185:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13835,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25185:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13838,"mutability":"mutable","name":"offset","nameLocation":"25205:6:58","nodeType":"VariableDeclaration","scope":13852,"src":"25199:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13837,"name":"uint8","nodeType":"ElementaryTypeName","src":"25199:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"25184:28:58"},"returnParameters":{"id":13842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13841,"mutability":"mutable","name":"result","nameLocation":"25243:6:58","nodeType":"VariableDeclaration","scope":13852,"src":"25236:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13840,"name":"bytes6","nodeType":"ElementaryTypeName","src":"25236:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"25235:15:58"},"scope":16305,"src":"25163:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13871,"nodeType":"Block","src":"25534:231:58","statements":[{"assignments":[13864],"declarations":[{"constant":false,"id":13864,"mutability":"mutable","name":"oldValue","nameLocation":"25551:8:58","nodeType":"VariableDeclaration","scope":13871,"src":"25544:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13863,"name":"bytes6","nodeType":"ElementaryTypeName","src":"25544:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":13869,"initialValue":{"arguments":[{"id":13866,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13854,"src":"25575:4:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":13867,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13858,"src":"25581:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13865,"name":"extract_10_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13852,"src":"25562:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes10,uint8) pure returns (bytes6)"}},"id":13868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25562:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"25544:44:58"},{"AST":{"nativeSrc":"25623:136:58","nodeType":"YulBlock","src":"25623:136:58","statements":[{"nativeSrc":"25637:37:58","nodeType":"YulAssignment","src":"25637:37:58","value":{"arguments":[{"name":"value","nativeSrc":"25650:5:58","nodeType":"YulIdentifier","src":"25650:5:58"},{"arguments":[{"kind":"number","nativeSrc":"25661:3:58","nodeType":"YulLiteral","src":"25661:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"25670:1:58","nodeType":"YulLiteral","src":"25670:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25666:3:58","nodeType":"YulIdentifier","src":"25666:3:58"},"nativeSrc":"25666:6:58","nodeType":"YulFunctionCall","src":"25666:6:58"}],"functionName":{"name":"shl","nativeSrc":"25657:3:58","nodeType":"YulIdentifier","src":"25657:3:58"},"nativeSrc":"25657:16:58","nodeType":"YulFunctionCall","src":"25657:16:58"}],"functionName":{"name":"and","nativeSrc":"25646:3:58","nodeType":"YulIdentifier","src":"25646:3:58"},"nativeSrc":"25646:28:58","nodeType":"YulFunctionCall","src":"25646:28:58"},"variableNames":[{"name":"value","nativeSrc":"25637:5:58","nodeType":"YulIdentifier","src":"25637:5:58"}]},{"nativeSrc":"25687:62:58","nodeType":"YulAssignment","src":"25687:62:58","value":{"arguments":[{"name":"self","nativeSrc":"25701:4:58","nodeType":"YulIdentifier","src":"25701:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25715:1:58","nodeType":"YulLiteral","src":"25715:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"25718:6:58","nodeType":"YulIdentifier","src":"25718:6:58"}],"functionName":{"name":"mul","nativeSrc":"25711:3:58","nodeType":"YulIdentifier","src":"25711:3:58"},"nativeSrc":"25711:14:58","nodeType":"YulFunctionCall","src":"25711:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"25731:8:58","nodeType":"YulIdentifier","src":"25731:8:58"},{"name":"value","nativeSrc":"25741:5:58","nodeType":"YulIdentifier","src":"25741:5:58"}],"functionName":{"name":"xor","nativeSrc":"25727:3:58","nodeType":"YulIdentifier","src":"25727:3:58"},"nativeSrc":"25727:20:58","nodeType":"YulFunctionCall","src":"25727:20:58"}],"functionName":{"name":"shr","nativeSrc":"25707:3:58","nodeType":"YulIdentifier","src":"25707:3:58"},"nativeSrc":"25707:41:58","nodeType":"YulFunctionCall","src":"25707:41:58"}],"functionName":{"name":"xor","nativeSrc":"25697:3:58","nodeType":"YulIdentifier","src":"25697:3:58"},"nativeSrc":"25697:52:58","nodeType":"YulFunctionCall","src":"25697:52:58"},"variableNames":[{"name":"result","nativeSrc":"25687:6:58","nodeType":"YulIdentifier","src":"25687:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13858,"isOffset":false,"isSlot":false,"src":"25718:6:58","valueSize":1},{"declaration":13864,"isOffset":false,"isSlot":false,"src":"25731:8:58","valueSize":1},{"declaration":13861,"isOffset":false,"isSlot":false,"src":"25687:6:58","valueSize":1},{"declaration":13854,"isOffset":false,"isSlot":false,"src":"25701:4:58","valueSize":1},{"declaration":13856,"isOffset":false,"isSlot":false,"src":"25637:5:58","valueSize":1},{"declaration":13856,"isOffset":false,"isSlot":false,"src":"25650:5:58","valueSize":1},{"declaration":13856,"isOffset":false,"isSlot":false,"src":"25741:5:58","valueSize":1}],"flags":["memory-safe"],"id":13870,"nodeType":"InlineAssembly","src":"25598:161:58"}]},"id":13872,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_6","nameLocation":"25440:12:58","nodeType":"FunctionDefinition","parameters":{"id":13859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13854,"mutability":"mutable","name":"self","nameLocation":"25461:4:58","nodeType":"VariableDeclaration","scope":13872,"src":"25453:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13853,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25453:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13856,"mutability":"mutable","name":"value","nameLocation":"25474:5:58","nodeType":"VariableDeclaration","scope":13872,"src":"25467:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":13855,"name":"bytes6","nodeType":"ElementaryTypeName","src":"25467:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":13858,"mutability":"mutable","name":"offset","nameLocation":"25487:6:58","nodeType":"VariableDeclaration","scope":13872,"src":"25481:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13857,"name":"uint8","nodeType":"ElementaryTypeName","src":"25481:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"25452:42:58"},"returnParameters":{"id":13862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13861,"mutability":"mutable","name":"result","nameLocation":"25526:6:58","nodeType":"VariableDeclaration","scope":13872,"src":"25518:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13860,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25518:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"25517:16:58"},"scope":16305,"src":"25431:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13889,"nodeType":"Block","src":"25859:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13881,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13876,"src":"25873:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":13882,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25882:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"25873:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13887,"nodeType":"IfStatement","src":"25869:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13884,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"25892:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25892:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13886,"nodeType":"RevertStatement","src":"25885:25:58"}},{"AST":{"nativeSrc":"25945:82:58","nodeType":"YulBlock","src":"25945:82:58","statements":[{"nativeSrc":"25959:58:58","nodeType":"YulAssignment","src":"25959:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25981:1:58","nodeType":"YulLiteral","src":"25981:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"25984:6:58","nodeType":"YulIdentifier","src":"25984:6:58"}],"functionName":{"name":"mul","nativeSrc":"25977:3:58","nodeType":"YulIdentifier","src":"25977:3:58"},"nativeSrc":"25977:14:58","nodeType":"YulFunctionCall","src":"25977:14:58"},{"name":"self","nativeSrc":"25993:4:58","nodeType":"YulIdentifier","src":"25993:4:58"}],"functionName":{"name":"shl","nativeSrc":"25973:3:58","nodeType":"YulIdentifier","src":"25973:3:58"},"nativeSrc":"25973:25:58","nodeType":"YulFunctionCall","src":"25973:25:58"},{"arguments":[{"kind":"number","nativeSrc":"26004:3:58","nodeType":"YulLiteral","src":"26004:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"26013:1:58","nodeType":"YulLiteral","src":"26013:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26009:3:58","nodeType":"YulIdentifier","src":"26009:3:58"},"nativeSrc":"26009:6:58","nodeType":"YulFunctionCall","src":"26009:6:58"}],"functionName":{"name":"shl","nativeSrc":"26000:3:58","nodeType":"YulIdentifier","src":"26000:3:58"},"nativeSrc":"26000:16:58","nodeType":"YulFunctionCall","src":"26000:16:58"}],"functionName":{"name":"and","nativeSrc":"25969:3:58","nodeType":"YulIdentifier","src":"25969:3:58"},"nativeSrc":"25969:48:58","nodeType":"YulFunctionCall","src":"25969:48:58"},"variableNames":[{"name":"result","nativeSrc":"25959:6:58","nodeType":"YulIdentifier","src":"25959:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13876,"isOffset":false,"isSlot":false,"src":"25984:6:58","valueSize":1},{"declaration":13879,"isOffset":false,"isSlot":false,"src":"25959:6:58","valueSize":1},{"declaration":13874,"isOffset":false,"isSlot":false,"src":"25993:4:58","valueSize":1}],"flags":["memory-safe"],"id":13888,"nodeType":"InlineAssembly","src":"25920:107:58"}]},"id":13890,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_8","nameLocation":"25780:12:58","nodeType":"FunctionDefinition","parameters":{"id":13877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13874,"mutability":"mutable","name":"self","nameLocation":"25801:4:58","nodeType":"VariableDeclaration","scope":13890,"src":"25793:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13873,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25793:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13876,"mutability":"mutable","name":"offset","nameLocation":"25813:6:58","nodeType":"VariableDeclaration","scope":13890,"src":"25807:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13875,"name":"uint8","nodeType":"ElementaryTypeName","src":"25807:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"25792:28:58"},"returnParameters":{"id":13880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13879,"mutability":"mutable","name":"result","nameLocation":"25851:6:58","nodeType":"VariableDeclaration","scope":13890,"src":"25844:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13878,"name":"bytes8","nodeType":"ElementaryTypeName","src":"25844:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"25843:15:58"},"scope":16305,"src":"25771:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13909,"nodeType":"Block","src":"26142:231:58","statements":[{"assignments":[13902],"declarations":[{"constant":false,"id":13902,"mutability":"mutable","name":"oldValue","nameLocation":"26159:8:58","nodeType":"VariableDeclaration","scope":13909,"src":"26152:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13901,"name":"bytes8","nodeType":"ElementaryTypeName","src":"26152:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":13907,"initialValue":{"arguments":[{"id":13904,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"26183:4:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":13905,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13896,"src":"26189:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13903,"name":"extract_10_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13890,"src":"26170:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes10,uint8) pure returns (bytes8)"}},"id":13906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26170:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"26152:44:58"},{"AST":{"nativeSrc":"26231:136:58","nodeType":"YulBlock","src":"26231:136:58","statements":[{"nativeSrc":"26245:37:58","nodeType":"YulAssignment","src":"26245:37:58","value":{"arguments":[{"name":"value","nativeSrc":"26258:5:58","nodeType":"YulIdentifier","src":"26258:5:58"},{"arguments":[{"kind":"number","nativeSrc":"26269:3:58","nodeType":"YulLiteral","src":"26269:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"26278:1:58","nodeType":"YulLiteral","src":"26278:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26274:3:58","nodeType":"YulIdentifier","src":"26274:3:58"},"nativeSrc":"26274:6:58","nodeType":"YulFunctionCall","src":"26274:6:58"}],"functionName":{"name":"shl","nativeSrc":"26265:3:58","nodeType":"YulIdentifier","src":"26265:3:58"},"nativeSrc":"26265:16:58","nodeType":"YulFunctionCall","src":"26265:16:58"}],"functionName":{"name":"and","nativeSrc":"26254:3:58","nodeType":"YulIdentifier","src":"26254:3:58"},"nativeSrc":"26254:28:58","nodeType":"YulFunctionCall","src":"26254:28:58"},"variableNames":[{"name":"value","nativeSrc":"26245:5:58","nodeType":"YulIdentifier","src":"26245:5:58"}]},{"nativeSrc":"26295:62:58","nodeType":"YulAssignment","src":"26295:62:58","value":{"arguments":[{"name":"self","nativeSrc":"26309:4:58","nodeType":"YulIdentifier","src":"26309:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26323:1:58","nodeType":"YulLiteral","src":"26323:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"26326:6:58","nodeType":"YulIdentifier","src":"26326:6:58"}],"functionName":{"name":"mul","nativeSrc":"26319:3:58","nodeType":"YulIdentifier","src":"26319:3:58"},"nativeSrc":"26319:14:58","nodeType":"YulFunctionCall","src":"26319:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"26339:8:58","nodeType":"YulIdentifier","src":"26339:8:58"},{"name":"value","nativeSrc":"26349:5:58","nodeType":"YulIdentifier","src":"26349:5:58"}],"functionName":{"name":"xor","nativeSrc":"26335:3:58","nodeType":"YulIdentifier","src":"26335:3:58"},"nativeSrc":"26335:20:58","nodeType":"YulFunctionCall","src":"26335:20:58"}],"functionName":{"name":"shr","nativeSrc":"26315:3:58","nodeType":"YulIdentifier","src":"26315:3:58"},"nativeSrc":"26315:41:58","nodeType":"YulFunctionCall","src":"26315:41:58"}],"functionName":{"name":"xor","nativeSrc":"26305:3:58","nodeType":"YulIdentifier","src":"26305:3:58"},"nativeSrc":"26305:52:58","nodeType":"YulFunctionCall","src":"26305:52:58"},"variableNames":[{"name":"result","nativeSrc":"26295:6:58","nodeType":"YulIdentifier","src":"26295:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13896,"isOffset":false,"isSlot":false,"src":"26326:6:58","valueSize":1},{"declaration":13902,"isOffset":false,"isSlot":false,"src":"26339:8:58","valueSize":1},{"declaration":13899,"isOffset":false,"isSlot":false,"src":"26295:6:58","valueSize":1},{"declaration":13892,"isOffset":false,"isSlot":false,"src":"26309:4:58","valueSize":1},{"declaration":13894,"isOffset":false,"isSlot":false,"src":"26245:5:58","valueSize":1},{"declaration":13894,"isOffset":false,"isSlot":false,"src":"26258:5:58","valueSize":1},{"declaration":13894,"isOffset":false,"isSlot":false,"src":"26349:5:58","valueSize":1}],"flags":["memory-safe"],"id":13908,"nodeType":"InlineAssembly","src":"26206:161:58"}]},"id":13910,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_8","nameLocation":"26048:12:58","nodeType":"FunctionDefinition","parameters":{"id":13897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13892,"mutability":"mutable","name":"self","nameLocation":"26069:4:58","nodeType":"VariableDeclaration","scope":13910,"src":"26061:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13891,"name":"bytes10","nodeType":"ElementaryTypeName","src":"26061:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":13894,"mutability":"mutable","name":"value","nameLocation":"26082:5:58","nodeType":"VariableDeclaration","scope":13910,"src":"26075:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":13893,"name":"bytes8","nodeType":"ElementaryTypeName","src":"26075:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":13896,"mutability":"mutable","name":"offset","nameLocation":"26095:6:58","nodeType":"VariableDeclaration","scope":13910,"src":"26089:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13895,"name":"uint8","nodeType":"ElementaryTypeName","src":"26089:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"26060:42:58"},"returnParameters":{"id":13900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13899,"mutability":"mutable","name":"result","nameLocation":"26134:6:58","nodeType":"VariableDeclaration","scope":13910,"src":"26126:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":13898,"name":"bytes10","nodeType":"ElementaryTypeName","src":"26126:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"26125:16:58"},"scope":16305,"src":"26039:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13927,"nodeType":"Block","src":"26467:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13919,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13914,"src":"26481:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3131","id":13920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26490:2:58","typeDescriptions":{"typeIdentifier":"t_rational_11_by_1","typeString":"int_const 11"},"value":"11"},"src":"26481:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13925,"nodeType":"IfStatement","src":"26477:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13922,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"26501:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26501:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13924,"nodeType":"RevertStatement","src":"26494:25:58"}},{"AST":{"nativeSrc":"26554:82:58","nodeType":"YulBlock","src":"26554:82:58","statements":[{"nativeSrc":"26568:58:58","nodeType":"YulAssignment","src":"26568:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26590:1:58","nodeType":"YulLiteral","src":"26590:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"26593:6:58","nodeType":"YulIdentifier","src":"26593:6:58"}],"functionName":{"name":"mul","nativeSrc":"26586:3:58","nodeType":"YulIdentifier","src":"26586:3:58"},"nativeSrc":"26586:14:58","nodeType":"YulFunctionCall","src":"26586:14:58"},{"name":"self","nativeSrc":"26602:4:58","nodeType":"YulIdentifier","src":"26602:4:58"}],"functionName":{"name":"shl","nativeSrc":"26582:3:58","nodeType":"YulIdentifier","src":"26582:3:58"},"nativeSrc":"26582:25:58","nodeType":"YulFunctionCall","src":"26582:25:58"},{"arguments":[{"kind":"number","nativeSrc":"26613:3:58","nodeType":"YulLiteral","src":"26613:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"26622:1:58","nodeType":"YulLiteral","src":"26622:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26618:3:58","nodeType":"YulIdentifier","src":"26618:3:58"},"nativeSrc":"26618:6:58","nodeType":"YulFunctionCall","src":"26618:6:58"}],"functionName":{"name":"shl","nativeSrc":"26609:3:58","nodeType":"YulIdentifier","src":"26609:3:58"},"nativeSrc":"26609:16:58","nodeType":"YulFunctionCall","src":"26609:16:58"}],"functionName":{"name":"and","nativeSrc":"26578:3:58","nodeType":"YulIdentifier","src":"26578:3:58"},"nativeSrc":"26578:48:58","nodeType":"YulFunctionCall","src":"26578:48:58"},"variableNames":[{"name":"result","nativeSrc":"26568:6:58","nodeType":"YulIdentifier","src":"26568:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13914,"isOffset":false,"isSlot":false,"src":"26593:6:58","valueSize":1},{"declaration":13917,"isOffset":false,"isSlot":false,"src":"26568:6:58","valueSize":1},{"declaration":13912,"isOffset":false,"isSlot":false,"src":"26602:4:58","valueSize":1}],"flags":["memory-safe"],"id":13926,"nodeType":"InlineAssembly","src":"26529:107:58"}]},"id":13928,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_1","nameLocation":"26388:12:58","nodeType":"FunctionDefinition","parameters":{"id":13915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13912,"mutability":"mutable","name":"self","nameLocation":"26409:4:58","nodeType":"VariableDeclaration","scope":13928,"src":"26401:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13911,"name":"bytes12","nodeType":"ElementaryTypeName","src":"26401:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13914,"mutability":"mutable","name":"offset","nameLocation":"26421:6:58","nodeType":"VariableDeclaration","scope":13928,"src":"26415:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13913,"name":"uint8","nodeType":"ElementaryTypeName","src":"26415:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"26400:28:58"},"returnParameters":{"id":13918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13917,"mutability":"mutable","name":"result","nameLocation":"26459:6:58","nodeType":"VariableDeclaration","scope":13928,"src":"26452:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13916,"name":"bytes1","nodeType":"ElementaryTypeName","src":"26452:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"26451:15:58"},"scope":16305,"src":"26379:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13947,"nodeType":"Block","src":"26751:231:58","statements":[{"assignments":[13940],"declarations":[{"constant":false,"id":13940,"mutability":"mutable","name":"oldValue","nameLocation":"26768:8:58","nodeType":"VariableDeclaration","scope":13947,"src":"26761:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13939,"name":"bytes1","nodeType":"ElementaryTypeName","src":"26761:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":13945,"initialValue":{"arguments":[{"id":13942,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13930,"src":"26792:4:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":13943,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13934,"src":"26798:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13941,"name":"extract_12_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13928,"src":"26779:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes12,uint8) pure returns (bytes1)"}},"id":13944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26779:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"26761:44:58"},{"AST":{"nativeSrc":"26840:136:58","nodeType":"YulBlock","src":"26840:136:58","statements":[{"nativeSrc":"26854:37:58","nodeType":"YulAssignment","src":"26854:37:58","value":{"arguments":[{"name":"value","nativeSrc":"26867:5:58","nodeType":"YulIdentifier","src":"26867:5:58"},{"arguments":[{"kind":"number","nativeSrc":"26878:3:58","nodeType":"YulLiteral","src":"26878:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"26887:1:58","nodeType":"YulLiteral","src":"26887:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26883:3:58","nodeType":"YulIdentifier","src":"26883:3:58"},"nativeSrc":"26883:6:58","nodeType":"YulFunctionCall","src":"26883:6:58"}],"functionName":{"name":"shl","nativeSrc":"26874:3:58","nodeType":"YulIdentifier","src":"26874:3:58"},"nativeSrc":"26874:16:58","nodeType":"YulFunctionCall","src":"26874:16:58"}],"functionName":{"name":"and","nativeSrc":"26863:3:58","nodeType":"YulIdentifier","src":"26863:3:58"},"nativeSrc":"26863:28:58","nodeType":"YulFunctionCall","src":"26863:28:58"},"variableNames":[{"name":"value","nativeSrc":"26854:5:58","nodeType":"YulIdentifier","src":"26854:5:58"}]},{"nativeSrc":"26904:62:58","nodeType":"YulAssignment","src":"26904:62:58","value":{"arguments":[{"name":"self","nativeSrc":"26918:4:58","nodeType":"YulIdentifier","src":"26918:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26932:1:58","nodeType":"YulLiteral","src":"26932:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"26935:6:58","nodeType":"YulIdentifier","src":"26935:6:58"}],"functionName":{"name":"mul","nativeSrc":"26928:3:58","nodeType":"YulIdentifier","src":"26928:3:58"},"nativeSrc":"26928:14:58","nodeType":"YulFunctionCall","src":"26928:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"26948:8:58","nodeType":"YulIdentifier","src":"26948:8:58"},{"name":"value","nativeSrc":"26958:5:58","nodeType":"YulIdentifier","src":"26958:5:58"}],"functionName":{"name":"xor","nativeSrc":"26944:3:58","nodeType":"YulIdentifier","src":"26944:3:58"},"nativeSrc":"26944:20:58","nodeType":"YulFunctionCall","src":"26944:20:58"}],"functionName":{"name":"shr","nativeSrc":"26924:3:58","nodeType":"YulIdentifier","src":"26924:3:58"},"nativeSrc":"26924:41:58","nodeType":"YulFunctionCall","src":"26924:41:58"}],"functionName":{"name":"xor","nativeSrc":"26914:3:58","nodeType":"YulIdentifier","src":"26914:3:58"},"nativeSrc":"26914:52:58","nodeType":"YulFunctionCall","src":"26914:52:58"},"variableNames":[{"name":"result","nativeSrc":"26904:6:58","nodeType":"YulIdentifier","src":"26904:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13934,"isOffset":false,"isSlot":false,"src":"26935:6:58","valueSize":1},{"declaration":13940,"isOffset":false,"isSlot":false,"src":"26948:8:58","valueSize":1},{"declaration":13937,"isOffset":false,"isSlot":false,"src":"26904:6:58","valueSize":1},{"declaration":13930,"isOffset":false,"isSlot":false,"src":"26918:4:58","valueSize":1},{"declaration":13932,"isOffset":false,"isSlot":false,"src":"26854:5:58","valueSize":1},{"declaration":13932,"isOffset":false,"isSlot":false,"src":"26867:5:58","valueSize":1},{"declaration":13932,"isOffset":false,"isSlot":false,"src":"26958:5:58","valueSize":1}],"flags":["memory-safe"],"id":13946,"nodeType":"InlineAssembly","src":"26815:161:58"}]},"id":13948,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_1","nameLocation":"26657:12:58","nodeType":"FunctionDefinition","parameters":{"id":13935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13930,"mutability":"mutable","name":"self","nameLocation":"26678:4:58","nodeType":"VariableDeclaration","scope":13948,"src":"26670:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13929,"name":"bytes12","nodeType":"ElementaryTypeName","src":"26670:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13932,"mutability":"mutable","name":"value","nameLocation":"26691:5:58","nodeType":"VariableDeclaration","scope":13948,"src":"26684:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":13931,"name":"bytes1","nodeType":"ElementaryTypeName","src":"26684:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":13934,"mutability":"mutable","name":"offset","nameLocation":"26704:6:58","nodeType":"VariableDeclaration","scope":13948,"src":"26698:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13933,"name":"uint8","nodeType":"ElementaryTypeName","src":"26698:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"26669:42:58"},"returnParameters":{"id":13938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13937,"mutability":"mutable","name":"result","nameLocation":"26743:6:58","nodeType":"VariableDeclaration","scope":13948,"src":"26735:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13936,"name":"bytes12","nodeType":"ElementaryTypeName","src":"26735:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"26734:16:58"},"scope":16305,"src":"26648:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13965,"nodeType":"Block","src":"27076:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13957,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13952,"src":"27090:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":13958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27099:2:58","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"27090:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13963,"nodeType":"IfStatement","src":"27086:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13960,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"27110:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27110:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13962,"nodeType":"RevertStatement","src":"27103:25:58"}},{"AST":{"nativeSrc":"27163:82:58","nodeType":"YulBlock","src":"27163:82:58","statements":[{"nativeSrc":"27177:58:58","nodeType":"YulAssignment","src":"27177:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27199:1:58","nodeType":"YulLiteral","src":"27199:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"27202:6:58","nodeType":"YulIdentifier","src":"27202:6:58"}],"functionName":{"name":"mul","nativeSrc":"27195:3:58","nodeType":"YulIdentifier","src":"27195:3:58"},"nativeSrc":"27195:14:58","nodeType":"YulFunctionCall","src":"27195:14:58"},{"name":"self","nativeSrc":"27211:4:58","nodeType":"YulIdentifier","src":"27211:4:58"}],"functionName":{"name":"shl","nativeSrc":"27191:3:58","nodeType":"YulIdentifier","src":"27191:3:58"},"nativeSrc":"27191:25:58","nodeType":"YulFunctionCall","src":"27191:25:58"},{"arguments":[{"kind":"number","nativeSrc":"27222:3:58","nodeType":"YulLiteral","src":"27222:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"27231:1:58","nodeType":"YulLiteral","src":"27231:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27227:3:58","nodeType":"YulIdentifier","src":"27227:3:58"},"nativeSrc":"27227:6:58","nodeType":"YulFunctionCall","src":"27227:6:58"}],"functionName":{"name":"shl","nativeSrc":"27218:3:58","nodeType":"YulIdentifier","src":"27218:3:58"},"nativeSrc":"27218:16:58","nodeType":"YulFunctionCall","src":"27218:16:58"}],"functionName":{"name":"and","nativeSrc":"27187:3:58","nodeType":"YulIdentifier","src":"27187:3:58"},"nativeSrc":"27187:48:58","nodeType":"YulFunctionCall","src":"27187:48:58"},"variableNames":[{"name":"result","nativeSrc":"27177:6:58","nodeType":"YulIdentifier","src":"27177:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13952,"isOffset":false,"isSlot":false,"src":"27202:6:58","valueSize":1},{"declaration":13955,"isOffset":false,"isSlot":false,"src":"27177:6:58","valueSize":1},{"declaration":13950,"isOffset":false,"isSlot":false,"src":"27211:4:58","valueSize":1}],"flags":["memory-safe"],"id":13964,"nodeType":"InlineAssembly","src":"27138:107:58"}]},"id":13966,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_2","nameLocation":"26997:12:58","nodeType":"FunctionDefinition","parameters":{"id":13953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13950,"mutability":"mutable","name":"self","nameLocation":"27018:4:58","nodeType":"VariableDeclaration","scope":13966,"src":"27010:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13949,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27010:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13952,"mutability":"mutable","name":"offset","nameLocation":"27030:6:58","nodeType":"VariableDeclaration","scope":13966,"src":"27024:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13951,"name":"uint8","nodeType":"ElementaryTypeName","src":"27024:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27009:28:58"},"returnParameters":{"id":13956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13955,"mutability":"mutable","name":"result","nameLocation":"27068:6:58","nodeType":"VariableDeclaration","scope":13966,"src":"27061:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13954,"name":"bytes2","nodeType":"ElementaryTypeName","src":"27061:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"27060:15:58"},"scope":16305,"src":"26988:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13985,"nodeType":"Block","src":"27360:231:58","statements":[{"assignments":[13978],"declarations":[{"constant":false,"id":13978,"mutability":"mutable","name":"oldValue","nameLocation":"27377:8:58","nodeType":"VariableDeclaration","scope":13985,"src":"27370:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13977,"name":"bytes2","nodeType":"ElementaryTypeName","src":"27370:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":13983,"initialValue":{"arguments":[{"id":13980,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13968,"src":"27401:4:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":13981,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13972,"src":"27407:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":13979,"name":"extract_12_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13966,"src":"27388:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes12,uint8) pure returns (bytes2)"}},"id":13982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27388:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"27370:44:58"},{"AST":{"nativeSrc":"27449:136:58","nodeType":"YulBlock","src":"27449:136:58","statements":[{"nativeSrc":"27463:37:58","nodeType":"YulAssignment","src":"27463:37:58","value":{"arguments":[{"name":"value","nativeSrc":"27476:5:58","nodeType":"YulIdentifier","src":"27476:5:58"},{"arguments":[{"kind":"number","nativeSrc":"27487:3:58","nodeType":"YulLiteral","src":"27487:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"27496:1:58","nodeType":"YulLiteral","src":"27496:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27492:3:58","nodeType":"YulIdentifier","src":"27492:3:58"},"nativeSrc":"27492:6:58","nodeType":"YulFunctionCall","src":"27492:6:58"}],"functionName":{"name":"shl","nativeSrc":"27483:3:58","nodeType":"YulIdentifier","src":"27483:3:58"},"nativeSrc":"27483:16:58","nodeType":"YulFunctionCall","src":"27483:16:58"}],"functionName":{"name":"and","nativeSrc":"27472:3:58","nodeType":"YulIdentifier","src":"27472:3:58"},"nativeSrc":"27472:28:58","nodeType":"YulFunctionCall","src":"27472:28:58"},"variableNames":[{"name":"value","nativeSrc":"27463:5:58","nodeType":"YulIdentifier","src":"27463:5:58"}]},{"nativeSrc":"27513:62:58","nodeType":"YulAssignment","src":"27513:62:58","value":{"arguments":[{"name":"self","nativeSrc":"27527:4:58","nodeType":"YulIdentifier","src":"27527:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27541:1:58","nodeType":"YulLiteral","src":"27541:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"27544:6:58","nodeType":"YulIdentifier","src":"27544:6:58"}],"functionName":{"name":"mul","nativeSrc":"27537:3:58","nodeType":"YulIdentifier","src":"27537:3:58"},"nativeSrc":"27537:14:58","nodeType":"YulFunctionCall","src":"27537:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"27557:8:58","nodeType":"YulIdentifier","src":"27557:8:58"},{"name":"value","nativeSrc":"27567:5:58","nodeType":"YulIdentifier","src":"27567:5:58"}],"functionName":{"name":"xor","nativeSrc":"27553:3:58","nodeType":"YulIdentifier","src":"27553:3:58"},"nativeSrc":"27553:20:58","nodeType":"YulFunctionCall","src":"27553:20:58"}],"functionName":{"name":"shr","nativeSrc":"27533:3:58","nodeType":"YulIdentifier","src":"27533:3:58"},"nativeSrc":"27533:41:58","nodeType":"YulFunctionCall","src":"27533:41:58"}],"functionName":{"name":"xor","nativeSrc":"27523:3:58","nodeType":"YulIdentifier","src":"27523:3:58"},"nativeSrc":"27523:52:58","nodeType":"YulFunctionCall","src":"27523:52:58"},"variableNames":[{"name":"result","nativeSrc":"27513:6:58","nodeType":"YulIdentifier","src":"27513:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13972,"isOffset":false,"isSlot":false,"src":"27544:6:58","valueSize":1},{"declaration":13978,"isOffset":false,"isSlot":false,"src":"27557:8:58","valueSize":1},{"declaration":13975,"isOffset":false,"isSlot":false,"src":"27513:6:58","valueSize":1},{"declaration":13968,"isOffset":false,"isSlot":false,"src":"27527:4:58","valueSize":1},{"declaration":13970,"isOffset":false,"isSlot":false,"src":"27463:5:58","valueSize":1},{"declaration":13970,"isOffset":false,"isSlot":false,"src":"27476:5:58","valueSize":1},{"declaration":13970,"isOffset":false,"isSlot":false,"src":"27567:5:58","valueSize":1}],"flags":["memory-safe"],"id":13984,"nodeType":"InlineAssembly","src":"27424:161:58"}]},"id":13986,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_2","nameLocation":"27266:12:58","nodeType":"FunctionDefinition","parameters":{"id":13973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13968,"mutability":"mutable","name":"self","nameLocation":"27287:4:58","nodeType":"VariableDeclaration","scope":13986,"src":"27279:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13967,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27279:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13970,"mutability":"mutable","name":"value","nameLocation":"27300:5:58","nodeType":"VariableDeclaration","scope":13986,"src":"27293:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":13969,"name":"bytes2","nodeType":"ElementaryTypeName","src":"27293:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":13972,"mutability":"mutable","name":"offset","nameLocation":"27313:6:58","nodeType":"VariableDeclaration","scope":13986,"src":"27307:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13971,"name":"uint8","nodeType":"ElementaryTypeName","src":"27307:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27278:42:58"},"returnParameters":{"id":13976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13975,"mutability":"mutable","name":"result","nameLocation":"27352:6:58","nodeType":"VariableDeclaration","scope":13986,"src":"27344:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13974,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27344:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"27343:16:58"},"scope":16305,"src":"27257:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14003,"nodeType":"Block","src":"27685:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":13997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13995,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13990,"src":"27699:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":13996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27708:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27699:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14001,"nodeType":"IfStatement","src":"27695:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13998,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"27718:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27718:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14000,"nodeType":"RevertStatement","src":"27711:25:58"}},{"AST":{"nativeSrc":"27771:82:58","nodeType":"YulBlock","src":"27771:82:58","statements":[{"nativeSrc":"27785:58:58","nodeType":"YulAssignment","src":"27785:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27807:1:58","nodeType":"YulLiteral","src":"27807:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"27810:6:58","nodeType":"YulIdentifier","src":"27810:6:58"}],"functionName":{"name":"mul","nativeSrc":"27803:3:58","nodeType":"YulIdentifier","src":"27803:3:58"},"nativeSrc":"27803:14:58","nodeType":"YulFunctionCall","src":"27803:14:58"},{"name":"self","nativeSrc":"27819:4:58","nodeType":"YulIdentifier","src":"27819:4:58"}],"functionName":{"name":"shl","nativeSrc":"27799:3:58","nodeType":"YulIdentifier","src":"27799:3:58"},"nativeSrc":"27799:25:58","nodeType":"YulFunctionCall","src":"27799:25:58"},{"arguments":[{"kind":"number","nativeSrc":"27830:3:58","nodeType":"YulLiteral","src":"27830:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"27839:1:58","nodeType":"YulLiteral","src":"27839:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27835:3:58","nodeType":"YulIdentifier","src":"27835:3:58"},"nativeSrc":"27835:6:58","nodeType":"YulFunctionCall","src":"27835:6:58"}],"functionName":{"name":"shl","nativeSrc":"27826:3:58","nodeType":"YulIdentifier","src":"27826:3:58"},"nativeSrc":"27826:16:58","nodeType":"YulFunctionCall","src":"27826:16:58"}],"functionName":{"name":"and","nativeSrc":"27795:3:58","nodeType":"YulIdentifier","src":"27795:3:58"},"nativeSrc":"27795:48:58","nodeType":"YulFunctionCall","src":"27795:48:58"},"variableNames":[{"name":"result","nativeSrc":"27785:6:58","nodeType":"YulIdentifier","src":"27785:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":13990,"isOffset":false,"isSlot":false,"src":"27810:6:58","valueSize":1},{"declaration":13993,"isOffset":false,"isSlot":false,"src":"27785:6:58","valueSize":1},{"declaration":13988,"isOffset":false,"isSlot":false,"src":"27819:4:58","valueSize":1}],"flags":["memory-safe"],"id":14002,"nodeType":"InlineAssembly","src":"27746:107:58"}]},"id":14004,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_4","nameLocation":"27606:12:58","nodeType":"FunctionDefinition","parameters":{"id":13991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13988,"mutability":"mutable","name":"self","nameLocation":"27627:4:58","nodeType":"VariableDeclaration","scope":14004,"src":"27619:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":13987,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27619:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":13990,"mutability":"mutable","name":"offset","nameLocation":"27639:6:58","nodeType":"VariableDeclaration","scope":14004,"src":"27633:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13989,"name":"uint8","nodeType":"ElementaryTypeName","src":"27633:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27618:28:58"},"returnParameters":{"id":13994,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13993,"mutability":"mutable","name":"result","nameLocation":"27677:6:58","nodeType":"VariableDeclaration","scope":14004,"src":"27670:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13992,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27670:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"27669:15:58"},"scope":16305,"src":"27597:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14023,"nodeType":"Block","src":"27968:231:58","statements":[{"assignments":[14016],"declarations":[{"constant":false,"id":14016,"mutability":"mutable","name":"oldValue","nameLocation":"27985:8:58","nodeType":"VariableDeclaration","scope":14023,"src":"27978:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14015,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27978:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":14021,"initialValue":{"arguments":[{"id":14018,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14006,"src":"28009:4:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":14019,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14010,"src":"28015:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14017,"name":"extract_12_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14004,"src":"27996:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes12,uint8) pure returns (bytes4)"}},"id":14020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27996:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"27978:44:58"},{"AST":{"nativeSrc":"28057:136:58","nodeType":"YulBlock","src":"28057:136:58","statements":[{"nativeSrc":"28071:37:58","nodeType":"YulAssignment","src":"28071:37:58","value":{"arguments":[{"name":"value","nativeSrc":"28084:5:58","nodeType":"YulIdentifier","src":"28084:5:58"},{"arguments":[{"kind":"number","nativeSrc":"28095:3:58","nodeType":"YulLiteral","src":"28095:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"28104:1:58","nodeType":"YulLiteral","src":"28104:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28100:3:58","nodeType":"YulIdentifier","src":"28100:3:58"},"nativeSrc":"28100:6:58","nodeType":"YulFunctionCall","src":"28100:6:58"}],"functionName":{"name":"shl","nativeSrc":"28091:3:58","nodeType":"YulIdentifier","src":"28091:3:58"},"nativeSrc":"28091:16:58","nodeType":"YulFunctionCall","src":"28091:16:58"}],"functionName":{"name":"and","nativeSrc":"28080:3:58","nodeType":"YulIdentifier","src":"28080:3:58"},"nativeSrc":"28080:28:58","nodeType":"YulFunctionCall","src":"28080:28:58"},"variableNames":[{"name":"value","nativeSrc":"28071:5:58","nodeType":"YulIdentifier","src":"28071:5:58"}]},{"nativeSrc":"28121:62:58","nodeType":"YulAssignment","src":"28121:62:58","value":{"arguments":[{"name":"self","nativeSrc":"28135:4:58","nodeType":"YulIdentifier","src":"28135:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28149:1:58","nodeType":"YulLiteral","src":"28149:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"28152:6:58","nodeType":"YulIdentifier","src":"28152:6:58"}],"functionName":{"name":"mul","nativeSrc":"28145:3:58","nodeType":"YulIdentifier","src":"28145:3:58"},"nativeSrc":"28145:14:58","nodeType":"YulFunctionCall","src":"28145:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"28165:8:58","nodeType":"YulIdentifier","src":"28165:8:58"},{"name":"value","nativeSrc":"28175:5:58","nodeType":"YulIdentifier","src":"28175:5:58"}],"functionName":{"name":"xor","nativeSrc":"28161:3:58","nodeType":"YulIdentifier","src":"28161:3:58"},"nativeSrc":"28161:20:58","nodeType":"YulFunctionCall","src":"28161:20:58"}],"functionName":{"name":"shr","nativeSrc":"28141:3:58","nodeType":"YulIdentifier","src":"28141:3:58"},"nativeSrc":"28141:41:58","nodeType":"YulFunctionCall","src":"28141:41:58"}],"functionName":{"name":"xor","nativeSrc":"28131:3:58","nodeType":"YulIdentifier","src":"28131:3:58"},"nativeSrc":"28131:52:58","nodeType":"YulFunctionCall","src":"28131:52:58"},"variableNames":[{"name":"result","nativeSrc":"28121:6:58","nodeType":"YulIdentifier","src":"28121:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14010,"isOffset":false,"isSlot":false,"src":"28152:6:58","valueSize":1},{"declaration":14016,"isOffset":false,"isSlot":false,"src":"28165:8:58","valueSize":1},{"declaration":14013,"isOffset":false,"isSlot":false,"src":"28121:6:58","valueSize":1},{"declaration":14006,"isOffset":false,"isSlot":false,"src":"28135:4:58","valueSize":1},{"declaration":14008,"isOffset":false,"isSlot":false,"src":"28071:5:58","valueSize":1},{"declaration":14008,"isOffset":false,"isSlot":false,"src":"28084:5:58","valueSize":1},{"declaration":14008,"isOffset":false,"isSlot":false,"src":"28175:5:58","valueSize":1}],"flags":["memory-safe"],"id":14022,"nodeType":"InlineAssembly","src":"28032:161:58"}]},"id":14024,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_4","nameLocation":"27874:12:58","nodeType":"FunctionDefinition","parameters":{"id":14011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14006,"mutability":"mutable","name":"self","nameLocation":"27895:4:58","nodeType":"VariableDeclaration","scope":14024,"src":"27887:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14005,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27887:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14008,"mutability":"mutable","name":"value","nameLocation":"27908:5:58","nodeType":"VariableDeclaration","scope":14024,"src":"27901:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14007,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27901:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":14010,"mutability":"mutable","name":"offset","nameLocation":"27921:6:58","nodeType":"VariableDeclaration","scope":14024,"src":"27915:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14009,"name":"uint8","nodeType":"ElementaryTypeName","src":"27915:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27886:42:58"},"returnParameters":{"id":14014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14013,"mutability":"mutable","name":"result","nameLocation":"27960:6:58","nodeType":"VariableDeclaration","scope":14024,"src":"27952:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14012,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27952:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"27951:16:58"},"scope":16305,"src":"27865:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14041,"nodeType":"Block","src":"28293:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14033,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14028,"src":"28307:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":14034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28316:1:58","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"28307:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14039,"nodeType":"IfStatement","src":"28303:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14036,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"28326:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28326:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14038,"nodeType":"RevertStatement","src":"28319:25:58"}},{"AST":{"nativeSrc":"28379:82:58","nodeType":"YulBlock","src":"28379:82:58","statements":[{"nativeSrc":"28393:58:58","nodeType":"YulAssignment","src":"28393:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28415:1:58","nodeType":"YulLiteral","src":"28415:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"28418:6:58","nodeType":"YulIdentifier","src":"28418:6:58"}],"functionName":{"name":"mul","nativeSrc":"28411:3:58","nodeType":"YulIdentifier","src":"28411:3:58"},"nativeSrc":"28411:14:58","nodeType":"YulFunctionCall","src":"28411:14:58"},{"name":"self","nativeSrc":"28427:4:58","nodeType":"YulIdentifier","src":"28427:4:58"}],"functionName":{"name":"shl","nativeSrc":"28407:3:58","nodeType":"YulIdentifier","src":"28407:3:58"},"nativeSrc":"28407:25:58","nodeType":"YulFunctionCall","src":"28407:25:58"},{"arguments":[{"kind":"number","nativeSrc":"28438:3:58","nodeType":"YulLiteral","src":"28438:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"28447:1:58","nodeType":"YulLiteral","src":"28447:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28443:3:58","nodeType":"YulIdentifier","src":"28443:3:58"},"nativeSrc":"28443:6:58","nodeType":"YulFunctionCall","src":"28443:6:58"}],"functionName":{"name":"shl","nativeSrc":"28434:3:58","nodeType":"YulIdentifier","src":"28434:3:58"},"nativeSrc":"28434:16:58","nodeType":"YulFunctionCall","src":"28434:16:58"}],"functionName":{"name":"and","nativeSrc":"28403:3:58","nodeType":"YulIdentifier","src":"28403:3:58"},"nativeSrc":"28403:48:58","nodeType":"YulFunctionCall","src":"28403:48:58"},"variableNames":[{"name":"result","nativeSrc":"28393:6:58","nodeType":"YulIdentifier","src":"28393:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14028,"isOffset":false,"isSlot":false,"src":"28418:6:58","valueSize":1},{"declaration":14031,"isOffset":false,"isSlot":false,"src":"28393:6:58","valueSize":1},{"declaration":14026,"isOffset":false,"isSlot":false,"src":"28427:4:58","valueSize":1}],"flags":["memory-safe"],"id":14040,"nodeType":"InlineAssembly","src":"28354:107:58"}]},"id":14042,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_6","nameLocation":"28214:12:58","nodeType":"FunctionDefinition","parameters":{"id":14029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14026,"mutability":"mutable","name":"self","nameLocation":"28235:4:58","nodeType":"VariableDeclaration","scope":14042,"src":"28227:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14025,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28227:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14028,"mutability":"mutable","name":"offset","nameLocation":"28247:6:58","nodeType":"VariableDeclaration","scope":14042,"src":"28241:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14027,"name":"uint8","nodeType":"ElementaryTypeName","src":"28241:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"28226:28:58"},"returnParameters":{"id":14032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14031,"mutability":"mutable","name":"result","nameLocation":"28285:6:58","nodeType":"VariableDeclaration","scope":14042,"src":"28278:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14030,"name":"bytes6","nodeType":"ElementaryTypeName","src":"28278:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"28277:15:58"},"scope":16305,"src":"28205:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14061,"nodeType":"Block","src":"28576:231:58","statements":[{"assignments":[14054],"declarations":[{"constant":false,"id":14054,"mutability":"mutable","name":"oldValue","nameLocation":"28593:8:58","nodeType":"VariableDeclaration","scope":14061,"src":"28586:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14053,"name":"bytes6","nodeType":"ElementaryTypeName","src":"28586:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":14059,"initialValue":{"arguments":[{"id":14056,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14044,"src":"28617:4:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":14057,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14048,"src":"28623:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14055,"name":"extract_12_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14042,"src":"28604:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes12,uint8) pure returns (bytes6)"}},"id":14058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28604:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"28586:44:58"},{"AST":{"nativeSrc":"28665:136:58","nodeType":"YulBlock","src":"28665:136:58","statements":[{"nativeSrc":"28679:37:58","nodeType":"YulAssignment","src":"28679:37:58","value":{"arguments":[{"name":"value","nativeSrc":"28692:5:58","nodeType":"YulIdentifier","src":"28692:5:58"},{"arguments":[{"kind":"number","nativeSrc":"28703:3:58","nodeType":"YulLiteral","src":"28703:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"28712:1:58","nodeType":"YulLiteral","src":"28712:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28708:3:58","nodeType":"YulIdentifier","src":"28708:3:58"},"nativeSrc":"28708:6:58","nodeType":"YulFunctionCall","src":"28708:6:58"}],"functionName":{"name":"shl","nativeSrc":"28699:3:58","nodeType":"YulIdentifier","src":"28699:3:58"},"nativeSrc":"28699:16:58","nodeType":"YulFunctionCall","src":"28699:16:58"}],"functionName":{"name":"and","nativeSrc":"28688:3:58","nodeType":"YulIdentifier","src":"28688:3:58"},"nativeSrc":"28688:28:58","nodeType":"YulFunctionCall","src":"28688:28:58"},"variableNames":[{"name":"value","nativeSrc":"28679:5:58","nodeType":"YulIdentifier","src":"28679:5:58"}]},{"nativeSrc":"28729:62:58","nodeType":"YulAssignment","src":"28729:62:58","value":{"arguments":[{"name":"self","nativeSrc":"28743:4:58","nodeType":"YulIdentifier","src":"28743:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28757:1:58","nodeType":"YulLiteral","src":"28757:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"28760:6:58","nodeType":"YulIdentifier","src":"28760:6:58"}],"functionName":{"name":"mul","nativeSrc":"28753:3:58","nodeType":"YulIdentifier","src":"28753:3:58"},"nativeSrc":"28753:14:58","nodeType":"YulFunctionCall","src":"28753:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"28773:8:58","nodeType":"YulIdentifier","src":"28773:8:58"},{"name":"value","nativeSrc":"28783:5:58","nodeType":"YulIdentifier","src":"28783:5:58"}],"functionName":{"name":"xor","nativeSrc":"28769:3:58","nodeType":"YulIdentifier","src":"28769:3:58"},"nativeSrc":"28769:20:58","nodeType":"YulFunctionCall","src":"28769:20:58"}],"functionName":{"name":"shr","nativeSrc":"28749:3:58","nodeType":"YulIdentifier","src":"28749:3:58"},"nativeSrc":"28749:41:58","nodeType":"YulFunctionCall","src":"28749:41:58"}],"functionName":{"name":"xor","nativeSrc":"28739:3:58","nodeType":"YulIdentifier","src":"28739:3:58"},"nativeSrc":"28739:52:58","nodeType":"YulFunctionCall","src":"28739:52:58"},"variableNames":[{"name":"result","nativeSrc":"28729:6:58","nodeType":"YulIdentifier","src":"28729:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14048,"isOffset":false,"isSlot":false,"src":"28760:6:58","valueSize":1},{"declaration":14054,"isOffset":false,"isSlot":false,"src":"28773:8:58","valueSize":1},{"declaration":14051,"isOffset":false,"isSlot":false,"src":"28729:6:58","valueSize":1},{"declaration":14044,"isOffset":false,"isSlot":false,"src":"28743:4:58","valueSize":1},{"declaration":14046,"isOffset":false,"isSlot":false,"src":"28679:5:58","valueSize":1},{"declaration":14046,"isOffset":false,"isSlot":false,"src":"28692:5:58","valueSize":1},{"declaration":14046,"isOffset":false,"isSlot":false,"src":"28783:5:58","valueSize":1}],"flags":["memory-safe"],"id":14060,"nodeType":"InlineAssembly","src":"28640:161:58"}]},"id":14062,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_6","nameLocation":"28482:12:58","nodeType":"FunctionDefinition","parameters":{"id":14049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14044,"mutability":"mutable","name":"self","nameLocation":"28503:4:58","nodeType":"VariableDeclaration","scope":14062,"src":"28495:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14043,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28495:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14046,"mutability":"mutable","name":"value","nameLocation":"28516:5:58","nodeType":"VariableDeclaration","scope":14062,"src":"28509:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14045,"name":"bytes6","nodeType":"ElementaryTypeName","src":"28509:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":14048,"mutability":"mutable","name":"offset","nameLocation":"28529:6:58","nodeType":"VariableDeclaration","scope":14062,"src":"28523:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14047,"name":"uint8","nodeType":"ElementaryTypeName","src":"28523:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"28494:42:58"},"returnParameters":{"id":14052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14051,"mutability":"mutable","name":"result","nameLocation":"28568:6:58","nodeType":"VariableDeclaration","scope":14062,"src":"28560:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14050,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28560:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"28559:16:58"},"scope":16305,"src":"28473:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14079,"nodeType":"Block","src":"28901:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14071,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14066,"src":"28915:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":14072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28924:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"28915:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14077,"nodeType":"IfStatement","src":"28911:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14074,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"28934:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28934:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14076,"nodeType":"RevertStatement","src":"28927:25:58"}},{"AST":{"nativeSrc":"28987:82:58","nodeType":"YulBlock","src":"28987:82:58","statements":[{"nativeSrc":"29001:58:58","nodeType":"YulAssignment","src":"29001:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29023:1:58","nodeType":"YulLiteral","src":"29023:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"29026:6:58","nodeType":"YulIdentifier","src":"29026:6:58"}],"functionName":{"name":"mul","nativeSrc":"29019:3:58","nodeType":"YulIdentifier","src":"29019:3:58"},"nativeSrc":"29019:14:58","nodeType":"YulFunctionCall","src":"29019:14:58"},{"name":"self","nativeSrc":"29035:4:58","nodeType":"YulIdentifier","src":"29035:4:58"}],"functionName":{"name":"shl","nativeSrc":"29015:3:58","nodeType":"YulIdentifier","src":"29015:3:58"},"nativeSrc":"29015:25:58","nodeType":"YulFunctionCall","src":"29015:25:58"},{"arguments":[{"kind":"number","nativeSrc":"29046:3:58","nodeType":"YulLiteral","src":"29046:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"29055:1:58","nodeType":"YulLiteral","src":"29055:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29051:3:58","nodeType":"YulIdentifier","src":"29051:3:58"},"nativeSrc":"29051:6:58","nodeType":"YulFunctionCall","src":"29051:6:58"}],"functionName":{"name":"shl","nativeSrc":"29042:3:58","nodeType":"YulIdentifier","src":"29042:3:58"},"nativeSrc":"29042:16:58","nodeType":"YulFunctionCall","src":"29042:16:58"}],"functionName":{"name":"and","nativeSrc":"29011:3:58","nodeType":"YulIdentifier","src":"29011:3:58"},"nativeSrc":"29011:48:58","nodeType":"YulFunctionCall","src":"29011:48:58"},"variableNames":[{"name":"result","nativeSrc":"29001:6:58","nodeType":"YulIdentifier","src":"29001:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14066,"isOffset":false,"isSlot":false,"src":"29026:6:58","valueSize":1},{"declaration":14069,"isOffset":false,"isSlot":false,"src":"29001:6:58","valueSize":1},{"declaration":14064,"isOffset":false,"isSlot":false,"src":"29035:4:58","valueSize":1}],"flags":["memory-safe"],"id":14078,"nodeType":"InlineAssembly","src":"28962:107:58"}]},"id":14080,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_8","nameLocation":"28822:12:58","nodeType":"FunctionDefinition","parameters":{"id":14067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14064,"mutability":"mutable","name":"self","nameLocation":"28843:4:58","nodeType":"VariableDeclaration","scope":14080,"src":"28835:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14063,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28835:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14066,"mutability":"mutable","name":"offset","nameLocation":"28855:6:58","nodeType":"VariableDeclaration","scope":14080,"src":"28849:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14065,"name":"uint8","nodeType":"ElementaryTypeName","src":"28849:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"28834:28:58"},"returnParameters":{"id":14070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14069,"mutability":"mutable","name":"result","nameLocation":"28893:6:58","nodeType":"VariableDeclaration","scope":14080,"src":"28886:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14068,"name":"bytes8","nodeType":"ElementaryTypeName","src":"28886:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"28885:15:58"},"scope":16305,"src":"28813:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14099,"nodeType":"Block","src":"29184:231:58","statements":[{"assignments":[14092],"declarations":[{"constant":false,"id":14092,"mutability":"mutable","name":"oldValue","nameLocation":"29201:8:58","nodeType":"VariableDeclaration","scope":14099,"src":"29194:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14091,"name":"bytes8","nodeType":"ElementaryTypeName","src":"29194:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":14097,"initialValue":{"arguments":[{"id":14094,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14082,"src":"29225:4:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":14095,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14086,"src":"29231:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14093,"name":"extract_12_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14080,"src":"29212:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes12,uint8) pure returns (bytes8)"}},"id":14096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29212:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"29194:44:58"},{"AST":{"nativeSrc":"29273:136:58","nodeType":"YulBlock","src":"29273:136:58","statements":[{"nativeSrc":"29287:37:58","nodeType":"YulAssignment","src":"29287:37:58","value":{"arguments":[{"name":"value","nativeSrc":"29300:5:58","nodeType":"YulIdentifier","src":"29300:5:58"},{"arguments":[{"kind":"number","nativeSrc":"29311:3:58","nodeType":"YulLiteral","src":"29311:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"29320:1:58","nodeType":"YulLiteral","src":"29320:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29316:3:58","nodeType":"YulIdentifier","src":"29316:3:58"},"nativeSrc":"29316:6:58","nodeType":"YulFunctionCall","src":"29316:6:58"}],"functionName":{"name":"shl","nativeSrc":"29307:3:58","nodeType":"YulIdentifier","src":"29307:3:58"},"nativeSrc":"29307:16:58","nodeType":"YulFunctionCall","src":"29307:16:58"}],"functionName":{"name":"and","nativeSrc":"29296:3:58","nodeType":"YulIdentifier","src":"29296:3:58"},"nativeSrc":"29296:28:58","nodeType":"YulFunctionCall","src":"29296:28:58"},"variableNames":[{"name":"value","nativeSrc":"29287:5:58","nodeType":"YulIdentifier","src":"29287:5:58"}]},{"nativeSrc":"29337:62:58","nodeType":"YulAssignment","src":"29337:62:58","value":{"arguments":[{"name":"self","nativeSrc":"29351:4:58","nodeType":"YulIdentifier","src":"29351:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29365:1:58","nodeType":"YulLiteral","src":"29365:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"29368:6:58","nodeType":"YulIdentifier","src":"29368:6:58"}],"functionName":{"name":"mul","nativeSrc":"29361:3:58","nodeType":"YulIdentifier","src":"29361:3:58"},"nativeSrc":"29361:14:58","nodeType":"YulFunctionCall","src":"29361:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"29381:8:58","nodeType":"YulIdentifier","src":"29381:8:58"},{"name":"value","nativeSrc":"29391:5:58","nodeType":"YulIdentifier","src":"29391:5:58"}],"functionName":{"name":"xor","nativeSrc":"29377:3:58","nodeType":"YulIdentifier","src":"29377:3:58"},"nativeSrc":"29377:20:58","nodeType":"YulFunctionCall","src":"29377:20:58"}],"functionName":{"name":"shr","nativeSrc":"29357:3:58","nodeType":"YulIdentifier","src":"29357:3:58"},"nativeSrc":"29357:41:58","nodeType":"YulFunctionCall","src":"29357:41:58"}],"functionName":{"name":"xor","nativeSrc":"29347:3:58","nodeType":"YulIdentifier","src":"29347:3:58"},"nativeSrc":"29347:52:58","nodeType":"YulFunctionCall","src":"29347:52:58"},"variableNames":[{"name":"result","nativeSrc":"29337:6:58","nodeType":"YulIdentifier","src":"29337:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14086,"isOffset":false,"isSlot":false,"src":"29368:6:58","valueSize":1},{"declaration":14092,"isOffset":false,"isSlot":false,"src":"29381:8:58","valueSize":1},{"declaration":14089,"isOffset":false,"isSlot":false,"src":"29337:6:58","valueSize":1},{"declaration":14082,"isOffset":false,"isSlot":false,"src":"29351:4:58","valueSize":1},{"declaration":14084,"isOffset":false,"isSlot":false,"src":"29287:5:58","valueSize":1},{"declaration":14084,"isOffset":false,"isSlot":false,"src":"29300:5:58","valueSize":1},{"declaration":14084,"isOffset":false,"isSlot":false,"src":"29391:5:58","valueSize":1}],"flags":["memory-safe"],"id":14098,"nodeType":"InlineAssembly","src":"29248:161:58"}]},"id":14100,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_8","nameLocation":"29090:12:58","nodeType":"FunctionDefinition","parameters":{"id":14087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14082,"mutability":"mutable","name":"self","nameLocation":"29111:4:58","nodeType":"VariableDeclaration","scope":14100,"src":"29103:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14081,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29103:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14084,"mutability":"mutable","name":"value","nameLocation":"29124:5:58","nodeType":"VariableDeclaration","scope":14100,"src":"29117:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14083,"name":"bytes8","nodeType":"ElementaryTypeName","src":"29117:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":14086,"mutability":"mutable","name":"offset","nameLocation":"29137:6:58","nodeType":"VariableDeclaration","scope":14100,"src":"29131:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14085,"name":"uint8","nodeType":"ElementaryTypeName","src":"29131:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"29102:42:58"},"returnParameters":{"id":14090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14089,"mutability":"mutable","name":"result","nameLocation":"29176:6:58","nodeType":"VariableDeclaration","scope":14100,"src":"29168:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14088,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29168:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"29167:16:58"},"scope":16305,"src":"29081:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14117,"nodeType":"Block","src":"29511:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14109,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14104,"src":"29525:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":14110,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29534:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29525:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14115,"nodeType":"IfStatement","src":"29521:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14112,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"29544:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29544:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14114,"nodeType":"RevertStatement","src":"29537:25:58"}},{"AST":{"nativeSrc":"29597:82:58","nodeType":"YulBlock","src":"29597:82:58","statements":[{"nativeSrc":"29611:58:58","nodeType":"YulAssignment","src":"29611:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29633:1:58","nodeType":"YulLiteral","src":"29633:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"29636:6:58","nodeType":"YulIdentifier","src":"29636:6:58"}],"functionName":{"name":"mul","nativeSrc":"29629:3:58","nodeType":"YulIdentifier","src":"29629:3:58"},"nativeSrc":"29629:14:58","nodeType":"YulFunctionCall","src":"29629:14:58"},{"name":"self","nativeSrc":"29645:4:58","nodeType":"YulIdentifier","src":"29645:4:58"}],"functionName":{"name":"shl","nativeSrc":"29625:3:58","nodeType":"YulIdentifier","src":"29625:3:58"},"nativeSrc":"29625:25:58","nodeType":"YulFunctionCall","src":"29625:25:58"},{"arguments":[{"kind":"number","nativeSrc":"29656:3:58","nodeType":"YulLiteral","src":"29656:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"29665:1:58","nodeType":"YulLiteral","src":"29665:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29661:3:58","nodeType":"YulIdentifier","src":"29661:3:58"},"nativeSrc":"29661:6:58","nodeType":"YulFunctionCall","src":"29661:6:58"}],"functionName":{"name":"shl","nativeSrc":"29652:3:58","nodeType":"YulIdentifier","src":"29652:3:58"},"nativeSrc":"29652:16:58","nodeType":"YulFunctionCall","src":"29652:16:58"}],"functionName":{"name":"and","nativeSrc":"29621:3:58","nodeType":"YulIdentifier","src":"29621:3:58"},"nativeSrc":"29621:48:58","nodeType":"YulFunctionCall","src":"29621:48:58"},"variableNames":[{"name":"result","nativeSrc":"29611:6:58","nodeType":"YulIdentifier","src":"29611:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14104,"isOffset":false,"isSlot":false,"src":"29636:6:58","valueSize":1},{"declaration":14107,"isOffset":false,"isSlot":false,"src":"29611:6:58","valueSize":1},{"declaration":14102,"isOffset":false,"isSlot":false,"src":"29645:4:58","valueSize":1}],"flags":["memory-safe"],"id":14116,"nodeType":"InlineAssembly","src":"29572:107:58"}]},"id":14118,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_10","nameLocation":"29430:13:58","nodeType":"FunctionDefinition","parameters":{"id":14105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14102,"mutability":"mutable","name":"self","nameLocation":"29452:4:58","nodeType":"VariableDeclaration","scope":14118,"src":"29444:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14101,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29444:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14104,"mutability":"mutable","name":"offset","nameLocation":"29464:6:58","nodeType":"VariableDeclaration","scope":14118,"src":"29458:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14103,"name":"uint8","nodeType":"ElementaryTypeName","src":"29458:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"29443:28:58"},"returnParameters":{"id":14108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14107,"mutability":"mutable","name":"result","nameLocation":"29503:6:58","nodeType":"VariableDeclaration","scope":14118,"src":"29495:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14106,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29495:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"29494:16:58"},"scope":16305,"src":"29421:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14137,"nodeType":"Block","src":"29796:233:58","statements":[{"assignments":[14130],"declarations":[{"constant":false,"id":14130,"mutability":"mutable","name":"oldValue","nameLocation":"29814:8:58","nodeType":"VariableDeclaration","scope":14137,"src":"29806:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14129,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29806:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":14135,"initialValue":{"arguments":[{"id":14132,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14120,"src":"29839:4:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":14133,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14124,"src":"29845:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14131,"name":"extract_12_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14118,"src":"29825:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes12,uint8) pure returns (bytes10)"}},"id":14134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29825:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"29806:46:58"},{"AST":{"nativeSrc":"29887:136:58","nodeType":"YulBlock","src":"29887:136:58","statements":[{"nativeSrc":"29901:37:58","nodeType":"YulAssignment","src":"29901:37:58","value":{"arguments":[{"name":"value","nativeSrc":"29914:5:58","nodeType":"YulIdentifier","src":"29914:5:58"},{"arguments":[{"kind":"number","nativeSrc":"29925:3:58","nodeType":"YulLiteral","src":"29925:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"29934:1:58","nodeType":"YulLiteral","src":"29934:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29930:3:58","nodeType":"YulIdentifier","src":"29930:3:58"},"nativeSrc":"29930:6:58","nodeType":"YulFunctionCall","src":"29930:6:58"}],"functionName":{"name":"shl","nativeSrc":"29921:3:58","nodeType":"YulIdentifier","src":"29921:3:58"},"nativeSrc":"29921:16:58","nodeType":"YulFunctionCall","src":"29921:16:58"}],"functionName":{"name":"and","nativeSrc":"29910:3:58","nodeType":"YulIdentifier","src":"29910:3:58"},"nativeSrc":"29910:28:58","nodeType":"YulFunctionCall","src":"29910:28:58"},"variableNames":[{"name":"value","nativeSrc":"29901:5:58","nodeType":"YulIdentifier","src":"29901:5:58"}]},{"nativeSrc":"29951:62:58","nodeType":"YulAssignment","src":"29951:62:58","value":{"arguments":[{"name":"self","nativeSrc":"29965:4:58","nodeType":"YulIdentifier","src":"29965:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29979:1:58","nodeType":"YulLiteral","src":"29979:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"29982:6:58","nodeType":"YulIdentifier","src":"29982:6:58"}],"functionName":{"name":"mul","nativeSrc":"29975:3:58","nodeType":"YulIdentifier","src":"29975:3:58"},"nativeSrc":"29975:14:58","nodeType":"YulFunctionCall","src":"29975:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"29995:8:58","nodeType":"YulIdentifier","src":"29995:8:58"},{"name":"value","nativeSrc":"30005:5:58","nodeType":"YulIdentifier","src":"30005:5:58"}],"functionName":{"name":"xor","nativeSrc":"29991:3:58","nodeType":"YulIdentifier","src":"29991:3:58"},"nativeSrc":"29991:20:58","nodeType":"YulFunctionCall","src":"29991:20:58"}],"functionName":{"name":"shr","nativeSrc":"29971:3:58","nodeType":"YulIdentifier","src":"29971:3:58"},"nativeSrc":"29971:41:58","nodeType":"YulFunctionCall","src":"29971:41:58"}],"functionName":{"name":"xor","nativeSrc":"29961:3:58","nodeType":"YulIdentifier","src":"29961:3:58"},"nativeSrc":"29961:52:58","nodeType":"YulFunctionCall","src":"29961:52:58"},"variableNames":[{"name":"result","nativeSrc":"29951:6:58","nodeType":"YulIdentifier","src":"29951:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14124,"isOffset":false,"isSlot":false,"src":"29982:6:58","valueSize":1},{"declaration":14130,"isOffset":false,"isSlot":false,"src":"29995:8:58","valueSize":1},{"declaration":14127,"isOffset":false,"isSlot":false,"src":"29951:6:58","valueSize":1},{"declaration":14120,"isOffset":false,"isSlot":false,"src":"29965:4:58","valueSize":1},{"declaration":14122,"isOffset":false,"isSlot":false,"src":"29901:5:58","valueSize":1},{"declaration":14122,"isOffset":false,"isSlot":false,"src":"29914:5:58","valueSize":1},{"declaration":14122,"isOffset":false,"isSlot":false,"src":"30005:5:58","valueSize":1}],"flags":["memory-safe"],"id":14136,"nodeType":"InlineAssembly","src":"29862:161:58"}]},"id":14138,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_10","nameLocation":"29700:13:58","nodeType":"FunctionDefinition","parameters":{"id":14125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14120,"mutability":"mutable","name":"self","nameLocation":"29722:4:58","nodeType":"VariableDeclaration","scope":14138,"src":"29714:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14119,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29714:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14122,"mutability":"mutable","name":"value","nameLocation":"29736:5:58","nodeType":"VariableDeclaration","scope":14138,"src":"29728:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14121,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29728:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":14124,"mutability":"mutable","name":"offset","nameLocation":"29749:6:58","nodeType":"VariableDeclaration","scope":14138,"src":"29743:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14123,"name":"uint8","nodeType":"ElementaryTypeName","src":"29743:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"29713:43:58"},"returnParameters":{"id":14128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14127,"mutability":"mutable","name":"result","nameLocation":"29788:6:58","nodeType":"VariableDeclaration","scope":14138,"src":"29780:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14126,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29780:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"29779:16:58"},"scope":16305,"src":"29691:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14155,"nodeType":"Block","src":"30123:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14147,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14142,"src":"30137:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":14148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30146:2:58","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"30137:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14153,"nodeType":"IfStatement","src":"30133:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14150,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"30157:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30157:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14152,"nodeType":"RevertStatement","src":"30150:25:58"}},{"AST":{"nativeSrc":"30210:82:58","nodeType":"YulBlock","src":"30210:82:58","statements":[{"nativeSrc":"30224:58:58","nodeType":"YulAssignment","src":"30224:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30246:1:58","nodeType":"YulLiteral","src":"30246:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"30249:6:58","nodeType":"YulIdentifier","src":"30249:6:58"}],"functionName":{"name":"mul","nativeSrc":"30242:3:58","nodeType":"YulIdentifier","src":"30242:3:58"},"nativeSrc":"30242:14:58","nodeType":"YulFunctionCall","src":"30242:14:58"},{"name":"self","nativeSrc":"30258:4:58","nodeType":"YulIdentifier","src":"30258:4:58"}],"functionName":{"name":"shl","nativeSrc":"30238:3:58","nodeType":"YulIdentifier","src":"30238:3:58"},"nativeSrc":"30238:25:58","nodeType":"YulFunctionCall","src":"30238:25:58"},{"arguments":[{"kind":"number","nativeSrc":"30269:3:58","nodeType":"YulLiteral","src":"30269:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"30278:1:58","nodeType":"YulLiteral","src":"30278:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"30274:3:58","nodeType":"YulIdentifier","src":"30274:3:58"},"nativeSrc":"30274:6:58","nodeType":"YulFunctionCall","src":"30274:6:58"}],"functionName":{"name":"shl","nativeSrc":"30265:3:58","nodeType":"YulIdentifier","src":"30265:3:58"},"nativeSrc":"30265:16:58","nodeType":"YulFunctionCall","src":"30265:16:58"}],"functionName":{"name":"and","nativeSrc":"30234:3:58","nodeType":"YulIdentifier","src":"30234:3:58"},"nativeSrc":"30234:48:58","nodeType":"YulFunctionCall","src":"30234:48:58"},"variableNames":[{"name":"result","nativeSrc":"30224:6:58","nodeType":"YulIdentifier","src":"30224:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14142,"isOffset":false,"isSlot":false,"src":"30249:6:58","valueSize":1},{"declaration":14145,"isOffset":false,"isSlot":false,"src":"30224:6:58","valueSize":1},{"declaration":14140,"isOffset":false,"isSlot":false,"src":"30258:4:58","valueSize":1}],"flags":["memory-safe"],"id":14154,"nodeType":"InlineAssembly","src":"30185:107:58"}]},"id":14156,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_1","nameLocation":"30044:12:58","nodeType":"FunctionDefinition","parameters":{"id":14143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14140,"mutability":"mutable","name":"self","nameLocation":"30065:4:58","nodeType":"VariableDeclaration","scope":14156,"src":"30057:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14139,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30057:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14142,"mutability":"mutable","name":"offset","nameLocation":"30077:6:58","nodeType":"VariableDeclaration","scope":14156,"src":"30071:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14141,"name":"uint8","nodeType":"ElementaryTypeName","src":"30071:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30056:28:58"},"returnParameters":{"id":14146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14145,"mutability":"mutable","name":"result","nameLocation":"30115:6:58","nodeType":"VariableDeclaration","scope":14156,"src":"30108:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14144,"name":"bytes1","nodeType":"ElementaryTypeName","src":"30108:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"30107:15:58"},"scope":16305,"src":"30035:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14175,"nodeType":"Block","src":"30407:231:58","statements":[{"assignments":[14168],"declarations":[{"constant":false,"id":14168,"mutability":"mutable","name":"oldValue","nameLocation":"30424:8:58","nodeType":"VariableDeclaration","scope":14175,"src":"30417:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14167,"name":"bytes1","nodeType":"ElementaryTypeName","src":"30417:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":14173,"initialValue":{"arguments":[{"id":14170,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14158,"src":"30448:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14171,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14162,"src":"30454:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14169,"name":"extract_16_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14156,"src":"30435:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes16,uint8) pure returns (bytes1)"}},"id":14172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30435:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"30417:44:58"},{"AST":{"nativeSrc":"30496:136:58","nodeType":"YulBlock","src":"30496:136:58","statements":[{"nativeSrc":"30510:37:58","nodeType":"YulAssignment","src":"30510:37:58","value":{"arguments":[{"name":"value","nativeSrc":"30523:5:58","nodeType":"YulIdentifier","src":"30523:5:58"},{"arguments":[{"kind":"number","nativeSrc":"30534:3:58","nodeType":"YulLiteral","src":"30534:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"30543:1:58","nodeType":"YulLiteral","src":"30543:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"30539:3:58","nodeType":"YulIdentifier","src":"30539:3:58"},"nativeSrc":"30539:6:58","nodeType":"YulFunctionCall","src":"30539:6:58"}],"functionName":{"name":"shl","nativeSrc":"30530:3:58","nodeType":"YulIdentifier","src":"30530:3:58"},"nativeSrc":"30530:16:58","nodeType":"YulFunctionCall","src":"30530:16:58"}],"functionName":{"name":"and","nativeSrc":"30519:3:58","nodeType":"YulIdentifier","src":"30519:3:58"},"nativeSrc":"30519:28:58","nodeType":"YulFunctionCall","src":"30519:28:58"},"variableNames":[{"name":"value","nativeSrc":"30510:5:58","nodeType":"YulIdentifier","src":"30510:5:58"}]},{"nativeSrc":"30560:62:58","nodeType":"YulAssignment","src":"30560:62:58","value":{"arguments":[{"name":"self","nativeSrc":"30574:4:58","nodeType":"YulIdentifier","src":"30574:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30588:1:58","nodeType":"YulLiteral","src":"30588:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"30591:6:58","nodeType":"YulIdentifier","src":"30591:6:58"}],"functionName":{"name":"mul","nativeSrc":"30584:3:58","nodeType":"YulIdentifier","src":"30584:3:58"},"nativeSrc":"30584:14:58","nodeType":"YulFunctionCall","src":"30584:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"30604:8:58","nodeType":"YulIdentifier","src":"30604:8:58"},{"name":"value","nativeSrc":"30614:5:58","nodeType":"YulIdentifier","src":"30614:5:58"}],"functionName":{"name":"xor","nativeSrc":"30600:3:58","nodeType":"YulIdentifier","src":"30600:3:58"},"nativeSrc":"30600:20:58","nodeType":"YulFunctionCall","src":"30600:20:58"}],"functionName":{"name":"shr","nativeSrc":"30580:3:58","nodeType":"YulIdentifier","src":"30580:3:58"},"nativeSrc":"30580:41:58","nodeType":"YulFunctionCall","src":"30580:41:58"}],"functionName":{"name":"xor","nativeSrc":"30570:3:58","nodeType":"YulIdentifier","src":"30570:3:58"},"nativeSrc":"30570:52:58","nodeType":"YulFunctionCall","src":"30570:52:58"},"variableNames":[{"name":"result","nativeSrc":"30560:6:58","nodeType":"YulIdentifier","src":"30560:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14162,"isOffset":false,"isSlot":false,"src":"30591:6:58","valueSize":1},{"declaration":14168,"isOffset":false,"isSlot":false,"src":"30604:8:58","valueSize":1},{"declaration":14165,"isOffset":false,"isSlot":false,"src":"30560:6:58","valueSize":1},{"declaration":14158,"isOffset":false,"isSlot":false,"src":"30574:4:58","valueSize":1},{"declaration":14160,"isOffset":false,"isSlot":false,"src":"30510:5:58","valueSize":1},{"declaration":14160,"isOffset":false,"isSlot":false,"src":"30523:5:58","valueSize":1},{"declaration":14160,"isOffset":false,"isSlot":false,"src":"30614:5:58","valueSize":1}],"flags":["memory-safe"],"id":14174,"nodeType":"InlineAssembly","src":"30471:161:58"}]},"id":14176,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_1","nameLocation":"30313:12:58","nodeType":"FunctionDefinition","parameters":{"id":14163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14158,"mutability":"mutable","name":"self","nameLocation":"30334:4:58","nodeType":"VariableDeclaration","scope":14176,"src":"30326:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14157,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30326:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14160,"mutability":"mutable","name":"value","nameLocation":"30347:5:58","nodeType":"VariableDeclaration","scope":14176,"src":"30340:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14159,"name":"bytes1","nodeType":"ElementaryTypeName","src":"30340:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":14162,"mutability":"mutable","name":"offset","nameLocation":"30360:6:58","nodeType":"VariableDeclaration","scope":14176,"src":"30354:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14161,"name":"uint8","nodeType":"ElementaryTypeName","src":"30354:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30325:42:58"},"returnParameters":{"id":14166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14165,"mutability":"mutable","name":"result","nameLocation":"30399:6:58","nodeType":"VariableDeclaration","scope":14176,"src":"30391:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14164,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30391:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"30390:16:58"},"scope":16305,"src":"30304:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14193,"nodeType":"Block","src":"30732:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14185,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14180,"src":"30746:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":14186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30755:2:58","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"30746:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14191,"nodeType":"IfStatement","src":"30742:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14188,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"30766:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30766:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14190,"nodeType":"RevertStatement","src":"30759:25:58"}},{"AST":{"nativeSrc":"30819:82:58","nodeType":"YulBlock","src":"30819:82:58","statements":[{"nativeSrc":"30833:58:58","nodeType":"YulAssignment","src":"30833:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30855:1:58","nodeType":"YulLiteral","src":"30855:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"30858:6:58","nodeType":"YulIdentifier","src":"30858:6:58"}],"functionName":{"name":"mul","nativeSrc":"30851:3:58","nodeType":"YulIdentifier","src":"30851:3:58"},"nativeSrc":"30851:14:58","nodeType":"YulFunctionCall","src":"30851:14:58"},{"name":"self","nativeSrc":"30867:4:58","nodeType":"YulIdentifier","src":"30867:4:58"}],"functionName":{"name":"shl","nativeSrc":"30847:3:58","nodeType":"YulIdentifier","src":"30847:3:58"},"nativeSrc":"30847:25:58","nodeType":"YulFunctionCall","src":"30847:25:58"},{"arguments":[{"kind":"number","nativeSrc":"30878:3:58","nodeType":"YulLiteral","src":"30878:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"30887:1:58","nodeType":"YulLiteral","src":"30887:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"30883:3:58","nodeType":"YulIdentifier","src":"30883:3:58"},"nativeSrc":"30883:6:58","nodeType":"YulFunctionCall","src":"30883:6:58"}],"functionName":{"name":"shl","nativeSrc":"30874:3:58","nodeType":"YulIdentifier","src":"30874:3:58"},"nativeSrc":"30874:16:58","nodeType":"YulFunctionCall","src":"30874:16:58"}],"functionName":{"name":"and","nativeSrc":"30843:3:58","nodeType":"YulIdentifier","src":"30843:3:58"},"nativeSrc":"30843:48:58","nodeType":"YulFunctionCall","src":"30843:48:58"},"variableNames":[{"name":"result","nativeSrc":"30833:6:58","nodeType":"YulIdentifier","src":"30833:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14180,"isOffset":false,"isSlot":false,"src":"30858:6:58","valueSize":1},{"declaration":14183,"isOffset":false,"isSlot":false,"src":"30833:6:58","valueSize":1},{"declaration":14178,"isOffset":false,"isSlot":false,"src":"30867:4:58","valueSize":1}],"flags":["memory-safe"],"id":14192,"nodeType":"InlineAssembly","src":"30794:107:58"}]},"id":14194,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_2","nameLocation":"30653:12:58","nodeType":"FunctionDefinition","parameters":{"id":14181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14178,"mutability":"mutable","name":"self","nameLocation":"30674:4:58","nodeType":"VariableDeclaration","scope":14194,"src":"30666:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14177,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30666:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14180,"mutability":"mutable","name":"offset","nameLocation":"30686:6:58","nodeType":"VariableDeclaration","scope":14194,"src":"30680:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14179,"name":"uint8","nodeType":"ElementaryTypeName","src":"30680:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30665:28:58"},"returnParameters":{"id":14184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14183,"mutability":"mutable","name":"result","nameLocation":"30724:6:58","nodeType":"VariableDeclaration","scope":14194,"src":"30717:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14182,"name":"bytes2","nodeType":"ElementaryTypeName","src":"30717:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"30716:15:58"},"scope":16305,"src":"30644:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14213,"nodeType":"Block","src":"31016:231:58","statements":[{"assignments":[14206],"declarations":[{"constant":false,"id":14206,"mutability":"mutable","name":"oldValue","nameLocation":"31033:8:58","nodeType":"VariableDeclaration","scope":14213,"src":"31026:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14205,"name":"bytes2","nodeType":"ElementaryTypeName","src":"31026:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":14211,"initialValue":{"arguments":[{"id":14208,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14196,"src":"31057:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14209,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14200,"src":"31063:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14207,"name":"extract_16_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14194,"src":"31044:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes16,uint8) pure returns (bytes2)"}},"id":14210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31044:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"31026:44:58"},{"AST":{"nativeSrc":"31105:136:58","nodeType":"YulBlock","src":"31105:136:58","statements":[{"nativeSrc":"31119:37:58","nodeType":"YulAssignment","src":"31119:37:58","value":{"arguments":[{"name":"value","nativeSrc":"31132:5:58","nodeType":"YulIdentifier","src":"31132:5:58"},{"arguments":[{"kind":"number","nativeSrc":"31143:3:58","nodeType":"YulLiteral","src":"31143:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"31152:1:58","nodeType":"YulLiteral","src":"31152:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"31148:3:58","nodeType":"YulIdentifier","src":"31148:3:58"},"nativeSrc":"31148:6:58","nodeType":"YulFunctionCall","src":"31148:6:58"}],"functionName":{"name":"shl","nativeSrc":"31139:3:58","nodeType":"YulIdentifier","src":"31139:3:58"},"nativeSrc":"31139:16:58","nodeType":"YulFunctionCall","src":"31139:16:58"}],"functionName":{"name":"and","nativeSrc":"31128:3:58","nodeType":"YulIdentifier","src":"31128:3:58"},"nativeSrc":"31128:28:58","nodeType":"YulFunctionCall","src":"31128:28:58"},"variableNames":[{"name":"value","nativeSrc":"31119:5:58","nodeType":"YulIdentifier","src":"31119:5:58"}]},{"nativeSrc":"31169:62:58","nodeType":"YulAssignment","src":"31169:62:58","value":{"arguments":[{"name":"self","nativeSrc":"31183:4:58","nodeType":"YulIdentifier","src":"31183:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31197:1:58","nodeType":"YulLiteral","src":"31197:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"31200:6:58","nodeType":"YulIdentifier","src":"31200:6:58"}],"functionName":{"name":"mul","nativeSrc":"31193:3:58","nodeType":"YulIdentifier","src":"31193:3:58"},"nativeSrc":"31193:14:58","nodeType":"YulFunctionCall","src":"31193:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"31213:8:58","nodeType":"YulIdentifier","src":"31213:8:58"},{"name":"value","nativeSrc":"31223:5:58","nodeType":"YulIdentifier","src":"31223:5:58"}],"functionName":{"name":"xor","nativeSrc":"31209:3:58","nodeType":"YulIdentifier","src":"31209:3:58"},"nativeSrc":"31209:20:58","nodeType":"YulFunctionCall","src":"31209:20:58"}],"functionName":{"name":"shr","nativeSrc":"31189:3:58","nodeType":"YulIdentifier","src":"31189:3:58"},"nativeSrc":"31189:41:58","nodeType":"YulFunctionCall","src":"31189:41:58"}],"functionName":{"name":"xor","nativeSrc":"31179:3:58","nodeType":"YulIdentifier","src":"31179:3:58"},"nativeSrc":"31179:52:58","nodeType":"YulFunctionCall","src":"31179:52:58"},"variableNames":[{"name":"result","nativeSrc":"31169:6:58","nodeType":"YulIdentifier","src":"31169:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14200,"isOffset":false,"isSlot":false,"src":"31200:6:58","valueSize":1},{"declaration":14206,"isOffset":false,"isSlot":false,"src":"31213:8:58","valueSize":1},{"declaration":14203,"isOffset":false,"isSlot":false,"src":"31169:6:58","valueSize":1},{"declaration":14196,"isOffset":false,"isSlot":false,"src":"31183:4:58","valueSize":1},{"declaration":14198,"isOffset":false,"isSlot":false,"src":"31119:5:58","valueSize":1},{"declaration":14198,"isOffset":false,"isSlot":false,"src":"31132:5:58","valueSize":1},{"declaration":14198,"isOffset":false,"isSlot":false,"src":"31223:5:58","valueSize":1}],"flags":["memory-safe"],"id":14212,"nodeType":"InlineAssembly","src":"31080:161:58"}]},"id":14214,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_2","nameLocation":"30922:12:58","nodeType":"FunctionDefinition","parameters":{"id":14201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14196,"mutability":"mutable","name":"self","nameLocation":"30943:4:58","nodeType":"VariableDeclaration","scope":14214,"src":"30935:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14195,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30935:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14198,"mutability":"mutable","name":"value","nameLocation":"30956:5:58","nodeType":"VariableDeclaration","scope":14214,"src":"30949:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14197,"name":"bytes2","nodeType":"ElementaryTypeName","src":"30949:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":14200,"mutability":"mutable","name":"offset","nameLocation":"30969:6:58","nodeType":"VariableDeclaration","scope":14214,"src":"30963:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14199,"name":"uint8","nodeType":"ElementaryTypeName","src":"30963:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30934:42:58"},"returnParameters":{"id":14204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14203,"mutability":"mutable","name":"result","nameLocation":"31008:6:58","nodeType":"VariableDeclaration","scope":14214,"src":"31000:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14202,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31000:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"30999:16:58"},"scope":16305,"src":"30913:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14231,"nodeType":"Block","src":"31341:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14223,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14218,"src":"31355:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":14224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31364:2:58","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"31355:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14229,"nodeType":"IfStatement","src":"31351:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14226,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"31375:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31375:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14228,"nodeType":"RevertStatement","src":"31368:25:58"}},{"AST":{"nativeSrc":"31428:82:58","nodeType":"YulBlock","src":"31428:82:58","statements":[{"nativeSrc":"31442:58:58","nodeType":"YulAssignment","src":"31442:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31464:1:58","nodeType":"YulLiteral","src":"31464:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"31467:6:58","nodeType":"YulIdentifier","src":"31467:6:58"}],"functionName":{"name":"mul","nativeSrc":"31460:3:58","nodeType":"YulIdentifier","src":"31460:3:58"},"nativeSrc":"31460:14:58","nodeType":"YulFunctionCall","src":"31460:14:58"},{"name":"self","nativeSrc":"31476:4:58","nodeType":"YulIdentifier","src":"31476:4:58"}],"functionName":{"name":"shl","nativeSrc":"31456:3:58","nodeType":"YulIdentifier","src":"31456:3:58"},"nativeSrc":"31456:25:58","nodeType":"YulFunctionCall","src":"31456:25:58"},{"arguments":[{"kind":"number","nativeSrc":"31487:3:58","nodeType":"YulLiteral","src":"31487:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"31496:1:58","nodeType":"YulLiteral","src":"31496:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"31492:3:58","nodeType":"YulIdentifier","src":"31492:3:58"},"nativeSrc":"31492:6:58","nodeType":"YulFunctionCall","src":"31492:6:58"}],"functionName":{"name":"shl","nativeSrc":"31483:3:58","nodeType":"YulIdentifier","src":"31483:3:58"},"nativeSrc":"31483:16:58","nodeType":"YulFunctionCall","src":"31483:16:58"}],"functionName":{"name":"and","nativeSrc":"31452:3:58","nodeType":"YulIdentifier","src":"31452:3:58"},"nativeSrc":"31452:48:58","nodeType":"YulFunctionCall","src":"31452:48:58"},"variableNames":[{"name":"result","nativeSrc":"31442:6:58","nodeType":"YulIdentifier","src":"31442:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14218,"isOffset":false,"isSlot":false,"src":"31467:6:58","valueSize":1},{"declaration":14221,"isOffset":false,"isSlot":false,"src":"31442:6:58","valueSize":1},{"declaration":14216,"isOffset":false,"isSlot":false,"src":"31476:4:58","valueSize":1}],"flags":["memory-safe"],"id":14230,"nodeType":"InlineAssembly","src":"31403:107:58"}]},"id":14232,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_4","nameLocation":"31262:12:58","nodeType":"FunctionDefinition","parameters":{"id":14219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14216,"mutability":"mutable","name":"self","nameLocation":"31283:4:58","nodeType":"VariableDeclaration","scope":14232,"src":"31275:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14215,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31275:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14218,"mutability":"mutable","name":"offset","nameLocation":"31295:6:58","nodeType":"VariableDeclaration","scope":14232,"src":"31289:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14217,"name":"uint8","nodeType":"ElementaryTypeName","src":"31289:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"31274:28:58"},"returnParameters":{"id":14222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14221,"mutability":"mutable","name":"result","nameLocation":"31333:6:58","nodeType":"VariableDeclaration","scope":14232,"src":"31326:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14220,"name":"bytes4","nodeType":"ElementaryTypeName","src":"31326:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"31325:15:58"},"scope":16305,"src":"31253:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14251,"nodeType":"Block","src":"31625:231:58","statements":[{"assignments":[14244],"declarations":[{"constant":false,"id":14244,"mutability":"mutable","name":"oldValue","nameLocation":"31642:8:58","nodeType":"VariableDeclaration","scope":14251,"src":"31635:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14243,"name":"bytes4","nodeType":"ElementaryTypeName","src":"31635:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":14249,"initialValue":{"arguments":[{"id":14246,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14234,"src":"31666:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14247,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14238,"src":"31672:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14245,"name":"extract_16_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14232,"src":"31653:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes16,uint8) pure returns (bytes4)"}},"id":14248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31653:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"31635:44:58"},{"AST":{"nativeSrc":"31714:136:58","nodeType":"YulBlock","src":"31714:136:58","statements":[{"nativeSrc":"31728:37:58","nodeType":"YulAssignment","src":"31728:37:58","value":{"arguments":[{"name":"value","nativeSrc":"31741:5:58","nodeType":"YulIdentifier","src":"31741:5:58"},{"arguments":[{"kind":"number","nativeSrc":"31752:3:58","nodeType":"YulLiteral","src":"31752:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"31761:1:58","nodeType":"YulLiteral","src":"31761:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"31757:3:58","nodeType":"YulIdentifier","src":"31757:3:58"},"nativeSrc":"31757:6:58","nodeType":"YulFunctionCall","src":"31757:6:58"}],"functionName":{"name":"shl","nativeSrc":"31748:3:58","nodeType":"YulIdentifier","src":"31748:3:58"},"nativeSrc":"31748:16:58","nodeType":"YulFunctionCall","src":"31748:16:58"}],"functionName":{"name":"and","nativeSrc":"31737:3:58","nodeType":"YulIdentifier","src":"31737:3:58"},"nativeSrc":"31737:28:58","nodeType":"YulFunctionCall","src":"31737:28:58"},"variableNames":[{"name":"value","nativeSrc":"31728:5:58","nodeType":"YulIdentifier","src":"31728:5:58"}]},{"nativeSrc":"31778:62:58","nodeType":"YulAssignment","src":"31778:62:58","value":{"arguments":[{"name":"self","nativeSrc":"31792:4:58","nodeType":"YulIdentifier","src":"31792:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31806:1:58","nodeType":"YulLiteral","src":"31806:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"31809:6:58","nodeType":"YulIdentifier","src":"31809:6:58"}],"functionName":{"name":"mul","nativeSrc":"31802:3:58","nodeType":"YulIdentifier","src":"31802:3:58"},"nativeSrc":"31802:14:58","nodeType":"YulFunctionCall","src":"31802:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"31822:8:58","nodeType":"YulIdentifier","src":"31822:8:58"},{"name":"value","nativeSrc":"31832:5:58","nodeType":"YulIdentifier","src":"31832:5:58"}],"functionName":{"name":"xor","nativeSrc":"31818:3:58","nodeType":"YulIdentifier","src":"31818:3:58"},"nativeSrc":"31818:20:58","nodeType":"YulFunctionCall","src":"31818:20:58"}],"functionName":{"name":"shr","nativeSrc":"31798:3:58","nodeType":"YulIdentifier","src":"31798:3:58"},"nativeSrc":"31798:41:58","nodeType":"YulFunctionCall","src":"31798:41:58"}],"functionName":{"name":"xor","nativeSrc":"31788:3:58","nodeType":"YulIdentifier","src":"31788:3:58"},"nativeSrc":"31788:52:58","nodeType":"YulFunctionCall","src":"31788:52:58"},"variableNames":[{"name":"result","nativeSrc":"31778:6:58","nodeType":"YulIdentifier","src":"31778:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14238,"isOffset":false,"isSlot":false,"src":"31809:6:58","valueSize":1},{"declaration":14244,"isOffset":false,"isSlot":false,"src":"31822:8:58","valueSize":1},{"declaration":14241,"isOffset":false,"isSlot":false,"src":"31778:6:58","valueSize":1},{"declaration":14234,"isOffset":false,"isSlot":false,"src":"31792:4:58","valueSize":1},{"declaration":14236,"isOffset":false,"isSlot":false,"src":"31728:5:58","valueSize":1},{"declaration":14236,"isOffset":false,"isSlot":false,"src":"31741:5:58","valueSize":1},{"declaration":14236,"isOffset":false,"isSlot":false,"src":"31832:5:58","valueSize":1}],"flags":["memory-safe"],"id":14250,"nodeType":"InlineAssembly","src":"31689:161:58"}]},"id":14252,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_4","nameLocation":"31531:12:58","nodeType":"FunctionDefinition","parameters":{"id":14239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14234,"mutability":"mutable","name":"self","nameLocation":"31552:4:58","nodeType":"VariableDeclaration","scope":14252,"src":"31544:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14233,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31544:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14236,"mutability":"mutable","name":"value","nameLocation":"31565:5:58","nodeType":"VariableDeclaration","scope":14252,"src":"31558:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14235,"name":"bytes4","nodeType":"ElementaryTypeName","src":"31558:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":14238,"mutability":"mutable","name":"offset","nameLocation":"31578:6:58","nodeType":"VariableDeclaration","scope":14252,"src":"31572:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14237,"name":"uint8","nodeType":"ElementaryTypeName","src":"31572:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"31543:42:58"},"returnParameters":{"id":14242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14241,"mutability":"mutable","name":"result","nameLocation":"31617:6:58","nodeType":"VariableDeclaration","scope":14252,"src":"31609:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14240,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31609:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"31608:16:58"},"scope":16305,"src":"31522:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14269,"nodeType":"Block","src":"31950:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14261,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14256,"src":"31964:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":14262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31973:2:58","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"31964:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14267,"nodeType":"IfStatement","src":"31960:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14264,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"31984:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31984:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14266,"nodeType":"RevertStatement","src":"31977:25:58"}},{"AST":{"nativeSrc":"32037:82:58","nodeType":"YulBlock","src":"32037:82:58","statements":[{"nativeSrc":"32051:58:58","nodeType":"YulAssignment","src":"32051:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32073:1:58","nodeType":"YulLiteral","src":"32073:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"32076:6:58","nodeType":"YulIdentifier","src":"32076:6:58"}],"functionName":{"name":"mul","nativeSrc":"32069:3:58","nodeType":"YulIdentifier","src":"32069:3:58"},"nativeSrc":"32069:14:58","nodeType":"YulFunctionCall","src":"32069:14:58"},{"name":"self","nativeSrc":"32085:4:58","nodeType":"YulIdentifier","src":"32085:4:58"}],"functionName":{"name":"shl","nativeSrc":"32065:3:58","nodeType":"YulIdentifier","src":"32065:3:58"},"nativeSrc":"32065:25:58","nodeType":"YulFunctionCall","src":"32065:25:58"},{"arguments":[{"kind":"number","nativeSrc":"32096:3:58","nodeType":"YulLiteral","src":"32096:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"32105:1:58","nodeType":"YulLiteral","src":"32105:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32101:3:58","nodeType":"YulIdentifier","src":"32101:3:58"},"nativeSrc":"32101:6:58","nodeType":"YulFunctionCall","src":"32101:6:58"}],"functionName":{"name":"shl","nativeSrc":"32092:3:58","nodeType":"YulIdentifier","src":"32092:3:58"},"nativeSrc":"32092:16:58","nodeType":"YulFunctionCall","src":"32092:16:58"}],"functionName":{"name":"and","nativeSrc":"32061:3:58","nodeType":"YulIdentifier","src":"32061:3:58"},"nativeSrc":"32061:48:58","nodeType":"YulFunctionCall","src":"32061:48:58"},"variableNames":[{"name":"result","nativeSrc":"32051:6:58","nodeType":"YulIdentifier","src":"32051:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14256,"isOffset":false,"isSlot":false,"src":"32076:6:58","valueSize":1},{"declaration":14259,"isOffset":false,"isSlot":false,"src":"32051:6:58","valueSize":1},{"declaration":14254,"isOffset":false,"isSlot":false,"src":"32085:4:58","valueSize":1}],"flags":["memory-safe"],"id":14268,"nodeType":"InlineAssembly","src":"32012:107:58"}]},"id":14270,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_6","nameLocation":"31871:12:58","nodeType":"FunctionDefinition","parameters":{"id":14257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14254,"mutability":"mutable","name":"self","nameLocation":"31892:4:58","nodeType":"VariableDeclaration","scope":14270,"src":"31884:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14253,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31884:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14256,"mutability":"mutable","name":"offset","nameLocation":"31904:6:58","nodeType":"VariableDeclaration","scope":14270,"src":"31898:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14255,"name":"uint8","nodeType":"ElementaryTypeName","src":"31898:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"31883:28:58"},"returnParameters":{"id":14260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14259,"mutability":"mutable","name":"result","nameLocation":"31942:6:58","nodeType":"VariableDeclaration","scope":14270,"src":"31935:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14258,"name":"bytes6","nodeType":"ElementaryTypeName","src":"31935:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"31934:15:58"},"scope":16305,"src":"31862:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14289,"nodeType":"Block","src":"32234:231:58","statements":[{"assignments":[14282],"declarations":[{"constant":false,"id":14282,"mutability":"mutable","name":"oldValue","nameLocation":"32251:8:58","nodeType":"VariableDeclaration","scope":14289,"src":"32244:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14281,"name":"bytes6","nodeType":"ElementaryTypeName","src":"32244:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":14287,"initialValue":{"arguments":[{"id":14284,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"32275:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14285,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14276,"src":"32281:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14283,"name":"extract_16_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14270,"src":"32262:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes16,uint8) pure returns (bytes6)"}},"id":14286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32262:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"32244:44:58"},{"AST":{"nativeSrc":"32323:136:58","nodeType":"YulBlock","src":"32323:136:58","statements":[{"nativeSrc":"32337:37:58","nodeType":"YulAssignment","src":"32337:37:58","value":{"arguments":[{"name":"value","nativeSrc":"32350:5:58","nodeType":"YulIdentifier","src":"32350:5:58"},{"arguments":[{"kind":"number","nativeSrc":"32361:3:58","nodeType":"YulLiteral","src":"32361:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"32370:1:58","nodeType":"YulLiteral","src":"32370:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32366:3:58","nodeType":"YulIdentifier","src":"32366:3:58"},"nativeSrc":"32366:6:58","nodeType":"YulFunctionCall","src":"32366:6:58"}],"functionName":{"name":"shl","nativeSrc":"32357:3:58","nodeType":"YulIdentifier","src":"32357:3:58"},"nativeSrc":"32357:16:58","nodeType":"YulFunctionCall","src":"32357:16:58"}],"functionName":{"name":"and","nativeSrc":"32346:3:58","nodeType":"YulIdentifier","src":"32346:3:58"},"nativeSrc":"32346:28:58","nodeType":"YulFunctionCall","src":"32346:28:58"},"variableNames":[{"name":"value","nativeSrc":"32337:5:58","nodeType":"YulIdentifier","src":"32337:5:58"}]},{"nativeSrc":"32387:62:58","nodeType":"YulAssignment","src":"32387:62:58","value":{"arguments":[{"name":"self","nativeSrc":"32401:4:58","nodeType":"YulIdentifier","src":"32401:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32415:1:58","nodeType":"YulLiteral","src":"32415:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"32418:6:58","nodeType":"YulIdentifier","src":"32418:6:58"}],"functionName":{"name":"mul","nativeSrc":"32411:3:58","nodeType":"YulIdentifier","src":"32411:3:58"},"nativeSrc":"32411:14:58","nodeType":"YulFunctionCall","src":"32411:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"32431:8:58","nodeType":"YulIdentifier","src":"32431:8:58"},{"name":"value","nativeSrc":"32441:5:58","nodeType":"YulIdentifier","src":"32441:5:58"}],"functionName":{"name":"xor","nativeSrc":"32427:3:58","nodeType":"YulIdentifier","src":"32427:3:58"},"nativeSrc":"32427:20:58","nodeType":"YulFunctionCall","src":"32427:20:58"}],"functionName":{"name":"shr","nativeSrc":"32407:3:58","nodeType":"YulIdentifier","src":"32407:3:58"},"nativeSrc":"32407:41:58","nodeType":"YulFunctionCall","src":"32407:41:58"}],"functionName":{"name":"xor","nativeSrc":"32397:3:58","nodeType":"YulIdentifier","src":"32397:3:58"},"nativeSrc":"32397:52:58","nodeType":"YulFunctionCall","src":"32397:52:58"},"variableNames":[{"name":"result","nativeSrc":"32387:6:58","nodeType":"YulIdentifier","src":"32387:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14276,"isOffset":false,"isSlot":false,"src":"32418:6:58","valueSize":1},{"declaration":14282,"isOffset":false,"isSlot":false,"src":"32431:8:58","valueSize":1},{"declaration":14279,"isOffset":false,"isSlot":false,"src":"32387:6:58","valueSize":1},{"declaration":14272,"isOffset":false,"isSlot":false,"src":"32401:4:58","valueSize":1},{"declaration":14274,"isOffset":false,"isSlot":false,"src":"32337:5:58","valueSize":1},{"declaration":14274,"isOffset":false,"isSlot":false,"src":"32350:5:58","valueSize":1},{"declaration":14274,"isOffset":false,"isSlot":false,"src":"32441:5:58","valueSize":1}],"flags":["memory-safe"],"id":14288,"nodeType":"InlineAssembly","src":"32298:161:58"}]},"id":14290,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_6","nameLocation":"32140:12:58","nodeType":"FunctionDefinition","parameters":{"id":14277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14272,"mutability":"mutable","name":"self","nameLocation":"32161:4:58","nodeType":"VariableDeclaration","scope":14290,"src":"32153:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14271,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32153:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14274,"mutability":"mutable","name":"value","nameLocation":"32174:5:58","nodeType":"VariableDeclaration","scope":14290,"src":"32167:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14273,"name":"bytes6","nodeType":"ElementaryTypeName","src":"32167:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":14276,"mutability":"mutable","name":"offset","nameLocation":"32187:6:58","nodeType":"VariableDeclaration","scope":14290,"src":"32181:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14275,"name":"uint8","nodeType":"ElementaryTypeName","src":"32181:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"32152:42:58"},"returnParameters":{"id":14280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14279,"mutability":"mutable","name":"result","nameLocation":"32226:6:58","nodeType":"VariableDeclaration","scope":14290,"src":"32218:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14278,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32218:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"32217:16:58"},"scope":16305,"src":"32131:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14307,"nodeType":"Block","src":"32559:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14299,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14294,"src":"32573:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":14300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32582:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"32573:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14305,"nodeType":"IfStatement","src":"32569:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14302,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"32592:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32592:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14304,"nodeType":"RevertStatement","src":"32585:25:58"}},{"AST":{"nativeSrc":"32645:82:58","nodeType":"YulBlock","src":"32645:82:58","statements":[{"nativeSrc":"32659:58:58","nodeType":"YulAssignment","src":"32659:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32681:1:58","nodeType":"YulLiteral","src":"32681:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"32684:6:58","nodeType":"YulIdentifier","src":"32684:6:58"}],"functionName":{"name":"mul","nativeSrc":"32677:3:58","nodeType":"YulIdentifier","src":"32677:3:58"},"nativeSrc":"32677:14:58","nodeType":"YulFunctionCall","src":"32677:14:58"},{"name":"self","nativeSrc":"32693:4:58","nodeType":"YulIdentifier","src":"32693:4:58"}],"functionName":{"name":"shl","nativeSrc":"32673:3:58","nodeType":"YulIdentifier","src":"32673:3:58"},"nativeSrc":"32673:25:58","nodeType":"YulFunctionCall","src":"32673:25:58"},{"arguments":[{"kind":"number","nativeSrc":"32704:3:58","nodeType":"YulLiteral","src":"32704:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"32713:1:58","nodeType":"YulLiteral","src":"32713:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32709:3:58","nodeType":"YulIdentifier","src":"32709:3:58"},"nativeSrc":"32709:6:58","nodeType":"YulFunctionCall","src":"32709:6:58"}],"functionName":{"name":"shl","nativeSrc":"32700:3:58","nodeType":"YulIdentifier","src":"32700:3:58"},"nativeSrc":"32700:16:58","nodeType":"YulFunctionCall","src":"32700:16:58"}],"functionName":{"name":"and","nativeSrc":"32669:3:58","nodeType":"YulIdentifier","src":"32669:3:58"},"nativeSrc":"32669:48:58","nodeType":"YulFunctionCall","src":"32669:48:58"},"variableNames":[{"name":"result","nativeSrc":"32659:6:58","nodeType":"YulIdentifier","src":"32659:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14294,"isOffset":false,"isSlot":false,"src":"32684:6:58","valueSize":1},{"declaration":14297,"isOffset":false,"isSlot":false,"src":"32659:6:58","valueSize":1},{"declaration":14292,"isOffset":false,"isSlot":false,"src":"32693:4:58","valueSize":1}],"flags":["memory-safe"],"id":14306,"nodeType":"InlineAssembly","src":"32620:107:58"}]},"id":14308,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_8","nameLocation":"32480:12:58","nodeType":"FunctionDefinition","parameters":{"id":14295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14292,"mutability":"mutable","name":"self","nameLocation":"32501:4:58","nodeType":"VariableDeclaration","scope":14308,"src":"32493:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14291,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32493:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14294,"mutability":"mutable","name":"offset","nameLocation":"32513:6:58","nodeType":"VariableDeclaration","scope":14308,"src":"32507:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14293,"name":"uint8","nodeType":"ElementaryTypeName","src":"32507:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"32492:28:58"},"returnParameters":{"id":14298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14297,"mutability":"mutable","name":"result","nameLocation":"32551:6:58","nodeType":"VariableDeclaration","scope":14308,"src":"32544:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14296,"name":"bytes8","nodeType":"ElementaryTypeName","src":"32544:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"32543:15:58"},"scope":16305,"src":"32471:262:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14327,"nodeType":"Block","src":"32842:231:58","statements":[{"assignments":[14320],"declarations":[{"constant":false,"id":14320,"mutability":"mutable","name":"oldValue","nameLocation":"32859:8:58","nodeType":"VariableDeclaration","scope":14327,"src":"32852:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14319,"name":"bytes8","nodeType":"ElementaryTypeName","src":"32852:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":14325,"initialValue":{"arguments":[{"id":14322,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14310,"src":"32883:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14323,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14314,"src":"32889:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14321,"name":"extract_16_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14308,"src":"32870:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes16,uint8) pure returns (bytes8)"}},"id":14324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32870:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"32852:44:58"},{"AST":{"nativeSrc":"32931:136:58","nodeType":"YulBlock","src":"32931:136:58","statements":[{"nativeSrc":"32945:37:58","nodeType":"YulAssignment","src":"32945:37:58","value":{"arguments":[{"name":"value","nativeSrc":"32958:5:58","nodeType":"YulIdentifier","src":"32958:5:58"},{"arguments":[{"kind":"number","nativeSrc":"32969:3:58","nodeType":"YulLiteral","src":"32969:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"32978:1:58","nodeType":"YulLiteral","src":"32978:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32974:3:58","nodeType":"YulIdentifier","src":"32974:3:58"},"nativeSrc":"32974:6:58","nodeType":"YulFunctionCall","src":"32974:6:58"}],"functionName":{"name":"shl","nativeSrc":"32965:3:58","nodeType":"YulIdentifier","src":"32965:3:58"},"nativeSrc":"32965:16:58","nodeType":"YulFunctionCall","src":"32965:16:58"}],"functionName":{"name":"and","nativeSrc":"32954:3:58","nodeType":"YulIdentifier","src":"32954:3:58"},"nativeSrc":"32954:28:58","nodeType":"YulFunctionCall","src":"32954:28:58"},"variableNames":[{"name":"value","nativeSrc":"32945:5:58","nodeType":"YulIdentifier","src":"32945:5:58"}]},{"nativeSrc":"32995:62:58","nodeType":"YulAssignment","src":"32995:62:58","value":{"arguments":[{"name":"self","nativeSrc":"33009:4:58","nodeType":"YulIdentifier","src":"33009:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33023:1:58","nodeType":"YulLiteral","src":"33023:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"33026:6:58","nodeType":"YulIdentifier","src":"33026:6:58"}],"functionName":{"name":"mul","nativeSrc":"33019:3:58","nodeType":"YulIdentifier","src":"33019:3:58"},"nativeSrc":"33019:14:58","nodeType":"YulFunctionCall","src":"33019:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"33039:8:58","nodeType":"YulIdentifier","src":"33039:8:58"},{"name":"value","nativeSrc":"33049:5:58","nodeType":"YulIdentifier","src":"33049:5:58"}],"functionName":{"name":"xor","nativeSrc":"33035:3:58","nodeType":"YulIdentifier","src":"33035:3:58"},"nativeSrc":"33035:20:58","nodeType":"YulFunctionCall","src":"33035:20:58"}],"functionName":{"name":"shr","nativeSrc":"33015:3:58","nodeType":"YulIdentifier","src":"33015:3:58"},"nativeSrc":"33015:41:58","nodeType":"YulFunctionCall","src":"33015:41:58"}],"functionName":{"name":"xor","nativeSrc":"33005:3:58","nodeType":"YulIdentifier","src":"33005:3:58"},"nativeSrc":"33005:52:58","nodeType":"YulFunctionCall","src":"33005:52:58"},"variableNames":[{"name":"result","nativeSrc":"32995:6:58","nodeType":"YulIdentifier","src":"32995:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14314,"isOffset":false,"isSlot":false,"src":"33026:6:58","valueSize":1},{"declaration":14320,"isOffset":false,"isSlot":false,"src":"33039:8:58","valueSize":1},{"declaration":14317,"isOffset":false,"isSlot":false,"src":"32995:6:58","valueSize":1},{"declaration":14310,"isOffset":false,"isSlot":false,"src":"33009:4:58","valueSize":1},{"declaration":14312,"isOffset":false,"isSlot":false,"src":"32945:5:58","valueSize":1},{"declaration":14312,"isOffset":false,"isSlot":false,"src":"32958:5:58","valueSize":1},{"declaration":14312,"isOffset":false,"isSlot":false,"src":"33049:5:58","valueSize":1}],"flags":["memory-safe"],"id":14326,"nodeType":"InlineAssembly","src":"32906:161:58"}]},"id":14328,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_8","nameLocation":"32748:12:58","nodeType":"FunctionDefinition","parameters":{"id":14315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14310,"mutability":"mutable","name":"self","nameLocation":"32769:4:58","nodeType":"VariableDeclaration","scope":14328,"src":"32761:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14309,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32761:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14312,"mutability":"mutable","name":"value","nameLocation":"32782:5:58","nodeType":"VariableDeclaration","scope":14328,"src":"32775:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14311,"name":"bytes8","nodeType":"ElementaryTypeName","src":"32775:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":14314,"mutability":"mutable","name":"offset","nameLocation":"32795:6:58","nodeType":"VariableDeclaration","scope":14328,"src":"32789:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14313,"name":"uint8","nodeType":"ElementaryTypeName","src":"32789:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"32760:42:58"},"returnParameters":{"id":14318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14317,"mutability":"mutable","name":"result","nameLocation":"32834:6:58","nodeType":"VariableDeclaration","scope":14328,"src":"32826:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14316,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32826:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"32825:16:58"},"scope":16305,"src":"32739:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14345,"nodeType":"Block","src":"33169:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14337,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14332,"src":"33183:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":14338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33192:1:58","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"33183:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14343,"nodeType":"IfStatement","src":"33179:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14340,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"33202:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33202:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14342,"nodeType":"RevertStatement","src":"33195:25:58"}},{"AST":{"nativeSrc":"33255:82:58","nodeType":"YulBlock","src":"33255:82:58","statements":[{"nativeSrc":"33269:58:58","nodeType":"YulAssignment","src":"33269:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33291:1:58","nodeType":"YulLiteral","src":"33291:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"33294:6:58","nodeType":"YulIdentifier","src":"33294:6:58"}],"functionName":{"name":"mul","nativeSrc":"33287:3:58","nodeType":"YulIdentifier","src":"33287:3:58"},"nativeSrc":"33287:14:58","nodeType":"YulFunctionCall","src":"33287:14:58"},{"name":"self","nativeSrc":"33303:4:58","nodeType":"YulIdentifier","src":"33303:4:58"}],"functionName":{"name":"shl","nativeSrc":"33283:3:58","nodeType":"YulIdentifier","src":"33283:3:58"},"nativeSrc":"33283:25:58","nodeType":"YulFunctionCall","src":"33283:25:58"},{"arguments":[{"kind":"number","nativeSrc":"33314:3:58","nodeType":"YulLiteral","src":"33314:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"33323:1:58","nodeType":"YulLiteral","src":"33323:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33319:3:58","nodeType":"YulIdentifier","src":"33319:3:58"},"nativeSrc":"33319:6:58","nodeType":"YulFunctionCall","src":"33319:6:58"}],"functionName":{"name":"shl","nativeSrc":"33310:3:58","nodeType":"YulIdentifier","src":"33310:3:58"},"nativeSrc":"33310:16:58","nodeType":"YulFunctionCall","src":"33310:16:58"}],"functionName":{"name":"and","nativeSrc":"33279:3:58","nodeType":"YulIdentifier","src":"33279:3:58"},"nativeSrc":"33279:48:58","nodeType":"YulFunctionCall","src":"33279:48:58"},"variableNames":[{"name":"result","nativeSrc":"33269:6:58","nodeType":"YulIdentifier","src":"33269:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14332,"isOffset":false,"isSlot":false,"src":"33294:6:58","valueSize":1},{"declaration":14335,"isOffset":false,"isSlot":false,"src":"33269:6:58","valueSize":1},{"declaration":14330,"isOffset":false,"isSlot":false,"src":"33303:4:58","valueSize":1}],"flags":["memory-safe"],"id":14344,"nodeType":"InlineAssembly","src":"33230:107:58"}]},"id":14346,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_10","nameLocation":"33088:13:58","nodeType":"FunctionDefinition","parameters":{"id":14333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14330,"mutability":"mutable","name":"self","nameLocation":"33110:4:58","nodeType":"VariableDeclaration","scope":14346,"src":"33102:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14329,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33102:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14332,"mutability":"mutable","name":"offset","nameLocation":"33122:6:58","nodeType":"VariableDeclaration","scope":14346,"src":"33116:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14331,"name":"uint8","nodeType":"ElementaryTypeName","src":"33116:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33101:28:58"},"returnParameters":{"id":14336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14335,"mutability":"mutable","name":"result","nameLocation":"33161:6:58","nodeType":"VariableDeclaration","scope":14346,"src":"33153:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14334,"name":"bytes10","nodeType":"ElementaryTypeName","src":"33153:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"33152:16:58"},"scope":16305,"src":"33079:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14365,"nodeType":"Block","src":"33454:233:58","statements":[{"assignments":[14358],"declarations":[{"constant":false,"id":14358,"mutability":"mutable","name":"oldValue","nameLocation":"33472:8:58","nodeType":"VariableDeclaration","scope":14365,"src":"33464:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14357,"name":"bytes10","nodeType":"ElementaryTypeName","src":"33464:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":14363,"initialValue":{"arguments":[{"id":14360,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14348,"src":"33497:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14361,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14352,"src":"33503:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14359,"name":"extract_16_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14346,"src":"33483:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes16,uint8) pure returns (bytes10)"}},"id":14362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33483:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"33464:46:58"},{"AST":{"nativeSrc":"33545:136:58","nodeType":"YulBlock","src":"33545:136:58","statements":[{"nativeSrc":"33559:37:58","nodeType":"YulAssignment","src":"33559:37:58","value":{"arguments":[{"name":"value","nativeSrc":"33572:5:58","nodeType":"YulIdentifier","src":"33572:5:58"},{"arguments":[{"kind":"number","nativeSrc":"33583:3:58","nodeType":"YulLiteral","src":"33583:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"33592:1:58","nodeType":"YulLiteral","src":"33592:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33588:3:58","nodeType":"YulIdentifier","src":"33588:3:58"},"nativeSrc":"33588:6:58","nodeType":"YulFunctionCall","src":"33588:6:58"}],"functionName":{"name":"shl","nativeSrc":"33579:3:58","nodeType":"YulIdentifier","src":"33579:3:58"},"nativeSrc":"33579:16:58","nodeType":"YulFunctionCall","src":"33579:16:58"}],"functionName":{"name":"and","nativeSrc":"33568:3:58","nodeType":"YulIdentifier","src":"33568:3:58"},"nativeSrc":"33568:28:58","nodeType":"YulFunctionCall","src":"33568:28:58"},"variableNames":[{"name":"value","nativeSrc":"33559:5:58","nodeType":"YulIdentifier","src":"33559:5:58"}]},{"nativeSrc":"33609:62:58","nodeType":"YulAssignment","src":"33609:62:58","value":{"arguments":[{"name":"self","nativeSrc":"33623:4:58","nodeType":"YulIdentifier","src":"33623:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33637:1:58","nodeType":"YulLiteral","src":"33637:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"33640:6:58","nodeType":"YulIdentifier","src":"33640:6:58"}],"functionName":{"name":"mul","nativeSrc":"33633:3:58","nodeType":"YulIdentifier","src":"33633:3:58"},"nativeSrc":"33633:14:58","nodeType":"YulFunctionCall","src":"33633:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"33653:8:58","nodeType":"YulIdentifier","src":"33653:8:58"},{"name":"value","nativeSrc":"33663:5:58","nodeType":"YulIdentifier","src":"33663:5:58"}],"functionName":{"name":"xor","nativeSrc":"33649:3:58","nodeType":"YulIdentifier","src":"33649:3:58"},"nativeSrc":"33649:20:58","nodeType":"YulFunctionCall","src":"33649:20:58"}],"functionName":{"name":"shr","nativeSrc":"33629:3:58","nodeType":"YulIdentifier","src":"33629:3:58"},"nativeSrc":"33629:41:58","nodeType":"YulFunctionCall","src":"33629:41:58"}],"functionName":{"name":"xor","nativeSrc":"33619:3:58","nodeType":"YulIdentifier","src":"33619:3:58"},"nativeSrc":"33619:52:58","nodeType":"YulFunctionCall","src":"33619:52:58"},"variableNames":[{"name":"result","nativeSrc":"33609:6:58","nodeType":"YulIdentifier","src":"33609:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14352,"isOffset":false,"isSlot":false,"src":"33640:6:58","valueSize":1},{"declaration":14358,"isOffset":false,"isSlot":false,"src":"33653:8:58","valueSize":1},{"declaration":14355,"isOffset":false,"isSlot":false,"src":"33609:6:58","valueSize":1},{"declaration":14348,"isOffset":false,"isSlot":false,"src":"33623:4:58","valueSize":1},{"declaration":14350,"isOffset":false,"isSlot":false,"src":"33559:5:58","valueSize":1},{"declaration":14350,"isOffset":false,"isSlot":false,"src":"33572:5:58","valueSize":1},{"declaration":14350,"isOffset":false,"isSlot":false,"src":"33663:5:58","valueSize":1}],"flags":["memory-safe"],"id":14364,"nodeType":"InlineAssembly","src":"33520:161:58"}]},"id":14366,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_10","nameLocation":"33358:13:58","nodeType":"FunctionDefinition","parameters":{"id":14353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14348,"mutability":"mutable","name":"self","nameLocation":"33380:4:58","nodeType":"VariableDeclaration","scope":14366,"src":"33372:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14347,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33372:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14350,"mutability":"mutable","name":"value","nameLocation":"33394:5:58","nodeType":"VariableDeclaration","scope":14366,"src":"33386:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14349,"name":"bytes10","nodeType":"ElementaryTypeName","src":"33386:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":14352,"mutability":"mutable","name":"offset","nameLocation":"33407:6:58","nodeType":"VariableDeclaration","scope":14366,"src":"33401:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14351,"name":"uint8","nodeType":"ElementaryTypeName","src":"33401:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33371:43:58"},"returnParameters":{"id":14356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14355,"mutability":"mutable","name":"result","nameLocation":"33446:6:58","nodeType":"VariableDeclaration","scope":14366,"src":"33438:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14354,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33438:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"33437:16:58"},"scope":16305,"src":"33349:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14383,"nodeType":"Block","src":"33783:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14375,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14370,"src":"33797:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":14376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33806:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"33797:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14381,"nodeType":"IfStatement","src":"33793:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14378,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"33816:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33816:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14380,"nodeType":"RevertStatement","src":"33809:25:58"}},{"AST":{"nativeSrc":"33869:82:58","nodeType":"YulBlock","src":"33869:82:58","statements":[{"nativeSrc":"33883:58:58","nodeType":"YulAssignment","src":"33883:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33905:1:58","nodeType":"YulLiteral","src":"33905:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"33908:6:58","nodeType":"YulIdentifier","src":"33908:6:58"}],"functionName":{"name":"mul","nativeSrc":"33901:3:58","nodeType":"YulIdentifier","src":"33901:3:58"},"nativeSrc":"33901:14:58","nodeType":"YulFunctionCall","src":"33901:14:58"},{"name":"self","nativeSrc":"33917:4:58","nodeType":"YulIdentifier","src":"33917:4:58"}],"functionName":{"name":"shl","nativeSrc":"33897:3:58","nodeType":"YulIdentifier","src":"33897:3:58"},"nativeSrc":"33897:25:58","nodeType":"YulFunctionCall","src":"33897:25:58"},{"arguments":[{"kind":"number","nativeSrc":"33928:3:58","nodeType":"YulLiteral","src":"33928:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"33937:1:58","nodeType":"YulLiteral","src":"33937:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33933:3:58","nodeType":"YulIdentifier","src":"33933:3:58"},"nativeSrc":"33933:6:58","nodeType":"YulFunctionCall","src":"33933:6:58"}],"functionName":{"name":"shl","nativeSrc":"33924:3:58","nodeType":"YulIdentifier","src":"33924:3:58"},"nativeSrc":"33924:16:58","nodeType":"YulFunctionCall","src":"33924:16:58"}],"functionName":{"name":"and","nativeSrc":"33893:3:58","nodeType":"YulIdentifier","src":"33893:3:58"},"nativeSrc":"33893:48:58","nodeType":"YulFunctionCall","src":"33893:48:58"},"variableNames":[{"name":"result","nativeSrc":"33883:6:58","nodeType":"YulIdentifier","src":"33883:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14370,"isOffset":false,"isSlot":false,"src":"33908:6:58","valueSize":1},{"declaration":14373,"isOffset":false,"isSlot":false,"src":"33883:6:58","valueSize":1},{"declaration":14368,"isOffset":false,"isSlot":false,"src":"33917:4:58","valueSize":1}],"flags":["memory-safe"],"id":14382,"nodeType":"InlineAssembly","src":"33844:107:58"}]},"id":14384,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_12","nameLocation":"33702:13:58","nodeType":"FunctionDefinition","parameters":{"id":14371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14368,"mutability":"mutable","name":"self","nameLocation":"33724:4:58","nodeType":"VariableDeclaration","scope":14384,"src":"33716:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14367,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33716:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14370,"mutability":"mutable","name":"offset","nameLocation":"33736:6:58","nodeType":"VariableDeclaration","scope":14384,"src":"33730:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14369,"name":"uint8","nodeType":"ElementaryTypeName","src":"33730:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33715:28:58"},"returnParameters":{"id":14374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14373,"mutability":"mutable","name":"result","nameLocation":"33775:6:58","nodeType":"VariableDeclaration","scope":14384,"src":"33767:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14372,"name":"bytes12","nodeType":"ElementaryTypeName","src":"33767:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"33766:16:58"},"scope":16305,"src":"33693:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14403,"nodeType":"Block","src":"34068:233:58","statements":[{"assignments":[14396],"declarations":[{"constant":false,"id":14396,"mutability":"mutable","name":"oldValue","nameLocation":"34086:8:58","nodeType":"VariableDeclaration","scope":14403,"src":"34078:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14395,"name":"bytes12","nodeType":"ElementaryTypeName","src":"34078:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":14401,"initialValue":{"arguments":[{"id":14398,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14386,"src":"34111:4:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":14399,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14390,"src":"34117:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14397,"name":"extract_16_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14384,"src":"34097:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes16,uint8) pure returns (bytes12)"}},"id":14400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34097:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"34078:46:58"},{"AST":{"nativeSrc":"34159:136:58","nodeType":"YulBlock","src":"34159:136:58","statements":[{"nativeSrc":"34173:37:58","nodeType":"YulAssignment","src":"34173:37:58","value":{"arguments":[{"name":"value","nativeSrc":"34186:5:58","nodeType":"YulIdentifier","src":"34186:5:58"},{"arguments":[{"kind":"number","nativeSrc":"34197:3:58","nodeType":"YulLiteral","src":"34197:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"34206:1:58","nodeType":"YulLiteral","src":"34206:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34202:3:58","nodeType":"YulIdentifier","src":"34202:3:58"},"nativeSrc":"34202:6:58","nodeType":"YulFunctionCall","src":"34202:6:58"}],"functionName":{"name":"shl","nativeSrc":"34193:3:58","nodeType":"YulIdentifier","src":"34193:3:58"},"nativeSrc":"34193:16:58","nodeType":"YulFunctionCall","src":"34193:16:58"}],"functionName":{"name":"and","nativeSrc":"34182:3:58","nodeType":"YulIdentifier","src":"34182:3:58"},"nativeSrc":"34182:28:58","nodeType":"YulFunctionCall","src":"34182:28:58"},"variableNames":[{"name":"value","nativeSrc":"34173:5:58","nodeType":"YulIdentifier","src":"34173:5:58"}]},{"nativeSrc":"34223:62:58","nodeType":"YulAssignment","src":"34223:62:58","value":{"arguments":[{"name":"self","nativeSrc":"34237:4:58","nodeType":"YulIdentifier","src":"34237:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34251:1:58","nodeType":"YulLiteral","src":"34251:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"34254:6:58","nodeType":"YulIdentifier","src":"34254:6:58"}],"functionName":{"name":"mul","nativeSrc":"34247:3:58","nodeType":"YulIdentifier","src":"34247:3:58"},"nativeSrc":"34247:14:58","nodeType":"YulFunctionCall","src":"34247:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"34267:8:58","nodeType":"YulIdentifier","src":"34267:8:58"},{"name":"value","nativeSrc":"34277:5:58","nodeType":"YulIdentifier","src":"34277:5:58"}],"functionName":{"name":"xor","nativeSrc":"34263:3:58","nodeType":"YulIdentifier","src":"34263:3:58"},"nativeSrc":"34263:20:58","nodeType":"YulFunctionCall","src":"34263:20:58"}],"functionName":{"name":"shr","nativeSrc":"34243:3:58","nodeType":"YulIdentifier","src":"34243:3:58"},"nativeSrc":"34243:41:58","nodeType":"YulFunctionCall","src":"34243:41:58"}],"functionName":{"name":"xor","nativeSrc":"34233:3:58","nodeType":"YulIdentifier","src":"34233:3:58"},"nativeSrc":"34233:52:58","nodeType":"YulFunctionCall","src":"34233:52:58"},"variableNames":[{"name":"result","nativeSrc":"34223:6:58","nodeType":"YulIdentifier","src":"34223:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14390,"isOffset":false,"isSlot":false,"src":"34254:6:58","valueSize":1},{"declaration":14396,"isOffset":false,"isSlot":false,"src":"34267:8:58","valueSize":1},{"declaration":14393,"isOffset":false,"isSlot":false,"src":"34223:6:58","valueSize":1},{"declaration":14386,"isOffset":false,"isSlot":false,"src":"34237:4:58","valueSize":1},{"declaration":14388,"isOffset":false,"isSlot":false,"src":"34173:5:58","valueSize":1},{"declaration":14388,"isOffset":false,"isSlot":false,"src":"34186:5:58","valueSize":1},{"declaration":14388,"isOffset":false,"isSlot":false,"src":"34277:5:58","valueSize":1}],"flags":["memory-safe"],"id":14402,"nodeType":"InlineAssembly","src":"34134:161:58"}]},"id":14404,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_12","nameLocation":"33972:13:58","nodeType":"FunctionDefinition","parameters":{"id":14391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14386,"mutability":"mutable","name":"self","nameLocation":"33994:4:58","nodeType":"VariableDeclaration","scope":14404,"src":"33986:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14385,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33986:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14388,"mutability":"mutable","name":"value","nameLocation":"34008:5:58","nodeType":"VariableDeclaration","scope":14404,"src":"34000:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14387,"name":"bytes12","nodeType":"ElementaryTypeName","src":"34000:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14390,"mutability":"mutable","name":"offset","nameLocation":"34021:6:58","nodeType":"VariableDeclaration","scope":14404,"src":"34015:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14389,"name":"uint8","nodeType":"ElementaryTypeName","src":"34015:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33985:43:58"},"returnParameters":{"id":14394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14393,"mutability":"mutable","name":"result","nameLocation":"34060:6:58","nodeType":"VariableDeclaration","scope":14404,"src":"34052:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14392,"name":"bytes16","nodeType":"ElementaryTypeName","src":"34052:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"34051:16:58"},"scope":16305,"src":"33963:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14421,"nodeType":"Block","src":"34395:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14413,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14408,"src":"34409:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3139","id":14414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34418:2:58","typeDescriptions":{"typeIdentifier":"t_rational_19_by_1","typeString":"int_const 19"},"value":"19"},"src":"34409:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14419,"nodeType":"IfStatement","src":"34405:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14416,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"34429:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34429:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14418,"nodeType":"RevertStatement","src":"34422:25:58"}},{"AST":{"nativeSrc":"34482:82:58","nodeType":"YulBlock","src":"34482:82:58","statements":[{"nativeSrc":"34496:58:58","nodeType":"YulAssignment","src":"34496:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34518:1:58","nodeType":"YulLiteral","src":"34518:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"34521:6:58","nodeType":"YulIdentifier","src":"34521:6:58"}],"functionName":{"name":"mul","nativeSrc":"34514:3:58","nodeType":"YulIdentifier","src":"34514:3:58"},"nativeSrc":"34514:14:58","nodeType":"YulFunctionCall","src":"34514:14:58"},{"name":"self","nativeSrc":"34530:4:58","nodeType":"YulIdentifier","src":"34530:4:58"}],"functionName":{"name":"shl","nativeSrc":"34510:3:58","nodeType":"YulIdentifier","src":"34510:3:58"},"nativeSrc":"34510:25:58","nodeType":"YulFunctionCall","src":"34510:25:58"},{"arguments":[{"kind":"number","nativeSrc":"34541:3:58","nodeType":"YulLiteral","src":"34541:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"34550:1:58","nodeType":"YulLiteral","src":"34550:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34546:3:58","nodeType":"YulIdentifier","src":"34546:3:58"},"nativeSrc":"34546:6:58","nodeType":"YulFunctionCall","src":"34546:6:58"}],"functionName":{"name":"shl","nativeSrc":"34537:3:58","nodeType":"YulIdentifier","src":"34537:3:58"},"nativeSrc":"34537:16:58","nodeType":"YulFunctionCall","src":"34537:16:58"}],"functionName":{"name":"and","nativeSrc":"34506:3:58","nodeType":"YulIdentifier","src":"34506:3:58"},"nativeSrc":"34506:48:58","nodeType":"YulFunctionCall","src":"34506:48:58"},"variableNames":[{"name":"result","nativeSrc":"34496:6:58","nodeType":"YulIdentifier","src":"34496:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14408,"isOffset":false,"isSlot":false,"src":"34521:6:58","valueSize":1},{"declaration":14411,"isOffset":false,"isSlot":false,"src":"34496:6:58","valueSize":1},{"declaration":14406,"isOffset":false,"isSlot":false,"src":"34530:4:58","valueSize":1}],"flags":["memory-safe"],"id":14420,"nodeType":"InlineAssembly","src":"34457:107:58"}]},"id":14422,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_1","nameLocation":"34316:12:58","nodeType":"FunctionDefinition","parameters":{"id":14409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14406,"mutability":"mutable","name":"self","nameLocation":"34337:4:58","nodeType":"VariableDeclaration","scope":14422,"src":"34329:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14405,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34329:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14408,"mutability":"mutable","name":"offset","nameLocation":"34349:6:58","nodeType":"VariableDeclaration","scope":14422,"src":"34343:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14407,"name":"uint8","nodeType":"ElementaryTypeName","src":"34343:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"34328:28:58"},"returnParameters":{"id":14412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14411,"mutability":"mutable","name":"result","nameLocation":"34387:6:58","nodeType":"VariableDeclaration","scope":14422,"src":"34380:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14410,"name":"bytes1","nodeType":"ElementaryTypeName","src":"34380:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"34379:15:58"},"scope":16305,"src":"34307:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14441,"nodeType":"Block","src":"34679:231:58","statements":[{"assignments":[14434],"declarations":[{"constant":false,"id":14434,"mutability":"mutable","name":"oldValue","nameLocation":"34696:8:58","nodeType":"VariableDeclaration","scope":14441,"src":"34689:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14433,"name":"bytes1","nodeType":"ElementaryTypeName","src":"34689:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":14439,"initialValue":{"arguments":[{"id":14436,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14424,"src":"34720:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14437,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14428,"src":"34726:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14435,"name":"extract_20_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14422,"src":"34707:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes20,uint8) pure returns (bytes1)"}},"id":14438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34707:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"34689:44:58"},{"AST":{"nativeSrc":"34768:136:58","nodeType":"YulBlock","src":"34768:136:58","statements":[{"nativeSrc":"34782:37:58","nodeType":"YulAssignment","src":"34782:37:58","value":{"arguments":[{"name":"value","nativeSrc":"34795:5:58","nodeType":"YulIdentifier","src":"34795:5:58"},{"arguments":[{"kind":"number","nativeSrc":"34806:3:58","nodeType":"YulLiteral","src":"34806:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"34815:1:58","nodeType":"YulLiteral","src":"34815:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34811:3:58","nodeType":"YulIdentifier","src":"34811:3:58"},"nativeSrc":"34811:6:58","nodeType":"YulFunctionCall","src":"34811:6:58"}],"functionName":{"name":"shl","nativeSrc":"34802:3:58","nodeType":"YulIdentifier","src":"34802:3:58"},"nativeSrc":"34802:16:58","nodeType":"YulFunctionCall","src":"34802:16:58"}],"functionName":{"name":"and","nativeSrc":"34791:3:58","nodeType":"YulIdentifier","src":"34791:3:58"},"nativeSrc":"34791:28:58","nodeType":"YulFunctionCall","src":"34791:28:58"},"variableNames":[{"name":"value","nativeSrc":"34782:5:58","nodeType":"YulIdentifier","src":"34782:5:58"}]},{"nativeSrc":"34832:62:58","nodeType":"YulAssignment","src":"34832:62:58","value":{"arguments":[{"name":"self","nativeSrc":"34846:4:58","nodeType":"YulIdentifier","src":"34846:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34860:1:58","nodeType":"YulLiteral","src":"34860:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"34863:6:58","nodeType":"YulIdentifier","src":"34863:6:58"}],"functionName":{"name":"mul","nativeSrc":"34856:3:58","nodeType":"YulIdentifier","src":"34856:3:58"},"nativeSrc":"34856:14:58","nodeType":"YulFunctionCall","src":"34856:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"34876:8:58","nodeType":"YulIdentifier","src":"34876:8:58"},{"name":"value","nativeSrc":"34886:5:58","nodeType":"YulIdentifier","src":"34886:5:58"}],"functionName":{"name":"xor","nativeSrc":"34872:3:58","nodeType":"YulIdentifier","src":"34872:3:58"},"nativeSrc":"34872:20:58","nodeType":"YulFunctionCall","src":"34872:20:58"}],"functionName":{"name":"shr","nativeSrc":"34852:3:58","nodeType":"YulIdentifier","src":"34852:3:58"},"nativeSrc":"34852:41:58","nodeType":"YulFunctionCall","src":"34852:41:58"}],"functionName":{"name":"xor","nativeSrc":"34842:3:58","nodeType":"YulIdentifier","src":"34842:3:58"},"nativeSrc":"34842:52:58","nodeType":"YulFunctionCall","src":"34842:52:58"},"variableNames":[{"name":"result","nativeSrc":"34832:6:58","nodeType":"YulIdentifier","src":"34832:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14428,"isOffset":false,"isSlot":false,"src":"34863:6:58","valueSize":1},{"declaration":14434,"isOffset":false,"isSlot":false,"src":"34876:8:58","valueSize":1},{"declaration":14431,"isOffset":false,"isSlot":false,"src":"34832:6:58","valueSize":1},{"declaration":14424,"isOffset":false,"isSlot":false,"src":"34846:4:58","valueSize":1},{"declaration":14426,"isOffset":false,"isSlot":false,"src":"34782:5:58","valueSize":1},{"declaration":14426,"isOffset":false,"isSlot":false,"src":"34795:5:58","valueSize":1},{"declaration":14426,"isOffset":false,"isSlot":false,"src":"34886:5:58","valueSize":1}],"flags":["memory-safe"],"id":14440,"nodeType":"InlineAssembly","src":"34743:161:58"}]},"id":14442,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_1","nameLocation":"34585:12:58","nodeType":"FunctionDefinition","parameters":{"id":14429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14424,"mutability":"mutable","name":"self","nameLocation":"34606:4:58","nodeType":"VariableDeclaration","scope":14442,"src":"34598:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14423,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34598:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14426,"mutability":"mutable","name":"value","nameLocation":"34619:5:58","nodeType":"VariableDeclaration","scope":14442,"src":"34612:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14425,"name":"bytes1","nodeType":"ElementaryTypeName","src":"34612:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":14428,"mutability":"mutable","name":"offset","nameLocation":"34632:6:58","nodeType":"VariableDeclaration","scope":14442,"src":"34626:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14427,"name":"uint8","nodeType":"ElementaryTypeName","src":"34626:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"34597:42:58"},"returnParameters":{"id":14432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14431,"mutability":"mutable","name":"result","nameLocation":"34671:6:58","nodeType":"VariableDeclaration","scope":14442,"src":"34663:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14430,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34663:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"34662:16:58"},"scope":16305,"src":"34576:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14459,"nodeType":"Block","src":"35004:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14451,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14446,"src":"35018:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":14452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35027:2:58","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"35018:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14457,"nodeType":"IfStatement","src":"35014:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14454,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"35038:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35038:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14456,"nodeType":"RevertStatement","src":"35031:25:58"}},{"AST":{"nativeSrc":"35091:82:58","nodeType":"YulBlock","src":"35091:82:58","statements":[{"nativeSrc":"35105:58:58","nodeType":"YulAssignment","src":"35105:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35127:1:58","nodeType":"YulLiteral","src":"35127:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"35130:6:58","nodeType":"YulIdentifier","src":"35130:6:58"}],"functionName":{"name":"mul","nativeSrc":"35123:3:58","nodeType":"YulIdentifier","src":"35123:3:58"},"nativeSrc":"35123:14:58","nodeType":"YulFunctionCall","src":"35123:14:58"},{"name":"self","nativeSrc":"35139:4:58","nodeType":"YulIdentifier","src":"35139:4:58"}],"functionName":{"name":"shl","nativeSrc":"35119:3:58","nodeType":"YulIdentifier","src":"35119:3:58"},"nativeSrc":"35119:25:58","nodeType":"YulFunctionCall","src":"35119:25:58"},{"arguments":[{"kind":"number","nativeSrc":"35150:3:58","nodeType":"YulLiteral","src":"35150:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"35159:1:58","nodeType":"YulLiteral","src":"35159:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35155:3:58","nodeType":"YulIdentifier","src":"35155:3:58"},"nativeSrc":"35155:6:58","nodeType":"YulFunctionCall","src":"35155:6:58"}],"functionName":{"name":"shl","nativeSrc":"35146:3:58","nodeType":"YulIdentifier","src":"35146:3:58"},"nativeSrc":"35146:16:58","nodeType":"YulFunctionCall","src":"35146:16:58"}],"functionName":{"name":"and","nativeSrc":"35115:3:58","nodeType":"YulIdentifier","src":"35115:3:58"},"nativeSrc":"35115:48:58","nodeType":"YulFunctionCall","src":"35115:48:58"},"variableNames":[{"name":"result","nativeSrc":"35105:6:58","nodeType":"YulIdentifier","src":"35105:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14446,"isOffset":false,"isSlot":false,"src":"35130:6:58","valueSize":1},{"declaration":14449,"isOffset":false,"isSlot":false,"src":"35105:6:58","valueSize":1},{"declaration":14444,"isOffset":false,"isSlot":false,"src":"35139:4:58","valueSize":1}],"flags":["memory-safe"],"id":14458,"nodeType":"InlineAssembly","src":"35066:107:58"}]},"id":14460,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_2","nameLocation":"34925:12:58","nodeType":"FunctionDefinition","parameters":{"id":14447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14444,"mutability":"mutable","name":"self","nameLocation":"34946:4:58","nodeType":"VariableDeclaration","scope":14460,"src":"34938:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14443,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34938:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14446,"mutability":"mutable","name":"offset","nameLocation":"34958:6:58","nodeType":"VariableDeclaration","scope":14460,"src":"34952:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14445,"name":"uint8","nodeType":"ElementaryTypeName","src":"34952:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"34937:28:58"},"returnParameters":{"id":14450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14449,"mutability":"mutable","name":"result","nameLocation":"34996:6:58","nodeType":"VariableDeclaration","scope":14460,"src":"34989:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14448,"name":"bytes2","nodeType":"ElementaryTypeName","src":"34989:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"34988:15:58"},"scope":16305,"src":"34916:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14479,"nodeType":"Block","src":"35288:231:58","statements":[{"assignments":[14472],"declarations":[{"constant":false,"id":14472,"mutability":"mutable","name":"oldValue","nameLocation":"35305:8:58","nodeType":"VariableDeclaration","scope":14479,"src":"35298:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14471,"name":"bytes2","nodeType":"ElementaryTypeName","src":"35298:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":14477,"initialValue":{"arguments":[{"id":14474,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14462,"src":"35329:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14475,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14466,"src":"35335:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14473,"name":"extract_20_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14460,"src":"35316:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes20,uint8) pure returns (bytes2)"}},"id":14476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35316:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"35298:44:58"},{"AST":{"nativeSrc":"35377:136:58","nodeType":"YulBlock","src":"35377:136:58","statements":[{"nativeSrc":"35391:37:58","nodeType":"YulAssignment","src":"35391:37:58","value":{"arguments":[{"name":"value","nativeSrc":"35404:5:58","nodeType":"YulIdentifier","src":"35404:5:58"},{"arguments":[{"kind":"number","nativeSrc":"35415:3:58","nodeType":"YulLiteral","src":"35415:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"35424:1:58","nodeType":"YulLiteral","src":"35424:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35420:3:58","nodeType":"YulIdentifier","src":"35420:3:58"},"nativeSrc":"35420:6:58","nodeType":"YulFunctionCall","src":"35420:6:58"}],"functionName":{"name":"shl","nativeSrc":"35411:3:58","nodeType":"YulIdentifier","src":"35411:3:58"},"nativeSrc":"35411:16:58","nodeType":"YulFunctionCall","src":"35411:16:58"}],"functionName":{"name":"and","nativeSrc":"35400:3:58","nodeType":"YulIdentifier","src":"35400:3:58"},"nativeSrc":"35400:28:58","nodeType":"YulFunctionCall","src":"35400:28:58"},"variableNames":[{"name":"value","nativeSrc":"35391:5:58","nodeType":"YulIdentifier","src":"35391:5:58"}]},{"nativeSrc":"35441:62:58","nodeType":"YulAssignment","src":"35441:62:58","value":{"arguments":[{"name":"self","nativeSrc":"35455:4:58","nodeType":"YulIdentifier","src":"35455:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35469:1:58","nodeType":"YulLiteral","src":"35469:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"35472:6:58","nodeType":"YulIdentifier","src":"35472:6:58"}],"functionName":{"name":"mul","nativeSrc":"35465:3:58","nodeType":"YulIdentifier","src":"35465:3:58"},"nativeSrc":"35465:14:58","nodeType":"YulFunctionCall","src":"35465:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"35485:8:58","nodeType":"YulIdentifier","src":"35485:8:58"},{"name":"value","nativeSrc":"35495:5:58","nodeType":"YulIdentifier","src":"35495:5:58"}],"functionName":{"name":"xor","nativeSrc":"35481:3:58","nodeType":"YulIdentifier","src":"35481:3:58"},"nativeSrc":"35481:20:58","nodeType":"YulFunctionCall","src":"35481:20:58"}],"functionName":{"name":"shr","nativeSrc":"35461:3:58","nodeType":"YulIdentifier","src":"35461:3:58"},"nativeSrc":"35461:41:58","nodeType":"YulFunctionCall","src":"35461:41:58"}],"functionName":{"name":"xor","nativeSrc":"35451:3:58","nodeType":"YulIdentifier","src":"35451:3:58"},"nativeSrc":"35451:52:58","nodeType":"YulFunctionCall","src":"35451:52:58"},"variableNames":[{"name":"result","nativeSrc":"35441:6:58","nodeType":"YulIdentifier","src":"35441:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14466,"isOffset":false,"isSlot":false,"src":"35472:6:58","valueSize":1},{"declaration":14472,"isOffset":false,"isSlot":false,"src":"35485:8:58","valueSize":1},{"declaration":14469,"isOffset":false,"isSlot":false,"src":"35441:6:58","valueSize":1},{"declaration":14462,"isOffset":false,"isSlot":false,"src":"35455:4:58","valueSize":1},{"declaration":14464,"isOffset":false,"isSlot":false,"src":"35391:5:58","valueSize":1},{"declaration":14464,"isOffset":false,"isSlot":false,"src":"35404:5:58","valueSize":1},{"declaration":14464,"isOffset":false,"isSlot":false,"src":"35495:5:58","valueSize":1}],"flags":["memory-safe"],"id":14478,"nodeType":"InlineAssembly","src":"35352:161:58"}]},"id":14480,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_2","nameLocation":"35194:12:58","nodeType":"FunctionDefinition","parameters":{"id":14467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14462,"mutability":"mutable","name":"self","nameLocation":"35215:4:58","nodeType":"VariableDeclaration","scope":14480,"src":"35207:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14461,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35207:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14464,"mutability":"mutable","name":"value","nameLocation":"35228:5:58","nodeType":"VariableDeclaration","scope":14480,"src":"35221:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14463,"name":"bytes2","nodeType":"ElementaryTypeName","src":"35221:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":14466,"mutability":"mutable","name":"offset","nameLocation":"35241:6:58","nodeType":"VariableDeclaration","scope":14480,"src":"35235:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14465,"name":"uint8","nodeType":"ElementaryTypeName","src":"35235:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"35206:42:58"},"returnParameters":{"id":14470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14469,"mutability":"mutable","name":"result","nameLocation":"35280:6:58","nodeType":"VariableDeclaration","scope":14480,"src":"35272:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14468,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35272:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"35271:16:58"},"scope":16305,"src":"35185:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14497,"nodeType":"Block","src":"35613:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14489,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14484,"src":"35627:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":14490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35636:2:58","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"35627:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14495,"nodeType":"IfStatement","src":"35623:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14492,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"35647:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35647:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14494,"nodeType":"RevertStatement","src":"35640:25:58"}},{"AST":{"nativeSrc":"35700:82:58","nodeType":"YulBlock","src":"35700:82:58","statements":[{"nativeSrc":"35714:58:58","nodeType":"YulAssignment","src":"35714:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35736:1:58","nodeType":"YulLiteral","src":"35736:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"35739:6:58","nodeType":"YulIdentifier","src":"35739:6:58"}],"functionName":{"name":"mul","nativeSrc":"35732:3:58","nodeType":"YulIdentifier","src":"35732:3:58"},"nativeSrc":"35732:14:58","nodeType":"YulFunctionCall","src":"35732:14:58"},{"name":"self","nativeSrc":"35748:4:58","nodeType":"YulIdentifier","src":"35748:4:58"}],"functionName":{"name":"shl","nativeSrc":"35728:3:58","nodeType":"YulIdentifier","src":"35728:3:58"},"nativeSrc":"35728:25:58","nodeType":"YulFunctionCall","src":"35728:25:58"},{"arguments":[{"kind":"number","nativeSrc":"35759:3:58","nodeType":"YulLiteral","src":"35759:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"35768:1:58","nodeType":"YulLiteral","src":"35768:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35764:3:58","nodeType":"YulIdentifier","src":"35764:3:58"},"nativeSrc":"35764:6:58","nodeType":"YulFunctionCall","src":"35764:6:58"}],"functionName":{"name":"shl","nativeSrc":"35755:3:58","nodeType":"YulIdentifier","src":"35755:3:58"},"nativeSrc":"35755:16:58","nodeType":"YulFunctionCall","src":"35755:16:58"}],"functionName":{"name":"and","nativeSrc":"35724:3:58","nodeType":"YulIdentifier","src":"35724:3:58"},"nativeSrc":"35724:48:58","nodeType":"YulFunctionCall","src":"35724:48:58"},"variableNames":[{"name":"result","nativeSrc":"35714:6:58","nodeType":"YulIdentifier","src":"35714:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14484,"isOffset":false,"isSlot":false,"src":"35739:6:58","valueSize":1},{"declaration":14487,"isOffset":false,"isSlot":false,"src":"35714:6:58","valueSize":1},{"declaration":14482,"isOffset":false,"isSlot":false,"src":"35748:4:58","valueSize":1}],"flags":["memory-safe"],"id":14496,"nodeType":"InlineAssembly","src":"35675:107:58"}]},"id":14498,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_4","nameLocation":"35534:12:58","nodeType":"FunctionDefinition","parameters":{"id":14485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14482,"mutability":"mutable","name":"self","nameLocation":"35555:4:58","nodeType":"VariableDeclaration","scope":14498,"src":"35547:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14481,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35547:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14484,"mutability":"mutable","name":"offset","nameLocation":"35567:6:58","nodeType":"VariableDeclaration","scope":14498,"src":"35561:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14483,"name":"uint8","nodeType":"ElementaryTypeName","src":"35561:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"35546:28:58"},"returnParameters":{"id":14488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14487,"mutability":"mutable","name":"result","nameLocation":"35605:6:58","nodeType":"VariableDeclaration","scope":14498,"src":"35598:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14486,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35598:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"35597:15:58"},"scope":16305,"src":"35525:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14517,"nodeType":"Block","src":"35897:231:58","statements":[{"assignments":[14510],"declarations":[{"constant":false,"id":14510,"mutability":"mutable","name":"oldValue","nameLocation":"35914:8:58","nodeType":"VariableDeclaration","scope":14517,"src":"35907:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14509,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35907:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":14515,"initialValue":{"arguments":[{"id":14512,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14500,"src":"35938:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14513,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14504,"src":"35944:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14511,"name":"extract_20_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14498,"src":"35925:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes20,uint8) pure returns (bytes4)"}},"id":14514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35925:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"35907:44:58"},{"AST":{"nativeSrc":"35986:136:58","nodeType":"YulBlock","src":"35986:136:58","statements":[{"nativeSrc":"36000:37:58","nodeType":"YulAssignment","src":"36000:37:58","value":{"arguments":[{"name":"value","nativeSrc":"36013:5:58","nodeType":"YulIdentifier","src":"36013:5:58"},{"arguments":[{"kind":"number","nativeSrc":"36024:3:58","nodeType":"YulLiteral","src":"36024:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"36033:1:58","nodeType":"YulLiteral","src":"36033:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36029:3:58","nodeType":"YulIdentifier","src":"36029:3:58"},"nativeSrc":"36029:6:58","nodeType":"YulFunctionCall","src":"36029:6:58"}],"functionName":{"name":"shl","nativeSrc":"36020:3:58","nodeType":"YulIdentifier","src":"36020:3:58"},"nativeSrc":"36020:16:58","nodeType":"YulFunctionCall","src":"36020:16:58"}],"functionName":{"name":"and","nativeSrc":"36009:3:58","nodeType":"YulIdentifier","src":"36009:3:58"},"nativeSrc":"36009:28:58","nodeType":"YulFunctionCall","src":"36009:28:58"},"variableNames":[{"name":"value","nativeSrc":"36000:5:58","nodeType":"YulIdentifier","src":"36000:5:58"}]},{"nativeSrc":"36050:62:58","nodeType":"YulAssignment","src":"36050:62:58","value":{"arguments":[{"name":"self","nativeSrc":"36064:4:58","nodeType":"YulIdentifier","src":"36064:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36078:1:58","nodeType":"YulLiteral","src":"36078:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"36081:6:58","nodeType":"YulIdentifier","src":"36081:6:58"}],"functionName":{"name":"mul","nativeSrc":"36074:3:58","nodeType":"YulIdentifier","src":"36074:3:58"},"nativeSrc":"36074:14:58","nodeType":"YulFunctionCall","src":"36074:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"36094:8:58","nodeType":"YulIdentifier","src":"36094:8:58"},{"name":"value","nativeSrc":"36104:5:58","nodeType":"YulIdentifier","src":"36104:5:58"}],"functionName":{"name":"xor","nativeSrc":"36090:3:58","nodeType":"YulIdentifier","src":"36090:3:58"},"nativeSrc":"36090:20:58","nodeType":"YulFunctionCall","src":"36090:20:58"}],"functionName":{"name":"shr","nativeSrc":"36070:3:58","nodeType":"YulIdentifier","src":"36070:3:58"},"nativeSrc":"36070:41:58","nodeType":"YulFunctionCall","src":"36070:41:58"}],"functionName":{"name":"xor","nativeSrc":"36060:3:58","nodeType":"YulIdentifier","src":"36060:3:58"},"nativeSrc":"36060:52:58","nodeType":"YulFunctionCall","src":"36060:52:58"},"variableNames":[{"name":"result","nativeSrc":"36050:6:58","nodeType":"YulIdentifier","src":"36050:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14504,"isOffset":false,"isSlot":false,"src":"36081:6:58","valueSize":1},{"declaration":14510,"isOffset":false,"isSlot":false,"src":"36094:8:58","valueSize":1},{"declaration":14507,"isOffset":false,"isSlot":false,"src":"36050:6:58","valueSize":1},{"declaration":14500,"isOffset":false,"isSlot":false,"src":"36064:4:58","valueSize":1},{"declaration":14502,"isOffset":false,"isSlot":false,"src":"36000:5:58","valueSize":1},{"declaration":14502,"isOffset":false,"isSlot":false,"src":"36013:5:58","valueSize":1},{"declaration":14502,"isOffset":false,"isSlot":false,"src":"36104:5:58","valueSize":1}],"flags":["memory-safe"],"id":14516,"nodeType":"InlineAssembly","src":"35961:161:58"}]},"id":14518,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_4","nameLocation":"35803:12:58","nodeType":"FunctionDefinition","parameters":{"id":14505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14500,"mutability":"mutable","name":"self","nameLocation":"35824:4:58","nodeType":"VariableDeclaration","scope":14518,"src":"35816:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14499,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35816:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14502,"mutability":"mutable","name":"value","nameLocation":"35837:5:58","nodeType":"VariableDeclaration","scope":14518,"src":"35830:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14501,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35830:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":14504,"mutability":"mutable","name":"offset","nameLocation":"35850:6:58","nodeType":"VariableDeclaration","scope":14518,"src":"35844:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14503,"name":"uint8","nodeType":"ElementaryTypeName","src":"35844:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"35815:42:58"},"returnParameters":{"id":14508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14507,"mutability":"mutable","name":"result","nameLocation":"35889:6:58","nodeType":"VariableDeclaration","scope":14518,"src":"35881:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14506,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35881:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"35880:16:58"},"scope":16305,"src":"35794:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14535,"nodeType":"Block","src":"36222:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14527,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14522,"src":"36236:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":14528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36245:2:58","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"36236:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14533,"nodeType":"IfStatement","src":"36232:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14530,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"36256:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36256:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14532,"nodeType":"RevertStatement","src":"36249:25:58"}},{"AST":{"nativeSrc":"36309:82:58","nodeType":"YulBlock","src":"36309:82:58","statements":[{"nativeSrc":"36323:58:58","nodeType":"YulAssignment","src":"36323:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36345:1:58","nodeType":"YulLiteral","src":"36345:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"36348:6:58","nodeType":"YulIdentifier","src":"36348:6:58"}],"functionName":{"name":"mul","nativeSrc":"36341:3:58","nodeType":"YulIdentifier","src":"36341:3:58"},"nativeSrc":"36341:14:58","nodeType":"YulFunctionCall","src":"36341:14:58"},{"name":"self","nativeSrc":"36357:4:58","nodeType":"YulIdentifier","src":"36357:4:58"}],"functionName":{"name":"shl","nativeSrc":"36337:3:58","nodeType":"YulIdentifier","src":"36337:3:58"},"nativeSrc":"36337:25:58","nodeType":"YulFunctionCall","src":"36337:25:58"},{"arguments":[{"kind":"number","nativeSrc":"36368:3:58","nodeType":"YulLiteral","src":"36368:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"36377:1:58","nodeType":"YulLiteral","src":"36377:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36373:3:58","nodeType":"YulIdentifier","src":"36373:3:58"},"nativeSrc":"36373:6:58","nodeType":"YulFunctionCall","src":"36373:6:58"}],"functionName":{"name":"shl","nativeSrc":"36364:3:58","nodeType":"YulIdentifier","src":"36364:3:58"},"nativeSrc":"36364:16:58","nodeType":"YulFunctionCall","src":"36364:16:58"}],"functionName":{"name":"and","nativeSrc":"36333:3:58","nodeType":"YulIdentifier","src":"36333:3:58"},"nativeSrc":"36333:48:58","nodeType":"YulFunctionCall","src":"36333:48:58"},"variableNames":[{"name":"result","nativeSrc":"36323:6:58","nodeType":"YulIdentifier","src":"36323:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14522,"isOffset":false,"isSlot":false,"src":"36348:6:58","valueSize":1},{"declaration":14525,"isOffset":false,"isSlot":false,"src":"36323:6:58","valueSize":1},{"declaration":14520,"isOffset":false,"isSlot":false,"src":"36357:4:58","valueSize":1}],"flags":["memory-safe"],"id":14534,"nodeType":"InlineAssembly","src":"36284:107:58"}]},"id":14536,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_6","nameLocation":"36143:12:58","nodeType":"FunctionDefinition","parameters":{"id":14523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14520,"mutability":"mutable","name":"self","nameLocation":"36164:4:58","nodeType":"VariableDeclaration","scope":14536,"src":"36156:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14519,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36156:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14522,"mutability":"mutable","name":"offset","nameLocation":"36176:6:58","nodeType":"VariableDeclaration","scope":14536,"src":"36170:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14521,"name":"uint8","nodeType":"ElementaryTypeName","src":"36170:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"36155:28:58"},"returnParameters":{"id":14526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14525,"mutability":"mutable","name":"result","nameLocation":"36214:6:58","nodeType":"VariableDeclaration","scope":14536,"src":"36207:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14524,"name":"bytes6","nodeType":"ElementaryTypeName","src":"36207:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"36206:15:58"},"scope":16305,"src":"36134:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14555,"nodeType":"Block","src":"36506:231:58","statements":[{"assignments":[14548],"declarations":[{"constant":false,"id":14548,"mutability":"mutable","name":"oldValue","nameLocation":"36523:8:58","nodeType":"VariableDeclaration","scope":14555,"src":"36516:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14547,"name":"bytes6","nodeType":"ElementaryTypeName","src":"36516:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":14553,"initialValue":{"arguments":[{"id":14550,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14538,"src":"36547:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14551,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14542,"src":"36553:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14549,"name":"extract_20_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14536,"src":"36534:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes20,uint8) pure returns (bytes6)"}},"id":14552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36534:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"36516:44:58"},{"AST":{"nativeSrc":"36595:136:58","nodeType":"YulBlock","src":"36595:136:58","statements":[{"nativeSrc":"36609:37:58","nodeType":"YulAssignment","src":"36609:37:58","value":{"arguments":[{"name":"value","nativeSrc":"36622:5:58","nodeType":"YulIdentifier","src":"36622:5:58"},{"arguments":[{"kind":"number","nativeSrc":"36633:3:58","nodeType":"YulLiteral","src":"36633:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"36642:1:58","nodeType":"YulLiteral","src":"36642:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36638:3:58","nodeType":"YulIdentifier","src":"36638:3:58"},"nativeSrc":"36638:6:58","nodeType":"YulFunctionCall","src":"36638:6:58"}],"functionName":{"name":"shl","nativeSrc":"36629:3:58","nodeType":"YulIdentifier","src":"36629:3:58"},"nativeSrc":"36629:16:58","nodeType":"YulFunctionCall","src":"36629:16:58"}],"functionName":{"name":"and","nativeSrc":"36618:3:58","nodeType":"YulIdentifier","src":"36618:3:58"},"nativeSrc":"36618:28:58","nodeType":"YulFunctionCall","src":"36618:28:58"},"variableNames":[{"name":"value","nativeSrc":"36609:5:58","nodeType":"YulIdentifier","src":"36609:5:58"}]},{"nativeSrc":"36659:62:58","nodeType":"YulAssignment","src":"36659:62:58","value":{"arguments":[{"name":"self","nativeSrc":"36673:4:58","nodeType":"YulIdentifier","src":"36673:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36687:1:58","nodeType":"YulLiteral","src":"36687:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"36690:6:58","nodeType":"YulIdentifier","src":"36690:6:58"}],"functionName":{"name":"mul","nativeSrc":"36683:3:58","nodeType":"YulIdentifier","src":"36683:3:58"},"nativeSrc":"36683:14:58","nodeType":"YulFunctionCall","src":"36683:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"36703:8:58","nodeType":"YulIdentifier","src":"36703:8:58"},{"name":"value","nativeSrc":"36713:5:58","nodeType":"YulIdentifier","src":"36713:5:58"}],"functionName":{"name":"xor","nativeSrc":"36699:3:58","nodeType":"YulIdentifier","src":"36699:3:58"},"nativeSrc":"36699:20:58","nodeType":"YulFunctionCall","src":"36699:20:58"}],"functionName":{"name":"shr","nativeSrc":"36679:3:58","nodeType":"YulIdentifier","src":"36679:3:58"},"nativeSrc":"36679:41:58","nodeType":"YulFunctionCall","src":"36679:41:58"}],"functionName":{"name":"xor","nativeSrc":"36669:3:58","nodeType":"YulIdentifier","src":"36669:3:58"},"nativeSrc":"36669:52:58","nodeType":"YulFunctionCall","src":"36669:52:58"},"variableNames":[{"name":"result","nativeSrc":"36659:6:58","nodeType":"YulIdentifier","src":"36659:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14542,"isOffset":false,"isSlot":false,"src":"36690:6:58","valueSize":1},{"declaration":14548,"isOffset":false,"isSlot":false,"src":"36703:8:58","valueSize":1},{"declaration":14545,"isOffset":false,"isSlot":false,"src":"36659:6:58","valueSize":1},{"declaration":14538,"isOffset":false,"isSlot":false,"src":"36673:4:58","valueSize":1},{"declaration":14540,"isOffset":false,"isSlot":false,"src":"36609:5:58","valueSize":1},{"declaration":14540,"isOffset":false,"isSlot":false,"src":"36622:5:58","valueSize":1},{"declaration":14540,"isOffset":false,"isSlot":false,"src":"36713:5:58","valueSize":1}],"flags":["memory-safe"],"id":14554,"nodeType":"InlineAssembly","src":"36570:161:58"}]},"id":14556,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_6","nameLocation":"36412:12:58","nodeType":"FunctionDefinition","parameters":{"id":14543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14538,"mutability":"mutable","name":"self","nameLocation":"36433:4:58","nodeType":"VariableDeclaration","scope":14556,"src":"36425:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14537,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36425:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14540,"mutability":"mutable","name":"value","nameLocation":"36446:5:58","nodeType":"VariableDeclaration","scope":14556,"src":"36439:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14539,"name":"bytes6","nodeType":"ElementaryTypeName","src":"36439:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":14542,"mutability":"mutable","name":"offset","nameLocation":"36459:6:58","nodeType":"VariableDeclaration","scope":14556,"src":"36453:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14541,"name":"uint8","nodeType":"ElementaryTypeName","src":"36453:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"36424:42:58"},"returnParameters":{"id":14546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14545,"mutability":"mutable","name":"result","nameLocation":"36498:6:58","nodeType":"VariableDeclaration","scope":14556,"src":"36490:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14544,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36490:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"36489:16:58"},"scope":16305,"src":"36403:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14573,"nodeType":"Block","src":"36831:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14565,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14560,"src":"36845:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":14566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36854:2:58","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"36845:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14571,"nodeType":"IfStatement","src":"36841:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14568,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"36865:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36865:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14570,"nodeType":"RevertStatement","src":"36858:25:58"}},{"AST":{"nativeSrc":"36918:82:58","nodeType":"YulBlock","src":"36918:82:58","statements":[{"nativeSrc":"36932:58:58","nodeType":"YulAssignment","src":"36932:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36954:1:58","nodeType":"YulLiteral","src":"36954:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"36957:6:58","nodeType":"YulIdentifier","src":"36957:6:58"}],"functionName":{"name":"mul","nativeSrc":"36950:3:58","nodeType":"YulIdentifier","src":"36950:3:58"},"nativeSrc":"36950:14:58","nodeType":"YulFunctionCall","src":"36950:14:58"},{"name":"self","nativeSrc":"36966:4:58","nodeType":"YulIdentifier","src":"36966:4:58"}],"functionName":{"name":"shl","nativeSrc":"36946:3:58","nodeType":"YulIdentifier","src":"36946:3:58"},"nativeSrc":"36946:25:58","nodeType":"YulFunctionCall","src":"36946:25:58"},{"arguments":[{"kind":"number","nativeSrc":"36977:3:58","nodeType":"YulLiteral","src":"36977:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"36986:1:58","nodeType":"YulLiteral","src":"36986:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36982:3:58","nodeType":"YulIdentifier","src":"36982:3:58"},"nativeSrc":"36982:6:58","nodeType":"YulFunctionCall","src":"36982:6:58"}],"functionName":{"name":"shl","nativeSrc":"36973:3:58","nodeType":"YulIdentifier","src":"36973:3:58"},"nativeSrc":"36973:16:58","nodeType":"YulFunctionCall","src":"36973:16:58"}],"functionName":{"name":"and","nativeSrc":"36942:3:58","nodeType":"YulIdentifier","src":"36942:3:58"},"nativeSrc":"36942:48:58","nodeType":"YulFunctionCall","src":"36942:48:58"},"variableNames":[{"name":"result","nativeSrc":"36932:6:58","nodeType":"YulIdentifier","src":"36932:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14560,"isOffset":false,"isSlot":false,"src":"36957:6:58","valueSize":1},{"declaration":14563,"isOffset":false,"isSlot":false,"src":"36932:6:58","valueSize":1},{"declaration":14558,"isOffset":false,"isSlot":false,"src":"36966:4:58","valueSize":1}],"flags":["memory-safe"],"id":14572,"nodeType":"InlineAssembly","src":"36893:107:58"}]},"id":14574,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_8","nameLocation":"36752:12:58","nodeType":"FunctionDefinition","parameters":{"id":14561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14558,"mutability":"mutable","name":"self","nameLocation":"36773:4:58","nodeType":"VariableDeclaration","scope":14574,"src":"36765:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14557,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36765:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14560,"mutability":"mutable","name":"offset","nameLocation":"36785:6:58","nodeType":"VariableDeclaration","scope":14574,"src":"36779:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14559,"name":"uint8","nodeType":"ElementaryTypeName","src":"36779:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"36764:28:58"},"returnParameters":{"id":14564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14563,"mutability":"mutable","name":"result","nameLocation":"36823:6:58","nodeType":"VariableDeclaration","scope":14574,"src":"36816:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14562,"name":"bytes8","nodeType":"ElementaryTypeName","src":"36816:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"36815:15:58"},"scope":16305,"src":"36743:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14593,"nodeType":"Block","src":"37115:231:58","statements":[{"assignments":[14586],"declarations":[{"constant":false,"id":14586,"mutability":"mutable","name":"oldValue","nameLocation":"37132:8:58","nodeType":"VariableDeclaration","scope":14593,"src":"37125:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14585,"name":"bytes8","nodeType":"ElementaryTypeName","src":"37125:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":14591,"initialValue":{"arguments":[{"id":14588,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14576,"src":"37156:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14589,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14580,"src":"37162:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14587,"name":"extract_20_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14574,"src":"37143:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes20,uint8) pure returns (bytes8)"}},"id":14590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37143:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"37125:44:58"},{"AST":{"nativeSrc":"37204:136:58","nodeType":"YulBlock","src":"37204:136:58","statements":[{"nativeSrc":"37218:37:58","nodeType":"YulAssignment","src":"37218:37:58","value":{"arguments":[{"name":"value","nativeSrc":"37231:5:58","nodeType":"YulIdentifier","src":"37231:5:58"},{"arguments":[{"kind":"number","nativeSrc":"37242:3:58","nodeType":"YulLiteral","src":"37242:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"37251:1:58","nodeType":"YulLiteral","src":"37251:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"37247:3:58","nodeType":"YulIdentifier","src":"37247:3:58"},"nativeSrc":"37247:6:58","nodeType":"YulFunctionCall","src":"37247:6:58"}],"functionName":{"name":"shl","nativeSrc":"37238:3:58","nodeType":"YulIdentifier","src":"37238:3:58"},"nativeSrc":"37238:16:58","nodeType":"YulFunctionCall","src":"37238:16:58"}],"functionName":{"name":"and","nativeSrc":"37227:3:58","nodeType":"YulIdentifier","src":"37227:3:58"},"nativeSrc":"37227:28:58","nodeType":"YulFunctionCall","src":"37227:28:58"},"variableNames":[{"name":"value","nativeSrc":"37218:5:58","nodeType":"YulIdentifier","src":"37218:5:58"}]},{"nativeSrc":"37268:62:58","nodeType":"YulAssignment","src":"37268:62:58","value":{"arguments":[{"name":"self","nativeSrc":"37282:4:58","nodeType":"YulIdentifier","src":"37282:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37296:1:58","nodeType":"YulLiteral","src":"37296:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"37299:6:58","nodeType":"YulIdentifier","src":"37299:6:58"}],"functionName":{"name":"mul","nativeSrc":"37292:3:58","nodeType":"YulIdentifier","src":"37292:3:58"},"nativeSrc":"37292:14:58","nodeType":"YulFunctionCall","src":"37292:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"37312:8:58","nodeType":"YulIdentifier","src":"37312:8:58"},{"name":"value","nativeSrc":"37322:5:58","nodeType":"YulIdentifier","src":"37322:5:58"}],"functionName":{"name":"xor","nativeSrc":"37308:3:58","nodeType":"YulIdentifier","src":"37308:3:58"},"nativeSrc":"37308:20:58","nodeType":"YulFunctionCall","src":"37308:20:58"}],"functionName":{"name":"shr","nativeSrc":"37288:3:58","nodeType":"YulIdentifier","src":"37288:3:58"},"nativeSrc":"37288:41:58","nodeType":"YulFunctionCall","src":"37288:41:58"}],"functionName":{"name":"xor","nativeSrc":"37278:3:58","nodeType":"YulIdentifier","src":"37278:3:58"},"nativeSrc":"37278:52:58","nodeType":"YulFunctionCall","src":"37278:52:58"},"variableNames":[{"name":"result","nativeSrc":"37268:6:58","nodeType":"YulIdentifier","src":"37268:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14580,"isOffset":false,"isSlot":false,"src":"37299:6:58","valueSize":1},{"declaration":14586,"isOffset":false,"isSlot":false,"src":"37312:8:58","valueSize":1},{"declaration":14583,"isOffset":false,"isSlot":false,"src":"37268:6:58","valueSize":1},{"declaration":14576,"isOffset":false,"isSlot":false,"src":"37282:4:58","valueSize":1},{"declaration":14578,"isOffset":false,"isSlot":false,"src":"37218:5:58","valueSize":1},{"declaration":14578,"isOffset":false,"isSlot":false,"src":"37231:5:58","valueSize":1},{"declaration":14578,"isOffset":false,"isSlot":false,"src":"37322:5:58","valueSize":1}],"flags":["memory-safe"],"id":14592,"nodeType":"InlineAssembly","src":"37179:161:58"}]},"id":14594,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_8","nameLocation":"37021:12:58","nodeType":"FunctionDefinition","parameters":{"id":14581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14576,"mutability":"mutable","name":"self","nameLocation":"37042:4:58","nodeType":"VariableDeclaration","scope":14594,"src":"37034:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14575,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37034:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14578,"mutability":"mutable","name":"value","nameLocation":"37055:5:58","nodeType":"VariableDeclaration","scope":14594,"src":"37048:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14577,"name":"bytes8","nodeType":"ElementaryTypeName","src":"37048:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":14580,"mutability":"mutable","name":"offset","nameLocation":"37068:6:58","nodeType":"VariableDeclaration","scope":14594,"src":"37062:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14579,"name":"uint8","nodeType":"ElementaryTypeName","src":"37062:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37033:42:58"},"returnParameters":{"id":14584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14583,"mutability":"mutable","name":"result","nameLocation":"37107:6:58","nodeType":"VariableDeclaration","scope":14594,"src":"37099:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14582,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37099:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"37098:16:58"},"scope":16305,"src":"37012:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14611,"nodeType":"Block","src":"37442:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14603,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14598,"src":"37456:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":14604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37465:2:58","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"37456:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14609,"nodeType":"IfStatement","src":"37452:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14606,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"37476:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37476:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14608,"nodeType":"RevertStatement","src":"37469:25:58"}},{"AST":{"nativeSrc":"37529:82:58","nodeType":"YulBlock","src":"37529:82:58","statements":[{"nativeSrc":"37543:58:58","nodeType":"YulAssignment","src":"37543:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37565:1:58","nodeType":"YulLiteral","src":"37565:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"37568:6:58","nodeType":"YulIdentifier","src":"37568:6:58"}],"functionName":{"name":"mul","nativeSrc":"37561:3:58","nodeType":"YulIdentifier","src":"37561:3:58"},"nativeSrc":"37561:14:58","nodeType":"YulFunctionCall","src":"37561:14:58"},{"name":"self","nativeSrc":"37577:4:58","nodeType":"YulIdentifier","src":"37577:4:58"}],"functionName":{"name":"shl","nativeSrc":"37557:3:58","nodeType":"YulIdentifier","src":"37557:3:58"},"nativeSrc":"37557:25:58","nodeType":"YulFunctionCall","src":"37557:25:58"},{"arguments":[{"kind":"number","nativeSrc":"37588:3:58","nodeType":"YulLiteral","src":"37588:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"37597:1:58","nodeType":"YulLiteral","src":"37597:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"37593:3:58","nodeType":"YulIdentifier","src":"37593:3:58"},"nativeSrc":"37593:6:58","nodeType":"YulFunctionCall","src":"37593:6:58"}],"functionName":{"name":"shl","nativeSrc":"37584:3:58","nodeType":"YulIdentifier","src":"37584:3:58"},"nativeSrc":"37584:16:58","nodeType":"YulFunctionCall","src":"37584:16:58"}],"functionName":{"name":"and","nativeSrc":"37553:3:58","nodeType":"YulIdentifier","src":"37553:3:58"},"nativeSrc":"37553:48:58","nodeType":"YulFunctionCall","src":"37553:48:58"},"variableNames":[{"name":"result","nativeSrc":"37543:6:58","nodeType":"YulIdentifier","src":"37543:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14598,"isOffset":false,"isSlot":false,"src":"37568:6:58","valueSize":1},{"declaration":14601,"isOffset":false,"isSlot":false,"src":"37543:6:58","valueSize":1},{"declaration":14596,"isOffset":false,"isSlot":false,"src":"37577:4:58","valueSize":1}],"flags":["memory-safe"],"id":14610,"nodeType":"InlineAssembly","src":"37504:107:58"}]},"id":14612,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_10","nameLocation":"37361:13:58","nodeType":"FunctionDefinition","parameters":{"id":14599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14596,"mutability":"mutable","name":"self","nameLocation":"37383:4:58","nodeType":"VariableDeclaration","scope":14612,"src":"37375:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14595,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37375:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14598,"mutability":"mutable","name":"offset","nameLocation":"37395:6:58","nodeType":"VariableDeclaration","scope":14612,"src":"37389:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14597,"name":"uint8","nodeType":"ElementaryTypeName","src":"37389:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37374:28:58"},"returnParameters":{"id":14602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14601,"mutability":"mutable","name":"result","nameLocation":"37434:6:58","nodeType":"VariableDeclaration","scope":14612,"src":"37426:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14600,"name":"bytes10","nodeType":"ElementaryTypeName","src":"37426:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"37425:16:58"},"scope":16305,"src":"37352:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14631,"nodeType":"Block","src":"37728:233:58","statements":[{"assignments":[14624],"declarations":[{"constant":false,"id":14624,"mutability":"mutable","name":"oldValue","nameLocation":"37746:8:58","nodeType":"VariableDeclaration","scope":14631,"src":"37738:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14623,"name":"bytes10","nodeType":"ElementaryTypeName","src":"37738:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":14629,"initialValue":{"arguments":[{"id":14626,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14614,"src":"37771:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14627,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14618,"src":"37777:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14625,"name":"extract_20_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14612,"src":"37757:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes20,uint8) pure returns (bytes10)"}},"id":14628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37757:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"37738:46:58"},{"AST":{"nativeSrc":"37819:136:58","nodeType":"YulBlock","src":"37819:136:58","statements":[{"nativeSrc":"37833:37:58","nodeType":"YulAssignment","src":"37833:37:58","value":{"arguments":[{"name":"value","nativeSrc":"37846:5:58","nodeType":"YulIdentifier","src":"37846:5:58"},{"arguments":[{"kind":"number","nativeSrc":"37857:3:58","nodeType":"YulLiteral","src":"37857:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"37866:1:58","nodeType":"YulLiteral","src":"37866:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"37862:3:58","nodeType":"YulIdentifier","src":"37862:3:58"},"nativeSrc":"37862:6:58","nodeType":"YulFunctionCall","src":"37862:6:58"}],"functionName":{"name":"shl","nativeSrc":"37853:3:58","nodeType":"YulIdentifier","src":"37853:3:58"},"nativeSrc":"37853:16:58","nodeType":"YulFunctionCall","src":"37853:16:58"}],"functionName":{"name":"and","nativeSrc":"37842:3:58","nodeType":"YulIdentifier","src":"37842:3:58"},"nativeSrc":"37842:28:58","nodeType":"YulFunctionCall","src":"37842:28:58"},"variableNames":[{"name":"value","nativeSrc":"37833:5:58","nodeType":"YulIdentifier","src":"37833:5:58"}]},{"nativeSrc":"37883:62:58","nodeType":"YulAssignment","src":"37883:62:58","value":{"arguments":[{"name":"self","nativeSrc":"37897:4:58","nodeType":"YulIdentifier","src":"37897:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37911:1:58","nodeType":"YulLiteral","src":"37911:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"37914:6:58","nodeType":"YulIdentifier","src":"37914:6:58"}],"functionName":{"name":"mul","nativeSrc":"37907:3:58","nodeType":"YulIdentifier","src":"37907:3:58"},"nativeSrc":"37907:14:58","nodeType":"YulFunctionCall","src":"37907:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"37927:8:58","nodeType":"YulIdentifier","src":"37927:8:58"},{"name":"value","nativeSrc":"37937:5:58","nodeType":"YulIdentifier","src":"37937:5:58"}],"functionName":{"name":"xor","nativeSrc":"37923:3:58","nodeType":"YulIdentifier","src":"37923:3:58"},"nativeSrc":"37923:20:58","nodeType":"YulFunctionCall","src":"37923:20:58"}],"functionName":{"name":"shr","nativeSrc":"37903:3:58","nodeType":"YulIdentifier","src":"37903:3:58"},"nativeSrc":"37903:41:58","nodeType":"YulFunctionCall","src":"37903:41:58"}],"functionName":{"name":"xor","nativeSrc":"37893:3:58","nodeType":"YulIdentifier","src":"37893:3:58"},"nativeSrc":"37893:52:58","nodeType":"YulFunctionCall","src":"37893:52:58"},"variableNames":[{"name":"result","nativeSrc":"37883:6:58","nodeType":"YulIdentifier","src":"37883:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14618,"isOffset":false,"isSlot":false,"src":"37914:6:58","valueSize":1},{"declaration":14624,"isOffset":false,"isSlot":false,"src":"37927:8:58","valueSize":1},{"declaration":14621,"isOffset":false,"isSlot":false,"src":"37883:6:58","valueSize":1},{"declaration":14614,"isOffset":false,"isSlot":false,"src":"37897:4:58","valueSize":1},{"declaration":14616,"isOffset":false,"isSlot":false,"src":"37833:5:58","valueSize":1},{"declaration":14616,"isOffset":false,"isSlot":false,"src":"37846:5:58","valueSize":1},{"declaration":14616,"isOffset":false,"isSlot":false,"src":"37937:5:58","valueSize":1}],"flags":["memory-safe"],"id":14630,"nodeType":"InlineAssembly","src":"37794:161:58"}]},"id":14632,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_10","nameLocation":"37632:13:58","nodeType":"FunctionDefinition","parameters":{"id":14619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14614,"mutability":"mutable","name":"self","nameLocation":"37654:4:58","nodeType":"VariableDeclaration","scope":14632,"src":"37646:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14613,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37646:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14616,"mutability":"mutable","name":"value","nameLocation":"37668:5:58","nodeType":"VariableDeclaration","scope":14632,"src":"37660:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14615,"name":"bytes10","nodeType":"ElementaryTypeName","src":"37660:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":14618,"mutability":"mutable","name":"offset","nameLocation":"37681:6:58","nodeType":"VariableDeclaration","scope":14632,"src":"37675:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14617,"name":"uint8","nodeType":"ElementaryTypeName","src":"37675:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37645:43:58"},"returnParameters":{"id":14622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14621,"mutability":"mutable","name":"result","nameLocation":"37720:6:58","nodeType":"VariableDeclaration","scope":14632,"src":"37712:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14620,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37712:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"37711:16:58"},"scope":16305,"src":"37623:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14649,"nodeType":"Block","src":"38057:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14641,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14636,"src":"38071:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":14642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38080:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"38071:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14647,"nodeType":"IfStatement","src":"38067:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14644,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"38090:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38090:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14646,"nodeType":"RevertStatement","src":"38083:25:58"}},{"AST":{"nativeSrc":"38143:82:58","nodeType":"YulBlock","src":"38143:82:58","statements":[{"nativeSrc":"38157:58:58","nodeType":"YulAssignment","src":"38157:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38179:1:58","nodeType":"YulLiteral","src":"38179:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"38182:6:58","nodeType":"YulIdentifier","src":"38182:6:58"}],"functionName":{"name":"mul","nativeSrc":"38175:3:58","nodeType":"YulIdentifier","src":"38175:3:58"},"nativeSrc":"38175:14:58","nodeType":"YulFunctionCall","src":"38175:14:58"},{"name":"self","nativeSrc":"38191:4:58","nodeType":"YulIdentifier","src":"38191:4:58"}],"functionName":{"name":"shl","nativeSrc":"38171:3:58","nodeType":"YulIdentifier","src":"38171:3:58"},"nativeSrc":"38171:25:58","nodeType":"YulFunctionCall","src":"38171:25:58"},{"arguments":[{"kind":"number","nativeSrc":"38202:3:58","nodeType":"YulLiteral","src":"38202:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"38211:1:58","nodeType":"YulLiteral","src":"38211:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38207:3:58","nodeType":"YulIdentifier","src":"38207:3:58"},"nativeSrc":"38207:6:58","nodeType":"YulFunctionCall","src":"38207:6:58"}],"functionName":{"name":"shl","nativeSrc":"38198:3:58","nodeType":"YulIdentifier","src":"38198:3:58"},"nativeSrc":"38198:16:58","nodeType":"YulFunctionCall","src":"38198:16:58"}],"functionName":{"name":"and","nativeSrc":"38167:3:58","nodeType":"YulIdentifier","src":"38167:3:58"},"nativeSrc":"38167:48:58","nodeType":"YulFunctionCall","src":"38167:48:58"},"variableNames":[{"name":"result","nativeSrc":"38157:6:58","nodeType":"YulIdentifier","src":"38157:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14636,"isOffset":false,"isSlot":false,"src":"38182:6:58","valueSize":1},{"declaration":14639,"isOffset":false,"isSlot":false,"src":"38157:6:58","valueSize":1},{"declaration":14634,"isOffset":false,"isSlot":false,"src":"38191:4:58","valueSize":1}],"flags":["memory-safe"],"id":14648,"nodeType":"InlineAssembly","src":"38118:107:58"}]},"id":14650,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_12","nameLocation":"37976:13:58","nodeType":"FunctionDefinition","parameters":{"id":14637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14634,"mutability":"mutable","name":"self","nameLocation":"37998:4:58","nodeType":"VariableDeclaration","scope":14650,"src":"37990:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14633,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37990:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14636,"mutability":"mutable","name":"offset","nameLocation":"38010:6:58","nodeType":"VariableDeclaration","scope":14650,"src":"38004:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14635,"name":"uint8","nodeType":"ElementaryTypeName","src":"38004:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37989:28:58"},"returnParameters":{"id":14640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14639,"mutability":"mutable","name":"result","nameLocation":"38049:6:58","nodeType":"VariableDeclaration","scope":14650,"src":"38041:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14638,"name":"bytes12","nodeType":"ElementaryTypeName","src":"38041:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"38040:16:58"},"scope":16305,"src":"37967:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14669,"nodeType":"Block","src":"38342:233:58","statements":[{"assignments":[14662],"declarations":[{"constant":false,"id":14662,"mutability":"mutable","name":"oldValue","nameLocation":"38360:8:58","nodeType":"VariableDeclaration","scope":14669,"src":"38352:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14661,"name":"bytes12","nodeType":"ElementaryTypeName","src":"38352:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":14667,"initialValue":{"arguments":[{"id":14664,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14652,"src":"38385:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14665,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14656,"src":"38391:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14663,"name":"extract_20_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14650,"src":"38371:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes20,uint8) pure returns (bytes12)"}},"id":14666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38371:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"38352:46:58"},{"AST":{"nativeSrc":"38433:136:58","nodeType":"YulBlock","src":"38433:136:58","statements":[{"nativeSrc":"38447:37:58","nodeType":"YulAssignment","src":"38447:37:58","value":{"arguments":[{"name":"value","nativeSrc":"38460:5:58","nodeType":"YulIdentifier","src":"38460:5:58"},{"arguments":[{"kind":"number","nativeSrc":"38471:3:58","nodeType":"YulLiteral","src":"38471:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"38480:1:58","nodeType":"YulLiteral","src":"38480:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38476:3:58","nodeType":"YulIdentifier","src":"38476:3:58"},"nativeSrc":"38476:6:58","nodeType":"YulFunctionCall","src":"38476:6:58"}],"functionName":{"name":"shl","nativeSrc":"38467:3:58","nodeType":"YulIdentifier","src":"38467:3:58"},"nativeSrc":"38467:16:58","nodeType":"YulFunctionCall","src":"38467:16:58"}],"functionName":{"name":"and","nativeSrc":"38456:3:58","nodeType":"YulIdentifier","src":"38456:3:58"},"nativeSrc":"38456:28:58","nodeType":"YulFunctionCall","src":"38456:28:58"},"variableNames":[{"name":"value","nativeSrc":"38447:5:58","nodeType":"YulIdentifier","src":"38447:5:58"}]},{"nativeSrc":"38497:62:58","nodeType":"YulAssignment","src":"38497:62:58","value":{"arguments":[{"name":"self","nativeSrc":"38511:4:58","nodeType":"YulIdentifier","src":"38511:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38525:1:58","nodeType":"YulLiteral","src":"38525:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"38528:6:58","nodeType":"YulIdentifier","src":"38528:6:58"}],"functionName":{"name":"mul","nativeSrc":"38521:3:58","nodeType":"YulIdentifier","src":"38521:3:58"},"nativeSrc":"38521:14:58","nodeType":"YulFunctionCall","src":"38521:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"38541:8:58","nodeType":"YulIdentifier","src":"38541:8:58"},{"name":"value","nativeSrc":"38551:5:58","nodeType":"YulIdentifier","src":"38551:5:58"}],"functionName":{"name":"xor","nativeSrc":"38537:3:58","nodeType":"YulIdentifier","src":"38537:3:58"},"nativeSrc":"38537:20:58","nodeType":"YulFunctionCall","src":"38537:20:58"}],"functionName":{"name":"shr","nativeSrc":"38517:3:58","nodeType":"YulIdentifier","src":"38517:3:58"},"nativeSrc":"38517:41:58","nodeType":"YulFunctionCall","src":"38517:41:58"}],"functionName":{"name":"xor","nativeSrc":"38507:3:58","nodeType":"YulIdentifier","src":"38507:3:58"},"nativeSrc":"38507:52:58","nodeType":"YulFunctionCall","src":"38507:52:58"},"variableNames":[{"name":"result","nativeSrc":"38497:6:58","nodeType":"YulIdentifier","src":"38497:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14656,"isOffset":false,"isSlot":false,"src":"38528:6:58","valueSize":1},{"declaration":14662,"isOffset":false,"isSlot":false,"src":"38541:8:58","valueSize":1},{"declaration":14659,"isOffset":false,"isSlot":false,"src":"38497:6:58","valueSize":1},{"declaration":14652,"isOffset":false,"isSlot":false,"src":"38511:4:58","valueSize":1},{"declaration":14654,"isOffset":false,"isSlot":false,"src":"38447:5:58","valueSize":1},{"declaration":14654,"isOffset":false,"isSlot":false,"src":"38460:5:58","valueSize":1},{"declaration":14654,"isOffset":false,"isSlot":false,"src":"38551:5:58","valueSize":1}],"flags":["memory-safe"],"id":14668,"nodeType":"InlineAssembly","src":"38408:161:58"}]},"id":14670,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_12","nameLocation":"38246:13:58","nodeType":"FunctionDefinition","parameters":{"id":14657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14652,"mutability":"mutable","name":"self","nameLocation":"38268:4:58","nodeType":"VariableDeclaration","scope":14670,"src":"38260:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14651,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38260:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14654,"mutability":"mutable","name":"value","nameLocation":"38282:5:58","nodeType":"VariableDeclaration","scope":14670,"src":"38274:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14653,"name":"bytes12","nodeType":"ElementaryTypeName","src":"38274:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14656,"mutability":"mutable","name":"offset","nameLocation":"38295:6:58","nodeType":"VariableDeclaration","scope":14670,"src":"38289:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14655,"name":"uint8","nodeType":"ElementaryTypeName","src":"38289:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"38259:43:58"},"returnParameters":{"id":14660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14659,"mutability":"mutable","name":"result","nameLocation":"38334:6:58","nodeType":"VariableDeclaration","scope":14670,"src":"38326:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14658,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38326:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"38325:16:58"},"scope":16305,"src":"38237:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14687,"nodeType":"Block","src":"38671:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14679,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14674,"src":"38685:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":14680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38694:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"38685:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14685,"nodeType":"IfStatement","src":"38681:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14682,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"38704:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38704:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14684,"nodeType":"RevertStatement","src":"38697:25:58"}},{"AST":{"nativeSrc":"38757:82:58","nodeType":"YulBlock","src":"38757:82:58","statements":[{"nativeSrc":"38771:58:58","nodeType":"YulAssignment","src":"38771:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38793:1:58","nodeType":"YulLiteral","src":"38793:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"38796:6:58","nodeType":"YulIdentifier","src":"38796:6:58"}],"functionName":{"name":"mul","nativeSrc":"38789:3:58","nodeType":"YulIdentifier","src":"38789:3:58"},"nativeSrc":"38789:14:58","nodeType":"YulFunctionCall","src":"38789:14:58"},{"name":"self","nativeSrc":"38805:4:58","nodeType":"YulIdentifier","src":"38805:4:58"}],"functionName":{"name":"shl","nativeSrc":"38785:3:58","nodeType":"YulIdentifier","src":"38785:3:58"},"nativeSrc":"38785:25:58","nodeType":"YulFunctionCall","src":"38785:25:58"},{"arguments":[{"kind":"number","nativeSrc":"38816:3:58","nodeType":"YulLiteral","src":"38816:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"38825:1:58","nodeType":"YulLiteral","src":"38825:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38821:3:58","nodeType":"YulIdentifier","src":"38821:3:58"},"nativeSrc":"38821:6:58","nodeType":"YulFunctionCall","src":"38821:6:58"}],"functionName":{"name":"shl","nativeSrc":"38812:3:58","nodeType":"YulIdentifier","src":"38812:3:58"},"nativeSrc":"38812:16:58","nodeType":"YulFunctionCall","src":"38812:16:58"}],"functionName":{"name":"and","nativeSrc":"38781:3:58","nodeType":"YulIdentifier","src":"38781:3:58"},"nativeSrc":"38781:48:58","nodeType":"YulFunctionCall","src":"38781:48:58"},"variableNames":[{"name":"result","nativeSrc":"38771:6:58","nodeType":"YulIdentifier","src":"38771:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14674,"isOffset":false,"isSlot":false,"src":"38796:6:58","valueSize":1},{"declaration":14677,"isOffset":false,"isSlot":false,"src":"38771:6:58","valueSize":1},{"declaration":14672,"isOffset":false,"isSlot":false,"src":"38805:4:58","valueSize":1}],"flags":["memory-safe"],"id":14686,"nodeType":"InlineAssembly","src":"38732:107:58"}]},"id":14688,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_16","nameLocation":"38590:13:58","nodeType":"FunctionDefinition","parameters":{"id":14675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14672,"mutability":"mutable","name":"self","nameLocation":"38612:4:58","nodeType":"VariableDeclaration","scope":14688,"src":"38604:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14671,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38604:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14674,"mutability":"mutable","name":"offset","nameLocation":"38624:6:58","nodeType":"VariableDeclaration","scope":14688,"src":"38618:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14673,"name":"uint8","nodeType":"ElementaryTypeName","src":"38618:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"38603:28:58"},"returnParameters":{"id":14678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14677,"mutability":"mutable","name":"result","nameLocation":"38663:6:58","nodeType":"VariableDeclaration","scope":14688,"src":"38655:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14676,"name":"bytes16","nodeType":"ElementaryTypeName","src":"38655:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"38654:16:58"},"scope":16305,"src":"38581:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14707,"nodeType":"Block","src":"38956:233:58","statements":[{"assignments":[14700],"declarations":[{"constant":false,"id":14700,"mutability":"mutable","name":"oldValue","nameLocation":"38974:8:58","nodeType":"VariableDeclaration","scope":14707,"src":"38966:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14699,"name":"bytes16","nodeType":"ElementaryTypeName","src":"38966:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":14705,"initialValue":{"arguments":[{"id":14702,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14690,"src":"38999:4:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":14703,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14694,"src":"39005:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14701,"name":"extract_20_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14688,"src":"38985:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes20,uint8) pure returns (bytes16)"}},"id":14704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38985:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"38966:46:58"},{"AST":{"nativeSrc":"39047:136:58","nodeType":"YulBlock","src":"39047:136:58","statements":[{"nativeSrc":"39061:37:58","nodeType":"YulAssignment","src":"39061:37:58","value":{"arguments":[{"name":"value","nativeSrc":"39074:5:58","nodeType":"YulIdentifier","src":"39074:5:58"},{"arguments":[{"kind":"number","nativeSrc":"39085:3:58","nodeType":"YulLiteral","src":"39085:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"39094:1:58","nodeType":"YulLiteral","src":"39094:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"39090:3:58","nodeType":"YulIdentifier","src":"39090:3:58"},"nativeSrc":"39090:6:58","nodeType":"YulFunctionCall","src":"39090:6:58"}],"functionName":{"name":"shl","nativeSrc":"39081:3:58","nodeType":"YulIdentifier","src":"39081:3:58"},"nativeSrc":"39081:16:58","nodeType":"YulFunctionCall","src":"39081:16:58"}],"functionName":{"name":"and","nativeSrc":"39070:3:58","nodeType":"YulIdentifier","src":"39070:3:58"},"nativeSrc":"39070:28:58","nodeType":"YulFunctionCall","src":"39070:28:58"},"variableNames":[{"name":"value","nativeSrc":"39061:5:58","nodeType":"YulIdentifier","src":"39061:5:58"}]},{"nativeSrc":"39111:62:58","nodeType":"YulAssignment","src":"39111:62:58","value":{"arguments":[{"name":"self","nativeSrc":"39125:4:58","nodeType":"YulIdentifier","src":"39125:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39139:1:58","nodeType":"YulLiteral","src":"39139:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"39142:6:58","nodeType":"YulIdentifier","src":"39142:6:58"}],"functionName":{"name":"mul","nativeSrc":"39135:3:58","nodeType":"YulIdentifier","src":"39135:3:58"},"nativeSrc":"39135:14:58","nodeType":"YulFunctionCall","src":"39135:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"39155:8:58","nodeType":"YulIdentifier","src":"39155:8:58"},{"name":"value","nativeSrc":"39165:5:58","nodeType":"YulIdentifier","src":"39165:5:58"}],"functionName":{"name":"xor","nativeSrc":"39151:3:58","nodeType":"YulIdentifier","src":"39151:3:58"},"nativeSrc":"39151:20:58","nodeType":"YulFunctionCall","src":"39151:20:58"}],"functionName":{"name":"shr","nativeSrc":"39131:3:58","nodeType":"YulIdentifier","src":"39131:3:58"},"nativeSrc":"39131:41:58","nodeType":"YulFunctionCall","src":"39131:41:58"}],"functionName":{"name":"xor","nativeSrc":"39121:3:58","nodeType":"YulIdentifier","src":"39121:3:58"},"nativeSrc":"39121:52:58","nodeType":"YulFunctionCall","src":"39121:52:58"},"variableNames":[{"name":"result","nativeSrc":"39111:6:58","nodeType":"YulIdentifier","src":"39111:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14694,"isOffset":false,"isSlot":false,"src":"39142:6:58","valueSize":1},{"declaration":14700,"isOffset":false,"isSlot":false,"src":"39155:8:58","valueSize":1},{"declaration":14697,"isOffset":false,"isSlot":false,"src":"39111:6:58","valueSize":1},{"declaration":14690,"isOffset":false,"isSlot":false,"src":"39125:4:58","valueSize":1},{"declaration":14692,"isOffset":false,"isSlot":false,"src":"39061:5:58","valueSize":1},{"declaration":14692,"isOffset":false,"isSlot":false,"src":"39074:5:58","valueSize":1},{"declaration":14692,"isOffset":false,"isSlot":false,"src":"39165:5:58","valueSize":1}],"flags":["memory-safe"],"id":14706,"nodeType":"InlineAssembly","src":"39022:161:58"}]},"id":14708,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_16","nameLocation":"38860:13:58","nodeType":"FunctionDefinition","parameters":{"id":14695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14690,"mutability":"mutable","name":"self","nameLocation":"38882:4:58","nodeType":"VariableDeclaration","scope":14708,"src":"38874:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14689,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38874:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":14692,"mutability":"mutable","name":"value","nameLocation":"38896:5:58","nodeType":"VariableDeclaration","scope":14708,"src":"38888:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14691,"name":"bytes16","nodeType":"ElementaryTypeName","src":"38888:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14694,"mutability":"mutable","name":"offset","nameLocation":"38909:6:58","nodeType":"VariableDeclaration","scope":14708,"src":"38903:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14693,"name":"uint8","nodeType":"ElementaryTypeName","src":"38903:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"38873:43:58"},"returnParameters":{"id":14698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14697,"mutability":"mutable","name":"result","nameLocation":"38948:6:58","nodeType":"VariableDeclaration","scope":14708,"src":"38940:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":14696,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38940:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"38939:16:58"},"scope":16305,"src":"38851:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14725,"nodeType":"Block","src":"39283:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14717,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14712,"src":"39297:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3231","id":14718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39306:2:58","typeDescriptions":{"typeIdentifier":"t_rational_21_by_1","typeString":"int_const 21"},"value":"21"},"src":"39297:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14723,"nodeType":"IfStatement","src":"39293:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14720,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"39317:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39317:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14722,"nodeType":"RevertStatement","src":"39310:25:58"}},{"AST":{"nativeSrc":"39370:82:58","nodeType":"YulBlock","src":"39370:82:58","statements":[{"nativeSrc":"39384:58:58","nodeType":"YulAssignment","src":"39384:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39406:1:58","nodeType":"YulLiteral","src":"39406:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"39409:6:58","nodeType":"YulIdentifier","src":"39409:6:58"}],"functionName":{"name":"mul","nativeSrc":"39402:3:58","nodeType":"YulIdentifier","src":"39402:3:58"},"nativeSrc":"39402:14:58","nodeType":"YulFunctionCall","src":"39402:14:58"},{"name":"self","nativeSrc":"39418:4:58","nodeType":"YulIdentifier","src":"39418:4:58"}],"functionName":{"name":"shl","nativeSrc":"39398:3:58","nodeType":"YulIdentifier","src":"39398:3:58"},"nativeSrc":"39398:25:58","nodeType":"YulFunctionCall","src":"39398:25:58"},{"arguments":[{"kind":"number","nativeSrc":"39429:3:58","nodeType":"YulLiteral","src":"39429:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"39438:1:58","nodeType":"YulLiteral","src":"39438:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"39434:3:58","nodeType":"YulIdentifier","src":"39434:3:58"},"nativeSrc":"39434:6:58","nodeType":"YulFunctionCall","src":"39434:6:58"}],"functionName":{"name":"shl","nativeSrc":"39425:3:58","nodeType":"YulIdentifier","src":"39425:3:58"},"nativeSrc":"39425:16:58","nodeType":"YulFunctionCall","src":"39425:16:58"}],"functionName":{"name":"and","nativeSrc":"39394:3:58","nodeType":"YulIdentifier","src":"39394:3:58"},"nativeSrc":"39394:48:58","nodeType":"YulFunctionCall","src":"39394:48:58"},"variableNames":[{"name":"result","nativeSrc":"39384:6:58","nodeType":"YulIdentifier","src":"39384:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14712,"isOffset":false,"isSlot":false,"src":"39409:6:58","valueSize":1},{"declaration":14715,"isOffset":false,"isSlot":false,"src":"39384:6:58","valueSize":1},{"declaration":14710,"isOffset":false,"isSlot":false,"src":"39418:4:58","valueSize":1}],"flags":["memory-safe"],"id":14724,"nodeType":"InlineAssembly","src":"39345:107:58"}]},"id":14726,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_1","nameLocation":"39204:12:58","nodeType":"FunctionDefinition","parameters":{"id":14713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14710,"mutability":"mutable","name":"self","nameLocation":"39225:4:58","nodeType":"VariableDeclaration","scope":14726,"src":"39217:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14709,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39217:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14712,"mutability":"mutable","name":"offset","nameLocation":"39237:6:58","nodeType":"VariableDeclaration","scope":14726,"src":"39231:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14711,"name":"uint8","nodeType":"ElementaryTypeName","src":"39231:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"39216:28:58"},"returnParameters":{"id":14716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14715,"mutability":"mutable","name":"result","nameLocation":"39275:6:58","nodeType":"VariableDeclaration","scope":14726,"src":"39268:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14714,"name":"bytes1","nodeType":"ElementaryTypeName","src":"39268:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"39267:15:58"},"scope":16305,"src":"39195:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14745,"nodeType":"Block","src":"39567:231:58","statements":[{"assignments":[14738],"declarations":[{"constant":false,"id":14738,"mutability":"mutable","name":"oldValue","nameLocation":"39584:8:58","nodeType":"VariableDeclaration","scope":14745,"src":"39577:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14737,"name":"bytes1","nodeType":"ElementaryTypeName","src":"39577:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":14743,"initialValue":{"arguments":[{"id":14740,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14728,"src":"39608:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14741,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14732,"src":"39614:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14739,"name":"extract_22_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14726,"src":"39595:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes22,uint8) pure returns (bytes1)"}},"id":14742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39595:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"39577:44:58"},{"AST":{"nativeSrc":"39656:136:58","nodeType":"YulBlock","src":"39656:136:58","statements":[{"nativeSrc":"39670:37:58","nodeType":"YulAssignment","src":"39670:37:58","value":{"arguments":[{"name":"value","nativeSrc":"39683:5:58","nodeType":"YulIdentifier","src":"39683:5:58"},{"arguments":[{"kind":"number","nativeSrc":"39694:3:58","nodeType":"YulLiteral","src":"39694:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"39703:1:58","nodeType":"YulLiteral","src":"39703:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"39699:3:58","nodeType":"YulIdentifier","src":"39699:3:58"},"nativeSrc":"39699:6:58","nodeType":"YulFunctionCall","src":"39699:6:58"}],"functionName":{"name":"shl","nativeSrc":"39690:3:58","nodeType":"YulIdentifier","src":"39690:3:58"},"nativeSrc":"39690:16:58","nodeType":"YulFunctionCall","src":"39690:16:58"}],"functionName":{"name":"and","nativeSrc":"39679:3:58","nodeType":"YulIdentifier","src":"39679:3:58"},"nativeSrc":"39679:28:58","nodeType":"YulFunctionCall","src":"39679:28:58"},"variableNames":[{"name":"value","nativeSrc":"39670:5:58","nodeType":"YulIdentifier","src":"39670:5:58"}]},{"nativeSrc":"39720:62:58","nodeType":"YulAssignment","src":"39720:62:58","value":{"arguments":[{"name":"self","nativeSrc":"39734:4:58","nodeType":"YulIdentifier","src":"39734:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39748:1:58","nodeType":"YulLiteral","src":"39748:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"39751:6:58","nodeType":"YulIdentifier","src":"39751:6:58"}],"functionName":{"name":"mul","nativeSrc":"39744:3:58","nodeType":"YulIdentifier","src":"39744:3:58"},"nativeSrc":"39744:14:58","nodeType":"YulFunctionCall","src":"39744:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"39764:8:58","nodeType":"YulIdentifier","src":"39764:8:58"},{"name":"value","nativeSrc":"39774:5:58","nodeType":"YulIdentifier","src":"39774:5:58"}],"functionName":{"name":"xor","nativeSrc":"39760:3:58","nodeType":"YulIdentifier","src":"39760:3:58"},"nativeSrc":"39760:20:58","nodeType":"YulFunctionCall","src":"39760:20:58"}],"functionName":{"name":"shr","nativeSrc":"39740:3:58","nodeType":"YulIdentifier","src":"39740:3:58"},"nativeSrc":"39740:41:58","nodeType":"YulFunctionCall","src":"39740:41:58"}],"functionName":{"name":"xor","nativeSrc":"39730:3:58","nodeType":"YulIdentifier","src":"39730:3:58"},"nativeSrc":"39730:52:58","nodeType":"YulFunctionCall","src":"39730:52:58"},"variableNames":[{"name":"result","nativeSrc":"39720:6:58","nodeType":"YulIdentifier","src":"39720:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14732,"isOffset":false,"isSlot":false,"src":"39751:6:58","valueSize":1},{"declaration":14738,"isOffset":false,"isSlot":false,"src":"39764:8:58","valueSize":1},{"declaration":14735,"isOffset":false,"isSlot":false,"src":"39720:6:58","valueSize":1},{"declaration":14728,"isOffset":false,"isSlot":false,"src":"39734:4:58","valueSize":1},{"declaration":14730,"isOffset":false,"isSlot":false,"src":"39670:5:58","valueSize":1},{"declaration":14730,"isOffset":false,"isSlot":false,"src":"39683:5:58","valueSize":1},{"declaration":14730,"isOffset":false,"isSlot":false,"src":"39774:5:58","valueSize":1}],"flags":["memory-safe"],"id":14744,"nodeType":"InlineAssembly","src":"39631:161:58"}]},"id":14746,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_1","nameLocation":"39473:12:58","nodeType":"FunctionDefinition","parameters":{"id":14733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14728,"mutability":"mutable","name":"self","nameLocation":"39494:4:58","nodeType":"VariableDeclaration","scope":14746,"src":"39486:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14727,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39486:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14730,"mutability":"mutable","name":"value","nameLocation":"39507:5:58","nodeType":"VariableDeclaration","scope":14746,"src":"39500:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":14729,"name":"bytes1","nodeType":"ElementaryTypeName","src":"39500:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":14732,"mutability":"mutable","name":"offset","nameLocation":"39520:6:58","nodeType":"VariableDeclaration","scope":14746,"src":"39514:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14731,"name":"uint8","nodeType":"ElementaryTypeName","src":"39514:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"39485:42:58"},"returnParameters":{"id":14736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14735,"mutability":"mutable","name":"result","nameLocation":"39559:6:58","nodeType":"VariableDeclaration","scope":14746,"src":"39551:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14734,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39551:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"39550:16:58"},"scope":16305,"src":"39464:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14763,"nodeType":"Block","src":"39892:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14755,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14750,"src":"39906:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":14756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39915:2:58","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"39906:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14761,"nodeType":"IfStatement","src":"39902:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14758,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"39926:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39926:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14760,"nodeType":"RevertStatement","src":"39919:25:58"}},{"AST":{"nativeSrc":"39979:82:58","nodeType":"YulBlock","src":"39979:82:58","statements":[{"nativeSrc":"39993:58:58","nodeType":"YulAssignment","src":"39993:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40015:1:58","nodeType":"YulLiteral","src":"40015:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"40018:6:58","nodeType":"YulIdentifier","src":"40018:6:58"}],"functionName":{"name":"mul","nativeSrc":"40011:3:58","nodeType":"YulIdentifier","src":"40011:3:58"},"nativeSrc":"40011:14:58","nodeType":"YulFunctionCall","src":"40011:14:58"},{"name":"self","nativeSrc":"40027:4:58","nodeType":"YulIdentifier","src":"40027:4:58"}],"functionName":{"name":"shl","nativeSrc":"40007:3:58","nodeType":"YulIdentifier","src":"40007:3:58"},"nativeSrc":"40007:25:58","nodeType":"YulFunctionCall","src":"40007:25:58"},{"arguments":[{"kind":"number","nativeSrc":"40038:3:58","nodeType":"YulLiteral","src":"40038:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"40047:1:58","nodeType":"YulLiteral","src":"40047:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40043:3:58","nodeType":"YulIdentifier","src":"40043:3:58"},"nativeSrc":"40043:6:58","nodeType":"YulFunctionCall","src":"40043:6:58"}],"functionName":{"name":"shl","nativeSrc":"40034:3:58","nodeType":"YulIdentifier","src":"40034:3:58"},"nativeSrc":"40034:16:58","nodeType":"YulFunctionCall","src":"40034:16:58"}],"functionName":{"name":"and","nativeSrc":"40003:3:58","nodeType":"YulIdentifier","src":"40003:3:58"},"nativeSrc":"40003:48:58","nodeType":"YulFunctionCall","src":"40003:48:58"},"variableNames":[{"name":"result","nativeSrc":"39993:6:58","nodeType":"YulIdentifier","src":"39993:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14750,"isOffset":false,"isSlot":false,"src":"40018:6:58","valueSize":1},{"declaration":14753,"isOffset":false,"isSlot":false,"src":"39993:6:58","valueSize":1},{"declaration":14748,"isOffset":false,"isSlot":false,"src":"40027:4:58","valueSize":1}],"flags":["memory-safe"],"id":14762,"nodeType":"InlineAssembly","src":"39954:107:58"}]},"id":14764,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_2","nameLocation":"39813:12:58","nodeType":"FunctionDefinition","parameters":{"id":14751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14748,"mutability":"mutable","name":"self","nameLocation":"39834:4:58","nodeType":"VariableDeclaration","scope":14764,"src":"39826:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14747,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39826:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14750,"mutability":"mutable","name":"offset","nameLocation":"39846:6:58","nodeType":"VariableDeclaration","scope":14764,"src":"39840:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14749,"name":"uint8","nodeType":"ElementaryTypeName","src":"39840:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"39825:28:58"},"returnParameters":{"id":14754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14753,"mutability":"mutable","name":"result","nameLocation":"39884:6:58","nodeType":"VariableDeclaration","scope":14764,"src":"39877:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14752,"name":"bytes2","nodeType":"ElementaryTypeName","src":"39877:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"39876:15:58"},"scope":16305,"src":"39804:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14783,"nodeType":"Block","src":"40176:231:58","statements":[{"assignments":[14776],"declarations":[{"constant":false,"id":14776,"mutability":"mutable","name":"oldValue","nameLocation":"40193:8:58","nodeType":"VariableDeclaration","scope":14783,"src":"40186:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14775,"name":"bytes2","nodeType":"ElementaryTypeName","src":"40186:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":14781,"initialValue":{"arguments":[{"id":14778,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14766,"src":"40217:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14779,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14770,"src":"40223:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14777,"name":"extract_22_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14764,"src":"40204:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes22,uint8) pure returns (bytes2)"}},"id":14780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40204:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"40186:44:58"},{"AST":{"nativeSrc":"40265:136:58","nodeType":"YulBlock","src":"40265:136:58","statements":[{"nativeSrc":"40279:37:58","nodeType":"YulAssignment","src":"40279:37:58","value":{"arguments":[{"name":"value","nativeSrc":"40292:5:58","nodeType":"YulIdentifier","src":"40292:5:58"},{"arguments":[{"kind":"number","nativeSrc":"40303:3:58","nodeType":"YulLiteral","src":"40303:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"40312:1:58","nodeType":"YulLiteral","src":"40312:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40308:3:58","nodeType":"YulIdentifier","src":"40308:3:58"},"nativeSrc":"40308:6:58","nodeType":"YulFunctionCall","src":"40308:6:58"}],"functionName":{"name":"shl","nativeSrc":"40299:3:58","nodeType":"YulIdentifier","src":"40299:3:58"},"nativeSrc":"40299:16:58","nodeType":"YulFunctionCall","src":"40299:16:58"}],"functionName":{"name":"and","nativeSrc":"40288:3:58","nodeType":"YulIdentifier","src":"40288:3:58"},"nativeSrc":"40288:28:58","nodeType":"YulFunctionCall","src":"40288:28:58"},"variableNames":[{"name":"value","nativeSrc":"40279:5:58","nodeType":"YulIdentifier","src":"40279:5:58"}]},{"nativeSrc":"40329:62:58","nodeType":"YulAssignment","src":"40329:62:58","value":{"arguments":[{"name":"self","nativeSrc":"40343:4:58","nodeType":"YulIdentifier","src":"40343:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40357:1:58","nodeType":"YulLiteral","src":"40357:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"40360:6:58","nodeType":"YulIdentifier","src":"40360:6:58"}],"functionName":{"name":"mul","nativeSrc":"40353:3:58","nodeType":"YulIdentifier","src":"40353:3:58"},"nativeSrc":"40353:14:58","nodeType":"YulFunctionCall","src":"40353:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"40373:8:58","nodeType":"YulIdentifier","src":"40373:8:58"},{"name":"value","nativeSrc":"40383:5:58","nodeType":"YulIdentifier","src":"40383:5:58"}],"functionName":{"name":"xor","nativeSrc":"40369:3:58","nodeType":"YulIdentifier","src":"40369:3:58"},"nativeSrc":"40369:20:58","nodeType":"YulFunctionCall","src":"40369:20:58"}],"functionName":{"name":"shr","nativeSrc":"40349:3:58","nodeType":"YulIdentifier","src":"40349:3:58"},"nativeSrc":"40349:41:58","nodeType":"YulFunctionCall","src":"40349:41:58"}],"functionName":{"name":"xor","nativeSrc":"40339:3:58","nodeType":"YulIdentifier","src":"40339:3:58"},"nativeSrc":"40339:52:58","nodeType":"YulFunctionCall","src":"40339:52:58"},"variableNames":[{"name":"result","nativeSrc":"40329:6:58","nodeType":"YulIdentifier","src":"40329:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14770,"isOffset":false,"isSlot":false,"src":"40360:6:58","valueSize":1},{"declaration":14776,"isOffset":false,"isSlot":false,"src":"40373:8:58","valueSize":1},{"declaration":14773,"isOffset":false,"isSlot":false,"src":"40329:6:58","valueSize":1},{"declaration":14766,"isOffset":false,"isSlot":false,"src":"40343:4:58","valueSize":1},{"declaration":14768,"isOffset":false,"isSlot":false,"src":"40279:5:58","valueSize":1},{"declaration":14768,"isOffset":false,"isSlot":false,"src":"40292:5:58","valueSize":1},{"declaration":14768,"isOffset":false,"isSlot":false,"src":"40383:5:58","valueSize":1}],"flags":["memory-safe"],"id":14782,"nodeType":"InlineAssembly","src":"40240:161:58"}]},"id":14784,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_2","nameLocation":"40082:12:58","nodeType":"FunctionDefinition","parameters":{"id":14771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14766,"mutability":"mutable","name":"self","nameLocation":"40103:4:58","nodeType":"VariableDeclaration","scope":14784,"src":"40095:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14765,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40095:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14768,"mutability":"mutable","name":"value","nameLocation":"40116:5:58","nodeType":"VariableDeclaration","scope":14784,"src":"40109:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":14767,"name":"bytes2","nodeType":"ElementaryTypeName","src":"40109:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":14770,"mutability":"mutable","name":"offset","nameLocation":"40129:6:58","nodeType":"VariableDeclaration","scope":14784,"src":"40123:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14769,"name":"uint8","nodeType":"ElementaryTypeName","src":"40123:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"40094:42:58"},"returnParameters":{"id":14774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14773,"mutability":"mutable","name":"result","nameLocation":"40168:6:58","nodeType":"VariableDeclaration","scope":14784,"src":"40160:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14772,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40160:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"40159:16:58"},"scope":16305,"src":"40073:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14801,"nodeType":"Block","src":"40501:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14793,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14788,"src":"40515:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":14794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40524:2:58","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"40515:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14799,"nodeType":"IfStatement","src":"40511:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14796,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"40535:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40535:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14798,"nodeType":"RevertStatement","src":"40528:25:58"}},{"AST":{"nativeSrc":"40588:82:58","nodeType":"YulBlock","src":"40588:82:58","statements":[{"nativeSrc":"40602:58:58","nodeType":"YulAssignment","src":"40602:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40624:1:58","nodeType":"YulLiteral","src":"40624:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"40627:6:58","nodeType":"YulIdentifier","src":"40627:6:58"}],"functionName":{"name":"mul","nativeSrc":"40620:3:58","nodeType":"YulIdentifier","src":"40620:3:58"},"nativeSrc":"40620:14:58","nodeType":"YulFunctionCall","src":"40620:14:58"},{"name":"self","nativeSrc":"40636:4:58","nodeType":"YulIdentifier","src":"40636:4:58"}],"functionName":{"name":"shl","nativeSrc":"40616:3:58","nodeType":"YulIdentifier","src":"40616:3:58"},"nativeSrc":"40616:25:58","nodeType":"YulFunctionCall","src":"40616:25:58"},{"arguments":[{"kind":"number","nativeSrc":"40647:3:58","nodeType":"YulLiteral","src":"40647:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"40656:1:58","nodeType":"YulLiteral","src":"40656:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40652:3:58","nodeType":"YulIdentifier","src":"40652:3:58"},"nativeSrc":"40652:6:58","nodeType":"YulFunctionCall","src":"40652:6:58"}],"functionName":{"name":"shl","nativeSrc":"40643:3:58","nodeType":"YulIdentifier","src":"40643:3:58"},"nativeSrc":"40643:16:58","nodeType":"YulFunctionCall","src":"40643:16:58"}],"functionName":{"name":"and","nativeSrc":"40612:3:58","nodeType":"YulIdentifier","src":"40612:3:58"},"nativeSrc":"40612:48:58","nodeType":"YulFunctionCall","src":"40612:48:58"},"variableNames":[{"name":"result","nativeSrc":"40602:6:58","nodeType":"YulIdentifier","src":"40602:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14788,"isOffset":false,"isSlot":false,"src":"40627:6:58","valueSize":1},{"declaration":14791,"isOffset":false,"isSlot":false,"src":"40602:6:58","valueSize":1},{"declaration":14786,"isOffset":false,"isSlot":false,"src":"40636:4:58","valueSize":1}],"flags":["memory-safe"],"id":14800,"nodeType":"InlineAssembly","src":"40563:107:58"}]},"id":14802,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_4","nameLocation":"40422:12:58","nodeType":"FunctionDefinition","parameters":{"id":14789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14786,"mutability":"mutable","name":"self","nameLocation":"40443:4:58","nodeType":"VariableDeclaration","scope":14802,"src":"40435:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14785,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40435:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14788,"mutability":"mutable","name":"offset","nameLocation":"40455:6:58","nodeType":"VariableDeclaration","scope":14802,"src":"40449:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14787,"name":"uint8","nodeType":"ElementaryTypeName","src":"40449:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"40434:28:58"},"returnParameters":{"id":14792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14791,"mutability":"mutable","name":"result","nameLocation":"40493:6:58","nodeType":"VariableDeclaration","scope":14802,"src":"40486:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14790,"name":"bytes4","nodeType":"ElementaryTypeName","src":"40486:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"40485:15:58"},"scope":16305,"src":"40413:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14821,"nodeType":"Block","src":"40785:231:58","statements":[{"assignments":[14814],"declarations":[{"constant":false,"id":14814,"mutability":"mutable","name":"oldValue","nameLocation":"40802:8:58","nodeType":"VariableDeclaration","scope":14821,"src":"40795:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14813,"name":"bytes4","nodeType":"ElementaryTypeName","src":"40795:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":14819,"initialValue":{"arguments":[{"id":14816,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14804,"src":"40826:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14817,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14808,"src":"40832:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14815,"name":"extract_22_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14802,"src":"40813:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes22,uint8) pure returns (bytes4)"}},"id":14818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40813:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"40795:44:58"},{"AST":{"nativeSrc":"40874:136:58","nodeType":"YulBlock","src":"40874:136:58","statements":[{"nativeSrc":"40888:37:58","nodeType":"YulAssignment","src":"40888:37:58","value":{"arguments":[{"name":"value","nativeSrc":"40901:5:58","nodeType":"YulIdentifier","src":"40901:5:58"},{"arguments":[{"kind":"number","nativeSrc":"40912:3:58","nodeType":"YulLiteral","src":"40912:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"40921:1:58","nodeType":"YulLiteral","src":"40921:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40917:3:58","nodeType":"YulIdentifier","src":"40917:3:58"},"nativeSrc":"40917:6:58","nodeType":"YulFunctionCall","src":"40917:6:58"}],"functionName":{"name":"shl","nativeSrc":"40908:3:58","nodeType":"YulIdentifier","src":"40908:3:58"},"nativeSrc":"40908:16:58","nodeType":"YulFunctionCall","src":"40908:16:58"}],"functionName":{"name":"and","nativeSrc":"40897:3:58","nodeType":"YulIdentifier","src":"40897:3:58"},"nativeSrc":"40897:28:58","nodeType":"YulFunctionCall","src":"40897:28:58"},"variableNames":[{"name":"value","nativeSrc":"40888:5:58","nodeType":"YulIdentifier","src":"40888:5:58"}]},{"nativeSrc":"40938:62:58","nodeType":"YulAssignment","src":"40938:62:58","value":{"arguments":[{"name":"self","nativeSrc":"40952:4:58","nodeType":"YulIdentifier","src":"40952:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40966:1:58","nodeType":"YulLiteral","src":"40966:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"40969:6:58","nodeType":"YulIdentifier","src":"40969:6:58"}],"functionName":{"name":"mul","nativeSrc":"40962:3:58","nodeType":"YulIdentifier","src":"40962:3:58"},"nativeSrc":"40962:14:58","nodeType":"YulFunctionCall","src":"40962:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"40982:8:58","nodeType":"YulIdentifier","src":"40982:8:58"},{"name":"value","nativeSrc":"40992:5:58","nodeType":"YulIdentifier","src":"40992:5:58"}],"functionName":{"name":"xor","nativeSrc":"40978:3:58","nodeType":"YulIdentifier","src":"40978:3:58"},"nativeSrc":"40978:20:58","nodeType":"YulFunctionCall","src":"40978:20:58"}],"functionName":{"name":"shr","nativeSrc":"40958:3:58","nodeType":"YulIdentifier","src":"40958:3:58"},"nativeSrc":"40958:41:58","nodeType":"YulFunctionCall","src":"40958:41:58"}],"functionName":{"name":"xor","nativeSrc":"40948:3:58","nodeType":"YulIdentifier","src":"40948:3:58"},"nativeSrc":"40948:52:58","nodeType":"YulFunctionCall","src":"40948:52:58"},"variableNames":[{"name":"result","nativeSrc":"40938:6:58","nodeType":"YulIdentifier","src":"40938:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14808,"isOffset":false,"isSlot":false,"src":"40969:6:58","valueSize":1},{"declaration":14814,"isOffset":false,"isSlot":false,"src":"40982:8:58","valueSize":1},{"declaration":14811,"isOffset":false,"isSlot":false,"src":"40938:6:58","valueSize":1},{"declaration":14804,"isOffset":false,"isSlot":false,"src":"40952:4:58","valueSize":1},{"declaration":14806,"isOffset":false,"isSlot":false,"src":"40888:5:58","valueSize":1},{"declaration":14806,"isOffset":false,"isSlot":false,"src":"40901:5:58","valueSize":1},{"declaration":14806,"isOffset":false,"isSlot":false,"src":"40992:5:58","valueSize":1}],"flags":["memory-safe"],"id":14820,"nodeType":"InlineAssembly","src":"40849:161:58"}]},"id":14822,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_4","nameLocation":"40691:12:58","nodeType":"FunctionDefinition","parameters":{"id":14809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14804,"mutability":"mutable","name":"self","nameLocation":"40712:4:58","nodeType":"VariableDeclaration","scope":14822,"src":"40704:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14803,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40704:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14806,"mutability":"mutable","name":"value","nameLocation":"40725:5:58","nodeType":"VariableDeclaration","scope":14822,"src":"40718:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14805,"name":"bytes4","nodeType":"ElementaryTypeName","src":"40718:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":14808,"mutability":"mutable","name":"offset","nameLocation":"40738:6:58","nodeType":"VariableDeclaration","scope":14822,"src":"40732:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14807,"name":"uint8","nodeType":"ElementaryTypeName","src":"40732:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"40703:42:58"},"returnParameters":{"id":14812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14811,"mutability":"mutable","name":"result","nameLocation":"40777:6:58","nodeType":"VariableDeclaration","scope":14822,"src":"40769:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14810,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40769:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"40768:16:58"},"scope":16305,"src":"40682:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14839,"nodeType":"Block","src":"41110:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14831,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14826,"src":"41124:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":14832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41133:2:58","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"41124:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14837,"nodeType":"IfStatement","src":"41120:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14834,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"41144:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41144:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14836,"nodeType":"RevertStatement","src":"41137:25:58"}},{"AST":{"nativeSrc":"41197:82:58","nodeType":"YulBlock","src":"41197:82:58","statements":[{"nativeSrc":"41211:58:58","nodeType":"YulAssignment","src":"41211:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41233:1:58","nodeType":"YulLiteral","src":"41233:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"41236:6:58","nodeType":"YulIdentifier","src":"41236:6:58"}],"functionName":{"name":"mul","nativeSrc":"41229:3:58","nodeType":"YulIdentifier","src":"41229:3:58"},"nativeSrc":"41229:14:58","nodeType":"YulFunctionCall","src":"41229:14:58"},{"name":"self","nativeSrc":"41245:4:58","nodeType":"YulIdentifier","src":"41245:4:58"}],"functionName":{"name":"shl","nativeSrc":"41225:3:58","nodeType":"YulIdentifier","src":"41225:3:58"},"nativeSrc":"41225:25:58","nodeType":"YulFunctionCall","src":"41225:25:58"},{"arguments":[{"kind":"number","nativeSrc":"41256:3:58","nodeType":"YulLiteral","src":"41256:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"41265:1:58","nodeType":"YulLiteral","src":"41265:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41261:3:58","nodeType":"YulIdentifier","src":"41261:3:58"},"nativeSrc":"41261:6:58","nodeType":"YulFunctionCall","src":"41261:6:58"}],"functionName":{"name":"shl","nativeSrc":"41252:3:58","nodeType":"YulIdentifier","src":"41252:3:58"},"nativeSrc":"41252:16:58","nodeType":"YulFunctionCall","src":"41252:16:58"}],"functionName":{"name":"and","nativeSrc":"41221:3:58","nodeType":"YulIdentifier","src":"41221:3:58"},"nativeSrc":"41221:48:58","nodeType":"YulFunctionCall","src":"41221:48:58"},"variableNames":[{"name":"result","nativeSrc":"41211:6:58","nodeType":"YulIdentifier","src":"41211:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14826,"isOffset":false,"isSlot":false,"src":"41236:6:58","valueSize":1},{"declaration":14829,"isOffset":false,"isSlot":false,"src":"41211:6:58","valueSize":1},{"declaration":14824,"isOffset":false,"isSlot":false,"src":"41245:4:58","valueSize":1}],"flags":["memory-safe"],"id":14838,"nodeType":"InlineAssembly","src":"41172:107:58"}]},"id":14840,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_6","nameLocation":"41031:12:58","nodeType":"FunctionDefinition","parameters":{"id":14827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14824,"mutability":"mutable","name":"self","nameLocation":"41052:4:58","nodeType":"VariableDeclaration","scope":14840,"src":"41044:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14823,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41044:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14826,"mutability":"mutable","name":"offset","nameLocation":"41064:6:58","nodeType":"VariableDeclaration","scope":14840,"src":"41058:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14825,"name":"uint8","nodeType":"ElementaryTypeName","src":"41058:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41043:28:58"},"returnParameters":{"id":14830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14829,"mutability":"mutable","name":"result","nameLocation":"41102:6:58","nodeType":"VariableDeclaration","scope":14840,"src":"41095:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14828,"name":"bytes6","nodeType":"ElementaryTypeName","src":"41095:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"41094:15:58"},"scope":16305,"src":"41022:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14859,"nodeType":"Block","src":"41394:231:58","statements":[{"assignments":[14852],"declarations":[{"constant":false,"id":14852,"mutability":"mutable","name":"oldValue","nameLocation":"41411:8:58","nodeType":"VariableDeclaration","scope":14859,"src":"41404:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14851,"name":"bytes6","nodeType":"ElementaryTypeName","src":"41404:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":14857,"initialValue":{"arguments":[{"id":14854,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14842,"src":"41435:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14855,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14846,"src":"41441:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14853,"name":"extract_22_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"41422:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes22,uint8) pure returns (bytes6)"}},"id":14856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41422:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"41404:44:58"},{"AST":{"nativeSrc":"41483:136:58","nodeType":"YulBlock","src":"41483:136:58","statements":[{"nativeSrc":"41497:37:58","nodeType":"YulAssignment","src":"41497:37:58","value":{"arguments":[{"name":"value","nativeSrc":"41510:5:58","nodeType":"YulIdentifier","src":"41510:5:58"},{"arguments":[{"kind":"number","nativeSrc":"41521:3:58","nodeType":"YulLiteral","src":"41521:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"41530:1:58","nodeType":"YulLiteral","src":"41530:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41526:3:58","nodeType":"YulIdentifier","src":"41526:3:58"},"nativeSrc":"41526:6:58","nodeType":"YulFunctionCall","src":"41526:6:58"}],"functionName":{"name":"shl","nativeSrc":"41517:3:58","nodeType":"YulIdentifier","src":"41517:3:58"},"nativeSrc":"41517:16:58","nodeType":"YulFunctionCall","src":"41517:16:58"}],"functionName":{"name":"and","nativeSrc":"41506:3:58","nodeType":"YulIdentifier","src":"41506:3:58"},"nativeSrc":"41506:28:58","nodeType":"YulFunctionCall","src":"41506:28:58"},"variableNames":[{"name":"value","nativeSrc":"41497:5:58","nodeType":"YulIdentifier","src":"41497:5:58"}]},{"nativeSrc":"41547:62:58","nodeType":"YulAssignment","src":"41547:62:58","value":{"arguments":[{"name":"self","nativeSrc":"41561:4:58","nodeType":"YulIdentifier","src":"41561:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41575:1:58","nodeType":"YulLiteral","src":"41575:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"41578:6:58","nodeType":"YulIdentifier","src":"41578:6:58"}],"functionName":{"name":"mul","nativeSrc":"41571:3:58","nodeType":"YulIdentifier","src":"41571:3:58"},"nativeSrc":"41571:14:58","nodeType":"YulFunctionCall","src":"41571:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"41591:8:58","nodeType":"YulIdentifier","src":"41591:8:58"},{"name":"value","nativeSrc":"41601:5:58","nodeType":"YulIdentifier","src":"41601:5:58"}],"functionName":{"name":"xor","nativeSrc":"41587:3:58","nodeType":"YulIdentifier","src":"41587:3:58"},"nativeSrc":"41587:20:58","nodeType":"YulFunctionCall","src":"41587:20:58"}],"functionName":{"name":"shr","nativeSrc":"41567:3:58","nodeType":"YulIdentifier","src":"41567:3:58"},"nativeSrc":"41567:41:58","nodeType":"YulFunctionCall","src":"41567:41:58"}],"functionName":{"name":"xor","nativeSrc":"41557:3:58","nodeType":"YulIdentifier","src":"41557:3:58"},"nativeSrc":"41557:52:58","nodeType":"YulFunctionCall","src":"41557:52:58"},"variableNames":[{"name":"result","nativeSrc":"41547:6:58","nodeType":"YulIdentifier","src":"41547:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14846,"isOffset":false,"isSlot":false,"src":"41578:6:58","valueSize":1},{"declaration":14852,"isOffset":false,"isSlot":false,"src":"41591:8:58","valueSize":1},{"declaration":14849,"isOffset":false,"isSlot":false,"src":"41547:6:58","valueSize":1},{"declaration":14842,"isOffset":false,"isSlot":false,"src":"41561:4:58","valueSize":1},{"declaration":14844,"isOffset":false,"isSlot":false,"src":"41497:5:58","valueSize":1},{"declaration":14844,"isOffset":false,"isSlot":false,"src":"41510:5:58","valueSize":1},{"declaration":14844,"isOffset":false,"isSlot":false,"src":"41601:5:58","valueSize":1}],"flags":["memory-safe"],"id":14858,"nodeType":"InlineAssembly","src":"41458:161:58"}]},"id":14860,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_6","nameLocation":"41300:12:58","nodeType":"FunctionDefinition","parameters":{"id":14847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14842,"mutability":"mutable","name":"self","nameLocation":"41321:4:58","nodeType":"VariableDeclaration","scope":14860,"src":"41313:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14841,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41313:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14844,"mutability":"mutable","name":"value","nameLocation":"41334:5:58","nodeType":"VariableDeclaration","scope":14860,"src":"41327:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":14843,"name":"bytes6","nodeType":"ElementaryTypeName","src":"41327:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":14846,"mutability":"mutable","name":"offset","nameLocation":"41347:6:58","nodeType":"VariableDeclaration","scope":14860,"src":"41341:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14845,"name":"uint8","nodeType":"ElementaryTypeName","src":"41341:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41312:42:58"},"returnParameters":{"id":14850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14849,"mutability":"mutable","name":"result","nameLocation":"41386:6:58","nodeType":"VariableDeclaration","scope":14860,"src":"41378:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14848,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41378:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"41377:16:58"},"scope":16305,"src":"41291:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14877,"nodeType":"Block","src":"41719:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14869,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14864,"src":"41733:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":14870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41742:2:58","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"41733:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14875,"nodeType":"IfStatement","src":"41729:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14872,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"41753:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41753:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14874,"nodeType":"RevertStatement","src":"41746:25:58"}},{"AST":{"nativeSrc":"41806:82:58","nodeType":"YulBlock","src":"41806:82:58","statements":[{"nativeSrc":"41820:58:58","nodeType":"YulAssignment","src":"41820:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41842:1:58","nodeType":"YulLiteral","src":"41842:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"41845:6:58","nodeType":"YulIdentifier","src":"41845:6:58"}],"functionName":{"name":"mul","nativeSrc":"41838:3:58","nodeType":"YulIdentifier","src":"41838:3:58"},"nativeSrc":"41838:14:58","nodeType":"YulFunctionCall","src":"41838:14:58"},{"name":"self","nativeSrc":"41854:4:58","nodeType":"YulIdentifier","src":"41854:4:58"}],"functionName":{"name":"shl","nativeSrc":"41834:3:58","nodeType":"YulIdentifier","src":"41834:3:58"},"nativeSrc":"41834:25:58","nodeType":"YulFunctionCall","src":"41834:25:58"},{"arguments":[{"kind":"number","nativeSrc":"41865:3:58","nodeType":"YulLiteral","src":"41865:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"41874:1:58","nodeType":"YulLiteral","src":"41874:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41870:3:58","nodeType":"YulIdentifier","src":"41870:3:58"},"nativeSrc":"41870:6:58","nodeType":"YulFunctionCall","src":"41870:6:58"}],"functionName":{"name":"shl","nativeSrc":"41861:3:58","nodeType":"YulIdentifier","src":"41861:3:58"},"nativeSrc":"41861:16:58","nodeType":"YulFunctionCall","src":"41861:16:58"}],"functionName":{"name":"and","nativeSrc":"41830:3:58","nodeType":"YulIdentifier","src":"41830:3:58"},"nativeSrc":"41830:48:58","nodeType":"YulFunctionCall","src":"41830:48:58"},"variableNames":[{"name":"result","nativeSrc":"41820:6:58","nodeType":"YulIdentifier","src":"41820:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14864,"isOffset":false,"isSlot":false,"src":"41845:6:58","valueSize":1},{"declaration":14867,"isOffset":false,"isSlot":false,"src":"41820:6:58","valueSize":1},{"declaration":14862,"isOffset":false,"isSlot":false,"src":"41854:4:58","valueSize":1}],"flags":["memory-safe"],"id":14876,"nodeType":"InlineAssembly","src":"41781:107:58"}]},"id":14878,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_8","nameLocation":"41640:12:58","nodeType":"FunctionDefinition","parameters":{"id":14865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14862,"mutability":"mutable","name":"self","nameLocation":"41661:4:58","nodeType":"VariableDeclaration","scope":14878,"src":"41653:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14861,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41653:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14864,"mutability":"mutable","name":"offset","nameLocation":"41673:6:58","nodeType":"VariableDeclaration","scope":14878,"src":"41667:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14863,"name":"uint8","nodeType":"ElementaryTypeName","src":"41667:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41652:28:58"},"returnParameters":{"id":14868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14867,"mutability":"mutable","name":"result","nameLocation":"41711:6:58","nodeType":"VariableDeclaration","scope":14878,"src":"41704:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14866,"name":"bytes8","nodeType":"ElementaryTypeName","src":"41704:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"41703:15:58"},"scope":16305,"src":"41631:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14897,"nodeType":"Block","src":"42003:231:58","statements":[{"assignments":[14890],"declarations":[{"constant":false,"id":14890,"mutability":"mutable","name":"oldValue","nameLocation":"42020:8:58","nodeType":"VariableDeclaration","scope":14897,"src":"42013:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14889,"name":"bytes8","nodeType":"ElementaryTypeName","src":"42013:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":14895,"initialValue":{"arguments":[{"id":14892,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14880,"src":"42044:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14893,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14884,"src":"42050:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14891,"name":"extract_22_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14878,"src":"42031:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes22,uint8) pure returns (bytes8)"}},"id":14894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42031:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"42013:44:58"},{"AST":{"nativeSrc":"42092:136:58","nodeType":"YulBlock","src":"42092:136:58","statements":[{"nativeSrc":"42106:37:58","nodeType":"YulAssignment","src":"42106:37:58","value":{"arguments":[{"name":"value","nativeSrc":"42119:5:58","nodeType":"YulIdentifier","src":"42119:5:58"},{"arguments":[{"kind":"number","nativeSrc":"42130:3:58","nodeType":"YulLiteral","src":"42130:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"42139:1:58","nodeType":"YulLiteral","src":"42139:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42135:3:58","nodeType":"YulIdentifier","src":"42135:3:58"},"nativeSrc":"42135:6:58","nodeType":"YulFunctionCall","src":"42135:6:58"}],"functionName":{"name":"shl","nativeSrc":"42126:3:58","nodeType":"YulIdentifier","src":"42126:3:58"},"nativeSrc":"42126:16:58","nodeType":"YulFunctionCall","src":"42126:16:58"}],"functionName":{"name":"and","nativeSrc":"42115:3:58","nodeType":"YulIdentifier","src":"42115:3:58"},"nativeSrc":"42115:28:58","nodeType":"YulFunctionCall","src":"42115:28:58"},"variableNames":[{"name":"value","nativeSrc":"42106:5:58","nodeType":"YulIdentifier","src":"42106:5:58"}]},{"nativeSrc":"42156:62:58","nodeType":"YulAssignment","src":"42156:62:58","value":{"arguments":[{"name":"self","nativeSrc":"42170:4:58","nodeType":"YulIdentifier","src":"42170:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42184:1:58","nodeType":"YulLiteral","src":"42184:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"42187:6:58","nodeType":"YulIdentifier","src":"42187:6:58"}],"functionName":{"name":"mul","nativeSrc":"42180:3:58","nodeType":"YulIdentifier","src":"42180:3:58"},"nativeSrc":"42180:14:58","nodeType":"YulFunctionCall","src":"42180:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"42200:8:58","nodeType":"YulIdentifier","src":"42200:8:58"},{"name":"value","nativeSrc":"42210:5:58","nodeType":"YulIdentifier","src":"42210:5:58"}],"functionName":{"name":"xor","nativeSrc":"42196:3:58","nodeType":"YulIdentifier","src":"42196:3:58"},"nativeSrc":"42196:20:58","nodeType":"YulFunctionCall","src":"42196:20:58"}],"functionName":{"name":"shr","nativeSrc":"42176:3:58","nodeType":"YulIdentifier","src":"42176:3:58"},"nativeSrc":"42176:41:58","nodeType":"YulFunctionCall","src":"42176:41:58"}],"functionName":{"name":"xor","nativeSrc":"42166:3:58","nodeType":"YulIdentifier","src":"42166:3:58"},"nativeSrc":"42166:52:58","nodeType":"YulFunctionCall","src":"42166:52:58"},"variableNames":[{"name":"result","nativeSrc":"42156:6:58","nodeType":"YulIdentifier","src":"42156:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14884,"isOffset":false,"isSlot":false,"src":"42187:6:58","valueSize":1},{"declaration":14890,"isOffset":false,"isSlot":false,"src":"42200:8:58","valueSize":1},{"declaration":14887,"isOffset":false,"isSlot":false,"src":"42156:6:58","valueSize":1},{"declaration":14880,"isOffset":false,"isSlot":false,"src":"42170:4:58","valueSize":1},{"declaration":14882,"isOffset":false,"isSlot":false,"src":"42106:5:58","valueSize":1},{"declaration":14882,"isOffset":false,"isSlot":false,"src":"42119:5:58","valueSize":1},{"declaration":14882,"isOffset":false,"isSlot":false,"src":"42210:5:58","valueSize":1}],"flags":["memory-safe"],"id":14896,"nodeType":"InlineAssembly","src":"42067:161:58"}]},"id":14898,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_8","nameLocation":"41909:12:58","nodeType":"FunctionDefinition","parameters":{"id":14885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14880,"mutability":"mutable","name":"self","nameLocation":"41930:4:58","nodeType":"VariableDeclaration","scope":14898,"src":"41922:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14879,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41922:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14882,"mutability":"mutable","name":"value","nameLocation":"41943:5:58","nodeType":"VariableDeclaration","scope":14898,"src":"41936:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":14881,"name":"bytes8","nodeType":"ElementaryTypeName","src":"41936:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":14884,"mutability":"mutable","name":"offset","nameLocation":"41956:6:58","nodeType":"VariableDeclaration","scope":14898,"src":"41950:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14883,"name":"uint8","nodeType":"ElementaryTypeName","src":"41950:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41921:42:58"},"returnParameters":{"id":14888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14887,"mutability":"mutable","name":"result","nameLocation":"41995:6:58","nodeType":"VariableDeclaration","scope":14898,"src":"41987:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14886,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41987:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"41986:16:58"},"scope":16305,"src":"41900:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14915,"nodeType":"Block","src":"42330:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14907,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14902,"src":"42344:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":14908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42353:2:58","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"42344:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14913,"nodeType":"IfStatement","src":"42340:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14910,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"42364:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42364:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14912,"nodeType":"RevertStatement","src":"42357:25:58"}},{"AST":{"nativeSrc":"42417:82:58","nodeType":"YulBlock","src":"42417:82:58","statements":[{"nativeSrc":"42431:58:58","nodeType":"YulAssignment","src":"42431:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42453:1:58","nodeType":"YulLiteral","src":"42453:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"42456:6:58","nodeType":"YulIdentifier","src":"42456:6:58"}],"functionName":{"name":"mul","nativeSrc":"42449:3:58","nodeType":"YulIdentifier","src":"42449:3:58"},"nativeSrc":"42449:14:58","nodeType":"YulFunctionCall","src":"42449:14:58"},{"name":"self","nativeSrc":"42465:4:58","nodeType":"YulIdentifier","src":"42465:4:58"}],"functionName":{"name":"shl","nativeSrc":"42445:3:58","nodeType":"YulIdentifier","src":"42445:3:58"},"nativeSrc":"42445:25:58","nodeType":"YulFunctionCall","src":"42445:25:58"},{"arguments":[{"kind":"number","nativeSrc":"42476:3:58","nodeType":"YulLiteral","src":"42476:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"42485:1:58","nodeType":"YulLiteral","src":"42485:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42481:3:58","nodeType":"YulIdentifier","src":"42481:3:58"},"nativeSrc":"42481:6:58","nodeType":"YulFunctionCall","src":"42481:6:58"}],"functionName":{"name":"shl","nativeSrc":"42472:3:58","nodeType":"YulIdentifier","src":"42472:3:58"},"nativeSrc":"42472:16:58","nodeType":"YulFunctionCall","src":"42472:16:58"}],"functionName":{"name":"and","nativeSrc":"42441:3:58","nodeType":"YulIdentifier","src":"42441:3:58"},"nativeSrc":"42441:48:58","nodeType":"YulFunctionCall","src":"42441:48:58"},"variableNames":[{"name":"result","nativeSrc":"42431:6:58","nodeType":"YulIdentifier","src":"42431:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14902,"isOffset":false,"isSlot":false,"src":"42456:6:58","valueSize":1},{"declaration":14905,"isOffset":false,"isSlot":false,"src":"42431:6:58","valueSize":1},{"declaration":14900,"isOffset":false,"isSlot":false,"src":"42465:4:58","valueSize":1}],"flags":["memory-safe"],"id":14914,"nodeType":"InlineAssembly","src":"42392:107:58"}]},"id":14916,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_10","nameLocation":"42249:13:58","nodeType":"FunctionDefinition","parameters":{"id":14903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14900,"mutability":"mutable","name":"self","nameLocation":"42271:4:58","nodeType":"VariableDeclaration","scope":14916,"src":"42263:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14899,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42263:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14902,"mutability":"mutable","name":"offset","nameLocation":"42283:6:58","nodeType":"VariableDeclaration","scope":14916,"src":"42277:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14901,"name":"uint8","nodeType":"ElementaryTypeName","src":"42277:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"42262:28:58"},"returnParameters":{"id":14906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14905,"mutability":"mutable","name":"result","nameLocation":"42322:6:58","nodeType":"VariableDeclaration","scope":14916,"src":"42314:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14904,"name":"bytes10","nodeType":"ElementaryTypeName","src":"42314:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"42313:16:58"},"scope":16305,"src":"42240:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14935,"nodeType":"Block","src":"42616:233:58","statements":[{"assignments":[14928],"declarations":[{"constant":false,"id":14928,"mutability":"mutable","name":"oldValue","nameLocation":"42634:8:58","nodeType":"VariableDeclaration","scope":14935,"src":"42626:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14927,"name":"bytes10","nodeType":"ElementaryTypeName","src":"42626:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":14933,"initialValue":{"arguments":[{"id":14930,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"42659:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14931,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14922,"src":"42665:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14929,"name":"extract_22_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14916,"src":"42645:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes22,uint8) pure returns (bytes10)"}},"id":14932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42645:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"42626:46:58"},{"AST":{"nativeSrc":"42707:136:58","nodeType":"YulBlock","src":"42707:136:58","statements":[{"nativeSrc":"42721:37:58","nodeType":"YulAssignment","src":"42721:37:58","value":{"arguments":[{"name":"value","nativeSrc":"42734:5:58","nodeType":"YulIdentifier","src":"42734:5:58"},{"arguments":[{"kind":"number","nativeSrc":"42745:3:58","nodeType":"YulLiteral","src":"42745:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"42754:1:58","nodeType":"YulLiteral","src":"42754:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42750:3:58","nodeType":"YulIdentifier","src":"42750:3:58"},"nativeSrc":"42750:6:58","nodeType":"YulFunctionCall","src":"42750:6:58"}],"functionName":{"name":"shl","nativeSrc":"42741:3:58","nodeType":"YulIdentifier","src":"42741:3:58"},"nativeSrc":"42741:16:58","nodeType":"YulFunctionCall","src":"42741:16:58"}],"functionName":{"name":"and","nativeSrc":"42730:3:58","nodeType":"YulIdentifier","src":"42730:3:58"},"nativeSrc":"42730:28:58","nodeType":"YulFunctionCall","src":"42730:28:58"},"variableNames":[{"name":"value","nativeSrc":"42721:5:58","nodeType":"YulIdentifier","src":"42721:5:58"}]},{"nativeSrc":"42771:62:58","nodeType":"YulAssignment","src":"42771:62:58","value":{"arguments":[{"name":"self","nativeSrc":"42785:4:58","nodeType":"YulIdentifier","src":"42785:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42799:1:58","nodeType":"YulLiteral","src":"42799:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"42802:6:58","nodeType":"YulIdentifier","src":"42802:6:58"}],"functionName":{"name":"mul","nativeSrc":"42795:3:58","nodeType":"YulIdentifier","src":"42795:3:58"},"nativeSrc":"42795:14:58","nodeType":"YulFunctionCall","src":"42795:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"42815:8:58","nodeType":"YulIdentifier","src":"42815:8:58"},{"name":"value","nativeSrc":"42825:5:58","nodeType":"YulIdentifier","src":"42825:5:58"}],"functionName":{"name":"xor","nativeSrc":"42811:3:58","nodeType":"YulIdentifier","src":"42811:3:58"},"nativeSrc":"42811:20:58","nodeType":"YulFunctionCall","src":"42811:20:58"}],"functionName":{"name":"shr","nativeSrc":"42791:3:58","nodeType":"YulIdentifier","src":"42791:3:58"},"nativeSrc":"42791:41:58","nodeType":"YulFunctionCall","src":"42791:41:58"}],"functionName":{"name":"xor","nativeSrc":"42781:3:58","nodeType":"YulIdentifier","src":"42781:3:58"},"nativeSrc":"42781:52:58","nodeType":"YulFunctionCall","src":"42781:52:58"},"variableNames":[{"name":"result","nativeSrc":"42771:6:58","nodeType":"YulIdentifier","src":"42771:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14922,"isOffset":false,"isSlot":false,"src":"42802:6:58","valueSize":1},{"declaration":14928,"isOffset":false,"isSlot":false,"src":"42815:8:58","valueSize":1},{"declaration":14925,"isOffset":false,"isSlot":false,"src":"42771:6:58","valueSize":1},{"declaration":14918,"isOffset":false,"isSlot":false,"src":"42785:4:58","valueSize":1},{"declaration":14920,"isOffset":false,"isSlot":false,"src":"42721:5:58","valueSize":1},{"declaration":14920,"isOffset":false,"isSlot":false,"src":"42734:5:58","valueSize":1},{"declaration":14920,"isOffset":false,"isSlot":false,"src":"42825:5:58","valueSize":1}],"flags":["memory-safe"],"id":14934,"nodeType":"InlineAssembly","src":"42682:161:58"}]},"id":14936,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_10","nameLocation":"42520:13:58","nodeType":"FunctionDefinition","parameters":{"id":14923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14918,"mutability":"mutable","name":"self","nameLocation":"42542:4:58","nodeType":"VariableDeclaration","scope":14936,"src":"42534:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14917,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42534:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14920,"mutability":"mutable","name":"value","nameLocation":"42556:5:58","nodeType":"VariableDeclaration","scope":14936,"src":"42548:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":14919,"name":"bytes10","nodeType":"ElementaryTypeName","src":"42548:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":14922,"mutability":"mutable","name":"offset","nameLocation":"42569:6:58","nodeType":"VariableDeclaration","scope":14936,"src":"42563:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14921,"name":"uint8","nodeType":"ElementaryTypeName","src":"42563:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"42533:43:58"},"returnParameters":{"id":14926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14925,"mutability":"mutable","name":"result","nameLocation":"42608:6:58","nodeType":"VariableDeclaration","scope":14936,"src":"42600:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14924,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42600:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"42599:16:58"},"scope":16305,"src":"42511:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14953,"nodeType":"Block","src":"42945:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14945,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14940,"src":"42959:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":14946,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42968:2:58","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"42959:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14951,"nodeType":"IfStatement","src":"42955:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14948,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"42979:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42979:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14950,"nodeType":"RevertStatement","src":"42972:25:58"}},{"AST":{"nativeSrc":"43032:82:58","nodeType":"YulBlock","src":"43032:82:58","statements":[{"nativeSrc":"43046:58:58","nodeType":"YulAssignment","src":"43046:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43068:1:58","nodeType":"YulLiteral","src":"43068:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"43071:6:58","nodeType":"YulIdentifier","src":"43071:6:58"}],"functionName":{"name":"mul","nativeSrc":"43064:3:58","nodeType":"YulIdentifier","src":"43064:3:58"},"nativeSrc":"43064:14:58","nodeType":"YulFunctionCall","src":"43064:14:58"},{"name":"self","nativeSrc":"43080:4:58","nodeType":"YulIdentifier","src":"43080:4:58"}],"functionName":{"name":"shl","nativeSrc":"43060:3:58","nodeType":"YulIdentifier","src":"43060:3:58"},"nativeSrc":"43060:25:58","nodeType":"YulFunctionCall","src":"43060:25:58"},{"arguments":[{"kind":"number","nativeSrc":"43091:3:58","nodeType":"YulLiteral","src":"43091:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"43100:1:58","nodeType":"YulLiteral","src":"43100:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43096:3:58","nodeType":"YulIdentifier","src":"43096:3:58"},"nativeSrc":"43096:6:58","nodeType":"YulFunctionCall","src":"43096:6:58"}],"functionName":{"name":"shl","nativeSrc":"43087:3:58","nodeType":"YulIdentifier","src":"43087:3:58"},"nativeSrc":"43087:16:58","nodeType":"YulFunctionCall","src":"43087:16:58"}],"functionName":{"name":"and","nativeSrc":"43056:3:58","nodeType":"YulIdentifier","src":"43056:3:58"},"nativeSrc":"43056:48:58","nodeType":"YulFunctionCall","src":"43056:48:58"},"variableNames":[{"name":"result","nativeSrc":"43046:6:58","nodeType":"YulIdentifier","src":"43046:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14940,"isOffset":false,"isSlot":false,"src":"43071:6:58","valueSize":1},{"declaration":14943,"isOffset":false,"isSlot":false,"src":"43046:6:58","valueSize":1},{"declaration":14938,"isOffset":false,"isSlot":false,"src":"43080:4:58","valueSize":1}],"flags":["memory-safe"],"id":14952,"nodeType":"InlineAssembly","src":"43007:107:58"}]},"id":14954,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_12","nameLocation":"42864:13:58","nodeType":"FunctionDefinition","parameters":{"id":14941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14938,"mutability":"mutable","name":"self","nameLocation":"42886:4:58","nodeType":"VariableDeclaration","scope":14954,"src":"42878:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14937,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42878:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14940,"mutability":"mutable","name":"offset","nameLocation":"42898:6:58","nodeType":"VariableDeclaration","scope":14954,"src":"42892:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14939,"name":"uint8","nodeType":"ElementaryTypeName","src":"42892:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"42877:28:58"},"returnParameters":{"id":14944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14943,"mutability":"mutable","name":"result","nameLocation":"42937:6:58","nodeType":"VariableDeclaration","scope":14954,"src":"42929:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14942,"name":"bytes12","nodeType":"ElementaryTypeName","src":"42929:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"42928:16:58"},"scope":16305,"src":"42855:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14973,"nodeType":"Block","src":"43231:233:58","statements":[{"assignments":[14966],"declarations":[{"constant":false,"id":14966,"mutability":"mutable","name":"oldValue","nameLocation":"43249:8:58","nodeType":"VariableDeclaration","scope":14973,"src":"43241:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14965,"name":"bytes12","nodeType":"ElementaryTypeName","src":"43241:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":14971,"initialValue":{"arguments":[{"id":14968,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14956,"src":"43274:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":14969,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14960,"src":"43280:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14967,"name":"extract_22_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14954,"src":"43260:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes22,uint8) pure returns (bytes12)"}},"id":14970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43260:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"43241:46:58"},{"AST":{"nativeSrc":"43322:136:58","nodeType":"YulBlock","src":"43322:136:58","statements":[{"nativeSrc":"43336:37:58","nodeType":"YulAssignment","src":"43336:37:58","value":{"arguments":[{"name":"value","nativeSrc":"43349:5:58","nodeType":"YulIdentifier","src":"43349:5:58"},{"arguments":[{"kind":"number","nativeSrc":"43360:3:58","nodeType":"YulLiteral","src":"43360:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"43369:1:58","nodeType":"YulLiteral","src":"43369:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43365:3:58","nodeType":"YulIdentifier","src":"43365:3:58"},"nativeSrc":"43365:6:58","nodeType":"YulFunctionCall","src":"43365:6:58"}],"functionName":{"name":"shl","nativeSrc":"43356:3:58","nodeType":"YulIdentifier","src":"43356:3:58"},"nativeSrc":"43356:16:58","nodeType":"YulFunctionCall","src":"43356:16:58"}],"functionName":{"name":"and","nativeSrc":"43345:3:58","nodeType":"YulIdentifier","src":"43345:3:58"},"nativeSrc":"43345:28:58","nodeType":"YulFunctionCall","src":"43345:28:58"},"variableNames":[{"name":"value","nativeSrc":"43336:5:58","nodeType":"YulIdentifier","src":"43336:5:58"}]},{"nativeSrc":"43386:62:58","nodeType":"YulAssignment","src":"43386:62:58","value":{"arguments":[{"name":"self","nativeSrc":"43400:4:58","nodeType":"YulIdentifier","src":"43400:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43414:1:58","nodeType":"YulLiteral","src":"43414:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"43417:6:58","nodeType":"YulIdentifier","src":"43417:6:58"}],"functionName":{"name":"mul","nativeSrc":"43410:3:58","nodeType":"YulIdentifier","src":"43410:3:58"},"nativeSrc":"43410:14:58","nodeType":"YulFunctionCall","src":"43410:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"43430:8:58","nodeType":"YulIdentifier","src":"43430:8:58"},{"name":"value","nativeSrc":"43440:5:58","nodeType":"YulIdentifier","src":"43440:5:58"}],"functionName":{"name":"xor","nativeSrc":"43426:3:58","nodeType":"YulIdentifier","src":"43426:3:58"},"nativeSrc":"43426:20:58","nodeType":"YulFunctionCall","src":"43426:20:58"}],"functionName":{"name":"shr","nativeSrc":"43406:3:58","nodeType":"YulIdentifier","src":"43406:3:58"},"nativeSrc":"43406:41:58","nodeType":"YulFunctionCall","src":"43406:41:58"}],"functionName":{"name":"xor","nativeSrc":"43396:3:58","nodeType":"YulIdentifier","src":"43396:3:58"},"nativeSrc":"43396:52:58","nodeType":"YulFunctionCall","src":"43396:52:58"},"variableNames":[{"name":"result","nativeSrc":"43386:6:58","nodeType":"YulIdentifier","src":"43386:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14960,"isOffset":false,"isSlot":false,"src":"43417:6:58","valueSize":1},{"declaration":14966,"isOffset":false,"isSlot":false,"src":"43430:8:58","valueSize":1},{"declaration":14963,"isOffset":false,"isSlot":false,"src":"43386:6:58","valueSize":1},{"declaration":14956,"isOffset":false,"isSlot":false,"src":"43400:4:58","valueSize":1},{"declaration":14958,"isOffset":false,"isSlot":false,"src":"43336:5:58","valueSize":1},{"declaration":14958,"isOffset":false,"isSlot":false,"src":"43349:5:58","valueSize":1},{"declaration":14958,"isOffset":false,"isSlot":false,"src":"43440:5:58","valueSize":1}],"flags":["memory-safe"],"id":14972,"nodeType":"InlineAssembly","src":"43297:161:58"}]},"id":14974,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_12","nameLocation":"43135:13:58","nodeType":"FunctionDefinition","parameters":{"id":14961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14956,"mutability":"mutable","name":"self","nameLocation":"43157:4:58","nodeType":"VariableDeclaration","scope":14974,"src":"43149:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14955,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43149:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14958,"mutability":"mutable","name":"value","nameLocation":"43171:5:58","nodeType":"VariableDeclaration","scope":14974,"src":"43163:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":14957,"name":"bytes12","nodeType":"ElementaryTypeName","src":"43163:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":14960,"mutability":"mutable","name":"offset","nameLocation":"43184:6:58","nodeType":"VariableDeclaration","scope":14974,"src":"43178:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14959,"name":"uint8","nodeType":"ElementaryTypeName","src":"43178:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43148:43:58"},"returnParameters":{"id":14964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14963,"mutability":"mutable","name":"result","nameLocation":"43223:6:58","nodeType":"VariableDeclaration","scope":14974,"src":"43215:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14962,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43215:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"43214:16:58"},"scope":16305,"src":"43126:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14991,"nodeType":"Block","src":"43560:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14983,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14978,"src":"43574:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":14984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43583:1:58","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"43574:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14989,"nodeType":"IfStatement","src":"43570:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":14986,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"43593:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":14987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43593:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14988,"nodeType":"RevertStatement","src":"43586:25:58"}},{"AST":{"nativeSrc":"43646:82:58","nodeType":"YulBlock","src":"43646:82:58","statements":[{"nativeSrc":"43660:58:58","nodeType":"YulAssignment","src":"43660:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43682:1:58","nodeType":"YulLiteral","src":"43682:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"43685:6:58","nodeType":"YulIdentifier","src":"43685:6:58"}],"functionName":{"name":"mul","nativeSrc":"43678:3:58","nodeType":"YulIdentifier","src":"43678:3:58"},"nativeSrc":"43678:14:58","nodeType":"YulFunctionCall","src":"43678:14:58"},{"name":"self","nativeSrc":"43694:4:58","nodeType":"YulIdentifier","src":"43694:4:58"}],"functionName":{"name":"shl","nativeSrc":"43674:3:58","nodeType":"YulIdentifier","src":"43674:3:58"},"nativeSrc":"43674:25:58","nodeType":"YulFunctionCall","src":"43674:25:58"},{"arguments":[{"kind":"number","nativeSrc":"43705:3:58","nodeType":"YulLiteral","src":"43705:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"43714:1:58","nodeType":"YulLiteral","src":"43714:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43710:3:58","nodeType":"YulIdentifier","src":"43710:3:58"},"nativeSrc":"43710:6:58","nodeType":"YulFunctionCall","src":"43710:6:58"}],"functionName":{"name":"shl","nativeSrc":"43701:3:58","nodeType":"YulIdentifier","src":"43701:3:58"},"nativeSrc":"43701:16:58","nodeType":"YulFunctionCall","src":"43701:16:58"}],"functionName":{"name":"and","nativeSrc":"43670:3:58","nodeType":"YulIdentifier","src":"43670:3:58"},"nativeSrc":"43670:48:58","nodeType":"YulFunctionCall","src":"43670:48:58"},"variableNames":[{"name":"result","nativeSrc":"43660:6:58","nodeType":"YulIdentifier","src":"43660:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14978,"isOffset":false,"isSlot":false,"src":"43685:6:58","valueSize":1},{"declaration":14981,"isOffset":false,"isSlot":false,"src":"43660:6:58","valueSize":1},{"declaration":14976,"isOffset":false,"isSlot":false,"src":"43694:4:58","valueSize":1}],"flags":["memory-safe"],"id":14990,"nodeType":"InlineAssembly","src":"43621:107:58"}]},"id":14992,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_16","nameLocation":"43479:13:58","nodeType":"FunctionDefinition","parameters":{"id":14979,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14976,"mutability":"mutable","name":"self","nameLocation":"43501:4:58","nodeType":"VariableDeclaration","scope":14992,"src":"43493:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14975,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43493:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14978,"mutability":"mutable","name":"offset","nameLocation":"43513:6:58","nodeType":"VariableDeclaration","scope":14992,"src":"43507:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14977,"name":"uint8","nodeType":"ElementaryTypeName","src":"43507:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43492:28:58"},"returnParameters":{"id":14982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14981,"mutability":"mutable","name":"result","nameLocation":"43552:6:58","nodeType":"VariableDeclaration","scope":14992,"src":"43544:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14980,"name":"bytes16","nodeType":"ElementaryTypeName","src":"43544:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"43543:16:58"},"scope":16305,"src":"43470:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15011,"nodeType":"Block","src":"43845:233:58","statements":[{"assignments":[15004],"declarations":[{"constant":false,"id":15004,"mutability":"mutable","name":"oldValue","nameLocation":"43863:8:58","nodeType":"VariableDeclaration","scope":15011,"src":"43855:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15003,"name":"bytes16","nodeType":"ElementaryTypeName","src":"43855:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":15009,"initialValue":{"arguments":[{"id":15006,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14994,"src":"43888:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":15007,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14998,"src":"43894:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15005,"name":"extract_22_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14992,"src":"43874:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes22,uint8) pure returns (bytes16)"}},"id":15008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43874:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"43855:46:58"},{"AST":{"nativeSrc":"43936:136:58","nodeType":"YulBlock","src":"43936:136:58","statements":[{"nativeSrc":"43950:37:58","nodeType":"YulAssignment","src":"43950:37:58","value":{"arguments":[{"name":"value","nativeSrc":"43963:5:58","nodeType":"YulIdentifier","src":"43963:5:58"},{"arguments":[{"kind":"number","nativeSrc":"43974:3:58","nodeType":"YulLiteral","src":"43974:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"43983:1:58","nodeType":"YulLiteral","src":"43983:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43979:3:58","nodeType":"YulIdentifier","src":"43979:3:58"},"nativeSrc":"43979:6:58","nodeType":"YulFunctionCall","src":"43979:6:58"}],"functionName":{"name":"shl","nativeSrc":"43970:3:58","nodeType":"YulIdentifier","src":"43970:3:58"},"nativeSrc":"43970:16:58","nodeType":"YulFunctionCall","src":"43970:16:58"}],"functionName":{"name":"and","nativeSrc":"43959:3:58","nodeType":"YulIdentifier","src":"43959:3:58"},"nativeSrc":"43959:28:58","nodeType":"YulFunctionCall","src":"43959:28:58"},"variableNames":[{"name":"value","nativeSrc":"43950:5:58","nodeType":"YulIdentifier","src":"43950:5:58"}]},{"nativeSrc":"44000:62:58","nodeType":"YulAssignment","src":"44000:62:58","value":{"arguments":[{"name":"self","nativeSrc":"44014:4:58","nodeType":"YulIdentifier","src":"44014:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44028:1:58","nodeType":"YulLiteral","src":"44028:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"44031:6:58","nodeType":"YulIdentifier","src":"44031:6:58"}],"functionName":{"name":"mul","nativeSrc":"44024:3:58","nodeType":"YulIdentifier","src":"44024:3:58"},"nativeSrc":"44024:14:58","nodeType":"YulFunctionCall","src":"44024:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"44044:8:58","nodeType":"YulIdentifier","src":"44044:8:58"},{"name":"value","nativeSrc":"44054:5:58","nodeType":"YulIdentifier","src":"44054:5:58"}],"functionName":{"name":"xor","nativeSrc":"44040:3:58","nodeType":"YulIdentifier","src":"44040:3:58"},"nativeSrc":"44040:20:58","nodeType":"YulFunctionCall","src":"44040:20:58"}],"functionName":{"name":"shr","nativeSrc":"44020:3:58","nodeType":"YulIdentifier","src":"44020:3:58"},"nativeSrc":"44020:41:58","nodeType":"YulFunctionCall","src":"44020:41:58"}],"functionName":{"name":"xor","nativeSrc":"44010:3:58","nodeType":"YulIdentifier","src":"44010:3:58"},"nativeSrc":"44010:52:58","nodeType":"YulFunctionCall","src":"44010:52:58"},"variableNames":[{"name":"result","nativeSrc":"44000:6:58","nodeType":"YulIdentifier","src":"44000:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":14998,"isOffset":false,"isSlot":false,"src":"44031:6:58","valueSize":1},{"declaration":15004,"isOffset":false,"isSlot":false,"src":"44044:8:58","valueSize":1},{"declaration":15001,"isOffset":false,"isSlot":false,"src":"44000:6:58","valueSize":1},{"declaration":14994,"isOffset":false,"isSlot":false,"src":"44014:4:58","valueSize":1},{"declaration":14996,"isOffset":false,"isSlot":false,"src":"43950:5:58","valueSize":1},{"declaration":14996,"isOffset":false,"isSlot":false,"src":"43963:5:58","valueSize":1},{"declaration":14996,"isOffset":false,"isSlot":false,"src":"44054:5:58","valueSize":1}],"flags":["memory-safe"],"id":15010,"nodeType":"InlineAssembly","src":"43911:161:58"}]},"id":15012,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_16","nameLocation":"43749:13:58","nodeType":"FunctionDefinition","parameters":{"id":14999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14994,"mutability":"mutable","name":"self","nameLocation":"43771:4:58","nodeType":"VariableDeclaration","scope":15012,"src":"43763:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":14993,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43763:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":14996,"mutability":"mutable","name":"value","nameLocation":"43785:5:58","nodeType":"VariableDeclaration","scope":15012,"src":"43777:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":14995,"name":"bytes16","nodeType":"ElementaryTypeName","src":"43777:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":14998,"mutability":"mutable","name":"offset","nameLocation":"43798:6:58","nodeType":"VariableDeclaration","scope":15012,"src":"43792:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14997,"name":"uint8","nodeType":"ElementaryTypeName","src":"43792:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43762:43:58"},"returnParameters":{"id":15002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15001,"mutability":"mutable","name":"result","nameLocation":"43837:6:58","nodeType":"VariableDeclaration","scope":15012,"src":"43829:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15000,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43829:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"43828:16:58"},"scope":16305,"src":"43740:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15029,"nodeType":"Block","src":"44174:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15021,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15016,"src":"44188:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":15022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44197:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"44188:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15027,"nodeType":"IfStatement","src":"44184:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15024,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"44207:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44207:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15026,"nodeType":"RevertStatement","src":"44200:25:58"}},{"AST":{"nativeSrc":"44260:81:58","nodeType":"YulBlock","src":"44260:81:58","statements":[{"nativeSrc":"44274:57:58","nodeType":"YulAssignment","src":"44274:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44296:1:58","nodeType":"YulLiteral","src":"44296:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"44299:6:58","nodeType":"YulIdentifier","src":"44299:6:58"}],"functionName":{"name":"mul","nativeSrc":"44292:3:58","nodeType":"YulIdentifier","src":"44292:3:58"},"nativeSrc":"44292:14:58","nodeType":"YulFunctionCall","src":"44292:14:58"},{"name":"self","nativeSrc":"44308:4:58","nodeType":"YulIdentifier","src":"44308:4:58"}],"functionName":{"name":"shl","nativeSrc":"44288:3:58","nodeType":"YulIdentifier","src":"44288:3:58"},"nativeSrc":"44288:25:58","nodeType":"YulFunctionCall","src":"44288:25:58"},{"arguments":[{"kind":"number","nativeSrc":"44319:2:58","nodeType":"YulLiteral","src":"44319:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"44327:1:58","nodeType":"YulLiteral","src":"44327:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"44323:3:58","nodeType":"YulIdentifier","src":"44323:3:58"},"nativeSrc":"44323:6:58","nodeType":"YulFunctionCall","src":"44323:6:58"}],"functionName":{"name":"shl","nativeSrc":"44315:3:58","nodeType":"YulIdentifier","src":"44315:3:58"},"nativeSrc":"44315:15:58","nodeType":"YulFunctionCall","src":"44315:15:58"}],"functionName":{"name":"and","nativeSrc":"44284:3:58","nodeType":"YulIdentifier","src":"44284:3:58"},"nativeSrc":"44284:47:58","nodeType":"YulFunctionCall","src":"44284:47:58"},"variableNames":[{"name":"result","nativeSrc":"44274:6:58","nodeType":"YulIdentifier","src":"44274:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15016,"isOffset":false,"isSlot":false,"src":"44299:6:58","valueSize":1},{"declaration":15019,"isOffset":false,"isSlot":false,"src":"44274:6:58","valueSize":1},{"declaration":15014,"isOffset":false,"isSlot":false,"src":"44308:4:58","valueSize":1}],"flags":["memory-safe"],"id":15028,"nodeType":"InlineAssembly","src":"44235:106:58"}]},"id":15030,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_20","nameLocation":"44093:13:58","nodeType":"FunctionDefinition","parameters":{"id":15017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15014,"mutability":"mutable","name":"self","nameLocation":"44115:4:58","nodeType":"VariableDeclaration","scope":15030,"src":"44107:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15013,"name":"bytes22","nodeType":"ElementaryTypeName","src":"44107:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":15016,"mutability":"mutable","name":"offset","nameLocation":"44127:6:58","nodeType":"VariableDeclaration","scope":15030,"src":"44121:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15015,"name":"uint8","nodeType":"ElementaryTypeName","src":"44121:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44106:28:58"},"returnParameters":{"id":15020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15019,"mutability":"mutable","name":"result","nameLocation":"44166:6:58","nodeType":"VariableDeclaration","scope":15030,"src":"44158:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15018,"name":"bytes20","nodeType":"ElementaryTypeName","src":"44158:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"44157:16:58"},"scope":16305,"src":"44084:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15049,"nodeType":"Block","src":"44458:232:58","statements":[{"assignments":[15042],"declarations":[{"constant":false,"id":15042,"mutability":"mutable","name":"oldValue","nameLocation":"44476:8:58","nodeType":"VariableDeclaration","scope":15049,"src":"44468:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15041,"name":"bytes20","nodeType":"ElementaryTypeName","src":"44468:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":15047,"initialValue":{"arguments":[{"id":15044,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15032,"src":"44501:4:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":15045,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15036,"src":"44507:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15043,"name":"extract_22_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15030,"src":"44487:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes22,uint8) pure returns (bytes20)"}},"id":15046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44487:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"44468:46:58"},{"AST":{"nativeSrc":"44549:135:58","nodeType":"YulBlock","src":"44549:135:58","statements":[{"nativeSrc":"44563:36:58","nodeType":"YulAssignment","src":"44563:36:58","value":{"arguments":[{"name":"value","nativeSrc":"44576:5:58","nodeType":"YulIdentifier","src":"44576:5:58"},{"arguments":[{"kind":"number","nativeSrc":"44587:2:58","nodeType":"YulLiteral","src":"44587:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"44595:1:58","nodeType":"YulLiteral","src":"44595:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"44591:3:58","nodeType":"YulIdentifier","src":"44591:3:58"},"nativeSrc":"44591:6:58","nodeType":"YulFunctionCall","src":"44591:6:58"}],"functionName":{"name":"shl","nativeSrc":"44583:3:58","nodeType":"YulIdentifier","src":"44583:3:58"},"nativeSrc":"44583:15:58","nodeType":"YulFunctionCall","src":"44583:15:58"}],"functionName":{"name":"and","nativeSrc":"44572:3:58","nodeType":"YulIdentifier","src":"44572:3:58"},"nativeSrc":"44572:27:58","nodeType":"YulFunctionCall","src":"44572:27:58"},"variableNames":[{"name":"value","nativeSrc":"44563:5:58","nodeType":"YulIdentifier","src":"44563:5:58"}]},{"nativeSrc":"44612:62:58","nodeType":"YulAssignment","src":"44612:62:58","value":{"arguments":[{"name":"self","nativeSrc":"44626:4:58","nodeType":"YulIdentifier","src":"44626:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44640:1:58","nodeType":"YulLiteral","src":"44640:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"44643:6:58","nodeType":"YulIdentifier","src":"44643:6:58"}],"functionName":{"name":"mul","nativeSrc":"44636:3:58","nodeType":"YulIdentifier","src":"44636:3:58"},"nativeSrc":"44636:14:58","nodeType":"YulFunctionCall","src":"44636:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"44656:8:58","nodeType":"YulIdentifier","src":"44656:8:58"},{"name":"value","nativeSrc":"44666:5:58","nodeType":"YulIdentifier","src":"44666:5:58"}],"functionName":{"name":"xor","nativeSrc":"44652:3:58","nodeType":"YulIdentifier","src":"44652:3:58"},"nativeSrc":"44652:20:58","nodeType":"YulFunctionCall","src":"44652:20:58"}],"functionName":{"name":"shr","nativeSrc":"44632:3:58","nodeType":"YulIdentifier","src":"44632:3:58"},"nativeSrc":"44632:41:58","nodeType":"YulFunctionCall","src":"44632:41:58"}],"functionName":{"name":"xor","nativeSrc":"44622:3:58","nodeType":"YulIdentifier","src":"44622:3:58"},"nativeSrc":"44622:52:58","nodeType":"YulFunctionCall","src":"44622:52:58"},"variableNames":[{"name":"result","nativeSrc":"44612:6:58","nodeType":"YulIdentifier","src":"44612:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15036,"isOffset":false,"isSlot":false,"src":"44643:6:58","valueSize":1},{"declaration":15042,"isOffset":false,"isSlot":false,"src":"44656:8:58","valueSize":1},{"declaration":15039,"isOffset":false,"isSlot":false,"src":"44612:6:58","valueSize":1},{"declaration":15032,"isOffset":false,"isSlot":false,"src":"44626:4:58","valueSize":1},{"declaration":15034,"isOffset":false,"isSlot":false,"src":"44563:5:58","valueSize":1},{"declaration":15034,"isOffset":false,"isSlot":false,"src":"44576:5:58","valueSize":1},{"declaration":15034,"isOffset":false,"isSlot":false,"src":"44666:5:58","valueSize":1}],"flags":["memory-safe"],"id":15048,"nodeType":"InlineAssembly","src":"44524:160:58"}]},"id":15050,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_20","nameLocation":"44362:13:58","nodeType":"FunctionDefinition","parameters":{"id":15037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15032,"mutability":"mutable","name":"self","nameLocation":"44384:4:58","nodeType":"VariableDeclaration","scope":15050,"src":"44376:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15031,"name":"bytes22","nodeType":"ElementaryTypeName","src":"44376:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":15034,"mutability":"mutable","name":"value","nameLocation":"44398:5:58","nodeType":"VariableDeclaration","scope":15050,"src":"44390:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15033,"name":"bytes20","nodeType":"ElementaryTypeName","src":"44390:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":15036,"mutability":"mutable","name":"offset","nameLocation":"44411:6:58","nodeType":"VariableDeclaration","scope":15050,"src":"44405:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15035,"name":"uint8","nodeType":"ElementaryTypeName","src":"44405:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44375:43:58"},"returnParameters":{"id":15040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15039,"mutability":"mutable","name":"result","nameLocation":"44450:6:58","nodeType":"VariableDeclaration","scope":15050,"src":"44442:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15038,"name":"bytes22","nodeType":"ElementaryTypeName","src":"44442:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"44441:16:58"},"scope":16305,"src":"44353:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15067,"nodeType":"Block","src":"44784:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15059,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15054,"src":"44798:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3233","id":15060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44807:2:58","typeDescriptions":{"typeIdentifier":"t_rational_23_by_1","typeString":"int_const 23"},"value":"23"},"src":"44798:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15065,"nodeType":"IfStatement","src":"44794:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15062,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"44818:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44818:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15064,"nodeType":"RevertStatement","src":"44811:25:58"}},{"AST":{"nativeSrc":"44871:82:58","nodeType":"YulBlock","src":"44871:82:58","statements":[{"nativeSrc":"44885:58:58","nodeType":"YulAssignment","src":"44885:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44907:1:58","nodeType":"YulLiteral","src":"44907:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"44910:6:58","nodeType":"YulIdentifier","src":"44910:6:58"}],"functionName":{"name":"mul","nativeSrc":"44903:3:58","nodeType":"YulIdentifier","src":"44903:3:58"},"nativeSrc":"44903:14:58","nodeType":"YulFunctionCall","src":"44903:14:58"},{"name":"self","nativeSrc":"44919:4:58","nodeType":"YulIdentifier","src":"44919:4:58"}],"functionName":{"name":"shl","nativeSrc":"44899:3:58","nodeType":"YulIdentifier","src":"44899:3:58"},"nativeSrc":"44899:25:58","nodeType":"YulFunctionCall","src":"44899:25:58"},{"arguments":[{"kind":"number","nativeSrc":"44930:3:58","nodeType":"YulLiteral","src":"44930:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"44939:1:58","nodeType":"YulLiteral","src":"44939:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"44935:3:58","nodeType":"YulIdentifier","src":"44935:3:58"},"nativeSrc":"44935:6:58","nodeType":"YulFunctionCall","src":"44935:6:58"}],"functionName":{"name":"shl","nativeSrc":"44926:3:58","nodeType":"YulIdentifier","src":"44926:3:58"},"nativeSrc":"44926:16:58","nodeType":"YulFunctionCall","src":"44926:16:58"}],"functionName":{"name":"and","nativeSrc":"44895:3:58","nodeType":"YulIdentifier","src":"44895:3:58"},"nativeSrc":"44895:48:58","nodeType":"YulFunctionCall","src":"44895:48:58"},"variableNames":[{"name":"result","nativeSrc":"44885:6:58","nodeType":"YulIdentifier","src":"44885:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15054,"isOffset":false,"isSlot":false,"src":"44910:6:58","valueSize":1},{"declaration":15057,"isOffset":false,"isSlot":false,"src":"44885:6:58","valueSize":1},{"declaration":15052,"isOffset":false,"isSlot":false,"src":"44919:4:58","valueSize":1}],"flags":["memory-safe"],"id":15066,"nodeType":"InlineAssembly","src":"44846:107:58"}]},"id":15068,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_1","nameLocation":"44705:12:58","nodeType":"FunctionDefinition","parameters":{"id":15055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15052,"mutability":"mutable","name":"self","nameLocation":"44726:4:58","nodeType":"VariableDeclaration","scope":15068,"src":"44718:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15051,"name":"bytes24","nodeType":"ElementaryTypeName","src":"44718:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15054,"mutability":"mutable","name":"offset","nameLocation":"44738:6:58","nodeType":"VariableDeclaration","scope":15068,"src":"44732:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15053,"name":"uint8","nodeType":"ElementaryTypeName","src":"44732:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44717:28:58"},"returnParameters":{"id":15058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15057,"mutability":"mutable","name":"result","nameLocation":"44776:6:58","nodeType":"VariableDeclaration","scope":15068,"src":"44769:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15056,"name":"bytes1","nodeType":"ElementaryTypeName","src":"44769:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"44768:15:58"},"scope":16305,"src":"44696:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15087,"nodeType":"Block","src":"45068:231:58","statements":[{"assignments":[15080],"declarations":[{"constant":false,"id":15080,"mutability":"mutable","name":"oldValue","nameLocation":"45085:8:58","nodeType":"VariableDeclaration","scope":15087,"src":"45078:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15079,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45078:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":15085,"initialValue":{"arguments":[{"id":15082,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15070,"src":"45109:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15083,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15074,"src":"45115:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15081,"name":"extract_24_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15068,"src":"45096:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes24,uint8) pure returns (bytes1)"}},"id":15084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45096:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"45078:44:58"},{"AST":{"nativeSrc":"45157:136:58","nodeType":"YulBlock","src":"45157:136:58","statements":[{"nativeSrc":"45171:37:58","nodeType":"YulAssignment","src":"45171:37:58","value":{"arguments":[{"name":"value","nativeSrc":"45184:5:58","nodeType":"YulIdentifier","src":"45184:5:58"},{"arguments":[{"kind":"number","nativeSrc":"45195:3:58","nodeType":"YulLiteral","src":"45195:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"45204:1:58","nodeType":"YulLiteral","src":"45204:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45200:3:58","nodeType":"YulIdentifier","src":"45200:3:58"},"nativeSrc":"45200:6:58","nodeType":"YulFunctionCall","src":"45200:6:58"}],"functionName":{"name":"shl","nativeSrc":"45191:3:58","nodeType":"YulIdentifier","src":"45191:3:58"},"nativeSrc":"45191:16:58","nodeType":"YulFunctionCall","src":"45191:16:58"}],"functionName":{"name":"and","nativeSrc":"45180:3:58","nodeType":"YulIdentifier","src":"45180:3:58"},"nativeSrc":"45180:28:58","nodeType":"YulFunctionCall","src":"45180:28:58"},"variableNames":[{"name":"value","nativeSrc":"45171:5:58","nodeType":"YulIdentifier","src":"45171:5:58"}]},{"nativeSrc":"45221:62:58","nodeType":"YulAssignment","src":"45221:62:58","value":{"arguments":[{"name":"self","nativeSrc":"45235:4:58","nodeType":"YulIdentifier","src":"45235:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45249:1:58","nodeType":"YulLiteral","src":"45249:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"45252:6:58","nodeType":"YulIdentifier","src":"45252:6:58"}],"functionName":{"name":"mul","nativeSrc":"45245:3:58","nodeType":"YulIdentifier","src":"45245:3:58"},"nativeSrc":"45245:14:58","nodeType":"YulFunctionCall","src":"45245:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"45265:8:58","nodeType":"YulIdentifier","src":"45265:8:58"},{"name":"value","nativeSrc":"45275:5:58","nodeType":"YulIdentifier","src":"45275:5:58"}],"functionName":{"name":"xor","nativeSrc":"45261:3:58","nodeType":"YulIdentifier","src":"45261:3:58"},"nativeSrc":"45261:20:58","nodeType":"YulFunctionCall","src":"45261:20:58"}],"functionName":{"name":"shr","nativeSrc":"45241:3:58","nodeType":"YulIdentifier","src":"45241:3:58"},"nativeSrc":"45241:41:58","nodeType":"YulFunctionCall","src":"45241:41:58"}],"functionName":{"name":"xor","nativeSrc":"45231:3:58","nodeType":"YulIdentifier","src":"45231:3:58"},"nativeSrc":"45231:52:58","nodeType":"YulFunctionCall","src":"45231:52:58"},"variableNames":[{"name":"result","nativeSrc":"45221:6:58","nodeType":"YulIdentifier","src":"45221:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15074,"isOffset":false,"isSlot":false,"src":"45252:6:58","valueSize":1},{"declaration":15080,"isOffset":false,"isSlot":false,"src":"45265:8:58","valueSize":1},{"declaration":15077,"isOffset":false,"isSlot":false,"src":"45221:6:58","valueSize":1},{"declaration":15070,"isOffset":false,"isSlot":false,"src":"45235:4:58","valueSize":1},{"declaration":15072,"isOffset":false,"isSlot":false,"src":"45171:5:58","valueSize":1},{"declaration":15072,"isOffset":false,"isSlot":false,"src":"45184:5:58","valueSize":1},{"declaration":15072,"isOffset":false,"isSlot":false,"src":"45275:5:58","valueSize":1}],"flags":["memory-safe"],"id":15086,"nodeType":"InlineAssembly","src":"45132:161:58"}]},"id":15088,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_1","nameLocation":"44974:12:58","nodeType":"FunctionDefinition","parameters":{"id":15075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15070,"mutability":"mutable","name":"self","nameLocation":"44995:4:58","nodeType":"VariableDeclaration","scope":15088,"src":"44987:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15069,"name":"bytes24","nodeType":"ElementaryTypeName","src":"44987:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15072,"mutability":"mutable","name":"value","nameLocation":"45008:5:58","nodeType":"VariableDeclaration","scope":15088,"src":"45001:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15071,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45001:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":15074,"mutability":"mutable","name":"offset","nameLocation":"45021:6:58","nodeType":"VariableDeclaration","scope":15088,"src":"45015:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15073,"name":"uint8","nodeType":"ElementaryTypeName","src":"45015:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44986:42:58"},"returnParameters":{"id":15078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15077,"mutability":"mutable","name":"result","nameLocation":"45060:6:58","nodeType":"VariableDeclaration","scope":15088,"src":"45052:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15076,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45052:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"45051:16:58"},"scope":16305,"src":"44965:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15105,"nodeType":"Block","src":"45393:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15097,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15092,"src":"45407:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3232","id":15098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45416:2:58","typeDescriptions":{"typeIdentifier":"t_rational_22_by_1","typeString":"int_const 22"},"value":"22"},"src":"45407:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15103,"nodeType":"IfStatement","src":"45403:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15100,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"45427:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45427:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15102,"nodeType":"RevertStatement","src":"45420:25:58"}},{"AST":{"nativeSrc":"45480:82:58","nodeType":"YulBlock","src":"45480:82:58","statements":[{"nativeSrc":"45494:58:58","nodeType":"YulAssignment","src":"45494:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45516:1:58","nodeType":"YulLiteral","src":"45516:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"45519:6:58","nodeType":"YulIdentifier","src":"45519:6:58"}],"functionName":{"name":"mul","nativeSrc":"45512:3:58","nodeType":"YulIdentifier","src":"45512:3:58"},"nativeSrc":"45512:14:58","nodeType":"YulFunctionCall","src":"45512:14:58"},{"name":"self","nativeSrc":"45528:4:58","nodeType":"YulIdentifier","src":"45528:4:58"}],"functionName":{"name":"shl","nativeSrc":"45508:3:58","nodeType":"YulIdentifier","src":"45508:3:58"},"nativeSrc":"45508:25:58","nodeType":"YulFunctionCall","src":"45508:25:58"},{"arguments":[{"kind":"number","nativeSrc":"45539:3:58","nodeType":"YulLiteral","src":"45539:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"45548:1:58","nodeType":"YulLiteral","src":"45548:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45544:3:58","nodeType":"YulIdentifier","src":"45544:3:58"},"nativeSrc":"45544:6:58","nodeType":"YulFunctionCall","src":"45544:6:58"}],"functionName":{"name":"shl","nativeSrc":"45535:3:58","nodeType":"YulIdentifier","src":"45535:3:58"},"nativeSrc":"45535:16:58","nodeType":"YulFunctionCall","src":"45535:16:58"}],"functionName":{"name":"and","nativeSrc":"45504:3:58","nodeType":"YulIdentifier","src":"45504:3:58"},"nativeSrc":"45504:48:58","nodeType":"YulFunctionCall","src":"45504:48:58"},"variableNames":[{"name":"result","nativeSrc":"45494:6:58","nodeType":"YulIdentifier","src":"45494:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15092,"isOffset":false,"isSlot":false,"src":"45519:6:58","valueSize":1},{"declaration":15095,"isOffset":false,"isSlot":false,"src":"45494:6:58","valueSize":1},{"declaration":15090,"isOffset":false,"isSlot":false,"src":"45528:4:58","valueSize":1}],"flags":["memory-safe"],"id":15104,"nodeType":"InlineAssembly","src":"45455:107:58"}]},"id":15106,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_2","nameLocation":"45314:12:58","nodeType":"FunctionDefinition","parameters":{"id":15093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15090,"mutability":"mutable","name":"self","nameLocation":"45335:4:58","nodeType":"VariableDeclaration","scope":15106,"src":"45327:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15089,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45327:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15092,"mutability":"mutable","name":"offset","nameLocation":"45347:6:58","nodeType":"VariableDeclaration","scope":15106,"src":"45341:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15091,"name":"uint8","nodeType":"ElementaryTypeName","src":"45341:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"45326:28:58"},"returnParameters":{"id":15096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15095,"mutability":"mutable","name":"result","nameLocation":"45385:6:58","nodeType":"VariableDeclaration","scope":15106,"src":"45378:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15094,"name":"bytes2","nodeType":"ElementaryTypeName","src":"45378:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"45377:15:58"},"scope":16305,"src":"45305:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15125,"nodeType":"Block","src":"45677:231:58","statements":[{"assignments":[15118],"declarations":[{"constant":false,"id":15118,"mutability":"mutable","name":"oldValue","nameLocation":"45694:8:58","nodeType":"VariableDeclaration","scope":15125,"src":"45687:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15117,"name":"bytes2","nodeType":"ElementaryTypeName","src":"45687:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":15123,"initialValue":{"arguments":[{"id":15120,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15108,"src":"45718:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15121,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15112,"src":"45724:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15119,"name":"extract_24_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15106,"src":"45705:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes24,uint8) pure returns (bytes2)"}},"id":15122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45705:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"45687:44:58"},{"AST":{"nativeSrc":"45766:136:58","nodeType":"YulBlock","src":"45766:136:58","statements":[{"nativeSrc":"45780:37:58","nodeType":"YulAssignment","src":"45780:37:58","value":{"arguments":[{"name":"value","nativeSrc":"45793:5:58","nodeType":"YulIdentifier","src":"45793:5:58"},{"arguments":[{"kind":"number","nativeSrc":"45804:3:58","nodeType":"YulLiteral","src":"45804:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"45813:1:58","nodeType":"YulLiteral","src":"45813:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45809:3:58","nodeType":"YulIdentifier","src":"45809:3:58"},"nativeSrc":"45809:6:58","nodeType":"YulFunctionCall","src":"45809:6:58"}],"functionName":{"name":"shl","nativeSrc":"45800:3:58","nodeType":"YulIdentifier","src":"45800:3:58"},"nativeSrc":"45800:16:58","nodeType":"YulFunctionCall","src":"45800:16:58"}],"functionName":{"name":"and","nativeSrc":"45789:3:58","nodeType":"YulIdentifier","src":"45789:3:58"},"nativeSrc":"45789:28:58","nodeType":"YulFunctionCall","src":"45789:28:58"},"variableNames":[{"name":"value","nativeSrc":"45780:5:58","nodeType":"YulIdentifier","src":"45780:5:58"}]},{"nativeSrc":"45830:62:58","nodeType":"YulAssignment","src":"45830:62:58","value":{"arguments":[{"name":"self","nativeSrc":"45844:4:58","nodeType":"YulIdentifier","src":"45844:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45858:1:58","nodeType":"YulLiteral","src":"45858:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"45861:6:58","nodeType":"YulIdentifier","src":"45861:6:58"}],"functionName":{"name":"mul","nativeSrc":"45854:3:58","nodeType":"YulIdentifier","src":"45854:3:58"},"nativeSrc":"45854:14:58","nodeType":"YulFunctionCall","src":"45854:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"45874:8:58","nodeType":"YulIdentifier","src":"45874:8:58"},{"name":"value","nativeSrc":"45884:5:58","nodeType":"YulIdentifier","src":"45884:5:58"}],"functionName":{"name":"xor","nativeSrc":"45870:3:58","nodeType":"YulIdentifier","src":"45870:3:58"},"nativeSrc":"45870:20:58","nodeType":"YulFunctionCall","src":"45870:20:58"}],"functionName":{"name":"shr","nativeSrc":"45850:3:58","nodeType":"YulIdentifier","src":"45850:3:58"},"nativeSrc":"45850:41:58","nodeType":"YulFunctionCall","src":"45850:41:58"}],"functionName":{"name":"xor","nativeSrc":"45840:3:58","nodeType":"YulIdentifier","src":"45840:3:58"},"nativeSrc":"45840:52:58","nodeType":"YulFunctionCall","src":"45840:52:58"},"variableNames":[{"name":"result","nativeSrc":"45830:6:58","nodeType":"YulIdentifier","src":"45830:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15112,"isOffset":false,"isSlot":false,"src":"45861:6:58","valueSize":1},{"declaration":15118,"isOffset":false,"isSlot":false,"src":"45874:8:58","valueSize":1},{"declaration":15115,"isOffset":false,"isSlot":false,"src":"45830:6:58","valueSize":1},{"declaration":15108,"isOffset":false,"isSlot":false,"src":"45844:4:58","valueSize":1},{"declaration":15110,"isOffset":false,"isSlot":false,"src":"45780:5:58","valueSize":1},{"declaration":15110,"isOffset":false,"isSlot":false,"src":"45793:5:58","valueSize":1},{"declaration":15110,"isOffset":false,"isSlot":false,"src":"45884:5:58","valueSize":1}],"flags":["memory-safe"],"id":15124,"nodeType":"InlineAssembly","src":"45741:161:58"}]},"id":15126,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_2","nameLocation":"45583:12:58","nodeType":"FunctionDefinition","parameters":{"id":15113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15108,"mutability":"mutable","name":"self","nameLocation":"45604:4:58","nodeType":"VariableDeclaration","scope":15126,"src":"45596:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15107,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45596:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15110,"mutability":"mutable","name":"value","nameLocation":"45617:5:58","nodeType":"VariableDeclaration","scope":15126,"src":"45610:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15109,"name":"bytes2","nodeType":"ElementaryTypeName","src":"45610:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":15112,"mutability":"mutable","name":"offset","nameLocation":"45630:6:58","nodeType":"VariableDeclaration","scope":15126,"src":"45624:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15111,"name":"uint8","nodeType":"ElementaryTypeName","src":"45624:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"45595:42:58"},"returnParameters":{"id":15116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15115,"mutability":"mutable","name":"result","nameLocation":"45669:6:58","nodeType":"VariableDeclaration","scope":15126,"src":"45661:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15114,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45661:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"45660:16:58"},"scope":16305,"src":"45574:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15143,"nodeType":"Block","src":"46002:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15135,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15130,"src":"46016:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":15136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46025:2:58","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"46016:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15141,"nodeType":"IfStatement","src":"46012:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15138,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"46036:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46036:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15140,"nodeType":"RevertStatement","src":"46029:25:58"}},{"AST":{"nativeSrc":"46089:82:58","nodeType":"YulBlock","src":"46089:82:58","statements":[{"nativeSrc":"46103:58:58","nodeType":"YulAssignment","src":"46103:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46125:1:58","nodeType":"YulLiteral","src":"46125:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"46128:6:58","nodeType":"YulIdentifier","src":"46128:6:58"}],"functionName":{"name":"mul","nativeSrc":"46121:3:58","nodeType":"YulIdentifier","src":"46121:3:58"},"nativeSrc":"46121:14:58","nodeType":"YulFunctionCall","src":"46121:14:58"},{"name":"self","nativeSrc":"46137:4:58","nodeType":"YulIdentifier","src":"46137:4:58"}],"functionName":{"name":"shl","nativeSrc":"46117:3:58","nodeType":"YulIdentifier","src":"46117:3:58"},"nativeSrc":"46117:25:58","nodeType":"YulFunctionCall","src":"46117:25:58"},{"arguments":[{"kind":"number","nativeSrc":"46148:3:58","nodeType":"YulLiteral","src":"46148:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"46157:1:58","nodeType":"YulLiteral","src":"46157:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46153:3:58","nodeType":"YulIdentifier","src":"46153:3:58"},"nativeSrc":"46153:6:58","nodeType":"YulFunctionCall","src":"46153:6:58"}],"functionName":{"name":"shl","nativeSrc":"46144:3:58","nodeType":"YulIdentifier","src":"46144:3:58"},"nativeSrc":"46144:16:58","nodeType":"YulFunctionCall","src":"46144:16:58"}],"functionName":{"name":"and","nativeSrc":"46113:3:58","nodeType":"YulIdentifier","src":"46113:3:58"},"nativeSrc":"46113:48:58","nodeType":"YulFunctionCall","src":"46113:48:58"},"variableNames":[{"name":"result","nativeSrc":"46103:6:58","nodeType":"YulIdentifier","src":"46103:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15130,"isOffset":false,"isSlot":false,"src":"46128:6:58","valueSize":1},{"declaration":15133,"isOffset":false,"isSlot":false,"src":"46103:6:58","valueSize":1},{"declaration":15128,"isOffset":false,"isSlot":false,"src":"46137:4:58","valueSize":1}],"flags":["memory-safe"],"id":15142,"nodeType":"InlineAssembly","src":"46064:107:58"}]},"id":15144,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_4","nameLocation":"45923:12:58","nodeType":"FunctionDefinition","parameters":{"id":15131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15128,"mutability":"mutable","name":"self","nameLocation":"45944:4:58","nodeType":"VariableDeclaration","scope":15144,"src":"45936:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15127,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45936:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15130,"mutability":"mutable","name":"offset","nameLocation":"45956:6:58","nodeType":"VariableDeclaration","scope":15144,"src":"45950:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15129,"name":"uint8","nodeType":"ElementaryTypeName","src":"45950:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"45935:28:58"},"returnParameters":{"id":15134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15133,"mutability":"mutable","name":"result","nameLocation":"45994:6:58","nodeType":"VariableDeclaration","scope":15144,"src":"45987:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15132,"name":"bytes4","nodeType":"ElementaryTypeName","src":"45987:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"45986:15:58"},"scope":16305,"src":"45914:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15163,"nodeType":"Block","src":"46286:231:58","statements":[{"assignments":[15156],"declarations":[{"constant":false,"id":15156,"mutability":"mutable","name":"oldValue","nameLocation":"46303:8:58","nodeType":"VariableDeclaration","scope":15163,"src":"46296:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15155,"name":"bytes4","nodeType":"ElementaryTypeName","src":"46296:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":15161,"initialValue":{"arguments":[{"id":15158,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15146,"src":"46327:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15159,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15150,"src":"46333:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15157,"name":"extract_24_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15144,"src":"46314:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes24,uint8) pure returns (bytes4)"}},"id":15160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46314:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"46296:44:58"},{"AST":{"nativeSrc":"46375:136:58","nodeType":"YulBlock","src":"46375:136:58","statements":[{"nativeSrc":"46389:37:58","nodeType":"YulAssignment","src":"46389:37:58","value":{"arguments":[{"name":"value","nativeSrc":"46402:5:58","nodeType":"YulIdentifier","src":"46402:5:58"},{"arguments":[{"kind":"number","nativeSrc":"46413:3:58","nodeType":"YulLiteral","src":"46413:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"46422:1:58","nodeType":"YulLiteral","src":"46422:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46418:3:58","nodeType":"YulIdentifier","src":"46418:3:58"},"nativeSrc":"46418:6:58","nodeType":"YulFunctionCall","src":"46418:6:58"}],"functionName":{"name":"shl","nativeSrc":"46409:3:58","nodeType":"YulIdentifier","src":"46409:3:58"},"nativeSrc":"46409:16:58","nodeType":"YulFunctionCall","src":"46409:16:58"}],"functionName":{"name":"and","nativeSrc":"46398:3:58","nodeType":"YulIdentifier","src":"46398:3:58"},"nativeSrc":"46398:28:58","nodeType":"YulFunctionCall","src":"46398:28:58"},"variableNames":[{"name":"value","nativeSrc":"46389:5:58","nodeType":"YulIdentifier","src":"46389:5:58"}]},{"nativeSrc":"46439:62:58","nodeType":"YulAssignment","src":"46439:62:58","value":{"arguments":[{"name":"self","nativeSrc":"46453:4:58","nodeType":"YulIdentifier","src":"46453:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46467:1:58","nodeType":"YulLiteral","src":"46467:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"46470:6:58","nodeType":"YulIdentifier","src":"46470:6:58"}],"functionName":{"name":"mul","nativeSrc":"46463:3:58","nodeType":"YulIdentifier","src":"46463:3:58"},"nativeSrc":"46463:14:58","nodeType":"YulFunctionCall","src":"46463:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"46483:8:58","nodeType":"YulIdentifier","src":"46483:8:58"},{"name":"value","nativeSrc":"46493:5:58","nodeType":"YulIdentifier","src":"46493:5:58"}],"functionName":{"name":"xor","nativeSrc":"46479:3:58","nodeType":"YulIdentifier","src":"46479:3:58"},"nativeSrc":"46479:20:58","nodeType":"YulFunctionCall","src":"46479:20:58"}],"functionName":{"name":"shr","nativeSrc":"46459:3:58","nodeType":"YulIdentifier","src":"46459:3:58"},"nativeSrc":"46459:41:58","nodeType":"YulFunctionCall","src":"46459:41:58"}],"functionName":{"name":"xor","nativeSrc":"46449:3:58","nodeType":"YulIdentifier","src":"46449:3:58"},"nativeSrc":"46449:52:58","nodeType":"YulFunctionCall","src":"46449:52:58"},"variableNames":[{"name":"result","nativeSrc":"46439:6:58","nodeType":"YulIdentifier","src":"46439:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15150,"isOffset":false,"isSlot":false,"src":"46470:6:58","valueSize":1},{"declaration":15156,"isOffset":false,"isSlot":false,"src":"46483:8:58","valueSize":1},{"declaration":15153,"isOffset":false,"isSlot":false,"src":"46439:6:58","valueSize":1},{"declaration":15146,"isOffset":false,"isSlot":false,"src":"46453:4:58","valueSize":1},{"declaration":15148,"isOffset":false,"isSlot":false,"src":"46389:5:58","valueSize":1},{"declaration":15148,"isOffset":false,"isSlot":false,"src":"46402:5:58","valueSize":1},{"declaration":15148,"isOffset":false,"isSlot":false,"src":"46493:5:58","valueSize":1}],"flags":["memory-safe"],"id":15162,"nodeType":"InlineAssembly","src":"46350:161:58"}]},"id":15164,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_4","nameLocation":"46192:12:58","nodeType":"FunctionDefinition","parameters":{"id":15151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15146,"mutability":"mutable","name":"self","nameLocation":"46213:4:58","nodeType":"VariableDeclaration","scope":15164,"src":"46205:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15145,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46205:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15148,"mutability":"mutable","name":"value","nameLocation":"46226:5:58","nodeType":"VariableDeclaration","scope":15164,"src":"46219:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15147,"name":"bytes4","nodeType":"ElementaryTypeName","src":"46219:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":15150,"mutability":"mutable","name":"offset","nameLocation":"46239:6:58","nodeType":"VariableDeclaration","scope":15164,"src":"46233:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15149,"name":"uint8","nodeType":"ElementaryTypeName","src":"46233:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"46204:42:58"},"returnParameters":{"id":15154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15153,"mutability":"mutable","name":"result","nameLocation":"46278:6:58","nodeType":"VariableDeclaration","scope":15164,"src":"46270:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15152,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46270:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"46269:16:58"},"scope":16305,"src":"46183:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15181,"nodeType":"Block","src":"46611:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15173,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15168,"src":"46625:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":15174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46634:2:58","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"46625:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15179,"nodeType":"IfStatement","src":"46621:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15176,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"46645:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15177,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46645:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15178,"nodeType":"RevertStatement","src":"46638:25:58"}},{"AST":{"nativeSrc":"46698:82:58","nodeType":"YulBlock","src":"46698:82:58","statements":[{"nativeSrc":"46712:58:58","nodeType":"YulAssignment","src":"46712:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46734:1:58","nodeType":"YulLiteral","src":"46734:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"46737:6:58","nodeType":"YulIdentifier","src":"46737:6:58"}],"functionName":{"name":"mul","nativeSrc":"46730:3:58","nodeType":"YulIdentifier","src":"46730:3:58"},"nativeSrc":"46730:14:58","nodeType":"YulFunctionCall","src":"46730:14:58"},{"name":"self","nativeSrc":"46746:4:58","nodeType":"YulIdentifier","src":"46746:4:58"}],"functionName":{"name":"shl","nativeSrc":"46726:3:58","nodeType":"YulIdentifier","src":"46726:3:58"},"nativeSrc":"46726:25:58","nodeType":"YulFunctionCall","src":"46726:25:58"},{"arguments":[{"kind":"number","nativeSrc":"46757:3:58","nodeType":"YulLiteral","src":"46757:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"46766:1:58","nodeType":"YulLiteral","src":"46766:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46762:3:58","nodeType":"YulIdentifier","src":"46762:3:58"},"nativeSrc":"46762:6:58","nodeType":"YulFunctionCall","src":"46762:6:58"}],"functionName":{"name":"shl","nativeSrc":"46753:3:58","nodeType":"YulIdentifier","src":"46753:3:58"},"nativeSrc":"46753:16:58","nodeType":"YulFunctionCall","src":"46753:16:58"}],"functionName":{"name":"and","nativeSrc":"46722:3:58","nodeType":"YulIdentifier","src":"46722:3:58"},"nativeSrc":"46722:48:58","nodeType":"YulFunctionCall","src":"46722:48:58"},"variableNames":[{"name":"result","nativeSrc":"46712:6:58","nodeType":"YulIdentifier","src":"46712:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15168,"isOffset":false,"isSlot":false,"src":"46737:6:58","valueSize":1},{"declaration":15171,"isOffset":false,"isSlot":false,"src":"46712:6:58","valueSize":1},{"declaration":15166,"isOffset":false,"isSlot":false,"src":"46746:4:58","valueSize":1}],"flags":["memory-safe"],"id":15180,"nodeType":"InlineAssembly","src":"46673:107:58"}]},"id":15182,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_6","nameLocation":"46532:12:58","nodeType":"FunctionDefinition","parameters":{"id":15169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15166,"mutability":"mutable","name":"self","nameLocation":"46553:4:58","nodeType":"VariableDeclaration","scope":15182,"src":"46545:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15165,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46545:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15168,"mutability":"mutable","name":"offset","nameLocation":"46565:6:58","nodeType":"VariableDeclaration","scope":15182,"src":"46559:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15167,"name":"uint8","nodeType":"ElementaryTypeName","src":"46559:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"46544:28:58"},"returnParameters":{"id":15172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15171,"mutability":"mutable","name":"result","nameLocation":"46603:6:58","nodeType":"VariableDeclaration","scope":15182,"src":"46596:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15170,"name":"bytes6","nodeType":"ElementaryTypeName","src":"46596:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"46595:15:58"},"scope":16305,"src":"46523:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15201,"nodeType":"Block","src":"46895:231:58","statements":[{"assignments":[15194],"declarations":[{"constant":false,"id":15194,"mutability":"mutable","name":"oldValue","nameLocation":"46912:8:58","nodeType":"VariableDeclaration","scope":15201,"src":"46905:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15193,"name":"bytes6","nodeType":"ElementaryTypeName","src":"46905:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":15199,"initialValue":{"arguments":[{"id":15196,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15184,"src":"46936:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15197,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15188,"src":"46942:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15195,"name":"extract_24_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15182,"src":"46923:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes24,uint8) pure returns (bytes6)"}},"id":15198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46923:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"46905:44:58"},{"AST":{"nativeSrc":"46984:136:58","nodeType":"YulBlock","src":"46984:136:58","statements":[{"nativeSrc":"46998:37:58","nodeType":"YulAssignment","src":"46998:37:58","value":{"arguments":[{"name":"value","nativeSrc":"47011:5:58","nodeType":"YulIdentifier","src":"47011:5:58"},{"arguments":[{"kind":"number","nativeSrc":"47022:3:58","nodeType":"YulLiteral","src":"47022:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"47031:1:58","nodeType":"YulLiteral","src":"47031:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47027:3:58","nodeType":"YulIdentifier","src":"47027:3:58"},"nativeSrc":"47027:6:58","nodeType":"YulFunctionCall","src":"47027:6:58"}],"functionName":{"name":"shl","nativeSrc":"47018:3:58","nodeType":"YulIdentifier","src":"47018:3:58"},"nativeSrc":"47018:16:58","nodeType":"YulFunctionCall","src":"47018:16:58"}],"functionName":{"name":"and","nativeSrc":"47007:3:58","nodeType":"YulIdentifier","src":"47007:3:58"},"nativeSrc":"47007:28:58","nodeType":"YulFunctionCall","src":"47007:28:58"},"variableNames":[{"name":"value","nativeSrc":"46998:5:58","nodeType":"YulIdentifier","src":"46998:5:58"}]},{"nativeSrc":"47048:62:58","nodeType":"YulAssignment","src":"47048:62:58","value":{"arguments":[{"name":"self","nativeSrc":"47062:4:58","nodeType":"YulIdentifier","src":"47062:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47076:1:58","nodeType":"YulLiteral","src":"47076:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"47079:6:58","nodeType":"YulIdentifier","src":"47079:6:58"}],"functionName":{"name":"mul","nativeSrc":"47072:3:58","nodeType":"YulIdentifier","src":"47072:3:58"},"nativeSrc":"47072:14:58","nodeType":"YulFunctionCall","src":"47072:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"47092:8:58","nodeType":"YulIdentifier","src":"47092:8:58"},{"name":"value","nativeSrc":"47102:5:58","nodeType":"YulIdentifier","src":"47102:5:58"}],"functionName":{"name":"xor","nativeSrc":"47088:3:58","nodeType":"YulIdentifier","src":"47088:3:58"},"nativeSrc":"47088:20:58","nodeType":"YulFunctionCall","src":"47088:20:58"}],"functionName":{"name":"shr","nativeSrc":"47068:3:58","nodeType":"YulIdentifier","src":"47068:3:58"},"nativeSrc":"47068:41:58","nodeType":"YulFunctionCall","src":"47068:41:58"}],"functionName":{"name":"xor","nativeSrc":"47058:3:58","nodeType":"YulIdentifier","src":"47058:3:58"},"nativeSrc":"47058:52:58","nodeType":"YulFunctionCall","src":"47058:52:58"},"variableNames":[{"name":"result","nativeSrc":"47048:6:58","nodeType":"YulIdentifier","src":"47048:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15188,"isOffset":false,"isSlot":false,"src":"47079:6:58","valueSize":1},{"declaration":15194,"isOffset":false,"isSlot":false,"src":"47092:8:58","valueSize":1},{"declaration":15191,"isOffset":false,"isSlot":false,"src":"47048:6:58","valueSize":1},{"declaration":15184,"isOffset":false,"isSlot":false,"src":"47062:4:58","valueSize":1},{"declaration":15186,"isOffset":false,"isSlot":false,"src":"46998:5:58","valueSize":1},{"declaration":15186,"isOffset":false,"isSlot":false,"src":"47011:5:58","valueSize":1},{"declaration":15186,"isOffset":false,"isSlot":false,"src":"47102:5:58","valueSize":1}],"flags":["memory-safe"],"id":15200,"nodeType":"InlineAssembly","src":"46959:161:58"}]},"id":15202,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_6","nameLocation":"46801:12:58","nodeType":"FunctionDefinition","parameters":{"id":15189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15184,"mutability":"mutable","name":"self","nameLocation":"46822:4:58","nodeType":"VariableDeclaration","scope":15202,"src":"46814:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15183,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46814:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15186,"mutability":"mutable","name":"value","nameLocation":"46835:5:58","nodeType":"VariableDeclaration","scope":15202,"src":"46828:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15185,"name":"bytes6","nodeType":"ElementaryTypeName","src":"46828:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":15188,"mutability":"mutable","name":"offset","nameLocation":"46848:6:58","nodeType":"VariableDeclaration","scope":15202,"src":"46842:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15187,"name":"uint8","nodeType":"ElementaryTypeName","src":"46842:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"46813:42:58"},"returnParameters":{"id":15192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15191,"mutability":"mutable","name":"result","nameLocation":"46887:6:58","nodeType":"VariableDeclaration","scope":15202,"src":"46879:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15190,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46879:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"46878:16:58"},"scope":16305,"src":"46792:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15219,"nodeType":"Block","src":"47220:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15211,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15206,"src":"47234:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":15212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47243:2:58","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"47234:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15217,"nodeType":"IfStatement","src":"47230:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15214,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"47254:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47254:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15216,"nodeType":"RevertStatement","src":"47247:25:58"}},{"AST":{"nativeSrc":"47307:82:58","nodeType":"YulBlock","src":"47307:82:58","statements":[{"nativeSrc":"47321:58:58","nodeType":"YulAssignment","src":"47321:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47343:1:58","nodeType":"YulLiteral","src":"47343:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"47346:6:58","nodeType":"YulIdentifier","src":"47346:6:58"}],"functionName":{"name":"mul","nativeSrc":"47339:3:58","nodeType":"YulIdentifier","src":"47339:3:58"},"nativeSrc":"47339:14:58","nodeType":"YulFunctionCall","src":"47339:14:58"},{"name":"self","nativeSrc":"47355:4:58","nodeType":"YulIdentifier","src":"47355:4:58"}],"functionName":{"name":"shl","nativeSrc":"47335:3:58","nodeType":"YulIdentifier","src":"47335:3:58"},"nativeSrc":"47335:25:58","nodeType":"YulFunctionCall","src":"47335:25:58"},{"arguments":[{"kind":"number","nativeSrc":"47366:3:58","nodeType":"YulLiteral","src":"47366:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"47375:1:58","nodeType":"YulLiteral","src":"47375:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47371:3:58","nodeType":"YulIdentifier","src":"47371:3:58"},"nativeSrc":"47371:6:58","nodeType":"YulFunctionCall","src":"47371:6:58"}],"functionName":{"name":"shl","nativeSrc":"47362:3:58","nodeType":"YulIdentifier","src":"47362:3:58"},"nativeSrc":"47362:16:58","nodeType":"YulFunctionCall","src":"47362:16:58"}],"functionName":{"name":"and","nativeSrc":"47331:3:58","nodeType":"YulIdentifier","src":"47331:3:58"},"nativeSrc":"47331:48:58","nodeType":"YulFunctionCall","src":"47331:48:58"},"variableNames":[{"name":"result","nativeSrc":"47321:6:58","nodeType":"YulIdentifier","src":"47321:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15206,"isOffset":false,"isSlot":false,"src":"47346:6:58","valueSize":1},{"declaration":15209,"isOffset":false,"isSlot":false,"src":"47321:6:58","valueSize":1},{"declaration":15204,"isOffset":false,"isSlot":false,"src":"47355:4:58","valueSize":1}],"flags":["memory-safe"],"id":15218,"nodeType":"InlineAssembly","src":"47282:107:58"}]},"id":15220,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_8","nameLocation":"47141:12:58","nodeType":"FunctionDefinition","parameters":{"id":15207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15204,"mutability":"mutable","name":"self","nameLocation":"47162:4:58","nodeType":"VariableDeclaration","scope":15220,"src":"47154:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15203,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47154:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15206,"mutability":"mutable","name":"offset","nameLocation":"47174:6:58","nodeType":"VariableDeclaration","scope":15220,"src":"47168:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15205,"name":"uint8","nodeType":"ElementaryTypeName","src":"47168:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"47153:28:58"},"returnParameters":{"id":15210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15209,"mutability":"mutable","name":"result","nameLocation":"47212:6:58","nodeType":"VariableDeclaration","scope":15220,"src":"47205:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":15208,"name":"bytes8","nodeType":"ElementaryTypeName","src":"47205:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"47204:15:58"},"scope":16305,"src":"47132:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15239,"nodeType":"Block","src":"47504:231:58","statements":[{"assignments":[15232],"declarations":[{"constant":false,"id":15232,"mutability":"mutable","name":"oldValue","nameLocation":"47521:8:58","nodeType":"VariableDeclaration","scope":15239,"src":"47514:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":15231,"name":"bytes8","nodeType":"ElementaryTypeName","src":"47514:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":15237,"initialValue":{"arguments":[{"id":15234,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15222,"src":"47545:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15235,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15226,"src":"47551:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15233,"name":"extract_24_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15220,"src":"47532:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes24,uint8) pure returns (bytes8)"}},"id":15236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47532:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"47514:44:58"},{"AST":{"nativeSrc":"47593:136:58","nodeType":"YulBlock","src":"47593:136:58","statements":[{"nativeSrc":"47607:37:58","nodeType":"YulAssignment","src":"47607:37:58","value":{"arguments":[{"name":"value","nativeSrc":"47620:5:58","nodeType":"YulIdentifier","src":"47620:5:58"},{"arguments":[{"kind":"number","nativeSrc":"47631:3:58","nodeType":"YulLiteral","src":"47631:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"47640:1:58","nodeType":"YulLiteral","src":"47640:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47636:3:58","nodeType":"YulIdentifier","src":"47636:3:58"},"nativeSrc":"47636:6:58","nodeType":"YulFunctionCall","src":"47636:6:58"}],"functionName":{"name":"shl","nativeSrc":"47627:3:58","nodeType":"YulIdentifier","src":"47627:3:58"},"nativeSrc":"47627:16:58","nodeType":"YulFunctionCall","src":"47627:16:58"}],"functionName":{"name":"and","nativeSrc":"47616:3:58","nodeType":"YulIdentifier","src":"47616:3:58"},"nativeSrc":"47616:28:58","nodeType":"YulFunctionCall","src":"47616:28:58"},"variableNames":[{"name":"value","nativeSrc":"47607:5:58","nodeType":"YulIdentifier","src":"47607:5:58"}]},{"nativeSrc":"47657:62:58","nodeType":"YulAssignment","src":"47657:62:58","value":{"arguments":[{"name":"self","nativeSrc":"47671:4:58","nodeType":"YulIdentifier","src":"47671:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47685:1:58","nodeType":"YulLiteral","src":"47685:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"47688:6:58","nodeType":"YulIdentifier","src":"47688:6:58"}],"functionName":{"name":"mul","nativeSrc":"47681:3:58","nodeType":"YulIdentifier","src":"47681:3:58"},"nativeSrc":"47681:14:58","nodeType":"YulFunctionCall","src":"47681:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"47701:8:58","nodeType":"YulIdentifier","src":"47701:8:58"},{"name":"value","nativeSrc":"47711:5:58","nodeType":"YulIdentifier","src":"47711:5:58"}],"functionName":{"name":"xor","nativeSrc":"47697:3:58","nodeType":"YulIdentifier","src":"47697:3:58"},"nativeSrc":"47697:20:58","nodeType":"YulFunctionCall","src":"47697:20:58"}],"functionName":{"name":"shr","nativeSrc":"47677:3:58","nodeType":"YulIdentifier","src":"47677:3:58"},"nativeSrc":"47677:41:58","nodeType":"YulFunctionCall","src":"47677:41:58"}],"functionName":{"name":"xor","nativeSrc":"47667:3:58","nodeType":"YulIdentifier","src":"47667:3:58"},"nativeSrc":"47667:52:58","nodeType":"YulFunctionCall","src":"47667:52:58"},"variableNames":[{"name":"result","nativeSrc":"47657:6:58","nodeType":"YulIdentifier","src":"47657:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15226,"isOffset":false,"isSlot":false,"src":"47688:6:58","valueSize":1},{"declaration":15232,"isOffset":false,"isSlot":false,"src":"47701:8:58","valueSize":1},{"declaration":15229,"isOffset":false,"isSlot":false,"src":"47657:6:58","valueSize":1},{"declaration":15222,"isOffset":false,"isSlot":false,"src":"47671:4:58","valueSize":1},{"declaration":15224,"isOffset":false,"isSlot":false,"src":"47607:5:58","valueSize":1},{"declaration":15224,"isOffset":false,"isSlot":false,"src":"47620:5:58","valueSize":1},{"declaration":15224,"isOffset":false,"isSlot":false,"src":"47711:5:58","valueSize":1}],"flags":["memory-safe"],"id":15238,"nodeType":"InlineAssembly","src":"47568:161:58"}]},"id":15240,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_8","nameLocation":"47410:12:58","nodeType":"FunctionDefinition","parameters":{"id":15227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15222,"mutability":"mutable","name":"self","nameLocation":"47431:4:58","nodeType":"VariableDeclaration","scope":15240,"src":"47423:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15221,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47423:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15224,"mutability":"mutable","name":"value","nameLocation":"47444:5:58","nodeType":"VariableDeclaration","scope":15240,"src":"47437:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":15223,"name":"bytes8","nodeType":"ElementaryTypeName","src":"47437:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":15226,"mutability":"mutable","name":"offset","nameLocation":"47457:6:58","nodeType":"VariableDeclaration","scope":15240,"src":"47451:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15225,"name":"uint8","nodeType":"ElementaryTypeName","src":"47451:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"47422:42:58"},"returnParameters":{"id":15230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15229,"mutability":"mutable","name":"result","nameLocation":"47496:6:58","nodeType":"VariableDeclaration","scope":15240,"src":"47488:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15228,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47488:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"47487:16:58"},"scope":16305,"src":"47401:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15257,"nodeType":"Block","src":"47831:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15249,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15244,"src":"47845:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":15250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47854:2:58","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"47845:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15255,"nodeType":"IfStatement","src":"47841:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15252,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"47865:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47865:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15254,"nodeType":"RevertStatement","src":"47858:25:58"}},{"AST":{"nativeSrc":"47918:82:58","nodeType":"YulBlock","src":"47918:82:58","statements":[{"nativeSrc":"47932:58:58","nodeType":"YulAssignment","src":"47932:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47954:1:58","nodeType":"YulLiteral","src":"47954:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"47957:6:58","nodeType":"YulIdentifier","src":"47957:6:58"}],"functionName":{"name":"mul","nativeSrc":"47950:3:58","nodeType":"YulIdentifier","src":"47950:3:58"},"nativeSrc":"47950:14:58","nodeType":"YulFunctionCall","src":"47950:14:58"},{"name":"self","nativeSrc":"47966:4:58","nodeType":"YulIdentifier","src":"47966:4:58"}],"functionName":{"name":"shl","nativeSrc":"47946:3:58","nodeType":"YulIdentifier","src":"47946:3:58"},"nativeSrc":"47946:25:58","nodeType":"YulFunctionCall","src":"47946:25:58"},{"arguments":[{"kind":"number","nativeSrc":"47977:3:58","nodeType":"YulLiteral","src":"47977:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"47986:1:58","nodeType":"YulLiteral","src":"47986:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47982:3:58","nodeType":"YulIdentifier","src":"47982:3:58"},"nativeSrc":"47982:6:58","nodeType":"YulFunctionCall","src":"47982:6:58"}],"functionName":{"name":"shl","nativeSrc":"47973:3:58","nodeType":"YulIdentifier","src":"47973:3:58"},"nativeSrc":"47973:16:58","nodeType":"YulFunctionCall","src":"47973:16:58"}],"functionName":{"name":"and","nativeSrc":"47942:3:58","nodeType":"YulIdentifier","src":"47942:3:58"},"nativeSrc":"47942:48:58","nodeType":"YulFunctionCall","src":"47942:48:58"},"variableNames":[{"name":"result","nativeSrc":"47932:6:58","nodeType":"YulIdentifier","src":"47932:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15244,"isOffset":false,"isSlot":false,"src":"47957:6:58","valueSize":1},{"declaration":15247,"isOffset":false,"isSlot":false,"src":"47932:6:58","valueSize":1},{"declaration":15242,"isOffset":false,"isSlot":false,"src":"47966:4:58","valueSize":1}],"flags":["memory-safe"],"id":15256,"nodeType":"InlineAssembly","src":"47893:107:58"}]},"id":15258,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_10","nameLocation":"47750:13:58","nodeType":"FunctionDefinition","parameters":{"id":15245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15242,"mutability":"mutable","name":"self","nameLocation":"47772:4:58","nodeType":"VariableDeclaration","scope":15258,"src":"47764:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15241,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47764:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15244,"mutability":"mutable","name":"offset","nameLocation":"47784:6:58","nodeType":"VariableDeclaration","scope":15258,"src":"47778:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15243,"name":"uint8","nodeType":"ElementaryTypeName","src":"47778:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"47763:28:58"},"returnParameters":{"id":15248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15247,"mutability":"mutable","name":"result","nameLocation":"47823:6:58","nodeType":"VariableDeclaration","scope":15258,"src":"47815:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":15246,"name":"bytes10","nodeType":"ElementaryTypeName","src":"47815:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"47814:16:58"},"scope":16305,"src":"47741:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15277,"nodeType":"Block","src":"48117:233:58","statements":[{"assignments":[15270],"declarations":[{"constant":false,"id":15270,"mutability":"mutable","name":"oldValue","nameLocation":"48135:8:58","nodeType":"VariableDeclaration","scope":15277,"src":"48127:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":15269,"name":"bytes10","nodeType":"ElementaryTypeName","src":"48127:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":15275,"initialValue":{"arguments":[{"id":15272,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15260,"src":"48160:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15273,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15264,"src":"48166:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15271,"name":"extract_24_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15258,"src":"48146:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes24,uint8) pure returns (bytes10)"}},"id":15274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48146:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"48127:46:58"},{"AST":{"nativeSrc":"48208:136:58","nodeType":"YulBlock","src":"48208:136:58","statements":[{"nativeSrc":"48222:37:58","nodeType":"YulAssignment","src":"48222:37:58","value":{"arguments":[{"name":"value","nativeSrc":"48235:5:58","nodeType":"YulIdentifier","src":"48235:5:58"},{"arguments":[{"kind":"number","nativeSrc":"48246:3:58","nodeType":"YulLiteral","src":"48246:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"48255:1:58","nodeType":"YulLiteral","src":"48255:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48251:3:58","nodeType":"YulIdentifier","src":"48251:3:58"},"nativeSrc":"48251:6:58","nodeType":"YulFunctionCall","src":"48251:6:58"}],"functionName":{"name":"shl","nativeSrc":"48242:3:58","nodeType":"YulIdentifier","src":"48242:3:58"},"nativeSrc":"48242:16:58","nodeType":"YulFunctionCall","src":"48242:16:58"}],"functionName":{"name":"and","nativeSrc":"48231:3:58","nodeType":"YulIdentifier","src":"48231:3:58"},"nativeSrc":"48231:28:58","nodeType":"YulFunctionCall","src":"48231:28:58"},"variableNames":[{"name":"value","nativeSrc":"48222:5:58","nodeType":"YulIdentifier","src":"48222:5:58"}]},{"nativeSrc":"48272:62:58","nodeType":"YulAssignment","src":"48272:62:58","value":{"arguments":[{"name":"self","nativeSrc":"48286:4:58","nodeType":"YulIdentifier","src":"48286:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48300:1:58","nodeType":"YulLiteral","src":"48300:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"48303:6:58","nodeType":"YulIdentifier","src":"48303:6:58"}],"functionName":{"name":"mul","nativeSrc":"48296:3:58","nodeType":"YulIdentifier","src":"48296:3:58"},"nativeSrc":"48296:14:58","nodeType":"YulFunctionCall","src":"48296:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"48316:8:58","nodeType":"YulIdentifier","src":"48316:8:58"},{"name":"value","nativeSrc":"48326:5:58","nodeType":"YulIdentifier","src":"48326:5:58"}],"functionName":{"name":"xor","nativeSrc":"48312:3:58","nodeType":"YulIdentifier","src":"48312:3:58"},"nativeSrc":"48312:20:58","nodeType":"YulFunctionCall","src":"48312:20:58"}],"functionName":{"name":"shr","nativeSrc":"48292:3:58","nodeType":"YulIdentifier","src":"48292:3:58"},"nativeSrc":"48292:41:58","nodeType":"YulFunctionCall","src":"48292:41:58"}],"functionName":{"name":"xor","nativeSrc":"48282:3:58","nodeType":"YulIdentifier","src":"48282:3:58"},"nativeSrc":"48282:52:58","nodeType":"YulFunctionCall","src":"48282:52:58"},"variableNames":[{"name":"result","nativeSrc":"48272:6:58","nodeType":"YulIdentifier","src":"48272:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15264,"isOffset":false,"isSlot":false,"src":"48303:6:58","valueSize":1},{"declaration":15270,"isOffset":false,"isSlot":false,"src":"48316:8:58","valueSize":1},{"declaration":15267,"isOffset":false,"isSlot":false,"src":"48272:6:58","valueSize":1},{"declaration":15260,"isOffset":false,"isSlot":false,"src":"48286:4:58","valueSize":1},{"declaration":15262,"isOffset":false,"isSlot":false,"src":"48222:5:58","valueSize":1},{"declaration":15262,"isOffset":false,"isSlot":false,"src":"48235:5:58","valueSize":1},{"declaration":15262,"isOffset":false,"isSlot":false,"src":"48326:5:58","valueSize":1}],"flags":["memory-safe"],"id":15276,"nodeType":"InlineAssembly","src":"48183:161:58"}]},"id":15278,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_10","nameLocation":"48021:13:58","nodeType":"FunctionDefinition","parameters":{"id":15265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15260,"mutability":"mutable","name":"self","nameLocation":"48043:4:58","nodeType":"VariableDeclaration","scope":15278,"src":"48035:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15259,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48035:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15262,"mutability":"mutable","name":"value","nameLocation":"48057:5:58","nodeType":"VariableDeclaration","scope":15278,"src":"48049:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":15261,"name":"bytes10","nodeType":"ElementaryTypeName","src":"48049:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":15264,"mutability":"mutable","name":"offset","nameLocation":"48070:6:58","nodeType":"VariableDeclaration","scope":15278,"src":"48064:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15263,"name":"uint8","nodeType":"ElementaryTypeName","src":"48064:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48034:43:58"},"returnParameters":{"id":15268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15267,"mutability":"mutable","name":"result","nameLocation":"48109:6:58","nodeType":"VariableDeclaration","scope":15278,"src":"48101:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15266,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48101:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"48100:16:58"},"scope":16305,"src":"48012:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15295,"nodeType":"Block","src":"48446:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15287,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15282,"src":"48460:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":15288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"48469:2:58","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"48460:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15293,"nodeType":"IfStatement","src":"48456:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15290,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"48480:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48480:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15292,"nodeType":"RevertStatement","src":"48473:25:58"}},{"AST":{"nativeSrc":"48533:82:58","nodeType":"YulBlock","src":"48533:82:58","statements":[{"nativeSrc":"48547:58:58","nodeType":"YulAssignment","src":"48547:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48569:1:58","nodeType":"YulLiteral","src":"48569:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"48572:6:58","nodeType":"YulIdentifier","src":"48572:6:58"}],"functionName":{"name":"mul","nativeSrc":"48565:3:58","nodeType":"YulIdentifier","src":"48565:3:58"},"nativeSrc":"48565:14:58","nodeType":"YulFunctionCall","src":"48565:14:58"},{"name":"self","nativeSrc":"48581:4:58","nodeType":"YulIdentifier","src":"48581:4:58"}],"functionName":{"name":"shl","nativeSrc":"48561:3:58","nodeType":"YulIdentifier","src":"48561:3:58"},"nativeSrc":"48561:25:58","nodeType":"YulFunctionCall","src":"48561:25:58"},{"arguments":[{"kind":"number","nativeSrc":"48592:3:58","nodeType":"YulLiteral","src":"48592:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"48601:1:58","nodeType":"YulLiteral","src":"48601:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48597:3:58","nodeType":"YulIdentifier","src":"48597:3:58"},"nativeSrc":"48597:6:58","nodeType":"YulFunctionCall","src":"48597:6:58"}],"functionName":{"name":"shl","nativeSrc":"48588:3:58","nodeType":"YulIdentifier","src":"48588:3:58"},"nativeSrc":"48588:16:58","nodeType":"YulFunctionCall","src":"48588:16:58"}],"functionName":{"name":"and","nativeSrc":"48557:3:58","nodeType":"YulIdentifier","src":"48557:3:58"},"nativeSrc":"48557:48:58","nodeType":"YulFunctionCall","src":"48557:48:58"},"variableNames":[{"name":"result","nativeSrc":"48547:6:58","nodeType":"YulIdentifier","src":"48547:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15282,"isOffset":false,"isSlot":false,"src":"48572:6:58","valueSize":1},{"declaration":15285,"isOffset":false,"isSlot":false,"src":"48547:6:58","valueSize":1},{"declaration":15280,"isOffset":false,"isSlot":false,"src":"48581:4:58","valueSize":1}],"flags":["memory-safe"],"id":15294,"nodeType":"InlineAssembly","src":"48508:107:58"}]},"id":15296,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_12","nameLocation":"48365:13:58","nodeType":"FunctionDefinition","parameters":{"id":15283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15280,"mutability":"mutable","name":"self","nameLocation":"48387:4:58","nodeType":"VariableDeclaration","scope":15296,"src":"48379:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15279,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48379:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15282,"mutability":"mutable","name":"offset","nameLocation":"48399:6:58","nodeType":"VariableDeclaration","scope":15296,"src":"48393:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15281,"name":"uint8","nodeType":"ElementaryTypeName","src":"48393:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48378:28:58"},"returnParameters":{"id":15286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15285,"mutability":"mutable","name":"result","nameLocation":"48438:6:58","nodeType":"VariableDeclaration","scope":15296,"src":"48430:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":15284,"name":"bytes12","nodeType":"ElementaryTypeName","src":"48430:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"48429:16:58"},"scope":16305,"src":"48356:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15315,"nodeType":"Block","src":"48732:233:58","statements":[{"assignments":[15308],"declarations":[{"constant":false,"id":15308,"mutability":"mutable","name":"oldValue","nameLocation":"48750:8:58","nodeType":"VariableDeclaration","scope":15315,"src":"48742:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":15307,"name":"bytes12","nodeType":"ElementaryTypeName","src":"48742:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":15313,"initialValue":{"arguments":[{"id":15310,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15298,"src":"48775:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15311,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15302,"src":"48781:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15309,"name":"extract_24_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15296,"src":"48761:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes24,uint8) pure returns (bytes12)"}},"id":15312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48761:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"48742:46:58"},{"AST":{"nativeSrc":"48823:136:58","nodeType":"YulBlock","src":"48823:136:58","statements":[{"nativeSrc":"48837:37:58","nodeType":"YulAssignment","src":"48837:37:58","value":{"arguments":[{"name":"value","nativeSrc":"48850:5:58","nodeType":"YulIdentifier","src":"48850:5:58"},{"arguments":[{"kind":"number","nativeSrc":"48861:3:58","nodeType":"YulLiteral","src":"48861:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"48870:1:58","nodeType":"YulLiteral","src":"48870:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48866:3:58","nodeType":"YulIdentifier","src":"48866:3:58"},"nativeSrc":"48866:6:58","nodeType":"YulFunctionCall","src":"48866:6:58"}],"functionName":{"name":"shl","nativeSrc":"48857:3:58","nodeType":"YulIdentifier","src":"48857:3:58"},"nativeSrc":"48857:16:58","nodeType":"YulFunctionCall","src":"48857:16:58"}],"functionName":{"name":"and","nativeSrc":"48846:3:58","nodeType":"YulIdentifier","src":"48846:3:58"},"nativeSrc":"48846:28:58","nodeType":"YulFunctionCall","src":"48846:28:58"},"variableNames":[{"name":"value","nativeSrc":"48837:5:58","nodeType":"YulIdentifier","src":"48837:5:58"}]},{"nativeSrc":"48887:62:58","nodeType":"YulAssignment","src":"48887:62:58","value":{"arguments":[{"name":"self","nativeSrc":"48901:4:58","nodeType":"YulIdentifier","src":"48901:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48915:1:58","nodeType":"YulLiteral","src":"48915:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"48918:6:58","nodeType":"YulIdentifier","src":"48918:6:58"}],"functionName":{"name":"mul","nativeSrc":"48911:3:58","nodeType":"YulIdentifier","src":"48911:3:58"},"nativeSrc":"48911:14:58","nodeType":"YulFunctionCall","src":"48911:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"48931:8:58","nodeType":"YulIdentifier","src":"48931:8:58"},{"name":"value","nativeSrc":"48941:5:58","nodeType":"YulIdentifier","src":"48941:5:58"}],"functionName":{"name":"xor","nativeSrc":"48927:3:58","nodeType":"YulIdentifier","src":"48927:3:58"},"nativeSrc":"48927:20:58","nodeType":"YulFunctionCall","src":"48927:20:58"}],"functionName":{"name":"shr","nativeSrc":"48907:3:58","nodeType":"YulIdentifier","src":"48907:3:58"},"nativeSrc":"48907:41:58","nodeType":"YulFunctionCall","src":"48907:41:58"}],"functionName":{"name":"xor","nativeSrc":"48897:3:58","nodeType":"YulIdentifier","src":"48897:3:58"},"nativeSrc":"48897:52:58","nodeType":"YulFunctionCall","src":"48897:52:58"},"variableNames":[{"name":"result","nativeSrc":"48887:6:58","nodeType":"YulIdentifier","src":"48887:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15302,"isOffset":false,"isSlot":false,"src":"48918:6:58","valueSize":1},{"declaration":15308,"isOffset":false,"isSlot":false,"src":"48931:8:58","valueSize":1},{"declaration":15305,"isOffset":false,"isSlot":false,"src":"48887:6:58","valueSize":1},{"declaration":15298,"isOffset":false,"isSlot":false,"src":"48901:4:58","valueSize":1},{"declaration":15300,"isOffset":false,"isSlot":false,"src":"48837:5:58","valueSize":1},{"declaration":15300,"isOffset":false,"isSlot":false,"src":"48850:5:58","valueSize":1},{"declaration":15300,"isOffset":false,"isSlot":false,"src":"48941:5:58","valueSize":1}],"flags":["memory-safe"],"id":15314,"nodeType":"InlineAssembly","src":"48798:161:58"}]},"id":15316,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_12","nameLocation":"48636:13:58","nodeType":"FunctionDefinition","parameters":{"id":15303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15298,"mutability":"mutable","name":"self","nameLocation":"48658:4:58","nodeType":"VariableDeclaration","scope":15316,"src":"48650:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15297,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48650:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15300,"mutability":"mutable","name":"value","nameLocation":"48672:5:58","nodeType":"VariableDeclaration","scope":15316,"src":"48664:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":15299,"name":"bytes12","nodeType":"ElementaryTypeName","src":"48664:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":15302,"mutability":"mutable","name":"offset","nameLocation":"48685:6:58","nodeType":"VariableDeclaration","scope":15316,"src":"48679:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15301,"name":"uint8","nodeType":"ElementaryTypeName","src":"48679:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48649:43:58"},"returnParameters":{"id":15306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15305,"mutability":"mutable","name":"result","nameLocation":"48724:6:58","nodeType":"VariableDeclaration","scope":15316,"src":"48716:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15304,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48716:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"48715:16:58"},"scope":16305,"src":"48627:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15333,"nodeType":"Block","src":"49061:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15325,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15320,"src":"49075:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":15326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49084:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"49075:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15331,"nodeType":"IfStatement","src":"49071:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15328,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"49094:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49094:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15330,"nodeType":"RevertStatement","src":"49087:25:58"}},{"AST":{"nativeSrc":"49147:82:58","nodeType":"YulBlock","src":"49147:82:58","statements":[{"nativeSrc":"49161:58:58","nodeType":"YulAssignment","src":"49161:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49183:1:58","nodeType":"YulLiteral","src":"49183:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"49186:6:58","nodeType":"YulIdentifier","src":"49186:6:58"}],"functionName":{"name":"mul","nativeSrc":"49179:3:58","nodeType":"YulIdentifier","src":"49179:3:58"},"nativeSrc":"49179:14:58","nodeType":"YulFunctionCall","src":"49179:14:58"},{"name":"self","nativeSrc":"49195:4:58","nodeType":"YulIdentifier","src":"49195:4:58"}],"functionName":{"name":"shl","nativeSrc":"49175:3:58","nodeType":"YulIdentifier","src":"49175:3:58"},"nativeSrc":"49175:25:58","nodeType":"YulFunctionCall","src":"49175:25:58"},{"arguments":[{"kind":"number","nativeSrc":"49206:3:58","nodeType":"YulLiteral","src":"49206:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"49215:1:58","nodeType":"YulLiteral","src":"49215:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"49211:3:58","nodeType":"YulIdentifier","src":"49211:3:58"},"nativeSrc":"49211:6:58","nodeType":"YulFunctionCall","src":"49211:6:58"}],"functionName":{"name":"shl","nativeSrc":"49202:3:58","nodeType":"YulIdentifier","src":"49202:3:58"},"nativeSrc":"49202:16:58","nodeType":"YulFunctionCall","src":"49202:16:58"}],"functionName":{"name":"and","nativeSrc":"49171:3:58","nodeType":"YulIdentifier","src":"49171:3:58"},"nativeSrc":"49171:48:58","nodeType":"YulFunctionCall","src":"49171:48:58"},"variableNames":[{"name":"result","nativeSrc":"49161:6:58","nodeType":"YulIdentifier","src":"49161:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15320,"isOffset":false,"isSlot":false,"src":"49186:6:58","valueSize":1},{"declaration":15323,"isOffset":false,"isSlot":false,"src":"49161:6:58","valueSize":1},{"declaration":15318,"isOffset":false,"isSlot":false,"src":"49195:4:58","valueSize":1}],"flags":["memory-safe"],"id":15332,"nodeType":"InlineAssembly","src":"49122:107:58"}]},"id":15334,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_16","nameLocation":"48980:13:58","nodeType":"FunctionDefinition","parameters":{"id":15321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15318,"mutability":"mutable","name":"self","nameLocation":"49002:4:58","nodeType":"VariableDeclaration","scope":15334,"src":"48994:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15317,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48994:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15320,"mutability":"mutable","name":"offset","nameLocation":"49014:6:58","nodeType":"VariableDeclaration","scope":15334,"src":"49008:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15319,"name":"uint8","nodeType":"ElementaryTypeName","src":"49008:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48993:28:58"},"returnParameters":{"id":15324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15323,"mutability":"mutable","name":"result","nameLocation":"49053:6:58","nodeType":"VariableDeclaration","scope":15334,"src":"49045:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15322,"name":"bytes16","nodeType":"ElementaryTypeName","src":"49045:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"49044:16:58"},"scope":16305,"src":"48971:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15353,"nodeType":"Block","src":"49346:233:58","statements":[{"assignments":[15346],"declarations":[{"constant":false,"id":15346,"mutability":"mutable","name":"oldValue","nameLocation":"49364:8:58","nodeType":"VariableDeclaration","scope":15353,"src":"49356:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15345,"name":"bytes16","nodeType":"ElementaryTypeName","src":"49356:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":15351,"initialValue":{"arguments":[{"id":15348,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15336,"src":"49389:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15349,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15340,"src":"49395:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15347,"name":"extract_24_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15334,"src":"49375:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes24,uint8) pure returns (bytes16)"}},"id":15350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49375:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"49356:46:58"},{"AST":{"nativeSrc":"49437:136:58","nodeType":"YulBlock","src":"49437:136:58","statements":[{"nativeSrc":"49451:37:58","nodeType":"YulAssignment","src":"49451:37:58","value":{"arguments":[{"name":"value","nativeSrc":"49464:5:58","nodeType":"YulIdentifier","src":"49464:5:58"},{"arguments":[{"kind":"number","nativeSrc":"49475:3:58","nodeType":"YulLiteral","src":"49475:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"49484:1:58","nodeType":"YulLiteral","src":"49484:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"49480:3:58","nodeType":"YulIdentifier","src":"49480:3:58"},"nativeSrc":"49480:6:58","nodeType":"YulFunctionCall","src":"49480:6:58"}],"functionName":{"name":"shl","nativeSrc":"49471:3:58","nodeType":"YulIdentifier","src":"49471:3:58"},"nativeSrc":"49471:16:58","nodeType":"YulFunctionCall","src":"49471:16:58"}],"functionName":{"name":"and","nativeSrc":"49460:3:58","nodeType":"YulIdentifier","src":"49460:3:58"},"nativeSrc":"49460:28:58","nodeType":"YulFunctionCall","src":"49460:28:58"},"variableNames":[{"name":"value","nativeSrc":"49451:5:58","nodeType":"YulIdentifier","src":"49451:5:58"}]},{"nativeSrc":"49501:62:58","nodeType":"YulAssignment","src":"49501:62:58","value":{"arguments":[{"name":"self","nativeSrc":"49515:4:58","nodeType":"YulIdentifier","src":"49515:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49529:1:58","nodeType":"YulLiteral","src":"49529:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"49532:6:58","nodeType":"YulIdentifier","src":"49532:6:58"}],"functionName":{"name":"mul","nativeSrc":"49525:3:58","nodeType":"YulIdentifier","src":"49525:3:58"},"nativeSrc":"49525:14:58","nodeType":"YulFunctionCall","src":"49525:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"49545:8:58","nodeType":"YulIdentifier","src":"49545:8:58"},{"name":"value","nativeSrc":"49555:5:58","nodeType":"YulIdentifier","src":"49555:5:58"}],"functionName":{"name":"xor","nativeSrc":"49541:3:58","nodeType":"YulIdentifier","src":"49541:3:58"},"nativeSrc":"49541:20:58","nodeType":"YulFunctionCall","src":"49541:20:58"}],"functionName":{"name":"shr","nativeSrc":"49521:3:58","nodeType":"YulIdentifier","src":"49521:3:58"},"nativeSrc":"49521:41:58","nodeType":"YulFunctionCall","src":"49521:41:58"}],"functionName":{"name":"xor","nativeSrc":"49511:3:58","nodeType":"YulIdentifier","src":"49511:3:58"},"nativeSrc":"49511:52:58","nodeType":"YulFunctionCall","src":"49511:52:58"},"variableNames":[{"name":"result","nativeSrc":"49501:6:58","nodeType":"YulIdentifier","src":"49501:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15340,"isOffset":false,"isSlot":false,"src":"49532:6:58","valueSize":1},{"declaration":15346,"isOffset":false,"isSlot":false,"src":"49545:8:58","valueSize":1},{"declaration":15343,"isOffset":false,"isSlot":false,"src":"49501:6:58","valueSize":1},{"declaration":15336,"isOffset":false,"isSlot":false,"src":"49515:4:58","valueSize":1},{"declaration":15338,"isOffset":false,"isSlot":false,"src":"49451:5:58","valueSize":1},{"declaration":15338,"isOffset":false,"isSlot":false,"src":"49464:5:58","valueSize":1},{"declaration":15338,"isOffset":false,"isSlot":false,"src":"49555:5:58","valueSize":1}],"flags":["memory-safe"],"id":15352,"nodeType":"InlineAssembly","src":"49412:161:58"}]},"id":15354,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_16","nameLocation":"49250:13:58","nodeType":"FunctionDefinition","parameters":{"id":15341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15336,"mutability":"mutable","name":"self","nameLocation":"49272:4:58","nodeType":"VariableDeclaration","scope":15354,"src":"49264:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15335,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49264:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15338,"mutability":"mutable","name":"value","nameLocation":"49286:5:58","nodeType":"VariableDeclaration","scope":15354,"src":"49278:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15337,"name":"bytes16","nodeType":"ElementaryTypeName","src":"49278:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":15340,"mutability":"mutable","name":"offset","nameLocation":"49299:6:58","nodeType":"VariableDeclaration","scope":15354,"src":"49293:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15339,"name":"uint8","nodeType":"ElementaryTypeName","src":"49293:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49263:43:58"},"returnParameters":{"id":15344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15343,"mutability":"mutable","name":"result","nameLocation":"49338:6:58","nodeType":"VariableDeclaration","scope":15354,"src":"49330:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15342,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49330:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"49329:16:58"},"scope":16305,"src":"49241:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15371,"nodeType":"Block","src":"49675:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15363,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15358,"src":"49689:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":15364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49698:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"49689:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15369,"nodeType":"IfStatement","src":"49685:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15366,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"49708:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49708:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15368,"nodeType":"RevertStatement","src":"49701:25:58"}},{"AST":{"nativeSrc":"49761:81:58","nodeType":"YulBlock","src":"49761:81:58","statements":[{"nativeSrc":"49775:57:58","nodeType":"YulAssignment","src":"49775:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49797:1:58","nodeType":"YulLiteral","src":"49797:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"49800:6:58","nodeType":"YulIdentifier","src":"49800:6:58"}],"functionName":{"name":"mul","nativeSrc":"49793:3:58","nodeType":"YulIdentifier","src":"49793:3:58"},"nativeSrc":"49793:14:58","nodeType":"YulFunctionCall","src":"49793:14:58"},{"name":"self","nativeSrc":"49809:4:58","nodeType":"YulIdentifier","src":"49809:4:58"}],"functionName":{"name":"shl","nativeSrc":"49789:3:58","nodeType":"YulIdentifier","src":"49789:3:58"},"nativeSrc":"49789:25:58","nodeType":"YulFunctionCall","src":"49789:25:58"},{"arguments":[{"kind":"number","nativeSrc":"49820:2:58","nodeType":"YulLiteral","src":"49820:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"49828:1:58","nodeType":"YulLiteral","src":"49828:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"49824:3:58","nodeType":"YulIdentifier","src":"49824:3:58"},"nativeSrc":"49824:6:58","nodeType":"YulFunctionCall","src":"49824:6:58"}],"functionName":{"name":"shl","nativeSrc":"49816:3:58","nodeType":"YulIdentifier","src":"49816:3:58"},"nativeSrc":"49816:15:58","nodeType":"YulFunctionCall","src":"49816:15:58"}],"functionName":{"name":"and","nativeSrc":"49785:3:58","nodeType":"YulIdentifier","src":"49785:3:58"},"nativeSrc":"49785:47:58","nodeType":"YulFunctionCall","src":"49785:47:58"},"variableNames":[{"name":"result","nativeSrc":"49775:6:58","nodeType":"YulIdentifier","src":"49775:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15358,"isOffset":false,"isSlot":false,"src":"49800:6:58","valueSize":1},{"declaration":15361,"isOffset":false,"isSlot":false,"src":"49775:6:58","valueSize":1},{"declaration":15356,"isOffset":false,"isSlot":false,"src":"49809:4:58","valueSize":1}],"flags":["memory-safe"],"id":15370,"nodeType":"InlineAssembly","src":"49736:106:58"}]},"id":15372,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_20","nameLocation":"49594:13:58","nodeType":"FunctionDefinition","parameters":{"id":15359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15356,"mutability":"mutable","name":"self","nameLocation":"49616:4:58","nodeType":"VariableDeclaration","scope":15372,"src":"49608:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15355,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49608:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15358,"mutability":"mutable","name":"offset","nameLocation":"49628:6:58","nodeType":"VariableDeclaration","scope":15372,"src":"49622:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15357,"name":"uint8","nodeType":"ElementaryTypeName","src":"49622:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49607:28:58"},"returnParameters":{"id":15362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15361,"mutability":"mutable","name":"result","nameLocation":"49667:6:58","nodeType":"VariableDeclaration","scope":15372,"src":"49659:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15360,"name":"bytes20","nodeType":"ElementaryTypeName","src":"49659:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"49658:16:58"},"scope":16305,"src":"49585:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15391,"nodeType":"Block","src":"49959:232:58","statements":[{"assignments":[15384],"declarations":[{"constant":false,"id":15384,"mutability":"mutable","name":"oldValue","nameLocation":"49977:8:58","nodeType":"VariableDeclaration","scope":15391,"src":"49969:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15383,"name":"bytes20","nodeType":"ElementaryTypeName","src":"49969:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":15389,"initialValue":{"arguments":[{"id":15386,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15374,"src":"50002:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15387,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15378,"src":"50008:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15385,"name":"extract_24_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15372,"src":"49988:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes24,uint8) pure returns (bytes20)"}},"id":15388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49988:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"49969:46:58"},{"AST":{"nativeSrc":"50050:135:58","nodeType":"YulBlock","src":"50050:135:58","statements":[{"nativeSrc":"50064:36:58","nodeType":"YulAssignment","src":"50064:36:58","value":{"arguments":[{"name":"value","nativeSrc":"50077:5:58","nodeType":"YulIdentifier","src":"50077:5:58"},{"arguments":[{"kind":"number","nativeSrc":"50088:2:58","nodeType":"YulLiteral","src":"50088:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"50096:1:58","nodeType":"YulLiteral","src":"50096:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"50092:3:58","nodeType":"YulIdentifier","src":"50092:3:58"},"nativeSrc":"50092:6:58","nodeType":"YulFunctionCall","src":"50092:6:58"}],"functionName":{"name":"shl","nativeSrc":"50084:3:58","nodeType":"YulIdentifier","src":"50084:3:58"},"nativeSrc":"50084:15:58","nodeType":"YulFunctionCall","src":"50084:15:58"}],"functionName":{"name":"and","nativeSrc":"50073:3:58","nodeType":"YulIdentifier","src":"50073:3:58"},"nativeSrc":"50073:27:58","nodeType":"YulFunctionCall","src":"50073:27:58"},"variableNames":[{"name":"value","nativeSrc":"50064:5:58","nodeType":"YulIdentifier","src":"50064:5:58"}]},{"nativeSrc":"50113:62:58","nodeType":"YulAssignment","src":"50113:62:58","value":{"arguments":[{"name":"self","nativeSrc":"50127:4:58","nodeType":"YulIdentifier","src":"50127:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"50141:1:58","nodeType":"YulLiteral","src":"50141:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"50144:6:58","nodeType":"YulIdentifier","src":"50144:6:58"}],"functionName":{"name":"mul","nativeSrc":"50137:3:58","nodeType":"YulIdentifier","src":"50137:3:58"},"nativeSrc":"50137:14:58","nodeType":"YulFunctionCall","src":"50137:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"50157:8:58","nodeType":"YulIdentifier","src":"50157:8:58"},{"name":"value","nativeSrc":"50167:5:58","nodeType":"YulIdentifier","src":"50167:5:58"}],"functionName":{"name":"xor","nativeSrc":"50153:3:58","nodeType":"YulIdentifier","src":"50153:3:58"},"nativeSrc":"50153:20:58","nodeType":"YulFunctionCall","src":"50153:20:58"}],"functionName":{"name":"shr","nativeSrc":"50133:3:58","nodeType":"YulIdentifier","src":"50133:3:58"},"nativeSrc":"50133:41:58","nodeType":"YulFunctionCall","src":"50133:41:58"}],"functionName":{"name":"xor","nativeSrc":"50123:3:58","nodeType":"YulIdentifier","src":"50123:3:58"},"nativeSrc":"50123:52:58","nodeType":"YulFunctionCall","src":"50123:52:58"},"variableNames":[{"name":"result","nativeSrc":"50113:6:58","nodeType":"YulIdentifier","src":"50113:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15378,"isOffset":false,"isSlot":false,"src":"50144:6:58","valueSize":1},{"declaration":15384,"isOffset":false,"isSlot":false,"src":"50157:8:58","valueSize":1},{"declaration":15381,"isOffset":false,"isSlot":false,"src":"50113:6:58","valueSize":1},{"declaration":15374,"isOffset":false,"isSlot":false,"src":"50127:4:58","valueSize":1},{"declaration":15376,"isOffset":false,"isSlot":false,"src":"50064:5:58","valueSize":1},{"declaration":15376,"isOffset":false,"isSlot":false,"src":"50077:5:58","valueSize":1},{"declaration":15376,"isOffset":false,"isSlot":false,"src":"50167:5:58","valueSize":1}],"flags":["memory-safe"],"id":15390,"nodeType":"InlineAssembly","src":"50025:160:58"}]},"id":15392,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_20","nameLocation":"49863:13:58","nodeType":"FunctionDefinition","parameters":{"id":15379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15374,"mutability":"mutable","name":"self","nameLocation":"49885:4:58","nodeType":"VariableDeclaration","scope":15392,"src":"49877:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15373,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49877:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15376,"mutability":"mutable","name":"value","nameLocation":"49899:5:58","nodeType":"VariableDeclaration","scope":15392,"src":"49891:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15375,"name":"bytes20","nodeType":"ElementaryTypeName","src":"49891:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":15378,"mutability":"mutable","name":"offset","nameLocation":"49912:6:58","nodeType":"VariableDeclaration","scope":15392,"src":"49906:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15377,"name":"uint8","nodeType":"ElementaryTypeName","src":"49906:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49876:43:58"},"returnParameters":{"id":15382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15381,"mutability":"mutable","name":"result","nameLocation":"49951:6:58","nodeType":"VariableDeclaration","scope":15392,"src":"49943:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15380,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49943:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"49942:16:58"},"scope":16305,"src":"49854:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15409,"nodeType":"Block","src":"50287:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15401,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15396,"src":"50301:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":15402,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50310:1:58","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"50301:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15407,"nodeType":"IfStatement","src":"50297:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15404,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"50320:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50320:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15406,"nodeType":"RevertStatement","src":"50313:25:58"}},{"AST":{"nativeSrc":"50373:81:58","nodeType":"YulBlock","src":"50373:81:58","statements":[{"nativeSrc":"50387:57:58","nodeType":"YulAssignment","src":"50387:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"50409:1:58","nodeType":"YulLiteral","src":"50409:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"50412:6:58","nodeType":"YulIdentifier","src":"50412:6:58"}],"functionName":{"name":"mul","nativeSrc":"50405:3:58","nodeType":"YulIdentifier","src":"50405:3:58"},"nativeSrc":"50405:14:58","nodeType":"YulFunctionCall","src":"50405:14:58"},{"name":"self","nativeSrc":"50421:4:58","nodeType":"YulIdentifier","src":"50421:4:58"}],"functionName":{"name":"shl","nativeSrc":"50401:3:58","nodeType":"YulIdentifier","src":"50401:3:58"},"nativeSrc":"50401:25:58","nodeType":"YulFunctionCall","src":"50401:25:58"},{"arguments":[{"kind":"number","nativeSrc":"50432:2:58","nodeType":"YulLiteral","src":"50432:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"50440:1:58","nodeType":"YulLiteral","src":"50440:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"50436:3:58","nodeType":"YulIdentifier","src":"50436:3:58"},"nativeSrc":"50436:6:58","nodeType":"YulFunctionCall","src":"50436:6:58"}],"functionName":{"name":"shl","nativeSrc":"50428:3:58","nodeType":"YulIdentifier","src":"50428:3:58"},"nativeSrc":"50428:15:58","nodeType":"YulFunctionCall","src":"50428:15:58"}],"functionName":{"name":"and","nativeSrc":"50397:3:58","nodeType":"YulIdentifier","src":"50397:3:58"},"nativeSrc":"50397:47:58","nodeType":"YulFunctionCall","src":"50397:47:58"},"variableNames":[{"name":"result","nativeSrc":"50387:6:58","nodeType":"YulIdentifier","src":"50387:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15396,"isOffset":false,"isSlot":false,"src":"50412:6:58","valueSize":1},{"declaration":15399,"isOffset":false,"isSlot":false,"src":"50387:6:58","valueSize":1},{"declaration":15394,"isOffset":false,"isSlot":false,"src":"50421:4:58","valueSize":1}],"flags":["memory-safe"],"id":15408,"nodeType":"InlineAssembly","src":"50348:106:58"}]},"id":15410,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_22","nameLocation":"50206:13:58","nodeType":"FunctionDefinition","parameters":{"id":15397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15394,"mutability":"mutable","name":"self","nameLocation":"50228:4:58","nodeType":"VariableDeclaration","scope":15410,"src":"50220:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15393,"name":"bytes24","nodeType":"ElementaryTypeName","src":"50220:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15396,"mutability":"mutable","name":"offset","nameLocation":"50240:6:58","nodeType":"VariableDeclaration","scope":15410,"src":"50234:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15395,"name":"uint8","nodeType":"ElementaryTypeName","src":"50234:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"50219:28:58"},"returnParameters":{"id":15400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15399,"mutability":"mutable","name":"result","nameLocation":"50279:6:58","nodeType":"VariableDeclaration","scope":15410,"src":"50271:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15398,"name":"bytes22","nodeType":"ElementaryTypeName","src":"50271:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"50270:16:58"},"scope":16305,"src":"50197:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15429,"nodeType":"Block","src":"50571:232:58","statements":[{"assignments":[15422],"declarations":[{"constant":false,"id":15422,"mutability":"mutable","name":"oldValue","nameLocation":"50589:8:58","nodeType":"VariableDeclaration","scope":15429,"src":"50581:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15421,"name":"bytes22","nodeType":"ElementaryTypeName","src":"50581:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"id":15427,"initialValue":{"arguments":[{"id":15424,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15412,"src":"50614:4:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":15425,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15416,"src":"50620:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15423,"name":"extract_24_22","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15410,"src":"50600:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes22_$","typeString":"function (bytes24,uint8) pure returns (bytes22)"}},"id":15426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50600:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"nodeType":"VariableDeclarationStatement","src":"50581:46:58"},{"AST":{"nativeSrc":"50662:135:58","nodeType":"YulBlock","src":"50662:135:58","statements":[{"nativeSrc":"50676:36:58","nodeType":"YulAssignment","src":"50676:36:58","value":{"arguments":[{"name":"value","nativeSrc":"50689:5:58","nodeType":"YulIdentifier","src":"50689:5:58"},{"arguments":[{"kind":"number","nativeSrc":"50700:2:58","nodeType":"YulLiteral","src":"50700:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"50708:1:58","nodeType":"YulLiteral","src":"50708:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"50704:3:58","nodeType":"YulIdentifier","src":"50704:3:58"},"nativeSrc":"50704:6:58","nodeType":"YulFunctionCall","src":"50704:6:58"}],"functionName":{"name":"shl","nativeSrc":"50696:3:58","nodeType":"YulIdentifier","src":"50696:3:58"},"nativeSrc":"50696:15:58","nodeType":"YulFunctionCall","src":"50696:15:58"}],"functionName":{"name":"and","nativeSrc":"50685:3:58","nodeType":"YulIdentifier","src":"50685:3:58"},"nativeSrc":"50685:27:58","nodeType":"YulFunctionCall","src":"50685:27:58"},"variableNames":[{"name":"value","nativeSrc":"50676:5:58","nodeType":"YulIdentifier","src":"50676:5:58"}]},{"nativeSrc":"50725:62:58","nodeType":"YulAssignment","src":"50725:62:58","value":{"arguments":[{"name":"self","nativeSrc":"50739:4:58","nodeType":"YulIdentifier","src":"50739:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"50753:1:58","nodeType":"YulLiteral","src":"50753:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"50756:6:58","nodeType":"YulIdentifier","src":"50756:6:58"}],"functionName":{"name":"mul","nativeSrc":"50749:3:58","nodeType":"YulIdentifier","src":"50749:3:58"},"nativeSrc":"50749:14:58","nodeType":"YulFunctionCall","src":"50749:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"50769:8:58","nodeType":"YulIdentifier","src":"50769:8:58"},{"name":"value","nativeSrc":"50779:5:58","nodeType":"YulIdentifier","src":"50779:5:58"}],"functionName":{"name":"xor","nativeSrc":"50765:3:58","nodeType":"YulIdentifier","src":"50765:3:58"},"nativeSrc":"50765:20:58","nodeType":"YulFunctionCall","src":"50765:20:58"}],"functionName":{"name":"shr","nativeSrc":"50745:3:58","nodeType":"YulIdentifier","src":"50745:3:58"},"nativeSrc":"50745:41:58","nodeType":"YulFunctionCall","src":"50745:41:58"}],"functionName":{"name":"xor","nativeSrc":"50735:3:58","nodeType":"YulIdentifier","src":"50735:3:58"},"nativeSrc":"50735:52:58","nodeType":"YulFunctionCall","src":"50735:52:58"},"variableNames":[{"name":"result","nativeSrc":"50725:6:58","nodeType":"YulIdentifier","src":"50725:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15416,"isOffset":false,"isSlot":false,"src":"50756:6:58","valueSize":1},{"declaration":15422,"isOffset":false,"isSlot":false,"src":"50769:8:58","valueSize":1},{"declaration":15419,"isOffset":false,"isSlot":false,"src":"50725:6:58","valueSize":1},{"declaration":15412,"isOffset":false,"isSlot":false,"src":"50739:4:58","valueSize":1},{"declaration":15414,"isOffset":false,"isSlot":false,"src":"50676:5:58","valueSize":1},{"declaration":15414,"isOffset":false,"isSlot":false,"src":"50689:5:58","valueSize":1},{"declaration":15414,"isOffset":false,"isSlot":false,"src":"50779:5:58","valueSize":1}],"flags":["memory-safe"],"id":15428,"nodeType":"InlineAssembly","src":"50637:160:58"}]},"id":15430,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_22","nameLocation":"50475:13:58","nodeType":"FunctionDefinition","parameters":{"id":15417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15412,"mutability":"mutable","name":"self","nameLocation":"50497:4:58","nodeType":"VariableDeclaration","scope":15430,"src":"50489:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15411,"name":"bytes24","nodeType":"ElementaryTypeName","src":"50489:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15414,"mutability":"mutable","name":"value","nameLocation":"50511:5:58","nodeType":"VariableDeclaration","scope":15430,"src":"50503:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15413,"name":"bytes22","nodeType":"ElementaryTypeName","src":"50503:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":15416,"mutability":"mutable","name":"offset","nameLocation":"50524:6:58","nodeType":"VariableDeclaration","scope":15430,"src":"50518:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15415,"name":"uint8","nodeType":"ElementaryTypeName","src":"50518:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"50488:43:58"},"returnParameters":{"id":15420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15419,"mutability":"mutable","name":"result","nameLocation":"50563:6:58","nodeType":"VariableDeclaration","scope":15430,"src":"50555:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15418,"name":"bytes24","nodeType":"ElementaryTypeName","src":"50555:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"50554:16:58"},"scope":16305,"src":"50466:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15447,"nodeType":"Block","src":"50897:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15439,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15434,"src":"50911:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3237","id":15440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50920:2:58","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"50911:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15445,"nodeType":"IfStatement","src":"50907:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15442,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"50931:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15443,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50931:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15444,"nodeType":"RevertStatement","src":"50924:25:58"}},{"AST":{"nativeSrc":"50984:82:58","nodeType":"YulBlock","src":"50984:82:58","statements":[{"nativeSrc":"50998:58:58","nodeType":"YulAssignment","src":"50998:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51020:1:58","nodeType":"YulLiteral","src":"51020:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"51023:6:58","nodeType":"YulIdentifier","src":"51023:6:58"}],"functionName":{"name":"mul","nativeSrc":"51016:3:58","nodeType":"YulIdentifier","src":"51016:3:58"},"nativeSrc":"51016:14:58","nodeType":"YulFunctionCall","src":"51016:14:58"},{"name":"self","nativeSrc":"51032:4:58","nodeType":"YulIdentifier","src":"51032:4:58"}],"functionName":{"name":"shl","nativeSrc":"51012:3:58","nodeType":"YulIdentifier","src":"51012:3:58"},"nativeSrc":"51012:25:58","nodeType":"YulFunctionCall","src":"51012:25:58"},{"arguments":[{"kind":"number","nativeSrc":"51043:3:58","nodeType":"YulLiteral","src":"51043:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"51052:1:58","nodeType":"YulLiteral","src":"51052:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51048:3:58","nodeType":"YulIdentifier","src":"51048:3:58"},"nativeSrc":"51048:6:58","nodeType":"YulFunctionCall","src":"51048:6:58"}],"functionName":{"name":"shl","nativeSrc":"51039:3:58","nodeType":"YulIdentifier","src":"51039:3:58"},"nativeSrc":"51039:16:58","nodeType":"YulFunctionCall","src":"51039:16:58"}],"functionName":{"name":"and","nativeSrc":"51008:3:58","nodeType":"YulIdentifier","src":"51008:3:58"},"nativeSrc":"51008:48:58","nodeType":"YulFunctionCall","src":"51008:48:58"},"variableNames":[{"name":"result","nativeSrc":"50998:6:58","nodeType":"YulIdentifier","src":"50998:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15434,"isOffset":false,"isSlot":false,"src":"51023:6:58","valueSize":1},{"declaration":15437,"isOffset":false,"isSlot":false,"src":"50998:6:58","valueSize":1},{"declaration":15432,"isOffset":false,"isSlot":false,"src":"51032:4:58","valueSize":1}],"flags":["memory-safe"],"id":15446,"nodeType":"InlineAssembly","src":"50959:107:58"}]},"id":15448,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_1","nameLocation":"50818:12:58","nodeType":"FunctionDefinition","parameters":{"id":15435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15432,"mutability":"mutable","name":"self","nameLocation":"50839:4:58","nodeType":"VariableDeclaration","scope":15448,"src":"50831:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15431,"name":"bytes28","nodeType":"ElementaryTypeName","src":"50831:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15434,"mutability":"mutable","name":"offset","nameLocation":"50851:6:58","nodeType":"VariableDeclaration","scope":15448,"src":"50845:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15433,"name":"uint8","nodeType":"ElementaryTypeName","src":"50845:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"50830:28:58"},"returnParameters":{"id":15438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15437,"mutability":"mutable","name":"result","nameLocation":"50889:6:58","nodeType":"VariableDeclaration","scope":15448,"src":"50882:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15436,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50882:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"50881:15:58"},"scope":16305,"src":"50809:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15467,"nodeType":"Block","src":"51181:231:58","statements":[{"assignments":[15460],"declarations":[{"constant":false,"id":15460,"mutability":"mutable","name":"oldValue","nameLocation":"51198:8:58","nodeType":"VariableDeclaration","scope":15467,"src":"51191:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15459,"name":"bytes1","nodeType":"ElementaryTypeName","src":"51191:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":15465,"initialValue":{"arguments":[{"id":15462,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15450,"src":"51222:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15463,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15454,"src":"51228:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15461,"name":"extract_28_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15448,"src":"51209:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes28,uint8) pure returns (bytes1)"}},"id":15464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51209:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"51191:44:58"},{"AST":{"nativeSrc":"51270:136:58","nodeType":"YulBlock","src":"51270:136:58","statements":[{"nativeSrc":"51284:37:58","nodeType":"YulAssignment","src":"51284:37:58","value":{"arguments":[{"name":"value","nativeSrc":"51297:5:58","nodeType":"YulIdentifier","src":"51297:5:58"},{"arguments":[{"kind":"number","nativeSrc":"51308:3:58","nodeType":"YulLiteral","src":"51308:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"51317:1:58","nodeType":"YulLiteral","src":"51317:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51313:3:58","nodeType":"YulIdentifier","src":"51313:3:58"},"nativeSrc":"51313:6:58","nodeType":"YulFunctionCall","src":"51313:6:58"}],"functionName":{"name":"shl","nativeSrc":"51304:3:58","nodeType":"YulIdentifier","src":"51304:3:58"},"nativeSrc":"51304:16:58","nodeType":"YulFunctionCall","src":"51304:16:58"}],"functionName":{"name":"and","nativeSrc":"51293:3:58","nodeType":"YulIdentifier","src":"51293:3:58"},"nativeSrc":"51293:28:58","nodeType":"YulFunctionCall","src":"51293:28:58"},"variableNames":[{"name":"value","nativeSrc":"51284:5:58","nodeType":"YulIdentifier","src":"51284:5:58"}]},{"nativeSrc":"51334:62:58","nodeType":"YulAssignment","src":"51334:62:58","value":{"arguments":[{"name":"self","nativeSrc":"51348:4:58","nodeType":"YulIdentifier","src":"51348:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51362:1:58","nodeType":"YulLiteral","src":"51362:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"51365:6:58","nodeType":"YulIdentifier","src":"51365:6:58"}],"functionName":{"name":"mul","nativeSrc":"51358:3:58","nodeType":"YulIdentifier","src":"51358:3:58"},"nativeSrc":"51358:14:58","nodeType":"YulFunctionCall","src":"51358:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"51378:8:58","nodeType":"YulIdentifier","src":"51378:8:58"},{"name":"value","nativeSrc":"51388:5:58","nodeType":"YulIdentifier","src":"51388:5:58"}],"functionName":{"name":"xor","nativeSrc":"51374:3:58","nodeType":"YulIdentifier","src":"51374:3:58"},"nativeSrc":"51374:20:58","nodeType":"YulFunctionCall","src":"51374:20:58"}],"functionName":{"name":"shr","nativeSrc":"51354:3:58","nodeType":"YulIdentifier","src":"51354:3:58"},"nativeSrc":"51354:41:58","nodeType":"YulFunctionCall","src":"51354:41:58"}],"functionName":{"name":"xor","nativeSrc":"51344:3:58","nodeType":"YulIdentifier","src":"51344:3:58"},"nativeSrc":"51344:52:58","nodeType":"YulFunctionCall","src":"51344:52:58"},"variableNames":[{"name":"result","nativeSrc":"51334:6:58","nodeType":"YulIdentifier","src":"51334:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15454,"isOffset":false,"isSlot":false,"src":"51365:6:58","valueSize":1},{"declaration":15460,"isOffset":false,"isSlot":false,"src":"51378:8:58","valueSize":1},{"declaration":15457,"isOffset":false,"isSlot":false,"src":"51334:6:58","valueSize":1},{"declaration":15450,"isOffset":false,"isSlot":false,"src":"51348:4:58","valueSize":1},{"declaration":15452,"isOffset":false,"isSlot":false,"src":"51284:5:58","valueSize":1},{"declaration":15452,"isOffset":false,"isSlot":false,"src":"51297:5:58","valueSize":1},{"declaration":15452,"isOffset":false,"isSlot":false,"src":"51388:5:58","valueSize":1}],"flags":["memory-safe"],"id":15466,"nodeType":"InlineAssembly","src":"51245:161:58"}]},"id":15468,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_1","nameLocation":"51087:12:58","nodeType":"FunctionDefinition","parameters":{"id":15455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15450,"mutability":"mutable","name":"self","nameLocation":"51108:4:58","nodeType":"VariableDeclaration","scope":15468,"src":"51100:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15449,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51100:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15452,"mutability":"mutable","name":"value","nameLocation":"51121:5:58","nodeType":"VariableDeclaration","scope":15468,"src":"51114:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15451,"name":"bytes1","nodeType":"ElementaryTypeName","src":"51114:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":15454,"mutability":"mutable","name":"offset","nameLocation":"51134:6:58","nodeType":"VariableDeclaration","scope":15468,"src":"51128:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15453,"name":"uint8","nodeType":"ElementaryTypeName","src":"51128:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51099:42:58"},"returnParameters":{"id":15458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15457,"mutability":"mutable","name":"result","nameLocation":"51173:6:58","nodeType":"VariableDeclaration","scope":15468,"src":"51165:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15456,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51165:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"51164:16:58"},"scope":16305,"src":"51078:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15485,"nodeType":"Block","src":"51506:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15477,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15472,"src":"51520:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3236","id":15478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51529:2:58","typeDescriptions":{"typeIdentifier":"t_rational_26_by_1","typeString":"int_const 26"},"value":"26"},"src":"51520:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15483,"nodeType":"IfStatement","src":"51516:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15480,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"51540:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51540:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15482,"nodeType":"RevertStatement","src":"51533:25:58"}},{"AST":{"nativeSrc":"51593:82:58","nodeType":"YulBlock","src":"51593:82:58","statements":[{"nativeSrc":"51607:58:58","nodeType":"YulAssignment","src":"51607:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51629:1:58","nodeType":"YulLiteral","src":"51629:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"51632:6:58","nodeType":"YulIdentifier","src":"51632:6:58"}],"functionName":{"name":"mul","nativeSrc":"51625:3:58","nodeType":"YulIdentifier","src":"51625:3:58"},"nativeSrc":"51625:14:58","nodeType":"YulFunctionCall","src":"51625:14:58"},{"name":"self","nativeSrc":"51641:4:58","nodeType":"YulIdentifier","src":"51641:4:58"}],"functionName":{"name":"shl","nativeSrc":"51621:3:58","nodeType":"YulIdentifier","src":"51621:3:58"},"nativeSrc":"51621:25:58","nodeType":"YulFunctionCall","src":"51621:25:58"},{"arguments":[{"kind":"number","nativeSrc":"51652:3:58","nodeType":"YulLiteral","src":"51652:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"51661:1:58","nodeType":"YulLiteral","src":"51661:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51657:3:58","nodeType":"YulIdentifier","src":"51657:3:58"},"nativeSrc":"51657:6:58","nodeType":"YulFunctionCall","src":"51657:6:58"}],"functionName":{"name":"shl","nativeSrc":"51648:3:58","nodeType":"YulIdentifier","src":"51648:3:58"},"nativeSrc":"51648:16:58","nodeType":"YulFunctionCall","src":"51648:16:58"}],"functionName":{"name":"and","nativeSrc":"51617:3:58","nodeType":"YulIdentifier","src":"51617:3:58"},"nativeSrc":"51617:48:58","nodeType":"YulFunctionCall","src":"51617:48:58"},"variableNames":[{"name":"result","nativeSrc":"51607:6:58","nodeType":"YulIdentifier","src":"51607:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15472,"isOffset":false,"isSlot":false,"src":"51632:6:58","valueSize":1},{"declaration":15475,"isOffset":false,"isSlot":false,"src":"51607:6:58","valueSize":1},{"declaration":15470,"isOffset":false,"isSlot":false,"src":"51641:4:58","valueSize":1}],"flags":["memory-safe"],"id":15484,"nodeType":"InlineAssembly","src":"51568:107:58"}]},"id":15486,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_2","nameLocation":"51427:12:58","nodeType":"FunctionDefinition","parameters":{"id":15473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15470,"mutability":"mutable","name":"self","nameLocation":"51448:4:58","nodeType":"VariableDeclaration","scope":15486,"src":"51440:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15469,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51440:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15472,"mutability":"mutable","name":"offset","nameLocation":"51460:6:58","nodeType":"VariableDeclaration","scope":15486,"src":"51454:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15471,"name":"uint8","nodeType":"ElementaryTypeName","src":"51454:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51439:28:58"},"returnParameters":{"id":15476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15475,"mutability":"mutable","name":"result","nameLocation":"51498:6:58","nodeType":"VariableDeclaration","scope":15486,"src":"51491:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15474,"name":"bytes2","nodeType":"ElementaryTypeName","src":"51491:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"51490:15:58"},"scope":16305,"src":"51418:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15505,"nodeType":"Block","src":"51790:231:58","statements":[{"assignments":[15498],"declarations":[{"constant":false,"id":15498,"mutability":"mutable","name":"oldValue","nameLocation":"51807:8:58","nodeType":"VariableDeclaration","scope":15505,"src":"51800:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15497,"name":"bytes2","nodeType":"ElementaryTypeName","src":"51800:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":15503,"initialValue":{"arguments":[{"id":15500,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15488,"src":"51831:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15501,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15492,"src":"51837:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15499,"name":"extract_28_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15486,"src":"51818:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes28,uint8) pure returns (bytes2)"}},"id":15502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51818:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"51800:44:58"},{"AST":{"nativeSrc":"51879:136:58","nodeType":"YulBlock","src":"51879:136:58","statements":[{"nativeSrc":"51893:37:58","nodeType":"YulAssignment","src":"51893:37:58","value":{"arguments":[{"name":"value","nativeSrc":"51906:5:58","nodeType":"YulIdentifier","src":"51906:5:58"},{"arguments":[{"kind":"number","nativeSrc":"51917:3:58","nodeType":"YulLiteral","src":"51917:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"51926:1:58","nodeType":"YulLiteral","src":"51926:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51922:3:58","nodeType":"YulIdentifier","src":"51922:3:58"},"nativeSrc":"51922:6:58","nodeType":"YulFunctionCall","src":"51922:6:58"}],"functionName":{"name":"shl","nativeSrc":"51913:3:58","nodeType":"YulIdentifier","src":"51913:3:58"},"nativeSrc":"51913:16:58","nodeType":"YulFunctionCall","src":"51913:16:58"}],"functionName":{"name":"and","nativeSrc":"51902:3:58","nodeType":"YulIdentifier","src":"51902:3:58"},"nativeSrc":"51902:28:58","nodeType":"YulFunctionCall","src":"51902:28:58"},"variableNames":[{"name":"value","nativeSrc":"51893:5:58","nodeType":"YulIdentifier","src":"51893:5:58"}]},{"nativeSrc":"51943:62:58","nodeType":"YulAssignment","src":"51943:62:58","value":{"arguments":[{"name":"self","nativeSrc":"51957:4:58","nodeType":"YulIdentifier","src":"51957:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51971:1:58","nodeType":"YulLiteral","src":"51971:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"51974:6:58","nodeType":"YulIdentifier","src":"51974:6:58"}],"functionName":{"name":"mul","nativeSrc":"51967:3:58","nodeType":"YulIdentifier","src":"51967:3:58"},"nativeSrc":"51967:14:58","nodeType":"YulFunctionCall","src":"51967:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"51987:8:58","nodeType":"YulIdentifier","src":"51987:8:58"},{"name":"value","nativeSrc":"51997:5:58","nodeType":"YulIdentifier","src":"51997:5:58"}],"functionName":{"name":"xor","nativeSrc":"51983:3:58","nodeType":"YulIdentifier","src":"51983:3:58"},"nativeSrc":"51983:20:58","nodeType":"YulFunctionCall","src":"51983:20:58"}],"functionName":{"name":"shr","nativeSrc":"51963:3:58","nodeType":"YulIdentifier","src":"51963:3:58"},"nativeSrc":"51963:41:58","nodeType":"YulFunctionCall","src":"51963:41:58"}],"functionName":{"name":"xor","nativeSrc":"51953:3:58","nodeType":"YulIdentifier","src":"51953:3:58"},"nativeSrc":"51953:52:58","nodeType":"YulFunctionCall","src":"51953:52:58"},"variableNames":[{"name":"result","nativeSrc":"51943:6:58","nodeType":"YulIdentifier","src":"51943:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15492,"isOffset":false,"isSlot":false,"src":"51974:6:58","valueSize":1},{"declaration":15498,"isOffset":false,"isSlot":false,"src":"51987:8:58","valueSize":1},{"declaration":15495,"isOffset":false,"isSlot":false,"src":"51943:6:58","valueSize":1},{"declaration":15488,"isOffset":false,"isSlot":false,"src":"51957:4:58","valueSize":1},{"declaration":15490,"isOffset":false,"isSlot":false,"src":"51893:5:58","valueSize":1},{"declaration":15490,"isOffset":false,"isSlot":false,"src":"51906:5:58","valueSize":1},{"declaration":15490,"isOffset":false,"isSlot":false,"src":"51997:5:58","valueSize":1}],"flags":["memory-safe"],"id":15504,"nodeType":"InlineAssembly","src":"51854:161:58"}]},"id":15506,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_2","nameLocation":"51696:12:58","nodeType":"FunctionDefinition","parameters":{"id":15493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15488,"mutability":"mutable","name":"self","nameLocation":"51717:4:58","nodeType":"VariableDeclaration","scope":15506,"src":"51709:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15487,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51709:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15490,"mutability":"mutable","name":"value","nameLocation":"51730:5:58","nodeType":"VariableDeclaration","scope":15506,"src":"51723:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15489,"name":"bytes2","nodeType":"ElementaryTypeName","src":"51723:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":15492,"mutability":"mutable","name":"offset","nameLocation":"51743:6:58","nodeType":"VariableDeclaration","scope":15506,"src":"51737:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15491,"name":"uint8","nodeType":"ElementaryTypeName","src":"51737:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51708:42:58"},"returnParameters":{"id":15496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15495,"mutability":"mutable","name":"result","nameLocation":"51782:6:58","nodeType":"VariableDeclaration","scope":15506,"src":"51774:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15494,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51774:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"51773:16:58"},"scope":16305,"src":"51687:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15523,"nodeType":"Block","src":"52115:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15515,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15510,"src":"52129:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3234","id":15516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52138:2:58","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"52129:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15521,"nodeType":"IfStatement","src":"52125:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15518,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"52149:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52149:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15520,"nodeType":"RevertStatement","src":"52142:25:58"}},{"AST":{"nativeSrc":"52202:82:58","nodeType":"YulBlock","src":"52202:82:58","statements":[{"nativeSrc":"52216:58:58","nodeType":"YulAssignment","src":"52216:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52238:1:58","nodeType":"YulLiteral","src":"52238:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"52241:6:58","nodeType":"YulIdentifier","src":"52241:6:58"}],"functionName":{"name":"mul","nativeSrc":"52234:3:58","nodeType":"YulIdentifier","src":"52234:3:58"},"nativeSrc":"52234:14:58","nodeType":"YulFunctionCall","src":"52234:14:58"},{"name":"self","nativeSrc":"52250:4:58","nodeType":"YulIdentifier","src":"52250:4:58"}],"functionName":{"name":"shl","nativeSrc":"52230:3:58","nodeType":"YulIdentifier","src":"52230:3:58"},"nativeSrc":"52230:25:58","nodeType":"YulFunctionCall","src":"52230:25:58"},{"arguments":[{"kind":"number","nativeSrc":"52261:3:58","nodeType":"YulLiteral","src":"52261:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"52270:1:58","nodeType":"YulLiteral","src":"52270:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"52266:3:58","nodeType":"YulIdentifier","src":"52266:3:58"},"nativeSrc":"52266:6:58","nodeType":"YulFunctionCall","src":"52266:6:58"}],"functionName":{"name":"shl","nativeSrc":"52257:3:58","nodeType":"YulIdentifier","src":"52257:3:58"},"nativeSrc":"52257:16:58","nodeType":"YulFunctionCall","src":"52257:16:58"}],"functionName":{"name":"and","nativeSrc":"52226:3:58","nodeType":"YulIdentifier","src":"52226:3:58"},"nativeSrc":"52226:48:58","nodeType":"YulFunctionCall","src":"52226:48:58"},"variableNames":[{"name":"result","nativeSrc":"52216:6:58","nodeType":"YulIdentifier","src":"52216:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15510,"isOffset":false,"isSlot":false,"src":"52241:6:58","valueSize":1},{"declaration":15513,"isOffset":false,"isSlot":false,"src":"52216:6:58","valueSize":1},{"declaration":15508,"isOffset":false,"isSlot":false,"src":"52250:4:58","valueSize":1}],"flags":["memory-safe"],"id":15522,"nodeType":"InlineAssembly","src":"52177:107:58"}]},"id":15524,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_4","nameLocation":"52036:12:58","nodeType":"FunctionDefinition","parameters":{"id":15511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15508,"mutability":"mutable","name":"self","nameLocation":"52057:4:58","nodeType":"VariableDeclaration","scope":15524,"src":"52049:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15507,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52049:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15510,"mutability":"mutable","name":"offset","nameLocation":"52069:6:58","nodeType":"VariableDeclaration","scope":15524,"src":"52063:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15509,"name":"uint8","nodeType":"ElementaryTypeName","src":"52063:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52048:28:58"},"returnParameters":{"id":15514,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15513,"mutability":"mutable","name":"result","nameLocation":"52107:6:58","nodeType":"VariableDeclaration","scope":15524,"src":"52100:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15512,"name":"bytes4","nodeType":"ElementaryTypeName","src":"52100:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"52099:15:58"},"scope":16305,"src":"52027:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15543,"nodeType":"Block","src":"52399:231:58","statements":[{"assignments":[15536],"declarations":[{"constant":false,"id":15536,"mutability":"mutable","name":"oldValue","nameLocation":"52416:8:58","nodeType":"VariableDeclaration","scope":15543,"src":"52409:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15535,"name":"bytes4","nodeType":"ElementaryTypeName","src":"52409:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":15541,"initialValue":{"arguments":[{"id":15538,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15526,"src":"52440:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15539,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15530,"src":"52446:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15537,"name":"extract_28_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15524,"src":"52427:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes28,uint8) pure returns (bytes4)"}},"id":15540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52427:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"52409:44:58"},{"AST":{"nativeSrc":"52488:136:58","nodeType":"YulBlock","src":"52488:136:58","statements":[{"nativeSrc":"52502:37:58","nodeType":"YulAssignment","src":"52502:37:58","value":{"arguments":[{"name":"value","nativeSrc":"52515:5:58","nodeType":"YulIdentifier","src":"52515:5:58"},{"arguments":[{"kind":"number","nativeSrc":"52526:3:58","nodeType":"YulLiteral","src":"52526:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"52535:1:58","nodeType":"YulLiteral","src":"52535:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"52531:3:58","nodeType":"YulIdentifier","src":"52531:3:58"},"nativeSrc":"52531:6:58","nodeType":"YulFunctionCall","src":"52531:6:58"}],"functionName":{"name":"shl","nativeSrc":"52522:3:58","nodeType":"YulIdentifier","src":"52522:3:58"},"nativeSrc":"52522:16:58","nodeType":"YulFunctionCall","src":"52522:16:58"}],"functionName":{"name":"and","nativeSrc":"52511:3:58","nodeType":"YulIdentifier","src":"52511:3:58"},"nativeSrc":"52511:28:58","nodeType":"YulFunctionCall","src":"52511:28:58"},"variableNames":[{"name":"value","nativeSrc":"52502:5:58","nodeType":"YulIdentifier","src":"52502:5:58"}]},{"nativeSrc":"52552:62:58","nodeType":"YulAssignment","src":"52552:62:58","value":{"arguments":[{"name":"self","nativeSrc":"52566:4:58","nodeType":"YulIdentifier","src":"52566:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52580:1:58","nodeType":"YulLiteral","src":"52580:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"52583:6:58","nodeType":"YulIdentifier","src":"52583:6:58"}],"functionName":{"name":"mul","nativeSrc":"52576:3:58","nodeType":"YulIdentifier","src":"52576:3:58"},"nativeSrc":"52576:14:58","nodeType":"YulFunctionCall","src":"52576:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"52596:8:58","nodeType":"YulIdentifier","src":"52596:8:58"},{"name":"value","nativeSrc":"52606:5:58","nodeType":"YulIdentifier","src":"52606:5:58"}],"functionName":{"name":"xor","nativeSrc":"52592:3:58","nodeType":"YulIdentifier","src":"52592:3:58"},"nativeSrc":"52592:20:58","nodeType":"YulFunctionCall","src":"52592:20:58"}],"functionName":{"name":"shr","nativeSrc":"52572:3:58","nodeType":"YulIdentifier","src":"52572:3:58"},"nativeSrc":"52572:41:58","nodeType":"YulFunctionCall","src":"52572:41:58"}],"functionName":{"name":"xor","nativeSrc":"52562:3:58","nodeType":"YulIdentifier","src":"52562:3:58"},"nativeSrc":"52562:52:58","nodeType":"YulFunctionCall","src":"52562:52:58"},"variableNames":[{"name":"result","nativeSrc":"52552:6:58","nodeType":"YulIdentifier","src":"52552:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15530,"isOffset":false,"isSlot":false,"src":"52583:6:58","valueSize":1},{"declaration":15536,"isOffset":false,"isSlot":false,"src":"52596:8:58","valueSize":1},{"declaration":15533,"isOffset":false,"isSlot":false,"src":"52552:6:58","valueSize":1},{"declaration":15526,"isOffset":false,"isSlot":false,"src":"52566:4:58","valueSize":1},{"declaration":15528,"isOffset":false,"isSlot":false,"src":"52502:5:58","valueSize":1},{"declaration":15528,"isOffset":false,"isSlot":false,"src":"52515:5:58","valueSize":1},{"declaration":15528,"isOffset":false,"isSlot":false,"src":"52606:5:58","valueSize":1}],"flags":["memory-safe"],"id":15542,"nodeType":"InlineAssembly","src":"52463:161:58"}]},"id":15544,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_4","nameLocation":"52305:12:58","nodeType":"FunctionDefinition","parameters":{"id":15531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15526,"mutability":"mutable","name":"self","nameLocation":"52326:4:58","nodeType":"VariableDeclaration","scope":15544,"src":"52318:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15525,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52318:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15528,"mutability":"mutable","name":"value","nameLocation":"52339:5:58","nodeType":"VariableDeclaration","scope":15544,"src":"52332:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15527,"name":"bytes4","nodeType":"ElementaryTypeName","src":"52332:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":15530,"mutability":"mutable","name":"offset","nameLocation":"52352:6:58","nodeType":"VariableDeclaration","scope":15544,"src":"52346:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15529,"name":"uint8","nodeType":"ElementaryTypeName","src":"52346:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52317:42:58"},"returnParameters":{"id":15534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15533,"mutability":"mutable","name":"result","nameLocation":"52391:6:58","nodeType":"VariableDeclaration","scope":15544,"src":"52383:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15532,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52383:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"52382:16:58"},"scope":16305,"src":"52296:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15561,"nodeType":"Block","src":"52724:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15553,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15548,"src":"52738:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3232","id":15554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52747:2:58","typeDescriptions":{"typeIdentifier":"t_rational_22_by_1","typeString":"int_const 22"},"value":"22"},"src":"52738:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15559,"nodeType":"IfStatement","src":"52734:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15556,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"52758:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52758:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15558,"nodeType":"RevertStatement","src":"52751:25:58"}},{"AST":{"nativeSrc":"52811:82:58","nodeType":"YulBlock","src":"52811:82:58","statements":[{"nativeSrc":"52825:58:58","nodeType":"YulAssignment","src":"52825:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52847:1:58","nodeType":"YulLiteral","src":"52847:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"52850:6:58","nodeType":"YulIdentifier","src":"52850:6:58"}],"functionName":{"name":"mul","nativeSrc":"52843:3:58","nodeType":"YulIdentifier","src":"52843:3:58"},"nativeSrc":"52843:14:58","nodeType":"YulFunctionCall","src":"52843:14:58"},{"name":"self","nativeSrc":"52859:4:58","nodeType":"YulIdentifier","src":"52859:4:58"}],"functionName":{"name":"shl","nativeSrc":"52839:3:58","nodeType":"YulIdentifier","src":"52839:3:58"},"nativeSrc":"52839:25:58","nodeType":"YulFunctionCall","src":"52839:25:58"},{"arguments":[{"kind":"number","nativeSrc":"52870:3:58","nodeType":"YulLiteral","src":"52870:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"52879:1:58","nodeType":"YulLiteral","src":"52879:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"52875:3:58","nodeType":"YulIdentifier","src":"52875:3:58"},"nativeSrc":"52875:6:58","nodeType":"YulFunctionCall","src":"52875:6:58"}],"functionName":{"name":"shl","nativeSrc":"52866:3:58","nodeType":"YulIdentifier","src":"52866:3:58"},"nativeSrc":"52866:16:58","nodeType":"YulFunctionCall","src":"52866:16:58"}],"functionName":{"name":"and","nativeSrc":"52835:3:58","nodeType":"YulIdentifier","src":"52835:3:58"},"nativeSrc":"52835:48:58","nodeType":"YulFunctionCall","src":"52835:48:58"},"variableNames":[{"name":"result","nativeSrc":"52825:6:58","nodeType":"YulIdentifier","src":"52825:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15548,"isOffset":false,"isSlot":false,"src":"52850:6:58","valueSize":1},{"declaration":15551,"isOffset":false,"isSlot":false,"src":"52825:6:58","valueSize":1},{"declaration":15546,"isOffset":false,"isSlot":false,"src":"52859:4:58","valueSize":1}],"flags":["memory-safe"],"id":15560,"nodeType":"InlineAssembly","src":"52786:107:58"}]},"id":15562,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_6","nameLocation":"52645:12:58","nodeType":"FunctionDefinition","parameters":{"id":15549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15546,"mutability":"mutable","name":"self","nameLocation":"52666:4:58","nodeType":"VariableDeclaration","scope":15562,"src":"52658:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15545,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52658:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15548,"mutability":"mutable","name":"offset","nameLocation":"52678:6:58","nodeType":"VariableDeclaration","scope":15562,"src":"52672:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15547,"name":"uint8","nodeType":"ElementaryTypeName","src":"52672:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52657:28:58"},"returnParameters":{"id":15552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15551,"mutability":"mutable","name":"result","nameLocation":"52716:6:58","nodeType":"VariableDeclaration","scope":15562,"src":"52709:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15550,"name":"bytes6","nodeType":"ElementaryTypeName","src":"52709:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"52708:15:58"},"scope":16305,"src":"52636:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15581,"nodeType":"Block","src":"53008:231:58","statements":[{"assignments":[15574],"declarations":[{"constant":false,"id":15574,"mutability":"mutable","name":"oldValue","nameLocation":"53025:8:58","nodeType":"VariableDeclaration","scope":15581,"src":"53018:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15573,"name":"bytes6","nodeType":"ElementaryTypeName","src":"53018:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":15579,"initialValue":{"arguments":[{"id":15576,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15564,"src":"53049:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15577,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15568,"src":"53055:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15575,"name":"extract_28_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15562,"src":"53036:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes28,uint8) pure returns (bytes6)"}},"id":15578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53036:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"53018:44:58"},{"AST":{"nativeSrc":"53097:136:58","nodeType":"YulBlock","src":"53097:136:58","statements":[{"nativeSrc":"53111:37:58","nodeType":"YulAssignment","src":"53111:37:58","value":{"arguments":[{"name":"value","nativeSrc":"53124:5:58","nodeType":"YulIdentifier","src":"53124:5:58"},{"arguments":[{"kind":"number","nativeSrc":"53135:3:58","nodeType":"YulLiteral","src":"53135:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"53144:1:58","nodeType":"YulLiteral","src":"53144:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"53140:3:58","nodeType":"YulIdentifier","src":"53140:3:58"},"nativeSrc":"53140:6:58","nodeType":"YulFunctionCall","src":"53140:6:58"}],"functionName":{"name":"shl","nativeSrc":"53131:3:58","nodeType":"YulIdentifier","src":"53131:3:58"},"nativeSrc":"53131:16:58","nodeType":"YulFunctionCall","src":"53131:16:58"}],"functionName":{"name":"and","nativeSrc":"53120:3:58","nodeType":"YulIdentifier","src":"53120:3:58"},"nativeSrc":"53120:28:58","nodeType":"YulFunctionCall","src":"53120:28:58"},"variableNames":[{"name":"value","nativeSrc":"53111:5:58","nodeType":"YulIdentifier","src":"53111:5:58"}]},{"nativeSrc":"53161:62:58","nodeType":"YulAssignment","src":"53161:62:58","value":{"arguments":[{"name":"self","nativeSrc":"53175:4:58","nodeType":"YulIdentifier","src":"53175:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"53189:1:58","nodeType":"YulLiteral","src":"53189:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"53192:6:58","nodeType":"YulIdentifier","src":"53192:6:58"}],"functionName":{"name":"mul","nativeSrc":"53185:3:58","nodeType":"YulIdentifier","src":"53185:3:58"},"nativeSrc":"53185:14:58","nodeType":"YulFunctionCall","src":"53185:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"53205:8:58","nodeType":"YulIdentifier","src":"53205:8:58"},{"name":"value","nativeSrc":"53215:5:58","nodeType":"YulIdentifier","src":"53215:5:58"}],"functionName":{"name":"xor","nativeSrc":"53201:3:58","nodeType":"YulIdentifier","src":"53201:3:58"},"nativeSrc":"53201:20:58","nodeType":"YulFunctionCall","src":"53201:20:58"}],"functionName":{"name":"shr","nativeSrc":"53181:3:58","nodeType":"YulIdentifier","src":"53181:3:58"},"nativeSrc":"53181:41:58","nodeType":"YulFunctionCall","src":"53181:41:58"}],"functionName":{"name":"xor","nativeSrc":"53171:3:58","nodeType":"YulIdentifier","src":"53171:3:58"},"nativeSrc":"53171:52:58","nodeType":"YulFunctionCall","src":"53171:52:58"},"variableNames":[{"name":"result","nativeSrc":"53161:6:58","nodeType":"YulIdentifier","src":"53161:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15568,"isOffset":false,"isSlot":false,"src":"53192:6:58","valueSize":1},{"declaration":15574,"isOffset":false,"isSlot":false,"src":"53205:8:58","valueSize":1},{"declaration":15571,"isOffset":false,"isSlot":false,"src":"53161:6:58","valueSize":1},{"declaration":15564,"isOffset":false,"isSlot":false,"src":"53175:4:58","valueSize":1},{"declaration":15566,"isOffset":false,"isSlot":false,"src":"53111:5:58","valueSize":1},{"declaration":15566,"isOffset":false,"isSlot":false,"src":"53124:5:58","valueSize":1},{"declaration":15566,"isOffset":false,"isSlot":false,"src":"53215:5:58","valueSize":1}],"flags":["memory-safe"],"id":15580,"nodeType":"InlineAssembly","src":"53072:161:58"}]},"id":15582,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_6","nameLocation":"52914:12:58","nodeType":"FunctionDefinition","parameters":{"id":15569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15564,"mutability":"mutable","name":"self","nameLocation":"52935:4:58","nodeType":"VariableDeclaration","scope":15582,"src":"52927:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15563,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52927:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15566,"mutability":"mutable","name":"value","nameLocation":"52948:5:58","nodeType":"VariableDeclaration","scope":15582,"src":"52941:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15565,"name":"bytes6","nodeType":"ElementaryTypeName","src":"52941:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":15568,"mutability":"mutable","name":"offset","nameLocation":"52961:6:58","nodeType":"VariableDeclaration","scope":15582,"src":"52955:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15567,"name":"uint8","nodeType":"ElementaryTypeName","src":"52955:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52926:42:58"},"returnParameters":{"id":15572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15571,"mutability":"mutable","name":"result","nameLocation":"53000:6:58","nodeType":"VariableDeclaration","scope":15582,"src":"52992:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15570,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52992:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"52991:16:58"},"scope":16305,"src":"52905:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15599,"nodeType":"Block","src":"53333:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15591,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15586,"src":"53347:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":15592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"53356:2:58","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"53347:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15597,"nodeType":"IfStatement","src":"53343:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15594,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"53367:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53367:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15596,"nodeType":"RevertStatement","src":"53360:25:58"}},{"AST":{"nativeSrc":"53420:82:58","nodeType":"YulBlock","src":"53420:82:58","statements":[{"nativeSrc":"53434:58:58","nodeType":"YulAssignment","src":"53434:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"53456:1:58","nodeType":"YulLiteral","src":"53456:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"53459:6:58","nodeType":"YulIdentifier","src":"53459:6:58"}],"functionName":{"name":"mul","nativeSrc":"53452:3:58","nodeType":"YulIdentifier","src":"53452:3:58"},"nativeSrc":"53452:14:58","nodeType":"YulFunctionCall","src":"53452:14:58"},{"name":"self","nativeSrc":"53468:4:58","nodeType":"YulIdentifier","src":"53468:4:58"}],"functionName":{"name":"shl","nativeSrc":"53448:3:58","nodeType":"YulIdentifier","src":"53448:3:58"},"nativeSrc":"53448:25:58","nodeType":"YulFunctionCall","src":"53448:25:58"},{"arguments":[{"kind":"number","nativeSrc":"53479:3:58","nodeType":"YulLiteral","src":"53479:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"53488:1:58","nodeType":"YulLiteral","src":"53488:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"53484:3:58","nodeType":"YulIdentifier","src":"53484:3:58"},"nativeSrc":"53484:6:58","nodeType":"YulFunctionCall","src":"53484:6:58"}],"functionName":{"name":"shl","nativeSrc":"53475:3:58","nodeType":"YulIdentifier","src":"53475:3:58"},"nativeSrc":"53475:16:58","nodeType":"YulFunctionCall","src":"53475:16:58"}],"functionName":{"name":"and","nativeSrc":"53444:3:58","nodeType":"YulIdentifier","src":"53444:3:58"},"nativeSrc":"53444:48:58","nodeType":"YulFunctionCall","src":"53444:48:58"},"variableNames":[{"name":"result","nativeSrc":"53434:6:58","nodeType":"YulIdentifier","src":"53434:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15586,"isOffset":false,"isSlot":false,"src":"53459:6:58","valueSize":1},{"declaration":15589,"isOffset":false,"isSlot":false,"src":"53434:6:58","valueSize":1},{"declaration":15584,"isOffset":false,"isSlot":false,"src":"53468:4:58","valueSize":1}],"flags":["memory-safe"],"id":15598,"nodeType":"InlineAssembly","src":"53395:107:58"}]},"id":15600,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_8","nameLocation":"53254:12:58","nodeType":"FunctionDefinition","parameters":{"id":15587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15584,"mutability":"mutable","name":"self","nameLocation":"53275:4:58","nodeType":"VariableDeclaration","scope":15600,"src":"53267:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15583,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53267:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15586,"mutability":"mutable","name":"offset","nameLocation":"53287:6:58","nodeType":"VariableDeclaration","scope":15600,"src":"53281:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15585,"name":"uint8","nodeType":"ElementaryTypeName","src":"53281:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"53266:28:58"},"returnParameters":{"id":15590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15589,"mutability":"mutable","name":"result","nameLocation":"53325:6:58","nodeType":"VariableDeclaration","scope":15600,"src":"53318:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":15588,"name":"bytes8","nodeType":"ElementaryTypeName","src":"53318:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"53317:15:58"},"scope":16305,"src":"53245:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15619,"nodeType":"Block","src":"53617:231:58","statements":[{"assignments":[15612],"declarations":[{"constant":false,"id":15612,"mutability":"mutable","name":"oldValue","nameLocation":"53634:8:58","nodeType":"VariableDeclaration","scope":15619,"src":"53627:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":15611,"name":"bytes8","nodeType":"ElementaryTypeName","src":"53627:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":15617,"initialValue":{"arguments":[{"id":15614,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15602,"src":"53658:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15615,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15606,"src":"53664:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15613,"name":"extract_28_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15600,"src":"53645:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes28,uint8) pure returns (bytes8)"}},"id":15616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53645:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"53627:44:58"},{"AST":{"nativeSrc":"53706:136:58","nodeType":"YulBlock","src":"53706:136:58","statements":[{"nativeSrc":"53720:37:58","nodeType":"YulAssignment","src":"53720:37:58","value":{"arguments":[{"name":"value","nativeSrc":"53733:5:58","nodeType":"YulIdentifier","src":"53733:5:58"},{"arguments":[{"kind":"number","nativeSrc":"53744:3:58","nodeType":"YulLiteral","src":"53744:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"53753:1:58","nodeType":"YulLiteral","src":"53753:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"53749:3:58","nodeType":"YulIdentifier","src":"53749:3:58"},"nativeSrc":"53749:6:58","nodeType":"YulFunctionCall","src":"53749:6:58"}],"functionName":{"name":"shl","nativeSrc":"53740:3:58","nodeType":"YulIdentifier","src":"53740:3:58"},"nativeSrc":"53740:16:58","nodeType":"YulFunctionCall","src":"53740:16:58"}],"functionName":{"name":"and","nativeSrc":"53729:3:58","nodeType":"YulIdentifier","src":"53729:3:58"},"nativeSrc":"53729:28:58","nodeType":"YulFunctionCall","src":"53729:28:58"},"variableNames":[{"name":"value","nativeSrc":"53720:5:58","nodeType":"YulIdentifier","src":"53720:5:58"}]},{"nativeSrc":"53770:62:58","nodeType":"YulAssignment","src":"53770:62:58","value":{"arguments":[{"name":"self","nativeSrc":"53784:4:58","nodeType":"YulIdentifier","src":"53784:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"53798:1:58","nodeType":"YulLiteral","src":"53798:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"53801:6:58","nodeType":"YulIdentifier","src":"53801:6:58"}],"functionName":{"name":"mul","nativeSrc":"53794:3:58","nodeType":"YulIdentifier","src":"53794:3:58"},"nativeSrc":"53794:14:58","nodeType":"YulFunctionCall","src":"53794:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"53814:8:58","nodeType":"YulIdentifier","src":"53814:8:58"},{"name":"value","nativeSrc":"53824:5:58","nodeType":"YulIdentifier","src":"53824:5:58"}],"functionName":{"name":"xor","nativeSrc":"53810:3:58","nodeType":"YulIdentifier","src":"53810:3:58"},"nativeSrc":"53810:20:58","nodeType":"YulFunctionCall","src":"53810:20:58"}],"functionName":{"name":"shr","nativeSrc":"53790:3:58","nodeType":"YulIdentifier","src":"53790:3:58"},"nativeSrc":"53790:41:58","nodeType":"YulFunctionCall","src":"53790:41:58"}],"functionName":{"name":"xor","nativeSrc":"53780:3:58","nodeType":"YulIdentifier","src":"53780:3:58"},"nativeSrc":"53780:52:58","nodeType":"YulFunctionCall","src":"53780:52:58"},"variableNames":[{"name":"result","nativeSrc":"53770:6:58","nodeType":"YulIdentifier","src":"53770:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15606,"isOffset":false,"isSlot":false,"src":"53801:6:58","valueSize":1},{"declaration":15612,"isOffset":false,"isSlot":false,"src":"53814:8:58","valueSize":1},{"declaration":15609,"isOffset":false,"isSlot":false,"src":"53770:6:58","valueSize":1},{"declaration":15602,"isOffset":false,"isSlot":false,"src":"53784:4:58","valueSize":1},{"declaration":15604,"isOffset":false,"isSlot":false,"src":"53720:5:58","valueSize":1},{"declaration":15604,"isOffset":false,"isSlot":false,"src":"53733:5:58","valueSize":1},{"declaration":15604,"isOffset":false,"isSlot":false,"src":"53824:5:58","valueSize":1}],"flags":["memory-safe"],"id":15618,"nodeType":"InlineAssembly","src":"53681:161:58"}]},"id":15620,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_8","nameLocation":"53523:12:58","nodeType":"FunctionDefinition","parameters":{"id":15607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15602,"mutability":"mutable","name":"self","nameLocation":"53544:4:58","nodeType":"VariableDeclaration","scope":15620,"src":"53536:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15601,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53536:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15604,"mutability":"mutable","name":"value","nameLocation":"53557:5:58","nodeType":"VariableDeclaration","scope":15620,"src":"53550:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":15603,"name":"bytes8","nodeType":"ElementaryTypeName","src":"53550:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":15606,"mutability":"mutable","name":"offset","nameLocation":"53570:6:58","nodeType":"VariableDeclaration","scope":15620,"src":"53564:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15605,"name":"uint8","nodeType":"ElementaryTypeName","src":"53564:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"53535:42:58"},"returnParameters":{"id":15610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15609,"mutability":"mutable","name":"result","nameLocation":"53609:6:58","nodeType":"VariableDeclaration","scope":15620,"src":"53601:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15608,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53601:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"53600:16:58"},"scope":16305,"src":"53514:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15637,"nodeType":"Block","src":"53944:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15629,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15624,"src":"53958:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":15630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"53967:2:58","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"53958:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15635,"nodeType":"IfStatement","src":"53954:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15632,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"53978:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53978:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15634,"nodeType":"RevertStatement","src":"53971:25:58"}},{"AST":{"nativeSrc":"54031:82:58","nodeType":"YulBlock","src":"54031:82:58","statements":[{"nativeSrc":"54045:58:58","nodeType":"YulAssignment","src":"54045:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"54067:1:58","nodeType":"YulLiteral","src":"54067:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"54070:6:58","nodeType":"YulIdentifier","src":"54070:6:58"}],"functionName":{"name":"mul","nativeSrc":"54063:3:58","nodeType":"YulIdentifier","src":"54063:3:58"},"nativeSrc":"54063:14:58","nodeType":"YulFunctionCall","src":"54063:14:58"},{"name":"self","nativeSrc":"54079:4:58","nodeType":"YulIdentifier","src":"54079:4:58"}],"functionName":{"name":"shl","nativeSrc":"54059:3:58","nodeType":"YulIdentifier","src":"54059:3:58"},"nativeSrc":"54059:25:58","nodeType":"YulFunctionCall","src":"54059:25:58"},{"arguments":[{"kind":"number","nativeSrc":"54090:3:58","nodeType":"YulLiteral","src":"54090:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"54099:1:58","nodeType":"YulLiteral","src":"54099:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54095:3:58","nodeType":"YulIdentifier","src":"54095:3:58"},"nativeSrc":"54095:6:58","nodeType":"YulFunctionCall","src":"54095:6:58"}],"functionName":{"name":"shl","nativeSrc":"54086:3:58","nodeType":"YulIdentifier","src":"54086:3:58"},"nativeSrc":"54086:16:58","nodeType":"YulFunctionCall","src":"54086:16:58"}],"functionName":{"name":"and","nativeSrc":"54055:3:58","nodeType":"YulIdentifier","src":"54055:3:58"},"nativeSrc":"54055:48:58","nodeType":"YulFunctionCall","src":"54055:48:58"},"variableNames":[{"name":"result","nativeSrc":"54045:6:58","nodeType":"YulIdentifier","src":"54045:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15624,"isOffset":false,"isSlot":false,"src":"54070:6:58","valueSize":1},{"declaration":15627,"isOffset":false,"isSlot":false,"src":"54045:6:58","valueSize":1},{"declaration":15622,"isOffset":false,"isSlot":false,"src":"54079:4:58","valueSize":1}],"flags":["memory-safe"],"id":15636,"nodeType":"InlineAssembly","src":"54006:107:58"}]},"id":15638,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_10","nameLocation":"53863:13:58","nodeType":"FunctionDefinition","parameters":{"id":15625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15622,"mutability":"mutable","name":"self","nameLocation":"53885:4:58","nodeType":"VariableDeclaration","scope":15638,"src":"53877:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15621,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53877:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15624,"mutability":"mutable","name":"offset","nameLocation":"53897:6:58","nodeType":"VariableDeclaration","scope":15638,"src":"53891:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15623,"name":"uint8","nodeType":"ElementaryTypeName","src":"53891:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"53876:28:58"},"returnParameters":{"id":15628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15627,"mutability":"mutable","name":"result","nameLocation":"53936:6:58","nodeType":"VariableDeclaration","scope":15638,"src":"53928:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":15626,"name":"bytes10","nodeType":"ElementaryTypeName","src":"53928:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"53927:16:58"},"scope":16305,"src":"53854:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15657,"nodeType":"Block","src":"54230:233:58","statements":[{"assignments":[15650],"declarations":[{"constant":false,"id":15650,"mutability":"mutable","name":"oldValue","nameLocation":"54248:8:58","nodeType":"VariableDeclaration","scope":15657,"src":"54240:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":15649,"name":"bytes10","nodeType":"ElementaryTypeName","src":"54240:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":15655,"initialValue":{"arguments":[{"id":15652,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15640,"src":"54273:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15653,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15644,"src":"54279:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15651,"name":"extract_28_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15638,"src":"54259:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes28,uint8) pure returns (bytes10)"}},"id":15654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54259:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"54240:46:58"},{"AST":{"nativeSrc":"54321:136:58","nodeType":"YulBlock","src":"54321:136:58","statements":[{"nativeSrc":"54335:37:58","nodeType":"YulAssignment","src":"54335:37:58","value":{"arguments":[{"name":"value","nativeSrc":"54348:5:58","nodeType":"YulIdentifier","src":"54348:5:58"},{"arguments":[{"kind":"number","nativeSrc":"54359:3:58","nodeType":"YulLiteral","src":"54359:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"54368:1:58","nodeType":"YulLiteral","src":"54368:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54364:3:58","nodeType":"YulIdentifier","src":"54364:3:58"},"nativeSrc":"54364:6:58","nodeType":"YulFunctionCall","src":"54364:6:58"}],"functionName":{"name":"shl","nativeSrc":"54355:3:58","nodeType":"YulIdentifier","src":"54355:3:58"},"nativeSrc":"54355:16:58","nodeType":"YulFunctionCall","src":"54355:16:58"}],"functionName":{"name":"and","nativeSrc":"54344:3:58","nodeType":"YulIdentifier","src":"54344:3:58"},"nativeSrc":"54344:28:58","nodeType":"YulFunctionCall","src":"54344:28:58"},"variableNames":[{"name":"value","nativeSrc":"54335:5:58","nodeType":"YulIdentifier","src":"54335:5:58"}]},{"nativeSrc":"54385:62:58","nodeType":"YulAssignment","src":"54385:62:58","value":{"arguments":[{"name":"self","nativeSrc":"54399:4:58","nodeType":"YulIdentifier","src":"54399:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"54413:1:58","nodeType":"YulLiteral","src":"54413:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"54416:6:58","nodeType":"YulIdentifier","src":"54416:6:58"}],"functionName":{"name":"mul","nativeSrc":"54409:3:58","nodeType":"YulIdentifier","src":"54409:3:58"},"nativeSrc":"54409:14:58","nodeType":"YulFunctionCall","src":"54409:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"54429:8:58","nodeType":"YulIdentifier","src":"54429:8:58"},{"name":"value","nativeSrc":"54439:5:58","nodeType":"YulIdentifier","src":"54439:5:58"}],"functionName":{"name":"xor","nativeSrc":"54425:3:58","nodeType":"YulIdentifier","src":"54425:3:58"},"nativeSrc":"54425:20:58","nodeType":"YulFunctionCall","src":"54425:20:58"}],"functionName":{"name":"shr","nativeSrc":"54405:3:58","nodeType":"YulIdentifier","src":"54405:3:58"},"nativeSrc":"54405:41:58","nodeType":"YulFunctionCall","src":"54405:41:58"}],"functionName":{"name":"xor","nativeSrc":"54395:3:58","nodeType":"YulIdentifier","src":"54395:3:58"},"nativeSrc":"54395:52:58","nodeType":"YulFunctionCall","src":"54395:52:58"},"variableNames":[{"name":"result","nativeSrc":"54385:6:58","nodeType":"YulIdentifier","src":"54385:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15644,"isOffset":false,"isSlot":false,"src":"54416:6:58","valueSize":1},{"declaration":15650,"isOffset":false,"isSlot":false,"src":"54429:8:58","valueSize":1},{"declaration":15647,"isOffset":false,"isSlot":false,"src":"54385:6:58","valueSize":1},{"declaration":15640,"isOffset":false,"isSlot":false,"src":"54399:4:58","valueSize":1},{"declaration":15642,"isOffset":false,"isSlot":false,"src":"54335:5:58","valueSize":1},{"declaration":15642,"isOffset":false,"isSlot":false,"src":"54348:5:58","valueSize":1},{"declaration":15642,"isOffset":false,"isSlot":false,"src":"54439:5:58","valueSize":1}],"flags":["memory-safe"],"id":15656,"nodeType":"InlineAssembly","src":"54296:161:58"}]},"id":15658,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_10","nameLocation":"54134:13:58","nodeType":"FunctionDefinition","parameters":{"id":15645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15640,"mutability":"mutable","name":"self","nameLocation":"54156:4:58","nodeType":"VariableDeclaration","scope":15658,"src":"54148:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15639,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54148:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15642,"mutability":"mutable","name":"value","nameLocation":"54170:5:58","nodeType":"VariableDeclaration","scope":15658,"src":"54162:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":15641,"name":"bytes10","nodeType":"ElementaryTypeName","src":"54162:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":15644,"mutability":"mutable","name":"offset","nameLocation":"54183:6:58","nodeType":"VariableDeclaration","scope":15658,"src":"54177:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15643,"name":"uint8","nodeType":"ElementaryTypeName","src":"54177:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"54147:43:58"},"returnParameters":{"id":15648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15647,"mutability":"mutable","name":"result","nameLocation":"54222:6:58","nodeType":"VariableDeclaration","scope":15658,"src":"54214:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15646,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54214:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"54213:16:58"},"scope":16305,"src":"54125:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15675,"nodeType":"Block","src":"54559:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15667,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15662,"src":"54573:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":15668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"54582:2:58","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"54573:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15673,"nodeType":"IfStatement","src":"54569:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15670,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"54593:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54593:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15672,"nodeType":"RevertStatement","src":"54586:25:58"}},{"AST":{"nativeSrc":"54646:82:58","nodeType":"YulBlock","src":"54646:82:58","statements":[{"nativeSrc":"54660:58:58","nodeType":"YulAssignment","src":"54660:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"54682:1:58","nodeType":"YulLiteral","src":"54682:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"54685:6:58","nodeType":"YulIdentifier","src":"54685:6:58"}],"functionName":{"name":"mul","nativeSrc":"54678:3:58","nodeType":"YulIdentifier","src":"54678:3:58"},"nativeSrc":"54678:14:58","nodeType":"YulFunctionCall","src":"54678:14:58"},{"name":"self","nativeSrc":"54694:4:58","nodeType":"YulIdentifier","src":"54694:4:58"}],"functionName":{"name":"shl","nativeSrc":"54674:3:58","nodeType":"YulIdentifier","src":"54674:3:58"},"nativeSrc":"54674:25:58","nodeType":"YulFunctionCall","src":"54674:25:58"},{"arguments":[{"kind":"number","nativeSrc":"54705:3:58","nodeType":"YulLiteral","src":"54705:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"54714:1:58","nodeType":"YulLiteral","src":"54714:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54710:3:58","nodeType":"YulIdentifier","src":"54710:3:58"},"nativeSrc":"54710:6:58","nodeType":"YulFunctionCall","src":"54710:6:58"}],"functionName":{"name":"shl","nativeSrc":"54701:3:58","nodeType":"YulIdentifier","src":"54701:3:58"},"nativeSrc":"54701:16:58","nodeType":"YulFunctionCall","src":"54701:16:58"}],"functionName":{"name":"and","nativeSrc":"54670:3:58","nodeType":"YulIdentifier","src":"54670:3:58"},"nativeSrc":"54670:48:58","nodeType":"YulFunctionCall","src":"54670:48:58"},"variableNames":[{"name":"result","nativeSrc":"54660:6:58","nodeType":"YulIdentifier","src":"54660:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15662,"isOffset":false,"isSlot":false,"src":"54685:6:58","valueSize":1},{"declaration":15665,"isOffset":false,"isSlot":false,"src":"54660:6:58","valueSize":1},{"declaration":15660,"isOffset":false,"isSlot":false,"src":"54694:4:58","valueSize":1}],"flags":["memory-safe"],"id":15674,"nodeType":"InlineAssembly","src":"54621:107:58"}]},"id":15676,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_12","nameLocation":"54478:13:58","nodeType":"FunctionDefinition","parameters":{"id":15663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15660,"mutability":"mutable","name":"self","nameLocation":"54500:4:58","nodeType":"VariableDeclaration","scope":15676,"src":"54492:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15659,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54492:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15662,"mutability":"mutable","name":"offset","nameLocation":"54512:6:58","nodeType":"VariableDeclaration","scope":15676,"src":"54506:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15661,"name":"uint8","nodeType":"ElementaryTypeName","src":"54506:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"54491:28:58"},"returnParameters":{"id":15666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15665,"mutability":"mutable","name":"result","nameLocation":"54551:6:58","nodeType":"VariableDeclaration","scope":15676,"src":"54543:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":15664,"name":"bytes12","nodeType":"ElementaryTypeName","src":"54543:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"54542:16:58"},"scope":16305,"src":"54469:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15695,"nodeType":"Block","src":"54845:233:58","statements":[{"assignments":[15688],"declarations":[{"constant":false,"id":15688,"mutability":"mutable","name":"oldValue","nameLocation":"54863:8:58","nodeType":"VariableDeclaration","scope":15695,"src":"54855:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":15687,"name":"bytes12","nodeType":"ElementaryTypeName","src":"54855:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":15693,"initialValue":{"arguments":[{"id":15690,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15678,"src":"54888:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15691,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15682,"src":"54894:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15689,"name":"extract_28_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15676,"src":"54874:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes28,uint8) pure returns (bytes12)"}},"id":15692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54874:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"54855:46:58"},{"AST":{"nativeSrc":"54936:136:58","nodeType":"YulBlock","src":"54936:136:58","statements":[{"nativeSrc":"54950:37:58","nodeType":"YulAssignment","src":"54950:37:58","value":{"arguments":[{"name":"value","nativeSrc":"54963:5:58","nodeType":"YulIdentifier","src":"54963:5:58"},{"arguments":[{"kind":"number","nativeSrc":"54974:3:58","nodeType":"YulLiteral","src":"54974:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"54983:1:58","nodeType":"YulLiteral","src":"54983:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54979:3:58","nodeType":"YulIdentifier","src":"54979:3:58"},"nativeSrc":"54979:6:58","nodeType":"YulFunctionCall","src":"54979:6:58"}],"functionName":{"name":"shl","nativeSrc":"54970:3:58","nodeType":"YulIdentifier","src":"54970:3:58"},"nativeSrc":"54970:16:58","nodeType":"YulFunctionCall","src":"54970:16:58"}],"functionName":{"name":"and","nativeSrc":"54959:3:58","nodeType":"YulIdentifier","src":"54959:3:58"},"nativeSrc":"54959:28:58","nodeType":"YulFunctionCall","src":"54959:28:58"},"variableNames":[{"name":"value","nativeSrc":"54950:5:58","nodeType":"YulIdentifier","src":"54950:5:58"}]},{"nativeSrc":"55000:62:58","nodeType":"YulAssignment","src":"55000:62:58","value":{"arguments":[{"name":"self","nativeSrc":"55014:4:58","nodeType":"YulIdentifier","src":"55014:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55028:1:58","nodeType":"YulLiteral","src":"55028:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"55031:6:58","nodeType":"YulIdentifier","src":"55031:6:58"}],"functionName":{"name":"mul","nativeSrc":"55024:3:58","nodeType":"YulIdentifier","src":"55024:3:58"},"nativeSrc":"55024:14:58","nodeType":"YulFunctionCall","src":"55024:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"55044:8:58","nodeType":"YulIdentifier","src":"55044:8:58"},{"name":"value","nativeSrc":"55054:5:58","nodeType":"YulIdentifier","src":"55054:5:58"}],"functionName":{"name":"xor","nativeSrc":"55040:3:58","nodeType":"YulIdentifier","src":"55040:3:58"},"nativeSrc":"55040:20:58","nodeType":"YulFunctionCall","src":"55040:20:58"}],"functionName":{"name":"shr","nativeSrc":"55020:3:58","nodeType":"YulIdentifier","src":"55020:3:58"},"nativeSrc":"55020:41:58","nodeType":"YulFunctionCall","src":"55020:41:58"}],"functionName":{"name":"xor","nativeSrc":"55010:3:58","nodeType":"YulIdentifier","src":"55010:3:58"},"nativeSrc":"55010:52:58","nodeType":"YulFunctionCall","src":"55010:52:58"},"variableNames":[{"name":"result","nativeSrc":"55000:6:58","nodeType":"YulIdentifier","src":"55000:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15682,"isOffset":false,"isSlot":false,"src":"55031:6:58","valueSize":1},{"declaration":15688,"isOffset":false,"isSlot":false,"src":"55044:8:58","valueSize":1},{"declaration":15685,"isOffset":false,"isSlot":false,"src":"55000:6:58","valueSize":1},{"declaration":15678,"isOffset":false,"isSlot":false,"src":"55014:4:58","valueSize":1},{"declaration":15680,"isOffset":false,"isSlot":false,"src":"54950:5:58","valueSize":1},{"declaration":15680,"isOffset":false,"isSlot":false,"src":"54963:5:58","valueSize":1},{"declaration":15680,"isOffset":false,"isSlot":false,"src":"55054:5:58","valueSize":1}],"flags":["memory-safe"],"id":15694,"nodeType":"InlineAssembly","src":"54911:161:58"}]},"id":15696,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_12","nameLocation":"54749:13:58","nodeType":"FunctionDefinition","parameters":{"id":15683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15678,"mutability":"mutable","name":"self","nameLocation":"54771:4:58","nodeType":"VariableDeclaration","scope":15696,"src":"54763:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15677,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54763:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15680,"mutability":"mutable","name":"value","nameLocation":"54785:5:58","nodeType":"VariableDeclaration","scope":15696,"src":"54777:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":15679,"name":"bytes12","nodeType":"ElementaryTypeName","src":"54777:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":15682,"mutability":"mutable","name":"offset","nameLocation":"54798:6:58","nodeType":"VariableDeclaration","scope":15696,"src":"54792:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15681,"name":"uint8","nodeType":"ElementaryTypeName","src":"54792:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"54762:43:58"},"returnParameters":{"id":15686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15685,"mutability":"mutable","name":"result","nameLocation":"54837:6:58","nodeType":"VariableDeclaration","scope":15696,"src":"54829:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15684,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54829:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"54828:16:58"},"scope":16305,"src":"54740:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15713,"nodeType":"Block","src":"55174:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15705,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15700,"src":"55188:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":15706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"55197:2:58","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"55188:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15711,"nodeType":"IfStatement","src":"55184:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15708,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"55208:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55208:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15710,"nodeType":"RevertStatement","src":"55201:25:58"}},{"AST":{"nativeSrc":"55261:82:58","nodeType":"YulBlock","src":"55261:82:58","statements":[{"nativeSrc":"55275:58:58","nodeType":"YulAssignment","src":"55275:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55297:1:58","nodeType":"YulLiteral","src":"55297:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"55300:6:58","nodeType":"YulIdentifier","src":"55300:6:58"}],"functionName":{"name":"mul","nativeSrc":"55293:3:58","nodeType":"YulIdentifier","src":"55293:3:58"},"nativeSrc":"55293:14:58","nodeType":"YulFunctionCall","src":"55293:14:58"},{"name":"self","nativeSrc":"55309:4:58","nodeType":"YulIdentifier","src":"55309:4:58"}],"functionName":{"name":"shl","nativeSrc":"55289:3:58","nodeType":"YulIdentifier","src":"55289:3:58"},"nativeSrc":"55289:25:58","nodeType":"YulFunctionCall","src":"55289:25:58"},{"arguments":[{"kind":"number","nativeSrc":"55320:3:58","nodeType":"YulLiteral","src":"55320:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"55329:1:58","nodeType":"YulLiteral","src":"55329:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"55325:3:58","nodeType":"YulIdentifier","src":"55325:3:58"},"nativeSrc":"55325:6:58","nodeType":"YulFunctionCall","src":"55325:6:58"}],"functionName":{"name":"shl","nativeSrc":"55316:3:58","nodeType":"YulIdentifier","src":"55316:3:58"},"nativeSrc":"55316:16:58","nodeType":"YulFunctionCall","src":"55316:16:58"}],"functionName":{"name":"and","nativeSrc":"55285:3:58","nodeType":"YulIdentifier","src":"55285:3:58"},"nativeSrc":"55285:48:58","nodeType":"YulFunctionCall","src":"55285:48:58"},"variableNames":[{"name":"result","nativeSrc":"55275:6:58","nodeType":"YulIdentifier","src":"55275:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15700,"isOffset":false,"isSlot":false,"src":"55300:6:58","valueSize":1},{"declaration":15703,"isOffset":false,"isSlot":false,"src":"55275:6:58","valueSize":1},{"declaration":15698,"isOffset":false,"isSlot":false,"src":"55309:4:58","valueSize":1}],"flags":["memory-safe"],"id":15712,"nodeType":"InlineAssembly","src":"55236:107:58"}]},"id":15714,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_16","nameLocation":"55093:13:58","nodeType":"FunctionDefinition","parameters":{"id":15701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15698,"mutability":"mutable","name":"self","nameLocation":"55115:4:58","nodeType":"VariableDeclaration","scope":15714,"src":"55107:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15697,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55107:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15700,"mutability":"mutable","name":"offset","nameLocation":"55127:6:58","nodeType":"VariableDeclaration","scope":15714,"src":"55121:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15699,"name":"uint8","nodeType":"ElementaryTypeName","src":"55121:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55106:28:58"},"returnParameters":{"id":15704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15703,"mutability":"mutable","name":"result","nameLocation":"55166:6:58","nodeType":"VariableDeclaration","scope":15714,"src":"55158:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15702,"name":"bytes16","nodeType":"ElementaryTypeName","src":"55158:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"55157:16:58"},"scope":16305,"src":"55084:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15733,"nodeType":"Block","src":"55460:233:58","statements":[{"assignments":[15726],"declarations":[{"constant":false,"id":15726,"mutability":"mutable","name":"oldValue","nameLocation":"55478:8:58","nodeType":"VariableDeclaration","scope":15733,"src":"55470:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15725,"name":"bytes16","nodeType":"ElementaryTypeName","src":"55470:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":15731,"initialValue":{"arguments":[{"id":15728,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15716,"src":"55503:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15729,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15720,"src":"55509:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15727,"name":"extract_28_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15714,"src":"55489:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes28,uint8) pure returns (bytes16)"}},"id":15730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55489:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"55470:46:58"},{"AST":{"nativeSrc":"55551:136:58","nodeType":"YulBlock","src":"55551:136:58","statements":[{"nativeSrc":"55565:37:58","nodeType":"YulAssignment","src":"55565:37:58","value":{"arguments":[{"name":"value","nativeSrc":"55578:5:58","nodeType":"YulIdentifier","src":"55578:5:58"},{"arguments":[{"kind":"number","nativeSrc":"55589:3:58","nodeType":"YulLiteral","src":"55589:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"55598:1:58","nodeType":"YulLiteral","src":"55598:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"55594:3:58","nodeType":"YulIdentifier","src":"55594:3:58"},"nativeSrc":"55594:6:58","nodeType":"YulFunctionCall","src":"55594:6:58"}],"functionName":{"name":"shl","nativeSrc":"55585:3:58","nodeType":"YulIdentifier","src":"55585:3:58"},"nativeSrc":"55585:16:58","nodeType":"YulFunctionCall","src":"55585:16:58"}],"functionName":{"name":"and","nativeSrc":"55574:3:58","nodeType":"YulIdentifier","src":"55574:3:58"},"nativeSrc":"55574:28:58","nodeType":"YulFunctionCall","src":"55574:28:58"},"variableNames":[{"name":"value","nativeSrc":"55565:5:58","nodeType":"YulIdentifier","src":"55565:5:58"}]},{"nativeSrc":"55615:62:58","nodeType":"YulAssignment","src":"55615:62:58","value":{"arguments":[{"name":"self","nativeSrc":"55629:4:58","nodeType":"YulIdentifier","src":"55629:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55643:1:58","nodeType":"YulLiteral","src":"55643:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"55646:6:58","nodeType":"YulIdentifier","src":"55646:6:58"}],"functionName":{"name":"mul","nativeSrc":"55639:3:58","nodeType":"YulIdentifier","src":"55639:3:58"},"nativeSrc":"55639:14:58","nodeType":"YulFunctionCall","src":"55639:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"55659:8:58","nodeType":"YulIdentifier","src":"55659:8:58"},{"name":"value","nativeSrc":"55669:5:58","nodeType":"YulIdentifier","src":"55669:5:58"}],"functionName":{"name":"xor","nativeSrc":"55655:3:58","nodeType":"YulIdentifier","src":"55655:3:58"},"nativeSrc":"55655:20:58","nodeType":"YulFunctionCall","src":"55655:20:58"}],"functionName":{"name":"shr","nativeSrc":"55635:3:58","nodeType":"YulIdentifier","src":"55635:3:58"},"nativeSrc":"55635:41:58","nodeType":"YulFunctionCall","src":"55635:41:58"}],"functionName":{"name":"xor","nativeSrc":"55625:3:58","nodeType":"YulIdentifier","src":"55625:3:58"},"nativeSrc":"55625:52:58","nodeType":"YulFunctionCall","src":"55625:52:58"},"variableNames":[{"name":"result","nativeSrc":"55615:6:58","nodeType":"YulIdentifier","src":"55615:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15720,"isOffset":false,"isSlot":false,"src":"55646:6:58","valueSize":1},{"declaration":15726,"isOffset":false,"isSlot":false,"src":"55659:8:58","valueSize":1},{"declaration":15723,"isOffset":false,"isSlot":false,"src":"55615:6:58","valueSize":1},{"declaration":15716,"isOffset":false,"isSlot":false,"src":"55629:4:58","valueSize":1},{"declaration":15718,"isOffset":false,"isSlot":false,"src":"55565:5:58","valueSize":1},{"declaration":15718,"isOffset":false,"isSlot":false,"src":"55578:5:58","valueSize":1},{"declaration":15718,"isOffset":false,"isSlot":false,"src":"55669:5:58","valueSize":1}],"flags":["memory-safe"],"id":15732,"nodeType":"InlineAssembly","src":"55526:161:58"}]},"id":15734,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_16","nameLocation":"55364:13:58","nodeType":"FunctionDefinition","parameters":{"id":15721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15716,"mutability":"mutable","name":"self","nameLocation":"55386:4:58","nodeType":"VariableDeclaration","scope":15734,"src":"55378:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15715,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55378:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15718,"mutability":"mutable","name":"value","nameLocation":"55400:5:58","nodeType":"VariableDeclaration","scope":15734,"src":"55392:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":15717,"name":"bytes16","nodeType":"ElementaryTypeName","src":"55392:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":15720,"mutability":"mutable","name":"offset","nameLocation":"55413:6:58","nodeType":"VariableDeclaration","scope":15734,"src":"55407:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15719,"name":"uint8","nodeType":"ElementaryTypeName","src":"55407:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55377:43:58"},"returnParameters":{"id":15724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15723,"mutability":"mutable","name":"result","nameLocation":"55452:6:58","nodeType":"VariableDeclaration","scope":15734,"src":"55444:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15722,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55444:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"55443:16:58"},"scope":16305,"src":"55355:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15751,"nodeType":"Block","src":"55789:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15743,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15738,"src":"55803:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":15744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"55812:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"55803:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15749,"nodeType":"IfStatement","src":"55799:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15746,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"55822:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55822:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15748,"nodeType":"RevertStatement","src":"55815:25:58"}},{"AST":{"nativeSrc":"55875:81:58","nodeType":"YulBlock","src":"55875:81:58","statements":[{"nativeSrc":"55889:57:58","nodeType":"YulAssignment","src":"55889:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55911:1:58","nodeType":"YulLiteral","src":"55911:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"55914:6:58","nodeType":"YulIdentifier","src":"55914:6:58"}],"functionName":{"name":"mul","nativeSrc":"55907:3:58","nodeType":"YulIdentifier","src":"55907:3:58"},"nativeSrc":"55907:14:58","nodeType":"YulFunctionCall","src":"55907:14:58"},{"name":"self","nativeSrc":"55923:4:58","nodeType":"YulIdentifier","src":"55923:4:58"}],"functionName":{"name":"shl","nativeSrc":"55903:3:58","nodeType":"YulIdentifier","src":"55903:3:58"},"nativeSrc":"55903:25:58","nodeType":"YulFunctionCall","src":"55903:25:58"},{"arguments":[{"kind":"number","nativeSrc":"55934:2:58","nodeType":"YulLiteral","src":"55934:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"55942:1:58","nodeType":"YulLiteral","src":"55942:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"55938:3:58","nodeType":"YulIdentifier","src":"55938:3:58"},"nativeSrc":"55938:6:58","nodeType":"YulFunctionCall","src":"55938:6:58"}],"functionName":{"name":"shl","nativeSrc":"55930:3:58","nodeType":"YulIdentifier","src":"55930:3:58"},"nativeSrc":"55930:15:58","nodeType":"YulFunctionCall","src":"55930:15:58"}],"functionName":{"name":"and","nativeSrc":"55899:3:58","nodeType":"YulIdentifier","src":"55899:3:58"},"nativeSrc":"55899:47:58","nodeType":"YulFunctionCall","src":"55899:47:58"},"variableNames":[{"name":"result","nativeSrc":"55889:6:58","nodeType":"YulIdentifier","src":"55889:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15738,"isOffset":false,"isSlot":false,"src":"55914:6:58","valueSize":1},{"declaration":15741,"isOffset":false,"isSlot":false,"src":"55889:6:58","valueSize":1},{"declaration":15736,"isOffset":false,"isSlot":false,"src":"55923:4:58","valueSize":1}],"flags":["memory-safe"],"id":15750,"nodeType":"InlineAssembly","src":"55850:106:58"}]},"id":15752,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_20","nameLocation":"55708:13:58","nodeType":"FunctionDefinition","parameters":{"id":15739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15736,"mutability":"mutable","name":"self","nameLocation":"55730:4:58","nodeType":"VariableDeclaration","scope":15752,"src":"55722:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15735,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55722:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15738,"mutability":"mutable","name":"offset","nameLocation":"55742:6:58","nodeType":"VariableDeclaration","scope":15752,"src":"55736:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15737,"name":"uint8","nodeType":"ElementaryTypeName","src":"55736:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55721:28:58"},"returnParameters":{"id":15742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15741,"mutability":"mutable","name":"result","nameLocation":"55781:6:58","nodeType":"VariableDeclaration","scope":15752,"src":"55773:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15740,"name":"bytes20","nodeType":"ElementaryTypeName","src":"55773:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"55772:16:58"},"scope":16305,"src":"55699:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15771,"nodeType":"Block","src":"56073:232:58","statements":[{"assignments":[15764],"declarations":[{"constant":false,"id":15764,"mutability":"mutable","name":"oldValue","nameLocation":"56091:8:58","nodeType":"VariableDeclaration","scope":15771,"src":"56083:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15763,"name":"bytes20","nodeType":"ElementaryTypeName","src":"56083:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":15769,"initialValue":{"arguments":[{"id":15766,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15754,"src":"56116:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15767,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15758,"src":"56122:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15765,"name":"extract_28_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15752,"src":"56102:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes28,uint8) pure returns (bytes20)"}},"id":15768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56102:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"56083:46:58"},{"AST":{"nativeSrc":"56164:135:58","nodeType":"YulBlock","src":"56164:135:58","statements":[{"nativeSrc":"56178:36:58","nodeType":"YulAssignment","src":"56178:36:58","value":{"arguments":[{"name":"value","nativeSrc":"56191:5:58","nodeType":"YulIdentifier","src":"56191:5:58"},{"arguments":[{"kind":"number","nativeSrc":"56202:2:58","nodeType":"YulLiteral","src":"56202:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"56210:1:58","nodeType":"YulLiteral","src":"56210:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"56206:3:58","nodeType":"YulIdentifier","src":"56206:3:58"},"nativeSrc":"56206:6:58","nodeType":"YulFunctionCall","src":"56206:6:58"}],"functionName":{"name":"shl","nativeSrc":"56198:3:58","nodeType":"YulIdentifier","src":"56198:3:58"},"nativeSrc":"56198:15:58","nodeType":"YulFunctionCall","src":"56198:15:58"}],"functionName":{"name":"and","nativeSrc":"56187:3:58","nodeType":"YulIdentifier","src":"56187:3:58"},"nativeSrc":"56187:27:58","nodeType":"YulFunctionCall","src":"56187:27:58"},"variableNames":[{"name":"value","nativeSrc":"56178:5:58","nodeType":"YulIdentifier","src":"56178:5:58"}]},{"nativeSrc":"56227:62:58","nodeType":"YulAssignment","src":"56227:62:58","value":{"arguments":[{"name":"self","nativeSrc":"56241:4:58","nodeType":"YulIdentifier","src":"56241:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"56255:1:58","nodeType":"YulLiteral","src":"56255:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"56258:6:58","nodeType":"YulIdentifier","src":"56258:6:58"}],"functionName":{"name":"mul","nativeSrc":"56251:3:58","nodeType":"YulIdentifier","src":"56251:3:58"},"nativeSrc":"56251:14:58","nodeType":"YulFunctionCall","src":"56251:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"56271:8:58","nodeType":"YulIdentifier","src":"56271:8:58"},{"name":"value","nativeSrc":"56281:5:58","nodeType":"YulIdentifier","src":"56281:5:58"}],"functionName":{"name":"xor","nativeSrc":"56267:3:58","nodeType":"YulIdentifier","src":"56267:3:58"},"nativeSrc":"56267:20:58","nodeType":"YulFunctionCall","src":"56267:20:58"}],"functionName":{"name":"shr","nativeSrc":"56247:3:58","nodeType":"YulIdentifier","src":"56247:3:58"},"nativeSrc":"56247:41:58","nodeType":"YulFunctionCall","src":"56247:41:58"}],"functionName":{"name":"xor","nativeSrc":"56237:3:58","nodeType":"YulIdentifier","src":"56237:3:58"},"nativeSrc":"56237:52:58","nodeType":"YulFunctionCall","src":"56237:52:58"},"variableNames":[{"name":"result","nativeSrc":"56227:6:58","nodeType":"YulIdentifier","src":"56227:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15758,"isOffset":false,"isSlot":false,"src":"56258:6:58","valueSize":1},{"declaration":15764,"isOffset":false,"isSlot":false,"src":"56271:8:58","valueSize":1},{"declaration":15761,"isOffset":false,"isSlot":false,"src":"56227:6:58","valueSize":1},{"declaration":15754,"isOffset":false,"isSlot":false,"src":"56241:4:58","valueSize":1},{"declaration":15756,"isOffset":false,"isSlot":false,"src":"56178:5:58","valueSize":1},{"declaration":15756,"isOffset":false,"isSlot":false,"src":"56191:5:58","valueSize":1},{"declaration":15756,"isOffset":false,"isSlot":false,"src":"56281:5:58","valueSize":1}],"flags":["memory-safe"],"id":15770,"nodeType":"InlineAssembly","src":"56139:160:58"}]},"id":15772,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_20","nameLocation":"55977:13:58","nodeType":"FunctionDefinition","parameters":{"id":15759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15754,"mutability":"mutable","name":"self","nameLocation":"55999:4:58","nodeType":"VariableDeclaration","scope":15772,"src":"55991:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15753,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55991:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15756,"mutability":"mutable","name":"value","nameLocation":"56013:5:58","nodeType":"VariableDeclaration","scope":15772,"src":"56005:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15755,"name":"bytes20","nodeType":"ElementaryTypeName","src":"56005:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":15758,"mutability":"mutable","name":"offset","nameLocation":"56026:6:58","nodeType":"VariableDeclaration","scope":15772,"src":"56020:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15757,"name":"uint8","nodeType":"ElementaryTypeName","src":"56020:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55990:43:58"},"returnParameters":{"id":15762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15761,"mutability":"mutable","name":"result","nameLocation":"56065:6:58","nodeType":"VariableDeclaration","scope":15772,"src":"56057:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15760,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56057:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"56056:16:58"},"scope":16305,"src":"55968:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15789,"nodeType":"Block","src":"56401:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15781,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15776,"src":"56415:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":15782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"56424:1:58","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"56415:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15787,"nodeType":"IfStatement","src":"56411:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15784,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"56434:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56434:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15786,"nodeType":"RevertStatement","src":"56427:25:58"}},{"AST":{"nativeSrc":"56487:81:58","nodeType":"YulBlock","src":"56487:81:58","statements":[{"nativeSrc":"56501:57:58","nodeType":"YulAssignment","src":"56501:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"56523:1:58","nodeType":"YulLiteral","src":"56523:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"56526:6:58","nodeType":"YulIdentifier","src":"56526:6:58"}],"functionName":{"name":"mul","nativeSrc":"56519:3:58","nodeType":"YulIdentifier","src":"56519:3:58"},"nativeSrc":"56519:14:58","nodeType":"YulFunctionCall","src":"56519:14:58"},{"name":"self","nativeSrc":"56535:4:58","nodeType":"YulIdentifier","src":"56535:4:58"}],"functionName":{"name":"shl","nativeSrc":"56515:3:58","nodeType":"YulIdentifier","src":"56515:3:58"},"nativeSrc":"56515:25:58","nodeType":"YulFunctionCall","src":"56515:25:58"},{"arguments":[{"kind":"number","nativeSrc":"56546:2:58","nodeType":"YulLiteral","src":"56546:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"56554:1:58","nodeType":"YulLiteral","src":"56554:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"56550:3:58","nodeType":"YulIdentifier","src":"56550:3:58"},"nativeSrc":"56550:6:58","nodeType":"YulFunctionCall","src":"56550:6:58"}],"functionName":{"name":"shl","nativeSrc":"56542:3:58","nodeType":"YulIdentifier","src":"56542:3:58"},"nativeSrc":"56542:15:58","nodeType":"YulFunctionCall","src":"56542:15:58"}],"functionName":{"name":"and","nativeSrc":"56511:3:58","nodeType":"YulIdentifier","src":"56511:3:58"},"nativeSrc":"56511:47:58","nodeType":"YulFunctionCall","src":"56511:47:58"},"variableNames":[{"name":"result","nativeSrc":"56501:6:58","nodeType":"YulIdentifier","src":"56501:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15776,"isOffset":false,"isSlot":false,"src":"56526:6:58","valueSize":1},{"declaration":15779,"isOffset":false,"isSlot":false,"src":"56501:6:58","valueSize":1},{"declaration":15774,"isOffset":false,"isSlot":false,"src":"56535:4:58","valueSize":1}],"flags":["memory-safe"],"id":15788,"nodeType":"InlineAssembly","src":"56462:106:58"}]},"id":15790,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_22","nameLocation":"56320:13:58","nodeType":"FunctionDefinition","parameters":{"id":15777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15774,"mutability":"mutable","name":"self","nameLocation":"56342:4:58","nodeType":"VariableDeclaration","scope":15790,"src":"56334:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15773,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56334:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15776,"mutability":"mutable","name":"offset","nameLocation":"56354:6:58","nodeType":"VariableDeclaration","scope":15790,"src":"56348:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15775,"name":"uint8","nodeType":"ElementaryTypeName","src":"56348:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"56333:28:58"},"returnParameters":{"id":15780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15779,"mutability":"mutable","name":"result","nameLocation":"56393:6:58","nodeType":"VariableDeclaration","scope":15790,"src":"56385:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15778,"name":"bytes22","nodeType":"ElementaryTypeName","src":"56385:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"56384:16:58"},"scope":16305,"src":"56311:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15809,"nodeType":"Block","src":"56685:232:58","statements":[{"assignments":[15802],"declarations":[{"constant":false,"id":15802,"mutability":"mutable","name":"oldValue","nameLocation":"56703:8:58","nodeType":"VariableDeclaration","scope":15809,"src":"56695:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15801,"name":"bytes22","nodeType":"ElementaryTypeName","src":"56695:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"id":15807,"initialValue":{"arguments":[{"id":15804,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15792,"src":"56728:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15805,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15796,"src":"56734:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15803,"name":"extract_28_22","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15790,"src":"56714:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes22_$","typeString":"function (bytes28,uint8) pure returns (bytes22)"}},"id":15806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56714:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"nodeType":"VariableDeclarationStatement","src":"56695:46:58"},{"AST":{"nativeSrc":"56776:135:58","nodeType":"YulBlock","src":"56776:135:58","statements":[{"nativeSrc":"56790:36:58","nodeType":"YulAssignment","src":"56790:36:58","value":{"arguments":[{"name":"value","nativeSrc":"56803:5:58","nodeType":"YulIdentifier","src":"56803:5:58"},{"arguments":[{"kind":"number","nativeSrc":"56814:2:58","nodeType":"YulLiteral","src":"56814:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"56822:1:58","nodeType":"YulLiteral","src":"56822:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"56818:3:58","nodeType":"YulIdentifier","src":"56818:3:58"},"nativeSrc":"56818:6:58","nodeType":"YulFunctionCall","src":"56818:6:58"}],"functionName":{"name":"shl","nativeSrc":"56810:3:58","nodeType":"YulIdentifier","src":"56810:3:58"},"nativeSrc":"56810:15:58","nodeType":"YulFunctionCall","src":"56810:15:58"}],"functionName":{"name":"and","nativeSrc":"56799:3:58","nodeType":"YulIdentifier","src":"56799:3:58"},"nativeSrc":"56799:27:58","nodeType":"YulFunctionCall","src":"56799:27:58"},"variableNames":[{"name":"value","nativeSrc":"56790:5:58","nodeType":"YulIdentifier","src":"56790:5:58"}]},{"nativeSrc":"56839:62:58","nodeType":"YulAssignment","src":"56839:62:58","value":{"arguments":[{"name":"self","nativeSrc":"56853:4:58","nodeType":"YulIdentifier","src":"56853:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"56867:1:58","nodeType":"YulLiteral","src":"56867:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"56870:6:58","nodeType":"YulIdentifier","src":"56870:6:58"}],"functionName":{"name":"mul","nativeSrc":"56863:3:58","nodeType":"YulIdentifier","src":"56863:3:58"},"nativeSrc":"56863:14:58","nodeType":"YulFunctionCall","src":"56863:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"56883:8:58","nodeType":"YulIdentifier","src":"56883:8:58"},{"name":"value","nativeSrc":"56893:5:58","nodeType":"YulIdentifier","src":"56893:5:58"}],"functionName":{"name":"xor","nativeSrc":"56879:3:58","nodeType":"YulIdentifier","src":"56879:3:58"},"nativeSrc":"56879:20:58","nodeType":"YulFunctionCall","src":"56879:20:58"}],"functionName":{"name":"shr","nativeSrc":"56859:3:58","nodeType":"YulIdentifier","src":"56859:3:58"},"nativeSrc":"56859:41:58","nodeType":"YulFunctionCall","src":"56859:41:58"}],"functionName":{"name":"xor","nativeSrc":"56849:3:58","nodeType":"YulIdentifier","src":"56849:3:58"},"nativeSrc":"56849:52:58","nodeType":"YulFunctionCall","src":"56849:52:58"},"variableNames":[{"name":"result","nativeSrc":"56839:6:58","nodeType":"YulIdentifier","src":"56839:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15796,"isOffset":false,"isSlot":false,"src":"56870:6:58","valueSize":1},{"declaration":15802,"isOffset":false,"isSlot":false,"src":"56883:8:58","valueSize":1},{"declaration":15799,"isOffset":false,"isSlot":false,"src":"56839:6:58","valueSize":1},{"declaration":15792,"isOffset":false,"isSlot":false,"src":"56853:4:58","valueSize":1},{"declaration":15794,"isOffset":false,"isSlot":false,"src":"56790:5:58","valueSize":1},{"declaration":15794,"isOffset":false,"isSlot":false,"src":"56803:5:58","valueSize":1},{"declaration":15794,"isOffset":false,"isSlot":false,"src":"56893:5:58","valueSize":1}],"flags":["memory-safe"],"id":15808,"nodeType":"InlineAssembly","src":"56751:160:58"}]},"id":15810,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_22","nameLocation":"56589:13:58","nodeType":"FunctionDefinition","parameters":{"id":15797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15792,"mutability":"mutable","name":"self","nameLocation":"56611:4:58","nodeType":"VariableDeclaration","scope":15810,"src":"56603:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15791,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56603:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15794,"mutability":"mutable","name":"value","nameLocation":"56625:5:58","nodeType":"VariableDeclaration","scope":15810,"src":"56617:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":15793,"name":"bytes22","nodeType":"ElementaryTypeName","src":"56617:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":15796,"mutability":"mutable","name":"offset","nameLocation":"56638:6:58","nodeType":"VariableDeclaration","scope":15810,"src":"56632:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15795,"name":"uint8","nodeType":"ElementaryTypeName","src":"56632:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"56602:43:58"},"returnParameters":{"id":15800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15799,"mutability":"mutable","name":"result","nameLocation":"56677:6:58","nodeType":"VariableDeclaration","scope":15810,"src":"56669:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15798,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56669:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"56668:16:58"},"scope":16305,"src":"56580:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15827,"nodeType":"Block","src":"57013:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15819,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15814,"src":"57027:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":15820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"57036:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"57027:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15825,"nodeType":"IfStatement","src":"57023:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15822,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"57046:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57046:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15824,"nodeType":"RevertStatement","src":"57039:25:58"}},{"AST":{"nativeSrc":"57099:81:58","nodeType":"YulBlock","src":"57099:81:58","statements":[{"nativeSrc":"57113:57:58","nodeType":"YulAssignment","src":"57113:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"57135:1:58","nodeType":"YulLiteral","src":"57135:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"57138:6:58","nodeType":"YulIdentifier","src":"57138:6:58"}],"functionName":{"name":"mul","nativeSrc":"57131:3:58","nodeType":"YulIdentifier","src":"57131:3:58"},"nativeSrc":"57131:14:58","nodeType":"YulFunctionCall","src":"57131:14:58"},{"name":"self","nativeSrc":"57147:4:58","nodeType":"YulIdentifier","src":"57147:4:58"}],"functionName":{"name":"shl","nativeSrc":"57127:3:58","nodeType":"YulIdentifier","src":"57127:3:58"},"nativeSrc":"57127:25:58","nodeType":"YulFunctionCall","src":"57127:25:58"},{"arguments":[{"kind":"number","nativeSrc":"57158:2:58","nodeType":"YulLiteral","src":"57158:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"57166:1:58","nodeType":"YulLiteral","src":"57166:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"57162:3:58","nodeType":"YulIdentifier","src":"57162:3:58"},"nativeSrc":"57162:6:58","nodeType":"YulFunctionCall","src":"57162:6:58"}],"functionName":{"name":"shl","nativeSrc":"57154:3:58","nodeType":"YulIdentifier","src":"57154:3:58"},"nativeSrc":"57154:15:58","nodeType":"YulFunctionCall","src":"57154:15:58"}],"functionName":{"name":"and","nativeSrc":"57123:3:58","nodeType":"YulIdentifier","src":"57123:3:58"},"nativeSrc":"57123:47:58","nodeType":"YulFunctionCall","src":"57123:47:58"},"variableNames":[{"name":"result","nativeSrc":"57113:6:58","nodeType":"YulIdentifier","src":"57113:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15814,"isOffset":false,"isSlot":false,"src":"57138:6:58","valueSize":1},{"declaration":15817,"isOffset":false,"isSlot":false,"src":"57113:6:58","valueSize":1},{"declaration":15812,"isOffset":false,"isSlot":false,"src":"57147:4:58","valueSize":1}],"flags":["memory-safe"],"id":15826,"nodeType":"InlineAssembly","src":"57074:106:58"}]},"id":15828,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_24","nameLocation":"56932:13:58","nodeType":"FunctionDefinition","parameters":{"id":15815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15812,"mutability":"mutable","name":"self","nameLocation":"56954:4:58","nodeType":"VariableDeclaration","scope":15828,"src":"56946:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15811,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56946:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15814,"mutability":"mutable","name":"offset","nameLocation":"56966:6:58","nodeType":"VariableDeclaration","scope":15828,"src":"56960:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15813,"name":"uint8","nodeType":"ElementaryTypeName","src":"56960:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"56945:28:58"},"returnParameters":{"id":15818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15817,"mutability":"mutable","name":"result","nameLocation":"57005:6:58","nodeType":"VariableDeclaration","scope":15828,"src":"56997:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15816,"name":"bytes24","nodeType":"ElementaryTypeName","src":"56997:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"56996:16:58"},"scope":16305,"src":"56923:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15847,"nodeType":"Block","src":"57297:232:58","statements":[{"assignments":[15840],"declarations":[{"constant":false,"id":15840,"mutability":"mutable","name":"oldValue","nameLocation":"57315:8:58","nodeType":"VariableDeclaration","scope":15847,"src":"57307:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15839,"name":"bytes24","nodeType":"ElementaryTypeName","src":"57307:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"id":15845,"initialValue":{"arguments":[{"id":15842,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15830,"src":"57340:4:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":15843,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15834,"src":"57346:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15841,"name":"extract_28_24","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15828,"src":"57326:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes24_$","typeString":"function (bytes28,uint8) pure returns (bytes24)"}},"id":15844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57326:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"nodeType":"VariableDeclarationStatement","src":"57307:46:58"},{"AST":{"nativeSrc":"57388:135:58","nodeType":"YulBlock","src":"57388:135:58","statements":[{"nativeSrc":"57402:36:58","nodeType":"YulAssignment","src":"57402:36:58","value":{"arguments":[{"name":"value","nativeSrc":"57415:5:58","nodeType":"YulIdentifier","src":"57415:5:58"},{"arguments":[{"kind":"number","nativeSrc":"57426:2:58","nodeType":"YulLiteral","src":"57426:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"57434:1:58","nodeType":"YulLiteral","src":"57434:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"57430:3:58","nodeType":"YulIdentifier","src":"57430:3:58"},"nativeSrc":"57430:6:58","nodeType":"YulFunctionCall","src":"57430:6:58"}],"functionName":{"name":"shl","nativeSrc":"57422:3:58","nodeType":"YulIdentifier","src":"57422:3:58"},"nativeSrc":"57422:15:58","nodeType":"YulFunctionCall","src":"57422:15:58"}],"functionName":{"name":"and","nativeSrc":"57411:3:58","nodeType":"YulIdentifier","src":"57411:3:58"},"nativeSrc":"57411:27:58","nodeType":"YulFunctionCall","src":"57411:27:58"},"variableNames":[{"name":"value","nativeSrc":"57402:5:58","nodeType":"YulIdentifier","src":"57402:5:58"}]},{"nativeSrc":"57451:62:58","nodeType":"YulAssignment","src":"57451:62:58","value":{"arguments":[{"name":"self","nativeSrc":"57465:4:58","nodeType":"YulIdentifier","src":"57465:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"57479:1:58","nodeType":"YulLiteral","src":"57479:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"57482:6:58","nodeType":"YulIdentifier","src":"57482:6:58"}],"functionName":{"name":"mul","nativeSrc":"57475:3:58","nodeType":"YulIdentifier","src":"57475:3:58"},"nativeSrc":"57475:14:58","nodeType":"YulFunctionCall","src":"57475:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"57495:8:58","nodeType":"YulIdentifier","src":"57495:8:58"},{"name":"value","nativeSrc":"57505:5:58","nodeType":"YulIdentifier","src":"57505:5:58"}],"functionName":{"name":"xor","nativeSrc":"57491:3:58","nodeType":"YulIdentifier","src":"57491:3:58"},"nativeSrc":"57491:20:58","nodeType":"YulFunctionCall","src":"57491:20:58"}],"functionName":{"name":"shr","nativeSrc":"57471:3:58","nodeType":"YulIdentifier","src":"57471:3:58"},"nativeSrc":"57471:41:58","nodeType":"YulFunctionCall","src":"57471:41:58"}],"functionName":{"name":"xor","nativeSrc":"57461:3:58","nodeType":"YulIdentifier","src":"57461:3:58"},"nativeSrc":"57461:52:58","nodeType":"YulFunctionCall","src":"57461:52:58"},"variableNames":[{"name":"result","nativeSrc":"57451:6:58","nodeType":"YulIdentifier","src":"57451:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15834,"isOffset":false,"isSlot":false,"src":"57482:6:58","valueSize":1},{"declaration":15840,"isOffset":false,"isSlot":false,"src":"57495:8:58","valueSize":1},{"declaration":15837,"isOffset":false,"isSlot":false,"src":"57451:6:58","valueSize":1},{"declaration":15830,"isOffset":false,"isSlot":false,"src":"57465:4:58","valueSize":1},{"declaration":15832,"isOffset":false,"isSlot":false,"src":"57402:5:58","valueSize":1},{"declaration":15832,"isOffset":false,"isSlot":false,"src":"57415:5:58","valueSize":1},{"declaration":15832,"isOffset":false,"isSlot":false,"src":"57505:5:58","valueSize":1}],"flags":["memory-safe"],"id":15846,"nodeType":"InlineAssembly","src":"57363:160:58"}]},"id":15848,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_24","nameLocation":"57201:13:58","nodeType":"FunctionDefinition","parameters":{"id":15835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15830,"mutability":"mutable","name":"self","nameLocation":"57223:4:58","nodeType":"VariableDeclaration","scope":15848,"src":"57215:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15829,"name":"bytes28","nodeType":"ElementaryTypeName","src":"57215:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":15832,"mutability":"mutable","name":"value","nameLocation":"57237:5:58","nodeType":"VariableDeclaration","scope":15848,"src":"57229:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":15831,"name":"bytes24","nodeType":"ElementaryTypeName","src":"57229:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":15834,"mutability":"mutable","name":"offset","nameLocation":"57250:6:58","nodeType":"VariableDeclaration","scope":15848,"src":"57244:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15833,"name":"uint8","nodeType":"ElementaryTypeName","src":"57244:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"57214:43:58"},"returnParameters":{"id":15838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15837,"mutability":"mutable","name":"result","nameLocation":"57289:6:58","nodeType":"VariableDeclaration","scope":15848,"src":"57281:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":15836,"name":"bytes28","nodeType":"ElementaryTypeName","src":"57281:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"57280:16:58"},"scope":16305,"src":"57192:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15865,"nodeType":"Block","src":"57623:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15857,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15852,"src":"57637:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":15858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"57646:2:58","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"57637:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15863,"nodeType":"IfStatement","src":"57633:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15860,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"57657:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57657:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15862,"nodeType":"RevertStatement","src":"57650:25:58"}},{"AST":{"nativeSrc":"57710:82:58","nodeType":"YulBlock","src":"57710:82:58","statements":[{"nativeSrc":"57724:58:58","nodeType":"YulAssignment","src":"57724:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"57746:1:58","nodeType":"YulLiteral","src":"57746:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"57749:6:58","nodeType":"YulIdentifier","src":"57749:6:58"}],"functionName":{"name":"mul","nativeSrc":"57742:3:58","nodeType":"YulIdentifier","src":"57742:3:58"},"nativeSrc":"57742:14:58","nodeType":"YulFunctionCall","src":"57742:14:58"},{"name":"self","nativeSrc":"57758:4:58","nodeType":"YulIdentifier","src":"57758:4:58"}],"functionName":{"name":"shl","nativeSrc":"57738:3:58","nodeType":"YulIdentifier","src":"57738:3:58"},"nativeSrc":"57738:25:58","nodeType":"YulFunctionCall","src":"57738:25:58"},{"arguments":[{"kind":"number","nativeSrc":"57769:3:58","nodeType":"YulLiteral","src":"57769:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"57778:1:58","nodeType":"YulLiteral","src":"57778:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"57774:3:58","nodeType":"YulIdentifier","src":"57774:3:58"},"nativeSrc":"57774:6:58","nodeType":"YulFunctionCall","src":"57774:6:58"}],"functionName":{"name":"shl","nativeSrc":"57765:3:58","nodeType":"YulIdentifier","src":"57765:3:58"},"nativeSrc":"57765:16:58","nodeType":"YulFunctionCall","src":"57765:16:58"}],"functionName":{"name":"and","nativeSrc":"57734:3:58","nodeType":"YulIdentifier","src":"57734:3:58"},"nativeSrc":"57734:48:58","nodeType":"YulFunctionCall","src":"57734:48:58"},"variableNames":[{"name":"result","nativeSrc":"57724:6:58","nodeType":"YulIdentifier","src":"57724:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15852,"isOffset":false,"isSlot":false,"src":"57749:6:58","valueSize":1},{"declaration":15855,"isOffset":false,"isSlot":false,"src":"57724:6:58","valueSize":1},{"declaration":15850,"isOffset":false,"isSlot":false,"src":"57758:4:58","valueSize":1}],"flags":["memory-safe"],"id":15864,"nodeType":"InlineAssembly","src":"57685:107:58"}]},"id":15866,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_1","nameLocation":"57544:12:58","nodeType":"FunctionDefinition","parameters":{"id":15853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15850,"mutability":"mutable","name":"self","nameLocation":"57565:4:58","nodeType":"VariableDeclaration","scope":15866,"src":"57557:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15849,"name":"bytes32","nodeType":"ElementaryTypeName","src":"57557:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15852,"mutability":"mutable","name":"offset","nameLocation":"57577:6:58","nodeType":"VariableDeclaration","scope":15866,"src":"57571:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15851,"name":"uint8","nodeType":"ElementaryTypeName","src":"57571:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"57556:28:58"},"returnParameters":{"id":15856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15855,"mutability":"mutable","name":"result","nameLocation":"57615:6:58","nodeType":"VariableDeclaration","scope":15866,"src":"57608:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15854,"name":"bytes1","nodeType":"ElementaryTypeName","src":"57608:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"57607:15:58"},"scope":16305,"src":"57535:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15885,"nodeType":"Block","src":"57907:231:58","statements":[{"assignments":[15878],"declarations":[{"constant":false,"id":15878,"mutability":"mutable","name":"oldValue","nameLocation":"57924:8:58","nodeType":"VariableDeclaration","scope":15885,"src":"57917:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15877,"name":"bytes1","nodeType":"ElementaryTypeName","src":"57917:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":15883,"initialValue":{"arguments":[{"id":15880,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15868,"src":"57948:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15881,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15872,"src":"57954:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15879,"name":"extract_32_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15866,"src":"57935:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes32,uint8) pure returns (bytes1)"}},"id":15882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57935:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"57917:44:58"},{"AST":{"nativeSrc":"57996:136:58","nodeType":"YulBlock","src":"57996:136:58","statements":[{"nativeSrc":"58010:37:58","nodeType":"YulAssignment","src":"58010:37:58","value":{"arguments":[{"name":"value","nativeSrc":"58023:5:58","nodeType":"YulIdentifier","src":"58023:5:58"},{"arguments":[{"kind":"number","nativeSrc":"58034:3:58","nodeType":"YulLiteral","src":"58034:3:58","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"58043:1:58","nodeType":"YulLiteral","src":"58043:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58039:3:58","nodeType":"YulIdentifier","src":"58039:3:58"},"nativeSrc":"58039:6:58","nodeType":"YulFunctionCall","src":"58039:6:58"}],"functionName":{"name":"shl","nativeSrc":"58030:3:58","nodeType":"YulIdentifier","src":"58030:3:58"},"nativeSrc":"58030:16:58","nodeType":"YulFunctionCall","src":"58030:16:58"}],"functionName":{"name":"and","nativeSrc":"58019:3:58","nodeType":"YulIdentifier","src":"58019:3:58"},"nativeSrc":"58019:28:58","nodeType":"YulFunctionCall","src":"58019:28:58"},"variableNames":[{"name":"value","nativeSrc":"58010:5:58","nodeType":"YulIdentifier","src":"58010:5:58"}]},{"nativeSrc":"58060:62:58","nodeType":"YulAssignment","src":"58060:62:58","value":{"arguments":[{"name":"self","nativeSrc":"58074:4:58","nodeType":"YulIdentifier","src":"58074:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58088:1:58","nodeType":"YulLiteral","src":"58088:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"58091:6:58","nodeType":"YulIdentifier","src":"58091:6:58"}],"functionName":{"name":"mul","nativeSrc":"58084:3:58","nodeType":"YulIdentifier","src":"58084:3:58"},"nativeSrc":"58084:14:58","nodeType":"YulFunctionCall","src":"58084:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"58104:8:58","nodeType":"YulIdentifier","src":"58104:8:58"},{"name":"value","nativeSrc":"58114:5:58","nodeType":"YulIdentifier","src":"58114:5:58"}],"functionName":{"name":"xor","nativeSrc":"58100:3:58","nodeType":"YulIdentifier","src":"58100:3:58"},"nativeSrc":"58100:20:58","nodeType":"YulFunctionCall","src":"58100:20:58"}],"functionName":{"name":"shr","nativeSrc":"58080:3:58","nodeType":"YulIdentifier","src":"58080:3:58"},"nativeSrc":"58080:41:58","nodeType":"YulFunctionCall","src":"58080:41:58"}],"functionName":{"name":"xor","nativeSrc":"58070:3:58","nodeType":"YulIdentifier","src":"58070:3:58"},"nativeSrc":"58070:52:58","nodeType":"YulFunctionCall","src":"58070:52:58"},"variableNames":[{"name":"result","nativeSrc":"58060:6:58","nodeType":"YulIdentifier","src":"58060:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15872,"isOffset":false,"isSlot":false,"src":"58091:6:58","valueSize":1},{"declaration":15878,"isOffset":false,"isSlot":false,"src":"58104:8:58","valueSize":1},{"declaration":15875,"isOffset":false,"isSlot":false,"src":"58060:6:58","valueSize":1},{"declaration":15868,"isOffset":false,"isSlot":false,"src":"58074:4:58","valueSize":1},{"declaration":15870,"isOffset":false,"isSlot":false,"src":"58010:5:58","valueSize":1},{"declaration":15870,"isOffset":false,"isSlot":false,"src":"58023:5:58","valueSize":1},{"declaration":15870,"isOffset":false,"isSlot":false,"src":"58114:5:58","valueSize":1}],"flags":["memory-safe"],"id":15884,"nodeType":"InlineAssembly","src":"57971:161:58"}]},"id":15886,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_1","nameLocation":"57813:12:58","nodeType":"FunctionDefinition","parameters":{"id":15873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15868,"mutability":"mutable","name":"self","nameLocation":"57834:4:58","nodeType":"VariableDeclaration","scope":15886,"src":"57826:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15867,"name":"bytes32","nodeType":"ElementaryTypeName","src":"57826:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15870,"mutability":"mutable","name":"value","nameLocation":"57847:5:58","nodeType":"VariableDeclaration","scope":15886,"src":"57840:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":15869,"name":"bytes1","nodeType":"ElementaryTypeName","src":"57840:6:58","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":15872,"mutability":"mutable","name":"offset","nameLocation":"57860:6:58","nodeType":"VariableDeclaration","scope":15886,"src":"57854:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15871,"name":"uint8","nodeType":"ElementaryTypeName","src":"57854:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"57825:42:58"},"returnParameters":{"id":15876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15875,"mutability":"mutable","name":"result","nameLocation":"57899:6:58","nodeType":"VariableDeclaration","scope":15886,"src":"57891:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15874,"name":"bytes32","nodeType":"ElementaryTypeName","src":"57891:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"57890:16:58"},"scope":16305,"src":"57804:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15903,"nodeType":"Block","src":"58232:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15895,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15890,"src":"58246:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3330","id":15896,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"58255:2:58","typeDescriptions":{"typeIdentifier":"t_rational_30_by_1","typeString":"int_const 30"},"value":"30"},"src":"58246:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15901,"nodeType":"IfStatement","src":"58242:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15898,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"58266:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58266:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15900,"nodeType":"RevertStatement","src":"58259:25:58"}},{"AST":{"nativeSrc":"58319:82:58","nodeType":"YulBlock","src":"58319:82:58","statements":[{"nativeSrc":"58333:58:58","nodeType":"YulAssignment","src":"58333:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58355:1:58","nodeType":"YulLiteral","src":"58355:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"58358:6:58","nodeType":"YulIdentifier","src":"58358:6:58"}],"functionName":{"name":"mul","nativeSrc":"58351:3:58","nodeType":"YulIdentifier","src":"58351:3:58"},"nativeSrc":"58351:14:58","nodeType":"YulFunctionCall","src":"58351:14:58"},{"name":"self","nativeSrc":"58367:4:58","nodeType":"YulIdentifier","src":"58367:4:58"}],"functionName":{"name":"shl","nativeSrc":"58347:3:58","nodeType":"YulIdentifier","src":"58347:3:58"},"nativeSrc":"58347:25:58","nodeType":"YulFunctionCall","src":"58347:25:58"},{"arguments":[{"kind":"number","nativeSrc":"58378:3:58","nodeType":"YulLiteral","src":"58378:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"58387:1:58","nodeType":"YulLiteral","src":"58387:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58383:3:58","nodeType":"YulIdentifier","src":"58383:3:58"},"nativeSrc":"58383:6:58","nodeType":"YulFunctionCall","src":"58383:6:58"}],"functionName":{"name":"shl","nativeSrc":"58374:3:58","nodeType":"YulIdentifier","src":"58374:3:58"},"nativeSrc":"58374:16:58","nodeType":"YulFunctionCall","src":"58374:16:58"}],"functionName":{"name":"and","nativeSrc":"58343:3:58","nodeType":"YulIdentifier","src":"58343:3:58"},"nativeSrc":"58343:48:58","nodeType":"YulFunctionCall","src":"58343:48:58"},"variableNames":[{"name":"result","nativeSrc":"58333:6:58","nodeType":"YulIdentifier","src":"58333:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15890,"isOffset":false,"isSlot":false,"src":"58358:6:58","valueSize":1},{"declaration":15893,"isOffset":false,"isSlot":false,"src":"58333:6:58","valueSize":1},{"declaration":15888,"isOffset":false,"isSlot":false,"src":"58367:4:58","valueSize":1}],"flags":["memory-safe"],"id":15902,"nodeType":"InlineAssembly","src":"58294:107:58"}]},"id":15904,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_2","nameLocation":"58153:12:58","nodeType":"FunctionDefinition","parameters":{"id":15891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15888,"mutability":"mutable","name":"self","nameLocation":"58174:4:58","nodeType":"VariableDeclaration","scope":15904,"src":"58166:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15887,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58166:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15890,"mutability":"mutable","name":"offset","nameLocation":"58186:6:58","nodeType":"VariableDeclaration","scope":15904,"src":"58180:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15889,"name":"uint8","nodeType":"ElementaryTypeName","src":"58180:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"58165:28:58"},"returnParameters":{"id":15894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15893,"mutability":"mutable","name":"result","nameLocation":"58224:6:58","nodeType":"VariableDeclaration","scope":15904,"src":"58217:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15892,"name":"bytes2","nodeType":"ElementaryTypeName","src":"58217:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"58216:15:58"},"scope":16305,"src":"58144:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15923,"nodeType":"Block","src":"58516:231:58","statements":[{"assignments":[15916],"declarations":[{"constant":false,"id":15916,"mutability":"mutable","name":"oldValue","nameLocation":"58533:8:58","nodeType":"VariableDeclaration","scope":15923,"src":"58526:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15915,"name":"bytes2","nodeType":"ElementaryTypeName","src":"58526:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":15921,"initialValue":{"arguments":[{"id":15918,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"58557:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15919,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"src":"58563:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15917,"name":"extract_32_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15904,"src":"58544:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes32,uint8) pure returns (bytes2)"}},"id":15920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58544:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"58526:44:58"},{"AST":{"nativeSrc":"58605:136:58","nodeType":"YulBlock","src":"58605:136:58","statements":[{"nativeSrc":"58619:37:58","nodeType":"YulAssignment","src":"58619:37:58","value":{"arguments":[{"name":"value","nativeSrc":"58632:5:58","nodeType":"YulIdentifier","src":"58632:5:58"},{"arguments":[{"kind":"number","nativeSrc":"58643:3:58","nodeType":"YulLiteral","src":"58643:3:58","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"58652:1:58","nodeType":"YulLiteral","src":"58652:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58648:3:58","nodeType":"YulIdentifier","src":"58648:3:58"},"nativeSrc":"58648:6:58","nodeType":"YulFunctionCall","src":"58648:6:58"}],"functionName":{"name":"shl","nativeSrc":"58639:3:58","nodeType":"YulIdentifier","src":"58639:3:58"},"nativeSrc":"58639:16:58","nodeType":"YulFunctionCall","src":"58639:16:58"}],"functionName":{"name":"and","nativeSrc":"58628:3:58","nodeType":"YulIdentifier","src":"58628:3:58"},"nativeSrc":"58628:28:58","nodeType":"YulFunctionCall","src":"58628:28:58"},"variableNames":[{"name":"value","nativeSrc":"58619:5:58","nodeType":"YulIdentifier","src":"58619:5:58"}]},{"nativeSrc":"58669:62:58","nodeType":"YulAssignment","src":"58669:62:58","value":{"arguments":[{"name":"self","nativeSrc":"58683:4:58","nodeType":"YulIdentifier","src":"58683:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58697:1:58","nodeType":"YulLiteral","src":"58697:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"58700:6:58","nodeType":"YulIdentifier","src":"58700:6:58"}],"functionName":{"name":"mul","nativeSrc":"58693:3:58","nodeType":"YulIdentifier","src":"58693:3:58"},"nativeSrc":"58693:14:58","nodeType":"YulFunctionCall","src":"58693:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"58713:8:58","nodeType":"YulIdentifier","src":"58713:8:58"},{"name":"value","nativeSrc":"58723:5:58","nodeType":"YulIdentifier","src":"58723:5:58"}],"functionName":{"name":"xor","nativeSrc":"58709:3:58","nodeType":"YulIdentifier","src":"58709:3:58"},"nativeSrc":"58709:20:58","nodeType":"YulFunctionCall","src":"58709:20:58"}],"functionName":{"name":"shr","nativeSrc":"58689:3:58","nodeType":"YulIdentifier","src":"58689:3:58"},"nativeSrc":"58689:41:58","nodeType":"YulFunctionCall","src":"58689:41:58"}],"functionName":{"name":"xor","nativeSrc":"58679:3:58","nodeType":"YulIdentifier","src":"58679:3:58"},"nativeSrc":"58679:52:58","nodeType":"YulFunctionCall","src":"58679:52:58"},"variableNames":[{"name":"result","nativeSrc":"58669:6:58","nodeType":"YulIdentifier","src":"58669:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15910,"isOffset":false,"isSlot":false,"src":"58700:6:58","valueSize":1},{"declaration":15916,"isOffset":false,"isSlot":false,"src":"58713:8:58","valueSize":1},{"declaration":15913,"isOffset":false,"isSlot":false,"src":"58669:6:58","valueSize":1},{"declaration":15906,"isOffset":false,"isSlot":false,"src":"58683:4:58","valueSize":1},{"declaration":15908,"isOffset":false,"isSlot":false,"src":"58619:5:58","valueSize":1},{"declaration":15908,"isOffset":false,"isSlot":false,"src":"58632:5:58","valueSize":1},{"declaration":15908,"isOffset":false,"isSlot":false,"src":"58723:5:58","valueSize":1}],"flags":["memory-safe"],"id":15922,"nodeType":"InlineAssembly","src":"58580:161:58"}]},"id":15924,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_2","nameLocation":"58422:12:58","nodeType":"FunctionDefinition","parameters":{"id":15911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15906,"mutability":"mutable","name":"self","nameLocation":"58443:4:58","nodeType":"VariableDeclaration","scope":15924,"src":"58435:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15905,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58435:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15908,"mutability":"mutable","name":"value","nameLocation":"58456:5:58","nodeType":"VariableDeclaration","scope":15924,"src":"58449:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":15907,"name":"bytes2","nodeType":"ElementaryTypeName","src":"58449:6:58","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":15910,"mutability":"mutable","name":"offset","nameLocation":"58469:6:58","nodeType":"VariableDeclaration","scope":15924,"src":"58463:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15909,"name":"uint8","nodeType":"ElementaryTypeName","src":"58463:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"58434:42:58"},"returnParameters":{"id":15914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15913,"mutability":"mutable","name":"result","nameLocation":"58508:6:58","nodeType":"VariableDeclaration","scope":15924,"src":"58500:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15912,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58500:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"58499:16:58"},"scope":16305,"src":"58413:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15941,"nodeType":"Block","src":"58841:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15933,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15928,"src":"58855:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3238","id":15934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"58864:2:58","typeDescriptions":{"typeIdentifier":"t_rational_28_by_1","typeString":"int_const 28"},"value":"28"},"src":"58855:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15939,"nodeType":"IfStatement","src":"58851:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15936,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"58875:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58875:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15938,"nodeType":"RevertStatement","src":"58868:25:58"}},{"AST":{"nativeSrc":"58928:82:58","nodeType":"YulBlock","src":"58928:82:58","statements":[{"nativeSrc":"58942:58:58","nodeType":"YulAssignment","src":"58942:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58964:1:58","nodeType":"YulLiteral","src":"58964:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"58967:6:58","nodeType":"YulIdentifier","src":"58967:6:58"}],"functionName":{"name":"mul","nativeSrc":"58960:3:58","nodeType":"YulIdentifier","src":"58960:3:58"},"nativeSrc":"58960:14:58","nodeType":"YulFunctionCall","src":"58960:14:58"},{"name":"self","nativeSrc":"58976:4:58","nodeType":"YulIdentifier","src":"58976:4:58"}],"functionName":{"name":"shl","nativeSrc":"58956:3:58","nodeType":"YulIdentifier","src":"58956:3:58"},"nativeSrc":"58956:25:58","nodeType":"YulFunctionCall","src":"58956:25:58"},{"arguments":[{"kind":"number","nativeSrc":"58987:3:58","nodeType":"YulLiteral","src":"58987:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"58996:1:58","nodeType":"YulLiteral","src":"58996:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58992:3:58","nodeType":"YulIdentifier","src":"58992:3:58"},"nativeSrc":"58992:6:58","nodeType":"YulFunctionCall","src":"58992:6:58"}],"functionName":{"name":"shl","nativeSrc":"58983:3:58","nodeType":"YulIdentifier","src":"58983:3:58"},"nativeSrc":"58983:16:58","nodeType":"YulFunctionCall","src":"58983:16:58"}],"functionName":{"name":"and","nativeSrc":"58952:3:58","nodeType":"YulIdentifier","src":"58952:3:58"},"nativeSrc":"58952:48:58","nodeType":"YulFunctionCall","src":"58952:48:58"},"variableNames":[{"name":"result","nativeSrc":"58942:6:58","nodeType":"YulIdentifier","src":"58942:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15928,"isOffset":false,"isSlot":false,"src":"58967:6:58","valueSize":1},{"declaration":15931,"isOffset":false,"isSlot":false,"src":"58942:6:58","valueSize":1},{"declaration":15926,"isOffset":false,"isSlot":false,"src":"58976:4:58","valueSize":1}],"flags":["memory-safe"],"id":15940,"nodeType":"InlineAssembly","src":"58903:107:58"}]},"id":15942,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_4","nameLocation":"58762:12:58","nodeType":"FunctionDefinition","parameters":{"id":15929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15926,"mutability":"mutable","name":"self","nameLocation":"58783:4:58","nodeType":"VariableDeclaration","scope":15942,"src":"58775:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15925,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58775:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15928,"mutability":"mutable","name":"offset","nameLocation":"58795:6:58","nodeType":"VariableDeclaration","scope":15942,"src":"58789:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15927,"name":"uint8","nodeType":"ElementaryTypeName","src":"58789:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"58774:28:58"},"returnParameters":{"id":15932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15931,"mutability":"mutable","name":"result","nameLocation":"58833:6:58","nodeType":"VariableDeclaration","scope":15942,"src":"58826:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15930,"name":"bytes4","nodeType":"ElementaryTypeName","src":"58826:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"58825:15:58"},"scope":16305,"src":"58753:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15961,"nodeType":"Block","src":"59125:231:58","statements":[{"assignments":[15954],"declarations":[{"constant":false,"id":15954,"mutability":"mutable","name":"oldValue","nameLocation":"59142:8:58","nodeType":"VariableDeclaration","scope":15961,"src":"59135:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15953,"name":"bytes4","nodeType":"ElementaryTypeName","src":"59135:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":15959,"initialValue":{"arguments":[{"id":15956,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15944,"src":"59166:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15957,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15948,"src":"59172:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15955,"name":"extract_32_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15942,"src":"59153:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes32,uint8) pure returns (bytes4)"}},"id":15958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59153:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"59135:44:58"},{"AST":{"nativeSrc":"59214:136:58","nodeType":"YulBlock","src":"59214:136:58","statements":[{"nativeSrc":"59228:37:58","nodeType":"YulAssignment","src":"59228:37:58","value":{"arguments":[{"name":"value","nativeSrc":"59241:5:58","nodeType":"YulIdentifier","src":"59241:5:58"},{"arguments":[{"kind":"number","nativeSrc":"59252:3:58","nodeType":"YulLiteral","src":"59252:3:58","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"59261:1:58","nodeType":"YulLiteral","src":"59261:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"59257:3:58","nodeType":"YulIdentifier","src":"59257:3:58"},"nativeSrc":"59257:6:58","nodeType":"YulFunctionCall","src":"59257:6:58"}],"functionName":{"name":"shl","nativeSrc":"59248:3:58","nodeType":"YulIdentifier","src":"59248:3:58"},"nativeSrc":"59248:16:58","nodeType":"YulFunctionCall","src":"59248:16:58"}],"functionName":{"name":"and","nativeSrc":"59237:3:58","nodeType":"YulIdentifier","src":"59237:3:58"},"nativeSrc":"59237:28:58","nodeType":"YulFunctionCall","src":"59237:28:58"},"variableNames":[{"name":"value","nativeSrc":"59228:5:58","nodeType":"YulIdentifier","src":"59228:5:58"}]},{"nativeSrc":"59278:62:58","nodeType":"YulAssignment","src":"59278:62:58","value":{"arguments":[{"name":"self","nativeSrc":"59292:4:58","nodeType":"YulIdentifier","src":"59292:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"59306:1:58","nodeType":"YulLiteral","src":"59306:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"59309:6:58","nodeType":"YulIdentifier","src":"59309:6:58"}],"functionName":{"name":"mul","nativeSrc":"59302:3:58","nodeType":"YulIdentifier","src":"59302:3:58"},"nativeSrc":"59302:14:58","nodeType":"YulFunctionCall","src":"59302:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"59322:8:58","nodeType":"YulIdentifier","src":"59322:8:58"},{"name":"value","nativeSrc":"59332:5:58","nodeType":"YulIdentifier","src":"59332:5:58"}],"functionName":{"name":"xor","nativeSrc":"59318:3:58","nodeType":"YulIdentifier","src":"59318:3:58"},"nativeSrc":"59318:20:58","nodeType":"YulFunctionCall","src":"59318:20:58"}],"functionName":{"name":"shr","nativeSrc":"59298:3:58","nodeType":"YulIdentifier","src":"59298:3:58"},"nativeSrc":"59298:41:58","nodeType":"YulFunctionCall","src":"59298:41:58"}],"functionName":{"name":"xor","nativeSrc":"59288:3:58","nodeType":"YulIdentifier","src":"59288:3:58"},"nativeSrc":"59288:52:58","nodeType":"YulFunctionCall","src":"59288:52:58"},"variableNames":[{"name":"result","nativeSrc":"59278:6:58","nodeType":"YulIdentifier","src":"59278:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15948,"isOffset":false,"isSlot":false,"src":"59309:6:58","valueSize":1},{"declaration":15954,"isOffset":false,"isSlot":false,"src":"59322:8:58","valueSize":1},{"declaration":15951,"isOffset":false,"isSlot":false,"src":"59278:6:58","valueSize":1},{"declaration":15944,"isOffset":false,"isSlot":false,"src":"59292:4:58","valueSize":1},{"declaration":15946,"isOffset":false,"isSlot":false,"src":"59228:5:58","valueSize":1},{"declaration":15946,"isOffset":false,"isSlot":false,"src":"59241:5:58","valueSize":1},{"declaration":15946,"isOffset":false,"isSlot":false,"src":"59332:5:58","valueSize":1}],"flags":["memory-safe"],"id":15960,"nodeType":"InlineAssembly","src":"59189:161:58"}]},"id":15962,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_4","nameLocation":"59031:12:58","nodeType":"FunctionDefinition","parameters":{"id":15949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15944,"mutability":"mutable","name":"self","nameLocation":"59052:4:58","nodeType":"VariableDeclaration","scope":15962,"src":"59044:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15943,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59044:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15946,"mutability":"mutable","name":"value","nameLocation":"59065:5:58","nodeType":"VariableDeclaration","scope":15962,"src":"59058:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15945,"name":"bytes4","nodeType":"ElementaryTypeName","src":"59058:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":15948,"mutability":"mutable","name":"offset","nameLocation":"59078:6:58","nodeType":"VariableDeclaration","scope":15962,"src":"59072:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15947,"name":"uint8","nodeType":"ElementaryTypeName","src":"59072:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59043:42:58"},"returnParameters":{"id":15952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15951,"mutability":"mutable","name":"result","nameLocation":"59117:6:58","nodeType":"VariableDeclaration","scope":15962,"src":"59109:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15950,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59109:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"59108:16:58"},"scope":16305,"src":"59022:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15979,"nodeType":"Block","src":"59450:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15971,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15966,"src":"59464:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3236","id":15972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"59473:2:58","typeDescriptions":{"typeIdentifier":"t_rational_26_by_1","typeString":"int_const 26"},"value":"26"},"src":"59464:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15977,"nodeType":"IfStatement","src":"59460:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":15974,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"59484:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59484:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":15976,"nodeType":"RevertStatement","src":"59477:25:58"}},{"AST":{"nativeSrc":"59537:82:58","nodeType":"YulBlock","src":"59537:82:58","statements":[{"nativeSrc":"59551:58:58","nodeType":"YulAssignment","src":"59551:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"59573:1:58","nodeType":"YulLiteral","src":"59573:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"59576:6:58","nodeType":"YulIdentifier","src":"59576:6:58"}],"functionName":{"name":"mul","nativeSrc":"59569:3:58","nodeType":"YulIdentifier","src":"59569:3:58"},"nativeSrc":"59569:14:58","nodeType":"YulFunctionCall","src":"59569:14:58"},{"name":"self","nativeSrc":"59585:4:58","nodeType":"YulIdentifier","src":"59585:4:58"}],"functionName":{"name":"shl","nativeSrc":"59565:3:58","nodeType":"YulIdentifier","src":"59565:3:58"},"nativeSrc":"59565:25:58","nodeType":"YulFunctionCall","src":"59565:25:58"},{"arguments":[{"kind":"number","nativeSrc":"59596:3:58","nodeType":"YulLiteral","src":"59596:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"59605:1:58","nodeType":"YulLiteral","src":"59605:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"59601:3:58","nodeType":"YulIdentifier","src":"59601:3:58"},"nativeSrc":"59601:6:58","nodeType":"YulFunctionCall","src":"59601:6:58"}],"functionName":{"name":"shl","nativeSrc":"59592:3:58","nodeType":"YulIdentifier","src":"59592:3:58"},"nativeSrc":"59592:16:58","nodeType":"YulFunctionCall","src":"59592:16:58"}],"functionName":{"name":"and","nativeSrc":"59561:3:58","nodeType":"YulIdentifier","src":"59561:3:58"},"nativeSrc":"59561:48:58","nodeType":"YulFunctionCall","src":"59561:48:58"},"variableNames":[{"name":"result","nativeSrc":"59551:6:58","nodeType":"YulIdentifier","src":"59551:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15966,"isOffset":false,"isSlot":false,"src":"59576:6:58","valueSize":1},{"declaration":15969,"isOffset":false,"isSlot":false,"src":"59551:6:58","valueSize":1},{"declaration":15964,"isOffset":false,"isSlot":false,"src":"59585:4:58","valueSize":1}],"flags":["memory-safe"],"id":15978,"nodeType":"InlineAssembly","src":"59512:107:58"}]},"id":15980,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_6","nameLocation":"59371:12:58","nodeType":"FunctionDefinition","parameters":{"id":15967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15964,"mutability":"mutable","name":"self","nameLocation":"59392:4:58","nodeType":"VariableDeclaration","scope":15980,"src":"59384:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15963,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59384:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15966,"mutability":"mutable","name":"offset","nameLocation":"59404:6:58","nodeType":"VariableDeclaration","scope":15980,"src":"59398:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15965,"name":"uint8","nodeType":"ElementaryTypeName","src":"59398:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59383:28:58"},"returnParameters":{"id":15970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15969,"mutability":"mutable","name":"result","nameLocation":"59442:6:58","nodeType":"VariableDeclaration","scope":15980,"src":"59435:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15968,"name":"bytes6","nodeType":"ElementaryTypeName","src":"59435:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"59434:15:58"},"scope":16305,"src":"59362:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15999,"nodeType":"Block","src":"59734:231:58","statements":[{"assignments":[15992],"declarations":[{"constant":false,"id":15992,"mutability":"mutable","name":"oldValue","nameLocation":"59751:8:58","nodeType":"VariableDeclaration","scope":15999,"src":"59744:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15991,"name":"bytes6","nodeType":"ElementaryTypeName","src":"59744:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":15997,"initialValue":{"arguments":[{"id":15994,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15982,"src":"59775:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15995,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15986,"src":"59781:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15993,"name":"extract_32_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15980,"src":"59762:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes32,uint8) pure returns (bytes6)"}},"id":15996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59762:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"59744:44:58"},{"AST":{"nativeSrc":"59823:136:58","nodeType":"YulBlock","src":"59823:136:58","statements":[{"nativeSrc":"59837:37:58","nodeType":"YulAssignment","src":"59837:37:58","value":{"arguments":[{"name":"value","nativeSrc":"59850:5:58","nodeType":"YulIdentifier","src":"59850:5:58"},{"arguments":[{"kind":"number","nativeSrc":"59861:3:58","nodeType":"YulLiteral","src":"59861:3:58","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"59870:1:58","nodeType":"YulLiteral","src":"59870:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"59866:3:58","nodeType":"YulIdentifier","src":"59866:3:58"},"nativeSrc":"59866:6:58","nodeType":"YulFunctionCall","src":"59866:6:58"}],"functionName":{"name":"shl","nativeSrc":"59857:3:58","nodeType":"YulIdentifier","src":"59857:3:58"},"nativeSrc":"59857:16:58","nodeType":"YulFunctionCall","src":"59857:16:58"}],"functionName":{"name":"and","nativeSrc":"59846:3:58","nodeType":"YulIdentifier","src":"59846:3:58"},"nativeSrc":"59846:28:58","nodeType":"YulFunctionCall","src":"59846:28:58"},"variableNames":[{"name":"value","nativeSrc":"59837:5:58","nodeType":"YulIdentifier","src":"59837:5:58"}]},{"nativeSrc":"59887:62:58","nodeType":"YulAssignment","src":"59887:62:58","value":{"arguments":[{"name":"self","nativeSrc":"59901:4:58","nodeType":"YulIdentifier","src":"59901:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"59915:1:58","nodeType":"YulLiteral","src":"59915:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"59918:6:58","nodeType":"YulIdentifier","src":"59918:6:58"}],"functionName":{"name":"mul","nativeSrc":"59911:3:58","nodeType":"YulIdentifier","src":"59911:3:58"},"nativeSrc":"59911:14:58","nodeType":"YulFunctionCall","src":"59911:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"59931:8:58","nodeType":"YulIdentifier","src":"59931:8:58"},{"name":"value","nativeSrc":"59941:5:58","nodeType":"YulIdentifier","src":"59941:5:58"}],"functionName":{"name":"xor","nativeSrc":"59927:3:58","nodeType":"YulIdentifier","src":"59927:3:58"},"nativeSrc":"59927:20:58","nodeType":"YulFunctionCall","src":"59927:20:58"}],"functionName":{"name":"shr","nativeSrc":"59907:3:58","nodeType":"YulIdentifier","src":"59907:3:58"},"nativeSrc":"59907:41:58","nodeType":"YulFunctionCall","src":"59907:41:58"}],"functionName":{"name":"xor","nativeSrc":"59897:3:58","nodeType":"YulIdentifier","src":"59897:3:58"},"nativeSrc":"59897:52:58","nodeType":"YulFunctionCall","src":"59897:52:58"},"variableNames":[{"name":"result","nativeSrc":"59887:6:58","nodeType":"YulIdentifier","src":"59887:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":15986,"isOffset":false,"isSlot":false,"src":"59918:6:58","valueSize":1},{"declaration":15992,"isOffset":false,"isSlot":false,"src":"59931:8:58","valueSize":1},{"declaration":15989,"isOffset":false,"isSlot":false,"src":"59887:6:58","valueSize":1},{"declaration":15982,"isOffset":false,"isSlot":false,"src":"59901:4:58","valueSize":1},{"declaration":15984,"isOffset":false,"isSlot":false,"src":"59837:5:58","valueSize":1},{"declaration":15984,"isOffset":false,"isSlot":false,"src":"59850:5:58","valueSize":1},{"declaration":15984,"isOffset":false,"isSlot":false,"src":"59941:5:58","valueSize":1}],"flags":["memory-safe"],"id":15998,"nodeType":"InlineAssembly","src":"59798:161:58"}]},"id":16000,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_6","nameLocation":"59640:12:58","nodeType":"FunctionDefinition","parameters":{"id":15987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15982,"mutability":"mutable","name":"self","nameLocation":"59661:4:58","nodeType":"VariableDeclaration","scope":16000,"src":"59653:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15981,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59653:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15984,"mutability":"mutable","name":"value","nameLocation":"59674:5:58","nodeType":"VariableDeclaration","scope":16000,"src":"59667:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":15983,"name":"bytes6","nodeType":"ElementaryTypeName","src":"59667:6:58","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":15986,"mutability":"mutable","name":"offset","nameLocation":"59687:6:58","nodeType":"VariableDeclaration","scope":16000,"src":"59681:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15985,"name":"uint8","nodeType":"ElementaryTypeName","src":"59681:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59652:42:58"},"returnParameters":{"id":15990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15989,"mutability":"mutable","name":"result","nameLocation":"59726:6:58","nodeType":"VariableDeclaration","scope":16000,"src":"59718:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15988,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59718:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"59717:16:58"},"scope":16305,"src":"59631:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16017,"nodeType":"Block","src":"60059:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16009,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16004,"src":"60073:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3234","id":16010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"60082:2:58","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"60073:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16015,"nodeType":"IfStatement","src":"60069:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16012,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"60093:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60093:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16014,"nodeType":"RevertStatement","src":"60086:25:58"}},{"AST":{"nativeSrc":"60146:82:58","nodeType":"YulBlock","src":"60146:82:58","statements":[{"nativeSrc":"60160:58:58","nodeType":"YulAssignment","src":"60160:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"60182:1:58","nodeType":"YulLiteral","src":"60182:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"60185:6:58","nodeType":"YulIdentifier","src":"60185:6:58"}],"functionName":{"name":"mul","nativeSrc":"60178:3:58","nodeType":"YulIdentifier","src":"60178:3:58"},"nativeSrc":"60178:14:58","nodeType":"YulFunctionCall","src":"60178:14:58"},{"name":"self","nativeSrc":"60194:4:58","nodeType":"YulIdentifier","src":"60194:4:58"}],"functionName":{"name":"shl","nativeSrc":"60174:3:58","nodeType":"YulIdentifier","src":"60174:3:58"},"nativeSrc":"60174:25:58","nodeType":"YulFunctionCall","src":"60174:25:58"},{"arguments":[{"kind":"number","nativeSrc":"60205:3:58","nodeType":"YulLiteral","src":"60205:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"60214:1:58","nodeType":"YulLiteral","src":"60214:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"60210:3:58","nodeType":"YulIdentifier","src":"60210:3:58"},"nativeSrc":"60210:6:58","nodeType":"YulFunctionCall","src":"60210:6:58"}],"functionName":{"name":"shl","nativeSrc":"60201:3:58","nodeType":"YulIdentifier","src":"60201:3:58"},"nativeSrc":"60201:16:58","nodeType":"YulFunctionCall","src":"60201:16:58"}],"functionName":{"name":"and","nativeSrc":"60170:3:58","nodeType":"YulIdentifier","src":"60170:3:58"},"nativeSrc":"60170:48:58","nodeType":"YulFunctionCall","src":"60170:48:58"},"variableNames":[{"name":"result","nativeSrc":"60160:6:58","nodeType":"YulIdentifier","src":"60160:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16004,"isOffset":false,"isSlot":false,"src":"60185:6:58","valueSize":1},{"declaration":16007,"isOffset":false,"isSlot":false,"src":"60160:6:58","valueSize":1},{"declaration":16002,"isOffset":false,"isSlot":false,"src":"60194:4:58","valueSize":1}],"flags":["memory-safe"],"id":16016,"nodeType":"InlineAssembly","src":"60121:107:58"}]},"id":16018,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_8","nameLocation":"59980:12:58","nodeType":"FunctionDefinition","parameters":{"id":16005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16002,"mutability":"mutable","name":"self","nameLocation":"60001:4:58","nodeType":"VariableDeclaration","scope":16018,"src":"59993:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16001,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59993:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16004,"mutability":"mutable","name":"offset","nameLocation":"60013:6:58","nodeType":"VariableDeclaration","scope":16018,"src":"60007:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16003,"name":"uint8","nodeType":"ElementaryTypeName","src":"60007:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59992:28:58"},"returnParameters":{"id":16008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16007,"mutability":"mutable","name":"result","nameLocation":"60051:6:58","nodeType":"VariableDeclaration","scope":16018,"src":"60044:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":16006,"name":"bytes8","nodeType":"ElementaryTypeName","src":"60044:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"60043:15:58"},"scope":16305,"src":"59971:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16037,"nodeType":"Block","src":"60343:231:58","statements":[{"assignments":[16030],"declarations":[{"constant":false,"id":16030,"mutability":"mutable","name":"oldValue","nameLocation":"60360:8:58","nodeType":"VariableDeclaration","scope":16037,"src":"60353:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":16029,"name":"bytes8","nodeType":"ElementaryTypeName","src":"60353:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":16035,"initialValue":{"arguments":[{"id":16032,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16020,"src":"60384:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16033,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16024,"src":"60390:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16031,"name":"extract_32_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16018,"src":"60371:12:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes32,uint8) pure returns (bytes8)"}},"id":16034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60371:26:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"60353:44:58"},{"AST":{"nativeSrc":"60432:136:58","nodeType":"YulBlock","src":"60432:136:58","statements":[{"nativeSrc":"60446:37:58","nodeType":"YulAssignment","src":"60446:37:58","value":{"arguments":[{"name":"value","nativeSrc":"60459:5:58","nodeType":"YulIdentifier","src":"60459:5:58"},{"arguments":[{"kind":"number","nativeSrc":"60470:3:58","nodeType":"YulLiteral","src":"60470:3:58","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"60479:1:58","nodeType":"YulLiteral","src":"60479:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"60475:3:58","nodeType":"YulIdentifier","src":"60475:3:58"},"nativeSrc":"60475:6:58","nodeType":"YulFunctionCall","src":"60475:6:58"}],"functionName":{"name":"shl","nativeSrc":"60466:3:58","nodeType":"YulIdentifier","src":"60466:3:58"},"nativeSrc":"60466:16:58","nodeType":"YulFunctionCall","src":"60466:16:58"}],"functionName":{"name":"and","nativeSrc":"60455:3:58","nodeType":"YulIdentifier","src":"60455:3:58"},"nativeSrc":"60455:28:58","nodeType":"YulFunctionCall","src":"60455:28:58"},"variableNames":[{"name":"value","nativeSrc":"60446:5:58","nodeType":"YulIdentifier","src":"60446:5:58"}]},{"nativeSrc":"60496:62:58","nodeType":"YulAssignment","src":"60496:62:58","value":{"arguments":[{"name":"self","nativeSrc":"60510:4:58","nodeType":"YulIdentifier","src":"60510:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"60524:1:58","nodeType":"YulLiteral","src":"60524:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"60527:6:58","nodeType":"YulIdentifier","src":"60527:6:58"}],"functionName":{"name":"mul","nativeSrc":"60520:3:58","nodeType":"YulIdentifier","src":"60520:3:58"},"nativeSrc":"60520:14:58","nodeType":"YulFunctionCall","src":"60520:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"60540:8:58","nodeType":"YulIdentifier","src":"60540:8:58"},{"name":"value","nativeSrc":"60550:5:58","nodeType":"YulIdentifier","src":"60550:5:58"}],"functionName":{"name":"xor","nativeSrc":"60536:3:58","nodeType":"YulIdentifier","src":"60536:3:58"},"nativeSrc":"60536:20:58","nodeType":"YulFunctionCall","src":"60536:20:58"}],"functionName":{"name":"shr","nativeSrc":"60516:3:58","nodeType":"YulIdentifier","src":"60516:3:58"},"nativeSrc":"60516:41:58","nodeType":"YulFunctionCall","src":"60516:41:58"}],"functionName":{"name":"xor","nativeSrc":"60506:3:58","nodeType":"YulIdentifier","src":"60506:3:58"},"nativeSrc":"60506:52:58","nodeType":"YulFunctionCall","src":"60506:52:58"},"variableNames":[{"name":"result","nativeSrc":"60496:6:58","nodeType":"YulIdentifier","src":"60496:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16024,"isOffset":false,"isSlot":false,"src":"60527:6:58","valueSize":1},{"declaration":16030,"isOffset":false,"isSlot":false,"src":"60540:8:58","valueSize":1},{"declaration":16027,"isOffset":false,"isSlot":false,"src":"60496:6:58","valueSize":1},{"declaration":16020,"isOffset":false,"isSlot":false,"src":"60510:4:58","valueSize":1},{"declaration":16022,"isOffset":false,"isSlot":false,"src":"60446:5:58","valueSize":1},{"declaration":16022,"isOffset":false,"isSlot":false,"src":"60459:5:58","valueSize":1},{"declaration":16022,"isOffset":false,"isSlot":false,"src":"60550:5:58","valueSize":1}],"flags":["memory-safe"],"id":16036,"nodeType":"InlineAssembly","src":"60407:161:58"}]},"id":16038,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_8","nameLocation":"60249:12:58","nodeType":"FunctionDefinition","parameters":{"id":16025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16020,"mutability":"mutable","name":"self","nameLocation":"60270:4:58","nodeType":"VariableDeclaration","scope":16038,"src":"60262:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16019,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60262:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16022,"mutability":"mutable","name":"value","nameLocation":"60283:5:58","nodeType":"VariableDeclaration","scope":16038,"src":"60276:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":16021,"name":"bytes8","nodeType":"ElementaryTypeName","src":"60276:6:58","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":16024,"mutability":"mutable","name":"offset","nameLocation":"60296:6:58","nodeType":"VariableDeclaration","scope":16038,"src":"60290:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16023,"name":"uint8","nodeType":"ElementaryTypeName","src":"60290:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"60261:42:58"},"returnParameters":{"id":16028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16027,"mutability":"mutable","name":"result","nameLocation":"60335:6:58","nodeType":"VariableDeclaration","scope":16038,"src":"60327:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16026,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60327:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"60326:16:58"},"scope":16305,"src":"60240:334:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16055,"nodeType":"Block","src":"60670:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16047,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16042,"src":"60684:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3232","id":16048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"60693:2:58","typeDescriptions":{"typeIdentifier":"t_rational_22_by_1","typeString":"int_const 22"},"value":"22"},"src":"60684:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16053,"nodeType":"IfStatement","src":"60680:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16050,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"60704:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60704:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16052,"nodeType":"RevertStatement","src":"60697:25:58"}},{"AST":{"nativeSrc":"60757:82:58","nodeType":"YulBlock","src":"60757:82:58","statements":[{"nativeSrc":"60771:58:58","nodeType":"YulAssignment","src":"60771:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"60793:1:58","nodeType":"YulLiteral","src":"60793:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"60796:6:58","nodeType":"YulIdentifier","src":"60796:6:58"}],"functionName":{"name":"mul","nativeSrc":"60789:3:58","nodeType":"YulIdentifier","src":"60789:3:58"},"nativeSrc":"60789:14:58","nodeType":"YulFunctionCall","src":"60789:14:58"},{"name":"self","nativeSrc":"60805:4:58","nodeType":"YulIdentifier","src":"60805:4:58"}],"functionName":{"name":"shl","nativeSrc":"60785:3:58","nodeType":"YulIdentifier","src":"60785:3:58"},"nativeSrc":"60785:25:58","nodeType":"YulFunctionCall","src":"60785:25:58"},{"arguments":[{"kind":"number","nativeSrc":"60816:3:58","nodeType":"YulLiteral","src":"60816:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"60825:1:58","nodeType":"YulLiteral","src":"60825:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"60821:3:58","nodeType":"YulIdentifier","src":"60821:3:58"},"nativeSrc":"60821:6:58","nodeType":"YulFunctionCall","src":"60821:6:58"}],"functionName":{"name":"shl","nativeSrc":"60812:3:58","nodeType":"YulIdentifier","src":"60812:3:58"},"nativeSrc":"60812:16:58","nodeType":"YulFunctionCall","src":"60812:16:58"}],"functionName":{"name":"and","nativeSrc":"60781:3:58","nodeType":"YulIdentifier","src":"60781:3:58"},"nativeSrc":"60781:48:58","nodeType":"YulFunctionCall","src":"60781:48:58"},"variableNames":[{"name":"result","nativeSrc":"60771:6:58","nodeType":"YulIdentifier","src":"60771:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16042,"isOffset":false,"isSlot":false,"src":"60796:6:58","valueSize":1},{"declaration":16045,"isOffset":false,"isSlot":false,"src":"60771:6:58","valueSize":1},{"declaration":16040,"isOffset":false,"isSlot":false,"src":"60805:4:58","valueSize":1}],"flags":["memory-safe"],"id":16054,"nodeType":"InlineAssembly","src":"60732:107:58"}]},"id":16056,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_10","nameLocation":"60589:13:58","nodeType":"FunctionDefinition","parameters":{"id":16043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16040,"mutability":"mutable","name":"self","nameLocation":"60611:4:58","nodeType":"VariableDeclaration","scope":16056,"src":"60603:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16039,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60603:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16042,"mutability":"mutable","name":"offset","nameLocation":"60623:6:58","nodeType":"VariableDeclaration","scope":16056,"src":"60617:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16041,"name":"uint8","nodeType":"ElementaryTypeName","src":"60617:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"60602:28:58"},"returnParameters":{"id":16046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16045,"mutability":"mutable","name":"result","nameLocation":"60662:6:58","nodeType":"VariableDeclaration","scope":16056,"src":"60654:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":16044,"name":"bytes10","nodeType":"ElementaryTypeName","src":"60654:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"60653:16:58"},"scope":16305,"src":"60580:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16075,"nodeType":"Block","src":"60956:233:58","statements":[{"assignments":[16068],"declarations":[{"constant":false,"id":16068,"mutability":"mutable","name":"oldValue","nameLocation":"60974:8:58","nodeType":"VariableDeclaration","scope":16075,"src":"60966:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":16067,"name":"bytes10","nodeType":"ElementaryTypeName","src":"60966:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":16073,"initialValue":{"arguments":[{"id":16070,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"60999:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16071,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16062,"src":"61005:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16069,"name":"extract_32_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16056,"src":"60985:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes32,uint8) pure returns (bytes10)"}},"id":16072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60985:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"60966:46:58"},{"AST":{"nativeSrc":"61047:136:58","nodeType":"YulBlock","src":"61047:136:58","statements":[{"nativeSrc":"61061:37:58","nodeType":"YulAssignment","src":"61061:37:58","value":{"arguments":[{"name":"value","nativeSrc":"61074:5:58","nodeType":"YulIdentifier","src":"61074:5:58"},{"arguments":[{"kind":"number","nativeSrc":"61085:3:58","nodeType":"YulLiteral","src":"61085:3:58","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"61094:1:58","nodeType":"YulLiteral","src":"61094:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"61090:3:58","nodeType":"YulIdentifier","src":"61090:3:58"},"nativeSrc":"61090:6:58","nodeType":"YulFunctionCall","src":"61090:6:58"}],"functionName":{"name":"shl","nativeSrc":"61081:3:58","nodeType":"YulIdentifier","src":"61081:3:58"},"nativeSrc":"61081:16:58","nodeType":"YulFunctionCall","src":"61081:16:58"}],"functionName":{"name":"and","nativeSrc":"61070:3:58","nodeType":"YulIdentifier","src":"61070:3:58"},"nativeSrc":"61070:28:58","nodeType":"YulFunctionCall","src":"61070:28:58"},"variableNames":[{"name":"value","nativeSrc":"61061:5:58","nodeType":"YulIdentifier","src":"61061:5:58"}]},{"nativeSrc":"61111:62:58","nodeType":"YulAssignment","src":"61111:62:58","value":{"arguments":[{"name":"self","nativeSrc":"61125:4:58","nodeType":"YulIdentifier","src":"61125:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"61139:1:58","nodeType":"YulLiteral","src":"61139:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"61142:6:58","nodeType":"YulIdentifier","src":"61142:6:58"}],"functionName":{"name":"mul","nativeSrc":"61135:3:58","nodeType":"YulIdentifier","src":"61135:3:58"},"nativeSrc":"61135:14:58","nodeType":"YulFunctionCall","src":"61135:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"61155:8:58","nodeType":"YulIdentifier","src":"61155:8:58"},{"name":"value","nativeSrc":"61165:5:58","nodeType":"YulIdentifier","src":"61165:5:58"}],"functionName":{"name":"xor","nativeSrc":"61151:3:58","nodeType":"YulIdentifier","src":"61151:3:58"},"nativeSrc":"61151:20:58","nodeType":"YulFunctionCall","src":"61151:20:58"}],"functionName":{"name":"shr","nativeSrc":"61131:3:58","nodeType":"YulIdentifier","src":"61131:3:58"},"nativeSrc":"61131:41:58","nodeType":"YulFunctionCall","src":"61131:41:58"}],"functionName":{"name":"xor","nativeSrc":"61121:3:58","nodeType":"YulIdentifier","src":"61121:3:58"},"nativeSrc":"61121:52:58","nodeType":"YulFunctionCall","src":"61121:52:58"},"variableNames":[{"name":"result","nativeSrc":"61111:6:58","nodeType":"YulIdentifier","src":"61111:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16062,"isOffset":false,"isSlot":false,"src":"61142:6:58","valueSize":1},{"declaration":16068,"isOffset":false,"isSlot":false,"src":"61155:8:58","valueSize":1},{"declaration":16065,"isOffset":false,"isSlot":false,"src":"61111:6:58","valueSize":1},{"declaration":16058,"isOffset":false,"isSlot":false,"src":"61125:4:58","valueSize":1},{"declaration":16060,"isOffset":false,"isSlot":false,"src":"61061:5:58","valueSize":1},{"declaration":16060,"isOffset":false,"isSlot":false,"src":"61074:5:58","valueSize":1},{"declaration":16060,"isOffset":false,"isSlot":false,"src":"61165:5:58","valueSize":1}],"flags":["memory-safe"],"id":16074,"nodeType":"InlineAssembly","src":"61022:161:58"}]},"id":16076,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_10","nameLocation":"60860:13:58","nodeType":"FunctionDefinition","parameters":{"id":16063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16058,"mutability":"mutable","name":"self","nameLocation":"60882:4:58","nodeType":"VariableDeclaration","scope":16076,"src":"60874:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16057,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60874:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16060,"mutability":"mutable","name":"value","nameLocation":"60896:5:58","nodeType":"VariableDeclaration","scope":16076,"src":"60888:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":16059,"name":"bytes10","nodeType":"ElementaryTypeName","src":"60888:7:58","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":16062,"mutability":"mutable","name":"offset","nameLocation":"60909:6:58","nodeType":"VariableDeclaration","scope":16076,"src":"60903:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16061,"name":"uint8","nodeType":"ElementaryTypeName","src":"60903:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"60873:43:58"},"returnParameters":{"id":16066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16065,"mutability":"mutable","name":"result","nameLocation":"60948:6:58","nodeType":"VariableDeclaration","scope":16076,"src":"60940:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16064,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60940:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"60939:16:58"},"scope":16305,"src":"60851:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16093,"nodeType":"Block","src":"61285:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16085,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16080,"src":"61299:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":16086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61308:2:58","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"61299:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16091,"nodeType":"IfStatement","src":"61295:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16088,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"61319:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61319:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16090,"nodeType":"RevertStatement","src":"61312:25:58"}},{"AST":{"nativeSrc":"61372:82:58","nodeType":"YulBlock","src":"61372:82:58","statements":[{"nativeSrc":"61386:58:58","nodeType":"YulAssignment","src":"61386:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"61408:1:58","nodeType":"YulLiteral","src":"61408:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"61411:6:58","nodeType":"YulIdentifier","src":"61411:6:58"}],"functionName":{"name":"mul","nativeSrc":"61404:3:58","nodeType":"YulIdentifier","src":"61404:3:58"},"nativeSrc":"61404:14:58","nodeType":"YulFunctionCall","src":"61404:14:58"},{"name":"self","nativeSrc":"61420:4:58","nodeType":"YulIdentifier","src":"61420:4:58"}],"functionName":{"name":"shl","nativeSrc":"61400:3:58","nodeType":"YulIdentifier","src":"61400:3:58"},"nativeSrc":"61400:25:58","nodeType":"YulFunctionCall","src":"61400:25:58"},{"arguments":[{"kind":"number","nativeSrc":"61431:3:58","nodeType":"YulLiteral","src":"61431:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"61440:1:58","nodeType":"YulLiteral","src":"61440:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"61436:3:58","nodeType":"YulIdentifier","src":"61436:3:58"},"nativeSrc":"61436:6:58","nodeType":"YulFunctionCall","src":"61436:6:58"}],"functionName":{"name":"shl","nativeSrc":"61427:3:58","nodeType":"YulIdentifier","src":"61427:3:58"},"nativeSrc":"61427:16:58","nodeType":"YulFunctionCall","src":"61427:16:58"}],"functionName":{"name":"and","nativeSrc":"61396:3:58","nodeType":"YulIdentifier","src":"61396:3:58"},"nativeSrc":"61396:48:58","nodeType":"YulFunctionCall","src":"61396:48:58"},"variableNames":[{"name":"result","nativeSrc":"61386:6:58","nodeType":"YulIdentifier","src":"61386:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16080,"isOffset":false,"isSlot":false,"src":"61411:6:58","valueSize":1},{"declaration":16083,"isOffset":false,"isSlot":false,"src":"61386:6:58","valueSize":1},{"declaration":16078,"isOffset":false,"isSlot":false,"src":"61420:4:58","valueSize":1}],"flags":["memory-safe"],"id":16092,"nodeType":"InlineAssembly","src":"61347:107:58"}]},"id":16094,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_12","nameLocation":"61204:13:58","nodeType":"FunctionDefinition","parameters":{"id":16081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16078,"mutability":"mutable","name":"self","nameLocation":"61226:4:58","nodeType":"VariableDeclaration","scope":16094,"src":"61218:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16077,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61218:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16080,"mutability":"mutable","name":"offset","nameLocation":"61238:6:58","nodeType":"VariableDeclaration","scope":16094,"src":"61232:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16079,"name":"uint8","nodeType":"ElementaryTypeName","src":"61232:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"61217:28:58"},"returnParameters":{"id":16084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16083,"mutability":"mutable","name":"result","nameLocation":"61277:6:58","nodeType":"VariableDeclaration","scope":16094,"src":"61269:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":16082,"name":"bytes12","nodeType":"ElementaryTypeName","src":"61269:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"61268:16:58"},"scope":16305,"src":"61195:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16113,"nodeType":"Block","src":"61571:233:58","statements":[{"assignments":[16106],"declarations":[{"constant":false,"id":16106,"mutability":"mutable","name":"oldValue","nameLocation":"61589:8:58","nodeType":"VariableDeclaration","scope":16113,"src":"61581:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":16105,"name":"bytes12","nodeType":"ElementaryTypeName","src":"61581:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":16111,"initialValue":{"arguments":[{"id":16108,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16096,"src":"61614:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16109,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16100,"src":"61620:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16107,"name":"extract_32_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16094,"src":"61600:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes32,uint8) pure returns (bytes12)"}},"id":16110,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61600:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"61581:46:58"},{"AST":{"nativeSrc":"61662:136:58","nodeType":"YulBlock","src":"61662:136:58","statements":[{"nativeSrc":"61676:37:58","nodeType":"YulAssignment","src":"61676:37:58","value":{"arguments":[{"name":"value","nativeSrc":"61689:5:58","nodeType":"YulIdentifier","src":"61689:5:58"},{"arguments":[{"kind":"number","nativeSrc":"61700:3:58","nodeType":"YulLiteral","src":"61700:3:58","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"61709:1:58","nodeType":"YulLiteral","src":"61709:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"61705:3:58","nodeType":"YulIdentifier","src":"61705:3:58"},"nativeSrc":"61705:6:58","nodeType":"YulFunctionCall","src":"61705:6:58"}],"functionName":{"name":"shl","nativeSrc":"61696:3:58","nodeType":"YulIdentifier","src":"61696:3:58"},"nativeSrc":"61696:16:58","nodeType":"YulFunctionCall","src":"61696:16:58"}],"functionName":{"name":"and","nativeSrc":"61685:3:58","nodeType":"YulIdentifier","src":"61685:3:58"},"nativeSrc":"61685:28:58","nodeType":"YulFunctionCall","src":"61685:28:58"},"variableNames":[{"name":"value","nativeSrc":"61676:5:58","nodeType":"YulIdentifier","src":"61676:5:58"}]},{"nativeSrc":"61726:62:58","nodeType":"YulAssignment","src":"61726:62:58","value":{"arguments":[{"name":"self","nativeSrc":"61740:4:58","nodeType":"YulIdentifier","src":"61740:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"61754:1:58","nodeType":"YulLiteral","src":"61754:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"61757:6:58","nodeType":"YulIdentifier","src":"61757:6:58"}],"functionName":{"name":"mul","nativeSrc":"61750:3:58","nodeType":"YulIdentifier","src":"61750:3:58"},"nativeSrc":"61750:14:58","nodeType":"YulFunctionCall","src":"61750:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"61770:8:58","nodeType":"YulIdentifier","src":"61770:8:58"},{"name":"value","nativeSrc":"61780:5:58","nodeType":"YulIdentifier","src":"61780:5:58"}],"functionName":{"name":"xor","nativeSrc":"61766:3:58","nodeType":"YulIdentifier","src":"61766:3:58"},"nativeSrc":"61766:20:58","nodeType":"YulFunctionCall","src":"61766:20:58"}],"functionName":{"name":"shr","nativeSrc":"61746:3:58","nodeType":"YulIdentifier","src":"61746:3:58"},"nativeSrc":"61746:41:58","nodeType":"YulFunctionCall","src":"61746:41:58"}],"functionName":{"name":"xor","nativeSrc":"61736:3:58","nodeType":"YulIdentifier","src":"61736:3:58"},"nativeSrc":"61736:52:58","nodeType":"YulFunctionCall","src":"61736:52:58"},"variableNames":[{"name":"result","nativeSrc":"61726:6:58","nodeType":"YulIdentifier","src":"61726:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16100,"isOffset":false,"isSlot":false,"src":"61757:6:58","valueSize":1},{"declaration":16106,"isOffset":false,"isSlot":false,"src":"61770:8:58","valueSize":1},{"declaration":16103,"isOffset":false,"isSlot":false,"src":"61726:6:58","valueSize":1},{"declaration":16096,"isOffset":false,"isSlot":false,"src":"61740:4:58","valueSize":1},{"declaration":16098,"isOffset":false,"isSlot":false,"src":"61676:5:58","valueSize":1},{"declaration":16098,"isOffset":false,"isSlot":false,"src":"61689:5:58","valueSize":1},{"declaration":16098,"isOffset":false,"isSlot":false,"src":"61780:5:58","valueSize":1}],"flags":["memory-safe"],"id":16112,"nodeType":"InlineAssembly","src":"61637:161:58"}]},"id":16114,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_12","nameLocation":"61475:13:58","nodeType":"FunctionDefinition","parameters":{"id":16101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16096,"mutability":"mutable","name":"self","nameLocation":"61497:4:58","nodeType":"VariableDeclaration","scope":16114,"src":"61489:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16095,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61489:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16098,"mutability":"mutable","name":"value","nameLocation":"61511:5:58","nodeType":"VariableDeclaration","scope":16114,"src":"61503:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":16097,"name":"bytes12","nodeType":"ElementaryTypeName","src":"61503:7:58","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":16100,"mutability":"mutable","name":"offset","nameLocation":"61524:6:58","nodeType":"VariableDeclaration","scope":16114,"src":"61518:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16099,"name":"uint8","nodeType":"ElementaryTypeName","src":"61518:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"61488:43:58"},"returnParameters":{"id":16104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16103,"mutability":"mutable","name":"result","nameLocation":"61563:6:58","nodeType":"VariableDeclaration","scope":16114,"src":"61555:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16102,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61555:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"61554:16:58"},"scope":16305,"src":"61466:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16131,"nodeType":"Block","src":"61900:175:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16123,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16118,"src":"61914:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":16124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61923:2:58","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"61914:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16129,"nodeType":"IfStatement","src":"61910:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16126,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"61934:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61934:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16128,"nodeType":"RevertStatement","src":"61927:25:58"}},{"AST":{"nativeSrc":"61987:82:58","nodeType":"YulBlock","src":"61987:82:58","statements":[{"nativeSrc":"62001:58:58","nodeType":"YulAssignment","src":"62001:58:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62023:1:58","nodeType":"YulLiteral","src":"62023:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"62026:6:58","nodeType":"YulIdentifier","src":"62026:6:58"}],"functionName":{"name":"mul","nativeSrc":"62019:3:58","nodeType":"YulIdentifier","src":"62019:3:58"},"nativeSrc":"62019:14:58","nodeType":"YulFunctionCall","src":"62019:14:58"},{"name":"self","nativeSrc":"62035:4:58","nodeType":"YulIdentifier","src":"62035:4:58"}],"functionName":{"name":"shl","nativeSrc":"62015:3:58","nodeType":"YulIdentifier","src":"62015:3:58"},"nativeSrc":"62015:25:58","nodeType":"YulFunctionCall","src":"62015:25:58"},{"arguments":[{"kind":"number","nativeSrc":"62046:3:58","nodeType":"YulLiteral","src":"62046:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"62055:1:58","nodeType":"YulLiteral","src":"62055:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62051:3:58","nodeType":"YulIdentifier","src":"62051:3:58"},"nativeSrc":"62051:6:58","nodeType":"YulFunctionCall","src":"62051:6:58"}],"functionName":{"name":"shl","nativeSrc":"62042:3:58","nodeType":"YulIdentifier","src":"62042:3:58"},"nativeSrc":"62042:16:58","nodeType":"YulFunctionCall","src":"62042:16:58"}],"functionName":{"name":"and","nativeSrc":"62011:3:58","nodeType":"YulIdentifier","src":"62011:3:58"},"nativeSrc":"62011:48:58","nodeType":"YulFunctionCall","src":"62011:48:58"},"variableNames":[{"name":"result","nativeSrc":"62001:6:58","nodeType":"YulIdentifier","src":"62001:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16118,"isOffset":false,"isSlot":false,"src":"62026:6:58","valueSize":1},{"declaration":16121,"isOffset":false,"isSlot":false,"src":"62001:6:58","valueSize":1},{"declaration":16116,"isOffset":false,"isSlot":false,"src":"62035:4:58","valueSize":1}],"flags":["memory-safe"],"id":16130,"nodeType":"InlineAssembly","src":"61962:107:58"}]},"id":16132,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_16","nameLocation":"61819:13:58","nodeType":"FunctionDefinition","parameters":{"id":16119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16116,"mutability":"mutable","name":"self","nameLocation":"61841:4:58","nodeType":"VariableDeclaration","scope":16132,"src":"61833:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16115,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61833:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16118,"mutability":"mutable","name":"offset","nameLocation":"61853:6:58","nodeType":"VariableDeclaration","scope":16132,"src":"61847:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16117,"name":"uint8","nodeType":"ElementaryTypeName","src":"61847:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"61832:28:58"},"returnParameters":{"id":16122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16121,"mutability":"mutable","name":"result","nameLocation":"61892:6:58","nodeType":"VariableDeclaration","scope":16132,"src":"61884:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":16120,"name":"bytes16","nodeType":"ElementaryTypeName","src":"61884:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"61883:16:58"},"scope":16305,"src":"61810:265:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16151,"nodeType":"Block","src":"62186:233:58","statements":[{"assignments":[16144],"declarations":[{"constant":false,"id":16144,"mutability":"mutable","name":"oldValue","nameLocation":"62204:8:58","nodeType":"VariableDeclaration","scope":16151,"src":"62196:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":16143,"name":"bytes16","nodeType":"ElementaryTypeName","src":"62196:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":16149,"initialValue":{"arguments":[{"id":16146,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16134,"src":"62229:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16147,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16138,"src":"62235:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16145,"name":"extract_32_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16132,"src":"62215:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes32,uint8) pure returns (bytes16)"}},"id":16148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62215:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"62196:46:58"},{"AST":{"nativeSrc":"62277:136:58","nodeType":"YulBlock","src":"62277:136:58","statements":[{"nativeSrc":"62291:37:58","nodeType":"YulAssignment","src":"62291:37:58","value":{"arguments":[{"name":"value","nativeSrc":"62304:5:58","nodeType":"YulIdentifier","src":"62304:5:58"},{"arguments":[{"kind":"number","nativeSrc":"62315:3:58","nodeType":"YulLiteral","src":"62315:3:58","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"62324:1:58","nodeType":"YulLiteral","src":"62324:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62320:3:58","nodeType":"YulIdentifier","src":"62320:3:58"},"nativeSrc":"62320:6:58","nodeType":"YulFunctionCall","src":"62320:6:58"}],"functionName":{"name":"shl","nativeSrc":"62311:3:58","nodeType":"YulIdentifier","src":"62311:3:58"},"nativeSrc":"62311:16:58","nodeType":"YulFunctionCall","src":"62311:16:58"}],"functionName":{"name":"and","nativeSrc":"62300:3:58","nodeType":"YulIdentifier","src":"62300:3:58"},"nativeSrc":"62300:28:58","nodeType":"YulFunctionCall","src":"62300:28:58"},"variableNames":[{"name":"value","nativeSrc":"62291:5:58","nodeType":"YulIdentifier","src":"62291:5:58"}]},{"nativeSrc":"62341:62:58","nodeType":"YulAssignment","src":"62341:62:58","value":{"arguments":[{"name":"self","nativeSrc":"62355:4:58","nodeType":"YulIdentifier","src":"62355:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62369:1:58","nodeType":"YulLiteral","src":"62369:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"62372:6:58","nodeType":"YulIdentifier","src":"62372:6:58"}],"functionName":{"name":"mul","nativeSrc":"62365:3:58","nodeType":"YulIdentifier","src":"62365:3:58"},"nativeSrc":"62365:14:58","nodeType":"YulFunctionCall","src":"62365:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"62385:8:58","nodeType":"YulIdentifier","src":"62385:8:58"},{"name":"value","nativeSrc":"62395:5:58","nodeType":"YulIdentifier","src":"62395:5:58"}],"functionName":{"name":"xor","nativeSrc":"62381:3:58","nodeType":"YulIdentifier","src":"62381:3:58"},"nativeSrc":"62381:20:58","nodeType":"YulFunctionCall","src":"62381:20:58"}],"functionName":{"name":"shr","nativeSrc":"62361:3:58","nodeType":"YulIdentifier","src":"62361:3:58"},"nativeSrc":"62361:41:58","nodeType":"YulFunctionCall","src":"62361:41:58"}],"functionName":{"name":"xor","nativeSrc":"62351:3:58","nodeType":"YulIdentifier","src":"62351:3:58"},"nativeSrc":"62351:52:58","nodeType":"YulFunctionCall","src":"62351:52:58"},"variableNames":[{"name":"result","nativeSrc":"62341:6:58","nodeType":"YulIdentifier","src":"62341:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16138,"isOffset":false,"isSlot":false,"src":"62372:6:58","valueSize":1},{"declaration":16144,"isOffset":false,"isSlot":false,"src":"62385:8:58","valueSize":1},{"declaration":16141,"isOffset":false,"isSlot":false,"src":"62341:6:58","valueSize":1},{"declaration":16134,"isOffset":false,"isSlot":false,"src":"62355:4:58","valueSize":1},{"declaration":16136,"isOffset":false,"isSlot":false,"src":"62291:5:58","valueSize":1},{"declaration":16136,"isOffset":false,"isSlot":false,"src":"62304:5:58","valueSize":1},{"declaration":16136,"isOffset":false,"isSlot":false,"src":"62395:5:58","valueSize":1}],"flags":["memory-safe"],"id":16150,"nodeType":"InlineAssembly","src":"62252:161:58"}]},"id":16152,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_16","nameLocation":"62090:13:58","nodeType":"FunctionDefinition","parameters":{"id":16139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16134,"mutability":"mutable","name":"self","nameLocation":"62112:4:58","nodeType":"VariableDeclaration","scope":16152,"src":"62104:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16133,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62104:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16136,"mutability":"mutable","name":"value","nameLocation":"62126:5:58","nodeType":"VariableDeclaration","scope":16152,"src":"62118:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":16135,"name":"bytes16","nodeType":"ElementaryTypeName","src":"62118:7:58","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":16138,"mutability":"mutable","name":"offset","nameLocation":"62139:6:58","nodeType":"VariableDeclaration","scope":16152,"src":"62133:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16137,"name":"uint8","nodeType":"ElementaryTypeName","src":"62133:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"62103:43:58"},"returnParameters":{"id":16142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16141,"mutability":"mutable","name":"result","nameLocation":"62178:6:58","nodeType":"VariableDeclaration","scope":16152,"src":"62170:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16140,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62170:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"62169:16:58"},"scope":16305,"src":"62081:338:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16169,"nodeType":"Block","src":"62515:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16161,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16156,"src":"62529:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":16162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"62538:2:58","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"62529:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16167,"nodeType":"IfStatement","src":"62525:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16164,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"62549:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62549:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16166,"nodeType":"RevertStatement","src":"62542:25:58"}},{"AST":{"nativeSrc":"62602:81:58","nodeType":"YulBlock","src":"62602:81:58","statements":[{"nativeSrc":"62616:57:58","nodeType":"YulAssignment","src":"62616:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62638:1:58","nodeType":"YulLiteral","src":"62638:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"62641:6:58","nodeType":"YulIdentifier","src":"62641:6:58"}],"functionName":{"name":"mul","nativeSrc":"62634:3:58","nodeType":"YulIdentifier","src":"62634:3:58"},"nativeSrc":"62634:14:58","nodeType":"YulFunctionCall","src":"62634:14:58"},{"name":"self","nativeSrc":"62650:4:58","nodeType":"YulIdentifier","src":"62650:4:58"}],"functionName":{"name":"shl","nativeSrc":"62630:3:58","nodeType":"YulIdentifier","src":"62630:3:58"},"nativeSrc":"62630:25:58","nodeType":"YulFunctionCall","src":"62630:25:58"},{"arguments":[{"kind":"number","nativeSrc":"62661:2:58","nodeType":"YulLiteral","src":"62661:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"62669:1:58","nodeType":"YulLiteral","src":"62669:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62665:3:58","nodeType":"YulIdentifier","src":"62665:3:58"},"nativeSrc":"62665:6:58","nodeType":"YulFunctionCall","src":"62665:6:58"}],"functionName":{"name":"shl","nativeSrc":"62657:3:58","nodeType":"YulIdentifier","src":"62657:3:58"},"nativeSrc":"62657:15:58","nodeType":"YulFunctionCall","src":"62657:15:58"}],"functionName":{"name":"and","nativeSrc":"62626:3:58","nodeType":"YulIdentifier","src":"62626:3:58"},"nativeSrc":"62626:47:58","nodeType":"YulFunctionCall","src":"62626:47:58"},"variableNames":[{"name":"result","nativeSrc":"62616:6:58","nodeType":"YulIdentifier","src":"62616:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16156,"isOffset":false,"isSlot":false,"src":"62641:6:58","valueSize":1},{"declaration":16159,"isOffset":false,"isSlot":false,"src":"62616:6:58","valueSize":1},{"declaration":16154,"isOffset":false,"isSlot":false,"src":"62650:4:58","valueSize":1}],"flags":["memory-safe"],"id":16168,"nodeType":"InlineAssembly","src":"62577:106:58"}]},"id":16170,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_20","nameLocation":"62434:13:58","nodeType":"FunctionDefinition","parameters":{"id":16157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16154,"mutability":"mutable","name":"self","nameLocation":"62456:4:58","nodeType":"VariableDeclaration","scope":16170,"src":"62448:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16153,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62448:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16156,"mutability":"mutable","name":"offset","nameLocation":"62468:6:58","nodeType":"VariableDeclaration","scope":16170,"src":"62462:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16155,"name":"uint8","nodeType":"ElementaryTypeName","src":"62462:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"62447:28:58"},"returnParameters":{"id":16160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16159,"mutability":"mutable","name":"result","nameLocation":"62507:6:58","nodeType":"VariableDeclaration","scope":16170,"src":"62499:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":16158,"name":"bytes20","nodeType":"ElementaryTypeName","src":"62499:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"62498:16:58"},"scope":16305,"src":"62425:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16189,"nodeType":"Block","src":"62800:232:58","statements":[{"assignments":[16182],"declarations":[{"constant":false,"id":16182,"mutability":"mutable","name":"oldValue","nameLocation":"62818:8:58","nodeType":"VariableDeclaration","scope":16189,"src":"62810:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":16181,"name":"bytes20","nodeType":"ElementaryTypeName","src":"62810:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":16187,"initialValue":{"arguments":[{"id":16184,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16172,"src":"62843:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16185,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16176,"src":"62849:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16183,"name":"extract_32_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16170,"src":"62829:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes32,uint8) pure returns (bytes20)"}},"id":16186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62829:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"62810:46:58"},{"AST":{"nativeSrc":"62891:135:58","nodeType":"YulBlock","src":"62891:135:58","statements":[{"nativeSrc":"62905:36:58","nodeType":"YulAssignment","src":"62905:36:58","value":{"arguments":[{"name":"value","nativeSrc":"62918:5:58","nodeType":"YulIdentifier","src":"62918:5:58"},{"arguments":[{"kind":"number","nativeSrc":"62929:2:58","nodeType":"YulLiteral","src":"62929:2:58","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"62937:1:58","nodeType":"YulLiteral","src":"62937:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62933:3:58","nodeType":"YulIdentifier","src":"62933:3:58"},"nativeSrc":"62933:6:58","nodeType":"YulFunctionCall","src":"62933:6:58"}],"functionName":{"name":"shl","nativeSrc":"62925:3:58","nodeType":"YulIdentifier","src":"62925:3:58"},"nativeSrc":"62925:15:58","nodeType":"YulFunctionCall","src":"62925:15:58"}],"functionName":{"name":"and","nativeSrc":"62914:3:58","nodeType":"YulIdentifier","src":"62914:3:58"},"nativeSrc":"62914:27:58","nodeType":"YulFunctionCall","src":"62914:27:58"},"variableNames":[{"name":"value","nativeSrc":"62905:5:58","nodeType":"YulIdentifier","src":"62905:5:58"}]},{"nativeSrc":"62954:62:58","nodeType":"YulAssignment","src":"62954:62:58","value":{"arguments":[{"name":"self","nativeSrc":"62968:4:58","nodeType":"YulIdentifier","src":"62968:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62982:1:58","nodeType":"YulLiteral","src":"62982:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"62985:6:58","nodeType":"YulIdentifier","src":"62985:6:58"}],"functionName":{"name":"mul","nativeSrc":"62978:3:58","nodeType":"YulIdentifier","src":"62978:3:58"},"nativeSrc":"62978:14:58","nodeType":"YulFunctionCall","src":"62978:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"62998:8:58","nodeType":"YulIdentifier","src":"62998:8:58"},{"name":"value","nativeSrc":"63008:5:58","nodeType":"YulIdentifier","src":"63008:5:58"}],"functionName":{"name":"xor","nativeSrc":"62994:3:58","nodeType":"YulIdentifier","src":"62994:3:58"},"nativeSrc":"62994:20:58","nodeType":"YulFunctionCall","src":"62994:20:58"}],"functionName":{"name":"shr","nativeSrc":"62974:3:58","nodeType":"YulIdentifier","src":"62974:3:58"},"nativeSrc":"62974:41:58","nodeType":"YulFunctionCall","src":"62974:41:58"}],"functionName":{"name":"xor","nativeSrc":"62964:3:58","nodeType":"YulIdentifier","src":"62964:3:58"},"nativeSrc":"62964:52:58","nodeType":"YulFunctionCall","src":"62964:52:58"},"variableNames":[{"name":"result","nativeSrc":"62954:6:58","nodeType":"YulIdentifier","src":"62954:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16176,"isOffset":false,"isSlot":false,"src":"62985:6:58","valueSize":1},{"declaration":16182,"isOffset":false,"isSlot":false,"src":"62998:8:58","valueSize":1},{"declaration":16179,"isOffset":false,"isSlot":false,"src":"62954:6:58","valueSize":1},{"declaration":16172,"isOffset":false,"isSlot":false,"src":"62968:4:58","valueSize":1},{"declaration":16174,"isOffset":false,"isSlot":false,"src":"62905:5:58","valueSize":1},{"declaration":16174,"isOffset":false,"isSlot":false,"src":"62918:5:58","valueSize":1},{"declaration":16174,"isOffset":false,"isSlot":false,"src":"63008:5:58","valueSize":1}],"flags":["memory-safe"],"id":16188,"nodeType":"InlineAssembly","src":"62866:160:58"}]},"id":16190,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_20","nameLocation":"62704:13:58","nodeType":"FunctionDefinition","parameters":{"id":16177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16172,"mutability":"mutable","name":"self","nameLocation":"62726:4:58","nodeType":"VariableDeclaration","scope":16190,"src":"62718:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16171,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62718:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16174,"mutability":"mutable","name":"value","nameLocation":"62740:5:58","nodeType":"VariableDeclaration","scope":16190,"src":"62732:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":16173,"name":"bytes20","nodeType":"ElementaryTypeName","src":"62732:7:58","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":16176,"mutability":"mutable","name":"offset","nameLocation":"62753:6:58","nodeType":"VariableDeclaration","scope":16190,"src":"62747:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16175,"name":"uint8","nodeType":"ElementaryTypeName","src":"62747:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"62717:43:58"},"returnParameters":{"id":16180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16179,"mutability":"mutable","name":"result","nameLocation":"62792:6:58","nodeType":"VariableDeclaration","scope":16190,"src":"62784:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16178,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62784:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"62783:16:58"},"scope":16305,"src":"62695:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16207,"nodeType":"Block","src":"63128:174:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16199,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16194,"src":"63142:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":16200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63151:2:58","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"63142:11:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16205,"nodeType":"IfStatement","src":"63138:42:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16202,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"63162:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63162:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16204,"nodeType":"RevertStatement","src":"63155:25:58"}},{"AST":{"nativeSrc":"63215:81:58","nodeType":"YulBlock","src":"63215:81:58","statements":[{"nativeSrc":"63229:57:58","nodeType":"YulAssignment","src":"63229:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"63251:1:58","nodeType":"YulLiteral","src":"63251:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"63254:6:58","nodeType":"YulIdentifier","src":"63254:6:58"}],"functionName":{"name":"mul","nativeSrc":"63247:3:58","nodeType":"YulIdentifier","src":"63247:3:58"},"nativeSrc":"63247:14:58","nodeType":"YulFunctionCall","src":"63247:14:58"},{"name":"self","nativeSrc":"63263:4:58","nodeType":"YulIdentifier","src":"63263:4:58"}],"functionName":{"name":"shl","nativeSrc":"63243:3:58","nodeType":"YulIdentifier","src":"63243:3:58"},"nativeSrc":"63243:25:58","nodeType":"YulFunctionCall","src":"63243:25:58"},{"arguments":[{"kind":"number","nativeSrc":"63274:2:58","nodeType":"YulLiteral","src":"63274:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"63282:1:58","nodeType":"YulLiteral","src":"63282:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"63278:3:58","nodeType":"YulIdentifier","src":"63278:3:58"},"nativeSrc":"63278:6:58","nodeType":"YulFunctionCall","src":"63278:6:58"}],"functionName":{"name":"shl","nativeSrc":"63270:3:58","nodeType":"YulIdentifier","src":"63270:3:58"},"nativeSrc":"63270:15:58","nodeType":"YulFunctionCall","src":"63270:15:58"}],"functionName":{"name":"and","nativeSrc":"63239:3:58","nodeType":"YulIdentifier","src":"63239:3:58"},"nativeSrc":"63239:47:58","nodeType":"YulFunctionCall","src":"63239:47:58"},"variableNames":[{"name":"result","nativeSrc":"63229:6:58","nodeType":"YulIdentifier","src":"63229:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16194,"isOffset":false,"isSlot":false,"src":"63254:6:58","valueSize":1},{"declaration":16197,"isOffset":false,"isSlot":false,"src":"63229:6:58","valueSize":1},{"declaration":16192,"isOffset":false,"isSlot":false,"src":"63263:4:58","valueSize":1}],"flags":["memory-safe"],"id":16206,"nodeType":"InlineAssembly","src":"63190:106:58"}]},"id":16208,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_22","nameLocation":"63047:13:58","nodeType":"FunctionDefinition","parameters":{"id":16195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16192,"mutability":"mutable","name":"self","nameLocation":"63069:4:58","nodeType":"VariableDeclaration","scope":16208,"src":"63061:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63061:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16194,"mutability":"mutable","name":"offset","nameLocation":"63081:6:58","nodeType":"VariableDeclaration","scope":16208,"src":"63075:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16193,"name":"uint8","nodeType":"ElementaryTypeName","src":"63075:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63060:28:58"},"returnParameters":{"id":16198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16197,"mutability":"mutable","name":"result","nameLocation":"63120:6:58","nodeType":"VariableDeclaration","scope":16208,"src":"63112:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":16196,"name":"bytes22","nodeType":"ElementaryTypeName","src":"63112:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"63111:16:58"},"scope":16305,"src":"63038:264:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16227,"nodeType":"Block","src":"63413:232:58","statements":[{"assignments":[16220],"declarations":[{"constant":false,"id":16220,"mutability":"mutable","name":"oldValue","nameLocation":"63431:8:58","nodeType":"VariableDeclaration","scope":16227,"src":"63423:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":16219,"name":"bytes22","nodeType":"ElementaryTypeName","src":"63423:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"id":16225,"initialValue":{"arguments":[{"id":16222,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16210,"src":"63456:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16223,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16214,"src":"63462:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16221,"name":"extract_32_22","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16208,"src":"63442:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes22_$","typeString":"function (bytes32,uint8) pure returns (bytes22)"}},"id":16224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63442:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"nodeType":"VariableDeclarationStatement","src":"63423:46:58"},{"AST":{"nativeSrc":"63504:135:58","nodeType":"YulBlock","src":"63504:135:58","statements":[{"nativeSrc":"63518:36:58","nodeType":"YulAssignment","src":"63518:36:58","value":{"arguments":[{"name":"value","nativeSrc":"63531:5:58","nodeType":"YulIdentifier","src":"63531:5:58"},{"arguments":[{"kind":"number","nativeSrc":"63542:2:58","nodeType":"YulLiteral","src":"63542:2:58","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"63550:1:58","nodeType":"YulLiteral","src":"63550:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"63546:3:58","nodeType":"YulIdentifier","src":"63546:3:58"},"nativeSrc":"63546:6:58","nodeType":"YulFunctionCall","src":"63546:6:58"}],"functionName":{"name":"shl","nativeSrc":"63538:3:58","nodeType":"YulIdentifier","src":"63538:3:58"},"nativeSrc":"63538:15:58","nodeType":"YulFunctionCall","src":"63538:15:58"}],"functionName":{"name":"and","nativeSrc":"63527:3:58","nodeType":"YulIdentifier","src":"63527:3:58"},"nativeSrc":"63527:27:58","nodeType":"YulFunctionCall","src":"63527:27:58"},"variableNames":[{"name":"value","nativeSrc":"63518:5:58","nodeType":"YulIdentifier","src":"63518:5:58"}]},{"nativeSrc":"63567:62:58","nodeType":"YulAssignment","src":"63567:62:58","value":{"arguments":[{"name":"self","nativeSrc":"63581:4:58","nodeType":"YulIdentifier","src":"63581:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"63595:1:58","nodeType":"YulLiteral","src":"63595:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"63598:6:58","nodeType":"YulIdentifier","src":"63598:6:58"}],"functionName":{"name":"mul","nativeSrc":"63591:3:58","nodeType":"YulIdentifier","src":"63591:3:58"},"nativeSrc":"63591:14:58","nodeType":"YulFunctionCall","src":"63591:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"63611:8:58","nodeType":"YulIdentifier","src":"63611:8:58"},{"name":"value","nativeSrc":"63621:5:58","nodeType":"YulIdentifier","src":"63621:5:58"}],"functionName":{"name":"xor","nativeSrc":"63607:3:58","nodeType":"YulIdentifier","src":"63607:3:58"},"nativeSrc":"63607:20:58","nodeType":"YulFunctionCall","src":"63607:20:58"}],"functionName":{"name":"shr","nativeSrc":"63587:3:58","nodeType":"YulIdentifier","src":"63587:3:58"},"nativeSrc":"63587:41:58","nodeType":"YulFunctionCall","src":"63587:41:58"}],"functionName":{"name":"xor","nativeSrc":"63577:3:58","nodeType":"YulIdentifier","src":"63577:3:58"},"nativeSrc":"63577:52:58","nodeType":"YulFunctionCall","src":"63577:52:58"},"variableNames":[{"name":"result","nativeSrc":"63567:6:58","nodeType":"YulIdentifier","src":"63567:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16214,"isOffset":false,"isSlot":false,"src":"63598:6:58","valueSize":1},{"declaration":16220,"isOffset":false,"isSlot":false,"src":"63611:8:58","valueSize":1},{"declaration":16217,"isOffset":false,"isSlot":false,"src":"63567:6:58","valueSize":1},{"declaration":16210,"isOffset":false,"isSlot":false,"src":"63581:4:58","valueSize":1},{"declaration":16212,"isOffset":false,"isSlot":false,"src":"63518:5:58","valueSize":1},{"declaration":16212,"isOffset":false,"isSlot":false,"src":"63531:5:58","valueSize":1},{"declaration":16212,"isOffset":false,"isSlot":false,"src":"63621:5:58","valueSize":1}],"flags":["memory-safe"],"id":16226,"nodeType":"InlineAssembly","src":"63479:160:58"}]},"id":16228,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_22","nameLocation":"63317:13:58","nodeType":"FunctionDefinition","parameters":{"id":16215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16210,"mutability":"mutable","name":"self","nameLocation":"63339:4:58","nodeType":"VariableDeclaration","scope":16228,"src":"63331:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16209,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63331:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16212,"mutability":"mutable","name":"value","nameLocation":"63353:5:58","nodeType":"VariableDeclaration","scope":16228,"src":"63345:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":16211,"name":"bytes22","nodeType":"ElementaryTypeName","src":"63345:7:58","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":16214,"mutability":"mutable","name":"offset","nameLocation":"63366:6:58","nodeType":"VariableDeclaration","scope":16228,"src":"63360:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16213,"name":"uint8","nodeType":"ElementaryTypeName","src":"63360:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63330:43:58"},"returnParameters":{"id":16218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16217,"mutability":"mutable","name":"result","nameLocation":"63405:6:58","nodeType":"VariableDeclaration","scope":16228,"src":"63397:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16216,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63397:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"63396:16:58"},"scope":16305,"src":"63308:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16245,"nodeType":"Block","src":"63741:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16237,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16232,"src":"63755:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":16238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63764:1:58","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"63755:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16243,"nodeType":"IfStatement","src":"63751:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16240,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"63774:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63774:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16242,"nodeType":"RevertStatement","src":"63767:25:58"}},{"AST":{"nativeSrc":"63827:81:58","nodeType":"YulBlock","src":"63827:81:58","statements":[{"nativeSrc":"63841:57:58","nodeType":"YulAssignment","src":"63841:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"63863:1:58","nodeType":"YulLiteral","src":"63863:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"63866:6:58","nodeType":"YulIdentifier","src":"63866:6:58"}],"functionName":{"name":"mul","nativeSrc":"63859:3:58","nodeType":"YulIdentifier","src":"63859:3:58"},"nativeSrc":"63859:14:58","nodeType":"YulFunctionCall","src":"63859:14:58"},{"name":"self","nativeSrc":"63875:4:58","nodeType":"YulIdentifier","src":"63875:4:58"}],"functionName":{"name":"shl","nativeSrc":"63855:3:58","nodeType":"YulIdentifier","src":"63855:3:58"},"nativeSrc":"63855:25:58","nodeType":"YulFunctionCall","src":"63855:25:58"},{"arguments":[{"kind":"number","nativeSrc":"63886:2:58","nodeType":"YulLiteral","src":"63886:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"63894:1:58","nodeType":"YulLiteral","src":"63894:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"63890:3:58","nodeType":"YulIdentifier","src":"63890:3:58"},"nativeSrc":"63890:6:58","nodeType":"YulFunctionCall","src":"63890:6:58"}],"functionName":{"name":"shl","nativeSrc":"63882:3:58","nodeType":"YulIdentifier","src":"63882:3:58"},"nativeSrc":"63882:15:58","nodeType":"YulFunctionCall","src":"63882:15:58"}],"functionName":{"name":"and","nativeSrc":"63851:3:58","nodeType":"YulIdentifier","src":"63851:3:58"},"nativeSrc":"63851:47:58","nodeType":"YulFunctionCall","src":"63851:47:58"},"variableNames":[{"name":"result","nativeSrc":"63841:6:58","nodeType":"YulIdentifier","src":"63841:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16232,"isOffset":false,"isSlot":false,"src":"63866:6:58","valueSize":1},{"declaration":16235,"isOffset":false,"isSlot":false,"src":"63841:6:58","valueSize":1},{"declaration":16230,"isOffset":false,"isSlot":false,"src":"63875:4:58","valueSize":1}],"flags":["memory-safe"],"id":16244,"nodeType":"InlineAssembly","src":"63802:106:58"}]},"id":16246,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_24","nameLocation":"63660:13:58","nodeType":"FunctionDefinition","parameters":{"id":16233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16230,"mutability":"mutable","name":"self","nameLocation":"63682:4:58","nodeType":"VariableDeclaration","scope":16246,"src":"63674:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16229,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63674:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16232,"mutability":"mutable","name":"offset","nameLocation":"63694:6:58","nodeType":"VariableDeclaration","scope":16246,"src":"63688:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16231,"name":"uint8","nodeType":"ElementaryTypeName","src":"63688:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63673:28:58"},"returnParameters":{"id":16236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16235,"mutability":"mutable","name":"result","nameLocation":"63733:6:58","nodeType":"VariableDeclaration","scope":16246,"src":"63725:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":16234,"name":"bytes24","nodeType":"ElementaryTypeName","src":"63725:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"63724:16:58"},"scope":16305,"src":"63651:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16265,"nodeType":"Block","src":"64025:232:58","statements":[{"assignments":[16258],"declarations":[{"constant":false,"id":16258,"mutability":"mutable","name":"oldValue","nameLocation":"64043:8:58","nodeType":"VariableDeclaration","scope":16265,"src":"64035:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":16257,"name":"bytes24","nodeType":"ElementaryTypeName","src":"64035:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"id":16263,"initialValue":{"arguments":[{"id":16260,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16248,"src":"64068:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16261,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16252,"src":"64074:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16259,"name":"extract_32_24","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16246,"src":"64054:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes24_$","typeString":"function (bytes32,uint8) pure returns (bytes24)"}},"id":16262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64054:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"nodeType":"VariableDeclarationStatement","src":"64035:46:58"},{"AST":{"nativeSrc":"64116:135:58","nodeType":"YulBlock","src":"64116:135:58","statements":[{"nativeSrc":"64130:36:58","nodeType":"YulAssignment","src":"64130:36:58","value":{"arguments":[{"name":"value","nativeSrc":"64143:5:58","nodeType":"YulIdentifier","src":"64143:5:58"},{"arguments":[{"kind":"number","nativeSrc":"64154:2:58","nodeType":"YulLiteral","src":"64154:2:58","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"64162:1:58","nodeType":"YulLiteral","src":"64162:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"64158:3:58","nodeType":"YulIdentifier","src":"64158:3:58"},"nativeSrc":"64158:6:58","nodeType":"YulFunctionCall","src":"64158:6:58"}],"functionName":{"name":"shl","nativeSrc":"64150:3:58","nodeType":"YulIdentifier","src":"64150:3:58"},"nativeSrc":"64150:15:58","nodeType":"YulFunctionCall","src":"64150:15:58"}],"functionName":{"name":"and","nativeSrc":"64139:3:58","nodeType":"YulIdentifier","src":"64139:3:58"},"nativeSrc":"64139:27:58","nodeType":"YulFunctionCall","src":"64139:27:58"},"variableNames":[{"name":"value","nativeSrc":"64130:5:58","nodeType":"YulIdentifier","src":"64130:5:58"}]},{"nativeSrc":"64179:62:58","nodeType":"YulAssignment","src":"64179:62:58","value":{"arguments":[{"name":"self","nativeSrc":"64193:4:58","nodeType":"YulIdentifier","src":"64193:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"64207:1:58","nodeType":"YulLiteral","src":"64207:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"64210:6:58","nodeType":"YulIdentifier","src":"64210:6:58"}],"functionName":{"name":"mul","nativeSrc":"64203:3:58","nodeType":"YulIdentifier","src":"64203:3:58"},"nativeSrc":"64203:14:58","nodeType":"YulFunctionCall","src":"64203:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"64223:8:58","nodeType":"YulIdentifier","src":"64223:8:58"},{"name":"value","nativeSrc":"64233:5:58","nodeType":"YulIdentifier","src":"64233:5:58"}],"functionName":{"name":"xor","nativeSrc":"64219:3:58","nodeType":"YulIdentifier","src":"64219:3:58"},"nativeSrc":"64219:20:58","nodeType":"YulFunctionCall","src":"64219:20:58"}],"functionName":{"name":"shr","nativeSrc":"64199:3:58","nodeType":"YulIdentifier","src":"64199:3:58"},"nativeSrc":"64199:41:58","nodeType":"YulFunctionCall","src":"64199:41:58"}],"functionName":{"name":"xor","nativeSrc":"64189:3:58","nodeType":"YulIdentifier","src":"64189:3:58"},"nativeSrc":"64189:52:58","nodeType":"YulFunctionCall","src":"64189:52:58"},"variableNames":[{"name":"result","nativeSrc":"64179:6:58","nodeType":"YulIdentifier","src":"64179:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16252,"isOffset":false,"isSlot":false,"src":"64210:6:58","valueSize":1},{"declaration":16258,"isOffset":false,"isSlot":false,"src":"64223:8:58","valueSize":1},{"declaration":16255,"isOffset":false,"isSlot":false,"src":"64179:6:58","valueSize":1},{"declaration":16248,"isOffset":false,"isSlot":false,"src":"64193:4:58","valueSize":1},{"declaration":16250,"isOffset":false,"isSlot":false,"src":"64130:5:58","valueSize":1},{"declaration":16250,"isOffset":false,"isSlot":false,"src":"64143:5:58","valueSize":1},{"declaration":16250,"isOffset":false,"isSlot":false,"src":"64233:5:58","valueSize":1}],"flags":["memory-safe"],"id":16264,"nodeType":"InlineAssembly","src":"64091:160:58"}]},"id":16266,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_24","nameLocation":"63929:13:58","nodeType":"FunctionDefinition","parameters":{"id":16253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16248,"mutability":"mutable","name":"self","nameLocation":"63951:4:58","nodeType":"VariableDeclaration","scope":16266,"src":"63943:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16247,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63943:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16250,"mutability":"mutable","name":"value","nameLocation":"63965:5:58","nodeType":"VariableDeclaration","scope":16266,"src":"63957:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":16249,"name":"bytes24","nodeType":"ElementaryTypeName","src":"63957:7:58","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":16252,"mutability":"mutable","name":"offset","nameLocation":"63978:6:58","nodeType":"VariableDeclaration","scope":16266,"src":"63972:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16251,"name":"uint8","nodeType":"ElementaryTypeName","src":"63972:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63942:43:58"},"returnParameters":{"id":16256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16255,"mutability":"mutable","name":"result","nameLocation":"64017:6:58","nodeType":"VariableDeclaration","scope":16266,"src":"64009:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16254,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64009:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"64008:16:58"},"scope":16305,"src":"63920:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16283,"nodeType":"Block","src":"64353:173:58","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16275,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16270,"src":"64367:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":16276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"64376:1:58","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"64367:10:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16281,"nodeType":"IfStatement","src":"64363:41:58","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16278,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12724,"src":"64386:16:58","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64386:18:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16280,"nodeType":"RevertStatement","src":"64379:25:58"}},{"AST":{"nativeSrc":"64439:81:58","nodeType":"YulBlock","src":"64439:81:58","statements":[{"nativeSrc":"64453:57:58","nodeType":"YulAssignment","src":"64453:57:58","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"64475:1:58","nodeType":"YulLiteral","src":"64475:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"64478:6:58","nodeType":"YulIdentifier","src":"64478:6:58"}],"functionName":{"name":"mul","nativeSrc":"64471:3:58","nodeType":"YulIdentifier","src":"64471:3:58"},"nativeSrc":"64471:14:58","nodeType":"YulFunctionCall","src":"64471:14:58"},{"name":"self","nativeSrc":"64487:4:58","nodeType":"YulIdentifier","src":"64487:4:58"}],"functionName":{"name":"shl","nativeSrc":"64467:3:58","nodeType":"YulIdentifier","src":"64467:3:58"},"nativeSrc":"64467:25:58","nodeType":"YulFunctionCall","src":"64467:25:58"},{"arguments":[{"kind":"number","nativeSrc":"64498:2:58","nodeType":"YulLiteral","src":"64498:2:58","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"64506:1:58","nodeType":"YulLiteral","src":"64506:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"64502:3:58","nodeType":"YulIdentifier","src":"64502:3:58"},"nativeSrc":"64502:6:58","nodeType":"YulFunctionCall","src":"64502:6:58"}],"functionName":{"name":"shl","nativeSrc":"64494:3:58","nodeType":"YulIdentifier","src":"64494:3:58"},"nativeSrc":"64494:15:58","nodeType":"YulFunctionCall","src":"64494:15:58"}],"functionName":{"name":"and","nativeSrc":"64463:3:58","nodeType":"YulIdentifier","src":"64463:3:58"},"nativeSrc":"64463:47:58","nodeType":"YulFunctionCall","src":"64463:47:58"},"variableNames":[{"name":"result","nativeSrc":"64453:6:58","nodeType":"YulIdentifier","src":"64453:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16270,"isOffset":false,"isSlot":false,"src":"64478:6:58","valueSize":1},{"declaration":16273,"isOffset":false,"isSlot":false,"src":"64453:6:58","valueSize":1},{"declaration":16268,"isOffset":false,"isSlot":false,"src":"64487:4:58","valueSize":1}],"flags":["memory-safe"],"id":16282,"nodeType":"InlineAssembly","src":"64414:106:58"}]},"id":16284,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_28","nameLocation":"64272:13:58","nodeType":"FunctionDefinition","parameters":{"id":16271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16268,"mutability":"mutable","name":"self","nameLocation":"64294:4:58","nodeType":"VariableDeclaration","scope":16284,"src":"64286:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16267,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64286:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16270,"mutability":"mutable","name":"offset","nameLocation":"64306:6:58","nodeType":"VariableDeclaration","scope":16284,"src":"64300:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16269,"name":"uint8","nodeType":"ElementaryTypeName","src":"64300:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"64285:28:58"},"returnParameters":{"id":16274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16273,"mutability":"mutable","name":"result","nameLocation":"64345:6:58","nodeType":"VariableDeclaration","scope":16284,"src":"64337:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":16272,"name":"bytes28","nodeType":"ElementaryTypeName","src":"64337:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"64336:16:58"},"scope":16305,"src":"64263:263:58","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16303,"nodeType":"Block","src":"64637:232:58","statements":[{"assignments":[16296],"declarations":[{"constant":false,"id":16296,"mutability":"mutable","name":"oldValue","nameLocation":"64655:8:58","nodeType":"VariableDeclaration","scope":16303,"src":"64647:16:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":16295,"name":"bytes28","nodeType":"ElementaryTypeName","src":"64647:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"id":16301,"initialValue":{"arguments":[{"id":16298,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16286,"src":"64680:4:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16299,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16290,"src":"64686:6:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16297,"name":"extract_32_28","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16284,"src":"64666:13:58","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes28_$","typeString":"function (bytes32,uint8) pure returns (bytes28)"}},"id":16300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64666:27:58","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"nodeType":"VariableDeclarationStatement","src":"64647:46:58"},{"AST":{"nativeSrc":"64728:135:58","nodeType":"YulBlock","src":"64728:135:58","statements":[{"nativeSrc":"64742:36:58","nodeType":"YulAssignment","src":"64742:36:58","value":{"arguments":[{"name":"value","nativeSrc":"64755:5:58","nodeType":"YulIdentifier","src":"64755:5:58"},{"arguments":[{"kind":"number","nativeSrc":"64766:2:58","nodeType":"YulLiteral","src":"64766:2:58","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"64774:1:58","nodeType":"YulLiteral","src":"64774:1:58","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"64770:3:58","nodeType":"YulIdentifier","src":"64770:3:58"},"nativeSrc":"64770:6:58","nodeType":"YulFunctionCall","src":"64770:6:58"}],"functionName":{"name":"shl","nativeSrc":"64762:3:58","nodeType":"YulIdentifier","src":"64762:3:58"},"nativeSrc":"64762:15:58","nodeType":"YulFunctionCall","src":"64762:15:58"}],"functionName":{"name":"and","nativeSrc":"64751:3:58","nodeType":"YulIdentifier","src":"64751:3:58"},"nativeSrc":"64751:27:58","nodeType":"YulFunctionCall","src":"64751:27:58"},"variableNames":[{"name":"value","nativeSrc":"64742:5:58","nodeType":"YulIdentifier","src":"64742:5:58"}]},{"nativeSrc":"64791:62:58","nodeType":"YulAssignment","src":"64791:62:58","value":{"arguments":[{"name":"self","nativeSrc":"64805:4:58","nodeType":"YulIdentifier","src":"64805:4:58"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"64819:1:58","nodeType":"YulLiteral","src":"64819:1:58","type":"","value":"8"},{"name":"offset","nativeSrc":"64822:6:58","nodeType":"YulIdentifier","src":"64822:6:58"}],"functionName":{"name":"mul","nativeSrc":"64815:3:58","nodeType":"YulIdentifier","src":"64815:3:58"},"nativeSrc":"64815:14:58","nodeType":"YulFunctionCall","src":"64815:14:58"},{"arguments":[{"name":"oldValue","nativeSrc":"64835:8:58","nodeType":"YulIdentifier","src":"64835:8:58"},{"name":"value","nativeSrc":"64845:5:58","nodeType":"YulIdentifier","src":"64845:5:58"}],"functionName":{"name":"xor","nativeSrc":"64831:3:58","nodeType":"YulIdentifier","src":"64831:3:58"},"nativeSrc":"64831:20:58","nodeType":"YulFunctionCall","src":"64831:20:58"}],"functionName":{"name":"shr","nativeSrc":"64811:3:58","nodeType":"YulIdentifier","src":"64811:3:58"},"nativeSrc":"64811:41:58","nodeType":"YulFunctionCall","src":"64811:41:58"}],"functionName":{"name":"xor","nativeSrc":"64801:3:58","nodeType":"YulIdentifier","src":"64801:3:58"},"nativeSrc":"64801:52:58","nodeType":"YulFunctionCall","src":"64801:52:58"},"variableNames":[{"name":"result","nativeSrc":"64791:6:58","nodeType":"YulIdentifier","src":"64791:6:58"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16290,"isOffset":false,"isSlot":false,"src":"64822:6:58","valueSize":1},{"declaration":16296,"isOffset":false,"isSlot":false,"src":"64835:8:58","valueSize":1},{"declaration":16293,"isOffset":false,"isSlot":false,"src":"64791:6:58","valueSize":1},{"declaration":16286,"isOffset":false,"isSlot":false,"src":"64805:4:58","valueSize":1},{"declaration":16288,"isOffset":false,"isSlot":false,"src":"64742:5:58","valueSize":1},{"declaration":16288,"isOffset":false,"isSlot":false,"src":"64755:5:58","valueSize":1},{"declaration":16288,"isOffset":false,"isSlot":false,"src":"64845:5:58","valueSize":1}],"flags":["memory-safe"],"id":16302,"nodeType":"InlineAssembly","src":"64703:160:58"}]},"id":16304,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_28","nameLocation":"64541:13:58","nodeType":"FunctionDefinition","parameters":{"id":16291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16286,"mutability":"mutable","name":"self","nameLocation":"64563:4:58","nodeType":"VariableDeclaration","scope":16304,"src":"64555:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16285,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64555:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16288,"mutability":"mutable","name":"value","nameLocation":"64577:5:58","nodeType":"VariableDeclaration","scope":16304,"src":"64569:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":16287,"name":"bytes28","nodeType":"ElementaryTypeName","src":"64569:7:58","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":16290,"mutability":"mutable","name":"offset","nameLocation":"64590:6:58","nodeType":"VariableDeclaration","scope":16304,"src":"64584:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16289,"name":"uint8","nodeType":"ElementaryTypeName","src":"64584:5:58","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"64554:43:58"},"returnParameters":{"id":16294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16293,"mutability":"mutable","name":"result","nameLocation":"64629:6:58","nodeType":"VariableDeclaration","scope":16304,"src":"64621:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16292,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64621:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"64620:16:58"},"scope":16305,"src":"64532:337:58","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":16306,"src":"1103:63768:58","usedErrors":[12724],"usedEvents":[]}],"src":"185:64687:58"},"id":58},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[16357]},"id":16358,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16307,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:59"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":16308,"nodeType":"StructuredDocumentation","src":"125:489:59","text":" @dev Helper library for emitting standardized panic codes.\n ```solidity\n contract Example {\n      using Panic for uint256;\n      // Use any of the declared internal constants\n      function foo() { Panic.GENERIC.panic(); }\n      // Alternatively\n      function foo() { Panic.panic(Panic.GENERIC); }\n }\n ```\n Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n _Available since v5.1._"},"fullyImplemented":true,"id":16357,"linearizedBaseContracts":[16357],"name":"Panic","nameLocation":"665:5:59","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":16309,"nodeType":"StructuredDocumentation","src":"677:36:59","text":"@dev generic / unspecified error"},"id":16312,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:59","nodeType":"VariableDeclaration","scope":16357,"src":"718:40:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16310,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":16311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:59","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":16313,"nodeType":"StructuredDocumentation","src":"764:37:59","text":"@dev used by the assert() builtin"},"id":16316,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:59","nodeType":"VariableDeclaration","scope":16357,"src":"806:39:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16314,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":16315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:59","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":16317,"nodeType":"StructuredDocumentation","src":"851:41:59","text":"@dev arithmetic underflow or overflow"},"id":16320,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:59","nodeType":"VariableDeclaration","scope":16357,"src":"897:47:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16318,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":16319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:59","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":16321,"nodeType":"StructuredDocumentation","src":"950:35:59","text":"@dev division or modulo by zero"},"id":16324,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:59","nodeType":"VariableDeclaration","scope":16357,"src":"990:49:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16322,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":16323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:59","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":16325,"nodeType":"StructuredDocumentation","src":"1045:30:59","text":"@dev enum conversion error"},"id":16328,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:59","nodeType":"VariableDeclaration","scope":16357,"src":"1080:54:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16326,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":16327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:59","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":16329,"nodeType":"StructuredDocumentation","src":"1140:36:59","text":"@dev invalid encoding in storage"},"id":16332,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:59","nodeType":"VariableDeclaration","scope":16357,"src":"1181:55:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16330,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":16331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:59","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":16333,"nodeType":"StructuredDocumentation","src":"1242:24:59","text":"@dev empty array pop"},"id":16336,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:59","nodeType":"VariableDeclaration","scope":16357,"src":"1271:48:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16334,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":16335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:59","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":16337,"nodeType":"StructuredDocumentation","src":"1325:35:59","text":"@dev array out of bounds access"},"id":16340,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:59","nodeType":"VariableDeclaration","scope":16357,"src":"1365:52:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16338,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":16339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:59","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":16341,"nodeType":"StructuredDocumentation","src":"1423:65:59","text":"@dev resource error (too large allocation or too large array)"},"id":16344,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:59","nodeType":"VariableDeclaration","scope":16357,"src":"1493:47:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16342,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":16343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:59","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":16345,"nodeType":"StructuredDocumentation","src":"1546:42:59","text":"@dev calling invalid internal function"},"id":16348,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:59","nodeType":"VariableDeclaration","scope":16357,"src":"1593:58:59","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16346,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":16347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:59","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":16355,"nodeType":"Block","src":"1819:151:59","statements":[{"AST":{"nativeSrc":"1854:110:59","nodeType":"YulBlock","src":"1854:110:59","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1875:4:59","nodeType":"YulLiteral","src":"1875:4:59","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1881:10:59","nodeType":"YulLiteral","src":"1881:10:59","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nativeSrc":"1868:6:59","nodeType":"YulIdentifier","src":"1868:6:59"},"nativeSrc":"1868:24:59","nodeType":"YulFunctionCall","src":"1868:24:59"},"nativeSrc":"1868:24:59","nodeType":"YulExpressionStatement","src":"1868:24:59"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1912:4:59","nodeType":"YulLiteral","src":"1912:4:59","type":"","value":"0x20"},{"name":"code","nativeSrc":"1918:4:59","nodeType":"YulIdentifier","src":"1918:4:59"}],"functionName":{"name":"mstore","nativeSrc":"1905:6:59","nodeType":"YulIdentifier","src":"1905:6:59"},"nativeSrc":"1905:18:59","nodeType":"YulFunctionCall","src":"1905:18:59"},"nativeSrc":"1905:18:59","nodeType":"YulExpressionStatement","src":"1905:18:59"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1943:4:59","nodeType":"YulLiteral","src":"1943:4:59","type":"","value":"0x1c"},{"kind":"number","nativeSrc":"1949:4:59","nodeType":"YulLiteral","src":"1949:4:59","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1936:6:59","nodeType":"YulIdentifier","src":"1936:6:59"},"nativeSrc":"1936:18:59","nodeType":"YulFunctionCall","src":"1936:18:59"},"nativeSrc":"1936:18:59","nodeType":"YulExpressionStatement","src":"1936:18:59"}]},"evmVersion":"cancun","externalReferences":[{"declaration":16351,"isOffset":false,"isSlot":false,"src":"1918:4:59","valueSize":1}],"flags":["memory-safe"],"id":16354,"nodeType":"InlineAssembly","src":"1829:135:59"}]},"documentation":{"id":16349,"nodeType":"StructuredDocumentation","src":"1658:113:59","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":16356,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:59","nodeType":"FunctionDefinition","parameters":{"id":16352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16351,"mutability":"mutable","name":"code","nameLocation":"1799:4:59","nodeType":"VariableDeclaration","scope":16356,"src":"1791:12:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16350,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:59"},"returnParameters":{"id":16353,"nodeType":"ParameterList","parameters":[],"src":"1819:0:59"},"scope":16357,"src":"1776:194:59","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":16358,"src":"657:1315:59","usedErrors":[],"usedEvents":[]}],"src":"99:1874:59"},"id":59},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[16426]},"id":16427,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16359,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:60"},{"abstract":true,"baseContracts":[],"canonicalName":"ReentrancyGuard","contractDependencies":[],"contractKind":"contract","documentation":{"id":16360,"nodeType":"StructuredDocumentation","src":"135:894:60","text":" @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n consider using {ReentrancyGuardTransient} instead.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]."},"fullyImplemented":true,"id":16426,"linearizedBaseContracts":[16426],"name":"ReentrancyGuard","nameLocation":"1048:15:60","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":16363,"mutability":"constant","name":"NOT_ENTERED","nameLocation":"1843:11:60","nodeType":"VariableDeclaration","scope":16426,"src":"1818:40:60","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16361,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":16362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1857:1:60","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":16366,"mutability":"constant","name":"ENTERED","nameLocation":"1889:7:60","nodeType":"VariableDeclaration","scope":16426,"src":"1864:36:60","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16364,"name":"uint256","nodeType":"ElementaryTypeName","src":"1864:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":16365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1899:1:60","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"constant":false,"id":16368,"mutability":"mutable","name":"_status","nameLocation":"1923:7:60","nodeType":"VariableDeclaration","scope":16426,"src":"1907:23:60","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16367,"name":"uint256","nodeType":"ElementaryTypeName","src":"1907:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"documentation":{"id":16369,"nodeType":"StructuredDocumentation","src":"1937:52:60","text":" @dev Unauthorized reentrant call."},"errorSelector":"3ee5aeb5","id":16371,"name":"ReentrancyGuardReentrantCall","nameLocation":"2000:28:60","nodeType":"ErrorDefinition","parameters":{"id":16370,"nodeType":"ParameterList","parameters":[],"src":"2028:2:60"},"src":"1994:37:60"},{"body":{"id":16378,"nodeType":"Block","src":"2051:38:60","statements":[{"expression":{"id":16376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16374,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16368,"src":"2061:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16375,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16363,"src":"2071:11:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2061:21:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16377,"nodeType":"ExpressionStatement","src":"2061:21:60"}]},"id":16379,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":16372,"nodeType":"ParameterList","parameters":[],"src":"2048:2:60"},"returnParameters":{"id":16373,"nodeType":"ParameterList","parameters":[],"src":"2051:0:60"},"scope":16426,"src":"2037:52:60","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16389,"nodeType":"Block","src":"2490:79:60","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":16382,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"2500:19:60","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":16383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:21:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16384,"nodeType":"ExpressionStatement","src":"2500:21:60"},{"id":16385,"nodeType":"PlaceholderStatement","src":"2531:1:60"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":16386,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16414,"src":"2542:18:60","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":16387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2542:20:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16388,"nodeType":"ExpressionStatement","src":"2542:20:60"}]},"documentation":{"id":16380,"nodeType":"StructuredDocumentation","src":"2095:366:60","text":" @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and making it call a\n `private` function that does the actual work."},"id":16390,"name":"nonReentrant","nameLocation":"2475:12:60","nodeType":"ModifierDefinition","parameters":{"id":16381,"nodeType":"ParameterList","parameters":[],"src":"2487:2:60"},"src":"2466:103:60","virtual":false,"visibility":"internal"},{"body":{"id":16405,"nodeType":"Block","src":"2614:268:60","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16393,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16368,"src":"2702:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":16394,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16366,"src":"2713:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2702:18:60","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16400,"nodeType":"IfStatement","src":"2698:86:60","trueBody":{"id":16399,"nodeType":"Block","src":"2722:62:60","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16396,"name":"ReentrancyGuardReentrantCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16371,"src":"2743:28:60","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2743:30:60","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16398,"nodeType":"RevertStatement","src":"2736:37:60"}]}},{"expression":{"id":16403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16401,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16368,"src":"2858:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16402,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16366,"src":"2868:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2858:17:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16404,"nodeType":"ExpressionStatement","src":"2858:17:60"}]},"id":16406,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"2584:19:60","nodeType":"FunctionDefinition","parameters":{"id":16391,"nodeType":"ParameterList","parameters":[],"src":"2603:2:60"},"returnParameters":{"id":16392,"nodeType":"ParameterList","parameters":[],"src":"2614:0:60"},"scope":16426,"src":"2575:307:60","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":16413,"nodeType":"Block","src":"2926:170:60","statements":[{"expression":{"id":16411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16409,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16368,"src":"3068:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16410,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16363,"src":"3078:11:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3068:21:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16412,"nodeType":"ExpressionStatement","src":"3068:21:60"}]},"id":16414,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"2897:18:60","nodeType":"FunctionDefinition","parameters":{"id":16407,"nodeType":"ParameterList","parameters":[],"src":"2915:2:60"},"returnParameters":{"id":16408,"nodeType":"ParameterList","parameters":[],"src":"2926:0:60"},"scope":16426,"src":"2888:208:60","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":16424,"nodeType":"Block","src":"3339:42:60","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16420,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16368,"src":"3356:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":16421,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16366,"src":"3367:7:60","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3356:18:60","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":16419,"id":16423,"nodeType":"Return","src":"3349:25:60"}]},"documentation":{"id":16415,"nodeType":"StructuredDocumentation","src":"3102:168:60","text":" @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n `nonReentrant` function in the call stack."},"id":16425,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"3284:23:60","nodeType":"FunctionDefinition","parameters":{"id":16416,"nodeType":"ParameterList","parameters":[],"src":"3307:2:60"},"returnParameters":{"id":16419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16418,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16425,"src":"3333:4:60","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16417,"name":"bool","nodeType":"ElementaryTypeName","src":"3333:4:60","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3332:6:60"},"scope":16426,"src":"3275:106:60","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":16427,"src":"1030:2353:60","usedErrors":[16371],"usedEvents":[]}],"src":"109:3275:60"},"id":60},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[16550]},"id":16551,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16428,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:61"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":16429,"nodeType":"StructuredDocumentation","src":"219:1187:61","text":" @dev Library for reading and writing primitive types to specific storage slots.\n Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n This library helps with reading and writing to such slots without the need for inline assembly.\n The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n Example usage to set ERC-1967 implementation slot:\n ```solidity\n contract ERC1967 {\n     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n     function _getImplementation() internal view returns (address) {\n         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n     }\n     function _setImplementation(address newImplementation) internal {\n         require(newImplementation.code.length > 0);\n         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n     }\n }\n ```\n TIP: Consider using this library along with {SlotDerivation}."},"fullyImplemented":true,"id":16550,"linearizedBaseContracts":[16550],"name":"StorageSlot","nameLocation":"1415:11:61","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":16432,"members":[{"constant":false,"id":16431,"mutability":"mutable","name":"value","nameLocation":"1470:5:61","nodeType":"VariableDeclaration","scope":16432,"src":"1462:13:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16430,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:61","nodeType":"StructDefinition","scope":16550,"src":"1433:49:61","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":16435,"members":[{"constant":false,"id":16434,"mutability":"mutable","name":"value","nameLocation":"1522:5:61","nodeType":"VariableDeclaration","scope":16435,"src":"1517:10:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16433,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:61","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:61","nodeType":"StructDefinition","scope":16550,"src":"1488:46:61","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":16438,"members":[{"constant":false,"id":16437,"mutability":"mutable","name":"value","nameLocation":"1577:5:61","nodeType":"VariableDeclaration","scope":16438,"src":"1569:13:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16436,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:61","nodeType":"StructDefinition","scope":16550,"src":"1540:49:61","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":16441,"members":[{"constant":false,"id":16440,"mutability":"mutable","name":"value","nameLocation":"1632:5:61","nodeType":"VariableDeclaration","scope":16441,"src":"1624:13:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16439,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:61","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:61","nodeType":"StructDefinition","scope":16550,"src":"1595:49:61","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":16444,"members":[{"constant":false,"id":16443,"mutability":"mutable","name":"value","nameLocation":"1685:5:61","nodeType":"VariableDeclaration","scope":16444,"src":"1678:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16442,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:61","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:61","nodeType":"StructDefinition","scope":16550,"src":"1650:47:61","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":16447,"members":[{"constant":false,"id":16446,"mutability":"mutable","name":"value","nameLocation":"1738:5:61","nodeType":"VariableDeclaration","scope":16447,"src":"1731:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":16445,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:61","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:61","nodeType":"StructDefinition","scope":16550,"src":"1703:47:61","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":16450,"members":[{"constant":false,"id":16449,"mutability":"mutable","name":"value","nameLocation":"1789:5:61","nodeType":"VariableDeclaration","scope":16450,"src":"1783:11:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":16448,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:61","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:61","nodeType":"StructDefinition","scope":16550,"src":"1756:45:61","visibility":"public"},{"body":{"id":16460,"nodeType":"Block","src":"1983:79:61","statements":[{"AST":{"nativeSrc":"2018:38:61","nodeType":"YulBlock","src":"2018:38:61","statements":[{"nativeSrc":"2032:14:61","nodeType":"YulAssignment","src":"2032:14:61","value":{"name":"slot","nativeSrc":"2042:4:61","nodeType":"YulIdentifier","src":"2042:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"2032:6:61","nodeType":"YulIdentifier","src":"2032:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16457,"isOffset":false,"isSlot":true,"src":"2032:6:61","suffix":"slot","valueSize":1},{"declaration":16453,"isOffset":false,"isSlot":false,"src":"2042:4:61","valueSize":1}],"flags":["memory-safe"],"id":16459,"nodeType":"InlineAssembly","src":"1993:63:61"}]},"documentation":{"id":16451,"nodeType":"StructuredDocumentation","src":"1807:87:61","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":16461,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:61","nodeType":"FunctionDefinition","parameters":{"id":16454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16453,"mutability":"mutable","name":"slot","nameLocation":"1931:4:61","nodeType":"VariableDeclaration","scope":16461,"src":"1923:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16452,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:61"},"returnParameters":{"id":16458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16457,"mutability":"mutable","name":"r","nameLocation":"1980:1:61","nodeType":"VariableDeclaration","scope":16461,"src":"1960:21:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":16456,"nodeType":"UserDefinedTypeName","pathNode":{"id":16455,"name":"AddressSlot","nameLocations":["1960:11:61"],"nodeType":"IdentifierPath","referencedDeclaration":16432,"src":"1960:11:61"},"referencedDeclaration":16432,"src":"1960:11:61","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$16432_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:61"},"scope":16550,"src":"1899:163:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16471,"nodeType":"Block","src":"2243:79:61","statements":[{"AST":{"nativeSrc":"2278:38:61","nodeType":"YulBlock","src":"2278:38:61","statements":[{"nativeSrc":"2292:14:61","nodeType":"YulAssignment","src":"2292:14:61","value":{"name":"slot","nativeSrc":"2302:4:61","nodeType":"YulIdentifier","src":"2302:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"2292:6:61","nodeType":"YulIdentifier","src":"2292:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16468,"isOffset":false,"isSlot":true,"src":"2292:6:61","suffix":"slot","valueSize":1},{"declaration":16464,"isOffset":false,"isSlot":false,"src":"2302:4:61","valueSize":1}],"flags":["memory-safe"],"id":16470,"nodeType":"InlineAssembly","src":"2253:63:61"}]},"documentation":{"id":16462,"nodeType":"StructuredDocumentation","src":"2068:86:61","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":16472,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:61","nodeType":"FunctionDefinition","parameters":{"id":16465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16464,"mutability":"mutable","name":"slot","nameLocation":"2191:4:61","nodeType":"VariableDeclaration","scope":16472,"src":"2183:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16463,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:61"},"returnParameters":{"id":16469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16468,"mutability":"mutable","name":"r","nameLocation":"2240:1:61","nodeType":"VariableDeclaration","scope":16472,"src":"2220:21:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$16435_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":16467,"nodeType":"UserDefinedTypeName","pathNode":{"id":16466,"name":"BooleanSlot","nameLocations":["2220:11:61"],"nodeType":"IdentifierPath","referencedDeclaration":16435,"src":"2220:11:61"},"referencedDeclaration":16435,"src":"2220:11:61","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$16435_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:61"},"scope":16550,"src":"2159:163:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16482,"nodeType":"Block","src":"2503:79:61","statements":[{"AST":{"nativeSrc":"2538:38:61","nodeType":"YulBlock","src":"2538:38:61","statements":[{"nativeSrc":"2552:14:61","nodeType":"YulAssignment","src":"2552:14:61","value":{"name":"slot","nativeSrc":"2562:4:61","nodeType":"YulIdentifier","src":"2562:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"2552:6:61","nodeType":"YulIdentifier","src":"2552:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16479,"isOffset":false,"isSlot":true,"src":"2552:6:61","suffix":"slot","valueSize":1},{"declaration":16475,"isOffset":false,"isSlot":false,"src":"2562:4:61","valueSize":1}],"flags":["memory-safe"],"id":16481,"nodeType":"InlineAssembly","src":"2513:63:61"}]},"documentation":{"id":16473,"nodeType":"StructuredDocumentation","src":"2328:86:61","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":16483,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:61","nodeType":"FunctionDefinition","parameters":{"id":16476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16475,"mutability":"mutable","name":"slot","nameLocation":"2451:4:61","nodeType":"VariableDeclaration","scope":16483,"src":"2443:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16474,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:61"},"returnParameters":{"id":16480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16479,"mutability":"mutable","name":"r","nameLocation":"2500:1:61","nodeType":"VariableDeclaration","scope":16483,"src":"2480:21:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$16438_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":16478,"nodeType":"UserDefinedTypeName","pathNode":{"id":16477,"name":"Bytes32Slot","nameLocations":["2480:11:61"],"nodeType":"IdentifierPath","referencedDeclaration":16438,"src":"2480:11:61"},"referencedDeclaration":16438,"src":"2480:11:61","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$16438_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:61"},"scope":16550,"src":"2419:163:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16493,"nodeType":"Block","src":"2763:79:61","statements":[{"AST":{"nativeSrc":"2798:38:61","nodeType":"YulBlock","src":"2798:38:61","statements":[{"nativeSrc":"2812:14:61","nodeType":"YulAssignment","src":"2812:14:61","value":{"name":"slot","nativeSrc":"2822:4:61","nodeType":"YulIdentifier","src":"2822:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"2812:6:61","nodeType":"YulIdentifier","src":"2812:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16490,"isOffset":false,"isSlot":true,"src":"2812:6:61","suffix":"slot","valueSize":1},{"declaration":16486,"isOffset":false,"isSlot":false,"src":"2822:4:61","valueSize":1}],"flags":["memory-safe"],"id":16492,"nodeType":"InlineAssembly","src":"2773:63:61"}]},"documentation":{"id":16484,"nodeType":"StructuredDocumentation","src":"2588:86:61","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":16494,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:61","nodeType":"FunctionDefinition","parameters":{"id":16487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16486,"mutability":"mutable","name":"slot","nameLocation":"2711:4:61","nodeType":"VariableDeclaration","scope":16494,"src":"2703:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16485,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:61"},"returnParameters":{"id":16491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16490,"mutability":"mutable","name":"r","nameLocation":"2760:1:61","nodeType":"VariableDeclaration","scope":16494,"src":"2740:21:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$16441_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":16489,"nodeType":"UserDefinedTypeName","pathNode":{"id":16488,"name":"Uint256Slot","nameLocations":["2740:11:61"],"nodeType":"IdentifierPath","referencedDeclaration":16441,"src":"2740:11:61"},"referencedDeclaration":16441,"src":"2740:11:61","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$16441_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:61"},"scope":16550,"src":"2679:163:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16504,"nodeType":"Block","src":"3020:79:61","statements":[{"AST":{"nativeSrc":"3055:38:61","nodeType":"YulBlock","src":"3055:38:61","statements":[{"nativeSrc":"3069:14:61","nodeType":"YulAssignment","src":"3069:14:61","value":{"name":"slot","nativeSrc":"3079:4:61","nodeType":"YulIdentifier","src":"3079:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"3069:6:61","nodeType":"YulIdentifier","src":"3069:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16501,"isOffset":false,"isSlot":true,"src":"3069:6:61","suffix":"slot","valueSize":1},{"declaration":16497,"isOffset":false,"isSlot":false,"src":"3079:4:61","valueSize":1}],"flags":["memory-safe"],"id":16503,"nodeType":"InlineAssembly","src":"3030:63:61"}]},"documentation":{"id":16495,"nodeType":"StructuredDocumentation","src":"2848:85:61","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":16505,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:61","nodeType":"FunctionDefinition","parameters":{"id":16498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16497,"mutability":"mutable","name":"slot","nameLocation":"2969:4:61","nodeType":"VariableDeclaration","scope":16505,"src":"2961:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16496,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:61"},"returnParameters":{"id":16502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16501,"mutability":"mutable","name":"r","nameLocation":"3017:1:61","nodeType":"VariableDeclaration","scope":16505,"src":"2998:20:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$16444_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":16500,"nodeType":"UserDefinedTypeName","pathNode":{"id":16499,"name":"Int256Slot","nameLocations":["2998:10:61"],"nodeType":"IdentifierPath","referencedDeclaration":16444,"src":"2998:10:61"},"referencedDeclaration":16444,"src":"2998:10:61","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$16444_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:61"},"scope":16550,"src":"2938:161:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16515,"nodeType":"Block","src":"3277:79:61","statements":[{"AST":{"nativeSrc":"3312:38:61","nodeType":"YulBlock","src":"3312:38:61","statements":[{"nativeSrc":"3326:14:61","nodeType":"YulAssignment","src":"3326:14:61","value":{"name":"slot","nativeSrc":"3336:4:61","nodeType":"YulIdentifier","src":"3336:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"3326:6:61","nodeType":"YulIdentifier","src":"3326:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16512,"isOffset":false,"isSlot":true,"src":"3326:6:61","suffix":"slot","valueSize":1},{"declaration":16508,"isOffset":false,"isSlot":false,"src":"3336:4:61","valueSize":1}],"flags":["memory-safe"],"id":16514,"nodeType":"InlineAssembly","src":"3287:63:61"}]},"documentation":{"id":16506,"nodeType":"StructuredDocumentation","src":"3105:85:61","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":16516,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:61","nodeType":"FunctionDefinition","parameters":{"id":16509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16508,"mutability":"mutable","name":"slot","nameLocation":"3226:4:61","nodeType":"VariableDeclaration","scope":16516,"src":"3218:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16507,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:61"},"returnParameters":{"id":16513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16512,"mutability":"mutable","name":"r","nameLocation":"3274:1:61","nodeType":"VariableDeclaration","scope":16516,"src":"3255:20:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$16447_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":16511,"nodeType":"UserDefinedTypeName","pathNode":{"id":16510,"name":"StringSlot","nameLocations":["3255:10:61"],"nodeType":"IdentifierPath","referencedDeclaration":16447,"src":"3255:10:61"},"referencedDeclaration":16447,"src":"3255:10:61","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$16447_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:61"},"scope":16550,"src":"3195:161:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16526,"nodeType":"Block","src":"3558:85:61","statements":[{"AST":{"nativeSrc":"3593:44:61","nodeType":"YulBlock","src":"3593:44:61","statements":[{"nativeSrc":"3607:20:61","nodeType":"YulAssignment","src":"3607:20:61","value":{"name":"store.slot","nativeSrc":"3617:10:61","nodeType":"YulIdentifier","src":"3617:10:61"},"variableNames":[{"name":"r.slot","nativeSrc":"3607:6:61","nodeType":"YulIdentifier","src":"3607:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16523,"isOffset":false,"isSlot":true,"src":"3607:6:61","suffix":"slot","valueSize":1},{"declaration":16519,"isOffset":false,"isSlot":true,"src":"3617:10:61","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":16525,"nodeType":"InlineAssembly","src":"3568:69:61"}]},"documentation":{"id":16517,"nodeType":"StructuredDocumentation","src":"3362:101:61","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":16527,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:61","nodeType":"FunctionDefinition","parameters":{"id":16520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16519,"mutability":"mutable","name":"store","nameLocation":"3506:5:61","nodeType":"VariableDeclaration","scope":16527,"src":"3491:20:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":16518,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:61","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:61"},"returnParameters":{"id":16524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16523,"mutability":"mutable","name":"r","nameLocation":"3555:1:61","nodeType":"VariableDeclaration","scope":16527,"src":"3536:20:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$16447_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":16522,"nodeType":"UserDefinedTypeName","pathNode":{"id":16521,"name":"StringSlot","nameLocations":["3536:10:61"],"nodeType":"IdentifierPath","referencedDeclaration":16447,"src":"3536:10:61"},"referencedDeclaration":16447,"src":"3536:10:61","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$16447_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:61"},"scope":16550,"src":"3468:175:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16537,"nodeType":"Block","src":"3818:79:61","statements":[{"AST":{"nativeSrc":"3853:38:61","nodeType":"YulBlock","src":"3853:38:61","statements":[{"nativeSrc":"3867:14:61","nodeType":"YulAssignment","src":"3867:14:61","value":{"name":"slot","nativeSrc":"3877:4:61","nodeType":"YulIdentifier","src":"3877:4:61"},"variableNames":[{"name":"r.slot","nativeSrc":"3867:6:61","nodeType":"YulIdentifier","src":"3867:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16534,"isOffset":false,"isSlot":true,"src":"3867:6:61","suffix":"slot","valueSize":1},{"declaration":16530,"isOffset":false,"isSlot":false,"src":"3877:4:61","valueSize":1}],"flags":["memory-safe"],"id":16536,"nodeType":"InlineAssembly","src":"3828:63:61"}]},"documentation":{"id":16528,"nodeType":"StructuredDocumentation","src":"3649:84:61","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":16538,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:61","nodeType":"FunctionDefinition","parameters":{"id":16531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16530,"mutability":"mutable","name":"slot","nameLocation":"3768:4:61","nodeType":"VariableDeclaration","scope":16538,"src":"3760:12:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16529,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:61","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:61"},"returnParameters":{"id":16535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16534,"mutability":"mutable","name":"r","nameLocation":"3815:1:61","nodeType":"VariableDeclaration","scope":16538,"src":"3797:19:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$16450_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":16533,"nodeType":"UserDefinedTypeName","pathNode":{"id":16532,"name":"BytesSlot","nameLocations":["3797:9:61"],"nodeType":"IdentifierPath","referencedDeclaration":16450,"src":"3797:9:61"},"referencedDeclaration":16450,"src":"3797:9:61","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$16450_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:61"},"scope":16550,"src":"3738:159:61","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16548,"nodeType":"Block","src":"4094:85:61","statements":[{"AST":{"nativeSrc":"4129:44:61","nodeType":"YulBlock","src":"4129:44:61","statements":[{"nativeSrc":"4143:20:61","nodeType":"YulAssignment","src":"4143:20:61","value":{"name":"store.slot","nativeSrc":"4153:10:61","nodeType":"YulIdentifier","src":"4153:10:61"},"variableNames":[{"name":"r.slot","nativeSrc":"4143:6:61","nodeType":"YulIdentifier","src":"4143:6:61"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16545,"isOffset":false,"isSlot":true,"src":"4143:6:61","suffix":"slot","valueSize":1},{"declaration":16541,"isOffset":false,"isSlot":true,"src":"4153:10:61","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":16547,"nodeType":"InlineAssembly","src":"4104:69:61"}]},"documentation":{"id":16539,"nodeType":"StructuredDocumentation","src":"3903:99:61","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":16549,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:61","nodeType":"FunctionDefinition","parameters":{"id":16542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16541,"mutability":"mutable","name":"store","nameLocation":"4043:5:61","nodeType":"VariableDeclaration","scope":16549,"src":"4029:19:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":16540,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:61","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:61"},"returnParameters":{"id":16546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16545,"mutability":"mutable","name":"r","nameLocation":"4091:1:61","nodeType":"VariableDeclaration","scope":16549,"src":"4073:19:61","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$16450_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":16544,"nodeType":"UserDefinedTypeName","pathNode":{"id":16543,"name":"BytesSlot","nameLocations":["4073:9:61"],"nodeType":"IdentifierPath","referencedDeclaration":16450,"src":"4073:9:61"},"referencedDeclaration":16450,"src":"4073:9:61","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$16450_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:61"},"scope":16550,"src":"4007:172:61","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":16551,"src":"1407:2774:61","usedErrors":[],"usedEvents":[]}],"src":"193:3989:61"},"id":61},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[19814],"SafeCast":[21579],"SignedMath":[21723],"Strings":[17750]},"id":17751,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16552,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:62"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":16554,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17751,"sourceUnit":19815,"src":"127:37:62","symbolAliases":[{"foreign":{"id":16553,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"135:4:62","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":16556,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17751,"sourceUnit":21580,"src":"165:45:62","symbolAliases":[{"foreign":{"id":16555,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"173:8:62","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":16558,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17751,"sourceUnit":21724,"src":"211:49:62","symbolAliases":[{"foreign":{"id":16557,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21723,"src":"219:10:62","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":16559,"nodeType":"StructuredDocumentation","src":"262:34:62","text":" @dev String operations."},"fullyImplemented":true,"id":17750,"linearizedBaseContracts":[17750],"name":"Strings","nameLocation":"305:7:62","nodeType":"ContractDefinition","nodes":[{"global":false,"id":16561,"libraryName":{"id":16560,"name":"SafeCast","nameLocations":["325:8:62"],"nodeType":"IdentifierPath","referencedDeclaration":21579,"src":"325:8:62"},"nodeType":"UsingForDirective","src":"319:21:62"},{"constant":true,"id":16564,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"371:10:62","nodeType":"VariableDeclaration","scope":17750,"src":"346:56:62","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":16562,"name":"bytes16","nodeType":"ElementaryTypeName","src":"346:7:62","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":16563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"384:18:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":16567,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"431:14:62","nodeType":"VariableDeclaration","scope":17750,"src":"408:42:62","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16565,"name":"uint8","nodeType":"ElementaryTypeName","src":"408:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":16566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"448:2:62","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"documentation":{"id":16568,"nodeType":"StructuredDocumentation","src":"457:81:62","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":16574,"name":"StringsInsufficientHexLength","nameLocation":"549:28:62","nodeType":"ErrorDefinition","parameters":{"id":16573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16570,"mutability":"mutable","name":"value","nameLocation":"586:5:62","nodeType":"VariableDeclaration","scope":16574,"src":"578:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16569,"name":"uint256","nodeType":"ElementaryTypeName","src":"578:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16572,"mutability":"mutable","name":"length","nameLocation":"601:6:62","nodeType":"VariableDeclaration","scope":16574,"src":"593:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16571,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"577:31:62"},"src":"543:66:62"},{"documentation":{"id":16575,"nodeType":"StructuredDocumentation","src":"615:108:62","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":16577,"name":"StringsInvalidChar","nameLocation":"734:18:62","nodeType":"ErrorDefinition","parameters":{"id":16576,"nodeType":"ParameterList","parameters":[],"src":"752:2:62"},"src":"728:27:62"},{"documentation":{"id":16578,"nodeType":"StructuredDocumentation","src":"761:84:62","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":16580,"name":"StringsInvalidAddressFormat","nameLocation":"856:27:62","nodeType":"ErrorDefinition","parameters":{"id":16579,"nodeType":"ParameterList","parameters":[],"src":"883:2:62"},"src":"850:36:62"},{"body":{"id":16627,"nodeType":"Block","src":"1058:561:62","statements":[{"id":16626,"nodeType":"UncheckedBlock","src":"1068:545:62","statements":[{"assignments":[16589],"declarations":[{"constant":false,"id":16589,"mutability":"mutable","name":"length","nameLocation":"1100:6:62","nodeType":"VariableDeclaration","scope":16626,"src":"1092:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16588,"name":"uint256","nodeType":"ElementaryTypeName","src":"1092:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16596,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16592,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16583,"src":"1120:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16590,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"1109:4:62","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":16591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1114:5:62","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":19586,"src":"1109:10:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":16593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1109:17:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":16594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1129:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1109:21:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1092:38:62"},{"assignments":[16598],"declarations":[{"constant":false,"id":16598,"mutability":"mutable","name":"buffer","nameLocation":"1158:6:62","nodeType":"VariableDeclaration","scope":16626,"src":"1144:20:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16597,"name":"string","nodeType":"ElementaryTypeName","src":"1144:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":16603,"initialValue":{"arguments":[{"id":16601,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16589,"src":"1178:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1167:10:62","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":16599,"name":"string","nodeType":"ElementaryTypeName","src":"1171:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":16602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1167:18:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1144:41:62"},{"assignments":[16605],"declarations":[{"constant":false,"id":16605,"mutability":"mutable","name":"ptr","nameLocation":"1207:3:62","nodeType":"VariableDeclaration","scope":16626,"src":"1199:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16604,"name":"uint256","nodeType":"ElementaryTypeName","src":"1199:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16606,"nodeType":"VariableDeclarationStatement","src":"1199:11:62"},{"AST":{"nativeSrc":"1249:67:62","nodeType":"YulBlock","src":"1249:67:62","statements":[{"nativeSrc":"1267:35:62","nodeType":"YulAssignment","src":"1267:35:62","value":{"arguments":[{"name":"buffer","nativeSrc":"1278:6:62","nodeType":"YulIdentifier","src":"1278:6:62"},{"arguments":[{"kind":"number","nativeSrc":"1290:2:62","nodeType":"YulLiteral","src":"1290:2:62","type":"","value":"32"},{"name":"length","nativeSrc":"1294:6:62","nodeType":"YulIdentifier","src":"1294:6:62"}],"functionName":{"name":"add","nativeSrc":"1286:3:62","nodeType":"YulIdentifier","src":"1286:3:62"},"nativeSrc":"1286:15:62","nodeType":"YulFunctionCall","src":"1286:15:62"}],"functionName":{"name":"add","nativeSrc":"1274:3:62","nodeType":"YulIdentifier","src":"1274:3:62"},"nativeSrc":"1274:28:62","nodeType":"YulFunctionCall","src":"1274:28:62"},"variableNames":[{"name":"ptr","nativeSrc":"1267:3:62","nodeType":"YulIdentifier","src":"1267:3:62"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16598,"isOffset":false,"isSlot":false,"src":"1278:6:62","valueSize":1},{"declaration":16589,"isOffset":false,"isSlot":false,"src":"1294:6:62","valueSize":1},{"declaration":16605,"isOffset":false,"isSlot":false,"src":"1267:3:62","valueSize":1}],"flags":["memory-safe"],"id":16607,"nodeType":"InlineAssembly","src":"1224:92:62"},{"body":{"id":16622,"nodeType":"Block","src":"1342:234:62","statements":[{"expression":{"id":16610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1360:5:62","subExpression":{"id":16609,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16605,"src":"1360:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16611,"nodeType":"ExpressionStatement","src":"1360:5:62"},{"AST":{"nativeSrc":"1408:86:62","nodeType":"YulBlock","src":"1408:86:62","statements":[{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1438:3:62","nodeType":"YulIdentifier","src":"1438:3:62"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1452:5:62","nodeType":"YulIdentifier","src":"1452:5:62"},{"kind":"number","nativeSrc":"1459:2:62","nodeType":"YulLiteral","src":"1459:2:62","type":"","value":"10"}],"functionName":{"name":"mod","nativeSrc":"1448:3:62","nodeType":"YulIdentifier","src":"1448:3:62"},"nativeSrc":"1448:14:62","nodeType":"YulFunctionCall","src":"1448:14:62"},{"name":"HEX_DIGITS","nativeSrc":"1464:10:62","nodeType":"YulIdentifier","src":"1464:10:62"}],"functionName":{"name":"byte","nativeSrc":"1443:4:62","nodeType":"YulIdentifier","src":"1443:4:62"},"nativeSrc":"1443:32:62","nodeType":"YulFunctionCall","src":"1443:32:62"}],"functionName":{"name":"mstore8","nativeSrc":"1430:7:62","nodeType":"YulIdentifier","src":"1430:7:62"},"nativeSrc":"1430:46:62","nodeType":"YulFunctionCall","src":"1430:46:62"},"nativeSrc":"1430:46:62","nodeType":"YulExpressionStatement","src":"1430:46:62"}]},"evmVersion":"cancun","externalReferences":[{"declaration":16564,"isOffset":false,"isSlot":false,"src":"1464:10:62","valueSize":1},{"declaration":16605,"isOffset":false,"isSlot":false,"src":"1438:3:62","valueSize":1},{"declaration":16583,"isOffset":false,"isSlot":false,"src":"1452:5:62","valueSize":1}],"flags":["memory-safe"],"id":16612,"nodeType":"InlineAssembly","src":"1383:111:62"},{"expression":{"id":16615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16613,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16583,"src":"1511:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":16614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1520:2:62","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1511:11:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16616,"nodeType":"ExpressionStatement","src":"1511:11:62"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16617,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16583,"src":"1544:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":16618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1553:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1544:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16621,"nodeType":"IfStatement","src":"1540:21:62","trueBody":{"id":16620,"nodeType":"Break","src":"1556:5:62"}}]},"condition":{"hexValue":"74727565","id":16608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1336:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":16623,"nodeType":"WhileStatement","src":"1329:247:62"},{"expression":{"id":16624,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16598,"src":"1596:6:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16587,"id":16625,"nodeType":"Return","src":"1589:13:62"}]}]},"documentation":{"id":16581,"nodeType":"StructuredDocumentation","src":"892:90:62","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":16628,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"996:8:62","nodeType":"FunctionDefinition","parameters":{"id":16584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16583,"mutability":"mutable","name":"value","nameLocation":"1013:5:62","nodeType":"VariableDeclaration","scope":16628,"src":"1005:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16582,"name":"uint256","nodeType":"ElementaryTypeName","src":"1005:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1004:15:62"},"returnParameters":{"id":16587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16586,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16628,"src":"1043:13:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16585,"name":"string","nodeType":"ElementaryTypeName","src":"1043:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1042:15:62"},"scope":17750,"src":"987:632:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16653,"nodeType":"Block","src":"1795:92:62","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":16641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16639,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16631,"src":"1826:5:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":16640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1834:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1826:9:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":16643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1844:2:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":16644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1826:20:62","trueExpression":{"hexValue":"2d","id":16642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1838:3:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":16648,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16631,"src":"1872:5:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":16646,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21723,"src":"1857:10:62","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$21723_$","typeString":"type(library SignedMath)"}},"id":16647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1868:3:62","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":21722,"src":"1857:14:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":16649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1857:21:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16645,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16628,"src":"1848:8:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":16650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1848:31:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":16637,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1812:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16636,"name":"string","nodeType":"ElementaryTypeName","src":"1812:6:62","typeDescriptions":{}}},"id":16638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1819:6:62","memberName":"concat","nodeType":"MemberAccess","src":"1812:13:62","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":16651,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1812:68:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16635,"id":16652,"nodeType":"Return","src":"1805:75:62"}]},"documentation":{"id":16629,"nodeType":"StructuredDocumentation","src":"1625:89:62","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":16654,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"1728:14:62","nodeType":"FunctionDefinition","parameters":{"id":16632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16631,"mutability":"mutable","name":"value","nameLocation":"1750:5:62","nodeType":"VariableDeclaration","scope":16654,"src":"1743:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":16630,"name":"int256","nodeType":"ElementaryTypeName","src":"1743:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1742:14:62"},"returnParameters":{"id":16635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16634,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16654,"src":"1780:13:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16633,"name":"string","nodeType":"ElementaryTypeName","src":"1780:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1779:15:62"},"scope":17750,"src":"1719:168:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16673,"nodeType":"Block","src":"2066:100:62","statements":[{"id":16672,"nodeType":"UncheckedBlock","src":"2076:84:62","statements":[{"expression":{"arguments":[{"id":16663,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16657,"src":"2119:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16666,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16657,"src":"2138:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16664,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"2126:4:62","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":16665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2131:6:62","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":19757,"src":"2126:11:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":16667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2126:18:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":16668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2147:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2126:22:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16662,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[16674,16757,16777],"referencedDeclaration":16757,"src":"2107:11:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":16670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2107:42:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16661,"id":16671,"nodeType":"Return","src":"2100:49:62"}]}]},"documentation":{"id":16655,"nodeType":"StructuredDocumentation","src":"1893:94:62","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":16674,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2001:11:62","nodeType":"FunctionDefinition","parameters":{"id":16658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16657,"mutability":"mutable","name":"value","nameLocation":"2021:5:62","nodeType":"VariableDeclaration","scope":16674,"src":"2013:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16656,"name":"uint256","nodeType":"ElementaryTypeName","src":"2013:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2012:15:62"},"returnParameters":{"id":16661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16660,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16674,"src":"2051:13:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16659,"name":"string","nodeType":"ElementaryTypeName","src":"2051:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2050:15:62"},"scope":17750,"src":"1992:174:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16756,"nodeType":"Block","src":"2379:435:62","statements":[{"assignments":[16685],"declarations":[{"constant":false,"id":16685,"mutability":"mutable","name":"localValue","nameLocation":"2397:10:62","nodeType":"VariableDeclaration","scope":16756,"src":"2389:18:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16684,"name":"uint256","nodeType":"ElementaryTypeName","src":"2389:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16687,"initialValue":{"id":16686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16677,"src":"2410:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2389:26:62"},{"assignments":[16689],"declarations":[{"constant":false,"id":16689,"mutability":"mutable","name":"buffer","nameLocation":"2438:6:62","nodeType":"VariableDeclaration","scope":16756,"src":"2425:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16688,"name":"bytes","nodeType":"ElementaryTypeName","src":"2425:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16698,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":16692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2457:1:62","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16693,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16679,"src":"2461:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2457:10:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":16695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2470:1:62","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2457:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16691,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2447:9:62","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16690,"name":"bytes","nodeType":"ElementaryTypeName","src":"2451:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2447:25:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2425:47:62"},{"expression":{"id":16703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16699,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16689,"src":"2482:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16701,"indexExpression":{"hexValue":"30","id":16700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2489:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2482:9:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":16702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2494:3:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2482:15:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16704,"nodeType":"ExpressionStatement","src":"2482:15:62"},{"expression":{"id":16709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16705,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16689,"src":"2507:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16707,"indexExpression":{"hexValue":"31","id":16706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2514:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2507:9:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":16708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2519:3:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2507:15:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16710,"nodeType":"ExpressionStatement","src":"2507:15:62"},{"body":{"id":16739,"nodeType":"Block","src":"2577:95:62","statements":[{"expression":{"id":16733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16725,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16689,"src":"2591:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16727,"indexExpression":{"id":16726,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16712,"src":"2598:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2591:9:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":16728,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16564,"src":"2603:10:62","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":16732,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16729,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16685,"src":"2614:10:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":16730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2627:3:62","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2614:16:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2603:28:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2591:40:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16734,"nodeType":"ExpressionStatement","src":"2591:40:62"},{"expression":{"id":16737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16735,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16685,"src":"2645:10:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":16736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2660:1:62","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2645:16:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16738,"nodeType":"ExpressionStatement","src":"2645:16:62"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16719,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16712,"src":"2565:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":16720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2569:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2565:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16740,"initializationExpression":{"assignments":[16712],"declarations":[{"constant":false,"id":16712,"mutability":"mutable","name":"i","nameLocation":"2545:1:62","nodeType":"VariableDeclaration","scope":16740,"src":"2537:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16711,"name":"uint256","nodeType":"ElementaryTypeName","src":"2537:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16718,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":16713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2549:1:62","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16714,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16679,"src":"2553:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2549:10:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":16716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2562:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2549:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2537:26:62"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":16723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2572:3:62","subExpression":{"id":16722,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16712,"src":"2574:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16724,"nodeType":"ExpressionStatement","src":"2572:3:62"},"nodeType":"ForStatement","src":"2532:140:62"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16741,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16685,"src":"2685:10:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":16742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2699:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2685:15:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16750,"nodeType":"IfStatement","src":"2681:96:62","trueBody":{"id":16749,"nodeType":"Block","src":"2702:75:62","statements":[{"errorCall":{"arguments":[{"id":16745,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16677,"src":"2752:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16746,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16679,"src":"2759:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16744,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16574,"src":"2723:28:62","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":16747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:43:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16748,"nodeType":"RevertStatement","src":"2716:50:62"}]}},{"expression":{"arguments":[{"id":16753,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16689,"src":"2800:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16752,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2793:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16751,"name":"string","nodeType":"ElementaryTypeName","src":"2793:6:62","typeDescriptions":{}}},"id":16754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2793:14:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16683,"id":16755,"nodeType":"Return","src":"2786:21:62"}]},"documentation":{"id":16675,"nodeType":"StructuredDocumentation","src":"2172:112:62","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":16757,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2298:11:62","nodeType":"FunctionDefinition","parameters":{"id":16680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16677,"mutability":"mutable","name":"value","nameLocation":"2318:5:62","nodeType":"VariableDeclaration","scope":16757,"src":"2310:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16676,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16679,"mutability":"mutable","name":"length","nameLocation":"2333:6:62","nodeType":"VariableDeclaration","scope":16757,"src":"2325:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16678,"name":"uint256","nodeType":"ElementaryTypeName","src":"2325:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2309:31:62"},"returnParameters":{"id":16683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16757,"src":"2364:13:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16681,"name":"string","nodeType":"ElementaryTypeName","src":"2364:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2363:15:62"},"scope":17750,"src":"2289:525:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16776,"nodeType":"Block","src":"3046:75:62","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":16770,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16760,"src":"3091:4:62","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16769,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3083:7:62","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":16768,"name":"uint160","nodeType":"ElementaryTypeName","src":"3083:7:62","typeDescriptions":{}}},"id":16771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3083:13:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":16767,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3075:7:62","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16766,"name":"uint256","nodeType":"ElementaryTypeName","src":"3075:7:62","typeDescriptions":{}}},"id":16772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:22:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16773,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16567,"src":"3099:14:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16765,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[16674,16757,16777],"referencedDeclaration":16757,"src":"3063:11:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":16774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3063:51:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16764,"id":16775,"nodeType":"Return","src":"3056:58:62"}]},"documentation":{"id":16758,"nodeType":"StructuredDocumentation","src":"2820:148:62","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":16777,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2982:11:62","nodeType":"FunctionDefinition","parameters":{"id":16761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16760,"mutability":"mutable","name":"addr","nameLocation":"3002:4:62","nodeType":"VariableDeclaration","scope":16777,"src":"2994:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16759,"name":"address","nodeType":"ElementaryTypeName","src":"2994:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2993:14:62"},"returnParameters":{"id":16764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16777,"src":"3031:13:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16762,"name":"string","nodeType":"ElementaryTypeName","src":"3031:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3030:15:62"},"scope":17750,"src":"2973:148:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16841,"nodeType":"Block","src":"3378:642:62","statements":[{"assignments":[16786],"declarations":[{"constant":false,"id":16786,"mutability":"mutable","name":"buffer","nameLocation":"3401:6:62","nodeType":"VariableDeclaration","scope":16841,"src":"3388:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16785,"name":"bytes","nodeType":"ElementaryTypeName","src":"3388:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16793,"initialValue":{"arguments":[{"arguments":[{"id":16790,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16780,"src":"3428:4:62","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16789,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[16674,16757,16777],"referencedDeclaration":16777,"src":"3416:11:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":16791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3416:17:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16788,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3410:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16787,"name":"bytes","nodeType":"ElementaryTypeName","src":"3410:5:62","typeDescriptions":{}}},"id":16792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3410:24:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3388:46:62"},{"assignments":[16795],"declarations":[{"constant":false,"id":16795,"mutability":"mutable","name":"hashValue","nameLocation":"3527:9:62","nodeType":"VariableDeclaration","scope":16841,"src":"3519:17:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16794,"name":"uint256","nodeType":"ElementaryTypeName","src":"3519:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16796,"nodeType":"VariableDeclarationStatement","src":"3519:17:62"},{"AST":{"nativeSrc":"3571:78:62","nodeType":"YulBlock","src":"3571:78:62","statements":[{"nativeSrc":"3585:54:62","nodeType":"YulAssignment","src":"3585:54:62","value":{"arguments":[{"kind":"number","nativeSrc":"3602:2:62","nodeType":"YulLiteral","src":"3602:2:62","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"3620:6:62","nodeType":"YulIdentifier","src":"3620:6:62"},{"kind":"number","nativeSrc":"3628:4:62","nodeType":"YulLiteral","src":"3628:4:62","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3616:3:62","nodeType":"YulIdentifier","src":"3616:3:62"},"nativeSrc":"3616:17:62","nodeType":"YulFunctionCall","src":"3616:17:62"},{"kind":"number","nativeSrc":"3635:2:62","nodeType":"YulLiteral","src":"3635:2:62","type":"","value":"40"}],"functionName":{"name":"keccak256","nativeSrc":"3606:9:62","nodeType":"YulIdentifier","src":"3606:9:62"},"nativeSrc":"3606:32:62","nodeType":"YulFunctionCall","src":"3606:32:62"}],"functionName":{"name":"shr","nativeSrc":"3598:3:62","nodeType":"YulIdentifier","src":"3598:3:62"},"nativeSrc":"3598:41:62","nodeType":"YulFunctionCall","src":"3598:41:62"},"variableNames":[{"name":"hashValue","nativeSrc":"3585:9:62","nodeType":"YulIdentifier","src":"3585:9:62"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":16786,"isOffset":false,"isSlot":false,"src":"3620:6:62","valueSize":1},{"declaration":16795,"isOffset":false,"isSlot":false,"src":"3585:9:62","valueSize":1}],"flags":["memory-safe"],"id":16797,"nodeType":"InlineAssembly","src":"3546:103:62"},{"body":{"id":16834,"nodeType":"Block","src":"3692:291:62","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16808,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16795,"src":"3798:9:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":16809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3810:3:62","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"3798:15:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":16811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3816:1:62","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"3798:19:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":16815,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16786,"src":"3827:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16817,"indexExpression":{"id":16816,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16799,"src":"3834:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3827:9:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":16814,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3821:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16813,"name":"uint8","nodeType":"ElementaryTypeName","src":"3821:5:62","typeDescriptions":{}}},"id":16818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3821:16:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":16819,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3840:2:62","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"3821:21:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3798:44:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16829,"nodeType":"IfStatement","src":"3794:150:62","trueBody":{"id":16828,"nodeType":"Block","src":"3844:100:62","statements":[{"expression":{"id":16826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16822,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16786,"src":"3912:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16824,"indexExpression":{"id":16823,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16799,"src":"3919:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3912:9:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":16825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3925:4:62","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"3912:17:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16827,"nodeType":"ExpressionStatement","src":"3912:17:62"}]}},{"expression":{"id":16832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16830,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16795,"src":"3957:9:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":16831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3971:1:62","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"3957:15:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16833,"nodeType":"ExpressionStatement","src":"3957:15:62"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16802,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16799,"src":"3680:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":16803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3684:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"3680:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16835,"initializationExpression":{"assignments":[16799],"declarations":[{"constant":false,"id":16799,"mutability":"mutable","name":"i","nameLocation":"3672:1:62","nodeType":"VariableDeclaration","scope":16835,"src":"3664:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16798,"name":"uint256","nodeType":"ElementaryTypeName","src":"3664:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16801,"initialValue":{"hexValue":"3431","id":16800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3676:2:62","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3664:14:62"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":16806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"3687:3:62","subExpression":{"id":16805,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16799,"src":"3689:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16807,"nodeType":"ExpressionStatement","src":"3687:3:62"},"nodeType":"ForStatement","src":"3659:324:62"},{"expression":{"arguments":[{"id":16838,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16786,"src":"4006:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16837,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3999:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16836,"name":"string","nodeType":"ElementaryTypeName","src":"3999:6:62","typeDescriptions":{}}},"id":16839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3999:14:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16784,"id":16840,"nodeType":"Return","src":"3992:21:62"}]},"documentation":{"id":16778,"nodeType":"StructuredDocumentation","src":"3127:165:62","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":16842,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3306:19:62","nodeType":"FunctionDefinition","parameters":{"id":16781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16780,"mutability":"mutable","name":"addr","nameLocation":"3334:4:62","nodeType":"VariableDeclaration","scope":16842,"src":"3326:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16779,"name":"address","nodeType":"ElementaryTypeName","src":"3326:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3325:14:62"},"returnParameters":{"id":16784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16783,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16842,"src":"3363:13:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16782,"name":"string","nodeType":"ElementaryTypeName","src":"3363:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3362:15:62"},"scope":17750,"src":"3297:723:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16878,"nodeType":"Block","src":"4175:104:62","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":16854,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16845,"src":"4198:1:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4192:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16852,"name":"bytes","nodeType":"ElementaryTypeName","src":"4192:5:62","typeDescriptions":{}}},"id":16855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4192:8:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4201:6:62","memberName":"length","nodeType":"MemberAccess","src":"4192:15:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":16859,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16847,"src":"4217:1:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4211:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16857,"name":"bytes","nodeType":"ElementaryTypeName","src":"4211:5:62","typeDescriptions":{}}},"id":16860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4211:8:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4220:6:62","memberName":"length","nodeType":"MemberAccess","src":"4211:15:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4192:34:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":16875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":16866,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16845,"src":"4246:1:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16865,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4240:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16864,"name":"bytes","nodeType":"ElementaryTypeName","src":"4240:5:62","typeDescriptions":{}}},"id":16867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4240:8:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16863,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4230:9:62","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":16868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4230:19:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":16872,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16847,"src":"4269:1:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4263:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16870,"name":"bytes","nodeType":"ElementaryTypeName","src":"4263:5:62","typeDescriptions":{}}},"id":16873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:8:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16869,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4253:9:62","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":16874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4253:19:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4230:42:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4192:80:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":16851,"id":16877,"nodeType":"Return","src":"4185:87:62"}]},"documentation":{"id":16843,"nodeType":"StructuredDocumentation","src":"4026:66:62","text":" @dev Returns true if the two strings are equal."},"id":16879,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4106:5:62","nodeType":"FunctionDefinition","parameters":{"id":16848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16845,"mutability":"mutable","name":"a","nameLocation":"4126:1:62","nodeType":"VariableDeclaration","scope":16879,"src":"4112:15:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16844,"name":"string","nodeType":"ElementaryTypeName","src":"4112:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16847,"mutability":"mutable","name":"b","nameLocation":"4143:1:62","nodeType":"VariableDeclaration","scope":16879,"src":"4129:15:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16846,"name":"string","nodeType":"ElementaryTypeName","src":"4129:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4111:34:62"},"returnParameters":{"id":16851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16850,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16879,"src":"4169:4:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16849,"name":"bool","nodeType":"ElementaryTypeName","src":"4169:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4168:6:62"},"scope":17750,"src":"4097:182:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16897,"nodeType":"Block","src":"4576:64:62","statements":[{"expression":{"arguments":[{"id":16888,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16882,"src":"4603:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":16889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4610:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":16892,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16882,"src":"4619:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16891,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4613:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16890,"name":"bytes","nodeType":"ElementaryTypeName","src":"4613:5:62","typeDescriptions":{}}},"id":16893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4613:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4626:6:62","memberName":"length","nodeType":"MemberAccess","src":"4613:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16887,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[16898,16929],"referencedDeclaration":16929,"src":"4593:9:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":16895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4593:40:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16886,"id":16896,"nodeType":"Return","src":"4586:47:62"}]},"documentation":{"id":16880,"nodeType":"StructuredDocumentation","src":"4285:214:62","text":" @dev Parse a decimal string and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":16898,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4513:9:62","nodeType":"FunctionDefinition","parameters":{"id":16883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16882,"mutability":"mutable","name":"input","nameLocation":"4537:5:62","nodeType":"VariableDeclaration","scope":16898,"src":"4523:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16881,"name":"string","nodeType":"ElementaryTypeName","src":"4523:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4522:21:62"},"returnParameters":{"id":16886,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16885,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16898,"src":"4567:7:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16884,"name":"uint256","nodeType":"ElementaryTypeName","src":"4567:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4566:9:62"},"scope":17750,"src":"4504:136:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16928,"nodeType":"Block","src":"5038:153:62","statements":[{"assignments":[16911,16913],"declarations":[{"constant":false,"id":16911,"mutability":"mutable","name":"success","nameLocation":"5054:7:62","nodeType":"VariableDeclaration","scope":16928,"src":"5049:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16910,"name":"bool","nodeType":"ElementaryTypeName","src":"5049:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16913,"mutability":"mutable","name":"value","nameLocation":"5071:5:62","nodeType":"VariableDeclaration","scope":16928,"src":"5063:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16912,"name":"uint256","nodeType":"ElementaryTypeName","src":"5063:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16919,"initialValue":{"arguments":[{"id":16915,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16901,"src":"5093:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":16916,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16903,"src":"5100:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16917,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16905,"src":"5107:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16914,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[16950,16987],"referencedDeclaration":16987,"src":"5080:12:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":16918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5080:31:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5048:63:62"},{"condition":{"id":16921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5125:8:62","subExpression":{"id":16920,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16911,"src":"5126:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16925,"nodeType":"IfStatement","src":"5121:41:62","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":16922,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16577,"src":"5142:18:62","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":16923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5142:20:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16924,"nodeType":"RevertStatement","src":"5135:27:62"}},{"expression":{"id":16926,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16913,"src":"5179:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16909,"id":16927,"nodeType":"Return","src":"5172:12:62"}]},"documentation":{"id":16899,"nodeType":"StructuredDocumentation","src":"4646:287:62","text":" @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":16929,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4947:9:62","nodeType":"FunctionDefinition","parameters":{"id":16906,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16901,"mutability":"mutable","name":"input","nameLocation":"4971:5:62","nodeType":"VariableDeclaration","scope":16929,"src":"4957:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16900,"name":"string","nodeType":"ElementaryTypeName","src":"4957:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16903,"mutability":"mutable","name":"begin","nameLocation":"4986:5:62","nodeType":"VariableDeclaration","scope":16929,"src":"4978:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16902,"name":"uint256","nodeType":"ElementaryTypeName","src":"4978:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16905,"mutability":"mutable","name":"end","nameLocation":"5001:3:62","nodeType":"VariableDeclaration","scope":16929,"src":"4993:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16904,"name":"uint256","nodeType":"ElementaryTypeName","src":"4993:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4956:49:62"},"returnParameters":{"id":16909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16908,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16929,"src":"5029:7:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16907,"name":"uint256","nodeType":"ElementaryTypeName","src":"5029:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5028:9:62"},"scope":17750,"src":"4938:253:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16949,"nodeType":"Block","src":"5512:83:62","statements":[{"expression":{"arguments":[{"id":16940,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16932,"src":"5558:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":16941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5565:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":16944,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16932,"src":"5574:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16943,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5568:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16942,"name":"bytes","nodeType":"ElementaryTypeName","src":"5568:5:62","typeDescriptions":{}}},"id":16945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5568:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5581:6:62","memberName":"length","nodeType":"MemberAccess","src":"5568:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16939,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17057,"src":"5529:28:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":16947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5529:59:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":16938,"id":16948,"nodeType":"Return","src":"5522:66:62"}]},"documentation":{"id":16930,"nodeType":"StructuredDocumentation","src":"5197:215:62","text":" @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":16950,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5426:12:62","nodeType":"FunctionDefinition","parameters":{"id":16933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16932,"mutability":"mutable","name":"input","nameLocation":"5453:5:62","nodeType":"VariableDeclaration","scope":16950,"src":"5439:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16931,"name":"string","nodeType":"ElementaryTypeName","src":"5439:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5438:21:62"},"returnParameters":{"id":16938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16935,"mutability":"mutable","name":"success","nameLocation":"5488:7:62","nodeType":"VariableDeclaration","scope":16950,"src":"5483:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16934,"name":"bool","nodeType":"ElementaryTypeName","src":"5483:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16937,"mutability":"mutable","name":"value","nameLocation":"5505:5:62","nodeType":"VariableDeclaration","scope":16950,"src":"5497:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16936,"name":"uint256","nodeType":"ElementaryTypeName","src":"5497:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5482:29:62"},"scope":17750,"src":"5417:178:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16986,"nodeType":"Block","src":"5997:144:62","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16964,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16957,"src":"6011:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":16967,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16953,"src":"6023:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6017:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16965,"name":"bytes","nodeType":"ElementaryTypeName","src":"6017:5:62","typeDescriptions":{}}},"id":16968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6017:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6030:6:62","memberName":"length","nodeType":"MemberAccess","src":"6017:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6011:25:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16971,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16955,"src":"6040:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":16972,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16957,"src":"6048:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6040:11:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6011:40:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16979,"nodeType":"IfStatement","src":"6007:63:62","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":16975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6061:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":16976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6068:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":16977,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6060:10:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":16963,"id":16978,"nodeType":"Return","src":"6053:17:62"}},{"expression":{"arguments":[{"id":16981,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16953,"src":"6116:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":16982,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16955,"src":"6123:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16983,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16957,"src":"6130:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16980,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17057,"src":"6087:28:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":16984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6087:47:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":16963,"id":16985,"nodeType":"Return","src":"6080:54:62"}]},"documentation":{"id":16951,"nodeType":"StructuredDocumentation","src":"5601:238:62","text":" @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":16987,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5853:12:62","nodeType":"FunctionDefinition","parameters":{"id":16958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16953,"mutability":"mutable","name":"input","nameLocation":"5889:5:62","nodeType":"VariableDeclaration","scope":16987,"src":"5875:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16952,"name":"string","nodeType":"ElementaryTypeName","src":"5875:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16955,"mutability":"mutable","name":"begin","nameLocation":"5912:5:62","nodeType":"VariableDeclaration","scope":16987,"src":"5904:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16954,"name":"uint256","nodeType":"ElementaryTypeName","src":"5904:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16957,"mutability":"mutable","name":"end","nameLocation":"5935:3:62","nodeType":"VariableDeclaration","scope":16987,"src":"5927:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16956,"name":"uint256","nodeType":"ElementaryTypeName","src":"5927:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5865:79:62"},"returnParameters":{"id":16963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16960,"mutability":"mutable","name":"success","nameLocation":"5973:7:62","nodeType":"VariableDeclaration","scope":16987,"src":"5968:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16959,"name":"bool","nodeType":"ElementaryTypeName","src":"5968:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16962,"mutability":"mutable","name":"value","nameLocation":"5990:5:62","nodeType":"VariableDeclaration","scope":16987,"src":"5982:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16961,"name":"uint256","nodeType":"ElementaryTypeName","src":"5982:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5967:29:62"},"scope":17750,"src":"5844:297:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17056,"nodeType":"Block","src":"6521:347:62","statements":[{"assignments":[17002],"declarations":[{"constant":false,"id":17002,"mutability":"mutable","name":"buffer","nameLocation":"6544:6:62","nodeType":"VariableDeclaration","scope":17056,"src":"6531:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17001,"name":"bytes","nodeType":"ElementaryTypeName","src":"6531:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17007,"initialValue":{"arguments":[{"id":17005,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16990,"src":"6559:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6553:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17003,"name":"bytes","nodeType":"ElementaryTypeName","src":"6553:5:62","typeDescriptions":{}}},"id":17006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6553:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6531:34:62"},{"assignments":[17009],"declarations":[{"constant":false,"id":17009,"mutability":"mutable","name":"result","nameLocation":"6584:6:62","nodeType":"VariableDeclaration","scope":17056,"src":"6576:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17008,"name":"uint256","nodeType":"ElementaryTypeName","src":"6576:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17011,"initialValue":{"hexValue":"30","id":17010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6593:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6576:18:62"},{"body":{"id":17050,"nodeType":"Block","src":"6642:189:62","statements":[{"assignments":[17023],"declarations":[{"constant":false,"id":17023,"mutability":"mutable","name":"chr","nameLocation":"6662:3:62","nodeType":"VariableDeclaration","scope":17050,"src":"6656:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17022,"name":"uint8","nodeType":"ElementaryTypeName","src":"6656:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17033,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":17028,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17002,"src":"6711:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":17029,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17013,"src":"6719:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17027,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17749,"src":"6688:22:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":17030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6688:33:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17026,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6681:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17025,"name":"bytes1","nodeType":"ElementaryTypeName","src":"6681:6:62","typeDescriptions":{}}},"id":17031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6681:41:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":17024,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17737,"src":"6668:12:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":17032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6668:55:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6656:67:62"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17034,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17023,"src":"6741:3:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":17035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6747:1:62","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"6741:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17041,"nodeType":"IfStatement","src":"6737:30:62","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":17037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6758:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":17038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6765:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":17039,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6757:10:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":17000,"id":17040,"nodeType":"Return","src":"6750:17:62"}},{"expression":{"id":17044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17042,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17009,"src":"6781:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":17043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6791:2:62","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"6781:12:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17045,"nodeType":"ExpressionStatement","src":"6781:12:62"},{"expression":{"id":17048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17046,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17009,"src":"6807:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":17047,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17023,"src":"6817:3:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6807:13:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17049,"nodeType":"ExpressionStatement","src":"6807:13:62"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17016,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17013,"src":"6628:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17017,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16994,"src":"6632:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6628:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17051,"initializationExpression":{"assignments":[17013],"declarations":[{"constant":false,"id":17013,"mutability":"mutable","name":"i","nameLocation":"6617:1:62","nodeType":"VariableDeclaration","scope":17051,"src":"6609:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17012,"name":"uint256","nodeType":"ElementaryTypeName","src":"6609:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17015,"initialValue":{"id":17014,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16992,"src":"6621:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6609:17:62"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":17020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6637:3:62","subExpression":{"id":17019,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17013,"src":"6639:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17021,"nodeType":"ExpressionStatement","src":"6637:3:62"},"nodeType":"ForStatement","src":"6604:227:62"},{"expression":{"components":[{"hexValue":"74727565","id":17052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6848:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":17053,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17009,"src":"6854:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17054,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6847:14:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":17000,"id":17055,"nodeType":"Return","src":"6840:21:62"}]},"documentation":{"id":16988,"nodeType":"StructuredDocumentation","src":"6147:201:62","text":" @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":17057,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"6362:28:62","nodeType":"FunctionDefinition","parameters":{"id":16995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16990,"mutability":"mutable","name":"input","nameLocation":"6414:5:62","nodeType":"VariableDeclaration","scope":17057,"src":"6400:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16989,"name":"string","nodeType":"ElementaryTypeName","src":"6400:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16992,"mutability":"mutable","name":"begin","nameLocation":"6437:5:62","nodeType":"VariableDeclaration","scope":17057,"src":"6429:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16991,"name":"uint256","nodeType":"ElementaryTypeName","src":"6429:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16994,"mutability":"mutable","name":"end","nameLocation":"6460:3:62","nodeType":"VariableDeclaration","scope":17057,"src":"6452:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16993,"name":"uint256","nodeType":"ElementaryTypeName","src":"6452:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6390:79:62"},"returnParameters":{"id":17000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16997,"mutability":"mutable","name":"success","nameLocation":"6497:7:62","nodeType":"VariableDeclaration","scope":17057,"src":"6492:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16996,"name":"bool","nodeType":"ElementaryTypeName","src":"6492:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16999,"mutability":"mutable","name":"value","nameLocation":"6514:5:62","nodeType":"VariableDeclaration","scope":17057,"src":"6506:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16998,"name":"uint256","nodeType":"ElementaryTypeName","src":"6506:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6491:29:62"},"scope":17750,"src":"6353:515:62","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":17075,"nodeType":"Block","src":"7165:63:62","statements":[{"expression":{"arguments":[{"id":17066,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17060,"src":"7191:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":17067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7198:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":17070,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17060,"src":"7207:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7201:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17068,"name":"bytes","nodeType":"ElementaryTypeName","src":"7201:5:62","typeDescriptions":{}}},"id":17071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7201:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7214:6:62","memberName":"length","nodeType":"MemberAccess","src":"7201:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17065,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[17076,17107],"referencedDeclaration":17107,"src":"7182:8:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (int256)"}},"id":17073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7182:39:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17064,"id":17074,"nodeType":"Return","src":"7175:46:62"}]},"documentation":{"id":17058,"nodeType":"StructuredDocumentation","src":"6874:216:62","text":" @dev Parse a decimal string and returns the value as a `int256`.\n Requirements:\n - The string must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":17076,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7104:8:62","nodeType":"FunctionDefinition","parameters":{"id":17061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17060,"mutability":"mutable","name":"input","nameLocation":"7127:5:62","nodeType":"VariableDeclaration","scope":17076,"src":"7113:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17059,"name":"string","nodeType":"ElementaryTypeName","src":"7113:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7112:21:62"},"returnParameters":{"id":17064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17063,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17076,"src":"7157:6:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17062,"name":"int256","nodeType":"ElementaryTypeName","src":"7157:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7156:8:62"},"scope":17750,"src":"7095:133:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17106,"nodeType":"Block","src":"7633:151:62","statements":[{"assignments":[17089,17091],"declarations":[{"constant":false,"id":17089,"mutability":"mutable","name":"success","nameLocation":"7649:7:62","nodeType":"VariableDeclaration","scope":17106,"src":"7644:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17088,"name":"bool","nodeType":"ElementaryTypeName","src":"7644:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17091,"mutability":"mutable","name":"value","nameLocation":"7665:5:62","nodeType":"VariableDeclaration","scope":17106,"src":"7658:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17090,"name":"int256","nodeType":"ElementaryTypeName","src":"7658:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17097,"initialValue":{"arguments":[{"id":17093,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17079,"src":"7686:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17094,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17081,"src":"7693:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17095,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17083,"src":"7700:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17092,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[17128,17170],"referencedDeclaration":17170,"src":"7674:11:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":17096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7674:30:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7643:61:62"},{"condition":{"id":17099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7718:8:62","subExpression":{"id":17098,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17089,"src":"7719:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17103,"nodeType":"IfStatement","src":"7714:41:62","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":17100,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16577,"src":"7735:18:62","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":17101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7735:20:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17102,"nodeType":"RevertStatement","src":"7728:27:62"}},{"expression":{"id":17104,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17091,"src":"7772:5:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":17087,"id":17105,"nodeType":"Return","src":"7765:12:62"}]},"documentation":{"id":17077,"nodeType":"StructuredDocumentation","src":"7234:296:62","text":" @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":17107,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7544:8:62","nodeType":"FunctionDefinition","parameters":{"id":17084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17079,"mutability":"mutable","name":"input","nameLocation":"7567:5:62","nodeType":"VariableDeclaration","scope":17107,"src":"7553:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17078,"name":"string","nodeType":"ElementaryTypeName","src":"7553:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17081,"mutability":"mutable","name":"begin","nameLocation":"7582:5:62","nodeType":"VariableDeclaration","scope":17107,"src":"7574:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17080,"name":"uint256","nodeType":"ElementaryTypeName","src":"7574:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17083,"mutability":"mutable","name":"end","nameLocation":"7597:3:62","nodeType":"VariableDeclaration","scope":17107,"src":"7589:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17082,"name":"uint256","nodeType":"ElementaryTypeName","src":"7589:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7552:49:62"},"returnParameters":{"id":17087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17107,"src":"7625:6:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17085,"name":"int256","nodeType":"ElementaryTypeName","src":"7625:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7624:8:62"},"scope":17750,"src":"7535:249:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17127,"nodeType":"Block","src":"8175:82:62","statements":[{"expression":{"arguments":[{"id":17118,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17110,"src":"8220:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":17119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8227:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":17122,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17110,"src":"8236:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8230:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17120,"name":"bytes","nodeType":"ElementaryTypeName","src":"8230:5:62","typeDescriptions":{}}},"id":17123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8230:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8243:6:62","memberName":"length","nodeType":"MemberAccess","src":"8230:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17117,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17291,"src":"8192:27:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":17125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8192:58:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":17116,"id":17126,"nodeType":"Return","src":"8185:65:62"}]},"documentation":{"id":17108,"nodeType":"StructuredDocumentation","src":"7790:287:62","text":" @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":17128,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8091:11:62","nodeType":"FunctionDefinition","parameters":{"id":17111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17110,"mutability":"mutable","name":"input","nameLocation":"8117:5:62","nodeType":"VariableDeclaration","scope":17128,"src":"8103:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17109,"name":"string","nodeType":"ElementaryTypeName","src":"8103:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8102:21:62"},"returnParameters":{"id":17116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17113,"mutability":"mutable","name":"success","nameLocation":"8152:7:62","nodeType":"VariableDeclaration","scope":17128,"src":"8147:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17112,"name":"bool","nodeType":"ElementaryTypeName","src":"8147:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17115,"mutability":"mutable","name":"value","nameLocation":"8168:5:62","nodeType":"VariableDeclaration","scope":17128,"src":"8161:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17114,"name":"int256","nodeType":"ElementaryTypeName","src":"8161:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8146:28:62"},"scope":17750,"src":"8082:175:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":17133,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8288:14:62","nodeType":"VariableDeclaration","scope":17750,"src":"8263:50:62","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17129,"name":"uint256","nodeType":"ElementaryTypeName","src":"8263:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":17132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":17130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8305:1:62","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":17131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8310:3:62","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8305:8:62","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":17169,"nodeType":"Block","src":"8779:143:62","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17147,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17140,"src":"8793:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":17150,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"8805:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17149,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8799:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17148,"name":"bytes","nodeType":"ElementaryTypeName","src":"8799:5:62","typeDescriptions":{}}},"id":17151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8799:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8812:6:62","memberName":"length","nodeType":"MemberAccess","src":"8799:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8793:25:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17154,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17138,"src":"8822:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17155,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17140,"src":"8830:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8822:11:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8793:40:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17162,"nodeType":"IfStatement","src":"8789:63:62","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":17158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8843:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":17159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8850:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":17160,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"8842:10:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":17146,"id":17161,"nodeType":"Return","src":"8835:17:62"}},{"expression":{"arguments":[{"id":17164,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"8897:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17165,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17138,"src":"8904:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17166,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17140,"src":"8911:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17163,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17291,"src":"8869:27:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":17167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8869:46:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":17146,"id":17168,"nodeType":"Return","src":"8862:53:62"}]},"documentation":{"id":17134,"nodeType":"StructuredDocumentation","src":"8320:303:62","text":" @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character or if the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":17170,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8637:11:62","nodeType":"FunctionDefinition","parameters":{"id":17141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17136,"mutability":"mutable","name":"input","nameLocation":"8672:5:62","nodeType":"VariableDeclaration","scope":17170,"src":"8658:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17135,"name":"string","nodeType":"ElementaryTypeName","src":"8658:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17138,"mutability":"mutable","name":"begin","nameLocation":"8695:5:62","nodeType":"VariableDeclaration","scope":17170,"src":"8687:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17137,"name":"uint256","nodeType":"ElementaryTypeName","src":"8687:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17140,"mutability":"mutable","name":"end","nameLocation":"8718:3:62","nodeType":"VariableDeclaration","scope":17170,"src":"8710:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17139,"name":"uint256","nodeType":"ElementaryTypeName","src":"8710:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8648:79:62"},"returnParameters":{"id":17146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17143,"mutability":"mutable","name":"success","nameLocation":"8756:7:62","nodeType":"VariableDeclaration","scope":17170,"src":"8751:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17142,"name":"bool","nodeType":"ElementaryTypeName","src":"8751:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17145,"mutability":"mutable","name":"value","nameLocation":"8772:5:62","nodeType":"VariableDeclaration","scope":17170,"src":"8765:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17144,"name":"int256","nodeType":"ElementaryTypeName","src":"8765:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8750:28:62"},"scope":17750,"src":"8628:294:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17290,"nodeType":"Block","src":"9299:812:62","statements":[{"assignments":[17185],"declarations":[{"constant":false,"id":17185,"mutability":"mutable","name":"buffer","nameLocation":"9322:6:62","nodeType":"VariableDeclaration","scope":17290,"src":"9309:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17184,"name":"bytes","nodeType":"ElementaryTypeName","src":"9309:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17190,"initialValue":{"arguments":[{"id":17188,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17173,"src":"9337:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17187,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9331:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17186,"name":"bytes","nodeType":"ElementaryTypeName","src":"9331:5:62","typeDescriptions":{}}},"id":17189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9331:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9309:34:62"},{"assignments":[17192],"declarations":[{"constant":false,"id":17192,"mutability":"mutable","name":"sign","nameLocation":"9407:4:62","nodeType":"VariableDeclaration","scope":17290,"src":"9400:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":17191,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9400:6:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":17208,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17193,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17175,"src":"9414:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":17194,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17177,"src":"9423:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9414:12:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":17203,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17185,"src":"9471:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":17204,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17175,"src":"9479:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17202,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17749,"src":"9448:22:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":17205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9448:37:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9441:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17200,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9441:6:62","typeDescriptions":{}}},"id":17206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9441:45:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":17207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9414:72:62","trueExpression":{"arguments":[{"hexValue":"30","id":17198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9436:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17197,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9429:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17196,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9429:6:62","typeDescriptions":{}}},"id":17199,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9429:9:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9400:86:62"},{"assignments":[17210],"declarations":[{"constant":false,"id":17210,"mutability":"mutable","name":"positiveSign","nameLocation":"9572:12:62","nodeType":"VariableDeclaration","scope":17290,"src":"9567:17:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17209,"name":"bool","nodeType":"ElementaryTypeName","src":"9567:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":17217,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17211,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17192,"src":"9587:4:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":17214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9602:3:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":17213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9595:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17212,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9595:6:62","typeDescriptions":{}}},"id":17215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9595:11:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9587:19:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9567:39:62"},{"assignments":[17219],"declarations":[{"constant":false,"id":17219,"mutability":"mutable","name":"negativeSign","nameLocation":"9621:12:62","nodeType":"VariableDeclaration","scope":17290,"src":"9616:17:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17218,"name":"bool","nodeType":"ElementaryTypeName","src":"9616:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":17226,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17220,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17192,"src":"9636:4:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":17223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9651:3:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":17222,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9644:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17221,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9644:6:62","typeDescriptions":{}}},"id":17224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9644:11:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9636:19:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9616:39:62"},{"assignments":[17228],"declarations":[{"constant":false,"id":17228,"mutability":"mutable","name":"offset","nameLocation":"9673:6:62","nodeType":"VariableDeclaration","scope":17290,"src":"9665:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17227,"name":"uint256","nodeType":"ElementaryTypeName","src":"9665:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17235,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17229,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17210,"src":"9683:12:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":17230,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17219,"src":"9699:12:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9683:28:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":17232,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9682:30:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9713:6:62","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"9682:37:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":17234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9682:39:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9665:56:62"},{"assignments":[17237,17239],"declarations":[{"constant":false,"id":17237,"mutability":"mutable","name":"absSuccess","nameLocation":"9738:10:62","nodeType":"VariableDeclaration","scope":17290,"src":"9733:15:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17236,"name":"bool","nodeType":"ElementaryTypeName","src":"9733:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17239,"mutability":"mutable","name":"absValue","nameLocation":"9758:8:62","nodeType":"VariableDeclaration","scope":17290,"src":"9750:16:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17238,"name":"uint256","nodeType":"ElementaryTypeName","src":"9750:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17247,"initialValue":{"arguments":[{"id":17241,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17173,"src":"9783:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17242,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17175,"src":"9790:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":17243,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17228,"src":"9798:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9790:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17245,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17177,"src":"9806:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17240,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[16950,16987],"referencedDeclaration":16987,"src":"9770:12:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":17246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9770:40:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9732:78:62"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17248,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17237,"src":"9825:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17249,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17239,"src":"9839:8:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17250,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17133,"src":"9850:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9839:25:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9825:39:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17268,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17237,"src":"9967:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":17269,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17219,"src":"9981:12:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:26:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17271,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17239,"src":"9997:8:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":17272,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17133,"src":"10009:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9997:26:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9967:56:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":17284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10095:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":17285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10102:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":17286,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10094:10:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":17183,"id":17287,"nodeType":"Return","src":"10087:17:62"},"id":17288,"nodeType":"IfStatement","src":"9963:141:62","trueBody":{"id":17283,"nodeType":"Block","src":"10025:56:62","statements":[{"expression":{"components":[{"hexValue":"74727565","id":17275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10047:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":17278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10058:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17277,"name":"int256","nodeType":"ElementaryTypeName","src":"10058:6:62","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":17276,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10053:4:62","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10053:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":17280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10066:3:62","memberName":"min","nodeType":"MemberAccess","src":"10053:16:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10046:24:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":17183,"id":17282,"nodeType":"Return","src":"10039:31:62"}]}},"id":17289,"nodeType":"IfStatement","src":"9821:283:62","trueBody":{"id":17267,"nodeType":"Block","src":"9866:91:62","statements":[{"expression":{"components":[{"hexValue":"74727565","id":17253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9888:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":17254,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17219,"src":"9894:12:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":17262,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17239,"src":"9936:8:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9929:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17260,"name":"int256","nodeType":"ElementaryTypeName","src":"9929:6:62","typeDescriptions":{}}},"id":17263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9929:16:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9894:51:62","trueExpression":{"id":17259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"9909:17:62","subExpression":{"arguments":[{"id":17257,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17239,"src":"9917:8:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9910:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17255,"name":"int256","nodeType":"ElementaryTypeName","src":"9910:6:62","typeDescriptions":{}}},"id":17258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9910:16:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17265,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9887:59:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":17183,"id":17266,"nodeType":"Return","src":"9880:66:62"}]}}]},"documentation":{"id":17171,"nodeType":"StructuredDocumentation","src":"8928:200:62","text":" @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":17291,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"9142:27:62","nodeType":"FunctionDefinition","parameters":{"id":17178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17173,"mutability":"mutable","name":"input","nameLocation":"9193:5:62","nodeType":"VariableDeclaration","scope":17291,"src":"9179:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17172,"name":"string","nodeType":"ElementaryTypeName","src":"9179:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17175,"mutability":"mutable","name":"begin","nameLocation":"9216:5:62","nodeType":"VariableDeclaration","scope":17291,"src":"9208:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17174,"name":"uint256","nodeType":"ElementaryTypeName","src":"9208:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17177,"mutability":"mutable","name":"end","nameLocation":"9239:3:62","nodeType":"VariableDeclaration","scope":17291,"src":"9231:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17176,"name":"uint256","nodeType":"ElementaryTypeName","src":"9231:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9169:79:62"},"returnParameters":{"id":17183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17180,"mutability":"mutable","name":"success","nameLocation":"9276:7:62","nodeType":"VariableDeclaration","scope":17291,"src":"9271:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17179,"name":"bool","nodeType":"ElementaryTypeName","src":"9271:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17182,"mutability":"mutable","name":"value","nameLocation":"9292:5:62","nodeType":"VariableDeclaration","scope":17291,"src":"9285:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17181,"name":"int256","nodeType":"ElementaryTypeName","src":"9285:6:62","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9270:28:62"},"scope":17750,"src":"9133:978:62","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":17309,"nodeType":"Block","src":"10456:67:62","statements":[{"expression":{"arguments":[{"id":17300,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17294,"src":"10486:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":17301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10493:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":17304,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17294,"src":"10502:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10496:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17302,"name":"bytes","nodeType":"ElementaryTypeName","src":"10496:5:62","typeDescriptions":{}}},"id":17305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10496:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10509:6:62","memberName":"length","nodeType":"MemberAccess","src":"10496:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17299,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[17310,17341],"referencedDeclaration":17341,"src":"10473:12:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":17307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10473:43:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17298,"id":17308,"nodeType":"Return","src":"10466:50:62"}]},"documentation":{"id":17292,"nodeType":"StructuredDocumentation","src":"10117:259:62","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":17310,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10390:12:62","nodeType":"FunctionDefinition","parameters":{"id":17295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17294,"mutability":"mutable","name":"input","nameLocation":"10417:5:62","nodeType":"VariableDeclaration","scope":17310,"src":"10403:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17293,"name":"string","nodeType":"ElementaryTypeName","src":"10403:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10402:21:62"},"returnParameters":{"id":17298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17297,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17310,"src":"10447:7:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17296,"name":"uint256","nodeType":"ElementaryTypeName","src":"10447:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10446:9:62"},"scope":17750,"src":"10381:142:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17340,"nodeType":"Block","src":"10937:156:62","statements":[{"assignments":[17323,17325],"declarations":[{"constant":false,"id":17323,"mutability":"mutable","name":"success","nameLocation":"10953:7:62","nodeType":"VariableDeclaration","scope":17340,"src":"10948:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17322,"name":"bool","nodeType":"ElementaryTypeName","src":"10948:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17325,"mutability":"mutable","name":"value","nameLocation":"10970:5:62","nodeType":"VariableDeclaration","scope":17340,"src":"10962:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17324,"name":"uint256","nodeType":"ElementaryTypeName","src":"10962:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17331,"initialValue":{"arguments":[{"id":17327,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17313,"src":"10995:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17328,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17315,"src":"11002:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17329,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17317,"src":"11009:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17326,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[17362,17399],"referencedDeclaration":17399,"src":"10979:15:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":17330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10979:34:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10947:66:62"},{"condition":{"id":17333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11027:8:62","subExpression":{"id":17332,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17323,"src":"11028:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17337,"nodeType":"IfStatement","src":"11023:41:62","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":17334,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16577,"src":"11044:18:62","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":17335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11044:20:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17336,"nodeType":"RevertStatement","src":"11037:27:62"}},{"expression":{"id":17338,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17325,"src":"11081:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17321,"id":17339,"nodeType":"Return","src":"11074:12:62"}]},"documentation":{"id":17311,"nodeType":"StructuredDocumentation","src":"10529:300:62","text":" @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":17341,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10843:12:62","nodeType":"FunctionDefinition","parameters":{"id":17318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17313,"mutability":"mutable","name":"input","nameLocation":"10870:5:62","nodeType":"VariableDeclaration","scope":17341,"src":"10856:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17312,"name":"string","nodeType":"ElementaryTypeName","src":"10856:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17315,"mutability":"mutable","name":"begin","nameLocation":"10885:5:62","nodeType":"VariableDeclaration","scope":17341,"src":"10877:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17314,"name":"uint256","nodeType":"ElementaryTypeName","src":"10877:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17317,"mutability":"mutable","name":"end","nameLocation":"10900:3:62","nodeType":"VariableDeclaration","scope":17341,"src":"10892:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17316,"name":"uint256","nodeType":"ElementaryTypeName","src":"10892:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10855:49:62"},"returnParameters":{"id":17321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17320,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17341,"src":"10928:7:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17319,"name":"uint256","nodeType":"ElementaryTypeName","src":"10928:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10927:9:62"},"scope":17750,"src":"10834:259:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17361,"nodeType":"Block","src":"11420:86:62","statements":[{"expression":{"arguments":[{"id":17352,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17344,"src":"11469:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":17353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11476:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":17356,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17344,"src":"11485:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11479:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17354,"name":"bytes","nodeType":"ElementaryTypeName","src":"11479:5:62","typeDescriptions":{}}},"id":17357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11479:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11492:6:62","memberName":"length","nodeType":"MemberAccess","src":"11479:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17351,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17502,"src":"11437:31:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":17359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11437:62:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":17350,"id":17360,"nodeType":"Return","src":"11430:69:62"}]},"documentation":{"id":17342,"nodeType":"StructuredDocumentation","src":"11099:218:62","text":" @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":17362,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11331:15:62","nodeType":"FunctionDefinition","parameters":{"id":17345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17344,"mutability":"mutable","name":"input","nameLocation":"11361:5:62","nodeType":"VariableDeclaration","scope":17362,"src":"11347:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17343,"name":"string","nodeType":"ElementaryTypeName","src":"11347:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11346:21:62"},"returnParameters":{"id":17350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17347,"mutability":"mutable","name":"success","nameLocation":"11396:7:62","nodeType":"VariableDeclaration","scope":17362,"src":"11391:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17346,"name":"bool","nodeType":"ElementaryTypeName","src":"11391:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17349,"mutability":"mutable","name":"value","nameLocation":"11413:5:62","nodeType":"VariableDeclaration","scope":17362,"src":"11405:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17348,"name":"uint256","nodeType":"ElementaryTypeName","src":"11405:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11390:29:62"},"scope":17750,"src":"11322:184:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17398,"nodeType":"Block","src":"11914:147:62","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17376,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17369,"src":"11928:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":17379,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17365,"src":"11940:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11934:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17377,"name":"bytes","nodeType":"ElementaryTypeName","src":"11934:5:62","typeDescriptions":{}}},"id":17380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11934:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11947:6:62","memberName":"length","nodeType":"MemberAccess","src":"11934:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11928:25:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17383,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17367,"src":"11957:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17384,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17369,"src":"11965:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11957:11:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11928:40:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17391,"nodeType":"IfStatement","src":"11924:63:62","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":17387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11978:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":17388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11985:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":17389,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11977:10:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":17375,"id":17390,"nodeType":"Return","src":"11970:17:62"}},{"expression":{"arguments":[{"id":17393,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17365,"src":"12036:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17394,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17367,"src":"12043:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17395,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17369,"src":"12050:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17392,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17502,"src":"12004:31:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":17396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12004:50:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":17375,"id":17397,"nodeType":"Return","src":"11997:57:62"}]},"documentation":{"id":17363,"nodeType":"StructuredDocumentation","src":"11512:241:62","text":" @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":17399,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11767:15:62","nodeType":"FunctionDefinition","parameters":{"id":17370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17365,"mutability":"mutable","name":"input","nameLocation":"11806:5:62","nodeType":"VariableDeclaration","scope":17399,"src":"11792:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17364,"name":"string","nodeType":"ElementaryTypeName","src":"11792:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17367,"mutability":"mutable","name":"begin","nameLocation":"11829:5:62","nodeType":"VariableDeclaration","scope":17399,"src":"11821:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17366,"name":"uint256","nodeType":"ElementaryTypeName","src":"11821:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17369,"mutability":"mutable","name":"end","nameLocation":"11852:3:62","nodeType":"VariableDeclaration","scope":17399,"src":"11844:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17368,"name":"uint256","nodeType":"ElementaryTypeName","src":"11844:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11782:79:62"},"returnParameters":{"id":17375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17372,"mutability":"mutable","name":"success","nameLocation":"11890:7:62","nodeType":"VariableDeclaration","scope":17399,"src":"11885:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17371,"name":"bool","nodeType":"ElementaryTypeName","src":"11885:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17374,"mutability":"mutable","name":"value","nameLocation":"11907:5:62","nodeType":"VariableDeclaration","scope":17399,"src":"11899:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17373,"name":"uint256","nodeType":"ElementaryTypeName","src":"11899:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11884:29:62"},"scope":17750,"src":"11758:303:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17501,"nodeType":"Block","src":"12447:880:62","statements":[{"assignments":[17414],"declarations":[{"constant":false,"id":17414,"mutability":"mutable","name":"buffer","nameLocation":"12470:6:62","nodeType":"VariableDeclaration","scope":17501,"src":"12457:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17413,"name":"bytes","nodeType":"ElementaryTypeName","src":"12457:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17419,"initialValue":{"arguments":[{"id":17417,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17402,"src":"12485:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17416,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12479:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17415,"name":"bytes","nodeType":"ElementaryTypeName","src":"12479:5:62","typeDescriptions":{}}},"id":17418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12479:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12457:34:62"},{"assignments":[17421],"declarations":[{"constant":false,"id":17421,"mutability":"mutable","name":"hasPrefix","nameLocation":"12544:9:62","nodeType":"VariableDeclaration","scope":17501,"src":"12539:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17420,"name":"bool","nodeType":"ElementaryTypeName","src":"12539:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":17441,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17422,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17406,"src":"12557:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17423,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17404,"src":"12563:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12571:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12563:9:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12557:15:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":17427,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12556:17:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":17439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":17431,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17414,"src":"12607:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":17432,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17404,"src":"12615:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17430,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17749,"src":"12584:22:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":17433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:37:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17429,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12577:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":17428,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12577:6:62","typeDescriptions":{}}},"id":17434,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12577:45:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":17437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12633:4:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":17436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12626:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":17435,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12626:6:62","typeDescriptions":{}}},"id":17438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12626:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12577:61:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12556:82:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12539:99:62"},{"assignments":[17443],"declarations":[{"constant":false,"id":17443,"mutability":"mutable","name":"offset","nameLocation":"12727:6:62","nodeType":"VariableDeclaration","scope":17501,"src":"12719:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17442,"name":"uint256","nodeType":"ElementaryTypeName","src":"12719:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17449,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":17444,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17421,"src":"12736:9:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12746:6:62","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"12736:16:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":17446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12736:18:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":17447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12757:1:62","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12736:22:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12719:39:62"},{"assignments":[17451],"declarations":[{"constant":false,"id":17451,"mutability":"mutable","name":"result","nameLocation":"12777:6:62","nodeType":"VariableDeclaration","scope":17501,"src":"12769:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17450,"name":"uint256","nodeType":"ElementaryTypeName","src":"12769:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17453,"initialValue":{"hexValue":"30","id":17452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12786:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12769:18:62"},{"body":{"id":17495,"nodeType":"Block","src":"12844:446:62","statements":[{"assignments":[17467],"declarations":[{"constant":false,"id":17467,"mutability":"mutable","name":"chr","nameLocation":"12864:3:62","nodeType":"VariableDeclaration","scope":17495,"src":"12858:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17466,"name":"uint8","nodeType":"ElementaryTypeName","src":"12858:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17477,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":17472,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17414,"src":"12913:6:62","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":17473,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17455,"src":"12921:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17471,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17749,"src":"12890:22:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":17474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12890:33:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12883:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17469,"name":"bytes1","nodeType":"ElementaryTypeName","src":"12883:6:62","typeDescriptions":{}}},"id":17475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12883:41:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":17468,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17737,"src":"12870:12:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":17476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12870:55:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"12858:67:62"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17478,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17467,"src":"12943:3:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":17479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12949:2:62","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"12943:8:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17485,"nodeType":"IfStatement","src":"12939:31:62","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":17481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12961:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":17482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12968:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":17483,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12960:10:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":17412,"id":17484,"nodeType":"Return","src":"12953:17:62"}},{"expression":{"id":17488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17486,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17451,"src":"12984:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":17487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12994:2:62","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"12984:12:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17489,"nodeType":"ExpressionStatement","src":"12984:12:62"},{"id":17494,"nodeType":"UncheckedBlock","src":"13010:270:62","statements":[{"expression":{"id":17492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17490,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17451,"src":"13252:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":17491,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17467,"src":"13262:3:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13252:13:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17493,"nodeType":"ExpressionStatement","src":"13252:13:62"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17460,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17455,"src":"12830:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17461,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17406,"src":"12834:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12830:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17496,"initializationExpression":{"assignments":[17455],"declarations":[{"constant":false,"id":17455,"mutability":"mutable","name":"i","nameLocation":"12810:1:62","nodeType":"VariableDeclaration","scope":17496,"src":"12802:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17454,"name":"uint256","nodeType":"ElementaryTypeName","src":"12802:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17459,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17456,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17404,"src":"12814:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":17457,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17443,"src":"12822:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12814:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12802:26:62"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":17464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"12839:3:62","subExpression":{"id":17463,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17455,"src":"12841:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17465,"nodeType":"ExpressionStatement","src":"12839:3:62"},"nodeType":"ForStatement","src":"12797:493:62"},{"expression":{"components":[{"hexValue":"74727565","id":17497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13307:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":17498,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17451,"src":"13313:6:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17499,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13306:14:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":17412,"id":17500,"nodeType":"Return","src":"13299:21:62"}]},"documentation":{"id":17400,"nodeType":"StructuredDocumentation","src":"12067:204:62","text":" @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":17502,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"12285:31:62","nodeType":"FunctionDefinition","parameters":{"id":17407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17402,"mutability":"mutable","name":"input","nameLocation":"12340:5:62","nodeType":"VariableDeclaration","scope":17502,"src":"12326:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17401,"name":"string","nodeType":"ElementaryTypeName","src":"12326:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17404,"mutability":"mutable","name":"begin","nameLocation":"12363:5:62","nodeType":"VariableDeclaration","scope":17502,"src":"12355:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17403,"name":"uint256","nodeType":"ElementaryTypeName","src":"12355:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17406,"mutability":"mutable","name":"end","nameLocation":"12386:3:62","nodeType":"VariableDeclaration","scope":17502,"src":"12378:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17405,"name":"uint256","nodeType":"ElementaryTypeName","src":"12378:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12316:79:62"},"returnParameters":{"id":17412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17409,"mutability":"mutable","name":"success","nameLocation":"12423:7:62","nodeType":"VariableDeclaration","scope":17502,"src":"12418:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17408,"name":"bool","nodeType":"ElementaryTypeName","src":"12418:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17411,"mutability":"mutable","name":"value","nameLocation":"12440:5:62","nodeType":"VariableDeclaration","scope":17502,"src":"12432:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17410,"name":"uint256","nodeType":"ElementaryTypeName","src":"12432:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12417:29:62"},"scope":17750,"src":"12276:1051:62","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":17520,"nodeType":"Block","src":"13625:67:62","statements":[{"expression":{"arguments":[{"id":17511,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17505,"src":"13655:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":17512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13662:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":17515,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17505,"src":"13671:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17514,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13665:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17513,"name":"bytes","nodeType":"ElementaryTypeName","src":"13665:5:62","typeDescriptions":{}}},"id":17516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13665:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13678:6:62","memberName":"length","nodeType":"MemberAccess","src":"13665:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17510,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[17521,17552],"referencedDeclaration":17552,"src":"13642:12:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (address)"}},"id":17518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13642:43:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17509,"id":17519,"nodeType":"Return","src":"13635:50:62"}]},"documentation":{"id":17503,"nodeType":"StructuredDocumentation","src":"13333:212:62","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":17521,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13559:12:62","nodeType":"FunctionDefinition","parameters":{"id":17506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17505,"mutability":"mutable","name":"input","nameLocation":"13586:5:62","nodeType":"VariableDeclaration","scope":17521,"src":"13572:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17504,"name":"string","nodeType":"ElementaryTypeName","src":"13572:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13571:21:62"},"returnParameters":{"id":17509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17521,"src":"13616:7:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17507,"name":"address","nodeType":"ElementaryTypeName","src":"13616:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13615:9:62"},"scope":17750,"src":"13550:142:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17551,"nodeType":"Block","src":"14058:165:62","statements":[{"assignments":[17534,17536],"declarations":[{"constant":false,"id":17534,"mutability":"mutable","name":"success","nameLocation":"14074:7:62","nodeType":"VariableDeclaration","scope":17551,"src":"14069:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17533,"name":"bool","nodeType":"ElementaryTypeName","src":"14069:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17536,"mutability":"mutable","name":"value","nameLocation":"14091:5:62","nodeType":"VariableDeclaration","scope":17551,"src":"14083:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17535,"name":"address","nodeType":"ElementaryTypeName","src":"14083:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":17542,"initialValue":{"arguments":[{"id":17538,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17524,"src":"14116:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17539,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17526,"src":"14123:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17540,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17528,"src":"14130:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17537,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[17573,17677],"referencedDeclaration":17677,"src":"14100:15:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":17541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14100:34:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14068:66:62"},{"condition":{"id":17544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14148:8:62","subExpression":{"id":17543,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17534,"src":"14149:7:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17548,"nodeType":"IfStatement","src":"14144:50:62","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":17545,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16580,"src":"14165:27:62","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":17546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14165:29:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17547,"nodeType":"RevertStatement","src":"14158:36:62"}},{"expression":{"id":17549,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17536,"src":"14211:5:62","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17532,"id":17550,"nodeType":"Return","src":"14204:12:62"}]},"documentation":{"id":17522,"nodeType":"StructuredDocumentation","src":"13698:252:62","text":" @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":17552,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13964:12:62","nodeType":"FunctionDefinition","parameters":{"id":17529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17524,"mutability":"mutable","name":"input","nameLocation":"13991:5:62","nodeType":"VariableDeclaration","scope":17552,"src":"13977:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17523,"name":"string","nodeType":"ElementaryTypeName","src":"13977:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17526,"mutability":"mutable","name":"begin","nameLocation":"14006:5:62","nodeType":"VariableDeclaration","scope":17552,"src":"13998:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17525,"name":"uint256","nodeType":"ElementaryTypeName","src":"13998:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17528,"mutability":"mutable","name":"end","nameLocation":"14021:3:62","nodeType":"VariableDeclaration","scope":17552,"src":"14013:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17527,"name":"uint256","nodeType":"ElementaryTypeName","src":"14013:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13976:49:62"},"returnParameters":{"id":17532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17531,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17552,"src":"14049:7:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17530,"name":"address","nodeType":"ElementaryTypeName","src":"14049:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14048:9:62"},"scope":17750,"src":"13955:268:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17572,"nodeType":"Block","src":"14523:70:62","statements":[{"expression":{"arguments":[{"id":17563,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17555,"src":"14556:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":17564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14563:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":17567,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17555,"src":"14572:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17566,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14566:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17565,"name":"bytes","nodeType":"ElementaryTypeName","src":"14566:5:62","typeDescriptions":{}}},"id":17568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14566:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14579:6:62","memberName":"length","nodeType":"MemberAccess","src":"14566:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17562,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[17573,17677],"referencedDeclaration":17677,"src":"14540:15:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":17570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14540:46:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":17561,"id":17571,"nodeType":"Return","src":"14533:53:62"}]},"documentation":{"id":17553,"nodeType":"StructuredDocumentation","src":"14229:191:62","text":" @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n formatted address. See {parseAddress} requirements."},"id":17573,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14434:15:62","nodeType":"FunctionDefinition","parameters":{"id":17556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17555,"mutability":"mutable","name":"input","nameLocation":"14464:5:62","nodeType":"VariableDeclaration","scope":17573,"src":"14450:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17554,"name":"string","nodeType":"ElementaryTypeName","src":"14450:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14449:21:62"},"returnParameters":{"id":17561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17558,"mutability":"mutable","name":"success","nameLocation":"14499:7:62","nodeType":"VariableDeclaration","scope":17573,"src":"14494:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17557,"name":"bool","nodeType":"ElementaryTypeName","src":"14494:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17560,"mutability":"mutable","name":"value","nameLocation":"14516:5:62","nodeType":"VariableDeclaration","scope":17573,"src":"14508:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17559,"name":"address","nodeType":"ElementaryTypeName","src":"14508:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14493:29:62"},"scope":17750,"src":"14425:168:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17676,"nodeType":"Block","src":"14963:733:62","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17587,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17580,"src":"14977:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":17590,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17576,"src":"14989:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14983:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17588,"name":"bytes","nodeType":"ElementaryTypeName","src":"14983:5:62","typeDescriptions":{}}},"id":17591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14983:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14996:6:62","memberName":"length","nodeType":"MemberAccess","src":"14983:19:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14977:25:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17594,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17578,"src":"15006:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17595,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17580,"src":"15014:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15006:11:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14977:40:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17605,"nodeType":"IfStatement","src":"14973:72:62","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":17598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15027:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":17601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15042:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15034:7:62","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17599,"name":"address","nodeType":"ElementaryTypeName","src":"15034:7:62","typeDescriptions":{}}},"id":17602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15034:10:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":17603,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15026:19:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":17586,"id":17604,"nodeType":"Return","src":"15019:26:62"}},{"assignments":[17607],"declarations":[{"constant":false,"id":17607,"mutability":"mutable","name":"hasPrefix","nameLocation":"15061:9:62","nodeType":"VariableDeclaration","scope":17676,"src":"15056:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17606,"name":"bool","nodeType":"ElementaryTypeName","src":"15056:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":17630,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17608,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17580,"src":"15074:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17609,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17578,"src":"15080:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15088:1:62","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15080:9:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15074:15:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":17613,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15073:17:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":17628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":17619,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17576,"src":"15130:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15124:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17617,"name":"bytes","nodeType":"ElementaryTypeName","src":"15124:5:62","typeDescriptions":{}}},"id":17620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":17621,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17578,"src":"15138:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17616,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17749,"src":"15101:22:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":17622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15101:43:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17615,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15094:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":17614,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15094:6:62","typeDescriptions":{}}},"id":17623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15094:51:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":17626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15156:4:62","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":17625,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15149:6:62","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":17624,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15149:6:62","typeDescriptions":{}}},"id":17627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15149:12:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15094:67:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15073:88:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15056:105:62"},{"assignments":[17632],"declarations":[{"constant":false,"id":17632,"mutability":"mutable","name":"expectedLength","nameLocation":"15250:14:62","nodeType":"VariableDeclaration","scope":17676,"src":"15242:22:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17631,"name":"uint256","nodeType":"ElementaryTypeName","src":"15242:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17640,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":17633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15267:2:62","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":17634,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17607,"src":"15272:9:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15282:6:62","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"15272:16:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":17636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15272:18:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":17637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15293:1:62","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15272:22:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15267:27:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15242:52:62"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17641,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17580,"src":"15359:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":17642,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17578,"src":"15365:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:11:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":17644,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17632,"src":"15374:14:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:29:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":17674,"nodeType":"Block","src":"15639:51:62","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":17667,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15661:5:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":17670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15676:1:62","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17669,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15668:7:62","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17668,"name":"address","nodeType":"ElementaryTypeName","src":"15668:7:62","typeDescriptions":{}}},"id":17671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15668:10:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":17672,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15660:19:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":17586,"id":17673,"nodeType":"Return","src":"15653:26:62"}]},"id":17675,"nodeType":"IfStatement","src":"15355:335:62","trueBody":{"id":17666,"nodeType":"Block","src":"15390:243:62","statements":[{"assignments":[17647,17649],"declarations":[{"constant":false,"id":17647,"mutability":"mutable","name":"s","nameLocation":"15511:1:62","nodeType":"VariableDeclaration","scope":17666,"src":"15506:6:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17646,"name":"bool","nodeType":"ElementaryTypeName","src":"15506:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17649,"mutability":"mutable","name":"v","nameLocation":"15522:1:62","nodeType":"VariableDeclaration","scope":17666,"src":"15514:9:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17648,"name":"uint256","nodeType":"ElementaryTypeName","src":"15514:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17655,"initialValue":{"arguments":[{"id":17651,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17576,"src":"15559:5:62","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17652,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17578,"src":"15566:5:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17653,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17580,"src":"15573:3:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17650,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17502,"src":"15527:31:62","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":17654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15527:50:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15505:72:62"},{"expression":{"components":[{"id":17656,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17647,"src":"15599:1:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":17661,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17649,"src":"15618:1:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17660,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15610:7:62","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":17659,"name":"uint160","nodeType":"ElementaryTypeName","src":"15610:7:62","typeDescriptions":{}}},"id":17662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15610:10:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":17658,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15602:7:62","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17657,"name":"address","nodeType":"ElementaryTypeName","src":"15602:7:62","typeDescriptions":{}}},"id":17663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15602:19:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":17664,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15598:24:62","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":17586,"id":17665,"nodeType":"Return","src":"15591:31:62"}]}}]},"documentation":{"id":17574,"nodeType":"StructuredDocumentation","src":"14599:203:62","text":" @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n formatted address. See {parseAddress} requirements."},"id":17677,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14816:15:62","nodeType":"FunctionDefinition","parameters":{"id":17581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17576,"mutability":"mutable","name":"input","nameLocation":"14855:5:62","nodeType":"VariableDeclaration","scope":17677,"src":"14841:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17575,"name":"string","nodeType":"ElementaryTypeName","src":"14841:6:62","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17578,"mutability":"mutable","name":"begin","nameLocation":"14878:5:62","nodeType":"VariableDeclaration","scope":17677,"src":"14870:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17577,"name":"uint256","nodeType":"ElementaryTypeName","src":"14870:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17580,"mutability":"mutable","name":"end","nameLocation":"14901:3:62","nodeType":"VariableDeclaration","scope":17677,"src":"14893:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17579,"name":"uint256","nodeType":"ElementaryTypeName","src":"14893:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14831:79:62"},"returnParameters":{"id":17586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17583,"mutability":"mutable","name":"success","nameLocation":"14939:7:62","nodeType":"VariableDeclaration","scope":17677,"src":"14934:12:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17582,"name":"bool","nodeType":"ElementaryTypeName","src":"14934:4:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":17585,"mutability":"mutable","name":"value","nameLocation":"14956:5:62","nodeType":"VariableDeclaration","scope":17677,"src":"14948:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17584,"name":"address","nodeType":"ElementaryTypeName","src":"14948:7:62","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14933:29:62"},"scope":17750,"src":"14807:889:62","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17736,"nodeType":"Block","src":"15765:461:62","statements":[{"assignments":[17685],"declarations":[{"constant":false,"id":17685,"mutability":"mutable","name":"value","nameLocation":"15781:5:62","nodeType":"VariableDeclaration","scope":17736,"src":"15775:11:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17684,"name":"uint8","nodeType":"ElementaryTypeName","src":"15775:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17690,"initialValue":{"arguments":[{"id":17688,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17679,"src":"15795:3:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":17687,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15789:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":17686,"name":"uint8","nodeType":"ElementaryTypeName","src":"15789:5:62","typeDescriptions":{}}},"id":17689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15789:10:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"15775:24:62"},{"id":17733,"nodeType":"UncheckedBlock","src":"15959:238:62","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17691,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"15987:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":17692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15995:2:62","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"15987:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17694,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16001:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":17695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16009:2:62","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16001:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15987:24:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17702,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16047:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":17703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16055:2:62","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16047:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17705,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16061:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":17706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16069:3:62","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16061:11:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16047:25:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17713,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16108:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":17714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16116:2:62","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16108:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17716,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16122:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":17717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16130:2:62","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16122:10:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16108:24:62","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":17726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16176:5:62","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":17725,"name":"uint8","nodeType":"ElementaryTypeName","src":"16176:5:62","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":17724,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16171:4:62","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16171:11:62","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":17728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16183:3:62","memberName":"max","nodeType":"MemberAccess","src":"16171:15:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":17683,"id":17729,"nodeType":"Return","src":"16164:22:62"},"id":17730,"nodeType":"IfStatement","src":"16104:82:62","trueBody":{"expression":{"id":17722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17720,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16134:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":17721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16143:2:62","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16134:11:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17723,"nodeType":"ExpressionStatement","src":"16134:11:62"}},"id":17731,"nodeType":"IfStatement","src":"16043:143:62","trueBody":{"expression":{"id":17711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17709,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16074:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":17710,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16083:2:62","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16074:11:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17712,"nodeType":"ExpressionStatement","src":"16074:11:62"}},"id":17732,"nodeType":"IfStatement","src":"15983:203:62","trueBody":{"expression":{"id":17700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17698,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16013:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":17699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16022:2:62","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16013:11:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17701,"nodeType":"ExpressionStatement","src":"16013:11:62"}}]},{"expression":{"id":17734,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17685,"src":"16214:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":17683,"id":17735,"nodeType":"Return","src":"16207:12:62"}]},"id":17737,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"15711:12:62","nodeType":"FunctionDefinition","parameters":{"id":17680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17679,"mutability":"mutable","name":"chr","nameLocation":"15731:3:62","nodeType":"VariableDeclaration","scope":17737,"src":"15724:10:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":17678,"name":"bytes1","nodeType":"ElementaryTypeName","src":"15724:6:62","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"15723:12:62"},"returnParameters":{"id":17683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17737,"src":"15758:5:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17681,"name":"uint8","nodeType":"ElementaryTypeName","src":"15758:5:62","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"15757:7:62"},"scope":17750,"src":"15702:524:62","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":17748,"nodeType":"Block","src":"16611:225:62","statements":[{"AST":{"nativeSrc":"16760:70:62","nodeType":"YulBlock","src":"16760:70:62","statements":[{"nativeSrc":"16774:46:62","nodeType":"YulAssignment","src":"16774:46:62","value":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"16793:6:62","nodeType":"YulIdentifier","src":"16793:6:62"},{"arguments":[{"kind":"number","nativeSrc":"16805:4:62","nodeType":"YulLiteral","src":"16805:4:62","type":"","value":"0x20"},{"name":"offset","nativeSrc":"16811:6:62","nodeType":"YulIdentifier","src":"16811:6:62"}],"functionName":{"name":"add","nativeSrc":"16801:3:62","nodeType":"YulIdentifier","src":"16801:3:62"},"nativeSrc":"16801:17:62","nodeType":"YulFunctionCall","src":"16801:17:62"}],"functionName":{"name":"add","nativeSrc":"16789:3:62","nodeType":"YulIdentifier","src":"16789:3:62"},"nativeSrc":"16789:30:62","nodeType":"YulFunctionCall","src":"16789:30:62"}],"functionName":{"name":"mload","nativeSrc":"16783:5:62","nodeType":"YulIdentifier","src":"16783:5:62"},"nativeSrc":"16783:37:62","nodeType":"YulFunctionCall","src":"16783:37:62"},"variableNames":[{"name":"value","nativeSrc":"16774:5:62","nodeType":"YulIdentifier","src":"16774:5:62"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":17740,"isOffset":false,"isSlot":false,"src":"16793:6:62","valueSize":1},{"declaration":17742,"isOffset":false,"isSlot":false,"src":"16811:6:62","valueSize":1},{"declaration":17745,"isOffset":false,"isSlot":false,"src":"16774:5:62","valueSize":1}],"flags":["memory-safe"],"id":17747,"nodeType":"InlineAssembly","src":"16735:95:62"}]},"documentation":{"id":17738,"nodeType":"StructuredDocumentation","src":"16232:268:62","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":17749,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"16514:22:62","nodeType":"FunctionDefinition","parameters":{"id":17743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17740,"mutability":"mutable","name":"buffer","nameLocation":"16550:6:62","nodeType":"VariableDeclaration","scope":17749,"src":"16537:19:62","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17739,"name":"bytes","nodeType":"ElementaryTypeName","src":"16537:5:62","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":17742,"mutability":"mutable","name":"offset","nameLocation":"16566:6:62","nodeType":"VariableDeclaration","scope":17749,"src":"16558:14:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17741,"name":"uint256","nodeType":"ElementaryTypeName","src":"16558:7:62","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16536:37:62"},"returnParameters":{"id":17746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17745,"mutability":"mutable","name":"value","nameLocation":"16604:5:62","nodeType":"VariableDeclaration","scope":17749,"src":"16596:13:62","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17744,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16596:7:62","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16595:15:62"},"scope":17750,"src":"16505:331:62","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":17751,"src":"297:16541:62","usedErrors":[16574,16577,16580],"usedEvents":[]}],"src":"101:16738:62"},"id":62},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[18098]},"id":18099,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":17752,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:63"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":17753,"nodeType":"StructuredDocumentation","src":"138:205:63","text":" @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n These functions can be used to verify that a message was signed by the holder\n of the private keys of a given address."},"fullyImplemented":true,"id":18098,"linearizedBaseContracts":[18098],"name":"ECDSA","nameLocation":"352:5:63","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":17758,"members":[{"id":17754,"name":"NoError","nameLocation":"392:7:63","nodeType":"EnumValue","src":"392:7:63"},{"id":17755,"name":"InvalidSignature","nameLocation":"409:16:63","nodeType":"EnumValue","src":"409:16:63"},{"id":17756,"name":"InvalidSignatureLength","nameLocation":"435:22:63","nodeType":"EnumValue","src":"435:22:63"},{"id":17757,"name":"InvalidSignatureS","nameLocation":"467:17:63","nodeType":"EnumValue","src":"467:17:63"}],"name":"RecoverError","nameLocation":"369:12:63","nodeType":"EnumDefinition","src":"364:126:63"},{"documentation":{"id":17759,"nodeType":"StructuredDocumentation","src":"496:63:63","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":17761,"name":"ECDSAInvalidSignature","nameLocation":"570:21:63","nodeType":"ErrorDefinition","parameters":{"id":17760,"nodeType":"ParameterList","parameters":[],"src":"591:2:63"},"src":"564:30:63"},{"documentation":{"id":17762,"nodeType":"StructuredDocumentation","src":"600:60:63","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":17766,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:63","nodeType":"ErrorDefinition","parameters":{"id":17765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17764,"mutability":"mutable","name":"length","nameLocation":"707:6:63","nodeType":"VariableDeclaration","scope":17766,"src":"699:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17763,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:63"},"src":"665:50:63"},{"documentation":{"id":17767,"nodeType":"StructuredDocumentation","src":"721:85:63","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":17771,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:63","nodeType":"ErrorDefinition","parameters":{"id":17770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17769,"mutability":"mutable","name":"s","nameLocation":"848:1:63","nodeType":"VariableDeclaration","scope":17771,"src":"840:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17768,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:63"},"src":"811:40:63"},{"body":{"id":17823,"nodeType":"Block","src":"2285:622:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17786,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"2299:9:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2309:6:63","memberName":"length","nodeType":"MemberAccess","src":"2299:16:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":17788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2319:2:63","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2299:22:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":17821,"nodeType":"Block","src":"2793:108:63","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":17810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2823:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2815:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17808,"name":"address","nodeType":"ElementaryTypeName","src":"2815:7:63","typeDescriptions":{}}},"id":17811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2815:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":17812,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"2827:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":17813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2840:22:63","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":17756,"src":"2827:35:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":17816,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"2872:9:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2882:6:63","memberName":"length","nodeType":"MemberAccess","src":"2872:16:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17815,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2864:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":17814,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2864:7:63","typeDescriptions":{}}},"id":17818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2864:25:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":17819,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2814:76:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":17785,"id":17820,"nodeType":"Return","src":"2807:83:63"}]},"id":17822,"nodeType":"IfStatement","src":"2295:606:63","trueBody":{"id":17807,"nodeType":"Block","src":"2323:464:63","statements":[{"assignments":[17791],"declarations":[{"constant":false,"id":17791,"mutability":"mutable","name":"r","nameLocation":"2345:1:63","nodeType":"VariableDeclaration","scope":17807,"src":"2337:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17790,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2337:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":17792,"nodeType":"VariableDeclarationStatement","src":"2337:9:63"},{"assignments":[17794],"declarations":[{"constant":false,"id":17794,"mutability":"mutable","name":"s","nameLocation":"2368:1:63","nodeType":"VariableDeclaration","scope":17807,"src":"2360:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17793,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":17795,"nodeType":"VariableDeclarationStatement","src":"2360:9:63"},{"assignments":[17797],"declarations":[{"constant":false,"id":17797,"mutability":"mutable","name":"v","nameLocation":"2389:1:63","nodeType":"VariableDeclaration","scope":17807,"src":"2383:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17796,"name":"uint8","nodeType":"ElementaryTypeName","src":"2383:5:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17798,"nodeType":"VariableDeclarationStatement","src":"2383:7:63"},{"AST":{"nativeSrc":"2560:171:63","nodeType":"YulBlock","src":"2560:171:63","statements":[{"nativeSrc":"2578:32:63","nodeType":"YulAssignment","src":"2578:32:63","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2593:9:63","nodeType":"YulIdentifier","src":"2593:9:63"},{"kind":"number","nativeSrc":"2604:4:63","nodeType":"YulLiteral","src":"2604:4:63","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2589:3:63","nodeType":"YulIdentifier","src":"2589:3:63"},"nativeSrc":"2589:20:63","nodeType":"YulFunctionCall","src":"2589:20:63"}],"functionName":{"name":"mload","nativeSrc":"2583:5:63","nodeType":"YulIdentifier","src":"2583:5:63"},"nativeSrc":"2583:27:63","nodeType":"YulFunctionCall","src":"2583:27:63"},"variableNames":[{"name":"r","nativeSrc":"2578:1:63","nodeType":"YulIdentifier","src":"2578:1:63"}]},{"nativeSrc":"2627:32:63","nodeType":"YulAssignment","src":"2627:32:63","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2642:9:63","nodeType":"YulIdentifier","src":"2642:9:63"},{"kind":"number","nativeSrc":"2653:4:63","nodeType":"YulLiteral","src":"2653:4:63","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2638:3:63","nodeType":"YulIdentifier","src":"2638:3:63"},"nativeSrc":"2638:20:63","nodeType":"YulFunctionCall","src":"2638:20:63"}],"functionName":{"name":"mload","nativeSrc":"2632:5:63","nodeType":"YulIdentifier","src":"2632:5:63"},"nativeSrc":"2632:27:63","nodeType":"YulFunctionCall","src":"2632:27:63"},"variableNames":[{"name":"s","nativeSrc":"2627:1:63","nodeType":"YulIdentifier","src":"2627:1:63"}]},{"nativeSrc":"2676:41:63","nodeType":"YulAssignment","src":"2676:41:63","value":{"arguments":[{"kind":"number","nativeSrc":"2686:1:63","nodeType":"YulLiteral","src":"2686:1:63","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2699:9:63","nodeType":"YulIdentifier","src":"2699:9:63"},{"kind":"number","nativeSrc":"2710:4:63","nodeType":"YulLiteral","src":"2710:4:63","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2695:3:63","nodeType":"YulIdentifier","src":"2695:3:63"},"nativeSrc":"2695:20:63","nodeType":"YulFunctionCall","src":"2695:20:63"}],"functionName":{"name":"mload","nativeSrc":"2689:5:63","nodeType":"YulIdentifier","src":"2689:5:63"},"nativeSrc":"2689:27:63","nodeType":"YulFunctionCall","src":"2689:27:63"}],"functionName":{"name":"byte","nativeSrc":"2681:4:63","nodeType":"YulIdentifier","src":"2681:4:63"},"nativeSrc":"2681:36:63","nodeType":"YulFunctionCall","src":"2681:36:63"},"variableNames":[{"name":"v","nativeSrc":"2676:1:63","nodeType":"YulIdentifier","src":"2676:1:63"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":17791,"isOffset":false,"isSlot":false,"src":"2578:1:63","valueSize":1},{"declaration":17794,"isOffset":false,"isSlot":false,"src":"2627:1:63","valueSize":1},{"declaration":17776,"isOffset":false,"isSlot":false,"src":"2593:9:63","valueSize":1},{"declaration":17776,"isOffset":false,"isSlot":false,"src":"2642:9:63","valueSize":1},{"declaration":17776,"isOffset":false,"isSlot":false,"src":"2699:9:63","valueSize":1},{"declaration":17797,"isOffset":false,"isSlot":false,"src":"2676:1:63","valueSize":1}],"flags":["memory-safe"],"id":17799,"nodeType":"InlineAssembly","src":"2535:196:63"},{"expression":{"arguments":[{"id":17801,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17774,"src":"2762:4:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17802,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17797,"src":"2768:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":17803,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17791,"src":"2771:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17804,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17794,"src":"2774:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17800,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[17824,17904,18012],"referencedDeclaration":18012,"src":"2751:10:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":17805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:25:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":17785,"id":17806,"nodeType":"Return","src":"2744:32:63"}]}}]},"documentation":{"id":17772,"nodeType":"StructuredDocumentation","src":"857:1267:63","text":" @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n return address(0) without also returning an error description. Errors are documented using an enum (error type)\n and a bytes32 providing additional information about the error.\n If no error is returned, then the address can be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n Documentation for signature generation:\n - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]"},"id":17824,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2138:10:63","nodeType":"FunctionDefinition","parameters":{"id":17777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17774,"mutability":"mutable","name":"hash","nameLocation":"2166:4:63","nodeType":"VariableDeclaration","scope":17824,"src":"2158:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17773,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2158:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17776,"mutability":"mutable","name":"signature","nameLocation":"2193:9:63","nodeType":"VariableDeclaration","scope":17824,"src":"2180:22:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17775,"name":"bytes","nodeType":"ElementaryTypeName","src":"2180:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2148:60:63"},"returnParameters":{"id":17785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17779,"mutability":"mutable","name":"recovered","nameLocation":"2240:9:63","nodeType":"VariableDeclaration","scope":17824,"src":"2232:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17778,"name":"address","nodeType":"ElementaryTypeName","src":"2232:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17782,"mutability":"mutable","name":"err","nameLocation":"2264:3:63","nodeType":"VariableDeclaration","scope":17824,"src":"2251:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":17781,"nodeType":"UserDefinedTypeName","pathNode":{"id":17780,"name":"RecoverError","nameLocations":["2251:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"2251:12:63"},"referencedDeclaration":17758,"src":"2251:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":17784,"mutability":"mutable","name":"errArg","nameLocation":"2277:6:63","nodeType":"VariableDeclaration","scope":17824,"src":"2269:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17783,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2269:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2231:53:63"},"scope":18098,"src":"2129:778:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17853,"nodeType":"Block","src":"3801:168:63","statements":[{"assignments":[17835,17838,17840],"declarations":[{"constant":false,"id":17835,"mutability":"mutable","name":"recovered","nameLocation":"3820:9:63","nodeType":"VariableDeclaration","scope":17853,"src":"3812:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17834,"name":"address","nodeType":"ElementaryTypeName","src":"3812:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17838,"mutability":"mutable","name":"error","nameLocation":"3844:5:63","nodeType":"VariableDeclaration","scope":17853,"src":"3831:18:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":17837,"nodeType":"UserDefinedTypeName","pathNode":{"id":17836,"name":"RecoverError","nameLocations":["3831:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"3831:12:63"},"referencedDeclaration":17758,"src":"3831:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":17840,"mutability":"mutable","name":"errorArg","nameLocation":"3859:8:63","nodeType":"VariableDeclaration","scope":17853,"src":"3851:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17839,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":17845,"initialValue":{"arguments":[{"id":17842,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17827,"src":"3882:4:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17843,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17829,"src":"3888:9:63","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":17841,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[17824,17904,18012],"referencedDeclaration":17824,"src":"3871:10:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":17844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3871:27:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"3811:87:63"},{"expression":{"arguments":[{"id":17847,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17838,"src":"3920:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"id":17848,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17840,"src":"3927:8:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17846,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"3908:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$17758_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":17849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3908:28:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17850,"nodeType":"ExpressionStatement","src":"3908:28:63"},{"expression":{"id":17851,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17835,"src":"3953:9:63","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17833,"id":17852,"nodeType":"Return","src":"3946:16:63"}]},"documentation":{"id":17825,"nodeType":"StructuredDocumentation","src":"2913:796:63","text":" @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it."},"id":17854,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3723:7:63","nodeType":"FunctionDefinition","parameters":{"id":17830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17827,"mutability":"mutable","name":"hash","nameLocation":"3739:4:63","nodeType":"VariableDeclaration","scope":17854,"src":"3731:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17826,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3731:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17829,"mutability":"mutable","name":"signature","nameLocation":"3758:9:63","nodeType":"VariableDeclaration","scope":17854,"src":"3745:22:63","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17828,"name":"bytes","nodeType":"ElementaryTypeName","src":"3745:5:63","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3730:38:63"},"returnParameters":{"id":17833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17832,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17854,"src":"3792:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17831,"name":"address","nodeType":"ElementaryTypeName","src":"3792:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3791:9:63"},"scope":18098,"src":"3714:255:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17903,"nodeType":"Block","src":"4348:342:63","statements":[{"id":17902,"nodeType":"UncheckedBlock","src":"4358:326:63","statements":[{"assignments":[17872],"declarations":[{"constant":false,"id":17872,"mutability":"mutable","name":"s","nameLocation":"4390:1:63","nodeType":"VariableDeclaration","scope":17902,"src":"4382:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17871,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4382:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":17879,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":17878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17873,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17861,"src":"4394:2:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":17876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4407:66:63","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"},"value":"0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"}],"id":17875,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4399:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":17874,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4399:7:63","typeDescriptions":{}}},"id":17877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4399:75:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4394:80:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4382:92:63"},{"assignments":[17881],"declarations":[{"constant":false,"id":17881,"mutability":"mutable","name":"v","nameLocation":"4591:1:63","nodeType":"VariableDeclaration","scope":17902,"src":"4585:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17880,"name":"uint8","nodeType":"ElementaryTypeName","src":"4585:5:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17894,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17886,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17861,"src":"4610:2:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17885,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4602:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17884,"name":"uint256","nodeType":"ElementaryTypeName","src":"4602:7:63","typeDescriptions":{}}},"id":17887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4602:11:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":17888,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:3:63","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4602:18:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17890,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4601:20:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":17891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4624:2:63","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4601:25:63","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17883,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4595:5:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":17882,"name":"uint8","nodeType":"ElementaryTypeName","src":"4595:5:63","typeDescriptions":{}}},"id":17893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:32:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4585:42:63"},{"expression":{"arguments":[{"id":17896,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17857,"src":"4659:4:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17897,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17881,"src":"4665:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":17898,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17859,"src":"4668:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17899,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17872,"src":"4671:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17895,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[17824,17904,18012],"referencedDeclaration":18012,"src":"4648:10:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":17900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4648:25:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":17870,"id":17901,"nodeType":"Return","src":"4641:32:63"}]}]},"documentation":{"id":17855,"nodeType":"StructuredDocumentation","src":"3975:205:63","text":" @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]"},"id":17904,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4194:10:63","nodeType":"FunctionDefinition","parameters":{"id":17862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17857,"mutability":"mutable","name":"hash","nameLocation":"4222:4:63","nodeType":"VariableDeclaration","scope":17904,"src":"4214:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17856,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4214:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17859,"mutability":"mutable","name":"r","nameLocation":"4244:1:63","nodeType":"VariableDeclaration","scope":17904,"src":"4236:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17858,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4236:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17861,"mutability":"mutable","name":"vs","nameLocation":"4263:2:63","nodeType":"VariableDeclaration","scope":17904,"src":"4255:10:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17860,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4204:67:63"},"returnParameters":{"id":17870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17864,"mutability":"mutable","name":"recovered","nameLocation":"4303:9:63","nodeType":"VariableDeclaration","scope":17904,"src":"4295:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17863,"name":"address","nodeType":"ElementaryTypeName","src":"4295:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17867,"mutability":"mutable","name":"err","nameLocation":"4327:3:63","nodeType":"VariableDeclaration","scope":17904,"src":"4314:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":17866,"nodeType":"UserDefinedTypeName","pathNode":{"id":17865,"name":"RecoverError","nameLocations":["4314:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"4314:12:63"},"referencedDeclaration":17758,"src":"4314:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":17869,"mutability":"mutable","name":"errArg","nameLocation":"4340:6:63","nodeType":"VariableDeclaration","scope":17904,"src":"4332:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17868,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4332:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4294:53:63"},"scope":18098,"src":"4185:505:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17936,"nodeType":"Block","src":"4903:164:63","statements":[{"assignments":[17917,17920,17922],"declarations":[{"constant":false,"id":17917,"mutability":"mutable","name":"recovered","nameLocation":"4922:9:63","nodeType":"VariableDeclaration","scope":17936,"src":"4914:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17916,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17920,"mutability":"mutable","name":"error","nameLocation":"4946:5:63","nodeType":"VariableDeclaration","scope":17936,"src":"4933:18:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":17919,"nodeType":"UserDefinedTypeName","pathNode":{"id":17918,"name":"RecoverError","nameLocations":["4933:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"4933:12:63"},"referencedDeclaration":17758,"src":"4933:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":17922,"mutability":"mutable","name":"errorArg","nameLocation":"4961:8:63","nodeType":"VariableDeclaration","scope":17936,"src":"4953:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17921,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4953:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":17928,"initialValue":{"arguments":[{"id":17924,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17907,"src":"4984:4:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17925,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17909,"src":"4990:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17926,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17911,"src":"4993:2:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17923,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[17824,17904,18012],"referencedDeclaration":17904,"src":"4973:10:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":17927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"4913:83:63"},{"expression":{"arguments":[{"id":17930,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17920,"src":"5018:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"id":17931,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17922,"src":"5025:8:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17929,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"5006:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$17758_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":17932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5006:28:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17933,"nodeType":"ExpressionStatement","src":"5006:28:63"},{"expression":{"id":17934,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17917,"src":"5051:9:63","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17915,"id":17935,"nodeType":"Return","src":"5044:16:63"}]},"documentation":{"id":17905,"nodeType":"StructuredDocumentation","src":"4696:116:63","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":17937,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4826:7:63","nodeType":"FunctionDefinition","parameters":{"id":17912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17907,"mutability":"mutable","name":"hash","nameLocation":"4842:4:63","nodeType":"VariableDeclaration","scope":17937,"src":"4834:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17906,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4834:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17909,"mutability":"mutable","name":"r","nameLocation":"4856:1:63","nodeType":"VariableDeclaration","scope":17937,"src":"4848:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17908,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4848:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17911,"mutability":"mutable","name":"vs","nameLocation":"4867:2:63","nodeType":"VariableDeclaration","scope":17937,"src":"4859:10:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17910,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4859:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4833:37:63"},"returnParameters":{"id":17915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17937,"src":"4894:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17913,"name":"address","nodeType":"ElementaryTypeName","src":"4894:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4893:9:63"},"scope":18098,"src":"4817:250:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18011,"nodeType":"Block","src":"5382:1372:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17958,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17946,"src":"6278:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17957,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6270:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17956,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:63","typeDescriptions":{}}},"id":17959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6270:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":17960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6283:66:63","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6270:79:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17972,"nodeType":"IfStatement","src":"6266:164:63","trueBody":{"id":17971,"nodeType":"Block","src":"6351:79:63","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":17964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6381:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17963,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6373:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17962,"name":"address","nodeType":"ElementaryTypeName","src":"6373:7:63","typeDescriptions":{}}},"id":17965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":17966,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"6385:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":17967,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6398:17:63","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":17757,"src":"6385:30:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"id":17968,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17946,"src":"6417:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":17969,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6372:47:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":17955,"id":17970,"nodeType":"Return","src":"6365:54:63"}]}},{"assignments":[17974],"declarations":[{"constant":false,"id":17974,"mutability":"mutable","name":"signer","nameLocation":"6532:6:63","nodeType":"VariableDeclaration","scope":18011,"src":"6524:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17973,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":17981,"initialValue":{"arguments":[{"id":17976,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17940,"src":"6551:4:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17977,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17942,"src":"6557:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":17978,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17944,"src":"6560:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":17979,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17946,"src":"6563:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":17975,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"6541:9:63","typeDescriptions":{"typeIdentifier":"t_function_ecrecover_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":17980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:24:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6524:41:63"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":17987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17982,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17974,"src":"6579:6:63","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":17985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6597:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17984,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6589:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17983,"name":"address","nodeType":"ElementaryTypeName","src":"6589:7:63","typeDescriptions":{}}},"id":17986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6579:20:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18001,"nodeType":"IfStatement","src":"6575:113:63","trueBody":{"id":18000,"nodeType":"Block","src":"6601:87:63","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":17990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6631:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6623:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17988,"name":"address","nodeType":"ElementaryTypeName","src":"6623:7:63","typeDescriptions":{}}},"id":17991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6623:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":17992,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"6635:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":17993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6648:16:63","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":17755,"src":"6635:29:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":17996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6674:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":17995,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6666:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":17994,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6666:7:63","typeDescriptions":{}}},"id":17997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6666:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":17998,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6622:55:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":17955,"id":17999,"nodeType":"Return","src":"6615:62:63"}]}},{"expression":{"components":[{"id":18002,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17974,"src":"6706:6:63","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":18003,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"6714:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":18004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6727:7:63","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":17754,"src":"6714:20:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":18007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6744:1:63","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":18006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6736:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":18005,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6736:7:63","typeDescriptions":{}}},"id":18008,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6736:10:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":18009,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6705:42:63","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":17955,"id":18010,"nodeType":"Return","src":"6698:49:63"}]},"documentation":{"id":17938,"nodeType":"StructuredDocumentation","src":"5073:125:63","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":18012,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5212:10:63","nodeType":"FunctionDefinition","parameters":{"id":17947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17940,"mutability":"mutable","name":"hash","nameLocation":"5240:4:63","nodeType":"VariableDeclaration","scope":18012,"src":"5232:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17939,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5232:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17942,"mutability":"mutable","name":"v","nameLocation":"5260:1:63","nodeType":"VariableDeclaration","scope":18012,"src":"5254:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17941,"name":"uint8","nodeType":"ElementaryTypeName","src":"5254:5:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":17944,"mutability":"mutable","name":"r","nameLocation":"5279:1:63","nodeType":"VariableDeclaration","scope":18012,"src":"5271:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17943,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5271:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":17946,"mutability":"mutable","name":"s","nameLocation":"5298:1:63","nodeType":"VariableDeclaration","scope":18012,"src":"5290:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17945,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5290:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5222:83:63"},"returnParameters":{"id":17955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17949,"mutability":"mutable","name":"recovered","nameLocation":"5337:9:63","nodeType":"VariableDeclaration","scope":18012,"src":"5329:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17948,"name":"address","nodeType":"ElementaryTypeName","src":"5329:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17952,"mutability":"mutable","name":"err","nameLocation":"5361:3:63","nodeType":"VariableDeclaration","scope":18012,"src":"5348:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":17951,"nodeType":"UserDefinedTypeName","pathNode":{"id":17950,"name":"RecoverError","nameLocations":["5348:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"5348:12:63"},"referencedDeclaration":17758,"src":"5348:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":17954,"mutability":"mutable","name":"errArg","nameLocation":"5374:6:63","nodeType":"VariableDeclaration","scope":18012,"src":"5366:14:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17953,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5366:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5328:53:63"},"scope":18098,"src":"5203:1551:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18047,"nodeType":"Block","src":"6981:166:63","statements":[{"assignments":[18027,18030,18032],"declarations":[{"constant":false,"id":18027,"mutability":"mutable","name":"recovered","nameLocation":"7000:9:63","nodeType":"VariableDeclaration","scope":18047,"src":"6992:17:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18026,"name":"address","nodeType":"ElementaryTypeName","src":"6992:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18030,"mutability":"mutable","name":"error","nameLocation":"7024:5:63","nodeType":"VariableDeclaration","scope":18047,"src":"7011:18:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":18029,"nodeType":"UserDefinedTypeName","pathNode":{"id":18028,"name":"RecoverError","nameLocations":["7011:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"7011:12:63"},"referencedDeclaration":17758,"src":"7011:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":18032,"mutability":"mutable","name":"errorArg","nameLocation":"7039:8:63","nodeType":"VariableDeclaration","scope":18047,"src":"7031:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18031,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7031:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":18039,"initialValue":{"arguments":[{"id":18034,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18015,"src":"7062:4:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":18035,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18017,"src":"7068:1:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18036,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18019,"src":"7071:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":18037,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18021,"src":"7074:1:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":18033,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[17824,17904,18012],"referencedDeclaration":18012,"src":"7051:10:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":18038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:25:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$17758_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6991:85:63"},{"expression":{"arguments":[{"id":18041,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18030,"src":"7098:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},{"id":18042,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18032,"src":"7105:8:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":18040,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"7086:11:63","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$17758_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":18043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7086:28:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18044,"nodeType":"ExpressionStatement","src":"7086:28:63"},{"expression":{"id":18045,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18027,"src":"7131:9:63","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":18025,"id":18046,"nodeType":"Return","src":"7124:16:63"}]},"documentation":{"id":18013,"nodeType":"StructuredDocumentation","src":"6760:122:63","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":18048,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6896:7:63","nodeType":"FunctionDefinition","parameters":{"id":18022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18015,"mutability":"mutable","name":"hash","nameLocation":"6912:4:63","nodeType":"VariableDeclaration","scope":18048,"src":"6904:12:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18014,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6904:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":18017,"mutability":"mutable","name":"v","nameLocation":"6924:1:63","nodeType":"VariableDeclaration","scope":18048,"src":"6918:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18016,"name":"uint8","nodeType":"ElementaryTypeName","src":"6918:5:63","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18019,"mutability":"mutable","name":"r","nameLocation":"6935:1:63","nodeType":"VariableDeclaration","scope":18048,"src":"6927:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18018,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6927:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":18021,"mutability":"mutable","name":"s","nameLocation":"6946:1:63","nodeType":"VariableDeclaration","scope":18048,"src":"6938:9:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18020,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6938:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:45:63"},"returnParameters":{"id":18025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18024,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18048,"src":"6972:7:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18023,"name":"address","nodeType":"ElementaryTypeName","src":"6972:7:63","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6971:9:63"},"scope":18098,"src":"6887:260:63","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18096,"nodeType":"Block","src":"7352:460:63","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"id":18060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18057,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18052,"src":"7366:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":18058,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"7375:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":18059,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7388:7:63","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":17754,"src":"7375:20:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"src":"7366:29:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"id":18066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18063,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18052,"src":"7462:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":18064,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"7471:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":18065,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7484:16:63","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":17755,"src":"7471:29:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"src":"7462:38:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"id":18074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18071,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18052,"src":"7567:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":18072,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"7576:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":18073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7589:22:63","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":17756,"src":"7576:35:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"src":"7567:44:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"id":18086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18083,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18052,"src":"7701:5:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":18084,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17758,"src":"7710:12:63","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$17758_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":18085,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7723:17:63","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":17757,"src":"7710:30:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"src":"7701:39:63","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18092,"nodeType":"IfStatement","src":"7697:109:63","trueBody":{"id":18091,"nodeType":"Block","src":"7742:64:63","statements":[{"errorCall":{"arguments":[{"id":18088,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18054,"src":"7786:8:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":18087,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17771,"src":"7763:22:63","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":18089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:32:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18090,"nodeType":"RevertStatement","src":"7756:39:63"}]}},"id":18093,"nodeType":"IfStatement","src":"7563:243:63","trueBody":{"id":18082,"nodeType":"Block","src":"7613:78:63","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":18078,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18054,"src":"7670:8:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":18077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7662:7:63","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":18076,"name":"uint256","nodeType":"ElementaryTypeName","src":"7662:7:63","typeDescriptions":{}}},"id":18079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7662:17:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18075,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17766,"src":"7634:27:63","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7634:46:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18081,"nodeType":"RevertStatement","src":"7627:53:63"}]}},"id":18094,"nodeType":"IfStatement","src":"7458:348:63","trueBody":{"id":18070,"nodeType":"Block","src":"7502:55:63","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":18067,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17761,"src":"7523:21:63","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":18068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:23:63","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18069,"nodeType":"RevertStatement","src":"7516:30:63"}]}},"id":18095,"nodeType":"IfStatement","src":"7362:444:63","trueBody":{"id":18062,"nodeType":"Block","src":"7397:55:63","statements":[{"functionReturnParameters":18056,"id":18061,"nodeType":"Return","src":"7411:7:63"}]}}]},"documentation":{"id":18049,"nodeType":"StructuredDocumentation","src":"7153:122:63","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":18097,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"7289:11:63","nodeType":"FunctionDefinition","parameters":{"id":18055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18052,"mutability":"mutable","name":"error","nameLocation":"7314:5:63","nodeType":"VariableDeclaration","scope":18097,"src":"7301:18:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":18051,"nodeType":"UserDefinedTypeName","pathNode":{"id":18050,"name":"RecoverError","nameLocations":["7301:12:63"],"nodeType":"IdentifierPath","referencedDeclaration":17758,"src":"7301:12:63"},"referencedDeclaration":17758,"src":"7301:12:63","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$17758","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":18054,"mutability":"mutable","name":"errorArg","nameLocation":"7329:8:63","nodeType":"VariableDeclaration","scope":18097,"src":"7321:16:63","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18053,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7321:7:63","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7300:38:63"},"returnParameters":{"id":18056,"nodeType":"ParameterList","parameters":[],"src":"7352:0:63"},"scope":18098,"src":"7280:532:63","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":18099,"src":"344:7470:63","usedErrors":[17761,17766,17771],"usedEvents":[]}],"src":"112:7703:63"},"id":63},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[18172],"Strings":[17750]},"id":18173,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18100,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:64"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":18102,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18173,"sourceUnit":17751,"src":"149:39:64","symbolAliases":[{"foreign":{"id":18101,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17750,"src":"157:7:64","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":18103,"nodeType":"StructuredDocumentation","src":"190:330:64","text":" @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n The library provides methods for generating a hash of a message that conforms to the\n https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n specifications."},"fullyImplemented":true,"id":18172,"linearizedBaseContracts":[18172],"name":"MessageHashUtils","nameLocation":"529:16:64","nodeType":"ContractDefinition","nodes":[{"body":{"id":18112,"nodeType":"Block","src":"1314:341:64","statements":[{"AST":{"nativeSrc":"1349:300:64","nodeType":"YulBlock","src":"1349:300:64","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1370:4:64","nodeType":"YulLiteral","src":"1370:4:64","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nativeSrc":"1376:34:64","nodeType":"YulLiteral","src":"1376:34:64","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nativeSrc":"1363:6:64","nodeType":"YulIdentifier","src":"1363:6:64"},"nativeSrc":"1363:48:64","nodeType":"YulFunctionCall","src":"1363:48:64"},"nativeSrc":"1363:48:64","nodeType":"YulExpressionStatement","src":"1363:48:64"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1472:4:64","nodeType":"YulLiteral","src":"1472:4:64","type":"","value":"0x1c"},{"name":"messageHash","nativeSrc":"1478:11:64","nodeType":"YulIdentifier","src":"1478:11:64"}],"functionName":{"name":"mstore","nativeSrc":"1465:6:64","nodeType":"YulIdentifier","src":"1465:6:64"},"nativeSrc":"1465:25:64","nodeType":"YulFunctionCall","src":"1465:25:64"},"nativeSrc":"1465:25:64","nodeType":"YulExpressionStatement","src":"1465:25:64"},{"nativeSrc":"1544:31:64","nodeType":"YulAssignment","src":"1544:31:64","value":{"arguments":[{"kind":"number","nativeSrc":"1564:4:64","nodeType":"YulLiteral","src":"1564:4:64","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1570:4:64","nodeType":"YulLiteral","src":"1570:4:64","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nativeSrc":"1554:9:64","nodeType":"YulIdentifier","src":"1554:9:64"},"nativeSrc":"1554:21:64","nodeType":"YulFunctionCall","src":"1554:21:64"},"variableNames":[{"name":"digest","nativeSrc":"1544:6:64","nodeType":"YulIdentifier","src":"1544:6:64"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":18109,"isOffset":false,"isSlot":false,"src":"1544:6:64","valueSize":1},{"declaration":18106,"isOffset":false,"isSlot":false,"src":"1478:11:64","valueSize":1}],"flags":["memory-safe"],"id":18111,"nodeType":"InlineAssembly","src":"1324:325:64"}]},"documentation":{"id":18104,"nodeType":"StructuredDocumentation","src":"552:665:64","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing a bytes32 `messageHash` with\n `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n keccak256, although any bytes32 value can be safely used because the final digest will\n be re-hashed.\n See {ECDSA-recover}."},"id":18113,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1231:22:64","nodeType":"FunctionDefinition","parameters":{"id":18107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18106,"mutability":"mutable","name":"messageHash","nameLocation":"1262:11:64","nodeType":"VariableDeclaration","scope":18113,"src":"1254:19:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18105,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1254:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1253:21:64"},"returnParameters":{"id":18110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18109,"mutability":"mutable","name":"digest","nameLocation":"1306:6:64","nodeType":"VariableDeclaration","scope":18113,"src":"1298:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18108,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1298:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1297:16:64"},"scope":18172,"src":"1222:433:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18138,"nodeType":"Block","src":"2207:143:64","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":18125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2259:32:64","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":18130,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18116,"src":"2316:7:64","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2324:6:64","memberName":"length","nodeType":"MemberAccess","src":"2316:14:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18128,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17750,"src":"2299:7:64","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$17750_$","typeString":"type(library Strings)"}},"id":18129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:8:64","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":16628,"src":"2299:16:64","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":18132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2299:32:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":18127,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2293:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":18126,"name":"bytes","nodeType":"ElementaryTypeName","src":"2293:5:64","typeDescriptions":{}}},"id":18133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2293:39:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18134,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18116,"src":"2334:7:64","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":18123,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2246:5:64","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":18122,"name":"bytes","nodeType":"ElementaryTypeName","src":"2246:5:64","typeDescriptions":{}}},"id":18124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2252:6:64","memberName":"concat","nodeType":"MemberAccess","src":"2246:12:64","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":18135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2246:96:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18121,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2236:9:64","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":18136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2236:107:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":18120,"id":18137,"nodeType":"Return","src":"2217:126:64"}]},"documentation":{"id":18114,"nodeType":"StructuredDocumentation","src":"1661:455:64","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing an arbitrary `message` with\n `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":18139,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2130:22:64","nodeType":"FunctionDefinition","parameters":{"id":18117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18116,"mutability":"mutable","name":"message","nameLocation":"2166:7:64","nodeType":"VariableDeclaration","scope":18139,"src":"2153:20:64","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18115,"name":"bytes","nodeType":"ElementaryTypeName","src":"2153:5:64","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2152:22:64"},"returnParameters":{"id":18120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18119,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18139,"src":"2198:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18118,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2198:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2197:9:64"},"scope":18172,"src":"2121:229:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18158,"nodeType":"Block","src":"2804:80:64","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":18152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2848:10:64","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":18153,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18142,"src":"2860:9:64","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18154,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18144,"src":"2871:4:64","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":18150,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2831:3:64","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":18151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:12:64","memberName":"encodePacked","nodeType":"MemberAccess","src":"2831:16:64","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":18155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:45:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18149,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2821:9:64","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":18156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2821:56:64","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":18148,"id":18157,"nodeType":"Return","src":"2814:63:64"}]},"documentation":{"id":18140,"nodeType":"StructuredDocumentation","src":"2356:332:64","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x00` (data with intended validator).\n The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n `validator` address. Then hashing the result.\n See {ECDSA-recover}."},"id":18159,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2702:31:64","nodeType":"FunctionDefinition","parameters":{"id":18145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18142,"mutability":"mutable","name":"validator","nameLocation":"2742:9:64","nodeType":"VariableDeclaration","scope":18159,"src":"2734:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18141,"name":"address","nodeType":"ElementaryTypeName","src":"2734:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18144,"mutability":"mutable","name":"data","nameLocation":"2766:4:64","nodeType":"VariableDeclaration","scope":18159,"src":"2753:17:64","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18143,"name":"bytes","nodeType":"ElementaryTypeName","src":"2753:5:64","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2733:38:64"},"returnParameters":{"id":18148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18147,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18159,"src":"2795:7:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18146,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2795:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2794:9:64"},"scope":18172,"src":"2693:191:64","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18170,"nodeType":"Block","src":"3435:265:64","statements":[{"AST":{"nativeSrc":"3470:224:64","nodeType":"YulBlock","src":"3470:224:64","statements":[{"nativeSrc":"3484:22:64","nodeType":"YulVariableDeclaration","src":"3484:22:64","value":{"arguments":[{"kind":"number","nativeSrc":"3501:4:64","nodeType":"YulLiteral","src":"3501:4:64","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3495:5:64","nodeType":"YulIdentifier","src":"3495:5:64"},"nativeSrc":"3495:11:64","nodeType":"YulFunctionCall","src":"3495:11:64"},"variables":[{"name":"ptr","nativeSrc":"3488:3:64","nodeType":"YulTypedName","src":"3488:3:64","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"3526:3:64","nodeType":"YulIdentifier","src":"3526:3:64"},{"hexValue":"1901","kind":"string","nativeSrc":"3531:10:64","nodeType":"YulLiteral","src":"3531:10:64","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nativeSrc":"3519:6:64","nodeType":"YulIdentifier","src":"3519:6:64"},"nativeSrc":"3519:23:64","nodeType":"YulFunctionCall","src":"3519:23:64"},"nativeSrc":"3519:23:64","nodeType":"YulExpressionStatement","src":"3519:23:64"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"3566:3:64","nodeType":"YulIdentifier","src":"3566:3:64"},{"kind":"number","nativeSrc":"3571:4:64","nodeType":"YulLiteral","src":"3571:4:64","type":"","value":"0x02"}],"functionName":{"name":"add","nativeSrc":"3562:3:64","nodeType":"YulIdentifier","src":"3562:3:64"},"nativeSrc":"3562:14:64","nodeType":"YulFunctionCall","src":"3562:14:64"},{"name":"domainSeparator","nativeSrc":"3578:15:64","nodeType":"YulIdentifier","src":"3578:15:64"}],"functionName":{"name":"mstore","nativeSrc":"3555:6:64","nodeType":"YulIdentifier","src":"3555:6:64"},"nativeSrc":"3555:39:64","nodeType":"YulFunctionCall","src":"3555:39:64"},"nativeSrc":"3555:39:64","nodeType":"YulExpressionStatement","src":"3555:39:64"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"3618:3:64","nodeType":"YulIdentifier","src":"3618:3:64"},{"kind":"number","nativeSrc":"3623:4:64","nodeType":"YulLiteral","src":"3623:4:64","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3614:3:64","nodeType":"YulIdentifier","src":"3614:3:64"},"nativeSrc":"3614:14:64","nodeType":"YulFunctionCall","src":"3614:14:64"},{"name":"structHash","nativeSrc":"3630:10:64","nodeType":"YulIdentifier","src":"3630:10:64"}],"functionName":{"name":"mstore","nativeSrc":"3607:6:64","nodeType":"YulIdentifier","src":"3607:6:64"},"nativeSrc":"3607:34:64","nodeType":"YulFunctionCall","src":"3607:34:64"},"nativeSrc":"3607:34:64","nodeType":"YulExpressionStatement","src":"3607:34:64"},{"nativeSrc":"3654:30:64","nodeType":"YulAssignment","src":"3654:30:64","value":{"arguments":[{"name":"ptr","nativeSrc":"3674:3:64","nodeType":"YulIdentifier","src":"3674:3:64"},{"kind":"number","nativeSrc":"3679:4:64","nodeType":"YulLiteral","src":"3679:4:64","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nativeSrc":"3664:9:64","nodeType":"YulIdentifier","src":"3664:9:64"},"nativeSrc":"3664:20:64","nodeType":"YulFunctionCall","src":"3664:20:64"},"variableNames":[{"name":"digest","nativeSrc":"3654:6:64","nodeType":"YulIdentifier","src":"3654:6:64"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":18167,"isOffset":false,"isSlot":false,"src":"3654:6:64","valueSize":1},{"declaration":18162,"isOffset":false,"isSlot":false,"src":"3578:15:64","valueSize":1},{"declaration":18164,"isOffset":false,"isSlot":false,"src":"3630:10:64","valueSize":1}],"flags":["memory-safe"],"id":18169,"nodeType":"InlineAssembly","src":"3445:249:64"}]},"documentation":{"id":18160,"nodeType":"StructuredDocumentation","src":"2890:431:64","text":" @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n See {ECDSA-recover}."},"id":18171,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3335:15:64","nodeType":"FunctionDefinition","parameters":{"id":18165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18162,"mutability":"mutable","name":"domainSeparator","nameLocation":"3359:15:64","nodeType":"VariableDeclaration","scope":18171,"src":"3351:23:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18161,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3351:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":18164,"mutability":"mutable","name":"structHash","nameLocation":"3384:10:64","nodeType":"VariableDeclaration","scope":18171,"src":"3376:18:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18163,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3376:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3350:45:64"},"returnParameters":{"id":18168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18167,"mutability":"mutable","name":"digest","nameLocation":"3427:6:64","nodeType":"VariableDeclaration","scope":18171,"src":"3419:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3419:7:64","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3418:16:64"},"scope":18172,"src":"3326:374:64","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":18173,"src":"521:3181:64","usedErrors":[],"usedEvents":[]}],"src":"123:3580:64"},"id":64},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[18196],"IERC165":[18208]},"id":18197,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18174,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:65"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":18176,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18197,"sourceUnit":18209,"src":"140:38:65","symbolAliases":[{"foreign":{"id":18175,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18208,"src":"148:7:65","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":18178,"name":"IERC165","nameLocations":["688:7:65"],"nodeType":"IdentifierPath","referencedDeclaration":18208,"src":"688:7:65"},"id":18179,"nodeType":"InheritanceSpecifier","src":"688:7:65"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":18177,"nodeType":"StructuredDocumentation","src":"180:479:65","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```"},"fullyImplemented":true,"id":18196,"linearizedBaseContracts":[18196,18208],"name":"ERC165","nameLocation":"678:6:65","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[18207],"body":{"id":18194,"nodeType":"Block","src":"845:64:65","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":18192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18187,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18182,"src":"862:11:65","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":18189,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18208,"src":"882:7:65","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$18208_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$18208_$","typeString":"type(contract IERC165)"}],"id":18188,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"877:4:65","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"877:13:65","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$18208","typeString":"type(contract IERC165)"}},"id":18191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"891:11:65","memberName":"interfaceId","nodeType":"MemberAccess","src":"877:25:65","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"862:40:65","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":18186,"id":18193,"nodeType":"Return","src":"855:47:65"}]},"documentation":{"id":18180,"nodeType":"StructuredDocumentation","src":"702:56:65","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":18195,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"772:17:65","nodeType":"FunctionDefinition","parameters":{"id":18183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18182,"mutability":"mutable","name":"interfaceId","nameLocation":"797:11:65","nodeType":"VariableDeclaration","scope":18195,"src":"790:18:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":18181,"name":"bytes4","nodeType":"ElementaryTypeName","src":"790:6:65","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"789:20:65"},"returnParameters":{"id":18186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18195,"src":"839:4:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18184,"name":"bool","nodeType":"ElementaryTypeName","src":"839:4:65","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"838:6:65"},"scope":18196,"src":"763:146:65","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":18197,"src":"660:251:65","usedErrors":[],"usedEvents":[]}],"src":"114:798:65"},"id":65},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[18208]},"id":18209,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18198,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:66"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":18199,"nodeType":"StructuredDocumentation","src":"141:280:66","text":" @dev Interface of the ERC-165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[ERC].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."},"fullyImplemented":false,"id":18208,"linearizedBaseContracts":[18208],"name":"IERC165","nameLocation":"432:7:66","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":18200,"nodeType":"StructuredDocumentation","src":"446:340:66","text":" @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."},"functionSelector":"01ffc9a7","id":18207,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"800:17:66","nodeType":"FunctionDefinition","parameters":{"id":18203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18202,"mutability":"mutable","name":"interfaceId","nameLocation":"825:11:66","nodeType":"VariableDeclaration","scope":18207,"src":"818:18:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":18201,"name":"bytes4","nodeType":"ElementaryTypeName","src":"818:6:66","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"817:20:66"},"returnParameters":{"id":18206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18205,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18207,"src":"861:4:66","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18204,"name":"bool","nodeType":"ElementaryTypeName","src":"861:4:66","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"860:6:66"},"scope":18208,"src":"791:76:66","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":18209,"src":"422:447:66","usedErrors":[],"usedEvents":[]}],"src":"115:755:66"},"id":66},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[19814],"Panic":[16357],"SafeCast":[21579]},"id":19815,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18210,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:67"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":18212,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19815,"sourceUnit":16358,"src":"129:35:67","symbolAliases":[{"foreign":{"id":18211,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"137:5:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":18214,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19815,"sourceUnit":21580,"src":"165:40:67","symbolAliases":[{"foreign":{"id":18213,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"173:8:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":18215,"nodeType":"StructuredDocumentation","src":"207:73:67","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":19814,"linearizedBaseContracts":[19814],"name":"Math","nameLocation":"289:4:67","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":18220,"members":[{"id":18216,"name":"Floor","nameLocation":"324:5:67","nodeType":"EnumValue","src":"324:5:67"},{"id":18217,"name":"Ceil","nameLocation":"367:4:67","nodeType":"EnumValue","src":"367:4:67"},{"id":18218,"name":"Trunc","nameLocation":"409:5:67","nodeType":"EnumValue","src":"409:5:67"},{"id":18219,"name":"Expand","nameLocation":"439:6:67","nodeType":"EnumValue","src":"439:6:67"}],"name":"Rounding","nameLocation":"305:8:67","nodeType":"EnumDefinition","src":"300:169:67"},{"body":{"id":18251,"nodeType":"Block","src":"677:140:67","statements":[{"id":18250,"nodeType":"UncheckedBlock","src":"687:124:67","statements":[{"assignments":[18233],"declarations":[{"constant":false,"id":18233,"mutability":"mutable","name":"c","nameLocation":"719:1:67","nodeType":"VariableDeclaration","scope":18250,"src":"711:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18232,"name":"uint256","nodeType":"ElementaryTypeName","src":"711:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18237,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18234,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18223,"src":"723:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":18235,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18225,"src":"727:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"723:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"711:17:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18238,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18233,"src":"746:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":18239,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18223,"src":"750:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"746:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18245,"nodeType":"IfStatement","src":"742:28:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"761:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":18242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"768:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18243,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"760:10:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18231,"id":18244,"nodeType":"Return","src":"753:17:67"}},{"expression":{"components":[{"hexValue":"74727565","id":18246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"792:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":18247,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18233,"src":"798:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18248,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"791:9:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":18231,"id":18249,"nodeType":"Return","src":"784:16:67"}]}]},"documentation":{"id":18221,"nodeType":"StructuredDocumentation","src":"475:106:67","text":" @dev Returns the addition of two unsigned integers, with an success flag (no overflow)."},"id":18252,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"595:6:67","nodeType":"FunctionDefinition","parameters":{"id":18226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18223,"mutability":"mutable","name":"a","nameLocation":"610:1:67","nodeType":"VariableDeclaration","scope":18252,"src":"602:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18222,"name":"uint256","nodeType":"ElementaryTypeName","src":"602:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18225,"mutability":"mutable","name":"b","nameLocation":"621:1:67","nodeType":"VariableDeclaration","scope":18252,"src":"613:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18224,"name":"uint256","nodeType":"ElementaryTypeName","src":"613:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"601:22:67"},"returnParameters":{"id":18231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18228,"mutability":"mutable","name":"success","nameLocation":"652:7:67","nodeType":"VariableDeclaration","scope":18252,"src":"647:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18227,"name":"bool","nodeType":"ElementaryTypeName","src":"647:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18230,"mutability":"mutable","name":"result","nameLocation":"669:6:67","nodeType":"VariableDeclaration","scope":18252,"src":"661:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18229,"name":"uint256","nodeType":"ElementaryTypeName","src":"661:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"646:30:67"},"scope":19814,"src":"586:231:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18279,"nodeType":"Block","src":"1028:113:67","statements":[{"id":18278,"nodeType":"UncheckedBlock","src":"1038:97:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18264,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18257,"src":"1066:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18265,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18255,"src":"1070:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1066:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18271,"nodeType":"IfStatement","src":"1062:28:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1081:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":18268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1088:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18269,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1080:10:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18263,"id":18270,"nodeType":"Return","src":"1073:17:67"}},{"expression":{"components":[{"hexValue":"74727565","id":18272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1112:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18273,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18255,"src":"1118:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18274,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18257,"src":"1122:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1118:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18276,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1111:13:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":18263,"id":18277,"nodeType":"Return","src":"1104:20:67"}]}]},"documentation":{"id":18253,"nodeType":"StructuredDocumentation","src":"823:109:67","text":" @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow)."},"id":18280,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"946:6:67","nodeType":"FunctionDefinition","parameters":{"id":18258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18255,"mutability":"mutable","name":"a","nameLocation":"961:1:67","nodeType":"VariableDeclaration","scope":18280,"src":"953:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18254,"name":"uint256","nodeType":"ElementaryTypeName","src":"953:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18257,"mutability":"mutable","name":"b","nameLocation":"972:1:67","nodeType":"VariableDeclaration","scope":18280,"src":"964:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18256,"name":"uint256","nodeType":"ElementaryTypeName","src":"964:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"952:22:67"},"returnParameters":{"id":18263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18260,"mutability":"mutable","name":"success","nameLocation":"1003:7:67","nodeType":"VariableDeclaration","scope":18280,"src":"998:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18259,"name":"bool","nodeType":"ElementaryTypeName","src":"998:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18262,"mutability":"mutable","name":"result","nameLocation":"1020:6:67","nodeType":"VariableDeclaration","scope":18280,"src":"1012:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18261,"name":"uint256","nodeType":"ElementaryTypeName","src":"1012:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"997:30:67"},"scope":19814,"src":"937:204:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18321,"nodeType":"Block","src":"1355:417:67","statements":[{"id":18320,"nodeType":"UncheckedBlock","src":"1365:401:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18292,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18283,"src":"1623:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1628:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1623:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18299,"nodeType":"IfStatement","src":"1619:28:67","trueBody":{"expression":{"components":[{"hexValue":"74727565","id":18295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1639:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":18296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1645:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18297,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1638:9:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18291,"id":18298,"nodeType":"Return","src":"1631:16:67"}},{"assignments":[18301],"declarations":[{"constant":false,"id":18301,"mutability":"mutable","name":"c","nameLocation":"1669:1:67","nodeType":"VariableDeclaration","scope":18320,"src":"1661:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18300,"name":"uint256","nodeType":"ElementaryTypeName","src":"1661:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18305,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18302,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18283,"src":"1673:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18303,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18285,"src":"1677:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1673:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1661:17:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18306,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18301,"src":"1696:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18307,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18283,"src":"1700:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18309,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18285,"src":"1705:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1696:10:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18315,"nodeType":"IfStatement","src":"1692:33:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1716:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":18312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1723:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18313,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1715:10:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18291,"id":18314,"nodeType":"Return","src":"1708:17:67"}},{"expression":{"components":[{"hexValue":"74727565","id":18316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1747:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":18317,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18301,"src":"1753:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18318,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1746:9:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":18291,"id":18319,"nodeType":"Return","src":"1739:16:67"}]}]},"documentation":{"id":18281,"nodeType":"StructuredDocumentation","src":"1147:112:67","text":" @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow)."},"id":18322,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"1273:6:67","nodeType":"FunctionDefinition","parameters":{"id":18286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18283,"mutability":"mutable","name":"a","nameLocation":"1288:1:67","nodeType":"VariableDeclaration","scope":18322,"src":"1280:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18282,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18285,"mutability":"mutable","name":"b","nameLocation":"1299:1:67","nodeType":"VariableDeclaration","scope":18322,"src":"1291:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18284,"name":"uint256","nodeType":"ElementaryTypeName","src":"1291:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1279:22:67"},"returnParameters":{"id":18291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18288,"mutability":"mutable","name":"success","nameLocation":"1330:7:67","nodeType":"VariableDeclaration","scope":18322,"src":"1325:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18287,"name":"bool","nodeType":"ElementaryTypeName","src":"1325:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18290,"mutability":"mutable","name":"result","nameLocation":"1347:6:67","nodeType":"VariableDeclaration","scope":18322,"src":"1339:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18289,"name":"uint256","nodeType":"ElementaryTypeName","src":"1339:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1324:30:67"},"scope":19814,"src":"1264:508:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18349,"nodeType":"Block","src":"1987:114:67","statements":[{"id":18348,"nodeType":"UncheckedBlock","src":"1997:98:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18334,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18327,"src":"2025:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2030:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2025:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18341,"nodeType":"IfStatement","src":"2021:29:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2041:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":18338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2048:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18339,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2040:10:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18333,"id":18340,"nodeType":"Return","src":"2033:17:67"}},{"expression":{"components":[{"hexValue":"74727565","id":18342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2072:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18343,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18325,"src":"2078:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18344,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18327,"src":"2082:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2078:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18346,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2071:13:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":18333,"id":18347,"nodeType":"Return","src":"2064:20:67"}]}]},"documentation":{"id":18323,"nodeType":"StructuredDocumentation","src":"1778:113:67","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":18350,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"1905:6:67","nodeType":"FunctionDefinition","parameters":{"id":18328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18325,"mutability":"mutable","name":"a","nameLocation":"1920:1:67","nodeType":"VariableDeclaration","scope":18350,"src":"1912:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18324,"name":"uint256","nodeType":"ElementaryTypeName","src":"1912:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18327,"mutability":"mutable","name":"b","nameLocation":"1931:1:67","nodeType":"VariableDeclaration","scope":18350,"src":"1923:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18326,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1911:22:67"},"returnParameters":{"id":18333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18330,"mutability":"mutable","name":"success","nameLocation":"1962:7:67","nodeType":"VariableDeclaration","scope":18350,"src":"1957:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18329,"name":"bool","nodeType":"ElementaryTypeName","src":"1957:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18332,"mutability":"mutable","name":"result","nameLocation":"1979:6:67","nodeType":"VariableDeclaration","scope":18350,"src":"1971:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18331,"name":"uint256","nodeType":"ElementaryTypeName","src":"1971:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1956:30:67"},"scope":19814,"src":"1896:205:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18377,"nodeType":"Block","src":"2326:114:67","statements":[{"id":18376,"nodeType":"UncheckedBlock","src":"2336:98:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18362,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18355,"src":"2364:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2369:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2364:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18369,"nodeType":"IfStatement","src":"2360:29:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2380:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":18366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2387:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18367,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2379:10:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18361,"id":18368,"nodeType":"Return","src":"2372:17:67"}},{"expression":{"components":[{"hexValue":"74727565","id":18370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2411:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18371,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18353,"src":"2417:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":18372,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18355,"src":"2421:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2417:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18374,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2410:13:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":18361,"id":18375,"nodeType":"Return","src":"2403:20:67"}]}]},"documentation":{"id":18351,"nodeType":"StructuredDocumentation","src":"2107:123:67","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":18378,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"2244:6:67","nodeType":"FunctionDefinition","parameters":{"id":18356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18353,"mutability":"mutable","name":"a","nameLocation":"2259:1:67","nodeType":"VariableDeclaration","scope":18378,"src":"2251:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18352,"name":"uint256","nodeType":"ElementaryTypeName","src":"2251:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18355,"mutability":"mutable","name":"b","nameLocation":"2270:1:67","nodeType":"VariableDeclaration","scope":18378,"src":"2262:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18354,"name":"uint256","nodeType":"ElementaryTypeName","src":"2262:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2250:22:67"},"returnParameters":{"id":18361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18358,"mutability":"mutable","name":"success","nameLocation":"2301:7:67","nodeType":"VariableDeclaration","scope":18378,"src":"2296:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18357,"name":"bool","nodeType":"ElementaryTypeName","src":"2296:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18360,"mutability":"mutable","name":"result","nameLocation":"2318:6:67","nodeType":"VariableDeclaration","scope":18378,"src":"2310:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18359,"name":"uint256","nodeType":"ElementaryTypeName","src":"2310:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2295:30:67"},"scope":19814,"src":"2235:205:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18404,"nodeType":"Block","src":"2912:207:67","statements":[{"id":18403,"nodeType":"UncheckedBlock","src":"2922:191:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18390,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18385,"src":"3060:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18391,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18383,"src":"3066:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":18392,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18385,"src":"3070:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3066:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18394,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3065:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":18397,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18381,"src":"3091:9:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":18395,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"3075:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":18396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3084:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"3075:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":18398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3075:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3065:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18400,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3064:38:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3060:42:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18389,"id":18402,"nodeType":"Return","src":"3053:49:67"}]}]},"documentation":{"id":18379,"nodeType":"StructuredDocumentation","src":"2446:374:67","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":18405,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"2834:7:67","nodeType":"FunctionDefinition","parameters":{"id":18386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18381,"mutability":"mutable","name":"condition","nameLocation":"2847:9:67","nodeType":"VariableDeclaration","scope":18405,"src":"2842:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18380,"name":"bool","nodeType":"ElementaryTypeName","src":"2842:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18383,"mutability":"mutable","name":"a","nameLocation":"2866:1:67","nodeType":"VariableDeclaration","scope":18405,"src":"2858:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18382,"name":"uint256","nodeType":"ElementaryTypeName","src":"2858:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18385,"mutability":"mutable","name":"b","nameLocation":"2877:1:67","nodeType":"VariableDeclaration","scope":18405,"src":"2869:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18384,"name":"uint256","nodeType":"ElementaryTypeName","src":"2869:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:38:67"},"returnParameters":{"id":18389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18405,"src":"2903:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18387,"name":"uint256","nodeType":"ElementaryTypeName","src":"2903:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2902:9:67"},"scope":19814,"src":"2825:294:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18423,"nodeType":"Block","src":"3256:44:67","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18416,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18408,"src":"3281:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18417,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18410,"src":"3285:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3281:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":18419,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18408,"src":"3288:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18420,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18410,"src":"3291:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18415,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18405,"src":"3273:7:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":18421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3273:20:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18414,"id":18422,"nodeType":"Return","src":"3266:27:67"}]},"documentation":{"id":18406,"nodeType":"StructuredDocumentation","src":"3125:59:67","text":" @dev Returns the largest of two numbers."},"id":18424,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"3198:3:67","nodeType":"FunctionDefinition","parameters":{"id":18411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18408,"mutability":"mutable","name":"a","nameLocation":"3210:1:67","nodeType":"VariableDeclaration","scope":18424,"src":"3202:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18407,"name":"uint256","nodeType":"ElementaryTypeName","src":"3202:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18410,"mutability":"mutable","name":"b","nameLocation":"3221:1:67","nodeType":"VariableDeclaration","scope":18424,"src":"3213:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18409,"name":"uint256","nodeType":"ElementaryTypeName","src":"3213:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3201:22:67"},"returnParameters":{"id":18414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18413,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18424,"src":"3247:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18412,"name":"uint256","nodeType":"ElementaryTypeName","src":"3247:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3246:9:67"},"scope":19814,"src":"3189:111:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18442,"nodeType":"Block","src":"3438:44:67","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18435,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18427,"src":"3463:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":18436,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18429,"src":"3467:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3463:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":18438,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18427,"src":"3470:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18439,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18429,"src":"3473:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18434,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18405,"src":"3455:7:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":18440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3455:20:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18433,"id":18441,"nodeType":"Return","src":"3448:27:67"}]},"documentation":{"id":18425,"nodeType":"StructuredDocumentation","src":"3306:60:67","text":" @dev Returns the smallest of two numbers."},"id":18443,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"3380:3:67","nodeType":"FunctionDefinition","parameters":{"id":18430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18427,"mutability":"mutable","name":"a","nameLocation":"3392:1:67","nodeType":"VariableDeclaration","scope":18443,"src":"3384:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18426,"name":"uint256","nodeType":"ElementaryTypeName","src":"3384:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18429,"mutability":"mutable","name":"b","nameLocation":"3403:1:67","nodeType":"VariableDeclaration","scope":18443,"src":"3395:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18428,"name":"uint256","nodeType":"ElementaryTypeName","src":"3395:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3383:22:67"},"returnParameters":{"id":18433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18432,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18443,"src":"3429:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18431,"name":"uint256","nodeType":"ElementaryTypeName","src":"3429:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3428:9:67"},"scope":19814,"src":"3371:111:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18465,"nodeType":"Block","src":"3666:82:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18453,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18446,"src":"3721:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":18454,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18448,"src":"3725:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3721:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18456,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3720:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18457,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18446,"src":"3731:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":18458,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18448,"src":"3735:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3731:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18460,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3730:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":18461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3740:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"3730:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3720:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18452,"id":18464,"nodeType":"Return","src":"3713:28:67"}]},"documentation":{"id":18444,"nodeType":"StructuredDocumentation","src":"3488:102:67","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":18466,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"3604:7:67","nodeType":"FunctionDefinition","parameters":{"id":18449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18446,"mutability":"mutable","name":"a","nameLocation":"3620:1:67","nodeType":"VariableDeclaration","scope":18466,"src":"3612:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18445,"name":"uint256","nodeType":"ElementaryTypeName","src":"3612:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18448,"mutability":"mutable","name":"b","nameLocation":"3631:1:67","nodeType":"VariableDeclaration","scope":18466,"src":"3623:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18447,"name":"uint256","nodeType":"ElementaryTypeName","src":"3623:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3611:22:67"},"returnParameters":{"id":18452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18451,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18466,"src":"3657:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18450,"name":"uint256","nodeType":"ElementaryTypeName","src":"3657:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3656:9:67"},"scope":19814,"src":"3595:153:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18506,"nodeType":"Block","src":"4040:633:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18476,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18471,"src":"4054:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4059:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4054:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18487,"nodeType":"IfStatement","src":"4050:150:67","trueBody":{"id":18486,"nodeType":"Block","src":"4062:138:67","statements":[{"expression":{"arguments":[{"expression":{"id":18482,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"4166:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4172:16:67","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":16324,"src":"4166:22:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18479,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"4154:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4160:5:67","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":16356,"src":"4154:11:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":18484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4154:35:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18485,"nodeType":"ExpressionStatement","src":"4154:35:67"}]}},{"id":18505,"nodeType":"UncheckedBlock","src":"4583:84:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18490,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18469,"src":"4630:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4634:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4630:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":18488,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"4614:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":18489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4623:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"4614:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":18493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4614:22:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18494,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18469,"src":"4641:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":18495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4645:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4641:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18497,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4640:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18498,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18471,"src":"4650:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4640:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4654:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4640:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18502,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4639:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4614:42:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18475,"id":18504,"nodeType":"Return","src":"4607:49:67"}]}]},"documentation":{"id":18467,"nodeType":"StructuredDocumentation","src":"3754:210:67","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds towards infinity instead\n of rounding towards zero."},"id":18507,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"3978:7:67","nodeType":"FunctionDefinition","parameters":{"id":18472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18469,"mutability":"mutable","name":"a","nameLocation":"3994:1:67","nodeType":"VariableDeclaration","scope":18507,"src":"3986:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18468,"name":"uint256","nodeType":"ElementaryTypeName","src":"3986:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18471,"mutability":"mutable","name":"b","nameLocation":"4005:1:67","nodeType":"VariableDeclaration","scope":18507,"src":"3997:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18470,"name":"uint256","nodeType":"ElementaryTypeName","src":"3997:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3985:22:67"},"returnParameters":{"id":18475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18474,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18507,"src":"4031:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18473,"name":"uint256","nodeType":"ElementaryTypeName","src":"4031:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4030:9:67"},"scope":19814,"src":"3969:704:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18643,"nodeType":"Block","src":"5094:4128:67","statements":[{"id":18642,"nodeType":"UncheckedBlock","src":"5104:4112:67","statements":[{"assignments":[18520],"declarations":[{"constant":false,"id":18520,"mutability":"mutable","name":"prod0","nameLocation":"5441:5:67","nodeType":"VariableDeclaration","scope":18642,"src":"5433:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18519,"name":"uint256","nodeType":"ElementaryTypeName","src":"5433:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18524,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18521,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18510,"src":"5449:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18522,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18512,"src":"5453:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5449:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5433:21:67"},{"assignments":[18526],"declarations":[{"constant":false,"id":18526,"mutability":"mutable","name":"prod1","nameLocation":"5521:5:67","nodeType":"VariableDeclaration","scope":18642,"src":"5513:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18525,"name":"uint256","nodeType":"ElementaryTypeName","src":"5513:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18527,"nodeType":"VariableDeclarationStatement","src":"5513:13:67"},{"AST":{"nativeSrc":"5593:122:67","nodeType":"YulBlock","src":"5593:122:67","statements":[{"nativeSrc":"5611:30:67","nodeType":"YulVariableDeclaration","src":"5611:30:67","value":{"arguments":[{"name":"x","nativeSrc":"5628:1:67","nodeType":"YulIdentifier","src":"5628:1:67"},{"name":"y","nativeSrc":"5631:1:67","nodeType":"YulIdentifier","src":"5631:1:67"},{"arguments":[{"kind":"number","nativeSrc":"5638:1:67","nodeType":"YulLiteral","src":"5638:1:67","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5634:3:67","nodeType":"YulIdentifier","src":"5634:3:67"},"nativeSrc":"5634:6:67","nodeType":"YulFunctionCall","src":"5634:6:67"}],"functionName":{"name":"mulmod","nativeSrc":"5621:6:67","nodeType":"YulIdentifier","src":"5621:6:67"},"nativeSrc":"5621:20:67","nodeType":"YulFunctionCall","src":"5621:20:67"},"variables":[{"name":"mm","nativeSrc":"5615:2:67","nodeType":"YulTypedName","src":"5615:2:67","type":""}]},{"nativeSrc":"5658:43:67","nodeType":"YulAssignment","src":"5658:43:67","value":{"arguments":[{"arguments":[{"name":"mm","nativeSrc":"5675:2:67","nodeType":"YulIdentifier","src":"5675:2:67"},{"name":"prod0","nativeSrc":"5679:5:67","nodeType":"YulIdentifier","src":"5679:5:67"}],"functionName":{"name":"sub","nativeSrc":"5671:3:67","nodeType":"YulIdentifier","src":"5671:3:67"},"nativeSrc":"5671:14:67","nodeType":"YulFunctionCall","src":"5671:14:67"},{"arguments":[{"name":"mm","nativeSrc":"5690:2:67","nodeType":"YulIdentifier","src":"5690:2:67"},{"name":"prod0","nativeSrc":"5694:5:67","nodeType":"YulIdentifier","src":"5694:5:67"}],"functionName":{"name":"lt","nativeSrc":"5687:2:67","nodeType":"YulIdentifier","src":"5687:2:67"},"nativeSrc":"5687:13:67","nodeType":"YulFunctionCall","src":"5687:13:67"}],"functionName":{"name":"sub","nativeSrc":"5667:3:67","nodeType":"YulIdentifier","src":"5667:3:67"},"nativeSrc":"5667:34:67","nodeType":"YulFunctionCall","src":"5667:34:67"},"variableNames":[{"name":"prod1","nativeSrc":"5658:5:67","nodeType":"YulIdentifier","src":"5658:5:67"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":18520,"isOffset":false,"isSlot":false,"src":"5679:5:67","valueSize":1},{"declaration":18520,"isOffset":false,"isSlot":false,"src":"5694:5:67","valueSize":1},{"declaration":18526,"isOffset":false,"isSlot":false,"src":"5658:5:67","valueSize":1},{"declaration":18510,"isOffset":false,"isSlot":false,"src":"5628:1:67","valueSize":1},{"declaration":18512,"isOffset":false,"isSlot":false,"src":"5631:1:67","valueSize":1}],"id":18528,"nodeType":"InlineAssembly","src":"5584:131:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18529,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18526,"src":"5796:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5805:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5796:10:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18537,"nodeType":"IfStatement","src":"5792:368:67","trueBody":{"id":18536,"nodeType":"Block","src":"5808:352:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18532,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18520,"src":"6126:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18533,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"6134:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6126:19:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18518,"id":18535,"nodeType":"Return","src":"6119:26:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18538,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"6270:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":18539,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18526,"src":"6285:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6270:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18556,"nodeType":"IfStatement","src":"6266:143:67","trueBody":{"id":18555,"nodeType":"Block","src":"6292:117:67","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18545,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"6330:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6345:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6330:16:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":18548,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"6348:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6354:16:67","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":16324,"src":"6348:22:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":18550,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"6372:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18551,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6378:14:67","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":16320,"src":"6372:20:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18544,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18405,"src":"6322:7:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":18552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6322:71:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18541,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"6310:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6316:5:67","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":16356,"src":"6310:11:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":18553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6310:84:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18554,"nodeType":"ExpressionStatement","src":"6310:84:67"}]}},{"assignments":[18558],"declarations":[{"constant":false,"id":18558,"mutability":"mutable","name":"remainder","nameLocation":"6672:9:67","nodeType":"VariableDeclaration","scope":18642,"src":"6664:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18557,"name":"uint256","nodeType":"ElementaryTypeName","src":"6664:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18559,"nodeType":"VariableDeclarationStatement","src":"6664:17:67"},{"AST":{"nativeSrc":"6704:291:67","nodeType":"YulBlock","src":"6704:291:67","statements":[{"nativeSrc":"6773:38:67","nodeType":"YulAssignment","src":"6773:38:67","value":{"arguments":[{"name":"x","nativeSrc":"6793:1:67","nodeType":"YulIdentifier","src":"6793:1:67"},{"name":"y","nativeSrc":"6796:1:67","nodeType":"YulIdentifier","src":"6796:1:67"},{"name":"denominator","nativeSrc":"6799:11:67","nodeType":"YulIdentifier","src":"6799:11:67"}],"functionName":{"name":"mulmod","nativeSrc":"6786:6:67","nodeType":"YulIdentifier","src":"6786:6:67"},"nativeSrc":"6786:25:67","nodeType":"YulFunctionCall","src":"6786:25:67"},"variableNames":[{"name":"remainder","nativeSrc":"6773:9:67","nodeType":"YulIdentifier","src":"6773:9:67"}]},{"nativeSrc":"6893:41:67","nodeType":"YulAssignment","src":"6893:41:67","value":{"arguments":[{"name":"prod1","nativeSrc":"6906:5:67","nodeType":"YulIdentifier","src":"6906:5:67"},{"arguments":[{"name":"remainder","nativeSrc":"6916:9:67","nodeType":"YulIdentifier","src":"6916:9:67"},{"name":"prod0","nativeSrc":"6927:5:67","nodeType":"YulIdentifier","src":"6927:5:67"}],"functionName":{"name":"gt","nativeSrc":"6913:2:67","nodeType":"YulIdentifier","src":"6913:2:67"},"nativeSrc":"6913:20:67","nodeType":"YulFunctionCall","src":"6913:20:67"}],"functionName":{"name":"sub","nativeSrc":"6902:3:67","nodeType":"YulIdentifier","src":"6902:3:67"},"nativeSrc":"6902:32:67","nodeType":"YulFunctionCall","src":"6902:32:67"},"variableNames":[{"name":"prod1","nativeSrc":"6893:5:67","nodeType":"YulIdentifier","src":"6893:5:67"}]},{"nativeSrc":"6951:30:67","nodeType":"YulAssignment","src":"6951:30:67","value":{"arguments":[{"name":"prod0","nativeSrc":"6964:5:67","nodeType":"YulIdentifier","src":"6964:5:67"},{"name":"remainder","nativeSrc":"6971:9:67","nodeType":"YulIdentifier","src":"6971:9:67"}],"functionName":{"name":"sub","nativeSrc":"6960:3:67","nodeType":"YulIdentifier","src":"6960:3:67"},"nativeSrc":"6960:21:67","nodeType":"YulFunctionCall","src":"6960:21:67"},"variableNames":[{"name":"prod0","nativeSrc":"6951:5:67","nodeType":"YulIdentifier","src":"6951:5:67"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":18514,"isOffset":false,"isSlot":false,"src":"6799:11:67","valueSize":1},{"declaration":18520,"isOffset":false,"isSlot":false,"src":"6927:5:67","valueSize":1},{"declaration":18520,"isOffset":false,"isSlot":false,"src":"6951:5:67","valueSize":1},{"declaration":18520,"isOffset":false,"isSlot":false,"src":"6964:5:67","valueSize":1},{"declaration":18526,"isOffset":false,"isSlot":false,"src":"6893:5:67","valueSize":1},{"declaration":18526,"isOffset":false,"isSlot":false,"src":"6906:5:67","valueSize":1},{"declaration":18558,"isOffset":false,"isSlot":false,"src":"6773:9:67","valueSize":1},{"declaration":18558,"isOffset":false,"isSlot":false,"src":"6916:9:67","valueSize":1},{"declaration":18558,"isOffset":false,"isSlot":false,"src":"6971:9:67","valueSize":1},{"declaration":18510,"isOffset":false,"isSlot":false,"src":"6793:1:67","valueSize":1},{"declaration":18512,"isOffset":false,"isSlot":false,"src":"6796:1:67","valueSize":1}],"id":18560,"nodeType":"InlineAssembly","src":"6695:300:67"},{"assignments":[18562],"declarations":[{"constant":false,"id":18562,"mutability":"mutable","name":"twos","nameLocation":"7207:4:67","nodeType":"VariableDeclaration","scope":18642,"src":"7199:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18561,"name":"uint256","nodeType":"ElementaryTypeName","src":"7199:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18569,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18563,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"7214:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":18564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7229:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18565,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"7233:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7229:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18567,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7228:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7214:31:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7199:46:67"},{"AST":{"nativeSrc":"7268:366:67","nodeType":"YulBlock","src":"7268:366:67","statements":[{"nativeSrc":"7333:37:67","nodeType":"YulAssignment","src":"7333:37:67","value":{"arguments":[{"name":"denominator","nativeSrc":"7352:11:67","nodeType":"YulIdentifier","src":"7352:11:67"},{"name":"twos","nativeSrc":"7365:4:67","nodeType":"YulIdentifier","src":"7365:4:67"}],"functionName":{"name":"div","nativeSrc":"7348:3:67","nodeType":"YulIdentifier","src":"7348:3:67"},"nativeSrc":"7348:22:67","nodeType":"YulFunctionCall","src":"7348:22:67"},"variableNames":[{"name":"denominator","nativeSrc":"7333:11:67","nodeType":"YulIdentifier","src":"7333:11:67"}]},{"nativeSrc":"7437:25:67","nodeType":"YulAssignment","src":"7437:25:67","value":{"arguments":[{"name":"prod0","nativeSrc":"7450:5:67","nodeType":"YulIdentifier","src":"7450:5:67"},{"name":"twos","nativeSrc":"7457:4:67","nodeType":"YulIdentifier","src":"7457:4:67"}],"functionName":{"name":"div","nativeSrc":"7446:3:67","nodeType":"YulIdentifier","src":"7446:3:67"},"nativeSrc":"7446:16:67","nodeType":"YulFunctionCall","src":"7446:16:67"},"variableNames":[{"name":"prod0","nativeSrc":"7437:5:67","nodeType":"YulIdentifier","src":"7437:5:67"}]},{"nativeSrc":"7581:39:67","nodeType":"YulAssignment","src":"7581:39:67","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7601:1:67","nodeType":"YulLiteral","src":"7601:1:67","type":"","value":"0"},{"name":"twos","nativeSrc":"7604:4:67","nodeType":"YulIdentifier","src":"7604:4:67"}],"functionName":{"name":"sub","nativeSrc":"7597:3:67","nodeType":"YulIdentifier","src":"7597:3:67"},"nativeSrc":"7597:12:67","nodeType":"YulFunctionCall","src":"7597:12:67"},{"name":"twos","nativeSrc":"7611:4:67","nodeType":"YulIdentifier","src":"7611:4:67"}],"functionName":{"name":"div","nativeSrc":"7593:3:67","nodeType":"YulIdentifier","src":"7593:3:67"},"nativeSrc":"7593:23:67","nodeType":"YulFunctionCall","src":"7593:23:67"},{"kind":"number","nativeSrc":"7618:1:67","nodeType":"YulLiteral","src":"7618:1:67","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"7589:3:67","nodeType":"YulIdentifier","src":"7589:3:67"},"nativeSrc":"7589:31:67","nodeType":"YulFunctionCall","src":"7589:31:67"},"variableNames":[{"name":"twos","nativeSrc":"7581:4:67","nodeType":"YulIdentifier","src":"7581:4:67"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":18514,"isOffset":false,"isSlot":false,"src":"7333:11:67","valueSize":1},{"declaration":18514,"isOffset":false,"isSlot":false,"src":"7352:11:67","valueSize":1},{"declaration":18520,"isOffset":false,"isSlot":false,"src":"7437:5:67","valueSize":1},{"declaration":18520,"isOffset":false,"isSlot":false,"src":"7450:5:67","valueSize":1},{"declaration":18562,"isOffset":false,"isSlot":false,"src":"7365:4:67","valueSize":1},{"declaration":18562,"isOffset":false,"isSlot":false,"src":"7457:4:67","valueSize":1},{"declaration":18562,"isOffset":false,"isSlot":false,"src":"7581:4:67","valueSize":1},{"declaration":18562,"isOffset":false,"isSlot":false,"src":"7604:4:67","valueSize":1},{"declaration":18562,"isOffset":false,"isSlot":false,"src":"7611:4:67","valueSize":1}],"id":18570,"nodeType":"InlineAssembly","src":"7259:375:67"},{"expression":{"id":18575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18571,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18520,"src":"7700:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18572,"name":"prod1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18526,"src":"7709:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18573,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18562,"src":"7717:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7709:12:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7700:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18576,"nodeType":"ExpressionStatement","src":"7700:21:67"},{"assignments":[18578],"declarations":[{"constant":false,"id":18578,"mutability":"mutable","name":"inverse","nameLocation":"8064:7:67","nodeType":"VariableDeclaration","scope":18642,"src":"8056:15:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18577,"name":"uint256","nodeType":"ElementaryTypeName","src":"8056:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18585,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":18579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8075:1:67","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18580,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8079:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8075:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18582,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8074:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":18583,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8094:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"8074:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8056:39:67"},{"expression":{"id":18592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18586,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8312:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":18587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8323:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18588,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8327:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18589,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8341:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8327:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8323:25:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8312:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18593,"nodeType":"ExpressionStatement","src":"8312:36:67"},{"expression":{"id":18600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18594,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8382:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":18595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8393:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18596,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8397:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18597,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8411:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8397:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8393:25:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8382:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18601,"nodeType":"ExpressionStatement","src":"8382:36:67"},{"expression":{"id":18608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18602,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8454:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":18603,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8465:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18604,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8469:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18605,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8483:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8469:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8465:25:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8454:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18609,"nodeType":"ExpressionStatement","src":"8454:36:67"},{"expression":{"id":18616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18610,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8525:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":18611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8536:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18612,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8540:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18613,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8554:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8540:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8536:25:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8525:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18617,"nodeType":"ExpressionStatement","src":"8525:36:67"},{"expression":{"id":18624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18618,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8598:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":18619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8609:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18620,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8613:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18621,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8627:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8613:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8609:25:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8598:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18625,"nodeType":"ExpressionStatement","src":"8598:36:67"},{"expression":{"id":18632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18626,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8672:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":18627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8683:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18628,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18514,"src":"8687:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18629,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"8701:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8687:21:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8683:25:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8672:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18633,"nodeType":"ExpressionStatement","src":"8672:36:67"},{"expression":{"id":18638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18634,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18517,"src":"9154:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18635,"name":"prod0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18520,"src":"9163:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18636,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18578,"src":"9171:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9163:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9154:24:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18639,"nodeType":"ExpressionStatement","src":"9154:24:67"},{"expression":{"id":18640,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18517,"src":"9199:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18518,"id":18641,"nodeType":"Return","src":"9192:13:67"}]}]},"documentation":{"id":18508,"nodeType":"StructuredDocumentation","src":"4679:312:67","text":" @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n denominator == 0.\n Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n Uniswap Labs also under MIT license."},"id":18644,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"5005:6:67","nodeType":"FunctionDefinition","parameters":{"id":18515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18510,"mutability":"mutable","name":"x","nameLocation":"5020:1:67","nodeType":"VariableDeclaration","scope":18644,"src":"5012:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18509,"name":"uint256","nodeType":"ElementaryTypeName","src":"5012:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18512,"mutability":"mutable","name":"y","nameLocation":"5031:1:67","nodeType":"VariableDeclaration","scope":18644,"src":"5023:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18511,"name":"uint256","nodeType":"ElementaryTypeName","src":"5023:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18514,"mutability":"mutable","name":"denominator","nameLocation":"5042:11:67","nodeType":"VariableDeclaration","scope":18644,"src":"5034:19:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18513,"name":"uint256","nodeType":"ElementaryTypeName","src":"5034:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5011:43:67"},"returnParameters":{"id":18518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18517,"mutability":"mutable","name":"result","nameLocation":"5086:6:67","nodeType":"VariableDeclaration","scope":18644,"src":"5078:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18516,"name":"uint256","nodeType":"ElementaryTypeName","src":"5078:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5077:16:67"},"scope":19814,"src":"4996:4226:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18680,"nodeType":"Block","src":"9461:128:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18660,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18647,"src":"9485:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18661,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18649,"src":"9488:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18662,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18651,"src":"9491:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18659,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[18644,18681],"referencedDeclaration":18644,"src":"9478:6:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":18663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9478:25:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18667,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"9539:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":18666,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19813,"src":"9522:16:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$18220_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":18668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9522:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18670,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18647,"src":"9559:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18671,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18649,"src":"9562:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18672,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18651,"src":"9565:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18669,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"9552:6:67","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":18673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9552:25:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9580:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9552:29:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9522:59:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":18664,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"9506:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":18665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9515:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"9506:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":18677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9506:76:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9478:104:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18658,"id":18679,"nodeType":"Return","src":"9471:111:67"}]},"documentation":{"id":18645,"nodeType":"StructuredDocumentation","src":"9228:118:67","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":18681,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"9360:6:67","nodeType":"FunctionDefinition","parameters":{"id":18655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18647,"mutability":"mutable","name":"x","nameLocation":"9375:1:67","nodeType":"VariableDeclaration","scope":18681,"src":"9367:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18646,"name":"uint256","nodeType":"ElementaryTypeName","src":"9367:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18649,"mutability":"mutable","name":"y","nameLocation":"9386:1:67","nodeType":"VariableDeclaration","scope":18681,"src":"9378:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18648,"name":"uint256","nodeType":"ElementaryTypeName","src":"9378:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18651,"mutability":"mutable","name":"denominator","nameLocation":"9397:11:67","nodeType":"VariableDeclaration","scope":18681,"src":"9389:19:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18650,"name":"uint256","nodeType":"ElementaryTypeName","src":"9389:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18654,"mutability":"mutable","name":"rounding","nameLocation":"9419:8:67","nodeType":"VariableDeclaration","scope":18681,"src":"9410:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":18653,"nodeType":"UserDefinedTypeName","pathNode":{"id":18652,"name":"Rounding","nameLocations":["9410:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"9410:8:67"},"referencedDeclaration":18220,"src":"9410:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"9366:62:67"},"returnParameters":{"id":18658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18657,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18681,"src":"9452:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18656,"name":"uint256","nodeType":"ElementaryTypeName","src":"9452:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9451:9:67"},"scope":19814,"src":"9351:238:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18777,"nodeType":"Block","src":"10223:1849:67","statements":[{"id":18776,"nodeType":"UncheckedBlock","src":"10233:1833:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18691,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18686,"src":"10261:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10266:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10261:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18696,"nodeType":"IfStatement","src":"10257:20:67","trueBody":{"expression":{"hexValue":"30","id":18694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10276:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":18690,"id":18695,"nodeType":"Return","src":"10269:8:67"}},{"assignments":[18698],"declarations":[{"constant":false,"id":18698,"mutability":"mutable","name":"remainder","nameLocation":"10756:9:67","nodeType":"VariableDeclaration","scope":18776,"src":"10748:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18697,"name":"uint256","nodeType":"ElementaryTypeName","src":"10748:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18702,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18699,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18684,"src":"10768:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":18700,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18686,"src":"10772:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10768:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10748:25:67"},{"assignments":[18704],"declarations":[{"constant":false,"id":18704,"mutability":"mutable","name":"gcd","nameLocation":"10795:3:67","nodeType":"VariableDeclaration","scope":18776,"src":"10787:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18703,"name":"uint256","nodeType":"ElementaryTypeName","src":"10787:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18706,"initialValue":{"id":18705,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18686,"src":"10801:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10787:15:67"},{"assignments":[18708],"declarations":[{"constant":false,"id":18708,"mutability":"mutable","name":"x","nameLocation":"10945:1:67","nodeType":"VariableDeclaration","scope":18776,"src":"10938:8:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18707,"name":"int256","nodeType":"ElementaryTypeName","src":"10938:6:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":18710,"initialValue":{"hexValue":"30","id":18709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10949:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10938:12:67"},{"assignments":[18712],"declarations":[{"constant":false,"id":18712,"mutability":"mutable","name":"y","nameLocation":"10971:1:67","nodeType":"VariableDeclaration","scope":18776,"src":"10964:8:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":18711,"name":"int256","nodeType":"ElementaryTypeName","src":"10964:6:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":18714,"initialValue":{"hexValue":"31","id":18713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10975:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"10964:12:67"},{"body":{"id":18751,"nodeType":"Block","src":"11014:882:67","statements":[{"assignments":[18719],"declarations":[{"constant":false,"id":18719,"mutability":"mutable","name":"quotient","nameLocation":"11040:8:67","nodeType":"VariableDeclaration","scope":18751,"src":"11032:16:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18718,"name":"uint256","nodeType":"ElementaryTypeName","src":"11032:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18723,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18720,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18704,"src":"11051:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":18721,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"11057:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11051:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11032:34:67"},{"expression":{"id":18734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":18724,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18704,"src":"11086:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18725,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"11091:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18726,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11085:16:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":18727,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"11191:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18728,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18704,"src":"11436:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18729,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"11442:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":18730,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18719,"src":"11454:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11442:20:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11436:26:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18733,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11104:376:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"11085:395:67","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18735,"nodeType":"ExpressionStatement","src":"11085:395:67"},{"expression":{"id":18749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":18736,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"11500:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":18737,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18712,"src":"11503:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":18738,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11499:6:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":18739,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18712,"src":"11585:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":18747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18740,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"11839:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":18746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18741,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18712,"src":"11843:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":18744,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18719,"src":"11854:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18743,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11847:6:67","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":18742,"name":"int256","nodeType":"ElementaryTypeName","src":"11847:6:67","typeDescriptions":{}}},"id":18745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11847:16:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11843:20:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11839:24:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":18748,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11508:373:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"11499:382:67","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18750,"nodeType":"ExpressionStatement","src":"11499:382:67"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18715,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"10998:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":18716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11011:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10998:14:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18752,"nodeType":"WhileStatement","src":"10991:905:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18753,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18704,"src":"11914:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":18754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11921:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11914:8:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18758,"nodeType":"IfStatement","src":"11910:22:67","trueBody":{"expression":{"hexValue":"30","id":18756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11931:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":18690,"id":18757,"nodeType":"Return","src":"11924:8:67"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":18762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18760,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"11983:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":18761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11987:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11983:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18763,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18686,"src":"11990:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":18767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12002:2:67","subExpression":{"id":18766,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"12003:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":18765,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11994:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":18764,"name":"uint256","nodeType":"ElementaryTypeName","src":"11994:7:67","typeDescriptions":{}}},"id":18768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11994:11:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11990:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":18772,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"12015:1:67","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":18771,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12007:7:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":18770,"name":"uint256","nodeType":"ElementaryTypeName","src":"12007:7:67","typeDescriptions":{}}},"id":18773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12007:10:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18759,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18405,"src":"11975:7:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":18774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11975:43:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18690,"id":18775,"nodeType":"Return","src":"11968:50:67"}]}]},"documentation":{"id":18682,"nodeType":"StructuredDocumentation","src":"9595:553:67","text":" @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n If the input value is not inversible, 0 is returned.\n NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}."},"id":18778,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"10162:6:67","nodeType":"FunctionDefinition","parameters":{"id":18687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18684,"mutability":"mutable","name":"a","nameLocation":"10177:1:67","nodeType":"VariableDeclaration","scope":18778,"src":"10169:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18683,"name":"uint256","nodeType":"ElementaryTypeName","src":"10169:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18686,"mutability":"mutable","name":"n","nameLocation":"10188:1:67","nodeType":"VariableDeclaration","scope":18778,"src":"10180:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18685,"name":"uint256","nodeType":"ElementaryTypeName","src":"10180:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10168:22:67"},"returnParameters":{"id":18690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18778,"src":"10214:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18688,"name":"uint256","nodeType":"ElementaryTypeName","src":"10214:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10213:9:67"},"scope":19814,"src":"10153:1919:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18798,"nodeType":"Block","src":"12672:82:67","statements":[{"id":18797,"nodeType":"UncheckedBlock","src":"12682:66:67","statements":[{"expression":{"arguments":[{"id":18790,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18781,"src":"12725:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18791,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18783,"src":"12728:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":18792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12732:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"12728:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18794,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18783,"src":"12735:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18788,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"12713:4:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":18789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12718:6:67","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":18835,"src":"12713:11:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":18795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12713:24:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18787,"id":18796,"nodeType":"Return","src":"12706:31:67"}]}]},"documentation":{"id":18779,"nodeType":"StructuredDocumentation","src":"12078:514:67","text":" @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n NOTE: this function does NOT check that `p` is a prime greater than `2`."},"id":18799,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"12606:11:67","nodeType":"FunctionDefinition","parameters":{"id":18784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18781,"mutability":"mutable","name":"a","nameLocation":"12626:1:67","nodeType":"VariableDeclaration","scope":18799,"src":"12618:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18780,"name":"uint256","nodeType":"ElementaryTypeName","src":"12618:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18783,"mutability":"mutable","name":"p","nameLocation":"12637:1:67","nodeType":"VariableDeclaration","scope":18799,"src":"12629:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18782,"name":"uint256","nodeType":"ElementaryTypeName","src":"12629:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12617:22:67"},"returnParameters":{"id":18787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18786,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18799,"src":"12663:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18785,"name":"uint256","nodeType":"ElementaryTypeName","src":"12663:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12662:9:67"},"scope":19814,"src":"12597:157:67","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18834,"nodeType":"Block","src":"13524:174:67","statements":[{"assignments":[18812,18814],"declarations":[{"constant":false,"id":18812,"mutability":"mutable","name":"success","nameLocation":"13540:7:67","nodeType":"VariableDeclaration","scope":18834,"src":"13535:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18811,"name":"bool","nodeType":"ElementaryTypeName","src":"13535:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18814,"mutability":"mutable","name":"result","nameLocation":"13557:6:67","nodeType":"VariableDeclaration","scope":18834,"src":"13549:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18813,"name":"uint256","nodeType":"ElementaryTypeName","src":"13549:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18820,"initialValue":{"arguments":[{"id":18816,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18802,"src":"13577:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18817,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18804,"src":"13580:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18818,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18806,"src":"13583:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18815,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[18859,18941],"referencedDeclaration":18859,"src":"13567:9:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (bool,uint256)"}},"id":18819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13567:18:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"13534:51:67"},{"condition":{"id":18822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"13599:8:67","subExpression":{"id":18821,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18812,"src":"13600:7:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18831,"nodeType":"IfStatement","src":"13595:74:67","trueBody":{"id":18830,"nodeType":"Block","src":"13609:60:67","statements":[{"expression":{"arguments":[{"expression":{"id":18826,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"13635:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13641:16:67","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":16324,"src":"13635:22:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18823,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"13623:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13629:5:67","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":16356,"src":"13623:11:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":18828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13623:35:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18829,"nodeType":"ExpressionStatement","src":"13623:35:67"}]}},{"expression":{"id":18832,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18814,"src":"13685:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18810,"id":18833,"nodeType":"Return","src":"13678:13:67"}]},"documentation":{"id":18800,"nodeType":"StructuredDocumentation","src":"12760:678:67","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n Requirements:\n - modulus can't be zero\n - underlying staticcall to precompile must succeed\n IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n sure the chain you're using it on supports the precompiled contract for modular exponentiation\n at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n interpreted as 0."},"id":18835,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"13452:6:67","nodeType":"FunctionDefinition","parameters":{"id":18807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18802,"mutability":"mutable","name":"b","nameLocation":"13467:1:67","nodeType":"VariableDeclaration","scope":18835,"src":"13459:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18801,"name":"uint256","nodeType":"ElementaryTypeName","src":"13459:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18804,"mutability":"mutable","name":"e","nameLocation":"13478:1:67","nodeType":"VariableDeclaration","scope":18835,"src":"13470:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18803,"name":"uint256","nodeType":"ElementaryTypeName","src":"13470:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18806,"mutability":"mutable","name":"m","nameLocation":"13489:1:67","nodeType":"VariableDeclaration","scope":18835,"src":"13481:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18805,"name":"uint256","nodeType":"ElementaryTypeName","src":"13481:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13458:33:67"},"returnParameters":{"id":18810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18809,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18835,"src":"13515:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18808,"name":"uint256","nodeType":"ElementaryTypeName","src":"13515:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13514:9:67"},"scope":19814,"src":"13443:255:67","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18858,"nodeType":"Block","src":"14552:1493:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18849,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18842,"src":"14566:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14571:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14566:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18856,"nodeType":"IfStatement","src":"14562:29:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14582:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":18853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14589:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18854,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"14581:10:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":18848,"id":18855,"nodeType":"Return","src":"14574:17:67"}},{"AST":{"nativeSrc":"14626:1413:67","nodeType":"YulBlock","src":"14626:1413:67","statements":[{"nativeSrc":"14640:22:67","nodeType":"YulVariableDeclaration","src":"14640:22:67","value":{"arguments":[{"kind":"number","nativeSrc":"14657:4:67","nodeType":"YulLiteral","src":"14657:4:67","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"14651:5:67","nodeType":"YulIdentifier","src":"14651:5:67"},"nativeSrc":"14651:11:67","nodeType":"YulFunctionCall","src":"14651:11:67"},"variables":[{"name":"ptr","nativeSrc":"14644:3:67","nodeType":"YulTypedName","src":"14644:3:67","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"15570:3:67","nodeType":"YulIdentifier","src":"15570:3:67"},{"kind":"number","nativeSrc":"15575:4:67","nodeType":"YulLiteral","src":"15575:4:67","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"15563:6:67","nodeType":"YulIdentifier","src":"15563:6:67"},"nativeSrc":"15563:17:67","nodeType":"YulFunctionCall","src":"15563:17:67"},"nativeSrc":"15563:17:67","nodeType":"YulExpressionStatement","src":"15563:17:67"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15604:3:67","nodeType":"YulIdentifier","src":"15604:3:67"},{"kind":"number","nativeSrc":"15609:4:67","nodeType":"YulLiteral","src":"15609:4:67","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15600:3:67","nodeType":"YulIdentifier","src":"15600:3:67"},"nativeSrc":"15600:14:67","nodeType":"YulFunctionCall","src":"15600:14:67"},{"kind":"number","nativeSrc":"15616:4:67","nodeType":"YulLiteral","src":"15616:4:67","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"15593:6:67","nodeType":"YulIdentifier","src":"15593:6:67"},"nativeSrc":"15593:28:67","nodeType":"YulFunctionCall","src":"15593:28:67"},"nativeSrc":"15593:28:67","nodeType":"YulExpressionStatement","src":"15593:28:67"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15645:3:67","nodeType":"YulIdentifier","src":"15645:3:67"},{"kind":"number","nativeSrc":"15650:4:67","nodeType":"YulLiteral","src":"15650:4:67","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"15641:3:67","nodeType":"YulIdentifier","src":"15641:3:67"},"nativeSrc":"15641:14:67","nodeType":"YulFunctionCall","src":"15641:14:67"},{"kind":"number","nativeSrc":"15657:4:67","nodeType":"YulLiteral","src":"15657:4:67","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"15634:6:67","nodeType":"YulIdentifier","src":"15634:6:67"},"nativeSrc":"15634:28:67","nodeType":"YulFunctionCall","src":"15634:28:67"},"nativeSrc":"15634:28:67","nodeType":"YulExpressionStatement","src":"15634:28:67"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15686:3:67","nodeType":"YulIdentifier","src":"15686:3:67"},{"kind":"number","nativeSrc":"15691:4:67","nodeType":"YulLiteral","src":"15691:4:67","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"15682:3:67","nodeType":"YulIdentifier","src":"15682:3:67"},"nativeSrc":"15682:14:67","nodeType":"YulFunctionCall","src":"15682:14:67"},{"name":"b","nativeSrc":"15698:1:67","nodeType":"YulIdentifier","src":"15698:1:67"}],"functionName":{"name":"mstore","nativeSrc":"15675:6:67","nodeType":"YulIdentifier","src":"15675:6:67"},"nativeSrc":"15675:25:67","nodeType":"YulFunctionCall","src":"15675:25:67"},"nativeSrc":"15675:25:67","nodeType":"YulExpressionStatement","src":"15675:25:67"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15724:3:67","nodeType":"YulIdentifier","src":"15724:3:67"},{"kind":"number","nativeSrc":"15729:4:67","nodeType":"YulLiteral","src":"15729:4:67","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"15720:3:67","nodeType":"YulIdentifier","src":"15720:3:67"},"nativeSrc":"15720:14:67","nodeType":"YulFunctionCall","src":"15720:14:67"},{"name":"e","nativeSrc":"15736:1:67","nodeType":"YulIdentifier","src":"15736:1:67"}],"functionName":{"name":"mstore","nativeSrc":"15713:6:67","nodeType":"YulIdentifier","src":"15713:6:67"},"nativeSrc":"15713:25:67","nodeType":"YulFunctionCall","src":"15713:25:67"},"nativeSrc":"15713:25:67","nodeType":"YulExpressionStatement","src":"15713:25:67"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"15762:3:67","nodeType":"YulIdentifier","src":"15762:3:67"},{"kind":"number","nativeSrc":"15767:4:67","nodeType":"YulLiteral","src":"15767:4:67","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"15758:3:67","nodeType":"YulIdentifier","src":"15758:3:67"},"nativeSrc":"15758:14:67","nodeType":"YulFunctionCall","src":"15758:14:67"},{"name":"m","nativeSrc":"15774:1:67","nodeType":"YulIdentifier","src":"15774:1:67"}],"functionName":{"name":"mstore","nativeSrc":"15751:6:67","nodeType":"YulIdentifier","src":"15751:6:67"},"nativeSrc":"15751:25:67","nodeType":"YulFunctionCall","src":"15751:25:67"},"nativeSrc":"15751:25:67","nodeType":"YulExpressionStatement","src":"15751:25:67"},{"nativeSrc":"15938:57:67","nodeType":"YulAssignment","src":"15938:57:67","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"15960:3:67","nodeType":"YulIdentifier","src":"15960:3:67"},"nativeSrc":"15960:5:67","nodeType":"YulFunctionCall","src":"15960:5:67"},{"kind":"number","nativeSrc":"15967:4:67","nodeType":"YulLiteral","src":"15967:4:67","type":"","value":"0x05"},{"name":"ptr","nativeSrc":"15973:3:67","nodeType":"YulIdentifier","src":"15973:3:67"},{"kind":"number","nativeSrc":"15978:4:67","nodeType":"YulLiteral","src":"15978:4:67","type":"","value":"0xc0"},{"kind":"number","nativeSrc":"15984:4:67","nodeType":"YulLiteral","src":"15984:4:67","type":"","value":"0x00"},{"kind":"number","nativeSrc":"15990:4:67","nodeType":"YulLiteral","src":"15990:4:67","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"15949:10:67","nodeType":"YulIdentifier","src":"15949:10:67"},"nativeSrc":"15949:46:67","nodeType":"YulFunctionCall","src":"15949:46:67"},"variableNames":[{"name":"success","nativeSrc":"15938:7:67","nodeType":"YulIdentifier","src":"15938:7:67"}]},{"nativeSrc":"16008:21:67","nodeType":"YulAssignment","src":"16008:21:67","value":{"arguments":[{"kind":"number","nativeSrc":"16024:4:67","nodeType":"YulLiteral","src":"16024:4:67","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"16018:5:67","nodeType":"YulIdentifier","src":"16018:5:67"},"nativeSrc":"16018:11:67","nodeType":"YulFunctionCall","src":"16018:11:67"},"variableNames":[{"name":"result","nativeSrc":"16008:6:67","nodeType":"YulIdentifier","src":"16008:6:67"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":18838,"isOffset":false,"isSlot":false,"src":"15698:1:67","valueSize":1},{"declaration":18840,"isOffset":false,"isSlot":false,"src":"15736:1:67","valueSize":1},{"declaration":18842,"isOffset":false,"isSlot":false,"src":"15774:1:67","valueSize":1},{"declaration":18847,"isOffset":false,"isSlot":false,"src":"16008:6:67","valueSize":1},{"declaration":18845,"isOffset":false,"isSlot":false,"src":"15938:7:67","valueSize":1}],"flags":["memory-safe"],"id":18857,"nodeType":"InlineAssembly","src":"14601:1438:67"}]},"documentation":{"id":18836,"nodeType":"StructuredDocumentation","src":"13704:738:67","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n to operate modulo 0 or if the underlying precompile reverted.\n IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n of a revert, but the result may be incorrectly interpreted as 0."},"id":18859,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"14456:9:67","nodeType":"FunctionDefinition","parameters":{"id":18843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18838,"mutability":"mutable","name":"b","nameLocation":"14474:1:67","nodeType":"VariableDeclaration","scope":18859,"src":"14466:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18837,"name":"uint256","nodeType":"ElementaryTypeName","src":"14466:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18840,"mutability":"mutable","name":"e","nameLocation":"14485:1:67","nodeType":"VariableDeclaration","scope":18859,"src":"14477:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18839,"name":"uint256","nodeType":"ElementaryTypeName","src":"14477:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18842,"mutability":"mutable","name":"m","nameLocation":"14496:1:67","nodeType":"VariableDeclaration","scope":18859,"src":"14488:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18841,"name":"uint256","nodeType":"ElementaryTypeName","src":"14488:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14465:33:67"},"returnParameters":{"id":18848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18845,"mutability":"mutable","name":"success","nameLocation":"14527:7:67","nodeType":"VariableDeclaration","scope":18859,"src":"14522:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18844,"name":"bool","nodeType":"ElementaryTypeName","src":"14522:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18847,"mutability":"mutable","name":"result","nameLocation":"14544:6:67","nodeType":"VariableDeclaration","scope":18859,"src":"14536:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18846,"name":"uint256","nodeType":"ElementaryTypeName","src":"14536:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14521:30:67"},"scope":19814,"src":"14447:1598:67","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18894,"nodeType":"Block","src":"16242:179:67","statements":[{"assignments":[18872,18874],"declarations":[{"constant":false,"id":18872,"mutability":"mutable","name":"success","nameLocation":"16258:7:67","nodeType":"VariableDeclaration","scope":18894,"src":"16253:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18871,"name":"bool","nodeType":"ElementaryTypeName","src":"16253:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18874,"mutability":"mutable","name":"result","nameLocation":"16280:6:67","nodeType":"VariableDeclaration","scope":18894,"src":"16267:19:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18873,"name":"bytes","nodeType":"ElementaryTypeName","src":"16267:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":18880,"initialValue":{"arguments":[{"id":18876,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18862,"src":"16300:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18877,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18864,"src":"16303:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18878,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18866,"src":"16306:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18875,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[18859,18941],"referencedDeclaration":18941,"src":"16290:9:67","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,bytes memory,bytes memory) view returns (bool,bytes memory)"}},"id":18879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16290:18:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"16252:56:67"},{"condition":{"id":18882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16322:8:67","subExpression":{"id":18881,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18872,"src":"16323:7:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18891,"nodeType":"IfStatement","src":"16318:74:67","trueBody":{"id":18890,"nodeType":"Block","src":"16332:60:67","statements":[{"expression":{"arguments":[{"expression":{"id":18886,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"16358:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18887,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16364:16:67","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":16324,"src":"16358:22:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":18883,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16357,"src":"16346:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$16357_$","typeString":"type(library Panic)"}},"id":18885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16352:5:67","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":16356,"src":"16346:11:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":18888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16346:35:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18889,"nodeType":"ExpressionStatement","src":"16346:35:67"}]}},{"expression":{"id":18892,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18874,"src":"16408:6:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":18870,"id":18893,"nodeType":"Return","src":"16401:13:67"}]},"documentation":{"id":18860,"nodeType":"StructuredDocumentation","src":"16051:85:67","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":18895,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"16150:6:67","nodeType":"FunctionDefinition","parameters":{"id":18867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18862,"mutability":"mutable","name":"b","nameLocation":"16170:1:67","nodeType":"VariableDeclaration","scope":18895,"src":"16157:14:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18861,"name":"bytes","nodeType":"ElementaryTypeName","src":"16157:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18864,"mutability":"mutable","name":"e","nameLocation":"16186:1:67","nodeType":"VariableDeclaration","scope":18895,"src":"16173:14:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18863,"name":"bytes","nodeType":"ElementaryTypeName","src":"16173:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18866,"mutability":"mutable","name":"m","nameLocation":"16202:1:67","nodeType":"VariableDeclaration","scope":18895,"src":"16189:14:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18865,"name":"bytes","nodeType":"ElementaryTypeName","src":"16189:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16156:48:67"},"returnParameters":{"id":18870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18869,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18895,"src":"16228:12:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18868,"name":"bytes","nodeType":"ElementaryTypeName","src":"16228:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16227:14:67"},"scope":19814,"src":"16141:280:67","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18940,"nodeType":"Block","src":"16675:771:67","statements":[{"condition":{"arguments":[{"id":18910,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18902,"src":"16700:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18909,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18974,"src":"16689:10:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":18911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16689:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18919,"nodeType":"IfStatement","src":"16685:47:67","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":18912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16712:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":18915,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16729:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":18914,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"16719:9:67","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":18913,"name":"bytes","nodeType":"ElementaryTypeName","src":"16723:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":18916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16719:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":18917,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16711:21:67","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":18908,"id":18918,"nodeType":"Return","src":"16704:28:67"}},{"assignments":[18921],"declarations":[{"constant":false,"id":18921,"mutability":"mutable","name":"mLen","nameLocation":"16751:4:67","nodeType":"VariableDeclaration","scope":18940,"src":"16743:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18920,"name":"uint256","nodeType":"ElementaryTypeName","src":"16743:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18924,"initialValue":{"expression":{"id":18922,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18902,"src":"16758:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16760:6:67","memberName":"length","nodeType":"MemberAccess","src":"16758:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16743:23:67"},{"expression":{"id":18937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18925,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18907,"src":"16848:6:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":18928,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18898,"src":"16874:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16876:6:67","memberName":"length","nodeType":"MemberAccess","src":"16874:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":18930,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18900,"src":"16884:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16886:6:67","memberName":"length","nodeType":"MemberAccess","src":"16884:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18932,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18921,"src":"16894:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18933,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18898,"src":"16900:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18934,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18900,"src":"16903:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18935,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18902,"src":"16906:1:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":18926,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"16857:3:67","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":18927,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16861:12:67","memberName":"encodePacked","nodeType":"MemberAccess","src":"16857:16:67","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":18936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16857:51:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"16848:60:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18938,"nodeType":"ExpressionStatement","src":"16848:60:67"},{"AST":{"nativeSrc":"16944:496:67","nodeType":"YulBlock","src":"16944:496:67","statements":[{"nativeSrc":"16958:32:67","nodeType":"YulVariableDeclaration","src":"16958:32:67","value":{"arguments":[{"name":"result","nativeSrc":"16977:6:67","nodeType":"YulIdentifier","src":"16977:6:67"},{"kind":"number","nativeSrc":"16985:4:67","nodeType":"YulLiteral","src":"16985:4:67","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16973:3:67","nodeType":"YulIdentifier","src":"16973:3:67"},"nativeSrc":"16973:17:67","nodeType":"YulFunctionCall","src":"16973:17:67"},"variables":[{"name":"dataPtr","nativeSrc":"16962:7:67","nodeType":"YulTypedName","src":"16962:7:67","type":""}]},{"nativeSrc":"17080:73:67","nodeType":"YulAssignment","src":"17080:73:67","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"17102:3:67","nodeType":"YulIdentifier","src":"17102:3:67"},"nativeSrc":"17102:5:67","nodeType":"YulFunctionCall","src":"17102:5:67"},{"kind":"number","nativeSrc":"17109:4:67","nodeType":"YulLiteral","src":"17109:4:67","type":"","value":"0x05"},{"name":"dataPtr","nativeSrc":"17115:7:67","nodeType":"YulIdentifier","src":"17115:7:67"},{"arguments":[{"name":"result","nativeSrc":"17130:6:67","nodeType":"YulIdentifier","src":"17130:6:67"}],"functionName":{"name":"mload","nativeSrc":"17124:5:67","nodeType":"YulIdentifier","src":"17124:5:67"},"nativeSrc":"17124:13:67","nodeType":"YulFunctionCall","src":"17124:13:67"},{"name":"dataPtr","nativeSrc":"17139:7:67","nodeType":"YulIdentifier","src":"17139:7:67"},{"name":"mLen","nativeSrc":"17148:4:67","nodeType":"YulIdentifier","src":"17148:4:67"}],"functionName":{"name":"staticcall","nativeSrc":"17091:10:67","nodeType":"YulIdentifier","src":"17091:10:67"},"nativeSrc":"17091:62:67","nodeType":"YulFunctionCall","src":"17091:62:67"},"variableNames":[{"name":"success","nativeSrc":"17080:7:67","nodeType":"YulIdentifier","src":"17080:7:67"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"17309:6:67","nodeType":"YulIdentifier","src":"17309:6:67"},{"name":"mLen","nativeSrc":"17317:4:67","nodeType":"YulIdentifier","src":"17317:4:67"}],"functionName":{"name":"mstore","nativeSrc":"17302:6:67","nodeType":"YulIdentifier","src":"17302:6:67"},"nativeSrc":"17302:20:67","nodeType":"YulFunctionCall","src":"17302:20:67"},"nativeSrc":"17302:20:67","nodeType":"YulExpressionStatement","src":"17302:20:67"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17405:4:67","nodeType":"YulLiteral","src":"17405:4:67","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nativeSrc":"17415:7:67","nodeType":"YulIdentifier","src":"17415:7:67"},{"name":"mLen","nativeSrc":"17424:4:67","nodeType":"YulIdentifier","src":"17424:4:67"}],"functionName":{"name":"add","nativeSrc":"17411:3:67","nodeType":"YulIdentifier","src":"17411:3:67"},"nativeSrc":"17411:18:67","nodeType":"YulFunctionCall","src":"17411:18:67"}],"functionName":{"name":"mstore","nativeSrc":"17398:6:67","nodeType":"YulIdentifier","src":"17398:6:67"},"nativeSrc":"17398:32:67","nodeType":"YulFunctionCall","src":"17398:32:67"},"nativeSrc":"17398:32:67","nodeType":"YulExpressionStatement","src":"17398:32:67"}]},"evmVersion":"cancun","externalReferences":[{"declaration":18921,"isOffset":false,"isSlot":false,"src":"17148:4:67","valueSize":1},{"declaration":18921,"isOffset":false,"isSlot":false,"src":"17317:4:67","valueSize":1},{"declaration":18921,"isOffset":false,"isSlot":false,"src":"17424:4:67","valueSize":1},{"declaration":18907,"isOffset":false,"isSlot":false,"src":"16977:6:67","valueSize":1},{"declaration":18907,"isOffset":false,"isSlot":false,"src":"17130:6:67","valueSize":1},{"declaration":18907,"isOffset":false,"isSlot":false,"src":"17309:6:67","valueSize":1},{"declaration":18905,"isOffset":false,"isSlot":false,"src":"17080:7:67","valueSize":1}],"flags":["memory-safe"],"id":18939,"nodeType":"InlineAssembly","src":"16919:521:67"}]},"documentation":{"id":18896,"nodeType":"StructuredDocumentation","src":"16427:88:67","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":18941,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16529:9:67","nodeType":"FunctionDefinition","parameters":{"id":18903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18898,"mutability":"mutable","name":"b","nameLocation":"16561:1:67","nodeType":"VariableDeclaration","scope":18941,"src":"16548:14:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18897,"name":"bytes","nodeType":"ElementaryTypeName","src":"16548:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18900,"mutability":"mutable","name":"e","nameLocation":"16585:1:67","nodeType":"VariableDeclaration","scope":18941,"src":"16572:14:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18899,"name":"bytes","nodeType":"ElementaryTypeName","src":"16572:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18902,"mutability":"mutable","name":"m","nameLocation":"16609:1:67","nodeType":"VariableDeclaration","scope":18941,"src":"16596:14:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18901,"name":"bytes","nodeType":"ElementaryTypeName","src":"16596:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16538:78:67"},"returnParameters":{"id":18908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18905,"mutability":"mutable","name":"success","nameLocation":"16645:7:67","nodeType":"VariableDeclaration","scope":18941,"src":"16640:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18904,"name":"bool","nodeType":"ElementaryTypeName","src":"16640:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":18907,"mutability":"mutable","name":"result","nameLocation":"16667:6:67","nodeType":"VariableDeclaration","scope":18941,"src":"16654:19:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18906,"name":"bytes","nodeType":"ElementaryTypeName","src":"16654:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16639:35:67"},"scope":19814,"src":"16520:926:67","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":18973,"nodeType":"Block","src":"17601:176:67","statements":[{"body":{"id":18969,"nodeType":"Block","src":"17658:92:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18960,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18944,"src":"17676:9:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18962,"indexExpression":{"id":18961,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18950,"src":"17686:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17676:12:67","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":18963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17692:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17676:17:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18968,"nodeType":"IfStatement","src":"17672:68:67","trueBody":{"id":18967,"nodeType":"Block","src":"17695:45:67","statements":[{"expression":{"hexValue":"66616c7365","id":18965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17720:5:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":18948,"id":18966,"nodeType":"Return","src":"17713:12:67"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18953,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18950,"src":"17631:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":18954,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18944,"src":"17635:9:67","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17645:6:67","memberName":"length","nodeType":"MemberAccess","src":"17635:16:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17631:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18970,"initializationExpression":{"assignments":[18950],"declarations":[{"constant":false,"id":18950,"mutability":"mutable","name":"i","nameLocation":"17624:1:67","nodeType":"VariableDeclaration","scope":18970,"src":"17616:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18949,"name":"uint256","nodeType":"ElementaryTypeName","src":"17616:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18952,"initialValue":{"hexValue":"30","id":18951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17628:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17616:13:67"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":18958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17653:3:67","subExpression":{"id":18957,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18950,"src":"17655:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18959,"nodeType":"ExpressionStatement","src":"17653:3:67"},"nodeType":"ForStatement","src":"17611:139:67"},{"expression":{"hexValue":"74727565","id":18971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17766:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":18948,"id":18972,"nodeType":"Return","src":"17759:11:67"}]},"documentation":{"id":18942,"nodeType":"StructuredDocumentation","src":"17452:72:67","text":" @dev Returns whether the provided byte array is zero."},"id":18974,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"17538:10:67","nodeType":"FunctionDefinition","parameters":{"id":18945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18944,"mutability":"mutable","name":"byteArray","nameLocation":"17562:9:67","nodeType":"VariableDeclaration","scope":18974,"src":"17549:22:67","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18943,"name":"bytes","nodeType":"ElementaryTypeName","src":"17549:5:67","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17548:24:67"},"returnParameters":{"id":18948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18974,"src":"17595:4:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18946,"name":"bool","nodeType":"ElementaryTypeName","src":"17595:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17594:6:67"},"scope":19814,"src":"17529:248:67","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":19192,"nodeType":"Block","src":"18137:5124:67","statements":[{"id":19191,"nodeType":"UncheckedBlock","src":"18147:5108:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18982,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"18241:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":18983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18246:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18241:6:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18988,"nodeType":"IfStatement","src":"18237:53:67","trueBody":{"id":18987,"nodeType":"Block","src":"18249:41:67","statements":[{"expression":{"id":18985,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"18274:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18981,"id":18986,"nodeType":"Return","src":"18267:8:67"}]}},{"assignments":[18990],"declarations":[{"constant":false,"id":18990,"mutability":"mutable","name":"aa","nameLocation":"19225:2:67","nodeType":"VariableDeclaration","scope":19191,"src":"19217:10:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18989,"name":"uint256","nodeType":"ElementaryTypeName","src":"19217:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18992,"initialValue":{"id":18991,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"19230:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19217:14:67"},{"assignments":[18994],"declarations":[{"constant":false,"id":18994,"mutability":"mutable","name":"xn","nameLocation":"19253:2:67","nodeType":"VariableDeclaration","scope":19191,"src":"19245:10:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18993,"name":"uint256","nodeType":"ElementaryTypeName","src":"19245:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18996,"initialValue":{"hexValue":"31","id":18995,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19258:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"19245:14:67"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18997,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19278:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":19000,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":18998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19285:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":18999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19290:3:67","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19285:8:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":19001,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19284:10:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"19278:16:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19012,"nodeType":"IfStatement","src":"19274:92:67","trueBody":{"id":19011,"nodeType":"Block","src":"19296:70:67","statements":[{"expression":{"id":19005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19003,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19314:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":19004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19321:3:67","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"19314:10:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19006,"nodeType":"ExpressionStatement","src":"19314:10:67"},{"expression":{"id":19009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19007,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19342:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":19008,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19349:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19342:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19010,"nodeType":"ExpressionStatement","src":"19342:9:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19013,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19383:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":19016,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19390:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":19015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19395:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19390:7:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":19017,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19389:9:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"19383:15:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19028,"nodeType":"IfStatement","src":"19379:90:67","trueBody":{"id":19027,"nodeType":"Block","src":"19400:69:67","statements":[{"expression":{"id":19021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19019,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19418:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":19020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19425:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"19418:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19022,"nodeType":"ExpressionStatement","src":"19418:9:67"},{"expression":{"id":19025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19023,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19445:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":19024,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19452:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19445:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19026,"nodeType":"ExpressionStatement","src":"19445:9:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19029,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19486:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":19032,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19493:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":19031,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19498:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19493:7:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":19033,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19492:9:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"19486:15:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19044,"nodeType":"IfStatement","src":"19482:90:67","trueBody":{"id":19043,"nodeType":"Block","src":"19503:69:67","statements":[{"expression":{"id":19037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19035,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19521:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":19036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19528:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"19521:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19038,"nodeType":"ExpressionStatement","src":"19521:9:67"},{"expression":{"id":19041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19039,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19548:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":19040,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19555:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19548:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19042,"nodeType":"ExpressionStatement","src":"19548:9:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19045,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19589:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":19048,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19596:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":19047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19601:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19596:7:67","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":19049,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19595:9:67","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"19589:15:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19060,"nodeType":"IfStatement","src":"19585:89:67","trueBody":{"id":19059,"nodeType":"Block","src":"19606:68:67","statements":[{"expression":{"id":19053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19051,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19624:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":19052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19631:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"19624:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19054,"nodeType":"ExpressionStatement","src":"19624:9:67"},{"expression":{"id":19057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19055,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19651:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":19056,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19658:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19651:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19058,"nodeType":"ExpressionStatement","src":"19651:8:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19061,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19691:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":19064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19698:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":19063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19703:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19698:6:67","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":19065,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19697:8:67","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"19691:14:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19076,"nodeType":"IfStatement","src":"19687:87:67","trueBody":{"id":19075,"nodeType":"Block","src":"19707:67:67","statements":[{"expression":{"id":19069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19067,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19725:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":19068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19732:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"19725:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19070,"nodeType":"ExpressionStatement","src":"19725:8:67"},{"expression":{"id":19073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19071,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19751:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":19072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19758:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19751:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19074,"nodeType":"ExpressionStatement","src":"19751:8:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19077,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19791:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":19080,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19798:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":19079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19803:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19798:6:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":19081,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19797:8:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"19791:14:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19092,"nodeType":"IfStatement","src":"19787:87:67","trueBody":{"id":19091,"nodeType":"Block","src":"19807:67:67","statements":[{"expression":{"id":19085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19083,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19825:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":19084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19832:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19825:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19086,"nodeType":"ExpressionStatement","src":"19825:8:67"},{"expression":{"id":19089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19087,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19851:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":19088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19858:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19851:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19090,"nodeType":"ExpressionStatement","src":"19851:8:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19093,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18990,"src":"19891:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":19096,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19898:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":19095,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19903:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19898:6:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":19097,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19897:8:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"19891:14:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19104,"nodeType":"IfStatement","src":"19887:61:67","trueBody":{"id":19103,"nodeType":"Block","src":"19907:41:67","statements":[{"expression":{"id":19101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19099,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"19925:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":19100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19932:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19925:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19102,"nodeType":"ExpressionStatement","src":"19925:8:67"}]}},{"expression":{"id":19112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19105,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"20368:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":19106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20374:1:67","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":19107,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"20378:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20374:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19109,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20373:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19110,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20385:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20373:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20368:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19113,"nodeType":"ExpressionStatement","src":"20368:18:67"},{"expression":{"id":19123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19114,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22273:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19115,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22279:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19116,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"22284:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19117,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22288:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22284:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22279:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19120,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22278:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22295:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22278:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22273:23:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19124,"nodeType":"ExpressionStatement","src":"22273:23:67"},{"expression":{"id":19134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19125,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22382:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19126,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22388:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19127,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"22393:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19128,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22397:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22393:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22388:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19131,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22387:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22404:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22387:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22382:23:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19135,"nodeType":"ExpressionStatement","src":"22382:23:67"},{"expression":{"id":19145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19136,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22493:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19137,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22499:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19138,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"22504:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19139,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22508:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22504:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22499:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19142,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22498:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22515:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22498:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22493:23:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19146,"nodeType":"ExpressionStatement","src":"22493:23:67"},{"expression":{"id":19156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19147,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22602:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19148,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22608:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19149,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"22613:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19150,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22617:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22613:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22608:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19153,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22607:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22624:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22607:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22602:23:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19157,"nodeType":"ExpressionStatement","src":"22602:23:67"},{"expression":{"id":19167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19158,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22712:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19159,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22718:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19160,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"22723:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19161,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22727:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22723:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22718:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19164,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22717:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22734:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22717:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22712:23:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19168,"nodeType":"ExpressionStatement","src":"22712:23:67"},{"expression":{"id":19178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19169,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22822:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19170,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22828:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19171,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"22833:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19172,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"22837:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22833:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22828:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19175,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22827:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":19176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22844:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22827:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22822:23:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19179,"nodeType":"ExpressionStatement","src":"22822:23:67"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19180,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"23211:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19183,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"23232:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19184,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18977,"src":"23237:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":19185,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18994,"src":"23241:2:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23237:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23232:11:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19181,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"23216:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23225:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"23216:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23216:28:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23211:33:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18981,"id":19190,"nodeType":"Return","src":"23204:40:67"}]}]},"documentation":{"id":18975,"nodeType":"StructuredDocumentation","src":"17783:292:67","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n towards zero.\n This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n using integer operations."},"id":19193,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"18089:4:67","nodeType":"FunctionDefinition","parameters":{"id":18978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18977,"mutability":"mutable","name":"a","nameLocation":"18102:1:67","nodeType":"VariableDeclaration","scope":19193,"src":"18094:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18976,"name":"uint256","nodeType":"ElementaryTypeName","src":"18094:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18093:11:67"},"returnParameters":{"id":18981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19193,"src":"18128:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18979,"name":"uint256","nodeType":"ElementaryTypeName","src":"18128:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18127:9:67"},"scope":19814,"src":"18080:5181:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19226,"nodeType":"Block","src":"23434:171:67","statements":[{"id":19225,"nodeType":"UncheckedBlock","src":"23444:155:67","statements":[{"assignments":[19205],"declarations":[{"constant":false,"id":19205,"mutability":"mutable","name":"result","nameLocation":"23476:6:67","nodeType":"VariableDeclaration","scope":19225,"src":"23468:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19204,"name":"uint256","nodeType":"ElementaryTypeName","src":"23468:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19209,"initialValue":{"arguments":[{"id":19207,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19196,"src":"23490:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19206,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[19193,19227],"referencedDeclaration":19193,"src":"23485:4:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":19208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23485:7:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23468:24:67"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19210,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19205,"src":"23513:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19214,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19199,"src":"23555:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":19213,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19813,"src":"23538:16:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$18220_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":19215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23538:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19216,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19205,"src":"23568:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":19217,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19205,"src":"23577:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:15:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19219,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19196,"src":"23586:1:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23568:19:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23538:49:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19211,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"23522:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23531:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"23522:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23522:66:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23513:75:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19203,"id":19224,"nodeType":"Return","src":"23506:82:67"}]}]},"documentation":{"id":19194,"nodeType":"StructuredDocumentation","src":"23267:86:67","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":19227,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"23367:4:67","nodeType":"FunctionDefinition","parameters":{"id":19200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19196,"mutability":"mutable","name":"a","nameLocation":"23380:1:67","nodeType":"VariableDeclaration","scope":19227,"src":"23372:9:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19195,"name":"uint256","nodeType":"ElementaryTypeName","src":"23372:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19199,"mutability":"mutable","name":"rounding","nameLocation":"23392:8:67","nodeType":"VariableDeclaration","scope":19227,"src":"23383:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":19198,"nodeType":"UserDefinedTypeName","pathNode":{"id":19197,"name":"Rounding","nameLocations":["23383:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"23383:8:67"},"referencedDeclaration":18220,"src":"23383:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"23371:30:67"},"returnParameters":{"id":19203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19202,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19227,"src":"23425:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19201,"name":"uint256","nodeType":"ElementaryTypeName","src":"23425:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23424:9:67"},"scope":19814,"src":"23358:247:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19422,"nodeType":"Block","src":"23796:981:67","statements":[{"assignments":[19236],"declarations":[{"constant":false,"id":19236,"mutability":"mutable","name":"result","nameLocation":"23814:6:67","nodeType":"VariableDeclaration","scope":19422,"src":"23806:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19235,"name":"uint256","nodeType":"ElementaryTypeName","src":"23806:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19238,"initialValue":{"hexValue":"30","id":19237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23823:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"23806:18:67"},{"assignments":[19240],"declarations":[{"constant":false,"id":19240,"mutability":"mutable","name":"exp","nameLocation":"23842:3:67","nodeType":"VariableDeclaration","scope":19422,"src":"23834:11:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19239,"name":"uint256","nodeType":"ElementaryTypeName","src":"23834:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19241,"nodeType":"VariableDeclarationStatement","src":"23834:11:67"},{"id":19419,"nodeType":"UncheckedBlock","src":"23855:893:67","statements":[{"expression":{"id":19256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19242,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"23879:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"313238","id":19243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23885:3:67","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"23907:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":19252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":19249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23916:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":19248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23921:3:67","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"23916:8:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":19250,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23915:10:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19251,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23928:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"23915:14:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"23907:22:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19244,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"23891:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23900:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"23891:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23891:39:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23885:45:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23879:51:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19257,"nodeType":"ExpressionStatement","src":"23879:51:67"},{"expression":{"id":19260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"23944:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19259,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"23954:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23944:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19261,"nodeType":"ExpressionStatement","src":"23944:13:67"},{"expression":{"id":19264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19262,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"23971:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19263,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"23981:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23971:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19265,"nodeType":"ExpressionStatement","src":"23971:13:67"},{"expression":{"id":19280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19266,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"23999:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3634","id":19267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24005:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24026:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":19276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":19273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24035:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":19272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24040:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"24035:7:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":19274,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24034:9:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24046:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24034:13:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"24026:21:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19268,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24010:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24019:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24010:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24010:38:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24005:43:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23999:49:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19281,"nodeType":"ExpressionStatement","src":"23999:49:67"},{"expression":{"id":19284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19282,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24062:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19283,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24072:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24062:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19285,"nodeType":"ExpressionStatement","src":"24062:13:67"},{"expression":{"id":19288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19286,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24089:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19287,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24099:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24089:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19289,"nodeType":"ExpressionStatement","src":"24089:13:67"},{"expression":{"id":19304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19290,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24117:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3332","id":19291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24123:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24144:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":19300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":19297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24153:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":19296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24158:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"24153:7:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":19298,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24152:9:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24164:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24152:13:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"24144:21:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19292,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24128:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24137:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24128:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24128:38:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24123:43:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24117:49:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19305,"nodeType":"ExpressionStatement","src":"24117:49:67"},{"expression":{"id":19308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24180:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19307,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24190:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24180:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19309,"nodeType":"ExpressionStatement","src":"24180:13:67"},{"expression":{"id":19312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19310,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24207:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19311,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24217:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24207:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19313,"nodeType":"ExpressionStatement","src":"24207:13:67"},{"expression":{"id":19328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19314,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24235:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3136","id":19315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24241:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19318,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24262:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":19324,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":19321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24271:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":19320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24276:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"24271:7:67","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":19322,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24270:9:67","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24282:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24270:13:67","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"24262:21:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19316,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24246:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24255:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24246:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24246:38:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24241:43:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24235:49:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19329,"nodeType":"ExpressionStatement","src":"24235:49:67"},{"expression":{"id":19332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19330,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24298:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19331,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24308:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24298:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19333,"nodeType":"ExpressionStatement","src":"24298:13:67"},{"expression":{"id":19336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19334,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24325:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19335,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24335:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24325:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19337,"nodeType":"ExpressionStatement","src":"24325:13:67"},{"expression":{"id":19352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19338,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24353:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":19339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24359:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19342,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24379:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":19348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":19345,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24388:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":19344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24393:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"24388:6:67","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":19346,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24387:8:67","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24398:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24387:12:67","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"24379:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19340,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24363:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24372:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24363:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24363:37:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24359:41:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24353:47:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19353,"nodeType":"ExpressionStatement","src":"24353:47:67"},{"expression":{"id":19356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19354,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24414:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19355,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24424:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24414:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19357,"nodeType":"ExpressionStatement","src":"24414:13:67"},{"expression":{"id":19360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19358,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24441:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19359,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24451:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24441:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19361,"nodeType":"ExpressionStatement","src":"24441:13:67"},{"expression":{"id":19376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19362,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24469:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"34","id":19363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24475:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19366,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24495:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"id":19372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":19369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24504:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":19368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24509:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"24504:6:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":19370,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24503:8:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24514:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24503:12:67","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"}},"src":"24495:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19364,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24479:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24488:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24479:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24479:37:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24475:41:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24469:47:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19377,"nodeType":"ExpressionStatement","src":"24469:47:67"},{"expression":{"id":19380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19378,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24530:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19379,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24540:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24530:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19381,"nodeType":"ExpressionStatement","src":"24530:13:67"},{"expression":{"id":19384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19382,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24557:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19383,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24567:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24557:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19385,"nodeType":"ExpressionStatement","src":"24557:13:67"},{"expression":{"id":19400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19386,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24585:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":19387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24591:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19390,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24611:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"id":19396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":19393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24620:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":19392,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24625:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"24620:6:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":19394,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"24619:8:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24630:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24619:12:67","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}},"src":"24611:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19388,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24595:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24604:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24595:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24595:37:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24591:41:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24585:47:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19401,"nodeType":"ExpressionStatement","src":"24585:47:67"},{"expression":{"id":19404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19402,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24646:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"id":19403,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24656:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24646:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19405,"nodeType":"ExpressionStatement","src":"24646:13:67"},{"expression":{"id":19408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19406,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24673:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19407,"name":"exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19240,"src":"24683:3:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24673:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19409,"nodeType":"ExpressionStatement","src":"24673:13:67"},{"expression":{"id":19417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19410,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24701:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19413,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19230,"src":"24727:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":19414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24735:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24727:9:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19411,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"24711:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24720:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"24711:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24711:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24701:36:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19418,"nodeType":"ExpressionStatement","src":"24701:36:67"}]},{"expression":{"id":19420,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19236,"src":"24764:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19234,"id":19421,"nodeType":"Return","src":"24757:13:67"}]},"documentation":{"id":19228,"nodeType":"StructuredDocumentation","src":"23611:119:67","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":19423,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"23744:4:67","nodeType":"FunctionDefinition","parameters":{"id":19231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19230,"mutability":"mutable","name":"value","nameLocation":"23757:5:67","nodeType":"VariableDeclaration","scope":19423,"src":"23749:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19229,"name":"uint256","nodeType":"ElementaryTypeName","src":"23749:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23748:15:67"},"returnParameters":{"id":19234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19233,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19423,"src":"23787:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19232,"name":"uint256","nodeType":"ElementaryTypeName","src":"23787:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23786:9:67"},"scope":19814,"src":"23735:1042:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19456,"nodeType":"Block","src":"25010:175:67","statements":[{"id":19455,"nodeType":"UncheckedBlock","src":"25020:159:67","statements":[{"assignments":[19435],"declarations":[{"constant":false,"id":19435,"mutability":"mutable","name":"result","nameLocation":"25052:6:67","nodeType":"VariableDeclaration","scope":19455,"src":"25044:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19434,"name":"uint256","nodeType":"ElementaryTypeName","src":"25044:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19439,"initialValue":{"arguments":[{"id":19437,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19426,"src":"25066:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19436,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[19423,19457],"referencedDeclaration":19423,"src":"25061:4:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":19438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25061:11:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25044:28:67"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19440,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19435,"src":"25093:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19444,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19429,"src":"25135:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":19443,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19813,"src":"25118:16:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$18220_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":19445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25118:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25148:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":19447,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19435,"src":"25153:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19449,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19426,"src":"25162:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25148:19:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25118:49:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19441,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"25102:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25111:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"25102:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25102:66:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25093:75:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19433,"id":19454,"nodeType":"Return","src":"25086:82:67"}]}]},"documentation":{"id":19424,"nodeType":"StructuredDocumentation","src":"24783:142:67","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":19457,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"24939:4:67","nodeType":"FunctionDefinition","parameters":{"id":19430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19426,"mutability":"mutable","name":"value","nameLocation":"24952:5:67","nodeType":"VariableDeclaration","scope":19457,"src":"24944:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19425,"name":"uint256","nodeType":"ElementaryTypeName","src":"24944:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19429,"mutability":"mutable","name":"rounding","nameLocation":"24968:8:67","nodeType":"VariableDeclaration","scope":19457,"src":"24959:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":19428,"nodeType":"UserDefinedTypeName","pathNode":{"id":19427,"name":"Rounding","nameLocations":["24959:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"24959:8:67"},"referencedDeclaration":18220,"src":"24959:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"24943:34:67"},"returnParameters":{"id":19433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19432,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19457,"src":"25001:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19431,"name":"uint256","nodeType":"ElementaryTypeName","src":"25001:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25000:9:67"},"scope":19814,"src":"24930:255:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19585,"nodeType":"Block","src":"25378:854:67","statements":[{"assignments":[19466],"declarations":[{"constant":false,"id":19466,"mutability":"mutable","name":"result","nameLocation":"25396:6:67","nodeType":"VariableDeclaration","scope":19585,"src":"25388:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19465,"name":"uint256","nodeType":"ElementaryTypeName","src":"25388:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19468,"initialValue":{"hexValue":"30","id":19467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25405:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"25388:18:67"},{"id":19582,"nodeType":"UncheckedBlock","src":"25416:787:67","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19469,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25444:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":19472,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25453:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":19471,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25459:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25453:8:67","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25444:17:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19485,"nodeType":"IfStatement","src":"25440:103:67","trueBody":{"id":19484,"nodeType":"Block","src":"25463:80:67","statements":[{"expression":{"id":19478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25481:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":19477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25490:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":19476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25496:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25490:8:67","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"25481:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19479,"nodeType":"ExpressionStatement","src":"25481:17:67"},{"expression":{"id":19482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19480,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"25516:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":19481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25526:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"25516:12:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19483,"nodeType":"ExpressionStatement","src":"25516:12:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19486,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25560:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":19489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25569:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":19488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25575:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25569:8:67","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25560:17:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19502,"nodeType":"IfStatement","src":"25556:103:67","trueBody":{"id":19501,"nodeType":"Block","src":"25579:80:67","statements":[{"expression":{"id":19495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19491,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25597:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":19494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25606:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":19493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25612:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25606:8:67","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"25597:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19496,"nodeType":"ExpressionStatement","src":"25597:17:67"},{"expression":{"id":19499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19497,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"25632:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":19498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25642:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"25632:12:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19500,"nodeType":"ExpressionStatement","src":"25632:12:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19503,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25676:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":19506,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19504,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25685:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":19505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25691:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25685:8:67","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25676:17:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19519,"nodeType":"IfStatement","src":"25672:103:67","trueBody":{"id":19518,"nodeType":"Block","src":"25695:80:67","statements":[{"expression":{"id":19512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19508,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25713:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":19511,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25722:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":19510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25728:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25722:8:67","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"25713:17:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19513,"nodeType":"ExpressionStatement","src":"25713:17:67"},{"expression":{"id":19516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19514,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"25748:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":19515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25758:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"25748:12:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19517,"nodeType":"ExpressionStatement","src":"25748:12:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25792:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":19523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25801:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":19522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25807:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25801:7:67","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25792:16:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19536,"nodeType":"IfStatement","src":"25788:100:67","trueBody":{"id":19535,"nodeType":"Block","src":"25810:78:67","statements":[{"expression":{"id":19529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19525,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25828:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":19528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19526,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25837:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":19527,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25843:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25837:7:67","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"25828:16:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19530,"nodeType":"ExpressionStatement","src":"25828:16:67"},{"expression":{"id":19533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19531,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"25862:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":19532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25872:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"25862:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19534,"nodeType":"ExpressionStatement","src":"25862:11:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25905:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":19540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25914:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":19539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25920:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25914:7:67","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25905:16:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19553,"nodeType":"IfStatement","src":"25901:100:67","trueBody":{"id":19552,"nodeType":"Block","src":"25923:78:67","statements":[{"expression":{"id":19546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19542,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"25941:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":19545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25950:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":19544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25956:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25950:7:67","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"25941:16:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19547,"nodeType":"ExpressionStatement","src":"25941:16:67"},{"expression":{"id":19550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19548,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"25975:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":19549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25985:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25975:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19551,"nodeType":"ExpressionStatement","src":"25975:11:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19554,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"26018:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":19557,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19555,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26027:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":19556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26033:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26027:7:67","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26018:16:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19570,"nodeType":"IfStatement","src":"26014:100:67","trueBody":{"id":19569,"nodeType":"Block","src":"26036:78:67","statements":[{"expression":{"id":19563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19559,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"26054:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":19562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19560,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26063:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":19561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26069:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26063:7:67","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"26054:16:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19564,"nodeType":"ExpressionStatement","src":"26054:16:67"},{"expression":{"id":19567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19565,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"26088:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":19566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26098:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26088:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19568,"nodeType":"ExpressionStatement","src":"26088:11:67"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19571,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19460,"src":"26131:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":19574,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26140:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":19573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26146:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26140:7:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"26131:16:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19581,"nodeType":"IfStatement","src":"26127:66:67","trueBody":{"id":19580,"nodeType":"Block","src":"26149:44:67","statements":[{"expression":{"id":19578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19576,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"26167:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":19577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26177:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26167:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19579,"nodeType":"ExpressionStatement","src":"26167:11:67"}]}}]},{"expression":{"id":19583,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19466,"src":"26219:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19464,"id":19584,"nodeType":"Return","src":"26212:13:67"}]},"documentation":{"id":19458,"nodeType":"StructuredDocumentation","src":"25191:120:67","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":19586,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"25325:5:67","nodeType":"FunctionDefinition","parameters":{"id":19461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19460,"mutability":"mutable","name":"value","nameLocation":"25339:5:67","nodeType":"VariableDeclaration","scope":19586,"src":"25331:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19459,"name":"uint256","nodeType":"ElementaryTypeName","src":"25331:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25330:15:67"},"returnParameters":{"id":19464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19586,"src":"25369:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19462,"name":"uint256","nodeType":"ElementaryTypeName","src":"25369:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25368:9:67"},"scope":19814,"src":"25316:916:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19619,"nodeType":"Block","src":"26467:177:67","statements":[{"id":19618,"nodeType":"UncheckedBlock","src":"26477:161:67","statements":[{"assignments":[19598],"declarations":[{"constant":false,"id":19598,"mutability":"mutable","name":"result","nameLocation":"26509:6:67","nodeType":"VariableDeclaration","scope":19618,"src":"26501:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19597,"name":"uint256","nodeType":"ElementaryTypeName","src":"26501:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19602,"initialValue":{"arguments":[{"id":19600,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19589,"src":"26524:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19599,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[19586,19620],"referencedDeclaration":19586,"src":"26518:5:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":19601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26518:12:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26501:29:67"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19603,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19598,"src":"26551:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19607,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19592,"src":"26593:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":19606,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19813,"src":"26576:16:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$18220_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":19608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26576:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":19609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26606:2:67","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":19610,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19598,"src":"26612:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:12:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19612,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19589,"src":"26621:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26606:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26576:50:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19604,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"26560:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26569:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"26560:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26560:67:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26551:76:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19596,"id":19617,"nodeType":"Return","src":"26544:83:67"}]}]},"documentation":{"id":19587,"nodeType":"StructuredDocumentation","src":"26238:143:67","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":19620,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"26395:5:67","nodeType":"FunctionDefinition","parameters":{"id":19593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19589,"mutability":"mutable","name":"value","nameLocation":"26409:5:67","nodeType":"VariableDeclaration","scope":19620,"src":"26401:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19588,"name":"uint256","nodeType":"ElementaryTypeName","src":"26401:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19592,"mutability":"mutable","name":"rounding","nameLocation":"26425:8:67","nodeType":"VariableDeclaration","scope":19620,"src":"26416:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":19591,"nodeType":"UserDefinedTypeName","pathNode":{"id":19590,"name":"Rounding","nameLocations":["26416:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"26416:8:67"},"referencedDeclaration":18220,"src":"26416:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"26400:34:67"},"returnParameters":{"id":19596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19620,"src":"26458:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19594,"name":"uint256","nodeType":"ElementaryTypeName","src":"26458:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26457:9:67"},"scope":19814,"src":"26386:258:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19756,"nodeType":"Block","src":"26964:674:67","statements":[{"assignments":[19629],"declarations":[{"constant":false,"id":19629,"mutability":"mutable","name":"result","nameLocation":"26982:6:67","nodeType":"VariableDeclaration","scope":19756,"src":"26974:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19628,"name":"uint256","nodeType":"ElementaryTypeName","src":"26974:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19631,"initialValue":{"hexValue":"30","id":19630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26991:1:67","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"26974:18:67"},{"assignments":[19633],"declarations":[{"constant":false,"id":19633,"mutability":"mutable","name":"isGt","nameLocation":"27010:4:67","nodeType":"VariableDeclaration","scope":19756,"src":"27002:12:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19632,"name":"uint256","nodeType":"ElementaryTypeName","src":"27002:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19634,"nodeType":"VariableDeclarationStatement","src":"27002:12:67"},{"id":19753,"nodeType":"UncheckedBlock","src":"27024:585:67","statements":[{"expression":{"id":19647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19635,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27048:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19638,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27071:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"id":19644,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":19641,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27080:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":19640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27085:3:67","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27080:8:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":19642,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27079:10:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27092:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27079:14:67","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"}},"src":"27071:22:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19636,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"27055:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27064:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"27055:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27055:39:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27048:46:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19648,"nodeType":"ExpressionStatement","src":"27048:46:67"},{"expression":{"id":19653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19649,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27108:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19650,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27118:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"313238","id":19651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27125:3:67","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"27118:10:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27108:20:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19654,"nodeType":"ExpressionStatement","src":"27108:20:67"},{"expression":{"id":19659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19655,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"27142:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19656,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27152:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":19657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27159:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27152:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27142:19:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19660,"nodeType":"ExpressionStatement","src":"27142:19:67"},{"expression":{"id":19673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19661,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27176:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19664,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27199:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"id":19670,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":19667,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27208:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":19666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27213:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27208:7:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":19668,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27207:9:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27219:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27207:13:67","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"}},"src":"27199:21:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19662,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"27183:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27192:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"27183:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27183:38:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27176:45:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19674,"nodeType":"ExpressionStatement","src":"27176:45:67"},{"expression":{"id":19679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19675,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27235:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19676,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27245:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3634","id":19677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27252:2:67","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"27245:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27235:19:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19680,"nodeType":"ExpressionStatement","src":"27235:19:67"},{"expression":{"id":19685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19681,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"27268:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19682,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27278:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"38","id":19683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27285:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27278:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27268:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19686,"nodeType":"ExpressionStatement","src":"27268:18:67"},{"expression":{"id":19699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19687,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27301:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19690,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27324:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"id":19696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":19693,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19691,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27333:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":19692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27338:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27333:7:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":19694,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27332:9:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27344:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27332:13:67","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"}},"src":"27324:21:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19688,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"27308:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27317:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"27308:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27308:38:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27301:45:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19700,"nodeType":"ExpressionStatement","src":"27301:45:67"},{"expression":{"id":19705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19701,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27360:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19702,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27370:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":19703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27377:2:67","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"27370:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27360:19:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19706,"nodeType":"ExpressionStatement","src":"27360:19:67"},{"expression":{"id":19711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19707,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"27393:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19708,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27403:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"34","id":19709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27410:1:67","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27403:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27393:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19712,"nodeType":"ExpressionStatement","src":"27393:18:67"},{"expression":{"id":19725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19713,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27426:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19716,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27449:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"id":19722,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":19719,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27458:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":19718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27463:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27458:7:67","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":19720,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27457:9:67","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27469:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27457:13:67","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"}},"src":"27449:21:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19714,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"27433:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27442:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"27433:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27433:38:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27426:45:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19726,"nodeType":"ExpressionStatement","src":"27426:45:67"},{"expression":{"id":19731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19727,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27485:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19728,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27495:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":19729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27502:2:67","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"27495:9:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27485:19:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19732,"nodeType":"ExpressionStatement","src":"27485:19:67"},{"expression":{"id":19737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19733,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"27518:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19734,"name":"isGt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"27528:4:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":19735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27535:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"27528:8:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27518:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19738,"nodeType":"ExpressionStatement","src":"27518:18:67"},{"expression":{"id":19751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19739,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"27551:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19742,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19623,"src":"27577:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"id":19748,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":19745,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27586:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":19744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27591:1:67","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27586:6:67","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":19746,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27585:8:67","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27596:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"27585:12:67","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"}},"src":"27577:20:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19740,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"27561:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27570:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"27561:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27561:37:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27551:47:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19752,"nodeType":"ExpressionStatement","src":"27551:47:67"}]},{"expression":{"id":19754,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"27625:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19627,"id":19755,"nodeType":"Return","src":"27618:13:67"}]},"documentation":{"id":19621,"nodeType":"StructuredDocumentation","src":"26650:246:67","text":" @dev Return the log in base 256 of a positive value rounded towards zero.\n Returns 0 if given 0.\n Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string."},"id":19757,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"26910:6:67","nodeType":"FunctionDefinition","parameters":{"id":19624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19623,"mutability":"mutable","name":"value","nameLocation":"26925:5:67","nodeType":"VariableDeclaration","scope":19757,"src":"26917:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19622,"name":"uint256","nodeType":"ElementaryTypeName","src":"26917:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26916:15:67"},"returnParameters":{"id":19627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19626,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19757,"src":"26955:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19625,"name":"uint256","nodeType":"ElementaryTypeName","src":"26955:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26954:9:67"},"scope":19814,"src":"26901:737:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19793,"nodeType":"Block","src":"27875:184:67","statements":[{"id":19792,"nodeType":"UncheckedBlock","src":"27885:168:67","statements":[{"assignments":[19769],"declarations":[{"constant":false,"id":19769,"mutability":"mutable","name":"result","nameLocation":"27917:6:67","nodeType":"VariableDeclaration","scope":19792,"src":"27909:14:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19768,"name":"uint256","nodeType":"ElementaryTypeName","src":"27909:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19773,"initialValue":{"arguments":[{"id":19771,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19760,"src":"27933:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19770,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[19757,19794],"referencedDeclaration":19757,"src":"27926:6:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":19772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27926:13:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27909:30:67"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19774,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19769,"src":"27960:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19778,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19763,"src":"28002:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":19777,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19813,"src":"27985:16:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$18220_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":19779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27985:26:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19780,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28015:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19781,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19769,"src":"28021:6:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":19782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28031:1:67","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"28021:11:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":19784,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28020:13:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:18:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19786,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19760,"src":"28036:5:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28015:26:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27985:56:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":19775,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"27969:8:67","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":19776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27978:6:67","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"27969:15:67","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":19789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27969:73:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27960:82:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":19767,"id":19791,"nodeType":"Return","src":"27953:89:67"}]}]},"documentation":{"id":19758,"nodeType":"StructuredDocumentation","src":"27644:144:67","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":19794,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"27802:6:67","nodeType":"FunctionDefinition","parameters":{"id":19764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19760,"mutability":"mutable","name":"value","nameLocation":"27817:5:67","nodeType":"VariableDeclaration","scope":19794,"src":"27809:13:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19759,"name":"uint256","nodeType":"ElementaryTypeName","src":"27809:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19763,"mutability":"mutable","name":"rounding","nameLocation":"27833:8:67","nodeType":"VariableDeclaration","scope":19794,"src":"27824:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":19762,"nodeType":"UserDefinedTypeName","pathNode":{"id":19761,"name":"Rounding","nameLocations":["27824:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"27824:8:67"},"referencedDeclaration":18220,"src":"27824:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"27808:34:67"},"returnParameters":{"id":19767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19794,"src":"27866:7:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19765,"name":"uint256","nodeType":"ElementaryTypeName","src":"27866:7:67","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27865:9:67"},"scope":19814,"src":"27793:266:67","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19812,"nodeType":"Block","src":"28257:48:67","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19805,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19798,"src":"28280:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"id":19804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28274:5:67","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":19803,"name":"uint8","nodeType":"ElementaryTypeName","src":"28274:5:67","typeDescriptions":{}}},"id":19806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28274:15:67","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":19807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28292:1:67","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"28274:19:67","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":19809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28297:1:67","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"28274:24:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":19802,"id":19811,"nodeType":"Return","src":"28267:31:67"}]},"documentation":{"id":19795,"nodeType":"StructuredDocumentation","src":"28065:113:67","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":19813,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"28192:16:67","nodeType":"FunctionDefinition","parameters":{"id":19799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19798,"mutability":"mutable","name":"rounding","nameLocation":"28218:8:67","nodeType":"VariableDeclaration","scope":19813,"src":"28209:17:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":19797,"nodeType":"UserDefinedTypeName","pathNode":{"id":19796,"name":"Rounding","nameLocations":["28209:8:67"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"28209:8:67"},"referencedDeclaration":18220,"src":"28209:8:67","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28208:19:67"},"returnParameters":{"id":19802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19801,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19813,"src":"28251:4:67","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19800,"name":"bool","nodeType":"ElementaryTypeName","src":"28251:4:67","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28250:6:67"},"scope":19814,"src":"28183:122:67","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":19815,"src":"281:28026:67","usedErrors":[],"usedEvents":[]}],"src":"103:28205:67"},"id":67},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[21579]},"id":21580,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":19816,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:68"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":19817,"nodeType":"StructuredDocumentation","src":"218:550:68","text":" @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always."},"fullyImplemented":true,"id":21579,"linearizedBaseContracts":[21579],"name":"SafeCast","nameLocation":"777:8:68","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":19818,"nodeType":"StructuredDocumentation","src":"792:68:68","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":19824,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:68","nodeType":"ErrorDefinition","parameters":{"id":19823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19820,"mutability":"mutable","name":"bits","nameLocation":"908:4:68","nodeType":"VariableDeclaration","scope":19824,"src":"902:10:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":19819,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:68","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":19822,"mutability":"mutable","name":"value","nameLocation":"922:5:68","nodeType":"VariableDeclaration","scope":19824,"src":"914:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19821,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:68"},"src":"865:64:68"},{"documentation":{"id":19825,"nodeType":"StructuredDocumentation","src":"935:75:68","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":19829,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:68","nodeType":"ErrorDefinition","parameters":{"id":19828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19827,"mutability":"mutable","name":"value","nameLocation":"1056:5:68","nodeType":"VariableDeclaration","scope":19829,"src":"1049:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19826,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:68"},"src":"1015:48:68"},{"documentation":{"id":19830,"nodeType":"StructuredDocumentation","src":"1069:67:68","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":19836,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:68","nodeType":"ErrorDefinition","parameters":{"id":19835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19832,"mutability":"mutable","name":"bits","nameLocation":"1183:4:68","nodeType":"VariableDeclaration","scope":19836,"src":"1177:10:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":19831,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:68","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":19834,"mutability":"mutable","name":"value","nameLocation":"1196:5:68","nodeType":"VariableDeclaration","scope":19836,"src":"1189:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19833,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:68"},"src":"1141:62:68"},{"documentation":{"id":19837,"nodeType":"StructuredDocumentation","src":"1209:75:68","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":19841,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:68","nodeType":"ErrorDefinition","parameters":{"id":19840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19839,"mutability":"mutable","name":"value","nameLocation":"1331:5:68","nodeType":"VariableDeclaration","scope":19841,"src":"1323:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19838,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:68"},"src":"1289:49:68"},{"body":{"id":19868,"nodeType":"Block","src":"1695:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19849,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"1709:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":19852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":19851,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":19850,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":19854,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:68","memberName":"max","nodeType":"MemberAccess","src":"1717:17:68","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19862,"nodeType":"IfStatement","src":"1705:105:68","trueBody":{"id":19861,"nodeType":"Block","src":"1736:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":19857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:68","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":19858,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"1793:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19856,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"1757:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":19859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19860,"nodeType":"RevertStatement","src":"1750:49:68"}]}},{"expression":{"arguments":[{"id":19865,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"1834:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":19863,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:68","typeDescriptions":{}}},"id":19866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":19848,"id":19867,"nodeType":"Return","src":"1819:21:68"}]},"documentation":{"id":19842,"nodeType":"StructuredDocumentation","src":"1344:280:68","text":" @dev Returns the downcasted uint248 from uint256, reverting on\n overflow (when the input is greater than largest uint248).\n Counterpart to Solidity's `uint248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":19869,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:68","nodeType":"FunctionDefinition","parameters":{"id":19845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19844,"mutability":"mutable","name":"value","nameLocation":"1656:5:68","nodeType":"VariableDeclaration","scope":19869,"src":"1648:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19843,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:68"},"returnParameters":{"id":19848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19847,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19869,"src":"1686:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":19846,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:68","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:68"},"scope":21579,"src":"1629:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19896,"nodeType":"Block","src":"2204:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19877,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19872,"src":"2218:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":19880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":19879,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":19878,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":19882,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:68","memberName":"max","nodeType":"MemberAccess","src":"2226:17:68","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19890,"nodeType":"IfStatement","src":"2214:105:68","trueBody":{"id":19889,"nodeType":"Block","src":"2245:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":19885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:68","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":19886,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19872,"src":"2302:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19884,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"2266:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":19887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19888,"nodeType":"RevertStatement","src":"2259:49:68"}]}},{"expression":{"arguments":[{"id":19893,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19872,"src":"2343:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19892,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":19891,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:68","typeDescriptions":{}}},"id":19894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":19876,"id":19895,"nodeType":"Return","src":"2328:21:68"}]},"documentation":{"id":19870,"nodeType":"StructuredDocumentation","src":"1853:280:68","text":" @dev Returns the downcasted uint240 from uint256, reverting on\n overflow (when the input is greater than largest uint240).\n Counterpart to Solidity's `uint240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":19897,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:68","nodeType":"FunctionDefinition","parameters":{"id":19873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19872,"mutability":"mutable","name":"value","nameLocation":"2165:5:68","nodeType":"VariableDeclaration","scope":19897,"src":"2157:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19871,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:68"},"returnParameters":{"id":19876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19897,"src":"2195:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":19874,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:68","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:68"},"scope":21579,"src":"2138:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19924,"nodeType":"Block","src":"2713:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19905,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19900,"src":"2727:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":19908,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":19907,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":19906,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":19910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:68","memberName":"max","nodeType":"MemberAccess","src":"2735:17:68","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19918,"nodeType":"IfStatement","src":"2723:105:68","trueBody":{"id":19917,"nodeType":"Block","src":"2754:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":19913,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:68","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":19914,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19900,"src":"2811:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19912,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"2775:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":19915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19916,"nodeType":"RevertStatement","src":"2768:49:68"}]}},{"expression":{"arguments":[{"id":19921,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19900,"src":"2852:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":19919,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:68","typeDescriptions":{}}},"id":19922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":19904,"id":19923,"nodeType":"Return","src":"2837:21:68"}]},"documentation":{"id":19898,"nodeType":"StructuredDocumentation","src":"2362:280:68","text":" @dev Returns the downcasted uint232 from uint256, reverting on\n overflow (when the input is greater than largest uint232).\n Counterpart to Solidity's `uint232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":19925,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:68","nodeType":"FunctionDefinition","parameters":{"id":19901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19900,"mutability":"mutable","name":"value","nameLocation":"2674:5:68","nodeType":"VariableDeclaration","scope":19925,"src":"2666:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19899,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:68"},"returnParameters":{"id":19904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19903,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19925,"src":"2704:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":19902,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:68","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:68"},"scope":21579,"src":"2647:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19952,"nodeType":"Block","src":"3222:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19933,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19928,"src":"3236:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":19936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":19935,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":19934,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19937,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":19938,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:68","memberName":"max","nodeType":"MemberAccess","src":"3244:17:68","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19946,"nodeType":"IfStatement","src":"3232:105:68","trueBody":{"id":19945,"nodeType":"Block","src":"3263:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":19941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:68","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":19942,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19928,"src":"3320:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19940,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"3284:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":19943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19944,"nodeType":"RevertStatement","src":"3277:49:68"}]}},{"expression":{"arguments":[{"id":19949,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19928,"src":"3361:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19948,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":19947,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:68","typeDescriptions":{}}},"id":19950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":19932,"id":19951,"nodeType":"Return","src":"3346:21:68"}]},"documentation":{"id":19926,"nodeType":"StructuredDocumentation","src":"2871:280:68","text":" @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":19953,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:68","nodeType":"FunctionDefinition","parameters":{"id":19929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19928,"mutability":"mutable","name":"value","nameLocation":"3183:5:68","nodeType":"VariableDeclaration","scope":19953,"src":"3175:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19927,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:68"},"returnParameters":{"id":19932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19931,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19953,"src":"3213:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":19930,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:68","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:68"},"scope":21579,"src":"3156:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19980,"nodeType":"Block","src":"3731:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19961,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19956,"src":"3745:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":19964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":19963,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":19962,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":19966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:68","memberName":"max","nodeType":"MemberAccess","src":"3753:17:68","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19974,"nodeType":"IfStatement","src":"3741:105:68","trueBody":{"id":19973,"nodeType":"Block","src":"3772:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":19969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:68","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":19970,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19956,"src":"3829:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19968,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"3793:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":19971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19972,"nodeType":"RevertStatement","src":"3786:49:68"}]}},{"expression":{"arguments":[{"id":19977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19956,"src":"3870:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19976,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":19975,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:68","typeDescriptions":{}}},"id":19978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":19960,"id":19979,"nodeType":"Return","src":"3855:21:68"}]},"documentation":{"id":19954,"nodeType":"StructuredDocumentation","src":"3380:280:68","text":" @dev Returns the downcasted uint216 from uint256, reverting on\n overflow (when the input is greater than largest uint216).\n Counterpart to Solidity's `uint216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":19981,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:68","nodeType":"FunctionDefinition","parameters":{"id":19957,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19956,"mutability":"mutable","name":"value","nameLocation":"3692:5:68","nodeType":"VariableDeclaration","scope":19981,"src":"3684:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19955,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:68"},"returnParameters":{"id":19960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19959,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19981,"src":"3722:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":19958,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:68","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:68"},"scope":21579,"src":"3665:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20008,"nodeType":"Block","src":"4240:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19989,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19984,"src":"4254:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":19992,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":19991,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":19990,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":19994,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:68","memberName":"max","nodeType":"MemberAccess","src":"4262:17:68","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20002,"nodeType":"IfStatement","src":"4250:105:68","trueBody":{"id":20001,"nodeType":"Block","src":"4281:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":19997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:68","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":19998,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19984,"src":"4338:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19996,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"4302:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":19999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20000,"nodeType":"RevertStatement","src":"4295:49:68"}]}},{"expression":{"arguments":[{"id":20005,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19984,"src":"4379:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":20003,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:68","typeDescriptions":{}}},"id":20006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":19988,"id":20007,"nodeType":"Return","src":"4364:21:68"}]},"documentation":{"id":19982,"nodeType":"StructuredDocumentation","src":"3889:280:68","text":" @dev Returns the downcasted uint208 from uint256, reverting on\n overflow (when the input is greater than largest uint208).\n Counterpart to Solidity's `uint208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":20009,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:68","nodeType":"FunctionDefinition","parameters":{"id":19985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19984,"mutability":"mutable","name":"value","nameLocation":"4201:5:68","nodeType":"VariableDeclaration","scope":20009,"src":"4193:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19983,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:68"},"returnParameters":{"id":19988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20009,"src":"4231:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":19986,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:68","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:68"},"scope":21579,"src":"4174:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20036,"nodeType":"Block","src":"4749:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20017,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20012,"src":"4763:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":20019,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":20018,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":20022,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:68","memberName":"max","nodeType":"MemberAccess","src":"4771:17:68","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20030,"nodeType":"IfStatement","src":"4759:105:68","trueBody":{"id":20029,"nodeType":"Block","src":"4790:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":20025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:68","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":20026,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20012,"src":"4847:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20024,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"4811:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20027,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20028,"nodeType":"RevertStatement","src":"4804:49:68"}]}},{"expression":{"arguments":[{"id":20033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20012,"src":"4888:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20032,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":20031,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:68","typeDescriptions":{}}},"id":20034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":20016,"id":20035,"nodeType":"Return","src":"4873:21:68"}]},"documentation":{"id":20010,"nodeType":"StructuredDocumentation","src":"4398:280:68","text":" @dev Returns the downcasted uint200 from uint256, reverting on\n overflow (when the input is greater than largest uint200).\n Counterpart to Solidity's `uint200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":20037,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:68","nodeType":"FunctionDefinition","parameters":{"id":20013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20012,"mutability":"mutable","name":"value","nameLocation":"4710:5:68","nodeType":"VariableDeclaration","scope":20037,"src":"4702:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20011,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:68"},"returnParameters":{"id":20016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20015,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20037,"src":"4740:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":20014,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:68","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:68"},"scope":21579,"src":"4683:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20064,"nodeType":"Block","src":"5258:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20045,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20040,"src":"5272:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20048,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":20047,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":20046,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":20050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:68","memberName":"max","nodeType":"MemberAccess","src":"5280:17:68","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20058,"nodeType":"IfStatement","src":"5268:105:68","trueBody":{"id":20057,"nodeType":"Block","src":"5299:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":20053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:68","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":20054,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20040,"src":"5356:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20052,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"5320:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20056,"nodeType":"RevertStatement","src":"5313:49:68"}]}},{"expression":{"arguments":[{"id":20061,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20040,"src":"5397:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20060,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":20059,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:68","typeDescriptions":{}}},"id":20062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":20044,"id":20063,"nodeType":"Return","src":"5382:21:68"}]},"documentation":{"id":20038,"nodeType":"StructuredDocumentation","src":"4907:280:68","text":" @dev Returns the downcasted uint192 from uint256, reverting on\n overflow (when the input is greater than largest uint192).\n Counterpart to Solidity's `uint192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":20065,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:68","nodeType":"FunctionDefinition","parameters":{"id":20041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20040,"mutability":"mutable","name":"value","nameLocation":"5219:5:68","nodeType":"VariableDeclaration","scope":20065,"src":"5211:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20039,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:68"},"returnParameters":{"id":20044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20043,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20065,"src":"5249:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":20042,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:68","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:68"},"scope":21579,"src":"5192:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20092,"nodeType":"Block","src":"5767:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20073,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20068,"src":"5781:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":20075,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":20074,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":20078,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:68","memberName":"max","nodeType":"MemberAccess","src":"5789:17:68","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20086,"nodeType":"IfStatement","src":"5777:105:68","trueBody":{"id":20085,"nodeType":"Block","src":"5808:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":20081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:68","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":20082,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20068,"src":"5865:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20080,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"5829:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20084,"nodeType":"RevertStatement","src":"5822:49:68"}]}},{"expression":{"arguments":[{"id":20089,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20068,"src":"5906:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":20087,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:68","typeDescriptions":{}}},"id":20090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":20072,"id":20091,"nodeType":"Return","src":"5891:21:68"}]},"documentation":{"id":20066,"nodeType":"StructuredDocumentation","src":"5416:280:68","text":" @dev Returns the downcasted uint184 from uint256, reverting on\n overflow (when the input is greater than largest uint184).\n Counterpart to Solidity's `uint184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":20093,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:68","nodeType":"FunctionDefinition","parameters":{"id":20069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20068,"mutability":"mutable","name":"value","nameLocation":"5728:5:68","nodeType":"VariableDeclaration","scope":20093,"src":"5720:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20067,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:68"},"returnParameters":{"id":20072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20071,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20093,"src":"5758:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":20070,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:68","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:68"},"scope":21579,"src":"5701:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20120,"nodeType":"Block","src":"6276:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20101,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20096,"src":"6290:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":20103,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":20102,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":20106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:68","memberName":"max","nodeType":"MemberAccess","src":"6298:17:68","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20114,"nodeType":"IfStatement","src":"6286:105:68","trueBody":{"id":20113,"nodeType":"Block","src":"6317:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":20109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:68","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":20110,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20096,"src":"6374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20108,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"6338:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20112,"nodeType":"RevertStatement","src":"6331:49:68"}]}},{"expression":{"arguments":[{"id":20117,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20096,"src":"6415:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":20115,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:68","typeDescriptions":{}}},"id":20118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":20100,"id":20119,"nodeType":"Return","src":"6400:21:68"}]},"documentation":{"id":20094,"nodeType":"StructuredDocumentation","src":"5925:280:68","text":" @dev Returns the downcasted uint176 from uint256, reverting on\n overflow (when the input is greater than largest uint176).\n Counterpart to Solidity's `uint176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":20121,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:68","nodeType":"FunctionDefinition","parameters":{"id":20097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20096,"mutability":"mutable","name":"value","nameLocation":"6237:5:68","nodeType":"VariableDeclaration","scope":20121,"src":"6229:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20095,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:68"},"returnParameters":{"id":20100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20099,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20121,"src":"6267:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":20098,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:68","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:68"},"scope":21579,"src":"6210:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20148,"nodeType":"Block","src":"6785:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20129,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20124,"src":"6799:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":20131,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":20130,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":20134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:68","memberName":"max","nodeType":"MemberAccess","src":"6807:17:68","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20142,"nodeType":"IfStatement","src":"6795:105:68","trueBody":{"id":20141,"nodeType":"Block","src":"6826:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":20137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:68","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":20138,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20124,"src":"6883:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20136,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"6847:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20140,"nodeType":"RevertStatement","src":"6840:49:68"}]}},{"expression":{"arguments":[{"id":20145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20124,"src":"6924:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20144,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":20143,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:68","typeDescriptions":{}}},"id":20146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":20128,"id":20147,"nodeType":"Return","src":"6909:21:68"}]},"documentation":{"id":20122,"nodeType":"StructuredDocumentation","src":"6434:280:68","text":" @dev Returns the downcasted uint168 from uint256, reverting on\n overflow (when the input is greater than largest uint168).\n Counterpart to Solidity's `uint168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":20149,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:68","nodeType":"FunctionDefinition","parameters":{"id":20125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20124,"mutability":"mutable","name":"value","nameLocation":"6746:5:68","nodeType":"VariableDeclaration","scope":20149,"src":"6738:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20123,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:68"},"returnParameters":{"id":20128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20149,"src":"6776:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":20126,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:68","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:68"},"scope":21579,"src":"6719:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20176,"nodeType":"Block","src":"7294:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20157,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"7308:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":20159,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":20158,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":20162,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:68","memberName":"max","nodeType":"MemberAccess","src":"7316:17:68","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20170,"nodeType":"IfStatement","src":"7304:105:68","trueBody":{"id":20169,"nodeType":"Block","src":"7335:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":20165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:68","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":20166,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"7392:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20164,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"7356:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20168,"nodeType":"RevertStatement","src":"7349:49:68"}]}},{"expression":{"arguments":[{"id":20173,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"7433:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":20171,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:68","typeDescriptions":{}}},"id":20174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":20156,"id":20175,"nodeType":"Return","src":"7418:21:68"}]},"documentation":{"id":20150,"nodeType":"StructuredDocumentation","src":"6943:280:68","text":" @dev Returns the downcasted uint160 from uint256, reverting on\n overflow (when the input is greater than largest uint160).\n Counterpart to Solidity's `uint160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":20177,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:68","nodeType":"FunctionDefinition","parameters":{"id":20153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20152,"mutability":"mutable","name":"value","nameLocation":"7255:5:68","nodeType":"VariableDeclaration","scope":20177,"src":"7247:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20151,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:68"},"returnParameters":{"id":20156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20155,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20177,"src":"7285:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":20154,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:68","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:68"},"scope":21579,"src":"7228:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20204,"nodeType":"Block","src":"7803:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20185,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20180,"src":"7817:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":20187,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":20186,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":20190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:68","memberName":"max","nodeType":"MemberAccess","src":"7825:17:68","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20198,"nodeType":"IfStatement","src":"7813:105:68","trueBody":{"id":20197,"nodeType":"Block","src":"7844:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":20193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:68","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":20194,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20180,"src":"7901:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20192,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"7865:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20196,"nodeType":"RevertStatement","src":"7858:49:68"}]}},{"expression":{"arguments":[{"id":20201,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20180,"src":"7942:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":20199,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:68","typeDescriptions":{}}},"id":20202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":20184,"id":20203,"nodeType":"Return","src":"7927:21:68"}]},"documentation":{"id":20178,"nodeType":"StructuredDocumentation","src":"7452:280:68","text":" @dev Returns the downcasted uint152 from uint256, reverting on\n overflow (when the input is greater than largest uint152).\n Counterpart to Solidity's `uint152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":20205,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:68","nodeType":"FunctionDefinition","parameters":{"id":20181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20180,"mutability":"mutable","name":"value","nameLocation":"7764:5:68","nodeType":"VariableDeclaration","scope":20205,"src":"7756:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20179,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:68"},"returnParameters":{"id":20184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20205,"src":"7794:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":20182,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:68","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:68"},"scope":21579,"src":"7737:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20232,"nodeType":"Block","src":"8312:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20213,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20208,"src":"8326:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":20215,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":20214,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":20218,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:68","memberName":"max","nodeType":"MemberAccess","src":"8334:17:68","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20226,"nodeType":"IfStatement","src":"8322:105:68","trueBody":{"id":20225,"nodeType":"Block","src":"8353:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":20221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:68","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":20222,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20208,"src":"8410:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20220,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"8374:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20224,"nodeType":"RevertStatement","src":"8367:49:68"}]}},{"expression":{"arguments":[{"id":20229,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20208,"src":"8451:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20228,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":20227,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:68","typeDescriptions":{}}},"id":20230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":20212,"id":20231,"nodeType":"Return","src":"8436:21:68"}]},"documentation":{"id":20206,"nodeType":"StructuredDocumentation","src":"7961:280:68","text":" @dev Returns the downcasted uint144 from uint256, reverting on\n overflow (when the input is greater than largest uint144).\n Counterpart to Solidity's `uint144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":20233,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:68","nodeType":"FunctionDefinition","parameters":{"id":20209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20208,"mutability":"mutable","name":"value","nameLocation":"8273:5:68","nodeType":"VariableDeclaration","scope":20233,"src":"8265:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20207,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:68"},"returnParameters":{"id":20212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20211,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20233,"src":"8303:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":20210,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:68","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:68"},"scope":21579,"src":"8246:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20260,"nodeType":"Block","src":"8821:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20241,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20236,"src":"8835:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":20243,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":20242,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":20246,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:68","memberName":"max","nodeType":"MemberAccess","src":"8843:17:68","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20254,"nodeType":"IfStatement","src":"8831:105:68","trueBody":{"id":20253,"nodeType":"Block","src":"8862:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":20249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:68","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":20250,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20236,"src":"8919:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20248,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"8883:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20251,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20252,"nodeType":"RevertStatement","src":"8876:49:68"}]}},{"expression":{"arguments":[{"id":20257,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20236,"src":"8960:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":20255,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:68","typeDescriptions":{}}},"id":20258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":20240,"id":20259,"nodeType":"Return","src":"8945:21:68"}]},"documentation":{"id":20234,"nodeType":"StructuredDocumentation","src":"8470:280:68","text":" @dev Returns the downcasted uint136 from uint256, reverting on\n overflow (when the input is greater than largest uint136).\n Counterpart to Solidity's `uint136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":20261,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:68","nodeType":"FunctionDefinition","parameters":{"id":20237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20236,"mutability":"mutable","name":"value","nameLocation":"8782:5:68","nodeType":"VariableDeclaration","scope":20261,"src":"8774:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20235,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:68"},"returnParameters":{"id":20240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20239,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20261,"src":"8812:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":20238,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:68","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:68"},"scope":21579,"src":"8755:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20288,"nodeType":"Block","src":"9330:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20269,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20264,"src":"9344:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":20271,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":20270,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":20274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:68","memberName":"max","nodeType":"MemberAccess","src":"9352:17:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20282,"nodeType":"IfStatement","src":"9340:105:68","trueBody":{"id":20281,"nodeType":"Block","src":"9371:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":20277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:68","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":20278,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20264,"src":"9428:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20276,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"9392:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20280,"nodeType":"RevertStatement","src":"9385:49:68"}]}},{"expression":{"arguments":[{"id":20285,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20264,"src":"9469:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20284,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":20283,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:68","typeDescriptions":{}}},"id":20286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":20268,"id":20287,"nodeType":"Return","src":"9454:21:68"}]},"documentation":{"id":20262,"nodeType":"StructuredDocumentation","src":"8979:280:68","text":" @dev Returns the downcasted uint128 from uint256, reverting on\n overflow (when the input is greater than largest uint128).\n Counterpart to Solidity's `uint128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":20289,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:68","nodeType":"FunctionDefinition","parameters":{"id":20265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20264,"mutability":"mutable","name":"value","nameLocation":"9291:5:68","nodeType":"VariableDeclaration","scope":20289,"src":"9283:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20263,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:68"},"returnParameters":{"id":20268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20267,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20289,"src":"9321:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":20266,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:68","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:68"},"scope":21579,"src":"9264:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20316,"nodeType":"Block","src":"9839:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20297,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20292,"src":"9853:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":20299,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":20298,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":20302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:68","memberName":"max","nodeType":"MemberAccess","src":"9861:17:68","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20310,"nodeType":"IfStatement","src":"9849:105:68","trueBody":{"id":20309,"nodeType":"Block","src":"9880:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":20305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:68","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":20306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20292,"src":"9937:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20304,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"9901:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20308,"nodeType":"RevertStatement","src":"9894:49:68"}]}},{"expression":{"arguments":[{"id":20313,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20292,"src":"9978:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":20311,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:68","typeDescriptions":{}}},"id":20314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":20296,"id":20315,"nodeType":"Return","src":"9963:21:68"}]},"documentation":{"id":20290,"nodeType":"StructuredDocumentation","src":"9488:280:68","text":" @dev Returns the downcasted uint120 from uint256, reverting on\n overflow (when the input is greater than largest uint120).\n Counterpart to Solidity's `uint120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":20317,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:68","nodeType":"FunctionDefinition","parameters":{"id":20293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20292,"mutability":"mutable","name":"value","nameLocation":"9800:5:68","nodeType":"VariableDeclaration","scope":20317,"src":"9792:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20291,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:68"},"returnParameters":{"id":20296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20295,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20317,"src":"9830:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":20294,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:68","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:68"},"scope":21579,"src":"9773:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20344,"nodeType":"Block","src":"10348:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20325,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20320,"src":"10362:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":20327,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":20326,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":20330,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:68","memberName":"max","nodeType":"MemberAccess","src":"10370:17:68","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20338,"nodeType":"IfStatement","src":"10358:105:68","trueBody":{"id":20337,"nodeType":"Block","src":"10389:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":20333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:68","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":20334,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20320,"src":"10446:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20332,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"10410:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20336,"nodeType":"RevertStatement","src":"10403:49:68"}]}},{"expression":{"arguments":[{"id":20341,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20320,"src":"10487:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":20339,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:68","typeDescriptions":{}}},"id":20342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":20324,"id":20343,"nodeType":"Return","src":"10472:21:68"}]},"documentation":{"id":20318,"nodeType":"StructuredDocumentation","src":"9997:280:68","text":" @dev Returns the downcasted uint112 from uint256, reverting on\n overflow (when the input is greater than largest uint112).\n Counterpart to Solidity's `uint112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":20345,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:68","nodeType":"FunctionDefinition","parameters":{"id":20321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20320,"mutability":"mutable","name":"value","nameLocation":"10309:5:68","nodeType":"VariableDeclaration","scope":20345,"src":"10301:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20319,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:68"},"returnParameters":{"id":20324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20323,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20345,"src":"10339:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":20322,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:68","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:68"},"scope":21579,"src":"10282:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20372,"nodeType":"Block","src":"10857:152:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20348,"src":"10871:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":20355,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":20354,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":20358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:68","memberName":"max","nodeType":"MemberAccess","src":"10879:17:68","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20366,"nodeType":"IfStatement","src":"10867:105:68","trueBody":{"id":20365,"nodeType":"Block","src":"10898:74:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":20361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:68","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":20362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20348,"src":"10955:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20360,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"10919:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20364,"nodeType":"RevertStatement","src":"10912:49:68"}]}},{"expression":{"arguments":[{"id":20369,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20348,"src":"10996:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20368,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":20367,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:68","typeDescriptions":{}}},"id":20370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":20352,"id":20371,"nodeType":"Return","src":"10981:21:68"}]},"documentation":{"id":20346,"nodeType":"StructuredDocumentation","src":"10506:280:68","text":" @dev Returns the downcasted uint104 from uint256, reverting on\n overflow (when the input is greater than largest uint104).\n Counterpart to Solidity's `uint104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":20373,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:68","nodeType":"FunctionDefinition","parameters":{"id":20349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20348,"mutability":"mutable","name":"value","nameLocation":"10818:5:68","nodeType":"VariableDeclaration","scope":20373,"src":"10810:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20347,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:68"},"returnParameters":{"id":20352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20373,"src":"10848:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":20350,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:68","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:68"},"scope":21579,"src":"10791:218:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20400,"nodeType":"Block","src":"11360:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20381,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20376,"src":"11374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":20383,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":20382,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":20386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:68","memberName":"max","nodeType":"MemberAccess","src":"11382:16:68","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20394,"nodeType":"IfStatement","src":"11370:103:68","trueBody":{"id":20393,"nodeType":"Block","src":"11400:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":20389,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:68","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":20390,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20376,"src":"11456:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20388,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"11421:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20392,"nodeType":"RevertStatement","src":"11414:48:68"}]}},{"expression":{"arguments":[{"id":20397,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20376,"src":"11496:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":20395,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:68","typeDescriptions":{}}},"id":20398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":20380,"id":20399,"nodeType":"Return","src":"11482:20:68"}]},"documentation":{"id":20374,"nodeType":"StructuredDocumentation","src":"11015:276:68","text":" @dev Returns the downcasted uint96 from uint256, reverting on\n overflow (when the input is greater than largest uint96).\n Counterpart to Solidity's `uint96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":20401,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:68","nodeType":"FunctionDefinition","parameters":{"id":20377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20376,"mutability":"mutable","name":"value","nameLocation":"11322:5:68","nodeType":"VariableDeclaration","scope":20401,"src":"11314:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20375,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:68"},"returnParameters":{"id":20380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20379,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20401,"src":"11352:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":20378,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:68","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:68"},"scope":21579,"src":"11296:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20428,"nodeType":"Block","src":"11860:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20409,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20404,"src":"11874:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":20411,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":20410,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":20414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:68","memberName":"max","nodeType":"MemberAccess","src":"11882:16:68","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20422,"nodeType":"IfStatement","src":"11870:103:68","trueBody":{"id":20421,"nodeType":"Block","src":"11900:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":20417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:68","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":20418,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20404,"src":"11956:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20416,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"11921:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20420,"nodeType":"RevertStatement","src":"11914:48:68"}]}},{"expression":{"arguments":[{"id":20425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20404,"src":"11996:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":20423,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:68","typeDescriptions":{}}},"id":20426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":20408,"id":20427,"nodeType":"Return","src":"11982:20:68"}]},"documentation":{"id":20402,"nodeType":"StructuredDocumentation","src":"11515:276:68","text":" @dev Returns the downcasted uint88 from uint256, reverting on\n overflow (when the input is greater than largest uint88).\n Counterpart to Solidity's `uint88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":20429,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:68","nodeType":"FunctionDefinition","parameters":{"id":20405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20404,"mutability":"mutable","name":"value","nameLocation":"11822:5:68","nodeType":"VariableDeclaration","scope":20429,"src":"11814:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20403,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:68"},"returnParameters":{"id":20408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20407,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20429,"src":"11852:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":20406,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:68","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:68"},"scope":21579,"src":"11796:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20456,"nodeType":"Block","src":"12360:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20437,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20432,"src":"12374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":20439,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":20438,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20441,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":20442,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:68","memberName":"max","nodeType":"MemberAccess","src":"12382:16:68","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20450,"nodeType":"IfStatement","src":"12370:103:68","trueBody":{"id":20449,"nodeType":"Block","src":"12400:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":20445,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:68","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":20446,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20432,"src":"12456:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20444,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"12421:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20448,"nodeType":"RevertStatement","src":"12414:48:68"}]}},{"expression":{"arguments":[{"id":20453,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20432,"src":"12496:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":20451,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:68","typeDescriptions":{}}},"id":20454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":20436,"id":20455,"nodeType":"Return","src":"12482:20:68"}]},"documentation":{"id":20430,"nodeType":"StructuredDocumentation","src":"12015:276:68","text":" @dev Returns the downcasted uint80 from uint256, reverting on\n overflow (when the input is greater than largest uint80).\n Counterpart to Solidity's `uint80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":20457,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:68","nodeType":"FunctionDefinition","parameters":{"id":20433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20432,"mutability":"mutable","name":"value","nameLocation":"12322:5:68","nodeType":"VariableDeclaration","scope":20457,"src":"12314:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20431,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:68"},"returnParameters":{"id":20436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20435,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20457,"src":"12352:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":20434,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:68","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:68"},"scope":21579,"src":"12296:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20484,"nodeType":"Block","src":"12860:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20465,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20460,"src":"12874:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":20467,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":20466,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":20470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:68","memberName":"max","nodeType":"MemberAccess","src":"12882:16:68","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20478,"nodeType":"IfStatement","src":"12870:103:68","trueBody":{"id":20477,"nodeType":"Block","src":"12900:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":20473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:68","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":20474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20460,"src":"12956:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20472,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"12921:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20476,"nodeType":"RevertStatement","src":"12914:48:68"}]}},{"expression":{"arguments":[{"id":20481,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20460,"src":"12996:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":20479,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:68","typeDescriptions":{}}},"id":20482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":20464,"id":20483,"nodeType":"Return","src":"12982:20:68"}]},"documentation":{"id":20458,"nodeType":"StructuredDocumentation","src":"12515:276:68","text":" @dev Returns the downcasted uint72 from uint256, reverting on\n overflow (when the input is greater than largest uint72).\n Counterpart to Solidity's `uint72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":20485,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:68","nodeType":"FunctionDefinition","parameters":{"id":20461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20460,"mutability":"mutable","name":"value","nameLocation":"12822:5:68","nodeType":"VariableDeclaration","scope":20485,"src":"12814:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20459,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:68"},"returnParameters":{"id":20464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20485,"src":"12852:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":20462,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:68","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:68"},"scope":21579,"src":"12796:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20512,"nodeType":"Block","src":"13360:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20493,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20488,"src":"13374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20496,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":20495,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":20494,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":20498,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:68","memberName":"max","nodeType":"MemberAccess","src":"13382:16:68","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20506,"nodeType":"IfStatement","src":"13370:103:68","trueBody":{"id":20505,"nodeType":"Block","src":"13400:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":20501,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:68","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":20502,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20488,"src":"13456:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20500,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"13421:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20504,"nodeType":"RevertStatement","src":"13414:48:68"}]}},{"expression":{"arguments":[{"id":20509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20488,"src":"13496:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":20507,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:68","typeDescriptions":{}}},"id":20510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20492,"id":20511,"nodeType":"Return","src":"13482:20:68"}]},"documentation":{"id":20486,"nodeType":"StructuredDocumentation","src":"13015:276:68","text":" @dev Returns the downcasted uint64 from uint256, reverting on\n overflow (when the input is greater than largest uint64).\n Counterpart to Solidity's `uint64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":20513,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:68","nodeType":"FunctionDefinition","parameters":{"id":20489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20488,"mutability":"mutable","name":"value","nameLocation":"13322:5:68","nodeType":"VariableDeclaration","scope":20513,"src":"13314:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20487,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:68"},"returnParameters":{"id":20492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20491,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20513,"src":"13352:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20490,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:68","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:68"},"scope":21579,"src":"13296:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20540,"nodeType":"Block","src":"13860:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20521,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20516,"src":"13874:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":20523,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":20522,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":20526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:68","memberName":"max","nodeType":"MemberAccess","src":"13882:16:68","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20534,"nodeType":"IfStatement","src":"13870:103:68","trueBody":{"id":20533,"nodeType":"Block","src":"13900:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":20529,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:68","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":20530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20516,"src":"13956:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20528,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"13921:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20532,"nodeType":"RevertStatement","src":"13914:48:68"}]}},{"expression":{"arguments":[{"id":20537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20516,"src":"13996:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":20535,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:68","typeDescriptions":{}}},"id":20538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":20520,"id":20539,"nodeType":"Return","src":"13982:20:68"}]},"documentation":{"id":20514,"nodeType":"StructuredDocumentation","src":"13515:276:68","text":" @dev Returns the downcasted uint56 from uint256, reverting on\n overflow (when the input is greater than largest uint56).\n Counterpart to Solidity's `uint56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":20541,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:68","nodeType":"FunctionDefinition","parameters":{"id":20517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20516,"mutability":"mutable","name":"value","nameLocation":"13822:5:68","nodeType":"VariableDeclaration","scope":20541,"src":"13814:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20515,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:68"},"returnParameters":{"id":20520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20519,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20541,"src":"13852:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":20518,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:68","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:68"},"scope":21579,"src":"13796:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20568,"nodeType":"Block","src":"14360:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20549,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20544,"src":"14374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":20551,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":20550,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":20554,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:68","memberName":"max","nodeType":"MemberAccess","src":"14382:16:68","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20562,"nodeType":"IfStatement","src":"14370:103:68","trueBody":{"id":20561,"nodeType":"Block","src":"14400:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":20557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:68","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":20558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20544,"src":"14456:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20556,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"14421:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20560,"nodeType":"RevertStatement","src":"14414:48:68"}]}},{"expression":{"arguments":[{"id":20565,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20544,"src":"14496:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":20563,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:68","typeDescriptions":{}}},"id":20566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":20548,"id":20567,"nodeType":"Return","src":"14482:20:68"}]},"documentation":{"id":20542,"nodeType":"StructuredDocumentation","src":"14015:276:68","text":" @dev Returns the downcasted uint48 from uint256, reverting on\n overflow (when the input is greater than largest uint48).\n Counterpart to Solidity's `uint48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":20569,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:68","nodeType":"FunctionDefinition","parameters":{"id":20545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20544,"mutability":"mutable","name":"value","nameLocation":"14322:5:68","nodeType":"VariableDeclaration","scope":20569,"src":"14314:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20543,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:68"},"returnParameters":{"id":20548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20547,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20569,"src":"14352:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20546,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:68","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:68"},"scope":21579,"src":"14296:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20596,"nodeType":"Block","src":"14860:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20577,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20572,"src":"14874:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":20579,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":20578,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":20582,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:68","memberName":"max","nodeType":"MemberAccess","src":"14882:16:68","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20590,"nodeType":"IfStatement","src":"14870:103:68","trueBody":{"id":20589,"nodeType":"Block","src":"14900:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":20585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:68","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":20586,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20572,"src":"14956:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20584,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"14921:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20588,"nodeType":"RevertStatement","src":"14914:48:68"}]}},{"expression":{"arguments":[{"id":20593,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20572,"src":"14996:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20592,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":20591,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:68","typeDescriptions":{}}},"id":20594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":20576,"id":20595,"nodeType":"Return","src":"14982:20:68"}]},"documentation":{"id":20570,"nodeType":"StructuredDocumentation","src":"14515:276:68","text":" @dev Returns the downcasted uint40 from uint256, reverting on\n overflow (when the input is greater than largest uint40).\n Counterpart to Solidity's `uint40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":20597,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:68","nodeType":"FunctionDefinition","parameters":{"id":20573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20572,"mutability":"mutable","name":"value","nameLocation":"14822:5:68","nodeType":"VariableDeclaration","scope":20597,"src":"14814:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20571,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:68"},"returnParameters":{"id":20576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20575,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20597,"src":"14852:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":20574,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:68","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:68"},"scope":21579,"src":"14796:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20624,"nodeType":"Block","src":"15360:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20605,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20600,"src":"15374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":20607,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":20606,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":20610,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:68","memberName":"max","nodeType":"MemberAccess","src":"15382:16:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20618,"nodeType":"IfStatement","src":"15370:103:68","trueBody":{"id":20617,"nodeType":"Block","src":"15400:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":20613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:68","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":20614,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20600,"src":"15456:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20612,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"15421:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20616,"nodeType":"RevertStatement","src":"15414:48:68"}]}},{"expression":{"arguments":[{"id":20621,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20600,"src":"15496:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20620,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":20619,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:68","typeDescriptions":{}}},"id":20622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":20604,"id":20623,"nodeType":"Return","src":"15482:20:68"}]},"documentation":{"id":20598,"nodeType":"StructuredDocumentation","src":"15015:276:68","text":" @dev Returns the downcasted uint32 from uint256, reverting on\n overflow (when the input is greater than largest uint32).\n Counterpart to Solidity's `uint32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":20625,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:68","nodeType":"FunctionDefinition","parameters":{"id":20601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20600,"mutability":"mutable","name":"value","nameLocation":"15322:5:68","nodeType":"VariableDeclaration","scope":20625,"src":"15314:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20599,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:68"},"returnParameters":{"id":20604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20603,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20625,"src":"15352:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20602,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:68","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:68"},"scope":21579,"src":"15296:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20652,"nodeType":"Block","src":"15860:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20633,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20628,"src":"15874:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":20635,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":20634,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":20638,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:68","memberName":"max","nodeType":"MemberAccess","src":"15882:16:68","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20646,"nodeType":"IfStatement","src":"15870:103:68","trueBody":{"id":20645,"nodeType":"Block","src":"15900:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":20641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:68","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":20642,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20628,"src":"15956:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20640,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"15921:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20644,"nodeType":"RevertStatement","src":"15914:48:68"}]}},{"expression":{"arguments":[{"id":20649,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20628,"src":"15996:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20648,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":20647,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:68","typeDescriptions":{}}},"id":20650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":20632,"id":20651,"nodeType":"Return","src":"15982:20:68"}]},"documentation":{"id":20626,"nodeType":"StructuredDocumentation","src":"15515:276:68","text":" @dev Returns the downcasted uint24 from uint256, reverting on\n overflow (when the input is greater than largest uint24).\n Counterpart to Solidity's `uint24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":20653,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:68","nodeType":"FunctionDefinition","parameters":{"id":20629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20628,"mutability":"mutable","name":"value","nameLocation":"15822:5:68","nodeType":"VariableDeclaration","scope":20653,"src":"15814:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20627,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:68"},"returnParameters":{"id":20632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20631,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20653,"src":"15852:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":20630,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:68","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:68"},"scope":21579,"src":"15796:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20680,"nodeType":"Block","src":"16360:149:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20661,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20656,"src":"16374:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20664,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":20663,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":20662,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":20666,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:68","memberName":"max","nodeType":"MemberAccess","src":"16382:16:68","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20674,"nodeType":"IfStatement","src":"16370:103:68","trueBody":{"id":20673,"nodeType":"Block","src":"16400:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":20669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:68","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":20670,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20656,"src":"16456:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20668,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"16421:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20672,"nodeType":"RevertStatement","src":"16414:48:68"}]}},{"expression":{"arguments":[{"id":20677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20656,"src":"16496:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20676,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":20675,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:68","typeDescriptions":{}}},"id":20678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":20660,"id":20679,"nodeType":"Return","src":"16482:20:68"}]},"documentation":{"id":20654,"nodeType":"StructuredDocumentation","src":"16015:276:68","text":" @dev Returns the downcasted uint16 from uint256, reverting on\n overflow (when the input is greater than largest uint16).\n Counterpart to Solidity's `uint16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":20681,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:68","nodeType":"FunctionDefinition","parameters":{"id":20657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20656,"mutability":"mutable","name":"value","nameLocation":"16322:5:68","nodeType":"VariableDeclaration","scope":20681,"src":"16314:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20655,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:68"},"returnParameters":{"id":20660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20681,"src":"16352:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":20658,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:68","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:68"},"scope":21579,"src":"16296:213:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20708,"nodeType":"Block","src":"16854:146:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20689,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20684,"src":"16868:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":20692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":20691,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":20690,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":20693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":20694,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:68","memberName":"max","nodeType":"MemberAccess","src":"16876:15:68","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20702,"nodeType":"IfStatement","src":"16864:101:68","trueBody":{"id":20701,"nodeType":"Block","src":"16893:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":20697,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:68","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":20698,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20684,"src":"16948:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20696,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19824,"src":"16914:30:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":20699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20700,"nodeType":"RevertStatement","src":"16907:47:68"}]}},{"expression":{"arguments":[{"id":20705,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20684,"src":"16987:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":20703,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:68","typeDescriptions":{}}},"id":20706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":20688,"id":20707,"nodeType":"Return","src":"16974:19:68"}]},"documentation":{"id":20682,"nodeType":"StructuredDocumentation","src":"16515:272:68","text":" @dev Returns the downcasted uint8 from uint256, reverting on\n overflow (when the input is greater than largest uint8).\n Counterpart to Solidity's `uint8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":20709,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:68","nodeType":"FunctionDefinition","parameters":{"id":20685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20684,"mutability":"mutable","name":"value","nameLocation":"16817:5:68","nodeType":"VariableDeclaration","scope":20709,"src":"16809:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20683,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:68"},"returnParameters":{"id":20688,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20687,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20709,"src":"16847:5:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":20686,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:68","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:68"},"scope":21579,"src":"16792:208:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20731,"nodeType":"Block","src":"17236:128:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20717,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20712,"src":"17250:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":20718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:68","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20725,"nodeType":"IfStatement","src":"17246:81:68","trueBody":{"id":20724,"nodeType":"Block","src":"17261:66:68","statements":[{"errorCall":{"arguments":[{"id":20721,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20712,"src":"17310:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20720,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19829,"src":"17282:27:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$_t_error_$","typeString":"function (int256) pure returns (error)"}},"id":20722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20723,"nodeType":"RevertStatement","src":"17275:41:68"}]}},{"expression":{"arguments":[{"id":20728,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20712,"src":"17351:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20727,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":20726,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:68","typeDescriptions":{}}},"id":20729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":20716,"id":20730,"nodeType":"Return","src":"17336:21:68"}]},"documentation":{"id":20710,"nodeType":"StructuredDocumentation","src":"17006:160:68","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":20732,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:68","nodeType":"FunctionDefinition","parameters":{"id":20713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20712,"mutability":"mutable","name":"value","nameLocation":"17197:5:68","nodeType":"VariableDeclaration","scope":20732,"src":"17190:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20711,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:68"},"returnParameters":{"id":20716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20715,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20732,"src":"17227:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20714,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:68"},"scope":21579,"src":"17171:193:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20757,"nodeType":"Block","src":"17761:150:68","statements":[{"expression":{"id":20745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20740,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20738,"src":"17771:10:68","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20743,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20735,"src":"17791:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20742,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":20741,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:68","typeDescriptions":{}}},"id":20744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:68","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":20746,"nodeType":"ExpressionStatement","src":"17771:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20747,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20738,"src":"17811:10:68","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20748,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20735,"src":"17825:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20756,"nodeType":"IfStatement","src":"17807:98:68","trueBody":{"id":20755,"nodeType":"Block","src":"17832:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":20751,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:68","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":20752,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20735,"src":"17888:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20750,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"17853:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20754,"nodeType":"RevertStatement","src":"17846:48:68"}]}}]},"documentation":{"id":20733,"nodeType":"StructuredDocumentation","src":"17370:312:68","text":" @dev Returns the downcasted int248 from int256, reverting on\n overflow (when the input is less than smallest int248 or\n greater than largest int248).\n Counterpart to Solidity's `int248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":20758,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:68","nodeType":"FunctionDefinition","parameters":{"id":20736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20735,"mutability":"mutable","name":"value","nameLocation":"17712:5:68","nodeType":"VariableDeclaration","scope":20758,"src":"17705:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20734,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:68"},"returnParameters":{"id":20739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20738,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:68","nodeType":"VariableDeclaration","scope":20758,"src":"17742:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":20737,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:68","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:68"},"scope":21579,"src":"17687:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20783,"nodeType":"Block","src":"18308:150:68","statements":[{"expression":{"id":20771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20766,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20764,"src":"18318:10:68","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20769,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20761,"src":"18338:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20768,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":20767,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:68","typeDescriptions":{}}},"id":20770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:68","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":20772,"nodeType":"ExpressionStatement","src":"18318:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20773,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20764,"src":"18358:10:68","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20774,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20761,"src":"18372:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20782,"nodeType":"IfStatement","src":"18354:98:68","trueBody":{"id":20781,"nodeType":"Block","src":"18379:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":20777,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:68","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":20778,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20761,"src":"18435:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20776,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"18400:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20780,"nodeType":"RevertStatement","src":"18393:48:68"}]}}]},"documentation":{"id":20759,"nodeType":"StructuredDocumentation","src":"17917:312:68","text":" @dev Returns the downcasted int240 from int256, reverting on\n overflow (when the input is less than smallest int240 or\n greater than largest int240).\n Counterpart to Solidity's `int240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":20784,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:68","nodeType":"FunctionDefinition","parameters":{"id":20762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20761,"mutability":"mutable","name":"value","nameLocation":"18259:5:68","nodeType":"VariableDeclaration","scope":20784,"src":"18252:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20760,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:68"},"returnParameters":{"id":20765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20764,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:68","nodeType":"VariableDeclaration","scope":20784,"src":"18289:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":20763,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:68","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:68"},"scope":21579,"src":"18234:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20809,"nodeType":"Block","src":"18855:150:68","statements":[{"expression":{"id":20797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20792,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20790,"src":"18865:10:68","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20795,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20787,"src":"18885:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20794,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":20793,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:68","typeDescriptions":{}}},"id":20796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:68","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":20798,"nodeType":"ExpressionStatement","src":"18865:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20799,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20790,"src":"18905:10:68","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20800,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20787,"src":"18919:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20808,"nodeType":"IfStatement","src":"18901:98:68","trueBody":{"id":20807,"nodeType":"Block","src":"18926:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":20803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:68","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":20804,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20787,"src":"18982:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20802,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"18947:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20806,"nodeType":"RevertStatement","src":"18940:48:68"}]}}]},"documentation":{"id":20785,"nodeType":"StructuredDocumentation","src":"18464:312:68","text":" @dev Returns the downcasted int232 from int256, reverting on\n overflow (when the input is less than smallest int232 or\n greater than largest int232).\n Counterpart to Solidity's `int232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":20810,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:68","nodeType":"FunctionDefinition","parameters":{"id":20788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20787,"mutability":"mutable","name":"value","nameLocation":"18806:5:68","nodeType":"VariableDeclaration","scope":20810,"src":"18799:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20786,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:68"},"returnParameters":{"id":20791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20790,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:68","nodeType":"VariableDeclaration","scope":20810,"src":"18836:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":20789,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:68","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:68"},"scope":21579,"src":"18781:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20835,"nodeType":"Block","src":"19402:150:68","statements":[{"expression":{"id":20823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20818,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20816,"src":"19412:10:68","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20821,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20813,"src":"19432:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20820,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":20819,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:68","typeDescriptions":{}}},"id":20822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:68","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":20824,"nodeType":"ExpressionStatement","src":"19412:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20825,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20816,"src":"19452:10:68","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20826,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20813,"src":"19466:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20834,"nodeType":"IfStatement","src":"19448:98:68","trueBody":{"id":20833,"nodeType":"Block","src":"19473:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":20829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:68","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":20830,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20813,"src":"19529:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20828,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"19494:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20832,"nodeType":"RevertStatement","src":"19487:48:68"}]}}]},"documentation":{"id":20811,"nodeType":"StructuredDocumentation","src":"19011:312:68","text":" @dev Returns the downcasted int224 from int256, reverting on\n overflow (when the input is less than smallest int224 or\n greater than largest int224).\n Counterpart to Solidity's `int224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":20836,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:68","nodeType":"FunctionDefinition","parameters":{"id":20814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20813,"mutability":"mutable","name":"value","nameLocation":"19353:5:68","nodeType":"VariableDeclaration","scope":20836,"src":"19346:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20812,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:68"},"returnParameters":{"id":20817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20816,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:68","nodeType":"VariableDeclaration","scope":20836,"src":"19383:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":20815,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:68","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:68"},"scope":21579,"src":"19328:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20861,"nodeType":"Block","src":"19949:150:68","statements":[{"expression":{"id":20849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20844,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20842,"src":"19959:10:68","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20847,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20839,"src":"19979:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20846,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":20845,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:68","typeDescriptions":{}}},"id":20848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:68","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":20850,"nodeType":"ExpressionStatement","src":"19959:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20851,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20842,"src":"19999:10:68","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20852,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20839,"src":"20013:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20860,"nodeType":"IfStatement","src":"19995:98:68","trueBody":{"id":20859,"nodeType":"Block","src":"20020:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":20855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:68","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":20856,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20839,"src":"20076:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20854,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"20041:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20858,"nodeType":"RevertStatement","src":"20034:48:68"}]}}]},"documentation":{"id":20837,"nodeType":"StructuredDocumentation","src":"19558:312:68","text":" @dev Returns the downcasted int216 from int256, reverting on\n overflow (when the input is less than smallest int216 or\n greater than largest int216).\n Counterpart to Solidity's `int216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":20862,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:68","nodeType":"FunctionDefinition","parameters":{"id":20840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20839,"mutability":"mutable","name":"value","nameLocation":"19900:5:68","nodeType":"VariableDeclaration","scope":20862,"src":"19893:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20838,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:68"},"returnParameters":{"id":20843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20842,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:68","nodeType":"VariableDeclaration","scope":20862,"src":"19930:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":20841,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:68","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:68"},"scope":21579,"src":"19875:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20887,"nodeType":"Block","src":"20496:150:68","statements":[{"expression":{"id":20875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20870,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20868,"src":"20506:10:68","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20865,"src":"20526:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":20871,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:68","typeDescriptions":{}}},"id":20874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:68","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":20876,"nodeType":"ExpressionStatement","src":"20506:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20877,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20868,"src":"20546:10:68","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20878,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20865,"src":"20560:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20886,"nodeType":"IfStatement","src":"20542:98:68","trueBody":{"id":20885,"nodeType":"Block","src":"20567:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":20881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:68","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":20882,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20865,"src":"20623:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20880,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"20588:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20884,"nodeType":"RevertStatement","src":"20581:48:68"}]}}]},"documentation":{"id":20863,"nodeType":"StructuredDocumentation","src":"20105:312:68","text":" @dev Returns the downcasted int208 from int256, reverting on\n overflow (when the input is less than smallest int208 or\n greater than largest int208).\n Counterpart to Solidity's `int208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":20888,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:68","nodeType":"FunctionDefinition","parameters":{"id":20866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20865,"mutability":"mutable","name":"value","nameLocation":"20447:5:68","nodeType":"VariableDeclaration","scope":20888,"src":"20440:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20864,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:68"},"returnParameters":{"id":20869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20868,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:68","nodeType":"VariableDeclaration","scope":20888,"src":"20477:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":20867,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:68","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:68"},"scope":21579,"src":"20422:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20913,"nodeType":"Block","src":"21043:150:68","statements":[{"expression":{"id":20901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20896,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20894,"src":"21053:10:68","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20899,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20891,"src":"21073:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20898,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":20897,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:68","typeDescriptions":{}}},"id":20900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:68","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":20902,"nodeType":"ExpressionStatement","src":"21053:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20903,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20894,"src":"21093:10:68","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20904,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20891,"src":"21107:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20912,"nodeType":"IfStatement","src":"21089:98:68","trueBody":{"id":20911,"nodeType":"Block","src":"21114:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":20907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:68","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":20908,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20891,"src":"21170:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20906,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"21135:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20910,"nodeType":"RevertStatement","src":"21128:48:68"}]}}]},"documentation":{"id":20889,"nodeType":"StructuredDocumentation","src":"20652:312:68","text":" @dev Returns the downcasted int200 from int256, reverting on\n overflow (when the input is less than smallest int200 or\n greater than largest int200).\n Counterpart to Solidity's `int200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":20914,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:68","nodeType":"FunctionDefinition","parameters":{"id":20892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20891,"mutability":"mutable","name":"value","nameLocation":"20994:5:68","nodeType":"VariableDeclaration","scope":20914,"src":"20987:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20890,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:68"},"returnParameters":{"id":20895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20894,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:68","nodeType":"VariableDeclaration","scope":20914,"src":"21024:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":20893,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:68","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:68"},"scope":21579,"src":"20969:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20939,"nodeType":"Block","src":"21590:150:68","statements":[{"expression":{"id":20927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20922,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20920,"src":"21600:10:68","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20925,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20917,"src":"21620:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":20923,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:68","typeDescriptions":{}}},"id":20926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:68","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":20928,"nodeType":"ExpressionStatement","src":"21600:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20929,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20920,"src":"21640:10:68","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20930,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20917,"src":"21654:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20938,"nodeType":"IfStatement","src":"21636:98:68","trueBody":{"id":20937,"nodeType":"Block","src":"21661:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":20933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:68","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":20934,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20917,"src":"21717:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20932,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"21682:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20936,"nodeType":"RevertStatement","src":"21675:48:68"}]}}]},"documentation":{"id":20915,"nodeType":"StructuredDocumentation","src":"21199:312:68","text":" @dev Returns the downcasted int192 from int256, reverting on\n overflow (when the input is less than smallest int192 or\n greater than largest int192).\n Counterpart to Solidity's `int192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":20940,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:68","nodeType":"FunctionDefinition","parameters":{"id":20918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20917,"mutability":"mutable","name":"value","nameLocation":"21541:5:68","nodeType":"VariableDeclaration","scope":20940,"src":"21534:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20916,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:68"},"returnParameters":{"id":20921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20920,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:68","nodeType":"VariableDeclaration","scope":20940,"src":"21571:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":20919,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:68","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:68"},"scope":21579,"src":"21516:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20965,"nodeType":"Block","src":"22137:150:68","statements":[{"expression":{"id":20953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20948,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20946,"src":"22147:10:68","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20951,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20943,"src":"22167:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20950,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":20949,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:68","typeDescriptions":{}}},"id":20952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:68","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":20954,"nodeType":"ExpressionStatement","src":"22147:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20955,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20946,"src":"22187:10:68","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20956,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20943,"src":"22201:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20964,"nodeType":"IfStatement","src":"22183:98:68","trueBody":{"id":20963,"nodeType":"Block","src":"22208:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":20959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:68","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":20960,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20943,"src":"22264:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20958,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"22229:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20962,"nodeType":"RevertStatement","src":"22222:48:68"}]}}]},"documentation":{"id":20941,"nodeType":"StructuredDocumentation","src":"21746:312:68","text":" @dev Returns the downcasted int184 from int256, reverting on\n overflow (when the input is less than smallest int184 or\n greater than largest int184).\n Counterpart to Solidity's `int184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":20966,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:68","nodeType":"FunctionDefinition","parameters":{"id":20944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20943,"mutability":"mutable","name":"value","nameLocation":"22088:5:68","nodeType":"VariableDeclaration","scope":20966,"src":"22081:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20942,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:68"},"returnParameters":{"id":20947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20946,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:68","nodeType":"VariableDeclaration","scope":20966,"src":"22118:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":20945,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:68","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:68"},"scope":21579,"src":"22063:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20991,"nodeType":"Block","src":"22684:150:68","statements":[{"expression":{"id":20979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20974,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20972,"src":"22694:10:68","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20969,"src":"22714:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20976,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":20975,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:68","typeDescriptions":{}}},"id":20978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:68","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":20980,"nodeType":"ExpressionStatement","src":"22694:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":20983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20981,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20972,"src":"22734:10:68","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":20982,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20969,"src":"22748:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20990,"nodeType":"IfStatement","src":"22730:98:68","trueBody":{"id":20989,"nodeType":"Block","src":"22755:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":20985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:68","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":20986,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20969,"src":"22811:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":20984,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"22776:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":20987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20988,"nodeType":"RevertStatement","src":"22769:48:68"}]}}]},"documentation":{"id":20967,"nodeType":"StructuredDocumentation","src":"22293:312:68","text":" @dev Returns the downcasted int176 from int256, reverting on\n overflow (when the input is less than smallest int176 or\n greater than largest int176).\n Counterpart to Solidity's `int176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":20992,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:68","nodeType":"FunctionDefinition","parameters":{"id":20970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20969,"mutability":"mutable","name":"value","nameLocation":"22635:5:68","nodeType":"VariableDeclaration","scope":20992,"src":"22628:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20968,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:68"},"returnParameters":{"id":20973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20972,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:68","nodeType":"VariableDeclaration","scope":20992,"src":"22665:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":20971,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:68","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:68"},"scope":21579,"src":"22610:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21017,"nodeType":"Block","src":"23231:150:68","statements":[{"expression":{"id":21005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21000,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20998,"src":"23241:10:68","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21003,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20995,"src":"23261:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":21001,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:68","typeDescriptions":{}}},"id":21004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:68","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":21006,"nodeType":"ExpressionStatement","src":"23241:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21007,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20998,"src":"23281:10:68","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21008,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20995,"src":"23295:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21016,"nodeType":"IfStatement","src":"23277:98:68","trueBody":{"id":21015,"nodeType":"Block","src":"23302:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":21011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:68","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":21012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20995,"src":"23358:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21010,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"23323:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21014,"nodeType":"RevertStatement","src":"23316:48:68"}]}}]},"documentation":{"id":20993,"nodeType":"StructuredDocumentation","src":"22840:312:68","text":" @dev Returns the downcasted int168 from int256, reverting on\n overflow (when the input is less than smallest int168 or\n greater than largest int168).\n Counterpart to Solidity's `int168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":21018,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:68","nodeType":"FunctionDefinition","parameters":{"id":20996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20995,"mutability":"mutable","name":"value","nameLocation":"23182:5:68","nodeType":"VariableDeclaration","scope":21018,"src":"23175:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":20994,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:68"},"returnParameters":{"id":20999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20998,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:68","nodeType":"VariableDeclaration","scope":21018,"src":"23212:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":20997,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:68","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:68"},"scope":21579,"src":"23157:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21043,"nodeType":"Block","src":"23778:150:68","statements":[{"expression":{"id":21031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21026,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21024,"src":"23788:10:68","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21029,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21021,"src":"23808:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21028,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":21027,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:68","typeDescriptions":{}}},"id":21030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:68","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":21032,"nodeType":"ExpressionStatement","src":"23788:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21033,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21024,"src":"23828:10:68","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21021,"src":"23842:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21042,"nodeType":"IfStatement","src":"23824:98:68","trueBody":{"id":21041,"nodeType":"Block","src":"23849:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":21037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:68","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":21038,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21021,"src":"23905:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21036,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"23870:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21040,"nodeType":"RevertStatement","src":"23863:48:68"}]}}]},"documentation":{"id":21019,"nodeType":"StructuredDocumentation","src":"23387:312:68","text":" @dev Returns the downcasted int160 from int256, reverting on\n overflow (when the input is less than smallest int160 or\n greater than largest int160).\n Counterpart to Solidity's `int160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":21044,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:68","nodeType":"FunctionDefinition","parameters":{"id":21022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21021,"mutability":"mutable","name":"value","nameLocation":"23729:5:68","nodeType":"VariableDeclaration","scope":21044,"src":"23722:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21020,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:68"},"returnParameters":{"id":21025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21024,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:68","nodeType":"VariableDeclaration","scope":21044,"src":"23759:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":21023,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:68","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:68"},"scope":21579,"src":"23704:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21069,"nodeType":"Block","src":"24325:150:68","statements":[{"expression":{"id":21057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21052,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21050,"src":"24335:10:68","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21055,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21047,"src":"24355:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21054,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":21053,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:68","typeDescriptions":{}}},"id":21056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:68","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":21058,"nodeType":"ExpressionStatement","src":"24335:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21059,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21050,"src":"24375:10:68","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21060,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21047,"src":"24389:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21068,"nodeType":"IfStatement","src":"24371:98:68","trueBody":{"id":21067,"nodeType":"Block","src":"24396:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":21063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:68","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":21064,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21047,"src":"24452:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21062,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"24417:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21066,"nodeType":"RevertStatement","src":"24410:48:68"}]}}]},"documentation":{"id":21045,"nodeType":"StructuredDocumentation","src":"23934:312:68","text":" @dev Returns the downcasted int152 from int256, reverting on\n overflow (when the input is less than smallest int152 or\n greater than largest int152).\n Counterpart to Solidity's `int152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":21070,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:68","nodeType":"FunctionDefinition","parameters":{"id":21048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21047,"mutability":"mutable","name":"value","nameLocation":"24276:5:68","nodeType":"VariableDeclaration","scope":21070,"src":"24269:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21046,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:68"},"returnParameters":{"id":21051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21050,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:68","nodeType":"VariableDeclaration","scope":21070,"src":"24306:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":21049,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:68","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:68"},"scope":21579,"src":"24251:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21095,"nodeType":"Block","src":"24872:150:68","statements":[{"expression":{"id":21083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21078,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21076,"src":"24882:10:68","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21081,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21073,"src":"24902:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21080,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":21079,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:68","typeDescriptions":{}}},"id":21082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:68","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":21084,"nodeType":"ExpressionStatement","src":"24882:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21085,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21076,"src":"24922:10:68","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21086,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21073,"src":"24936:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21094,"nodeType":"IfStatement","src":"24918:98:68","trueBody":{"id":21093,"nodeType":"Block","src":"24943:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":21089,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:68","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":21090,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21073,"src":"24999:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21088,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"24964:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21092,"nodeType":"RevertStatement","src":"24957:48:68"}]}}]},"documentation":{"id":21071,"nodeType":"StructuredDocumentation","src":"24481:312:68","text":" @dev Returns the downcasted int144 from int256, reverting on\n overflow (when the input is less than smallest int144 or\n greater than largest int144).\n Counterpart to Solidity's `int144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":21096,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:68","nodeType":"FunctionDefinition","parameters":{"id":21074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21073,"mutability":"mutable","name":"value","nameLocation":"24823:5:68","nodeType":"VariableDeclaration","scope":21096,"src":"24816:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21072,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:68"},"returnParameters":{"id":21077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21076,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:68","nodeType":"VariableDeclaration","scope":21096,"src":"24853:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":21075,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:68","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:68"},"scope":21579,"src":"24798:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21121,"nodeType":"Block","src":"25419:150:68","statements":[{"expression":{"id":21109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21104,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21102,"src":"25429:10:68","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21107,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21099,"src":"25449:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":21105,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:68","typeDescriptions":{}}},"id":21108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:68","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":21110,"nodeType":"ExpressionStatement","src":"25429:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21111,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21102,"src":"25469:10:68","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21112,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21099,"src":"25483:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21120,"nodeType":"IfStatement","src":"25465:98:68","trueBody":{"id":21119,"nodeType":"Block","src":"25490:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":21115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:68","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":21116,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21099,"src":"25546:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21114,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"25511:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21118,"nodeType":"RevertStatement","src":"25504:48:68"}]}}]},"documentation":{"id":21097,"nodeType":"StructuredDocumentation","src":"25028:312:68","text":" @dev Returns the downcasted int136 from int256, reverting on\n overflow (when the input is less than smallest int136 or\n greater than largest int136).\n Counterpart to Solidity's `int136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":21122,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:68","nodeType":"FunctionDefinition","parameters":{"id":21100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21099,"mutability":"mutable","name":"value","nameLocation":"25370:5:68","nodeType":"VariableDeclaration","scope":21122,"src":"25363:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21098,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:68"},"returnParameters":{"id":21103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21102,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:68","nodeType":"VariableDeclaration","scope":21122,"src":"25400:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":21101,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:68","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:68"},"scope":21579,"src":"25345:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21147,"nodeType":"Block","src":"25966:150:68","statements":[{"expression":{"id":21135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21130,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21128,"src":"25976:10:68","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21133,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21125,"src":"25996:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":21131,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:68","typeDescriptions":{}}},"id":21134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:68","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":21136,"nodeType":"ExpressionStatement","src":"25976:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21137,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21128,"src":"26016:10:68","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21138,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21125,"src":"26030:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21146,"nodeType":"IfStatement","src":"26012:98:68","trueBody":{"id":21145,"nodeType":"Block","src":"26037:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":21141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:68","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":21142,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21125,"src":"26093:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21140,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"26058:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21144,"nodeType":"RevertStatement","src":"26051:48:68"}]}}]},"documentation":{"id":21123,"nodeType":"StructuredDocumentation","src":"25575:312:68","text":" @dev Returns the downcasted int128 from int256, reverting on\n overflow (when the input is less than smallest int128 or\n greater than largest int128).\n Counterpart to Solidity's `int128` operator.\n Requirements:\n - input must fit into 128 bits"},"id":21148,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:68","nodeType":"FunctionDefinition","parameters":{"id":21126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21125,"mutability":"mutable","name":"value","nameLocation":"25917:5:68","nodeType":"VariableDeclaration","scope":21148,"src":"25910:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21124,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:68"},"returnParameters":{"id":21129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21128,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:68","nodeType":"VariableDeclaration","scope":21148,"src":"25947:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":21127,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:68","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:68"},"scope":21579,"src":"25892:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21173,"nodeType":"Block","src":"26513:150:68","statements":[{"expression":{"id":21161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21156,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21154,"src":"26523:10:68","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21159,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21151,"src":"26543:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":21157,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:68","typeDescriptions":{}}},"id":21160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:68","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":21162,"nodeType":"ExpressionStatement","src":"26523:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21163,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21154,"src":"26563:10:68","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21164,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21151,"src":"26577:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21172,"nodeType":"IfStatement","src":"26559:98:68","trueBody":{"id":21171,"nodeType":"Block","src":"26584:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":21167,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:68","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":21168,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21151,"src":"26640:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21166,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"26605:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21170,"nodeType":"RevertStatement","src":"26598:48:68"}]}}]},"documentation":{"id":21149,"nodeType":"StructuredDocumentation","src":"26122:312:68","text":" @dev Returns the downcasted int120 from int256, reverting on\n overflow (when the input is less than smallest int120 or\n greater than largest int120).\n Counterpart to Solidity's `int120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":21174,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:68","nodeType":"FunctionDefinition","parameters":{"id":21152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21151,"mutability":"mutable","name":"value","nameLocation":"26464:5:68","nodeType":"VariableDeclaration","scope":21174,"src":"26457:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21150,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:68"},"returnParameters":{"id":21155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21154,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:68","nodeType":"VariableDeclaration","scope":21174,"src":"26494:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":21153,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:68","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:68"},"scope":21579,"src":"26439:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21199,"nodeType":"Block","src":"27060:150:68","statements":[{"expression":{"id":21187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21182,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21180,"src":"27070:10:68","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21185,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21177,"src":"27090:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":21183,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:68","typeDescriptions":{}}},"id":21186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:68","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":21188,"nodeType":"ExpressionStatement","src":"27070:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21189,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21180,"src":"27110:10:68","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21190,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21177,"src":"27124:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21198,"nodeType":"IfStatement","src":"27106:98:68","trueBody":{"id":21197,"nodeType":"Block","src":"27131:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":21193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:68","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":21194,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21177,"src":"27187:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21192,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"27152:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21196,"nodeType":"RevertStatement","src":"27145:48:68"}]}}]},"documentation":{"id":21175,"nodeType":"StructuredDocumentation","src":"26669:312:68","text":" @dev Returns the downcasted int112 from int256, reverting on\n overflow (when the input is less than smallest int112 or\n greater than largest int112).\n Counterpart to Solidity's `int112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":21200,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:68","nodeType":"FunctionDefinition","parameters":{"id":21178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21177,"mutability":"mutable","name":"value","nameLocation":"27011:5:68","nodeType":"VariableDeclaration","scope":21200,"src":"27004:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21176,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:68"},"returnParameters":{"id":21181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21180,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:68","nodeType":"VariableDeclaration","scope":21200,"src":"27041:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":21179,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:68","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:68"},"scope":21579,"src":"26986:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21225,"nodeType":"Block","src":"27607:150:68","statements":[{"expression":{"id":21213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21208,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21206,"src":"27617:10:68","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21211,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21203,"src":"27637:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":21209,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:68","typeDescriptions":{}}},"id":21212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:68","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":21214,"nodeType":"ExpressionStatement","src":"27617:26:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21215,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21206,"src":"27657:10:68","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21216,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21203,"src":"27671:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21224,"nodeType":"IfStatement","src":"27653:98:68","trueBody":{"id":21223,"nodeType":"Block","src":"27678:73:68","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":21219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:68","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":21220,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21203,"src":"27734:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21218,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"27699:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21222,"nodeType":"RevertStatement","src":"27692:48:68"}]}}]},"documentation":{"id":21201,"nodeType":"StructuredDocumentation","src":"27216:312:68","text":" @dev Returns the downcasted int104 from int256, reverting on\n overflow (when the input is less than smallest int104 or\n greater than largest int104).\n Counterpart to Solidity's `int104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":21226,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:68","nodeType":"FunctionDefinition","parameters":{"id":21204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21203,"mutability":"mutable","name":"value","nameLocation":"27558:5:68","nodeType":"VariableDeclaration","scope":21226,"src":"27551:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21202,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:68"},"returnParameters":{"id":21207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21206,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:68","nodeType":"VariableDeclaration","scope":21226,"src":"27588:17:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":21205,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:68","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:68"},"scope":21579,"src":"27533:224:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21251,"nodeType":"Block","src":"28147:148:68","statements":[{"expression":{"id":21239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21234,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21232,"src":"28157:10:68","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21237,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21229,"src":"28176:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":21235,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:68","typeDescriptions":{}}},"id":21238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:68","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":21240,"nodeType":"ExpressionStatement","src":"28157:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21241,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21232,"src":"28196:10:68","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21242,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21229,"src":"28210:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21250,"nodeType":"IfStatement","src":"28192:97:68","trueBody":{"id":21249,"nodeType":"Block","src":"28217:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":21245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:68","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":21246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21229,"src":"28272:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21244,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"28238:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21248,"nodeType":"RevertStatement","src":"28231:47:68"}]}}]},"documentation":{"id":21227,"nodeType":"StructuredDocumentation","src":"27763:307:68","text":" @dev Returns the downcasted int96 from int256, reverting on\n overflow (when the input is less than smallest int96 or\n greater than largest int96).\n Counterpart to Solidity's `int96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":21252,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:68","nodeType":"FunctionDefinition","parameters":{"id":21230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21229,"mutability":"mutable","name":"value","nameLocation":"28099:5:68","nodeType":"VariableDeclaration","scope":21252,"src":"28092:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21228,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:68"},"returnParameters":{"id":21233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21232,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:68","nodeType":"VariableDeclaration","scope":21252,"src":"28129:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":21231,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:68","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:68"},"scope":21579,"src":"28075:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21277,"nodeType":"Block","src":"28685:148:68","statements":[{"expression":{"id":21265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21260,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21258,"src":"28695:10:68","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21263,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21255,"src":"28714:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":21261,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:68","typeDescriptions":{}}},"id":21264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:68","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":21266,"nodeType":"ExpressionStatement","src":"28695:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21267,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21258,"src":"28734:10:68","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21255,"src":"28748:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21276,"nodeType":"IfStatement","src":"28730:97:68","trueBody":{"id":21275,"nodeType":"Block","src":"28755:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":21271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:68","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":21272,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21255,"src":"28810:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21270,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"28776:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21274,"nodeType":"RevertStatement","src":"28769:47:68"}]}}]},"documentation":{"id":21253,"nodeType":"StructuredDocumentation","src":"28301:307:68","text":" @dev Returns the downcasted int88 from int256, reverting on\n overflow (when the input is less than smallest int88 or\n greater than largest int88).\n Counterpart to Solidity's `int88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":21278,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:68","nodeType":"FunctionDefinition","parameters":{"id":21256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21255,"mutability":"mutable","name":"value","nameLocation":"28637:5:68","nodeType":"VariableDeclaration","scope":21278,"src":"28630:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21254,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:68"},"returnParameters":{"id":21259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21258,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:68","nodeType":"VariableDeclaration","scope":21278,"src":"28667:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":21257,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:68","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:68"},"scope":21579,"src":"28613:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21303,"nodeType":"Block","src":"29223:148:68","statements":[{"expression":{"id":21291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21286,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21284,"src":"29233:10:68","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21289,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21281,"src":"29252:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":21287,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:68","typeDescriptions":{}}},"id":21290,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:68","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":21292,"nodeType":"ExpressionStatement","src":"29233:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21293,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21284,"src":"29272:10:68","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21281,"src":"29286:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21302,"nodeType":"IfStatement","src":"29268:97:68","trueBody":{"id":21301,"nodeType":"Block","src":"29293:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":21297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:68","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":21298,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21281,"src":"29348:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21296,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"29314:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21300,"nodeType":"RevertStatement","src":"29307:47:68"}]}}]},"documentation":{"id":21279,"nodeType":"StructuredDocumentation","src":"28839:307:68","text":" @dev Returns the downcasted int80 from int256, reverting on\n overflow (when the input is less than smallest int80 or\n greater than largest int80).\n Counterpart to Solidity's `int80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":21304,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:68","nodeType":"FunctionDefinition","parameters":{"id":21282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21281,"mutability":"mutable","name":"value","nameLocation":"29175:5:68","nodeType":"VariableDeclaration","scope":21304,"src":"29168:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21280,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:68"},"returnParameters":{"id":21285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21284,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:68","nodeType":"VariableDeclaration","scope":21304,"src":"29205:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":21283,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:68","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:68"},"scope":21579,"src":"29151:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21329,"nodeType":"Block","src":"29761:148:68","statements":[{"expression":{"id":21317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21312,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21310,"src":"29771:10:68","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21315,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21307,"src":"29790:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":21313,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:68","typeDescriptions":{}}},"id":21316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:68","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":21318,"nodeType":"ExpressionStatement","src":"29771:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21319,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21310,"src":"29810:10:68","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21320,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21307,"src":"29824:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21328,"nodeType":"IfStatement","src":"29806:97:68","trueBody":{"id":21327,"nodeType":"Block","src":"29831:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":21323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:68","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":21324,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21307,"src":"29886:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21322,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"29852:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21326,"nodeType":"RevertStatement","src":"29845:47:68"}]}}]},"documentation":{"id":21305,"nodeType":"StructuredDocumentation","src":"29377:307:68","text":" @dev Returns the downcasted int72 from int256, reverting on\n overflow (when the input is less than smallest int72 or\n greater than largest int72).\n Counterpart to Solidity's `int72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":21330,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:68","nodeType":"FunctionDefinition","parameters":{"id":21308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21307,"mutability":"mutable","name":"value","nameLocation":"29713:5:68","nodeType":"VariableDeclaration","scope":21330,"src":"29706:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21306,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:68"},"returnParameters":{"id":21311,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21310,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:68","nodeType":"VariableDeclaration","scope":21330,"src":"29743:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":21309,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:68","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:68"},"scope":21579,"src":"29689:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21355,"nodeType":"Block","src":"30299:148:68","statements":[{"expression":{"id":21343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21338,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21336,"src":"30309:10:68","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21341,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21333,"src":"30328:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":21339,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:68","typeDescriptions":{}}},"id":21342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:68","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":21344,"nodeType":"ExpressionStatement","src":"30309:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21345,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21336,"src":"30348:10:68","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21346,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21333,"src":"30362:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21354,"nodeType":"IfStatement","src":"30344:97:68","trueBody":{"id":21353,"nodeType":"Block","src":"30369:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":21349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:68","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":21350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21333,"src":"30424:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21348,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"30390:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21352,"nodeType":"RevertStatement","src":"30383:47:68"}]}}]},"documentation":{"id":21331,"nodeType":"StructuredDocumentation","src":"29915:307:68","text":" @dev Returns the downcasted int64 from int256, reverting on\n overflow (when the input is less than smallest int64 or\n greater than largest int64).\n Counterpart to Solidity's `int64` operator.\n Requirements:\n - input must fit into 64 bits"},"id":21356,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:68","nodeType":"FunctionDefinition","parameters":{"id":21334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21333,"mutability":"mutable","name":"value","nameLocation":"30251:5:68","nodeType":"VariableDeclaration","scope":21356,"src":"30244:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21332,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:68"},"returnParameters":{"id":21337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21336,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:68","nodeType":"VariableDeclaration","scope":21356,"src":"30281:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":21335,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:68","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:68"},"scope":21579,"src":"30227:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21381,"nodeType":"Block","src":"30837:148:68","statements":[{"expression":{"id":21369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21364,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21362,"src":"30847:10:68","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21367,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21359,"src":"30866:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":21365,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:68","typeDescriptions":{}}},"id":21368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:68","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":21370,"nodeType":"ExpressionStatement","src":"30847:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21371,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21362,"src":"30886:10:68","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21372,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21359,"src":"30900:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21380,"nodeType":"IfStatement","src":"30882:97:68","trueBody":{"id":21379,"nodeType":"Block","src":"30907:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":21375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:68","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":21376,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21359,"src":"30962:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21374,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"30928:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21378,"nodeType":"RevertStatement","src":"30921:47:68"}]}}]},"documentation":{"id":21357,"nodeType":"StructuredDocumentation","src":"30453:307:68","text":" @dev Returns the downcasted int56 from int256, reverting on\n overflow (when the input is less than smallest int56 or\n greater than largest int56).\n Counterpart to Solidity's `int56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":21382,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:68","nodeType":"FunctionDefinition","parameters":{"id":21360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21359,"mutability":"mutable","name":"value","nameLocation":"30789:5:68","nodeType":"VariableDeclaration","scope":21382,"src":"30782:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21358,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:68"},"returnParameters":{"id":21363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21362,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:68","nodeType":"VariableDeclaration","scope":21382,"src":"30819:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":21361,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:68","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:68"},"scope":21579,"src":"30765:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21407,"nodeType":"Block","src":"31375:148:68","statements":[{"expression":{"id":21395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21390,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21388,"src":"31385:10:68","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21393,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21385,"src":"31404:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21392,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":21391,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:68","typeDescriptions":{}}},"id":21394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:68","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":21396,"nodeType":"ExpressionStatement","src":"31385:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21397,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21388,"src":"31424:10:68","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21398,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21385,"src":"31438:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21406,"nodeType":"IfStatement","src":"31420:97:68","trueBody":{"id":21405,"nodeType":"Block","src":"31445:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":21401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:68","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":21402,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21385,"src":"31500:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21400,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"31466:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21404,"nodeType":"RevertStatement","src":"31459:47:68"}]}}]},"documentation":{"id":21383,"nodeType":"StructuredDocumentation","src":"30991:307:68","text":" @dev Returns the downcasted int48 from int256, reverting on\n overflow (when the input is less than smallest int48 or\n greater than largest int48).\n Counterpart to Solidity's `int48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":21408,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:68","nodeType":"FunctionDefinition","parameters":{"id":21386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21385,"mutability":"mutable","name":"value","nameLocation":"31327:5:68","nodeType":"VariableDeclaration","scope":21408,"src":"31320:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21384,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:68"},"returnParameters":{"id":21389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21388,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:68","nodeType":"VariableDeclaration","scope":21408,"src":"31357:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":21387,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:68","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:68"},"scope":21579,"src":"31303:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21433,"nodeType":"Block","src":"31913:148:68","statements":[{"expression":{"id":21421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21416,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21414,"src":"31923:10:68","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21419,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21411,"src":"31942:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21418,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":21417,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:68","typeDescriptions":{}}},"id":21420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:68","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":21422,"nodeType":"ExpressionStatement","src":"31923:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21423,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21414,"src":"31962:10:68","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21424,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21411,"src":"31976:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21432,"nodeType":"IfStatement","src":"31958:97:68","trueBody":{"id":21431,"nodeType":"Block","src":"31983:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":21427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:68","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":21428,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21411,"src":"32038:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21426,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"32004:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21430,"nodeType":"RevertStatement","src":"31997:47:68"}]}}]},"documentation":{"id":21409,"nodeType":"StructuredDocumentation","src":"31529:307:68","text":" @dev Returns the downcasted int40 from int256, reverting on\n overflow (when the input is less than smallest int40 or\n greater than largest int40).\n Counterpart to Solidity's `int40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":21434,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:68","nodeType":"FunctionDefinition","parameters":{"id":21412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21411,"mutability":"mutable","name":"value","nameLocation":"31865:5:68","nodeType":"VariableDeclaration","scope":21434,"src":"31858:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21410,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:68"},"returnParameters":{"id":21415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21414,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:68","nodeType":"VariableDeclaration","scope":21434,"src":"31895:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":21413,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:68","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:68"},"scope":21579,"src":"31841:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21459,"nodeType":"Block","src":"32451:148:68","statements":[{"expression":{"id":21447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21442,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21440,"src":"32461:10:68","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21445,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21437,"src":"32480:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21444,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":21443,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:68","typeDescriptions":{}}},"id":21446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:68","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":21448,"nodeType":"ExpressionStatement","src":"32461:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21449,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21440,"src":"32500:10:68","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21450,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21437,"src":"32514:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21458,"nodeType":"IfStatement","src":"32496:97:68","trueBody":{"id":21457,"nodeType":"Block","src":"32521:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":21453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:68","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":21454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21437,"src":"32576:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21452,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"32542:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21456,"nodeType":"RevertStatement","src":"32535:47:68"}]}}]},"documentation":{"id":21435,"nodeType":"StructuredDocumentation","src":"32067:307:68","text":" @dev Returns the downcasted int32 from int256, reverting on\n overflow (when the input is less than smallest int32 or\n greater than largest int32).\n Counterpart to Solidity's `int32` operator.\n Requirements:\n - input must fit into 32 bits"},"id":21460,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:68","nodeType":"FunctionDefinition","parameters":{"id":21438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21437,"mutability":"mutable","name":"value","nameLocation":"32403:5:68","nodeType":"VariableDeclaration","scope":21460,"src":"32396:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21436,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:68"},"returnParameters":{"id":21441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21440,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:68","nodeType":"VariableDeclaration","scope":21460,"src":"32433:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":21439,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:68","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:68"},"scope":21579,"src":"32379:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21485,"nodeType":"Block","src":"32989:148:68","statements":[{"expression":{"id":21473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21468,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21466,"src":"32999:10:68","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21471,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21463,"src":"33018:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":21469,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:68","typeDescriptions":{}}},"id":21472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:68","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":21474,"nodeType":"ExpressionStatement","src":"32999:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21475,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21466,"src":"33038:10:68","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21476,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21463,"src":"33052:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21484,"nodeType":"IfStatement","src":"33034:97:68","trueBody":{"id":21483,"nodeType":"Block","src":"33059:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":21479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:68","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":21480,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21463,"src":"33114:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21478,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"33080:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21482,"nodeType":"RevertStatement","src":"33073:47:68"}]}}]},"documentation":{"id":21461,"nodeType":"StructuredDocumentation","src":"32605:307:68","text":" @dev Returns the downcasted int24 from int256, reverting on\n overflow (when the input is less than smallest int24 or\n greater than largest int24).\n Counterpart to Solidity's `int24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":21486,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:68","nodeType":"FunctionDefinition","parameters":{"id":21464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21463,"mutability":"mutable","name":"value","nameLocation":"32941:5:68","nodeType":"VariableDeclaration","scope":21486,"src":"32934:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21462,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:68"},"returnParameters":{"id":21467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21466,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:68","nodeType":"VariableDeclaration","scope":21486,"src":"32971:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":21465,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:68","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:68"},"scope":21579,"src":"32917:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21511,"nodeType":"Block","src":"33527:148:68","statements":[{"expression":{"id":21499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21494,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21492,"src":"33537:10:68","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21497,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21489,"src":"33556:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21496,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":21495,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:68","typeDescriptions":{}}},"id":21498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:68","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":21500,"nodeType":"ExpressionStatement","src":"33537:25:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21501,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21492,"src":"33576:10:68","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21502,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21489,"src":"33590:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21510,"nodeType":"IfStatement","src":"33572:97:68","trueBody":{"id":21509,"nodeType":"Block","src":"33597:72:68","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":21505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:68","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":21506,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21489,"src":"33652:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21504,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"33618:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21508,"nodeType":"RevertStatement","src":"33611:47:68"}]}}]},"documentation":{"id":21487,"nodeType":"StructuredDocumentation","src":"33143:307:68","text":" @dev Returns the downcasted int16 from int256, reverting on\n overflow (when the input is less than smallest int16 or\n greater than largest int16).\n Counterpart to Solidity's `int16` operator.\n Requirements:\n - input must fit into 16 bits"},"id":21512,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:68","nodeType":"FunctionDefinition","parameters":{"id":21490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21489,"mutability":"mutable","name":"value","nameLocation":"33479:5:68","nodeType":"VariableDeclaration","scope":21512,"src":"33472:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21488,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:68"},"returnParameters":{"id":21493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21492,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:68","nodeType":"VariableDeclaration","scope":21512,"src":"33509:16:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":21491,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:68","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:68"},"scope":21579,"src":"33455:220:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21537,"nodeType":"Block","src":"34058:146:68","statements":[{"expression":{"id":21525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21520,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21518,"src":"34068:10:68","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21523,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21515,"src":"34086:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":21521,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:68","typeDescriptions":{}}},"id":21524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:68","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":21526,"nodeType":"ExpressionStatement","src":"34068:24:68"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21527,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21518,"src":"34106:10:68","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21528,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21515,"src":"34120:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21536,"nodeType":"IfStatement","src":"34102:96:68","trueBody":{"id":21535,"nodeType":"Block","src":"34127:71:68","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":21531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:68","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":21532,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21515,"src":"34181:5:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21530,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"34148:29:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":21533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21534,"nodeType":"RevertStatement","src":"34141:46:68"}]}}]},"documentation":{"id":21513,"nodeType":"StructuredDocumentation","src":"33681:302:68","text":" @dev Returns the downcasted int8 from int256, reverting on\n overflow (when the input is less than smallest int8 or\n greater than largest int8).\n Counterpart to Solidity's `int8` operator.\n Requirements:\n - input must fit into 8 bits"},"id":21538,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:68","nodeType":"FunctionDefinition","parameters":{"id":21516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21515,"mutability":"mutable","name":"value","nameLocation":"34011:5:68","nodeType":"VariableDeclaration","scope":21538,"src":"34004:12:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21514,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:68"},"returnParameters":{"id":21519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21518,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:68","nodeType":"VariableDeclaration","scope":21538,"src":"34041:15:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":21517,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:68","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:68"},"scope":21579,"src":"33988:216:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21567,"nodeType":"Block","src":"34444:250:68","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21546,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21541,"src":"34557:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":21551,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":21550,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:68","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":21549,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:68","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":21552,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":21553,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:68","memberName":"max","nodeType":"MemberAccess","src":"34573:16:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:68","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":21547,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:68","typeDescriptions":{}}},"id":21554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21561,"nodeType":"IfStatement","src":"34553:105:68","trueBody":{"id":21560,"nodeType":"Block","src":"34592:66:68","statements":[{"errorCall":{"arguments":[{"id":21557,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21541,"src":"34641:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21556,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19841,"src":"34613:27:68","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":21558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21559,"nodeType":"RevertStatement","src":"34606:41:68"}]}},{"expression":{"arguments":[{"id":21564,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21541,"src":"34681:5:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21563,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:68","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":21562,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:68","typeDescriptions":{}}},"id":21565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:68","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":21545,"id":21566,"nodeType":"Return","src":"34667:20:68"}]},"documentation":{"id":21539,"nodeType":"StructuredDocumentation","src":"34210:165:68","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":21568,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:68","nodeType":"FunctionDefinition","parameters":{"id":21542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21541,"mutability":"mutable","name":"value","nameLocation":"34406:5:68","nodeType":"VariableDeclaration","scope":21568,"src":"34398:13:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21540,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:68"},"returnParameters":{"id":21545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21568,"src":"34436:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21543,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:68","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:68"},"scope":21579,"src":"34380:314:68","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21577,"nodeType":"Block","src":"34853:87:68","statements":[{"AST":{"nativeSrc":"34888:46:68","nodeType":"YulBlock","src":"34888:46:68","statements":[{"nativeSrc":"34902:22:68","nodeType":"YulAssignment","src":"34902:22:68","value":{"arguments":[{"arguments":[{"name":"b","nativeSrc":"34921:1:68","nodeType":"YulIdentifier","src":"34921:1:68"}],"functionName":{"name":"iszero","nativeSrc":"34914:6:68","nodeType":"YulIdentifier","src":"34914:6:68"},"nativeSrc":"34914:9:68","nodeType":"YulFunctionCall","src":"34914:9:68"}],"functionName":{"name":"iszero","nativeSrc":"34907:6:68","nodeType":"YulIdentifier","src":"34907:6:68"},"nativeSrc":"34907:17:68","nodeType":"YulFunctionCall","src":"34907:17:68"},"variableNames":[{"name":"u","nativeSrc":"34902:1:68","nodeType":"YulIdentifier","src":"34902:1:68"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":21571,"isOffset":false,"isSlot":false,"src":"34921:1:68","valueSize":1},{"declaration":21574,"isOffset":false,"isSlot":false,"src":"34902:1:68","valueSize":1}],"flags":["memory-safe"],"id":21576,"nodeType":"InlineAssembly","src":"34863:71:68"}]},"documentation":{"id":21569,"nodeType":"StructuredDocumentation","src":"34700:90:68","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":21578,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:68","nodeType":"FunctionDefinition","parameters":{"id":21572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21571,"mutability":"mutable","name":"b","nameLocation":"34816:1:68","nodeType":"VariableDeclaration","scope":21578,"src":"34811:6:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21570,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:68","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:68"},"returnParameters":{"id":21575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21574,"mutability":"mutable","name":"u","nameLocation":"34850:1:68","nodeType":"VariableDeclaration","scope":21578,"src":"34842:9:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21573,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:68","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:68"},"scope":21579,"src":"34795:145:68","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":21580,"src":"769:34173:68","usedErrors":[19824,19829,19836,19841],"usedEvents":[]}],"src":"192:34751:68"},"id":68},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[21579],"SignedMath":[21723]},"id":21724,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":21581,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:69"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":21583,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21724,"sourceUnit":21580,"src":"135:40:69","symbolAliases":[{"foreign":{"id":21582,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"143:8:69","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":21584,"nodeType":"StructuredDocumentation","src":"177:80:69","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":21723,"linearizedBaseContracts":[21723],"name":"SignedMath","nameLocation":"266:10:69","nodeType":"ContractDefinition","nodes":[{"body":{"id":21613,"nodeType":"Block","src":"746:215:69","statements":[{"id":21612,"nodeType":"UncheckedBlock","src":"756:199:69","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21596,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21591,"src":"894:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21597,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21589,"src":"900:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":21598,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21591,"src":"904:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21600,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":21605,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21587,"src":"932:9:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":21603,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"916:8:69","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":21604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:69","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":21578,"src":"916:15:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":21606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21602,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:69","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":21601,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:69","typeDescriptions":{}}},"id":21607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21609,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":21595,"id":21611,"nodeType":"Return","src":"887:57:69"}]}]},"documentation":{"id":21585,"nodeType":"StructuredDocumentation","src":"283:374:69","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":21614,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:69","nodeType":"FunctionDefinition","parameters":{"id":21592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21587,"mutability":"mutable","name":"condition","nameLocation":"684:9:69","nodeType":"VariableDeclaration","scope":21614,"src":"679:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21586,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21589,"mutability":"mutable","name":"a","nameLocation":"702:1:69","nodeType":"VariableDeclaration","scope":21614,"src":"695:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21588,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":21591,"mutability":"mutable","name":"b","nameLocation":"712:1:69","nodeType":"VariableDeclaration","scope":21614,"src":"705:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21590,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:69"},"returnParameters":{"id":21595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21614,"src":"738:6:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21593,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:69"},"scope":21723,"src":"662:299:69","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21632,"nodeType":"Block","src":"1102:44:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21625,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21617,"src":"1127:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":21626,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21619,"src":"1131:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":21628,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21617,"src":"1134:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":21629,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21619,"src":"1137:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21624,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21614,"src":"1119:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":21630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":21623,"id":21631,"nodeType":"Return","src":"1112:27:69"}]},"documentation":{"id":21615,"nodeType":"StructuredDocumentation","src":"967:66:69","text":" @dev Returns the largest of two signed numbers."},"id":21633,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:69","nodeType":"FunctionDefinition","parameters":{"id":21620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21617,"mutability":"mutable","name":"a","nameLocation":"1058:1:69","nodeType":"VariableDeclaration","scope":21633,"src":"1051:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21616,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":21619,"mutability":"mutable","name":"b","nameLocation":"1068:1:69","nodeType":"VariableDeclaration","scope":21633,"src":"1061:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21618,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:69"},"returnParameters":{"id":21623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21633,"src":"1094:6:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21621,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:69"},"scope":21723,"src":"1038:108:69","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21651,"nodeType":"Block","src":"1288:44:69","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21644,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21636,"src":"1313:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":21645,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21638,"src":"1317:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:69","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":21647,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21636,"src":"1320:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":21648,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21638,"src":"1323:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21643,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21614,"src":"1305:7:69","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":21649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":21642,"id":21650,"nodeType":"Return","src":"1298:27:69"}]},"documentation":{"id":21634,"nodeType":"StructuredDocumentation","src":"1152:67:69","text":" @dev Returns the smallest of two signed numbers."},"id":21652,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:69","nodeType":"FunctionDefinition","parameters":{"id":21639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21636,"mutability":"mutable","name":"a","nameLocation":"1244:1:69","nodeType":"VariableDeclaration","scope":21652,"src":"1237:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21635,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":21638,"mutability":"mutable","name":"b","nameLocation":"1254:1:69","nodeType":"VariableDeclaration","scope":21652,"src":"1247:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21637,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:69"},"returnParameters":{"id":21642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21641,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21652,"src":"1280:6:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21640,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:69"},"scope":21723,"src":"1224:108:69","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21695,"nodeType":"Block","src":"1537:162:69","statements":[{"assignments":[21663],"declarations":[{"constant":false,"id":21663,"mutability":"mutable","name":"x","nameLocation":"1606:1:69","nodeType":"VariableDeclaration","scope":21695,"src":"1599:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21662,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":21676,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21664,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21655,"src":"1611:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":21665,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21657,"src":"1615:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21667,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21668,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21655,"src":"1622:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":21669,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21657,"src":"1626:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21671,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":21672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:69","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21674,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:69"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21677,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21663,"src":"1651:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21682,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21663,"src":"1671:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21681,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":21680,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:69","typeDescriptions":{}}},"id":21683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":21684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:69","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:69","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":21678,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:69","typeDescriptions":{}}},"id":21686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21687,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21655,"src":"1685:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":21688,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21657,"src":"1689:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21690,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21692,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":21661,"id":21694,"nodeType":"Return","src":"1644:48:69"}]},"documentation":{"id":21653,"nodeType":"StructuredDocumentation","src":"1338:126:69","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":21696,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:69","nodeType":"FunctionDefinition","parameters":{"id":21658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21655,"mutability":"mutable","name":"a","nameLocation":"1493:1:69","nodeType":"VariableDeclaration","scope":21696,"src":"1486:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21654,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":21657,"mutability":"mutable","name":"b","nameLocation":"1503:1:69","nodeType":"VariableDeclaration","scope":21696,"src":"1496:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21656,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:69"},"returnParameters":{"id":21661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21660,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21696,"src":"1529:6:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21659,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:69"},"scope":21723,"src":"1469:230:69","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21721,"nodeType":"Block","src":"1843:767:69","statements":[{"id":21720,"nodeType":"UncheckedBlock","src":"1853:751:69","statements":[{"assignments":[21705],"declarations":[{"constant":false,"id":21705,"mutability":"mutable","name":"mask","nameLocation":"2424:4:69","nodeType":"VariableDeclaration","scope":21720,"src":"2417:11:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21704,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":21709,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21706,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21699,"src":"2431:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":21707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:69","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:69"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":21714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21712,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21699,"src":"2576:1:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":21713,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21705,"src":"2580:4:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":21715,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":21716,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21705,"src":"2588:4:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":21711,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:69","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":21710,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:69","typeDescriptions":{}}},"id":21718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:69","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":21703,"id":21719,"nodeType":"Return","src":"2560:33:69"}]}]},"documentation":{"id":21697,"nodeType":"StructuredDocumentation","src":"1705:78:69","text":" @dev Returns the absolute unsigned value of a signed value."},"id":21722,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:69","nodeType":"FunctionDefinition","parameters":{"id":21700,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21699,"mutability":"mutable","name":"n","nameLocation":"1808:1:69","nodeType":"VariableDeclaration","scope":21722,"src":"1801:8:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":21698,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:69","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:69"},"returnParameters":{"id":21703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21702,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21722,"src":"1834:7:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":21701,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:69"},"scope":21723,"src":"1788:822:69","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":21724,"src":"258:2354:69","usedErrors":[],"usedEvents":[]}],"src":"109:2504:69"},"id":69},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[19814],"SafeCast":[21579],"Time":[21997]},"id":21998,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":21725,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:70"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":21727,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21998,"sourceUnit":19815,"src":"130:38:70","symbolAliases":[{"foreign":{"id":21726,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"138:4:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":21729,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21998,"sourceUnit":21580,"src":"169:46:70","symbolAliases":[{"foreign":{"id":21728,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"177:8:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":21730,"nodeType":"StructuredDocumentation","src":"217:422:70","text":" @dev This library provides helpers for manipulating time-related objects.\n It uses the following types:\n - `uint48` for timepoints\n - `uint32` for durations\n While the library doesn't provide specific types for timepoints and duration, it does provide:\n - a `Delay` type to represent duration that can be programmed to change value automatically at a given point\n - additional helper functions"},"fullyImplemented":true,"id":21997,"linearizedBaseContracts":[21997],"name":"Time","nameLocation":"648:4:70","nodeType":"ContractDefinition","nodes":[{"global":false,"id":21732,"libraryName":{"id":21731,"name":"Time","nameLocations":["665:4:70"],"nodeType":"IdentifierPath","referencedDeclaration":21997,"src":"665:4:70"},"nodeType":"UsingForDirective","src":"659:17:70"},{"body":{"id":21744,"nodeType":"Block","src":"802:58:70","statements":[{"expression":{"arguments":[{"expression":{"id":21740,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"837:5:70","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":21741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:70","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21738,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"819:8:70","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":21739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:70","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":20569,"src":"819:17:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":21742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":21737,"id":21743,"nodeType":"Return","src":"812:41:70"}]},"documentation":{"id":21733,"nodeType":"StructuredDocumentation","src":"682:63:70","text":" @dev Get the block timestamp as a Timepoint."},"id":21745,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:70","nodeType":"FunctionDefinition","parameters":{"id":21734,"nodeType":"ParameterList","parameters":[],"src":"768:2:70"},"returnParameters":{"id":21737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21736,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21745,"src":"794:6:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21735,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:70"},"scope":21997,"src":"750:110:70","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":21757,"nodeType":"Block","src":"985:55:70","statements":[{"expression":{"arguments":[{"expression":{"id":21753,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1020:5:70","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":21754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:70","memberName":"number","nodeType":"MemberAccess","src":"1020:12:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":21751,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"1002:8:70","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$21579_$","typeString":"type(library SafeCast)"}},"id":21752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:70","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":20569,"src":"1002:17:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":21755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":21750,"id":21756,"nodeType":"Return","src":"995:38:70"}]},"documentation":{"id":21746,"nodeType":"StructuredDocumentation","src":"866:60:70","text":" @dev Get the block number as a Timepoint."},"id":21758,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:70","nodeType":"FunctionDefinition","parameters":{"id":21747,"nodeType":"ParameterList","parameters":[],"src":"951:2:70"},"returnParameters":{"id":21750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21749,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21758,"src":"977:6:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21748,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:70"},"scope":21997,"src":"931:109:70","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":21760,"name":"Delay","nameLocation":"2377:5:70","nodeType":"UserDefinedValueTypeDefinition","src":"2372:22:70","underlyingType":{"id":21759,"name":"uint112","nodeType":"ElementaryTypeName","src":"2386:7:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":21774,"nodeType":"Block","src":"2572:44:70","statements":[{"expression":{"arguments":[{"id":21771,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21763,"src":"2600:8:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":21769,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21760,"src":"2589:5:70","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$21760_$","typeString":"type(Time.Delay)"}},"id":21770,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2595:4:70","memberName":"wrap","nodeType":"MemberAccess","src":"2589:10:70","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":21772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2589:20:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"functionReturnParameters":21768,"id":21773,"nodeType":"Return","src":"2582:27:70"}]},"documentation":{"id":21761,"nodeType":"StructuredDocumentation","src":"2400:103:70","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":21775,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2517:7:70","nodeType":"FunctionDefinition","parameters":{"id":21764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21763,"mutability":"mutable","name":"duration","nameLocation":"2532:8:70","nodeType":"VariableDeclaration","scope":21775,"src":"2525:15:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21762,"name":"uint32","nodeType":"ElementaryTypeName","src":"2525:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2524:17:70"},"returnParameters":{"id":21768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21767,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21775,"src":"2565:5:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21766,"nodeType":"UserDefinedTypeName","pathNode":{"id":21765,"name":"Delay","nameLocations":["2565:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"2565:5:70"},"referencedDeclaration":21760,"src":"2565:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2564:7:70"},"scope":21997,"src":"2508:108:70","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21812,"nodeType":"Block","src":"3016:159:70","statements":[{"expression":{"id":21797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":21790,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21784,"src":"3027:11:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21791,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21786,"src":"3040:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21792,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21788,"src":"3052:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":21793,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3026:33:70","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21794,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21779,"src":"3062:4:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":21795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3067:6:70","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":21958,"src":"3062:11:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":21796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3062:13:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3026:49:70","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21798,"nodeType":"ExpressionStatement","src":"3026:49:70"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21799,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21788,"src":"3092:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":21800,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21781,"src":"3102:9:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3092:19:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":21806,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21784,"src":"3136:11:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21807,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21786,"src":"3149:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21808,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21788,"src":"3161:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":21809,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3135:33:70","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":21810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3092:76:70","trueExpression":{"components":[{"id":21802,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21786,"src":"3115:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":21803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:70","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":21804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3130:1:70","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21805,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3114:18:70","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(uint32,int_const 0,int_const 0)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":21789,"id":21811,"nodeType":"Return","src":"3085:83:70"}]},"documentation":{"id":21776,"nodeType":"StructuredDocumentation","src":"2622:241:70","text":" @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled\n change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered."},"id":21813,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2877:10:70","nodeType":"FunctionDefinition","parameters":{"id":21782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21779,"mutability":"mutable","name":"self","nameLocation":"2903:4:70","nodeType":"VariableDeclaration","scope":21813,"src":"2897:10:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21778,"nodeType":"UserDefinedTypeName","pathNode":{"id":21777,"name":"Delay","nameLocations":["2897:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"2897:5:70"},"referencedDeclaration":21760,"src":"2897:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":21781,"mutability":"mutable","name":"timepoint","nameLocation":"2924:9:70","nodeType":"VariableDeclaration","scope":21813,"src":"2917:16:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21780,"name":"uint48","nodeType":"ElementaryTypeName","src":"2917:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2887:52:70"},"returnParameters":{"id":21789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21784,"mutability":"mutable","name":"valueBefore","nameLocation":"2969:11:70","nodeType":"VariableDeclaration","scope":21813,"src":"2962:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21783,"name":"uint32","nodeType":"ElementaryTypeName","src":"2962:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21786,"mutability":"mutable","name":"valueAfter","nameLocation":"2989:10:70","nodeType":"VariableDeclaration","scope":21813,"src":"2982:17:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21785,"name":"uint32","nodeType":"ElementaryTypeName","src":"2982:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21788,"mutability":"mutable","name":"effect","nameLocation":"3008:6:70","nodeType":"VariableDeclaration","scope":21813,"src":"3001:13:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21787,"name":"uint48","nodeType":"ElementaryTypeName","src":"3001:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2961:54:70"},"scope":21997,"src":"2868:307:70","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":21832,"nodeType":"Block","src":"3499:53:70","statements":[{"expression":{"arguments":[{"id":21827,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21817,"src":"3527:4:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21828,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21745,"src":"3533:9:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":21829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3533:11:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":21826,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21813,"src":"3516:10:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":21830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3516:29:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":21825,"id":21831,"nodeType":"Return","src":"3509:36:70"}]},"documentation":{"id":21814,"nodeType":"StructuredDocumentation","src":"3181:207:70","text":" @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the\n effect timepoint is 0, then the pending value should not be considered."},"id":21833,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3402:7:70","nodeType":"FunctionDefinition","parameters":{"id":21818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21817,"mutability":"mutable","name":"self","nameLocation":"3416:4:70","nodeType":"VariableDeclaration","scope":21833,"src":"3410:10:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21816,"nodeType":"UserDefinedTypeName","pathNode":{"id":21815,"name":"Delay","nameLocations":["3410:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"3410:5:70"},"referencedDeclaration":21760,"src":"3410:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3409:12:70"},"returnParameters":{"id":21825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21820,"mutability":"mutable","name":"valueBefore","nameLocation":"3452:11:70","nodeType":"VariableDeclaration","scope":21833,"src":"3445:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21819,"name":"uint32","nodeType":"ElementaryTypeName","src":"3445:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21822,"mutability":"mutable","name":"valueAfter","nameLocation":"3472:10:70","nodeType":"VariableDeclaration","scope":21833,"src":"3465:17:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21821,"name":"uint32","nodeType":"ElementaryTypeName","src":"3465:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21824,"mutability":"mutable","name":"effect","nameLocation":"3491:6:70","nodeType":"VariableDeclaration","scope":21833,"src":"3484:13:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21823,"name":"uint48","nodeType":"ElementaryTypeName","src":"3484:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3444:54:70"},"scope":21997,"src":"3393:159:70","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":21850,"nodeType":"Block","src":"3665:74:70","statements":[{"assignments":[21843,null,null],"declarations":[{"constant":false,"id":21843,"mutability":"mutable","name":"delay","nameLocation":"3683:5:70","nodeType":"VariableDeclaration","scope":21850,"src":"3676:12:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21842,"name":"uint32","nodeType":"ElementaryTypeName","src":"3676:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":21847,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21844,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21837,"src":"3696:4:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":21845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3701:7:70","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":21833,"src":"3696:12:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":21846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3696:14:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3675:35:70"},{"expression":{"id":21848,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21843,"src":"3727:5:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":21841,"id":21849,"nodeType":"Return","src":"3720:12:70"}]},"documentation":{"id":21834,"nodeType":"StructuredDocumentation","src":"3558:46:70","text":" @dev Get the current value."},"id":21851,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3618:3:70","nodeType":"FunctionDefinition","parameters":{"id":21838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21837,"mutability":"mutable","name":"self","nameLocation":"3628:4:70","nodeType":"VariableDeclaration","scope":21851,"src":"3622:10:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21836,"nodeType":"UserDefinedTypeName","pathNode":{"id":21835,"name":"Delay","nameLocations":["3622:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"3622:5:70"},"referencedDeclaration":21760,"src":"3622:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3621:12:70"},"returnParameters":{"id":21841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21851,"src":"3657:6:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21839,"name":"uint32","nodeType":"ElementaryTypeName","src":"3657:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3656:8:70"},"scope":21997,"src":"3609:130:70","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":21906,"nodeType":"Block","src":"4189:234:70","statements":[{"assignments":[21868],"declarations":[{"constant":false,"id":21868,"mutability":"mutable","name":"value","nameLocation":"4206:5:70","nodeType":"VariableDeclaration","scope":21906,"src":"4199:12:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21867,"name":"uint32","nodeType":"ElementaryTypeName","src":"4199:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21872,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21869,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21855,"src":"4214:4:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"id":21870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4219:3:70","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":21851,"src":"4214:8:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":21871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:10:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4199:25:70"},{"assignments":[21874],"declarations":[{"constant":false,"id":21874,"mutability":"mutable","name":"setback","nameLocation":"4241:7:70","nodeType":"VariableDeclaration","scope":21906,"src":"4234:14:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21873,"name":"uint32","nodeType":"ElementaryTypeName","src":"4234:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21890,"initialValue":{"arguments":[{"arguments":[{"id":21879,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21859,"src":"4267:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":21882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21880,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21868,"src":"4279:5:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":21881,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21857,"src":"4287:8:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4279:16:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":21886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4317:1:70","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":21887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4279:39:70","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":21885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21883,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21868,"src":"4298:5:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":21884,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21857,"src":"4306:8:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4298:16:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":21877,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"4258:4:70","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":21878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4263:3:70","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":18424,"src":"4258:8:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":21888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4258:61:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21876,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4251:6:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":21875,"name":"uint32","nodeType":"ElementaryTypeName","src":"4251:6:70","typeDescriptions":{}}},"id":21889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4251:69:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4234:86:70"},{"expression":{"id":21896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21891,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21865,"src":"4330:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21892,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21745,"src":"4339:9:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":21893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4339:11:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":21894,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"4353:7:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4339:21:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4330:30:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":21897,"nodeType":"ExpressionStatement","src":"4330:30:70"},{"expression":{"components":[{"arguments":[{"id":21899,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21868,"src":"4383:5:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21900,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21857,"src":"4390:8:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21901,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21865,"src":"4400:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":21898,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21996,"src":"4378:4:70","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":21902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:29:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},{"id":21903,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21865,"src":"4409:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":21904,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4377:39:70","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$21760_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":21866,"id":21905,"nodeType":"Return","src":"4370:46:70"}]},"documentation":{"id":21852,"nodeType":"StructuredDocumentation","src":"3745:283:70","text":" @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to\n enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the\n new delay becomes effective."},"id":21907,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4042:10:70","nodeType":"FunctionDefinition","parameters":{"id":21860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21855,"mutability":"mutable","name":"self","nameLocation":"4068:4:70","nodeType":"VariableDeclaration","scope":21907,"src":"4062:10:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21854,"nodeType":"UserDefinedTypeName","pathNode":{"id":21853,"name":"Delay","nameLocations":["4062:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"4062:5:70"},"referencedDeclaration":21760,"src":"4062:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":21857,"mutability":"mutable","name":"newValue","nameLocation":"4089:8:70","nodeType":"VariableDeclaration","scope":21907,"src":"4082:15:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21856,"name":"uint32","nodeType":"ElementaryTypeName","src":"4082:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21859,"mutability":"mutable","name":"minSetback","nameLocation":"4114:10:70","nodeType":"VariableDeclaration","scope":21907,"src":"4107:17:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21858,"name":"uint32","nodeType":"ElementaryTypeName","src":"4107:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4052:78:70"},"returnParameters":{"id":21866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21863,"mutability":"mutable","name":"updatedDelay","nameLocation":"4160:12:70","nodeType":"VariableDeclaration","scope":21907,"src":"4154:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21862,"nodeType":"UserDefinedTypeName","pathNode":{"id":21861,"name":"Delay","nameLocations":["4154:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"4154:5:70"},"referencedDeclaration":21760,"src":"4154:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":21865,"mutability":"mutable","name":"effect","nameLocation":"4181:6:70","nodeType":"VariableDeclaration","scope":21907,"src":"4174:13:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21864,"name":"uint48","nodeType":"ElementaryTypeName","src":"4174:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4153:35:70"},"scope":21997,"src":"4033:390:70","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":21957,"nodeType":"Block","src":"4656:212:70","statements":[{"assignments":[21921],"declarations":[{"constant":false,"id":21921,"mutability":"mutable","name":"raw","nameLocation":"4674:3:70","nodeType":"VariableDeclaration","scope":21957,"src":"4666:11:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":21920,"name":"uint112","nodeType":"ElementaryTypeName","src":"4666:7:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":21926,"initialValue":{"arguments":[{"id":21924,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21911,"src":"4693:4:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}],"expression":{"id":21922,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21760,"src":"4680:5:70","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$21760_$","typeString":"type(Time.Delay)"}},"id":21923,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4686:6:70","memberName":"unwrap","nodeType":"MemberAccess","src":"4680:12:70","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$21760_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":21925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4680:18:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4666:32:70"},{"expression":{"id":21932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21927,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21916,"src":"4709:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21930,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21921,"src":"4729:3:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":21929,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4722:6:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":21928,"name":"uint32","nodeType":"ElementaryTypeName","src":"4722:6:70","typeDescriptions":{}}},"id":21931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4722:11:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4709:24:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":21933,"nodeType":"ExpressionStatement","src":"4709:24:70"},{"expression":{"id":21941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21934,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21914,"src":"4743:11:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":21939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21937,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21921,"src":"4764:3:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":21938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4771:2:70","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4764:9:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":21936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4757:6:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":21935,"name":"uint32","nodeType":"ElementaryTypeName","src":"4757:6:70","typeDescriptions":{}}},"id":21940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4757:17:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4743:31:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":21942,"nodeType":"ExpressionStatement","src":"4743:31:70"},{"expression":{"id":21950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21943,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21918,"src":"4784:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":21948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21946,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21921,"src":"4800:3:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":21947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4807:2:70","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4800:9:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":21945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4793:6:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":21944,"name":"uint48","nodeType":"ElementaryTypeName","src":"4793:6:70","typeDescriptions":{}}},"id":21949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4793:17:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4784:26:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":21951,"nodeType":"ExpressionStatement","src":"4784:26:70"},{"expression":{"components":[{"id":21952,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21914,"src":"4829:11:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21953,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21916,"src":"4842:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21954,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21918,"src":"4854:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":21955,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4828:33:70","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":21919,"id":21956,"nodeType":"Return","src":"4821:40:70"}]},"documentation":{"id":21908,"nodeType":"StructuredDocumentation","src":"4429:117:70","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":21958,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4560:6:70","nodeType":"FunctionDefinition","parameters":{"id":21912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21911,"mutability":"mutable","name":"self","nameLocation":"4573:4:70","nodeType":"VariableDeclaration","scope":21958,"src":"4567:10:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21910,"nodeType":"UserDefinedTypeName","pathNode":{"id":21909,"name":"Delay","nameLocations":["4567:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"4567:5:70"},"referencedDeclaration":21760,"src":"4567:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4566:12:70"},"returnParameters":{"id":21919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21914,"mutability":"mutable","name":"valueBefore","nameLocation":"4609:11:70","nodeType":"VariableDeclaration","scope":21958,"src":"4602:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21913,"name":"uint32","nodeType":"ElementaryTypeName","src":"4602:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21916,"mutability":"mutable","name":"valueAfter","nameLocation":"4629:10:70","nodeType":"VariableDeclaration","scope":21958,"src":"4622:17:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21915,"name":"uint32","nodeType":"ElementaryTypeName","src":"4622:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21918,"mutability":"mutable","name":"effect","nameLocation":"4648:6:70","nodeType":"VariableDeclaration","scope":21958,"src":"4641:13:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21917,"name":"uint48","nodeType":"ElementaryTypeName","src":"4641:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4601:54:70"},"scope":21997,"src":"4551:317:70","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":21995,"nodeType":"Block","src":"5041:112:70","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":21992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":21987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":21978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21975,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21965,"src":"5078:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":21974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5070:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":21973,"name":"uint112","nodeType":"ElementaryTypeName","src":"5070:7:70","typeDescriptions":{}}},"id":21976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5070:15:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":21977,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5089:2:70","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5070:21:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":21979,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5069:23:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":21985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":21982,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21961,"src":"5104:11:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":21981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5096:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":21980,"name":"uint112","nodeType":"ElementaryTypeName","src":"5096:7:70","typeDescriptions":{}}},"id":21983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5096:20:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":21984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5120:2:70","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5096:26:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":21986,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5095:28:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:54:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":21990,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21963,"src":"5134:10:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":21989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5126:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":21988,"name":"uint112","nodeType":"ElementaryTypeName","src":"5126:7:70","typeDescriptions":{}}},"id":21991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5126:19:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5069:76:70","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":21971,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21760,"src":"5058:5:70","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$21760_$","typeString":"type(Time.Delay)"}},"id":21972,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5064:4:70","memberName":"wrap","nodeType":"MemberAccess","src":"5058:10:70","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$21760_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":21993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5058:88:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"functionReturnParameters":21970,"id":21994,"nodeType":"Return","src":"5051:95:70"}]},"documentation":{"id":21959,"nodeType":"StructuredDocumentation","src":"4874:64:70","text":" @dev pack the components into a Delay object."},"id":21996,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4952:4:70","nodeType":"FunctionDefinition","parameters":{"id":21966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21961,"mutability":"mutable","name":"valueBefore","nameLocation":"4964:11:70","nodeType":"VariableDeclaration","scope":21996,"src":"4957:18:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21960,"name":"uint32","nodeType":"ElementaryTypeName","src":"4957:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21963,"mutability":"mutable","name":"valueAfter","nameLocation":"4984:10:70","nodeType":"VariableDeclaration","scope":21996,"src":"4977:17:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21962,"name":"uint32","nodeType":"ElementaryTypeName","src":"4977:6:70","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21965,"mutability":"mutable","name":"effect","nameLocation":"5003:6:70","nodeType":"VariableDeclaration","scope":21996,"src":"4996:13:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21964,"name":"uint48","nodeType":"ElementaryTypeName","src":"4996:6:70","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4956:54:70"},"returnParameters":{"id":21970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21969,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21996,"src":"5034:5:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"},"typeName":{"id":21968,"nodeType":"UserDefinedTypeName","pathNode":{"id":21967,"name":"Delay","nameLocations":["5034:5:70"],"nodeType":"IdentifierPath","referencedDeclaration":21760,"src":"5034:5:70"},"referencedDeclaration":21760,"src":"5034:5:70","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$21760","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5033:7:70"},"scope":21997,"src":"4943:210:70","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":21998,"src":"640:4515:70","usedErrors":[],"usedEvents":[]}],"src":"104:5052:70"},"id":70},"contracts-exposed/CashFlowLender.sol":{"ast":{"absolutePath":"contracts-exposed/CashFlowLender.sol","exportedSymbols":{"$CashFlowLender":[22828],"AccessManagedProxy":[25542],"Address":[12580],"CashFlowLender":[25465],"ContextUpgradeable":[6771],"ERC165":[18196],"ERC1967Proxy":[10132],"ERC1967Utils":[10426],"ERC20Upgradeable":[5961],"ERC2771ContextUpgradeable":[4908],"ERC4626Upgradeable":[6725],"Errors":[12632],"IAccessManager":[9511],"IBeacon":[10472],"IERC1155Errors":[9951],"IERC1363":[9593],"IERC165":[18208],"IERC1822Proxiable":[9814],"IERC1967":[9618],"IERC20":[11065],"IERC20Errors":[9856],"IERC20Metadata":[11776],"IERC4626":[9796],"IERC721":[12302],"IERC721Errors":[9904],"IERC721Receiver":[12320],"IPolicyHolder":[4321],"IPolicyHolderV2":[4343],"IPolicyPool":[25555],"Initializable":[5162],"Math":[19814],"Packing":[16305],"Panic":[16357],"Proxy":[10462],"SafeCast":[21579],"SafeERC20":[12185],"StorageSlot":[16550],"Time":[21997],"UUPSUpgradeable":[5344]},"id":22829,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":21999,"literals":["solidity",">=","0.6",".0"],"nodeType":"PragmaDirective","src":"40:24:71"},{"absolutePath":"contracts/CashFlowLender.sol","file":"../contracts/CashFlowLender.sol","id":22000,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":25466,"src":"66:41:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":22001,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":18197,"src":"108:64:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":22002,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":18209,"src":"173:65:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol","id":22003,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":4344,"src":"239:63:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","id":22004,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":4322,"src":"303:61:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":22005,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":12321,"src":"365:66:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","id":22006,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":6726,"src":"432:91:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":22007,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9797,"src":"524:57:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","id":22008,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":5962,"src":"582:78:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":22009,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9952,"src":"661:63:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":22010,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":11777,"src":"725:75:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":22011,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":11066,"src":"801:56:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","id":22012,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":5345,"src":"858:77:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","id":22013,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9815,"src":"936:63:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","id":22014,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":4909,"src":"1000:82:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","id":22015,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":6772,"src":"1083:74:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","id":22016,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":5163,"src":"1158:75:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","file":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","id":22017,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9627,"src":"1234:63:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":22018,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9623,"src":"1298:55:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","file":"@openzeppelin/contracts/interfaces/IERC721.sol","id":22019,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9801,"src":"1354:56:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","file":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","id":22020,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9805,"src":"1411:64:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Packing.sol","file":"@openzeppelin/contracts/utils/Packing.sol","id":22021,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":16306,"src":"1476:51:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":22022,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":12581,"src":"1528:51:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":22023,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":19815,"src":"1580:53:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":22024,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":21580,"src":"1634:57:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":22025,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":12186,"src":"1692:65:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/dependencies/IPolicyPool.sol","file":"../contracts/dependencies/IPolicyPool.sol","id":22026,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":25556,"src":"1758:51:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/dependencies/AccessManagedProxy.sol","file":"../contracts/dependencies/AccessManagedProxy.sol","id":22027,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":25543,"src":"1810:58:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","id":22028,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":10427,"src":"1869:64:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":22029,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":12303,"src":"1934:58:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"@openzeppelin/contracts/utils/Errors.sol","id":22030,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":12633,"src":"1993:50:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"@openzeppelin/contracts/utils/Panic.sol","id":22031,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":16358,"src":"2044:49:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"@openzeppelin/contracts/interfaces/IERC1363.sol","id":22032,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9594,"src":"2094:57:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":22033,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":10133,"src":"2152:64:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":22034,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9512,"src":"2217:67:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","file":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","id":22035,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":10473,"src":"2285:58:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","file":"@openzeppelin/contracts/interfaces/IERC1967.sol","id":22036,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9619,"src":"2344:57:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"@openzeppelin/contracts/utils/StorageSlot.sol","id":22037,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":16551,"src":"2402:55:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"@openzeppelin/contracts/interfaces/IERC165.sol","id":22038,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":9598,"src":"2458:56:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"@openzeppelin/contracts/proxy/Proxy.sol","id":22039,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":10463,"src":"2515:49:71","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"@openzeppelin/contracts/utils/types/Time.sol","id":22040,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22829,"sourceUnit":21998,"src":"2565:54:71","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22041,"name":"CashFlowLender","nameLocations":["2649:14:71"],"nodeType":"IdentifierPath","referencedDeclaration":25465,"src":"2649:14:71"},"id":22042,"nodeType":"InheritanceSpecifier","src":"2649:14:71"}],"canonicalName":"$CashFlowLender","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":22828,"linearizedBaseContracts":[22828,25465,18196,18208,4343,4321,12320,6725,9796,5961,9856,11776,11065,5344,9814,4908,6771,5162],"name":"$CashFlowLender","nameLocation":"2630:15:71","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"342db739","id":22045,"mutability":"constant","name":"__hh_exposed_bytecode_marker","nameLocation":"2694:28:71","nodeType":"VariableDeclaration","scope":22828,"src":"2670:72:71","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22043,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2670:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"686172646861742d6578706f736564","id":22044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2725:17:71","typeDescriptions":{"typeIdentifier":"t_stringliteral_f6a960c8758adbe877a4de74a2b9831e34e005089a44b7540377aa49607070ac","typeString":"literal_string \"hardhat-exposed\""},"value":"hardhat-exposed"},"visibility":"public"},{"anonymous":false,"eventSelector":"3a221b9176b65b4a4850e63cd182357e93d2ad08e8951daa0904244dc82df460","id":22049,"name":"return$_deinvest","nameLocation":"2755:16:71","nodeType":"EventDefinition","parameters":{"id":22048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22047,"indexed":false,"mutability":"mutable","name":"deinvested","nameLocation":"2780:10:71","nodeType":"VariableDeclaration","scope":22049,"src":"2772:18:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22046,"name":"uint256","nodeType":"ElementaryTypeName","src":"2772:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2771:20:71"},"src":"2749:43:71"},{"anonymous":false,"eventSelector":"7281c4a6d49c3bb62269fed398306788c6b3b4fce8789168aa0ab94ec0dd9ec9","id":22053,"name":"return$_changeDebt","nameLocation":"2804:18:71","nodeType":"EventDefinition","parameters":{"id":22052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22051,"indexed":false,"mutability":"mutable","name":"currentDebt_","nameLocation":"2830:12:71","nodeType":"VariableDeclaration","scope":22053,"src":"2823:19:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":22050,"name":"int256","nodeType":"ElementaryTypeName","src":"2823:6:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2822:21:71"},"src":"2798:46:71"},{"body":{"id":22065,"nodeType":"Block","src":"2969:7:71","statements":[]},"id":22066,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":22061,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22055,"src":"2929:17:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22062,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22058,"src":"2948:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"id":22063,"kind":"baseConstructorSpecifier","modifierName":{"id":22060,"name":"CashFlowLender","nameLocations":["2914:14:71"],"nodeType":"IdentifierPath","referencedDeclaration":25465,"src":"2914:14:71"},"nodeType":"ModifierInvocation","src":"2914:46:71"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":22059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22055,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"2870:17:71","nodeType":"VariableDeclaration","scope":22066,"src":"2862:25:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22054,"name":"address","nodeType":"ElementaryTypeName","src":"2862:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22058,"mutability":"mutable","name":"policyPool_","nameLocation":"2901:11:71","nodeType":"VariableDeclaration","scope":22066,"src":"2889:23:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"},"typeName":{"id":22057,"nodeType":"UserDefinedTypeName","pathNode":{"id":22056,"name":"IPolicyPool","nameLocations":["2889:11:71"],"nodeType":"IdentifierPath","referencedDeclaration":25555,"src":"2889:11:71"},"referencedDeclaration":25555,"src":"2889:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"2861:52:71"},"returnParameters":{"id":22064,"nodeType":"ParameterList","parameters":[],"src":"2969:0:71"},"scope":22828,"src":"2850:126:71","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":22073,"nodeType":"Block","src":"3039:36:71","statements":[{"expression":{"id":22071,"name":"JAN_1ST_2025","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22984,"src":"3056:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22070,"id":22072,"nodeType":"Return","src":"3049:19:71"}]},"functionSelector":"025ca58e","id":22074,"implemented":true,"kind":"function","modifiers":[],"name":"$JAN_1ST_2025","nameLocation":"2991:13:71","nodeType":"FunctionDefinition","parameters":{"id":22067,"nodeType":"ParameterList","parameters":[],"src":"3004:2:71"},"returnParameters":{"id":22070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22074,"src":"3030:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22068,"name":"uint256","nodeType":"ElementaryTypeName","src":"3030:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3029:9:71"},"scope":22828,"src":"2982:93:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22081,"nodeType":"Block","src":"3141:39:71","statements":[{"expression":{"id":22079,"name":"SECONDS_PER_DAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22987,"src":"3158:15:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":22078,"id":22080,"nodeType":"Return","src":"3151:22:71"}]},"functionSelector":"53c42f88","id":22082,"implemented":true,"kind":"function","modifiers":[],"name":"$SECONDS_PER_DAY","nameLocation":"3090:16:71","nodeType":"FunctionDefinition","parameters":{"id":22075,"nodeType":"ParameterList","parameters":[],"src":"3106:2:71"},"returnParameters":{"id":22078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22082,"src":"3132:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22076,"name":"uint256","nodeType":"ElementaryTypeName","src":"3132:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3131:9:71"},"scope":22828,"src":"3081:99:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22090,"nodeType":"Block","src":"3246:35:71","statements":[{"expression":{"id":22088,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"3263:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"functionReturnParameters":22087,"id":22089,"nodeType":"Return","src":"3256:18:71"}]},"functionSelector":"33f965ce","id":22091,"implemented":true,"kind":"function","modifiers":[],"name":"$_policyPool","nameLocation":"3195:12:71","nodeType":"FunctionDefinition","parameters":{"id":22083,"nodeType":"ParameterList","parameters":[],"src":"3207:2:71"},"returnParameters":{"id":22087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22091,"src":"3233:11:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"},"typeName":{"id":22085,"nodeType":"UserDefinedTypeName","pathNode":{"id":22084,"name":"IPolicyPool","nameLocations":["3233:11:71"],"nodeType":"IdentifierPath","referencedDeclaration":25555,"src":"3233:11:71"},"referencedDeclaration":25555,"src":"3233:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"3232:13:71"},"scope":22828,"src":"3186:95:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22098,"nodeType":"Block","src":"3361:53:71","statements":[{"expression":{"id":22096,"name":"CashFlowLenderStorageLocation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23029,"src":"3378:29:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":22095,"id":22097,"nodeType":"Return","src":"3371:36:71"}]},"functionSelector":"0cabf231","id":22099,"implemented":true,"kind":"function","modifiers":[],"name":"$CashFlowLenderStorageLocation","nameLocation":"3296:30:71","nodeType":"FunctionDefinition","parameters":{"id":22092,"nodeType":"ParameterList","parameters":[],"src":"3326:2:71"},"returnParameters":{"id":22095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22094,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22099,"src":"3352:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22093,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3352:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3351:9:71"},"scope":22828,"src":"3287:127:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22106,"nodeType":"Block","src":"3487:46:71","statements":[{"expression":{"id":22104,"name":"ERC4626StorageLocation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23040,"src":"3504:22:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":22103,"id":22105,"nodeType":"Return","src":"3497:29:71"}]},"functionSelector":"5997ee36","id":22107,"implemented":true,"kind":"function","modifiers":[],"name":"$ERC4626StorageLocation","nameLocation":"3429:23:71","nodeType":"FunctionDefinition","parameters":{"id":22100,"nodeType":"ParameterList","parameters":[],"src":"3452:2:71"},"returnParameters":{"id":22103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22102,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22107,"src":"3478:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22101,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3478:7:71","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3477:9:71"},"scope":22828,"src":"3420:113:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22112,"nodeType":"Block","src":"3600:2:71","statements":[]},"functionSelector":"f14b624b","id":22113,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":22110,"kind":"modifierInvocation","modifierName":{"id":22109,"name":"onlyPolicyPool","nameLocations":["3583:14:71"],"nodeType":"IdentifierPath","referencedDeclaration":23224,"src":"3583:14:71"},"nodeType":"ModifierInvocation","src":"3583:16:71"}],"name":"$onlyPolicyPool","nameLocation":"3548:15:71","nodeType":"FunctionDefinition","parameters":{"id":22108,"nodeType":"ParameterList","parameters":[],"src":"3563:2:71"},"returnParameters":{"id":22111,"nodeType":"ParameterList","parameters":[],"src":"3600:0:71"},"scope":22828,"src":"3539:63:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22121,"nodeType":"Block","src":"3707:2:71","statements":[]},"functionSelector":"9db0391f","id":22122,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":22118,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22115,"src":"3699:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":22119,"kind":"modifierInvocation","modifierName":{"id":22117,"name":"forwardNewPolicyWrapper","nameLocations":["3675:23:71"],"nodeType":"IdentifierPath","referencedDeclaration":23327,"src":"3675:23:71"},"nodeType":"ModifierInvocation","src":"3675:31:71"}],"name":"$forwardNewPolicyWrapper","nameLocation":"3617:24:71","nodeType":"FunctionDefinition","parameters":{"id":22116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22115,"mutability":"mutable","name":"target","nameLocation":"3650:6:71","nodeType":"VariableDeclaration","scope":22122,"src":"3642:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22114,"name":"address","nodeType":"ElementaryTypeName","src":"3642:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3641:16:71"},"returnParameters":{"id":22120,"nodeType":"ParameterList","parameters":[],"src":"3707:0:71"},"scope":22828,"src":"3608:101:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22130,"nodeType":"Block","src":"3822:2:71","statements":[]},"functionSelector":"2f9cf0aa","id":22131,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":22127,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22124,"src":"3814:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":22128,"kind":"modifierInvocation","modifierName":{"id":22126,"name":"forwardResolvePolicyWrapper","nameLocations":["3786:27:71"],"nodeType":"IdentifierPath","referencedDeclaration":23380,"src":"3786:27:71"},"nodeType":"ModifierInvocation","src":"3786:35:71"}],"name":"$forwardResolvePolicyWrapper","nameLocation":"3724:28:71","nodeType":"FunctionDefinition","parameters":{"id":22125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22124,"mutability":"mutable","name":"target","nameLocation":"3761:6:71","nodeType":"VariableDeclaration","scope":22131,"src":"3753:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22123,"name":"address","nodeType":"ElementaryTypeName","src":"3753:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3752:16:71"},"returnParameters":{"id":22129,"nodeType":"ParameterList","parameters":[],"src":"3822:0:71"},"scope":22828,"src":"3715:109:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22136,"nodeType":"Block","src":"3881:2:71","statements":[]},"functionSelector":"657ab2b3","id":22137,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":22134,"kind":"modifierInvocation","modifierName":{"id":22133,"name":"onlyProxy","nameLocations":["3869:9:71"],"nodeType":"IdentifierPath","referencedDeclaration":5202,"src":"3869:9:71"},"nodeType":"ModifierInvocation","src":"3869:11:71"}],"name":"$onlyProxy","nameLocation":"3839:10:71","nodeType":"FunctionDefinition","parameters":{"id":22132,"nodeType":"ParameterList","parameters":[],"src":"3849:2:71"},"returnParameters":{"id":22135,"nodeType":"ParameterList","parameters":[],"src":"3881:0:71"},"scope":22828,"src":"3830:53:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22142,"nodeType":"Block","src":"3946:2:71","statements":[]},"functionSelector":"818f5673","id":22143,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":22140,"kind":"modifierInvocation","modifierName":{"id":22139,"name":"notDelegated","nameLocations":["3931:12:71"],"nodeType":"IdentifierPath","referencedDeclaration":5210,"src":"3931:12:71"},"nodeType":"ModifierInvocation","src":"3931:14:71"}],"name":"$notDelegated","nameLocation":"3898:13:71","nodeType":"FunctionDefinition","parameters":{"id":22138,"nodeType":"ParameterList","parameters":[],"src":"3911:2:71"},"returnParameters":{"id":22141,"nodeType":"ParameterList","parameters":[],"src":"3946:0:71"},"scope":22828,"src":"3889:59:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22148,"nodeType":"Block","src":"4009:2:71","statements":[]},"functionSelector":"401022ef","id":22149,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":22146,"kind":"modifierInvocation","modifierName":{"id":22145,"name":"initializer","nameLocations":["3995:11:71"],"nodeType":"IdentifierPath","referencedDeclaration":5016,"src":"3995:11:71"},"nodeType":"ModifierInvocation","src":"3995:13:71"}],"name":"$initializer","nameLocation":"3963:12:71","nodeType":"FunctionDefinition","parameters":{"id":22144,"nodeType":"ParameterList","parameters":[],"src":"3975:2:71"},"returnParameters":{"id":22147,"nodeType":"ParameterList","parameters":[],"src":"4009:0:71"},"scope":22828,"src":"3954:57:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22157,"nodeType":"Block","src":"4097:2:71","statements":[]},"functionSelector":"833d816d","id":22158,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":22154,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22151,"src":"4088:7:71","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":22155,"kind":"modifierInvocation","modifierName":{"id":22153,"name":"reinitializer","nameLocations":["4074:13:71"],"nodeType":"IdentifierPath","referencedDeclaration":5063,"src":"4074:13:71"},"nodeType":"ModifierInvocation","src":"4074:22:71"}],"name":"$reinitializer","nameLocation":"4026:14:71","nodeType":"FunctionDefinition","parameters":{"id":22152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22151,"mutability":"mutable","name":"version","nameLocation":"4048:7:71","nodeType":"VariableDeclaration","scope":22158,"src":"4041:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22150,"name":"uint64","nodeType":"ElementaryTypeName","src":"4041:6:71","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4040:16:71"},"returnParameters":{"id":22156,"nodeType":"ParameterList","parameters":[],"src":"4097:0:71"},"scope":22828,"src":"4017:82:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22163,"nodeType":"Block","src":"4170:2:71","statements":[]},"functionSelector":"8963227f","id":22164,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":22161,"kind":"modifierInvocation","modifierName":{"id":22160,"name":"onlyInitializing","nameLocations":["4151:16:71"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"4151:16:71"},"nodeType":"ModifierInvocation","src":"4151:18:71"}],"name":"$onlyInitializing","nameLocation":"4114:17:71","nodeType":"FunctionDefinition","parameters":{"id":22159,"nodeType":"ParameterList","parameters":[],"src":"4131:2:71"},"returnParameters":{"id":22162,"nodeType":"ParameterList","parameters":[],"src":"4170:0:71"},"scope":22828,"src":"4105:67:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22177,"nodeType":"Block","src":"4260:52:71","statements":[{"expression":{"id":22175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22170,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22168,"src":"4271:1:71","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_memory_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage memory"}}],"id":22171,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"4270:3:71","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_memory_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22172,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4276:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4282:21:71","memberName":"_getERC4626StorageCFL","nodeType":"MemberAccess","referencedDeclaration":23048,"src":"4276:27:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":22174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4276:29:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"src":"4270:35:71","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_memory_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage memory"}},"id":22176,"nodeType":"ExpressionStatement","src":"4270:35:71"}]},"functionSelector":"84c6af0c","id":22178,"implemented":true,"kind":"function","modifiers":[],"name":"$_getERC4626StorageCFL","nameLocation":"4187:22:71","nodeType":"FunctionDefinition","parameters":{"id":22165,"nodeType":"ParameterList","parameters":[],"src":"4209:2:71"},"returnParameters":{"id":22169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22168,"mutability":"mutable","name":"$","nameLocation":"4257:1:71","nodeType":"VariableDeclaration","scope":22178,"src":"4235:23:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_memory_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":22167,"nodeType":"UserDefinedTypeName","pathNode":{"id":22166,"name":"ERC4626Storage","nameLocations":["4235:14:71"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"4235:14:71"},"referencedDeclaration":5994,"src":"4235:14:71","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"src":"4234:25:71"},"scope":22828,"src":"4178:134:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22196,"nodeType":"Block","src":"4435:71:71","statements":[{"expression":{"arguments":[{"id":22191,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22180,"src":"4473:5:71","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":22192,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22182,"src":"4479:7:71","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":22193,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22185,"src":"4487:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"expression":{"id":22188,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4445:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4451:21:71","memberName":"__CashFlowLender_init","nodeType":"MemberAccess","referencedDeclaration":23460,"src":"4445:27:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (string memory,string memory,contract IERC4626)"}},"id":22194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4445:54:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22195,"nodeType":"ExpressionStatement","src":"4445:54:71"}]},"functionSelector":"97f8423e","id":22197,"implemented":true,"kind":"function","modifiers":[],"name":"$__CashFlowLender_init","nameLocation":"4327:22:71","nodeType":"FunctionDefinition","parameters":{"id":22186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22180,"mutability":"mutable","name":"name_","nameLocation":"4366:5:71","nodeType":"VariableDeclaration","scope":22197,"src":"4350:21:71","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22179,"name":"string","nodeType":"ElementaryTypeName","src":"4350:6:71","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":22182,"mutability":"mutable","name":"symbol_","nameLocation":"4388:7:71","nodeType":"VariableDeclaration","scope":22197,"src":"4372:23:71","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22181,"name":"string","nodeType":"ElementaryTypeName","src":"4372:6:71","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":22185,"mutability":"mutable","name":"yieldVault_","nameLocation":"4405:11:71","nodeType":"VariableDeclaration","scope":22197,"src":"4396:20:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":22184,"nodeType":"UserDefinedTypeName","pathNode":{"id":22183,"name":"IERC4626","nameLocations":["4396:8:71"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"4396:8:71"},"referencedDeclaration":9796,"src":"4396:8:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4349:68:71"},"returnParameters":{"id":22187,"nodeType":"ParameterList","parameters":[],"src":"4435:0:71"},"scope":22828,"src":"4318:188:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22209,"nodeType":"Block","src":"4593:67:71","statements":[{"expression":{"arguments":[{"id":22206,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22200,"src":"4641:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"expression":{"id":22203,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4603:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4609:31:71","memberName":"__CashFlowLender_init_unchained","nodeType":"MemberAccess","referencedDeclaration":23489,"src":"4603:37:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (contract IERC4626)"}},"id":22207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4603:50:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22208,"nodeType":"ExpressionStatement","src":"4603:50:71"}]},"functionSelector":"80da0a1c","id":22210,"implemented":true,"kind":"function","modifiers":[],"name":"$__CashFlowLender_init_unchained","nameLocation":"4521:32:71","nodeType":"FunctionDefinition","parameters":{"id":22201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22200,"mutability":"mutable","name":"yieldVault_","nameLocation":"4563:11:71","nodeType":"VariableDeclaration","scope":22210,"src":"4554:20:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":22199,"nodeType":"UserDefinedTypeName","pathNode":{"id":22198,"name":"IERC4626","nameLocations":["4554:8:71"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"4554:8:71"},"referencedDeclaration":9796,"src":"4554:8:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4553:22:71"},"returnParameters":{"id":22202,"nodeType":"ParameterList","parameters":[],"src":"4593:0:71"},"scope":22828,"src":"4512:148:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22222,"nodeType":"Block","src":"4730:50:71","statements":[{"expression":{"arguments":[{"id":22219,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22213,"src":"4761:11:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"expression":{"id":22216,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4740:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4746:14:71","memberName":"_setYieldVault","nodeType":"MemberAccess","referencedDeclaration":23571,"src":"4740:20:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (contract IERC4626)"}},"id":22220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4740:33:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22221,"nodeType":"ExpressionStatement","src":"4740:33:71"}]},"functionSelector":"8d94d575","id":22223,"implemented":true,"kind":"function","modifiers":[],"name":"$_setYieldVault","nameLocation":"4675:15:71","nodeType":"FunctionDefinition","parameters":{"id":22214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22213,"mutability":"mutable","name":"yieldVault_","nameLocation":"4700:11:71","nodeType":"VariableDeclaration","scope":22223,"src":"4691:20:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":22212,"nodeType":"UserDefinedTypeName","pathNode":{"id":22211,"name":"IERC4626","nameLocations":["4691:8:71"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"4691:8:71"},"referencedDeclaration":9796,"src":"4691:8:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4690:22:71"},"returnParameters":{"id":22215,"nodeType":"ParameterList","parameters":[],"src":"4730:0:71"},"scope":22828,"src":"4666:114:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22239,"nodeType":"Block","src":"4886:64:71","statements":[{"expression":{"id":22237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22231,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22229,"src":"4897:12:71","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}}],"id":22232,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"4896:14:71","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22235,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22225,"src":"4936:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":22233,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4913:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4919:16:71","memberName":"_getTargetConfig","nodeType":"MemberAccess","referencedDeclaration":23671,"src":"4913:22:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":22236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4913:30:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"src":"4896:47:71","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}},"id":22238,"nodeType":"ExpressionStatement","src":"4896:47:71"}]},"functionSelector":"8f792465","id":22240,"implemented":true,"kind":"function","modifiers":[],"name":"$_getTargetConfig","nameLocation":"4795:17:71","nodeType":"FunctionDefinition","parameters":{"id":22226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22225,"mutability":"mutable","name":"target","nameLocation":"4821:6:71","nodeType":"VariableDeclaration","scope":22240,"src":"4813:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22224,"name":"address","nodeType":"ElementaryTypeName","src":"4813:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4812:16:71"},"returnParameters":{"id":22230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22229,"mutability":"mutable","name":"targetConfig","nameLocation":"4872:12:71","nodeType":"VariableDeclaration","scope":22240,"src":"4852:32:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_memory_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":22228,"nodeType":"UserDefinedTypeName","pathNode":{"id":22227,"name":"TargetConfig","nameLocations":["4852:12:71"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"4852:12:71"},"referencedDeclaration":23009,"src":"4852:12:71","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"4851:34:71"},"scope":22828,"src":"4786:164:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22251,"nodeType":"Block","src":"5015:49:71","statements":[{"expression":{"arguments":[{"id":22248,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22242,"src":"5049:7:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":22245,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5025:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5031:17:71","memberName":"_authorizeUpgrade","nodeType":"MemberAccess","referencedDeclaration":23944,"src":"5025:23:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":22249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5025:32:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22250,"nodeType":"ExpressionStatement","src":"5025:32:71"}]},"functionSelector":"fbf9c9ce","id":22252,"implemented":true,"kind":"function","modifiers":[],"name":"$_authorizeUpgrade","nameLocation":"4965:18:71","nodeType":"FunctionDefinition","parameters":{"id":22243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22242,"mutability":"mutable","name":"newImpl","nameLocation":"4992:7:71","nodeType":"VariableDeclaration","scope":22252,"src":"4984:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22241,"name":"address","nodeType":"ElementaryTypeName","src":"4984:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4983:17:71"},"returnParameters":{"id":22244,"nodeType":"ParameterList","parameters":[],"src":"5015:0:71"},"scope":22828,"src":"4956:108:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22264,"nodeType":"Block","src":"5140:54:71","statements":[{"expression":{"id":22262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22257,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22255,"src":"5151:4:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22258,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5150:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22259,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5159:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5165:20:71","memberName":"_contextSuffixLength","nodeType":"MemberAccess","referencedDeclaration":24212,"src":"5159:26:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":22261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5159:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5150:37:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22263,"nodeType":"ExpressionStatement","src":"5150:37:71"}]},"functionSelector":"67354a84","id":22265,"implemented":true,"kind":"function","modifiers":[],"name":"$_contextSuffixLength","nameLocation":"5079:21:71","nodeType":"FunctionDefinition","parameters":{"id":22253,"nodeType":"ParameterList","parameters":[],"src":"5100:2:71"},"returnParameters":{"id":22256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22255,"mutability":"mutable","name":"ret0","nameLocation":"5134:4:71","nodeType":"VariableDeclaration","scope":22265,"src":"5126:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22254,"name":"uint256","nodeType":"ElementaryTypeName","src":"5126:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5125:14:71"},"scope":22828,"src":"5070:124:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22277,"nodeType":"Block","src":"5260:44:71","statements":[{"expression":{"id":22275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22270,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22268,"src":"5271:4:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":22271,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5270:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22272,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5279:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5285:10:71","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":24226,"src":"5279:16:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":22274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5279:18:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5270:27:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":22276,"nodeType":"ExpressionStatement","src":"5270:27:71"}]},"functionSelector":"2904df29","id":22278,"implemented":true,"kind":"function","modifiers":[],"name":"$_msgSender","nameLocation":"5209:11:71","nodeType":"FunctionDefinition","parameters":{"id":22266,"nodeType":"ParameterList","parameters":[],"src":"5220:2:71"},"returnParameters":{"id":22269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22268,"mutability":"mutable","name":"ret0","nameLocation":"5254:4:71","nodeType":"VariableDeclaration","scope":22278,"src":"5246:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22267,"name":"address","nodeType":"ElementaryTypeName","src":"5246:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5245:14:71"},"scope":22828,"src":"5200:104:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22290,"nodeType":"Block","src":"5373:42:71","statements":[{"expression":{"id":22288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22283,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22281,"src":"5384:4:71","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":22284,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5383:6:71","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22285,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5392:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5398:8:71","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":24240,"src":"5392:14:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":22287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5392:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"src":"5383:25:71","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":22289,"nodeType":"ExpressionStatement","src":"5383:25:71"}]},"functionSelector":"32cadf3c","id":22291,"implemented":true,"kind":"function","modifiers":[],"name":"$_msgData","nameLocation":"5319:9:71","nodeType":"FunctionDefinition","parameters":{"id":22279,"nodeType":"ParameterList","parameters":[],"src":"5328:2:71"},"returnParameters":{"id":22282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22281,"mutability":"mutable","name":"ret0","nameLocation":"5367:4:71","nodeType":"VariableDeclaration","scope":22291,"src":"5354:17:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":22280,"name":"bytes","nodeType":"ElementaryTypeName","src":"5354:5:71","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5353:19:71"},"scope":22828,"src":"5310:105:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22303,"nodeType":"Block","src":"5479:42:71","statements":[{"expression":{"id":22301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22296,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22294,"src":"5490:4:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22297,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5489:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22298,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5498:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5504:8:71","memberName":"_balance","nodeType":"MemberAccess","referencedDeclaration":24257,"src":"5498:14:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":22300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5498:16:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5489:25:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22302,"nodeType":"ExpressionStatement","src":"5489:25:71"}]},"functionSelector":"aeabd329","id":22304,"implemented":true,"kind":"function","modifiers":[],"name":"$_balance","nameLocation":"5430:9:71","nodeType":"FunctionDefinition","parameters":{"id":22292,"nodeType":"ParameterList","parameters":[],"src":"5439:2:71"},"returnParameters":{"id":22295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22294,"mutability":"mutable","name":"ret0","nameLocation":"5473:4:71","nodeType":"VariableDeclaration","scope":22304,"src":"5465:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22293,"name":"uint256","nodeType":"ElementaryTypeName","src":"5465:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5464:14:71"},"scope":22828,"src":"5421:100:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22322,"nodeType":"Block","src":"5615:59:71","statements":[{"expression":{"id":22320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22313,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22311,"src":"5626:4:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22314,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5625:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22317,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22306,"src":"5650:9:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22318,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22308,"src":"5660:6:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":22315,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5634:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5640:9:71","memberName":"_getMonth","nodeType":"MemberAccess","referencedDeclaration":24348,"src":"5634:15:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (uint256,bool) pure returns (uint256)"}},"id":22319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5634:33:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5625:42:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22321,"nodeType":"ExpressionStatement","src":"5625:42:71"}]},"functionSelector":"c3ba11f5","id":22323,"implemented":true,"kind":"function","modifiers":[],"name":"$_getMonth","nameLocation":"5536:10:71","nodeType":"FunctionDefinition","parameters":{"id":22309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22306,"mutability":"mutable","name":"dayInYear","nameLocation":"5555:9:71","nodeType":"VariableDeclaration","scope":22323,"src":"5547:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22305,"name":"uint256","nodeType":"ElementaryTypeName","src":"5547:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22308,"mutability":"mutable","name":"isLeap","nameLocation":"5570:6:71","nodeType":"VariableDeclaration","scope":22323,"src":"5565:11:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22307,"name":"bool","nodeType":"ElementaryTypeName","src":"5565:4:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5546:31:71"},"returnParameters":{"id":22312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22311,"mutability":"mutable","name":"ret0","nameLocation":"5609:4:71","nodeType":"VariableDeclaration","scope":22323,"src":"5601:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22310,"name":"uint256","nodeType":"ElementaryTypeName","src":"5601:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5600:14:71"},"scope":22828,"src":"5527:147:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22338,"nodeType":"Block","src":"5772:69:71","statements":[{"expression":{"id":22336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22330,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22328,"src":"5783:9:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":22331,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5782:11:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22334,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22325,"src":"5824:9:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22332,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5796:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5802:21:71","memberName":"_computeCalendarMonth","nodeType":"MemberAccess","referencedDeclaration":24424,"src":"5796:27:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":22335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5796:38:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5782:52:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":22337,"nodeType":"ExpressionStatement","src":"5782:52:71"}]},"functionSelector":"4092b0c1","id":22339,"implemented":true,"kind":"function","modifiers":[],"name":"$_computeCalendarMonth","nameLocation":"5689:22:71","nodeType":"FunctionDefinition","parameters":{"id":22326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22325,"mutability":"mutable","name":"timestamp","nameLocation":"5720:9:71","nodeType":"VariableDeclaration","scope":22339,"src":"5712:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22324,"name":"uint256","nodeType":"ElementaryTypeName","src":"5712:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5711:19:71"},"returnParameters":{"id":22329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22328,"mutability":"mutable","name":"slotIndex","nameLocation":"5761:9:71","nodeType":"VariableDeclaration","scope":22339,"src":"5754:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22327,"name":"uint32","nodeType":"ElementaryTypeName","src":"5754:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5753:18:71"},"scope":22828,"src":"5680:161:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22357,"nodeType":"Block","src":"5948:71:71","statements":[{"expression":{"id":22355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22348,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22346,"src":"5959:9:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":22349,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5958:11:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22352,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22341,"src":"5993:8:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":22353,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22343,"src":"6002:9:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22350,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5972:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5978:14:71","memberName":"_makeSlotIndex","nodeType":"MemberAccess","referencedDeclaration":24449,"src":"5972:20:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":22354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5972:40:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"5958:54:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":22356,"nodeType":"ExpressionStatement","src":"5958:54:71"}]},"functionSelector":"1c93944f","id":22358,"implemented":true,"kind":"function","modifiers":[],"name":"$_makeSlotIndex","nameLocation":"5856:15:71","nodeType":"FunctionDefinition","parameters":{"id":22344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22341,"mutability":"mutable","name":"slotSize","nameLocation":"5879:8:71","nodeType":"VariableDeclaration","scope":22358,"src":"5872:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22340,"name":"uint32","nodeType":"ElementaryTypeName","src":"5872:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":22343,"mutability":"mutable","name":"timestamp","nameLocation":"5896:9:71","nodeType":"VariableDeclaration","scope":22358,"src":"5888:17:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22342,"name":"uint256","nodeType":"ElementaryTypeName","src":"5888:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5871:35:71"},"returnParameters":{"id":22347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22346,"mutability":"mutable","name":"slotIndex","nameLocation":"5937:9:71","nodeType":"VariableDeclaration","scope":22358,"src":"5930:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22345,"name":"uint32","nodeType":"ElementaryTypeName","src":"5930:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5929:18:71"},"scope":22828,"src":"5847:172:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22380,"nodeType":"Block","src":"6140:74:71","statements":[{"expression":{"id":22378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22370,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22368,"src":"6151:4:71","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}}],"id":22371,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6150:6:71","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22374,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22360,"src":"6181:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22375,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22362,"src":"6188:8:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":22376,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22364,"src":"6197:9:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":22372,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6159:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6165:15:71","memberName":"_makeTargetSlot","nodeType":"MemberAccess","referencedDeclaration":24484,"src":"6159:21:71","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_TargetSlot_$22993_$","typeString":"function (address,uint32,uint32) pure returns (CashFlowLender.TargetSlot)"}},"id":22377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6159:48:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"src":"6150:57:71","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"id":22379,"nodeType":"ExpressionStatement","src":"6150:57:71"}]},"functionSelector":"3e15a357","id":22381,"implemented":true,"kind":"function","modifiers":[],"name":"$_makeTargetSlot","nameLocation":"6034:16:71","nodeType":"FunctionDefinition","parameters":{"id":22365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22360,"mutability":"mutable","name":"target","nameLocation":"6059:6:71","nodeType":"VariableDeclaration","scope":22381,"src":"6051:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22359,"name":"address","nodeType":"ElementaryTypeName","src":"6051:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22362,"mutability":"mutable","name":"slotSize","nameLocation":"6073:8:71","nodeType":"VariableDeclaration","scope":22381,"src":"6066:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22361,"name":"uint32","nodeType":"ElementaryTypeName","src":"6066:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":22364,"mutability":"mutable","name":"slotIndex","nameLocation":"6089:9:71","nodeType":"VariableDeclaration","scope":22381,"src":"6082:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22363,"name":"uint32","nodeType":"ElementaryTypeName","src":"6082:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6050:49:71"},"returnParameters":{"id":22369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22368,"mutability":"mutable","name":"slot","nameLocation":"6134:4:71","nodeType":"VariableDeclaration","scope":22381,"src":"6123:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"},"typeName":{"id":22367,"nodeType":"UserDefinedTypeName","pathNode":{"id":22366,"name":"TargetSlot","nameLocations":["6123:10:71"],"nodeType":"IdentifierPath","referencedDeclaration":22993,"src":"6123:10:71"},"referencedDeclaration":22993,"src":"6123:10:71","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"visibility":"internal"}],"src":"6122:17:71"},"scope":22828,"src":"6025:189:71","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":22400,"nodeType":"Block","src":"6302:98:71","statements":[{"expression":{"id":22394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22388,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22386,"src":"6313:10:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22389,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6312:12:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22392,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22383,"src":"6343:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22390,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6327:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6333:9:71","memberName":"_deinvest","nodeType":"MemberAccess","referencedDeclaration":24529,"src":"6327:15:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":22393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6327:23:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6312:38:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22395,"nodeType":"ExpressionStatement","src":"6312:38:71"},{"eventCall":{"arguments":[{"id":22397,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22386,"src":"6382:10:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":22396,"name":"return$_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22049,"src":"6365:16:71","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":22398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6365:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22399,"nodeType":"EmitStatement","src":"6360:33:71"}]},"functionSelector":"811eecf5","id":22401,"implemented":true,"kind":"function","modifiers":[],"name":"$_deinvest","nameLocation":"6229:10:71","nodeType":"FunctionDefinition","parameters":{"id":22384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22383,"mutability":"mutable","name":"amount","nameLocation":"6248:6:71","nodeType":"VariableDeclaration","scope":22401,"src":"6240:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22382,"name":"uint256","nodeType":"ElementaryTypeName","src":"6240:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6239:16:71"},"returnParameters":{"id":22387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22386,"mutability":"mutable","name":"deinvested","nameLocation":"6290:10:71","nodeType":"VariableDeclaration","scope":22401,"src":"6282:18:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22385,"name":"uint256","nodeType":"ElementaryTypeName","src":"6282:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6281:20:71"},"scope":22828,"src":"6220:180:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22429,"nodeType":"Block","src":"6538:132:71","statements":[{"expression":{"id":22423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22414,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22412,"src":"6549:12:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":22415,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6548:14:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22418,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22403,"src":"6583:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22419,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22405,"src":"6590:8:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":22420,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22407,"src":"6599:9:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":22421,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22409,"src":"6609:6:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":22416,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6565:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6571:11:71","memberName":"_changeDebt","nodeType":"MemberAccess","referencedDeclaration":24589,"src":"6565:17:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":22422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6565:51:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"6548:68:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":22424,"nodeType":"ExpressionStatement","src":"6548:68:71"},{"eventCall":{"arguments":[{"id":22426,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22412,"src":"6650:12:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":22425,"name":"return$_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22053,"src":"6631:18:71","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":22427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6631:32:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22428,"nodeType":"EmitStatement","src":"6626:37:71"}]},"functionSelector":"d2e26fe4","id":22430,"implemented":true,"kind":"function","modifiers":[],"name":"$_changeDebt","nameLocation":"6415:12:71","nodeType":"FunctionDefinition","parameters":{"id":22410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22403,"mutability":"mutable","name":"target","nameLocation":"6436:6:71","nodeType":"VariableDeclaration","scope":22430,"src":"6428:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22402,"name":"address","nodeType":"ElementaryTypeName","src":"6428:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22405,"mutability":"mutable","name":"slotSize","nameLocation":"6450:8:71","nodeType":"VariableDeclaration","scope":22430,"src":"6443:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22404,"name":"uint32","nodeType":"ElementaryTypeName","src":"6443:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":22407,"mutability":"mutable","name":"slotIndex","nameLocation":"6466:9:71","nodeType":"VariableDeclaration","scope":22430,"src":"6459:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22406,"name":"uint32","nodeType":"ElementaryTypeName","src":"6459:6:71","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":22409,"mutability":"mutable","name":"amount","nameLocation":"6483:6:71","nodeType":"VariableDeclaration","scope":22430,"src":"6476:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":22408,"name":"int256","nodeType":"ElementaryTypeName","src":"6476:6:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6427:63:71"},"returnParameters":{"id":22413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22412,"mutability":"mutable","name":"currentDebt_","nameLocation":"6524:12:71","nodeType":"VariableDeclaration","scope":22430,"src":"6517:19:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":22411,"name":"int256","nodeType":"ElementaryTypeName","src":"6517:6:71","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6516:21:71"},"scope":22828,"src":"6406:264:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22447,"nodeType":"Block","src":"6764:63:71","statements":[{"expression":{"arguments":[{"id":22442,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22432,"src":"6797:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22443,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22434,"src":"6804:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22444,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22436,"src":"6811:8:71","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":22439,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6774:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6780:16:71","memberName":"_checkCanForward","nodeType":"MemberAccess","referencedDeclaration":24660,"src":"6774:22:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":22445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6774:46:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22446,"nodeType":"ExpressionStatement","src":"6774:46:71"}]},"functionSelector":"e483b6e1","id":22448,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkCanForward","nameLocation":"6685:17:71","nodeType":"FunctionDefinition","parameters":{"id":22437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22432,"mutability":"mutable","name":"caller","nameLocation":"6711:6:71","nodeType":"VariableDeclaration","scope":22448,"src":"6703:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22431,"name":"address","nodeType":"ElementaryTypeName","src":"6703:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22434,"mutability":"mutable","name":"target","nameLocation":"6726:6:71","nodeType":"VariableDeclaration","scope":22448,"src":"6718:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22433,"name":"address","nodeType":"ElementaryTypeName","src":"6718:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22436,"mutability":"mutable","name":"selector","nameLocation":"6740:8:71","nodeType":"VariableDeclaration","scope":22448,"src":"6733:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":22435,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6733:6:71","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6702:47:71"},"returnParameters":{"id":22438,"nodeType":"ParameterList","parameters":[],"src":"6764:0:71"},"scope":22828,"src":"6676:151:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22471,"nodeType":"Block","src":"6947:69:71","statements":[{"expression":{"arguments":[{"id":22464,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22450,"src":"6973:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22465,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22452,"src":"6980:8:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22466,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22454,"src":"6989:5:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22467,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22456,"src":"6995:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22468,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22458,"src":"7002:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22461,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6957:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6963:9:71","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":25226,"src":"6957:15:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":22469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6957:52:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22470,"nodeType":"ExpressionStatement","src":"6957:52:71"}]},"functionSelector":"83b95579","id":22472,"implemented":true,"kind":"function","modifiers":[],"name":"$_withdraw","nameLocation":"6842:10:71","nodeType":"FunctionDefinition","parameters":{"id":22459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22450,"mutability":"mutable","name":"caller","nameLocation":"6861:6:71","nodeType":"VariableDeclaration","scope":22472,"src":"6853:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22449,"name":"address","nodeType":"ElementaryTypeName","src":"6853:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22452,"mutability":"mutable","name":"receiver","nameLocation":"6876:8:71","nodeType":"VariableDeclaration","scope":22472,"src":"6868:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22451,"name":"address","nodeType":"ElementaryTypeName","src":"6868:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22454,"mutability":"mutable","name":"owner","nameLocation":"6893:5:71","nodeType":"VariableDeclaration","scope":22472,"src":"6885:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22453,"name":"address","nodeType":"ElementaryTypeName","src":"6885:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22456,"mutability":"mutable","name":"assets","nameLocation":"6907:6:71","nodeType":"VariableDeclaration","scope":22472,"src":"6899:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22455,"name":"uint256","nodeType":"ElementaryTypeName","src":"6899:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22458,"mutability":"mutable","name":"shares","nameLocation":"6922:6:71","nodeType":"VariableDeclaration","scope":22472,"src":"6914:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22457,"name":"uint256","nodeType":"ElementaryTypeName","src":"6914:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6852:77:71"},"returnParameters":{"id":22460,"nodeType":"ParameterList","parameters":[],"src":"6947:0:71"},"scope":22828,"src":"6833:183:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22484,"nodeType":"Block","src":"7079:45:71","statements":[{"expression":{"arguments":[{"id":22481,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22475,"src":"7110:6:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"expression":{"id":22478,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7089:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7095:14:71","memberName":"__ERC4626_init","nodeType":"MemberAccess","referencedDeclaration":6055,"src":"7089:20:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$returns$__$","typeString":"function (contract IERC20)"}},"id":22482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7089:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22483,"nodeType":"ExpressionStatement","src":"7089:28:71"}]},"functionSelector":"75b58c95","id":22485,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC4626_init","nameLocation":"7031:15:71","nodeType":"FunctionDefinition","parameters":{"id":22476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22475,"mutability":"mutable","name":"asset_","nameLocation":"7054:6:71","nodeType":"VariableDeclaration","scope":22485,"src":"7047:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":22474,"nodeType":"UserDefinedTypeName","pathNode":{"id":22473,"name":"IERC20","nameLocations":["7047:6:71"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"7047:6:71"},"referencedDeclaration":11065,"src":"7047:6:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"7046:15:71"},"returnParameters":{"id":22477,"nodeType":"ParameterList","parameters":[],"src":"7079:0:71"},"scope":22828,"src":"7022:102:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22497,"nodeType":"Block","src":"7197:55:71","statements":[{"expression":{"arguments":[{"id":22494,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22488,"src":"7238:6:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"expression":{"id":22491,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7207:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7213:24:71","memberName":"__ERC4626_init_unchained","nodeType":"MemberAccess","referencedDeclaration":6093,"src":"7207:30:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$returns$__$","typeString":"function (contract IERC20)"}},"id":22495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7207:38:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22496,"nodeType":"ExpressionStatement","src":"7207:38:71"}]},"functionSelector":"48798720","id":22498,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC4626_init_unchained","nameLocation":"7139:25:71","nodeType":"FunctionDefinition","parameters":{"id":22489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22488,"mutability":"mutable","name":"asset_","nameLocation":"7172:6:71","nodeType":"VariableDeclaration","scope":22498,"src":"7165:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"},"typeName":{"id":22487,"nodeType":"UserDefinedTypeName","pathNode":{"id":22486,"name":"IERC20","nameLocations":["7165:6:71"],"nodeType":"IdentifierPath","referencedDeclaration":11065,"src":"7165:6:71"},"referencedDeclaration":11065,"src":"7165:6:71","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"7164:15:71"},"returnParameters":{"id":22490,"nodeType":"ParameterList","parameters":[],"src":"7197:0:71"},"scope":22828,"src":"7130:122:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22517,"nodeType":"Block","src":"7361:65:71","statements":[{"expression":{"id":22515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22508,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22506,"src":"7372:4:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22509,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"7371:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22512,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22500,"src":"7403:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22513,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22503,"src":"7410:8:71","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"expression":{"id":22510,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7380:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7386:16:71","memberName":"_convertToShares","nodeType":"MemberAccess","referencedDeclaration":6590,"src":"7380:22:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":22514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7380:39:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7371:48:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22516,"nodeType":"ExpressionStatement","src":"7371:48:71"}]},"functionSelector":"8b4e914a","id":22518,"implemented":true,"kind":"function","modifiers":[],"name":"$_convertToShares","nameLocation":"7267:17:71","nodeType":"FunctionDefinition","parameters":{"id":22504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22500,"mutability":"mutable","name":"assets","nameLocation":"7293:6:71","nodeType":"VariableDeclaration","scope":22518,"src":"7285:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22499,"name":"uint256","nodeType":"ElementaryTypeName","src":"7285:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22503,"mutability":"mutable","name":"rounding","nameLocation":"7314:8:71","nodeType":"VariableDeclaration","scope":22518,"src":"7300:22:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":22502,"nodeType":"UserDefinedTypeName","pathNode":{"id":22501,"name":"Math.Rounding","nameLocations":["7300:4:71","7305:8:71"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"7300:13:71"},"referencedDeclaration":18220,"src":"7300:13:71","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"7284:39:71"},"returnParameters":{"id":22507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22506,"mutability":"mutable","name":"ret0","nameLocation":"7355:4:71","nodeType":"VariableDeclaration","scope":22518,"src":"7347:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22505,"name":"uint256","nodeType":"ElementaryTypeName","src":"7347:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7346:14:71"},"scope":22828,"src":"7258:168:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22537,"nodeType":"Block","src":"7535:65:71","statements":[{"expression":{"id":22535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22528,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22526,"src":"7546:4:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":22529,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"7545:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":22532,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22520,"src":"7577:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22533,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22523,"src":"7584:8:71","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}],"expression":{"id":22530,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7554:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7560:16:71","memberName":"_convertToAssets","nodeType":"MemberAccess","referencedDeclaration":6618,"src":"7554:22:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$18220_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":22534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7554:39:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7545:48:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22536,"nodeType":"ExpressionStatement","src":"7545:48:71"}]},"functionSelector":"ca10eca0","id":22538,"implemented":true,"kind":"function","modifiers":[],"name":"$_convertToAssets","nameLocation":"7441:17:71","nodeType":"FunctionDefinition","parameters":{"id":22524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22520,"mutability":"mutable","name":"shares","nameLocation":"7467:6:71","nodeType":"VariableDeclaration","scope":22538,"src":"7459:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22519,"name":"uint256","nodeType":"ElementaryTypeName","src":"7459:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22523,"mutability":"mutable","name":"rounding","nameLocation":"7488:8:71","nodeType":"VariableDeclaration","scope":22538,"src":"7474:22:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"},"typeName":{"id":22522,"nodeType":"UserDefinedTypeName","pathNode":{"id":22521,"name":"Math.Rounding","nameLocations":["7474:4:71","7479:8:71"],"nodeType":"IdentifierPath","referencedDeclaration":18220,"src":"7474:13:71"},"referencedDeclaration":18220,"src":"7474:13:71","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$18220","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"7458:39:71"},"returnParameters":{"id":22527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22526,"mutability":"mutable","name":"ret0","nameLocation":"7529:4:71","nodeType":"VariableDeclaration","scope":22538,"src":"7521:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22525,"name":"uint256","nodeType":"ElementaryTypeName","src":"7521:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7520:14:71"},"scope":22828,"src":"7432:168:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22558,"nodeType":"Block","src":"7705:62:71","statements":[{"expression":{"arguments":[{"id":22552,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22540,"src":"7730:6:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22553,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22542,"src":"7737:8:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22554,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22544,"src":"7746:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22555,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22546,"src":"7753:6:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22549,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7715:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7721:8:71","memberName":"_deposit","nodeType":"MemberAccess","referencedDeclaration":6662,"src":"7715:14:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":22556,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7715:45:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22557,"nodeType":"ExpressionStatement","src":"7715:45:71"}]},"functionSelector":"9c0b90c7","id":22559,"implemented":true,"kind":"function","modifiers":[],"name":"$_deposit","nameLocation":"7615:9:71","nodeType":"FunctionDefinition","parameters":{"id":22547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22540,"mutability":"mutable","name":"caller","nameLocation":"7633:6:71","nodeType":"VariableDeclaration","scope":22559,"src":"7625:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22539,"name":"address","nodeType":"ElementaryTypeName","src":"7625:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22542,"mutability":"mutable","name":"receiver","nameLocation":"7648:8:71","nodeType":"VariableDeclaration","scope":22559,"src":"7640:16:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22541,"name":"address","nodeType":"ElementaryTypeName","src":"7640:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22544,"mutability":"mutable","name":"assets","nameLocation":"7665:6:71","nodeType":"VariableDeclaration","scope":22559,"src":"7657:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22543,"name":"uint256","nodeType":"ElementaryTypeName","src":"7657:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22546,"mutability":"mutable","name":"shares","nameLocation":"7680:6:71","nodeType":"VariableDeclaration","scope":22559,"src":"7672:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22545,"name":"uint256","nodeType":"ElementaryTypeName","src":"7672:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7624:63:71"},"returnParameters":{"id":22548,"nodeType":"ParameterList","parameters":[],"src":"7705:0:71"},"scope":22828,"src":"7606:161:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22571,"nodeType":"Block","src":"7836:49:71","statements":[{"expression":{"id":22569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22564,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22562,"src":"7847:4:71","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":22565,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"7846:6:71","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22566,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7855:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7861:15:71","memberName":"_decimalsOffset","nodeType":"MemberAccess","referencedDeclaration":6724,"src":"7855:21:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":22568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7855:23:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7846:32:71","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":22570,"nodeType":"ExpressionStatement","src":"7846:32:71"}]},"functionSelector":"ef4f78d1","id":22572,"implemented":true,"kind":"function","modifiers":[],"name":"$_decimalsOffset","nameLocation":"7782:16:71","nodeType":"FunctionDefinition","parameters":{"id":22560,"nodeType":"ParameterList","parameters":[],"src":"7798:2:71"},"returnParameters":{"id":22563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22562,"mutability":"mutable","name":"ret0","nameLocation":"7830:4:71","nodeType":"VariableDeclaration","scope":22572,"src":"7824:10:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":22561,"name":"uint8","nodeType":"ElementaryTypeName","src":"7824:5:71","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"7823:12:71"},"scope":22828,"src":"7773:112:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22586,"nodeType":"Block","src":"7978:50:71","statements":[{"expression":{"arguments":[{"id":22582,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22574,"src":"8007:5:71","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":22583,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22576,"src":"8013:7:71","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"expression":{"id":22579,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7988:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7994:12:71","memberName":"__ERC20_init","nodeType":"MemberAccess","referencedDeclaration":5412,"src":"7988:18:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":22584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7988:33:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22585,"nodeType":"ExpressionStatement","src":"7988:33:71"}]},"functionSelector":"b7e44f4e","id":22587,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC20_init","nameLocation":"7900:13:71","nodeType":"FunctionDefinition","parameters":{"id":22577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22574,"mutability":"mutable","name":"name_","nameLocation":"7930:5:71","nodeType":"VariableDeclaration","scope":22587,"src":"7914:21:71","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22573,"name":"string","nodeType":"ElementaryTypeName","src":"7914:6:71","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":22576,"mutability":"mutable","name":"symbol_","nameLocation":"7952:7:71","nodeType":"VariableDeclaration","scope":22587,"src":"7936:23:71","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22575,"name":"string","nodeType":"ElementaryTypeName","src":"7936:6:71","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7913:47:71"},"returnParameters":{"id":22578,"nodeType":"ParameterList","parameters":[],"src":"7978:0:71"},"scope":22828,"src":"7891:137:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22601,"nodeType":"Block","src":"8131:60:71","statements":[{"expression":{"arguments":[{"id":22597,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22589,"src":"8170:5:71","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":22598,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22591,"src":"8176:7:71","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"expression":{"id":22594,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8141:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8147:22:71","memberName":"__ERC20_init_unchained","nodeType":"MemberAccess","referencedDeclaration":5440,"src":"8141:28:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":22599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8141:43:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22600,"nodeType":"ExpressionStatement","src":"8141:43:71"}]},"functionSelector":"fa3045d0","id":22602,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC20_init_unchained","nameLocation":"8043:23:71","nodeType":"FunctionDefinition","parameters":{"id":22592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22589,"mutability":"mutable","name":"name_","nameLocation":"8083:5:71","nodeType":"VariableDeclaration","scope":22602,"src":"8067:21:71","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22588,"name":"string","nodeType":"ElementaryTypeName","src":"8067:6:71","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":22591,"mutability":"mutable","name":"symbol_","nameLocation":"8105:7:71","nodeType":"VariableDeclaration","scope":22602,"src":"8089:23:71","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22590,"name":"string","nodeType":"ElementaryTypeName","src":"8089:6:71","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8066:47:71"},"returnParameters":{"id":22593,"nodeType":"ParameterList","parameters":[],"src":"8131:0:71"},"scope":22828,"src":"8034:157:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22619,"nodeType":"Block","src":"8273:47:71","statements":[{"expression":{"arguments":[{"id":22614,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22604,"src":"8299:4:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22615,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22606,"src":"8304:2:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22616,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22608,"src":"8307:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22611,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8283:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8289:9:71","memberName":"_transfer","nodeType":"MemberAccess","referencedDeclaration":5668,"src":"8283:15:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":22617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8283:30:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22618,"nodeType":"ExpressionStatement","src":"8283:30:71"}]},"functionSelector":"efb43b07","id":22620,"implemented":true,"kind":"function","modifiers":[],"name":"$_transfer","nameLocation":"8206:10:71","nodeType":"FunctionDefinition","parameters":{"id":22609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22604,"mutability":"mutable","name":"from","nameLocation":"8225:4:71","nodeType":"VariableDeclaration","scope":22620,"src":"8217:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22603,"name":"address","nodeType":"ElementaryTypeName","src":"8217:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22606,"mutability":"mutable","name":"to","nameLocation":"8238:2:71","nodeType":"VariableDeclaration","scope":22620,"src":"8230:10:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22605,"name":"address","nodeType":"ElementaryTypeName","src":"8230:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22608,"mutability":"mutable","name":"value","nameLocation":"8249:5:71","nodeType":"VariableDeclaration","scope":22620,"src":"8241:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22607,"name":"uint256","nodeType":"ElementaryTypeName","src":"8241:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8216:39:71"},"returnParameters":{"id":22610,"nodeType":"ParameterList","parameters":[],"src":"8273:0:71"},"scope":22828,"src":"8197:123:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22637,"nodeType":"Block","src":"8400:45:71","statements":[{"expression":{"arguments":[{"id":22632,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22622,"src":"8424:4:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22633,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22624,"src":"8429:2:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22634,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22626,"src":"8432:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22629,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8410:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8416:7:71","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":5760,"src":"8410:13:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":22635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8410:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22636,"nodeType":"ExpressionStatement","src":"8410:28:71"}]},"functionSelector":"6855a178","id":22638,"implemented":true,"kind":"function","modifiers":[],"name":"$_update","nameLocation":"8335:8:71","nodeType":"FunctionDefinition","parameters":{"id":22627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22622,"mutability":"mutable","name":"from","nameLocation":"8352:4:71","nodeType":"VariableDeclaration","scope":22638,"src":"8344:12:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22621,"name":"address","nodeType":"ElementaryTypeName","src":"8344:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22624,"mutability":"mutable","name":"to","nameLocation":"8365:2:71","nodeType":"VariableDeclaration","scope":22638,"src":"8357:10:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22623,"name":"address","nodeType":"ElementaryTypeName","src":"8357:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22626,"mutability":"mutable","name":"value","nameLocation":"8376:5:71","nodeType":"VariableDeclaration","scope":22638,"src":"8368:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22625,"name":"uint256","nodeType":"ElementaryTypeName","src":"8368:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8343:39:71"},"returnParameters":{"id":22628,"nodeType":"ParameterList","parameters":[],"src":"8400:0:71"},"scope":22828,"src":"8326:119:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22652,"nodeType":"Block","src":"8515:43:71","statements":[{"expression":{"arguments":[{"id":22648,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22640,"src":"8537:7:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22649,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22642,"src":"8545:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22645,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8525:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8531:5:71","memberName":"_mint","nodeType":"MemberAccess","referencedDeclaration":5793,"src":"8525:11:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":22650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8525:26:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22651,"nodeType":"ExpressionStatement","src":"8525:26:71"}]},"functionSelector":"cc461d62","id":22653,"implemented":true,"kind":"function","modifiers":[],"name":"$_mint","nameLocation":"8460:6:71","nodeType":"FunctionDefinition","parameters":{"id":22643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22640,"mutability":"mutable","name":"account","nameLocation":"8475:7:71","nodeType":"VariableDeclaration","scope":22653,"src":"8467:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22639,"name":"address","nodeType":"ElementaryTypeName","src":"8467:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22642,"mutability":"mutable","name":"value","nameLocation":"8491:5:71","nodeType":"VariableDeclaration","scope":22653,"src":"8483:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22641,"name":"uint256","nodeType":"ElementaryTypeName","src":"8483:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8466:31:71"},"returnParameters":{"id":22644,"nodeType":"ParameterList","parameters":[],"src":"8515:0:71"},"scope":22828,"src":"8451:107:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22667,"nodeType":"Block","src":"8628:43:71","statements":[{"expression":{"arguments":[{"id":22663,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22655,"src":"8650:7:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22664,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22657,"src":"8658:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22660,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8638:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8644:5:71","memberName":"_burn","nodeType":"MemberAccess","referencedDeclaration":5826,"src":"8638:11:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":22665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8638:26:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22666,"nodeType":"ExpressionStatement","src":"8638:26:71"}]},"functionSelector":"e047838d","id":22668,"implemented":true,"kind":"function","modifiers":[],"name":"$_burn","nameLocation":"8573:6:71","nodeType":"FunctionDefinition","parameters":{"id":22658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22655,"mutability":"mutable","name":"account","nameLocation":"8588:7:71","nodeType":"VariableDeclaration","scope":22668,"src":"8580:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22654,"name":"address","nodeType":"ElementaryTypeName","src":"8580:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22657,"mutability":"mutable","name":"value","nameLocation":"8604:5:71","nodeType":"VariableDeclaration","scope":22668,"src":"8596:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22656,"name":"uint256","nodeType":"ElementaryTypeName","src":"8596:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8579:31:71"},"returnParameters":{"id":22659,"nodeType":"ParameterList","parameters":[],"src":"8628:0:71"},"scope":22828,"src":"8564:107:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22685,"nodeType":"Block","src":"8758:52:71","statements":[{"expression":{"arguments":[{"id":22680,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22670,"src":"8783:5:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22681,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22672,"src":"8789:7:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22682,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22674,"src":"8797:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22677,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8768:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8774:8:71","memberName":"_approve","nodeType":"MemberAccess","referencedDeclaration":5844,"src":"8768:14:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":22683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8768:35:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22684,"nodeType":"ExpressionStatement","src":"8768:35:71"}]},"functionSelector":"861e3d3d","id":22686,"implemented":true,"kind":"function","modifiers":[],"name":"$_approve","nameLocation":"8686:9:71","nodeType":"FunctionDefinition","parameters":{"id":22675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22670,"mutability":"mutable","name":"owner","nameLocation":"8704:5:71","nodeType":"VariableDeclaration","scope":22686,"src":"8696:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22669,"name":"address","nodeType":"ElementaryTypeName","src":"8696:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22672,"mutability":"mutable","name":"spender","nameLocation":"8718:7:71","nodeType":"VariableDeclaration","scope":22686,"src":"8710:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22671,"name":"address","nodeType":"ElementaryTypeName","src":"8710:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22674,"mutability":"mutable","name":"value","nameLocation":"8734:5:71","nodeType":"VariableDeclaration","scope":22686,"src":"8726:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22673,"name":"uint256","nodeType":"ElementaryTypeName","src":"8726:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8695:45:71"},"returnParameters":{"id":22676,"nodeType":"ParameterList","parameters":[],"src":"8758:0:71"},"scope":22828,"src":"8677:133:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22706,"nodeType":"Block","src":"8912:62:71","statements":[{"expression":{"arguments":[{"id":22700,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22688,"src":"8937:5:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22701,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22690,"src":"8943:7:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22702,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22692,"src":"8951:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":22703,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22694,"src":"8957:9:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":22697,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8922:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8928:8:71","memberName":"_approve","nodeType":"MemberAccess","referencedDeclaration":5912,"src":"8922:14:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":22704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8922:45:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22705,"nodeType":"ExpressionStatement","src":"8922:45:71"}]},"functionSelector":"32bc74aa","id":22707,"implemented":true,"kind":"function","modifiers":[],"name":"$_approve","nameLocation":"8825:9:71","nodeType":"FunctionDefinition","parameters":{"id":22695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22688,"mutability":"mutable","name":"owner","nameLocation":"8843:5:71","nodeType":"VariableDeclaration","scope":22707,"src":"8835:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22687,"name":"address","nodeType":"ElementaryTypeName","src":"8835:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22690,"mutability":"mutable","name":"spender","nameLocation":"8857:7:71","nodeType":"VariableDeclaration","scope":22707,"src":"8849:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22689,"name":"address","nodeType":"ElementaryTypeName","src":"8849:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22692,"mutability":"mutable","name":"value","nameLocation":"8873:5:71","nodeType":"VariableDeclaration","scope":22707,"src":"8865:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22691,"name":"uint256","nodeType":"ElementaryTypeName","src":"8865:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22694,"mutability":"mutable","name":"emitEvent","nameLocation":"8884:9:71","nodeType":"VariableDeclaration","scope":22707,"src":"8879:14:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22693,"name":"bool","nodeType":"ElementaryTypeName","src":"8879:4:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8834:60:71"},"returnParameters":{"id":22696,"nodeType":"ParameterList","parameters":[],"src":"8912:0:71"},"scope":22828,"src":"8816:158:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22724,"nodeType":"Block","src":"9068:59:71","statements":[{"expression":{"arguments":[{"id":22719,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22709,"src":"9100:5:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22720,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22711,"src":"9106:7:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22721,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22713,"src":"9114:5:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":22716,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9078:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9084:15:71","memberName":"_spendAllowance","nodeType":"MemberAccess","referencedDeclaration":5960,"src":"9078:21:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":22722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9078:42:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22723,"nodeType":"ExpressionStatement","src":"9078:42:71"}]},"functionSelector":"b2331d7d","id":22725,"implemented":true,"kind":"function","modifiers":[],"name":"$_spendAllowance","nameLocation":"8989:16:71","nodeType":"FunctionDefinition","parameters":{"id":22714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22709,"mutability":"mutable","name":"owner","nameLocation":"9014:5:71","nodeType":"VariableDeclaration","scope":22725,"src":"9006:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22708,"name":"address","nodeType":"ElementaryTypeName","src":"9006:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22711,"mutability":"mutable","name":"spender","nameLocation":"9028:7:71","nodeType":"VariableDeclaration","scope":22725,"src":"9020:15:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22710,"name":"address","nodeType":"ElementaryTypeName","src":"9020:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22713,"mutability":"mutable","name":"value","nameLocation":"9044:5:71","nodeType":"VariableDeclaration","scope":22725,"src":"9036:13:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22712,"name":"uint256","nodeType":"ElementaryTypeName","src":"9036:7:71","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9005:45:71"},"returnParameters":{"id":22715,"nodeType":"ParameterList","parameters":[],"src":"9068:0:71"},"scope":22828,"src":"8980:147:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22733,"nodeType":"Block","src":"9185:47:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22728,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9195:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9201:22:71","memberName":"__UUPSUpgradeable_init","nodeType":"MemberAccess","referencedDeclaration":5216,"src":"9195:28:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9195:30:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22732,"nodeType":"ExpressionStatement","src":"9195:30:71"}]},"functionSelector":"d2e888ec","id":22734,"implemented":true,"kind":"function","modifiers":[],"name":"$__UUPSUpgradeable_init","nameLocation":"9142:23:71","nodeType":"FunctionDefinition","parameters":{"id":22726,"nodeType":"ParameterList","parameters":[],"src":"9165:2:71"},"returnParameters":{"id":22727,"nodeType":"ParameterList","parameters":[],"src":"9185:0:71"},"scope":22828,"src":"9133:99:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22742,"nodeType":"Block","src":"9300:57:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22737,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9310:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9316:32:71","memberName":"__UUPSUpgradeable_init_unchained","nodeType":"MemberAccess","referencedDeclaration":5222,"src":"9310:38:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9310:40:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22741,"nodeType":"ExpressionStatement","src":"9310:40:71"}]},"functionSelector":"55c0729b","id":22743,"implemented":true,"kind":"function","modifiers":[],"name":"$__UUPSUpgradeable_init_unchained","nameLocation":"9247:33:71","nodeType":"FunctionDefinition","parameters":{"id":22735,"nodeType":"ParameterList","parameters":[],"src":"9280:2:71"},"returnParameters":{"id":22736,"nodeType":"ParameterList","parameters":[],"src":"9300:0:71"},"scope":22828,"src":"9238:119:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22751,"nodeType":"Block","src":"9401:36:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22746,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9411:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9417:11:71","memberName":"_checkProxy","nodeType":"MemberAccess","referencedDeclaration":5276,"src":"9411:17:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":22749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9411:19:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22750,"nodeType":"ExpressionStatement","src":"9411:19:71"}]},"functionSelector":"1a7e8014","id":22752,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkProxy","nameLocation":"9372:12:71","nodeType":"FunctionDefinition","parameters":{"id":22744,"nodeType":"ParameterList","parameters":[],"src":"9384:2:71"},"returnParameters":{"id":22745,"nodeType":"ParameterList","parameters":[],"src":"9401:0:71"},"scope":22828,"src":"9363:74:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22760,"nodeType":"Block","src":"9488:43:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22755,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9498:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9504:18:71","memberName":"_checkNotDelegated","nodeType":"MemberAccess","referencedDeclaration":5292,"src":"9498:24:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":22758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9498:26:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22759,"nodeType":"ExpressionStatement","src":"9498:26:71"}]},"functionSelector":"0aecc093","id":22761,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkNotDelegated","nameLocation":"9452:19:71","nodeType":"FunctionDefinition","parameters":{"id":22753,"nodeType":"ParameterList","parameters":[],"src":"9471:2:71"},"returnParameters":{"id":22754,"nodeType":"ParameterList","parameters":[],"src":"9488:0:71"},"scope":22828,"src":"9443:88:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22769,"nodeType":"Block","src":"9581:39:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22764,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9591:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9597:14:71","memberName":"__Context_init","nodeType":"MemberAccess","referencedDeclaration":6738,"src":"9591:20:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9591:22:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22768,"nodeType":"ExpressionStatement","src":"9591:22:71"}]},"functionSelector":"adfdfe2e","id":22770,"implemented":true,"kind":"function","modifiers":[],"name":"$__Context_init","nameLocation":"9546:15:71","nodeType":"FunctionDefinition","parameters":{"id":22762,"nodeType":"ParameterList","parameters":[],"src":"9561:2:71"},"returnParameters":{"id":22763,"nodeType":"ParameterList","parameters":[],"src":"9581:0:71"},"scope":22828,"src":"9537:83:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22778,"nodeType":"Block","src":"9680:49:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22773,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9690:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9696:24:71","memberName":"__Context_init_unchained","nodeType":"MemberAccess","referencedDeclaration":6744,"src":"9690:30:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9690:32:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22777,"nodeType":"ExpressionStatement","src":"9690:32:71"}]},"functionSelector":"f15476a2","id":22779,"implemented":true,"kind":"function","modifiers":[],"name":"$__Context_init_unchained","nameLocation":"9635:25:71","nodeType":"FunctionDefinition","parameters":{"id":22771,"nodeType":"ParameterList","parameters":[],"src":"9660:2:71"},"returnParameters":{"id":22772,"nodeType":"ParameterList","parameters":[],"src":"9680:0:71"},"scope":22828,"src":"9626:103:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22787,"nodeType":"Block","src":"9780:43:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22782,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9790:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9796:18:71","memberName":"_checkInitializing","nodeType":"MemberAccess","referencedDeclaration":5084,"src":"9790:24:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":22785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9790:26:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22786,"nodeType":"ExpressionStatement","src":"9790:26:71"}]},"functionSelector":"fa171c92","id":22788,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkInitializing","nameLocation":"9744:19:71","nodeType":"FunctionDefinition","parameters":{"id":22780,"nodeType":"ParameterList","parameters":[],"src":"9763:2:71"},"returnParameters":{"id":22781,"nodeType":"ParameterList","parameters":[],"src":"9780:0:71"},"scope":22828,"src":"9735:88:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22796,"nodeType":"Block","src":"9879:45:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22791,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9889:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9895:20:71","memberName":"_disableInitializers","nodeType":"MemberAccess","referencedDeclaration":5130,"src":"9889:26:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9889:28:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22795,"nodeType":"ExpressionStatement","src":"9889:28:71"}]},"functionSelector":"f5f1bec0","id":22797,"implemented":true,"kind":"function","modifiers":[],"name":"$_disableInitializers","nameLocation":"9838:21:71","nodeType":"FunctionDefinition","parameters":{"id":22789,"nodeType":"ParameterList","parameters":[],"src":"9859:2:71"},"returnParameters":{"id":22790,"nodeType":"ParameterList","parameters":[],"src":"9879:0:71"},"scope":22828,"src":"9829:95:71","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22809,"nodeType":"Block","src":"10001:56:71","statements":[{"expression":{"id":22807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22802,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22800,"src":"10012:4:71","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":22803,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10011:6:71","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22804,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10020:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10026:22:71","memberName":"_getInitializedVersion","nodeType":"MemberAccess","referencedDeclaration":5141,"src":"10020:28:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint64_$","typeString":"function () view returns (uint64)"}},"id":22806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10020:30:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10011:39:71","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":22808,"nodeType":"ExpressionStatement","src":"10011:39:71"}]},"functionSelector":"4fd5303d","id":22810,"implemented":true,"kind":"function","modifiers":[],"name":"$_getInitializedVersion","nameLocation":"9939:23:71","nodeType":"FunctionDefinition","parameters":{"id":22798,"nodeType":"ParameterList","parameters":[],"src":"9962:2:71"},"returnParameters":{"id":22801,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22800,"mutability":"mutable","name":"ret0","nameLocation":"9995:4:71","nodeType":"VariableDeclaration","scope":22810,"src":"9988:11:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22799,"name":"uint64","nodeType":"ElementaryTypeName","src":"9988:6:71","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"9987:13:71"},"scope":22828,"src":"9930:127:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22822,"nodeType":"Block","src":"10125:49:71","statements":[{"expression":{"id":22820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22815,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22813,"src":"10136:4:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":22816,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10135:6:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22817,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10144:5:71","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$22828_$","typeString":"type(contract super $CashFlowLender)"}},"id":22818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10150:15:71","memberName":"_isInitializing","nodeType":"MemberAccess","referencedDeclaration":5152,"src":"10144:21:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":22819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10144:23:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10135:32:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22821,"nodeType":"ExpressionStatement","src":"10135:32:71"}]},"functionSelector":"c9eb0571","id":22823,"implemented":true,"kind":"function","modifiers":[],"name":"$_isInitializing","nameLocation":"10072:16:71","nodeType":"FunctionDefinition","parameters":{"id":22811,"nodeType":"ParameterList","parameters":[],"src":"10088:2:71"},"returnParameters":{"id":22814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22813,"mutability":"mutable","name":"ret0","nameLocation":"10119:4:71","nodeType":"VariableDeclaration","scope":22823,"src":"10114:9:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22812,"name":"bool","nodeType":"ElementaryTypeName","src":"10114:4:71","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10113:11:71"},"scope":22828,"src":"10063:111:71","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22826,"nodeType":"Block","src":"10207:2:71","statements":[]},"id":22827,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":22824,"nodeType":"ParameterList","parameters":[],"src":"10187:2:71"},"returnParameters":{"id":22825,"nodeType":"ParameterList","parameters":[],"src":"10207:0:71"},"scope":22828,"src":"10180:29:71","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":22829,"src":"2621:7590:71","usedErrors":[4925,4928,5189,5194,6014,6023,6032,6041,9826,9831,9836,9845,9850,9855,10152,10165,11788,12330,12620,12623,12724,19824,19841,23143,23147,23154,23156,23158,23160,23166,23174,23178,23180,23182,23186,23192,23198,23200,23202,23204,23206],"usedEvents":[4933,9605,9647,9659,10999,11008,22049,22053,23056,23070,23084,23098,23105,23117,23127,23135,23141]}],"src":"40:10172:71"},"id":71},"contracts-exposed/dependencies/AccessManagedProxy.sol":{"ast":{"absolutePath":"contracts-exposed/dependencies/AccessManagedProxy.sol","exportedSymbols":{"$AccessManagedProxy":[22904],"AccessManagedProxy":[25542],"Address":[12580],"ERC1967Proxy":[10132],"ERC1967Utils":[10426],"Errors":[12632],"IAccessManager":[9511],"IBeacon":[10472],"IERC1967":[9618],"Math":[19814],"Panic":[16357],"Proxy":[10462],"SafeCast":[21579],"StorageSlot":[16550],"Time":[21997]},"id":22905,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":22830,"literals":["solidity",">=","0.6",".0"],"nodeType":"PragmaDirective","src":"40:24:72"},{"absolutePath":"contracts/dependencies/AccessManagedProxy.sol","file":"../../contracts/dependencies/AccessManagedProxy.sol","id":22831,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":25543,"src":"66:61:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":22832,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":10133,"src":"128:64:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"@openzeppelin/contracts/proxy/Proxy.sol","id":22833,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":10463,"src":"193:49:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":22834,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":9512,"src":"243:67:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","id":22835,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":10427,"src":"311:64:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"@openzeppelin/contracts/utils/types/Time.sol","id":22836,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":21998,"src":"376:54:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","file":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","id":22837,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":10473,"src":"431:58:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","file":"@openzeppelin/contracts/interfaces/IERC1967.sol","id":22838,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":9619,"src":"490:57:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":22839,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":12581,"src":"548:51:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"@openzeppelin/contracts/utils/StorageSlot.sol","id":22840,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":16551,"src":"600:55:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":22841,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":19815,"src":"656:53:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":22842,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":21580,"src":"710:57:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"@openzeppelin/contracts/utils/Errors.sol","id":22843,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":12633,"src":"768:50:72","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"@openzeppelin/contracts/utils/Panic.sol","id":22844,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22905,"sourceUnit":16358,"src":"819:49:72","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22845,"name":"AccessManagedProxy","nameLocations":["902:18:72"],"nodeType":"IdentifierPath","referencedDeclaration":25542,"src":"902:18:72"},"id":22846,"nodeType":"InheritanceSpecifier","src":"902:18:72"}],"canonicalName":"$AccessManagedProxy","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":22904,"linearizedBaseContracts":[22904,25542,10132,10462],"name":"$AccessManagedProxy","nameLocation":"879:19:72","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"342db739","id":22849,"mutability":"constant","name":"__hh_exposed_bytecode_marker","nameLocation":"951:28:72","nodeType":"VariableDeclaration","scope":22904,"src":"927:72:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22847,"name":"bytes32","nodeType":"ElementaryTypeName","src":"927:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"686172646861742d6578706f736564","id":22848,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"982:17:72","typeDescriptions":{"typeIdentifier":"t_stringliteral_f6a960c8758adbe877a4de74a2b9831e34e005089a44b7540377aa49607070ac","typeString":"literal_string \"hardhat-exposed\""},"value":"hardhat-exposed"},"visibility":"public"},{"body":{"id":22864,"nodeType":"Block","src":"1145:7:72","statements":[]},"id":22865,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":22859,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22851,"src":"1105:14:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22860,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22853,"src":"1121:5:72","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":22861,"name":"manager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22856,"src":"1128:7:72","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}}],"id":22862,"kind":"baseConstructorSpecifier","modifierName":{"id":22858,"name":"AccessManagedProxy","nameLocations":["1086:18:72"],"nodeType":"IdentifierPath","referencedDeclaration":25542,"src":"1086:18:72"},"nodeType":"ModifierInvocation","src":"1086:50:72"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":22857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22851,"mutability":"mutable","name":"implementation","nameLocation":"1026:14:72","nodeType":"VariableDeclaration","scope":22865,"src":"1018:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22850,"name":"address","nodeType":"ElementaryTypeName","src":"1018:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22853,"mutability":"mutable","name":"_data","nameLocation":"1055:5:72","nodeType":"VariableDeclaration","scope":22865,"src":"1042:18:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":22852,"name":"bytes","nodeType":"ElementaryTypeName","src":"1042:5:72","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":22856,"mutability":"mutable","name":"manager","nameLocation":"1077:7:72","nodeType":"VariableDeclaration","scope":22865,"src":"1062:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"},"typeName":{"id":22855,"nodeType":"UserDefinedTypeName","pathNode":{"id":22854,"name":"IAccessManager","nameLocations":["1062:14:72"],"nodeType":"IdentifierPath","referencedDeclaration":9511,"src":"1062:14:72"},"referencedDeclaration":9511,"src":"1062:14:72","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"1017:68:72"},"returnParameters":{"id":22863,"nodeType":"ParameterList","parameters":[],"src":"1145:0:72"},"scope":22904,"src":"1006:146:72","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":22876,"nodeType":"Block","src":"1219:48:72","statements":[{"expression":{"arguments":[{"id":22873,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22867,"src":"1245:14:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":22870,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1229:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$AccessManagedProxy_$22904_$","typeString":"type(contract super $AccessManagedProxy)"}},"id":22872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1235:9:72","memberName":"_delegate","nodeType":"MemberAccess","referencedDeclaration":25541,"src":"1229:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":22874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1229:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22875,"nodeType":"ExpressionStatement","src":"1229:31:72"}]},"functionSelector":"f49367aa","id":22877,"implemented":true,"kind":"function","modifiers":[],"name":"$_delegate","nameLocation":"1167:10:72","nodeType":"FunctionDefinition","parameters":{"id":22868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22867,"mutability":"mutable","name":"implementation","nameLocation":"1186:14:72","nodeType":"VariableDeclaration","scope":22877,"src":"1178:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22866,"name":"address","nodeType":"ElementaryTypeName","src":"1178:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1177:24:72"},"returnParameters":{"id":22869,"nodeType":"ParameterList","parameters":[],"src":"1219:0:72"},"scope":22904,"src":"1158:109:72","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22889,"nodeType":"Block","src":"1338:49:72","statements":[{"expression":{"id":22887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":22882,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22880,"src":"1349:4:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":22883,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"1348:6:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22884,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1357:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$AccessManagedProxy_$22904_$","typeString":"type(contract super $AccessManagedProxy)"}},"id":22885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1363:15:72","memberName":"_implementation","nodeType":"MemberAccess","referencedDeclaration":10131,"src":"1357:21:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":22886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1357:23:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1348:32:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":22888,"nodeType":"ExpressionStatement","src":"1348:32:72"}]},"functionSelector":"515f8df0","id":22890,"implemented":true,"kind":"function","modifiers":[],"name":"$_implementation","nameLocation":"1282:16:72","nodeType":"FunctionDefinition","parameters":{"id":22878,"nodeType":"ParameterList","parameters":[],"src":"1298:2:72"},"returnParameters":{"id":22881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22880,"mutability":"mutable","name":"ret0","nameLocation":"1332:4:72","nodeType":"VariableDeclaration","scope":22890,"src":"1324:12:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22879,"name":"address","nodeType":"ElementaryTypeName","src":"1324:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1323:14:72"},"scope":22904,"src":"1273:114:72","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":22898,"nodeType":"Block","src":"1432:34:72","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22893,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1442:5:72","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$AccessManagedProxy_$22904_$","typeString":"type(contract super $AccessManagedProxy)"}},"id":22895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1448:9:72","memberName":"_fallback","nodeType":"MemberAccess","referencedDeclaration":10453,"src":"1442:15:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:17:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22897,"nodeType":"ExpressionStatement","src":"1442:17:72"}]},"functionSelector":"ee8d6399","id":22899,"implemented":true,"kind":"function","modifiers":[],"name":"$_fallback","nameLocation":"1402:10:72","nodeType":"FunctionDefinition","parameters":{"id":22891,"nodeType":"ParameterList","parameters":[],"src":"1412:2:72"},"returnParameters":{"id":22892,"nodeType":"ParameterList","parameters":[],"src":"1432:0:72"},"scope":22904,"src":"1393:73:72","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":22902,"nodeType":"Block","src":"1499:2:72","statements":[]},"id":22903,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":22900,"nodeType":"ParameterList","parameters":[],"src":"1479:2:72"},"returnParameters":{"id":22901,"nodeType":"ParameterList","parameters":[],"src":"1499:0:72"},"scope":22904,"src":"1472:29:72","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":22905,"src":"870:633:72","usedErrors":[10152,10165,12330,12623,25480],"usedEvents":[9605]}],"src":"40:1464:72"},"id":72},"contracts/CashFlowLender.sol":{"ast":{"absolutePath":"contracts/CashFlowLender.sol","exportedSymbols":{"AccessManagedProxy":[25542],"Address":[12580],"CashFlowLender":[25465],"ContextUpgradeable":[6771],"ERC165":[18196],"ERC2771ContextUpgradeable":[4908],"ERC4626Upgradeable":[6725],"IERC20":[11065],"IERC20Metadata":[11776],"IERC4626":[9796],"IERC721":[12302],"IERC721Receiver":[12320],"IPolicyHolder":[4321],"IPolicyHolderV2":[4343],"IPolicyPool":[25555],"Math":[19814],"Packing":[16305],"SafeCast":[21579],"SafeERC20":[12185],"UUPSUpgradeable":[5344]},"id":25466,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":22906,"literals":["solidity","^","0.8",".16"],"nodeType":"PragmaDirective","src":"39:24:73"},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","id":22908,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":6726,"src":"65:117:73","symbolAliases":[{"foreign":{"id":22907,"name":"ERC4626Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6725,"src":"73:18:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","id":22910,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":4909,"src":"183:115:73","symbolAliases":[{"foreign":{"id":22909,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4908,"src":"191:25:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","id":22912,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":6772,"src":"299:100:73","symbolAliases":[{"foreign":{"id":22911,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"307:18:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","file":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","id":22914,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":9627,"src":"400:85:73","symbolAliases":[{"foreign":{"id":22913,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"408:14:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":22916,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":9623,"src":"486:69:73","symbolAliases":[{"foreign":{"id":22915,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"494:6:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","file":"@openzeppelin/contracts/interfaces/IERC721.sol","id":22918,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":9801,"src":"556:71:73","symbolAliases":[{"foreign":{"id":22917,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12302,"src":"564:7:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","file":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","id":22920,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":9805,"src":"628:87:73","symbolAliases":[{"foreign":{"id":22919,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12320,"src":"636:15:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":22922,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":9797,"src":"716:73:73","symbolAliases":[{"foreign":{"id":22921,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"724:8:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Packing.sol","file":"@openzeppelin/contracts/utils/Packing.sol","id":22924,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":16306,"src":"790:66:73","symbolAliases":[{"foreign":{"id":22923,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16305,"src":"798:7:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":22926,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":12581,"src":"857:66:73","symbolAliases":[{"foreign":{"id":22925,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12580,"src":"865:7:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":22928,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":12321,"src":"924:89:73","symbolAliases":[{"foreign":{"id":22927,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12320,"src":"932:15:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":22930,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":19815,"src":"1014:65:73","symbolAliases":[{"foreign":{"id":22929,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"1022:4:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":22932,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":21580,"src":"1080:73:73","symbolAliases":[{"foreign":{"id":22931,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21579,"src":"1088:8:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":22934,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":12186,"src":"1154:82:73","symbolAliases":[{"foreign":{"id":22933,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12185,"src":"1162:9:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","id":22936,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":5345,"src":"1237:100:73","symbolAliases":[{"foreign":{"id":22935,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5344,"src":"1245:15:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":22938,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":18197,"src":"1338:78:73","symbolAliases":[{"foreign":{"id":22937,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18196,"src":"1346:6:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/dependencies/IPolicyPool.sol","file":"./dependencies/IPolicyPool.sol","id":22940,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":25556,"src":"1417:59:73","symbolAliases":[{"foreign":{"id":22939,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25555,"src":"1425:11:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","id":22942,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":4322,"src":"1477:82:73","symbolAliases":[{"foreign":{"id":22941,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4321,"src":"1485:13:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol","id":22944,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":4344,"src":"1560:86:73","symbolAliases":[{"foreign":{"id":22943,"name":"IPolicyHolderV2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4343,"src":"1568:15:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/dependencies/AccessManagedProxy.sol","file":"./dependencies/AccessManagedProxy.sol","id":22946,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25466,"sourceUnit":25543,"src":"1647:73:73","symbolAliases":[{"foreign":{"id":22945,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25542,"src":"1655:18:73","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22948,"name":"ERC2771ContextUpgradeable","nameLocations":["3293:25:73"],"nodeType":"IdentifierPath","referencedDeclaration":4908,"src":"3293:25:73"},"id":22949,"nodeType":"InheritanceSpecifier","src":"3293:25:73"},{"baseName":{"id":22950,"name":"UUPSUpgradeable","nameLocations":["3320:15:73"],"nodeType":"IdentifierPath","referencedDeclaration":5344,"src":"3320:15:73"},"id":22951,"nodeType":"InheritanceSpecifier","src":"3320:15:73"},{"baseName":{"id":22952,"name":"ERC4626Upgradeable","nameLocations":["3337:18:73"],"nodeType":"IdentifierPath","referencedDeclaration":6725,"src":"3337:18:73"},"id":22953,"nodeType":"InheritanceSpecifier","src":"3337:18:73"},{"baseName":{"id":22954,"name":"IPolicyHolderV2","nameLocations":["3357:15:73"],"nodeType":"IdentifierPath","referencedDeclaration":4343,"src":"3357:15:73"},"id":22955,"nodeType":"InheritanceSpecifier","src":"3357:15:73"},{"baseName":{"id":22956,"name":"ERC165","nameLocations":["3374:6:73"],"nodeType":"IdentifierPath","referencedDeclaration":18196,"src":"3374:6:73"},"id":22957,"nodeType":"InheritanceSpecifier","src":"3374:6:73"}],"canonicalName":"CashFlowLender","contractDependencies":[],"contractKind":"contract","documentation":{"id":22947,"nodeType":"StructuredDocumentation","src":"1722:1543:73","text":" @title CashFlow Lender Module that tracks ownership\n @dev Implements the ERC-4626 standard tracking how much liquidity was provided by each LP.\n      The assets managed by the vault are a mix of liquid USDC + the $._totalDebt tracked by the CFL.\n      The debt is tracked as a global number, but also for each target and period (month for example). If the debt\n      is negative, it means Ensuro owes to the customer.\n      The funds can also be sent to a $._yieldVault to generate yields on the idle funds.\n      The contract forwards the calls to the targets (Ensuro risk modules), but it has two variants for doing that\n      a. forwardNewPolicy (and the batch variant): this method tracks the balance reduction caused by paying the\n         premiums, and in base of that number increases the debt.\n      b. forwardResolvePolicy (and the batch variant): this method just forwards the call (after doing access\n         validations). The debt will be reduced when the policies are resolved and the PolicyPool calls\n         `onPayoutReceived(...)`\n      The contract is a UUPSUpgradeable contract but MUST NOT be used with a plain ERC1967 proxy, but instead with\n      an `AccessManagedProxy` that executes the access control. The contract DOESN'T IMPLEMENT ACCESS CONTROL\n      validations on the critical methods. It's assumed it will be deployed behind an AccessManagedProxy with\n      the proper access control setup.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":25465,"linearizedBaseContracts":[25465,18196,18208,4343,4321,12320,6725,9796,5961,9856,11776,11065,5344,9814,4908,6771,5162],"name":"CashFlowLender","nameLocation":"3275:14:73","nodeType":"ContractDefinition","nodes":[{"global":false,"id":22961,"libraryName":{"id":22958,"name":"SafeERC20","nameLocations":["3391:9:73"],"nodeType":"IdentifierPath","referencedDeclaration":12185,"src":"3391:9:73"},"nodeType":"UsingForDirective","src":"3385:35:73","typeName":{"id":22960,"nodeType":"UserDefinedTypeName","pathNode":{"id":22959,"name":"IERC20Metadata","nameLocations":["3405:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"3405:14:73"},"referencedDeclaration":11776,"src":"3405:14:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}}},{"global":false,"id":22964,"libraryName":{"id":22962,"name":"SafeCast","nameLocations":["3429:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":21579,"src":"3429:8:73"},"nodeType":"UsingForDirective","src":"3423:27:73","typeName":{"id":22963,"name":"uint256","nodeType":"ElementaryTypeName","src":"3442:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":22967,"libraryName":{"id":22965,"name":"SafeCast","nameLocations":["3459:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":21579,"src":"3459:8:73"},"nodeType":"UsingForDirective","src":"3453:26:73","typeName":{"id":22966,"name":"int256","nodeType":"ElementaryTypeName","src":"3472:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}},{"global":false,"id":22970,"libraryName":{"id":22968,"name":"Address","nameLocations":["3488:7:73"],"nodeType":"IdentifierPath","referencedDeclaration":12580,"src":"3488:7:73"},"nodeType":"UsingForDirective","src":"3482:26:73","typeName":{"id":22969,"name":"address","nodeType":"ElementaryTypeName","src":"3500:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},{"constant":true,"functionSelector":"a9ed1487","id":22973,"mutability":"constant","name":"OWN_POLICY_SELECTOR","nameLocation":"3535:19:73","nodeType":"VariableDeclaration","scope":25465,"src":"3512:55:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":22971,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3512:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"hexValue":"30786666666666666666","id":22972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3557:10:73","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"visibility":"public"},{"constant":true,"documentation":{"id":22974,"nodeType":"StructuredDocumentation","src":"3572:130:73","text":" @dev Slot size used to indicate the slots use calendar months.\n      Only years from 2025 to 2099 are supported"},"functionSelector":"3edeb257","id":22981,"mutability":"constant","name":"SLOTSIZE_CALENDAR_MONTH","nameLocation":"3728:23:73","nodeType":"VariableDeclaration","scope":25465,"src":"3705:65:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22975,"name":"uint32","nodeType":"ElementaryTypeName","src":"3705:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"expression":{"arguments":[{"id":22978,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3759:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":22977,"name":"uint32","nodeType":"ElementaryTypeName","src":"3759:6:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":22976,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3754:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":22979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3754:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":22980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:73","memberName":"max","nodeType":"MemberAccess","src":"3754:16:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"public"},{"constant":true,"id":22984,"mutability":"constant","name":"JAN_1ST_2025","nameLocation":"3801:12:73","nodeType":"VariableDeclaration","scope":25465,"src":"3775:51:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22982,"name":"uint256","nodeType":"ElementaryTypeName","src":"3775:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31373335363839363030","id":22983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3816:10:73","typeDescriptions":{"typeIdentifier":"t_rational_1735689600_by_1","typeString":"int_const 1735689600"},"value":"1735689600"},"visibility":"internal"},{"constant":true,"id":22987,"mutability":"constant","name":"SECONDS_PER_DAY","nameLocation":"3856:15:73","nodeType":"VariableDeclaration","scope":25465,"src":"3830:49:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22985,"name":"uint256","nodeType":"ElementaryTypeName","src":"3830:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3836343030","id":22986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3874:5:73","typeDescriptions":{"typeIdentifier":"t_rational_86400_by_1","typeString":"int_const 86400"},"value":"86400"},"visibility":"internal"},{"constant":false,"documentation":{"id":22988,"nodeType":"StructuredDocumentation","src":"3884:61:73","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":22991,"mutability":"immutable","name":"_policyPool","nameLocation":"3979:11:73","nodeType":"VariableDeclaration","scope":25465,"src":"3948:42:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"},"typeName":{"id":22990,"nodeType":"UserDefinedTypeName","pathNode":{"id":22989,"name":"IPolicyPool","nameLocations":["3948:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":25555,"src":"3948:11:73"},"referencedDeclaration":25555,"src":"3948:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"canonicalName":"CashFlowLender.TargetSlot","id":22993,"name":"TargetSlot","nameLocation":"4325:10:73","nodeType":"UserDefinedValueTypeDefinition","src":"4320:27:73","underlyingType":{"id":22992,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4339:7:73","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"canonicalName":"CashFlowLender.TargetStatus","documentation":{"id":22994,"nodeType":"StructuredDocumentation","src":"4427:94:73","text":" @dev This status defines what kind of operations are enabled for a given target"},"id":22999,"members":[{"id":22995,"name":"inactive","nameLocation":"4548:8:73","nodeType":"EnumValue","src":"4548:8:73"},{"id":22996,"name":"active","nameLocation":"4582:6:73","nodeType":"EnumValue","src":"4582:6:73"},{"id":22997,"name":"deprecated","nameLocation":"4617:10:73","nodeType":"EnumValue","src":"4617:10:73"},{"id":22998,"name":"suspended","nameLocation":"4662:9:73","nodeType":"EnumValue","src":"4662:9:73"}],"name":"TargetStatus","nameLocation":"4529:12:73","nodeType":"EnumDefinition","src":"4524:171:73"},{"canonicalName":"CashFlowLender.TargetConfig","id":23009,"members":[{"constant":false,"id":23001,"mutability":"mutable","name":"slotSize","nameLocation":"4732:8:73","nodeType":"VariableDeclaration","scope":23009,"src":"4725:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23000,"name":"uint32","nodeType":"ElementaryTypeName","src":"4725:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23004,"mutability":"mutable","name":"status","nameLocation":"4759:6:73","nodeType":"VariableDeclaration","scope":23009,"src":"4746:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":23003,"nodeType":"UserDefinedTypeName","pathNode":{"id":23002,"name":"TargetStatus","nameLocations":["4746:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":22999,"src":"4746:12:73"},"referencedDeclaration":22999,"src":"4746:12:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"},{"constant":false,"id":23006,"mutability":"mutable","name":"debtLimit","nameLocation":"4778:9:73","nodeType":"VariableDeclaration","scope":23009,"src":"4771:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":23005,"name":"uint96","nodeType":"ElementaryTypeName","src":"4771:6:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":23008,"mutability":"mutable","name":"minLiquidity","nameLocation":"4830:12:73","nodeType":"VariableDeclaration","scope":23009,"src":"4823:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":23007,"name":"uint96","nodeType":"ElementaryTypeName","src":"4823:6:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"name":"TargetConfig","nameLocation":"4706:12:73","nodeType":"StructDefinition","scope":25465,"src":"4699:204:73","visibility":"public"},{"canonicalName":"CashFlowLender.CashFlowLenderStorage","documentation":{"id":23010,"nodeType":"StructuredDocumentation","src":"4907:66:73","text":"@custom:storage-location erc7201:ensuro.storage.CashFlowLender"},"id":23026,"members":[{"constant":false,"id":23013,"mutability":"mutable","name":"_yieldVault","nameLocation":"5020:11:73","nodeType":"VariableDeclaration","scope":23026,"src":"5011:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23012,"nodeType":"UserDefinedTypeName","pathNode":{"id":23011,"name":"IERC4626","nameLocations":["5011:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"5011:8:73"},"referencedDeclaration":9796,"src":"5011:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":23015,"mutability":"mutable","name":"_totalDebt","nameLocation":"5043:10:73","nodeType":"VariableDeclaration","scope":23026,"src":"5037:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":23014,"name":"int96","nodeType":"ElementaryTypeName","src":"5037:5:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"},{"constant":false,"id":23020,"mutability":"mutable","name":"_targets","nameLocation":"5092:8:73","nodeType":"VariableDeclaration","scope":23026,"src":"5059:41:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$23009_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig)"},"typeName":{"id":23019,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":23016,"name":"address","nodeType":"ElementaryTypeName","src":"5067:7:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"5059:32:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$23009_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":23018,"nodeType":"UserDefinedTypeName","pathNode":{"id":23017,"name":"TargetConfig","nameLocations":["5078:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"5078:12:73"},"referencedDeclaration":23009,"src":"5078:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}}},"visibility":"internal"},{"constant":false,"id":23025,"mutability":"mutable","name":"_debtByPeriod","nameLocation":"5136:13:73","nodeType":"VariableDeclaration","scope":23026,"src":"5106:43:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$22993_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"},"typeName":{"id":23024,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":23022,"nodeType":"UserDefinedTypeName","pathNode":{"id":23021,"name":"TargetSlot","nameLocations":["5114:10:73"],"nodeType":"IdentifierPath","referencedDeclaration":22993,"src":"5114:10:73"},"referencedDeclaration":22993,"src":"5114:10:73","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"nodeType":"Mapping","src":"5106:29:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$22993_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":23023,"name":"int256","nodeType":"ElementaryTypeName","src":"5128:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}},"visibility":"internal"}],"name":"CashFlowLenderStorage","nameLocation":"4983:21:73","nodeType":"StructDefinition","scope":25465,"src":"4976:178:73","visibility":"public"},{"constant":true,"id":23029,"mutability":"constant","name":"CashFlowLenderStorageLocation","nameLocation":"5346:29:73","nodeType":"VariableDeclaration","scope":25465,"src":"5320:128:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23027,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5320:7:73","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830646666363630633730356563343930333833666661666339653865336162343731343535396639656338353637633533383064346164326466663561663030","id":23028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5382:66:73","typeDescriptions":{"typeIdentifier":"t_rational_6331317346581645585324972847313897437492051154648158542213559898182209875712_by_1","typeString":"int_const 6331...(68 digits omitted)...5712"},"value":"0x0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00"},"visibility":"internal"},{"body":{"id":23036,"nodeType":"Block","src":"5546:124:73","statements":[{"AST":{"nativeSrc":"5613:53:73","nodeType":"YulBlock","src":"5613:53:73","statements":[{"nativeSrc":"5621:39:73","nodeType":"YulAssignment","src":"5621:39:73","value":{"name":"CashFlowLenderStorageLocation","nativeSrc":"5631:29:73","nodeType":"YulIdentifier","src":"5631:29:73"},"variableNames":[{"name":"$.slot","nativeSrc":"5621:6:73","nodeType":"YulIdentifier","src":"5621:6:73"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":23033,"isOffset":false,"isSlot":true,"src":"5621:6:73","suffix":"slot","valueSize":1},{"declaration":23029,"isOffset":false,"isSlot":false,"src":"5631:29:73","valueSize":1}],"id":23035,"nodeType":"InlineAssembly","src":"5604:62:73"}]},"id":23037,"implemented":true,"kind":"function","modifiers":[],"name":"_getCashFlowLenderStorage","nameLocation":"5462:25:73","nodeType":"FunctionDefinition","parameters":{"id":23030,"nodeType":"ParameterList","parameters":[],"src":"5487:2:73"},"returnParameters":{"id":23034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23033,"mutability":"mutable","name":"$","nameLocation":"5543:1:73","nodeType":"VariableDeclaration","scope":23037,"src":"5513:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23032,"nodeType":"UserDefinedTypeName","pathNode":{"id":23031,"name":"CashFlowLenderStorage","nameLocations":["5513:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"5513:21:73"},"referencedDeclaration":23026,"src":"5513:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"src":"5512:33:73"},"scope":25465,"src":"5453:217:73","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":23040,"mutability":"constant","name":"ERC4626StorageLocation","nameLocation":"5861:22:73","nodeType":"VariableDeclaration","scope":25465,"src":"5835:117:73","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23038,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5835:7:73","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830373733653533326466656465393166303462313261373364336432616364333631343234663431663736623466623739663039303136316533366234653030","id":23039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5886:66:73","typeDescriptions":{"typeIdentifier":"t_rational_3370959224025639111533709689598502374825270023453997444744848480697785732608_by_1","typeString":"int_const 3370...(68 digits omitted)...2608"},"value":"0x0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00"},"visibility":"internal"},{"body":{"id":23047,"nodeType":"Block","src":"6115:117:73","statements":[{"AST":{"nativeSrc":"6182:46:73","nodeType":"YulBlock","src":"6182:46:73","statements":[{"nativeSrc":"6190:32:73","nodeType":"YulAssignment","src":"6190:32:73","value":{"name":"ERC4626StorageLocation","nativeSrc":"6200:22:73","nodeType":"YulIdentifier","src":"6200:22:73"},"variableNames":[{"name":"$.slot","nativeSrc":"6190:6:73","nodeType":"YulIdentifier","src":"6190:6:73"}]}]},"evmVersion":"cancun","externalReferences":[{"declaration":23044,"isOffset":false,"isSlot":true,"src":"6190:6:73","suffix":"slot","valueSize":1},{"declaration":23040,"isOffset":false,"isSlot":false,"src":"6200:22:73","valueSize":1}],"id":23046,"nodeType":"InlineAssembly","src":"6173:55:73"}]},"id":23048,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC4626StorageCFL","nameLocation":"6042:21:73","nodeType":"FunctionDefinition","parameters":{"id":23041,"nodeType":"ParameterList","parameters":[],"src":"6063:2:73"},"returnParameters":{"id":23045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23044,"mutability":"mutable","name":"$","nameLocation":"6112:1:73","nodeType":"VariableDeclaration","scope":23048,"src":"6089:24:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":23043,"nodeType":"UserDefinedTypeName","pathNode":{"id":23042,"name":"ERC4626Storage","nameLocations":["6089:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"6089:14:73"},"referencedDeclaration":5994,"src":"6089:14:73","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"src":"6088:26:73"},"scope":25465,"src":"6033:199:73","stateMutability":"pure","virtual":false,"visibility":"internal"},{"anonymous":false,"eventSelector":"9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a","id":23056,"name":"YieldVaultChanged","nameLocation":"6242:17:73","nodeType":"EventDefinition","parameters":{"id":23055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23051,"indexed":false,"mutability":"mutable","name":"oldVault","nameLocation":"6269:8:73","nodeType":"VariableDeclaration","scope":23056,"src":"6260:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23050,"nodeType":"UserDefinedTypeName","pathNode":{"id":23049,"name":"IERC4626","nameLocations":["6260:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"6260:8:73"},"referencedDeclaration":9796,"src":"6260:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":23054,"indexed":false,"mutability":"mutable","name":"newVault","nameLocation":"6288:8:73","nodeType":"VariableDeclaration","scope":23056,"src":"6279:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23053,"nodeType":"UserDefinedTypeName","pathNode":{"id":23052,"name":"IERC4626","nameLocations":["6279:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"6279:8:73"},"referencedDeclaration":9796,"src":"6279:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"6259:38:73"},"src":"6236:62:73"},{"anonymous":false,"eventSelector":"bc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee","id":23070,"name":"DebtChanged","nameLocation":"6307:11:73","nodeType":"EventDefinition","parameters":{"id":23069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23058,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6340:6:73","nodeType":"VariableDeclaration","scope":23070,"src":"6324:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23057,"name":"address","nodeType":"ElementaryTypeName","src":"6324:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23060,"indexed":false,"mutability":"mutable","name":"slotSize","nameLocation":"6359:8:73","nodeType":"VariableDeclaration","scope":23070,"src":"6352:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23059,"name":"uint32","nodeType":"ElementaryTypeName","src":"6352:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23062,"indexed":false,"mutability":"mutable","name":"slotIndex","nameLocation":"6380:9:73","nodeType":"VariableDeclaration","scope":23070,"src":"6373:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23061,"name":"uint32","nodeType":"ElementaryTypeName","src":"6373:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23064,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6402:5:73","nodeType":"VariableDeclaration","scope":23070,"src":"6395:12:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23063,"name":"int256","nodeType":"ElementaryTypeName","src":"6395:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":23066,"indexed":false,"mutability":"mutable","name":"debtAfterChange","nameLocation":"6420:15:73","nodeType":"VariableDeclaration","scope":23070,"src":"6413:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23065,"name":"int256","nodeType":"ElementaryTypeName","src":"6413:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":23068,"indexed":false,"mutability":"mutable","name":"totalDebtAfterChange","nameLocation":"6448:20:73","nodeType":"VariableDeclaration","scope":23070,"src":"6441:27:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23067,"name":"int256","nodeType":"ElementaryTypeName","src":"6441:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6318:154:73"},"src":"6301:172:73"},{"anonymous":false,"eventSelector":"cc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe","id":23084,"name":"CashOutPayout","nameLocation":"6482:13:73","nodeType":"EventDefinition","parameters":{"id":23083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23072,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6517:6:73","nodeType":"VariableDeclaration","scope":23084,"src":"6501:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23071,"name":"address","nodeType":"ElementaryTypeName","src":"6501:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23074,"indexed":false,"mutability":"mutable","name":"slotSize","nameLocation":"6536:8:73","nodeType":"VariableDeclaration","scope":23084,"src":"6529:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23073,"name":"uint32","nodeType":"ElementaryTypeName","src":"6529:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23076,"indexed":false,"mutability":"mutable","name":"slotIndex","nameLocation":"6557:9:73","nodeType":"VariableDeclaration","scope":23084,"src":"6550:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23075,"name":"uint32","nodeType":"ElementaryTypeName","src":"6550:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23078,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"6580:6:73","nodeType":"VariableDeclaration","scope":23084,"src":"6572:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23077,"name":"uint256","nodeType":"ElementaryTypeName","src":"6572:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23080,"indexed":false,"mutability":"mutable","name":"debtAfterChange","nameLocation":"6599:15:73","nodeType":"VariableDeclaration","scope":23084,"src":"6592:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23079,"name":"int256","nodeType":"ElementaryTypeName","src":"6592:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":23082,"indexed":false,"mutability":"mutable","name":"destination","nameLocation":"6628:11:73","nodeType":"VariableDeclaration","scope":23084,"src":"6620:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23081,"name":"address","nodeType":"ElementaryTypeName","src":"6620:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6495:148:73"},"src":"6476:168:73"},{"anonymous":false,"eventSelector":"fe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c","id":23098,"name":"RepayDebt","nameLocation":"6653:9:73","nodeType":"EventDefinition","parameters":{"id":23097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23086,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6684:6:73","nodeType":"VariableDeclaration","scope":23098,"src":"6668:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23085,"name":"address","nodeType":"ElementaryTypeName","src":"6668:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23088,"indexed":false,"mutability":"mutable","name":"slotSize","nameLocation":"6703:8:73","nodeType":"VariableDeclaration","scope":23098,"src":"6696:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23087,"name":"uint32","nodeType":"ElementaryTypeName","src":"6696:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23090,"indexed":false,"mutability":"mutable","name":"slotIndex","nameLocation":"6724:9:73","nodeType":"VariableDeclaration","scope":23098,"src":"6717:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23089,"name":"uint32","nodeType":"ElementaryTypeName","src":"6717:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23092,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"6747:6:73","nodeType":"VariableDeclaration","scope":23098,"src":"6739:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23091,"name":"uint256","nodeType":"ElementaryTypeName","src":"6739:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23094,"indexed":false,"mutability":"mutable","name":"debtAfterChange","nameLocation":"6766:15:73","nodeType":"VariableDeclaration","scope":23098,"src":"6759:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23093,"name":"int256","nodeType":"ElementaryTypeName","src":"6759:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":23096,"indexed":false,"mutability":"mutable","name":"payer","nameLocation":"6795:5:73","nodeType":"VariableDeclaration","scope":23098,"src":"6787:13:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23095,"name":"address","nodeType":"ElementaryTypeName","src":"6787:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6662:142:73"},"src":"6647:158:73"},{"anonymous":false,"eventSelector":"422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e","id":23105,"name":"TargetAdded","nameLocation":"6814:11:73","nodeType":"EventDefinition","parameters":{"id":23104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23100,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6842:6:73","nodeType":"VariableDeclaration","scope":23105,"src":"6826:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23099,"name":"address","nodeType":"ElementaryTypeName","src":"6826:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23103,"indexed":false,"mutability":"mutable","name":"config","nameLocation":"6863:6:73","nodeType":"VariableDeclaration","scope":23105,"src":"6850:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_memory_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23102,"nodeType":"UserDefinedTypeName","pathNode":{"id":23101,"name":"TargetConfig","nameLocations":["6850:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"6850:12:73"},"referencedDeclaration":23009,"src":"6850:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"6825:45:73"},"src":"6808:63:73"},{"anonymous":false,"eventSelector":"7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb7","id":23117,"name":"TargetLimitsChanged","nameLocation":"6880:19:73","nodeType":"EventDefinition","parameters":{"id":23116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23107,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6921:6:73","nodeType":"VariableDeclaration","scope":23117,"src":"6905:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23106,"name":"address","nodeType":"ElementaryTypeName","src":"6905:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23109,"indexed":false,"mutability":"mutable","name":"oldDebtLimit","nameLocation":"6941:12:73","nodeType":"VariableDeclaration","scope":23117,"src":"6933:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23108,"name":"uint256","nodeType":"ElementaryTypeName","src":"6933:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23111,"indexed":false,"mutability":"mutable","name":"newDebtLimit","nameLocation":"6967:12:73","nodeType":"VariableDeclaration","scope":23117,"src":"6959:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23110,"name":"uint256","nodeType":"ElementaryTypeName","src":"6959:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23113,"indexed":false,"mutability":"mutable","name":"oldMinLiquidity","nameLocation":"6993:15:73","nodeType":"VariableDeclaration","scope":23117,"src":"6985:23:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23112,"name":"uint256","nodeType":"ElementaryTypeName","src":"6985:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23115,"indexed":false,"mutability":"mutable","name":"newMinLiquidity","nameLocation":"7022:15:73","nodeType":"VariableDeclaration","scope":23117,"src":"7014:23:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23114,"name":"uint256","nodeType":"ElementaryTypeName","src":"7014:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6899:142:73"},"src":"6874:168:73"},{"anonymous":false,"eventSelector":"0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24","id":23127,"name":"TargetStatusChanged","nameLocation":"7051:19:73","nodeType":"EventDefinition","parameters":{"id":23126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23119,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"7087:6:73","nodeType":"VariableDeclaration","scope":23127,"src":"7071:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23118,"name":"address","nodeType":"ElementaryTypeName","src":"7071:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23122,"indexed":false,"mutability":"mutable","name":"oldStatus","nameLocation":"7108:9:73","nodeType":"VariableDeclaration","scope":23127,"src":"7095:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":23121,"nodeType":"UserDefinedTypeName","pathNode":{"id":23120,"name":"TargetStatus","nameLocations":["7095:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":22999,"src":"7095:12:73"},"referencedDeclaration":22999,"src":"7095:12:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"},{"constant":false,"id":23125,"indexed":false,"mutability":"mutable","name":"newStatus","nameLocation":"7132:9:73","nodeType":"VariableDeclaration","scope":23127,"src":"7119:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":23124,"nodeType":"UserDefinedTypeName","pathNode":{"id":23123,"name":"TargetStatus","nameLocations":["7119:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":22999,"src":"7119:12:73"},"referencedDeclaration":22999,"src":"7119:12:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"7070:72:73"},"src":"7045:98:73"},{"anonymous":false,"eventSelector":"4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817","id":23135,"name":"TargetSlotSizeChanged","nameLocation":"7152:21:73","nodeType":"EventDefinition","parameters":{"id":23134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23129,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"7190:6:73","nodeType":"VariableDeclaration","scope":23135,"src":"7174:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23128,"name":"address","nodeType":"ElementaryTypeName","src":"7174:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23131,"indexed":false,"mutability":"mutable","name":"oldSlotSize","nameLocation":"7205:11:73","nodeType":"VariableDeclaration","scope":23135,"src":"7198:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23130,"name":"uint32","nodeType":"ElementaryTypeName","src":"7198:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23133,"indexed":false,"mutability":"mutable","name":"newSlotSize","nameLocation":"7225:11:73","nodeType":"VariableDeclaration","scope":23135,"src":"7218:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23132,"name":"uint32","nodeType":"ElementaryTypeName","src":"7218:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7173:64:73"},"src":"7146:92:73"},{"anonymous":false,"eventSelector":"37465ce4c247e78514460560da0bcc785fff559503ce6c3d87a6e84352437392","id":23141,"name":"AssetChanged","nameLocation":"7247:12:73","nodeType":"EventDefinition","parameters":{"id":23140,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23137,"indexed":false,"mutability":"mutable","name":"oldAsset","nameLocation":"7268:8:73","nodeType":"VariableDeclaration","scope":23141,"src":"7260:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23136,"name":"address","nodeType":"ElementaryTypeName","src":"7260:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23139,"indexed":false,"mutability":"mutable","name":"newAsset","nameLocation":"7286:8:73","nodeType":"VariableDeclaration","scope":23141,"src":"7278:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23138,"name":"address","nodeType":"ElementaryTypeName","src":"7278:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7259:36:73"},"src":"7241:55:73"},{"errorSelector":"c7aa35ca","id":23143,"name":"InvalidPolicyPool","nameLocation":"7306:17:73","nodeType":"ErrorDefinition","parameters":{"id":23142,"nodeType":"ParameterList","parameters":[],"src":"7323:2:73"},"src":"7300:26:73"},{"errorSelector":"950d88bf","id":23147,"name":"OnlyPolicyPool","nameLocation":"7335:14:73","nodeType":"ErrorDefinition","parameters":{"id":23146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23145,"mutability":"mutable","name":"sender","nameLocation":"7358:6:73","nodeType":"VariableDeclaration","scope":23147,"src":"7350:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23144,"name":"address","nodeType":"ElementaryTypeName","src":"7350:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7349:16:73"},"src":"7329:37:73"},{"errorSelector":"7428e3c8","id":23154,"name":"TargetNotActive","nameLocation":"7375:15:73","nodeType":"ErrorDefinition","parameters":{"id":23153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23149,"mutability":"mutable","name":"target","nameLocation":"7399:6:73","nodeType":"VariableDeclaration","scope":23154,"src":"7391:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23148,"name":"address","nodeType":"ElementaryTypeName","src":"7391:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23152,"mutability":"mutable","name":"status","nameLocation":"7420:6:73","nodeType":"VariableDeclaration","scope":23154,"src":"7407:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":23151,"nodeType":"UserDefinedTypeName","pathNode":{"id":23150,"name":"TargetStatus","nameLocations":["7407:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":22999,"src":"7407:12:73"},"referencedDeclaration":22999,"src":"7407:12:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"7390:37:73"},"src":"7369:59:73"},{"errorSelector":"bcc8a6ca","id":23156,"name":"CannotDeactivateTarget","nameLocation":"7437:22:73","nodeType":"ErrorDefinition","parameters":{"id":23155,"nodeType":"ParameterList","parameters":[],"src":"7459:2:73"},"src":"7431:31:73"},{"errorSelector":"cd43efa1","id":23158,"name":"TargetAlreadyExists","nameLocation":"7471:19:73","nodeType":"ErrorDefinition","parameters":{"id":23157,"nodeType":"ParameterList","parameters":[],"src":"7490:2:73"},"src":"7465:28:73"},{"errorSelector":"a5369b1c","id":23160,"name":"InvalidSlotSize","nameLocation":"7502:15:73","nodeType":"ErrorDefinition","parameters":{"id":23159,"nodeType":"ParameterList","parameters":[],"src":"7517:2:73"},"src":"7496:24:73"},{"errorSelector":"e5464b14","id":23166,"name":"DebtLimitExceeded","nameLocation":"7529:17:73","nodeType":"ErrorDefinition","parameters":{"id":23165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23162,"mutability":"mutable","name":"currentDebt","nameLocation":"7554:11:73","nodeType":"VariableDeclaration","scope":23166,"src":"7547:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23161,"name":"int256","nodeType":"ElementaryTypeName","src":"7547:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":23164,"mutability":"mutable","name":"debtLimit","nameLocation":"7574:9:73","nodeType":"VariableDeclaration","scope":23166,"src":"7567:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":23163,"name":"uint96","nodeType":"ElementaryTypeName","src":"7567:6:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"7546:38:73"},"src":"7523:62:73"},{"errorSelector":"c294136d","id":23174,"name":"UnauthorizedForward","nameLocation":"7594:19:73","nodeType":"ErrorDefinition","parameters":{"id":23173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23168,"mutability":"mutable","name":"caller","nameLocation":"7622:6:73","nodeType":"VariableDeclaration","scope":23174,"src":"7614:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23167,"name":"address","nodeType":"ElementaryTypeName","src":"7614:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23170,"mutability":"mutable","name":"target","nameLocation":"7638:6:73","nodeType":"VariableDeclaration","scope":23174,"src":"7630:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23169,"name":"address","nodeType":"ElementaryTypeName","src":"7630:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23172,"mutability":"mutable","name":"requiredSelector","nameLocation":"7653:16:73","nodeType":"VariableDeclaration","scope":23174,"src":"7646:23:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":23171,"name":"bytes4","nodeType":"ElementaryTypeName","src":"7646:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"7613:57:73"},"src":"7588:83:73"},{"errorSelector":"a3eb2eea","id":23178,"name":"BalanceDecreasedOnResolve","nameLocation":"7680:25:73","nodeType":"ErrorDefinition","parameters":{"id":23177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23176,"mutability":"mutable","name":"balanceReduction","nameLocation":"7714:16:73","nodeType":"VariableDeclaration","scope":23178,"src":"7706:24:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23175,"name":"uint256","nodeType":"ElementaryTypeName","src":"7706:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7705:26:73"},"src":"7674:58:73"},{"errorSelector":"47ddf9c7","id":23180,"name":"YieldVaultIsRequired","nameLocation":"7741:20:73","nodeType":"ErrorDefinition","parameters":{"id":23179,"nodeType":"ParameterList","parameters":[],"src":"7761:2:73"},"src":"7735:29:73"},{"errorSelector":"af8075e9","id":23182,"name":"NotEnoughCash","nameLocation":"7773:13:73","nodeType":"ErrorDefinition","parameters":{"id":23181,"nodeType":"ParameterList","parameters":[],"src":"7786:2:73"},"src":"7767:22:73"},{"errorSelector":"2dad9021","id":23186,"name":"TargetNotFound","nameLocation":"7798:14:73","nodeType":"ErrorDefinition","parameters":{"id":23185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23184,"mutability":"mutable","name":"target","nameLocation":"7821:6:73","nodeType":"VariableDeclaration","scope":23186,"src":"7813:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23183,"name":"address","nodeType":"ElementaryTypeName","src":"7813:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7812:16:73"},"src":"7792:37:73"},{"errorSelector":"c97a6bf0","id":23192,"name":"CashOutExceedsLimit","nameLocation":"7838:19:73","nodeType":"ErrorDefinition","parameters":{"id":23191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23188,"mutability":"mutable","name":"amount","nameLocation":"7866:6:73","nodeType":"VariableDeclaration","scope":23192,"src":"7858:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23187,"name":"uint256","nodeType":"ElementaryTypeName","src":"7858:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23190,"mutability":"mutable","name":"debtAfter","nameLocation":"7881:9:73","nodeType":"VariableDeclaration","scope":23192,"src":"7874:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23189,"name":"int256","nodeType":"ElementaryTypeName","src":"7874:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7857:34:73"},"src":"7832:60:73"},{"errorSelector":"473bcae2","id":23198,"name":"RepaymentExceedsLimit","nameLocation":"7901:21:73","nodeType":"ErrorDefinition","parameters":{"id":23197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23194,"mutability":"mutable","name":"amount","nameLocation":"7931:6:73","nodeType":"VariableDeclaration","scope":23198,"src":"7923:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23193,"name":"uint256","nodeType":"ElementaryTypeName","src":"7923:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23196,"mutability":"mutable","name":"debtAfter","nameLocation":"7946:9:73","nodeType":"VariableDeclaration","scope":23198,"src":"7939:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23195,"name":"int256","nodeType":"ElementaryTypeName","src":"7939:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7922:34:73"},"src":"7895:62:73"},{"errorSelector":"525a9896","id":23200,"name":"CannotDeinvestYieldVault","nameLocation":"7966:24:73","nodeType":"ErrorDefinition","parameters":{"id":23199,"nodeType":"ParameterList","parameters":[],"src":"7990:2:73"},"src":"7960:33:73"},{"errorSelector":"94bea0f4","id":23202,"name":"NothingToRefresh","nameLocation":"8002:16:73","nodeType":"ErrorDefinition","parameters":{"id":23201,"nodeType":"ParameterList","parameters":[],"src":"8018:2:73"},"src":"7996:25:73"},{"errorSelector":"902dd39b","id":23204,"name":"CannotRefreshAssetWithCash","nameLocation":"8030:26:73","nodeType":"ErrorDefinition","parameters":{"id":23203,"nodeType":"ParameterList","parameters":[],"src":"8056:2:73"},"src":"8024:35:73"},{"errorSelector":"467f0ac6","id":23206,"name":"MustChangeYieldAssetBeforeRefresh","nameLocation":"8068:33:73","nodeType":"ErrorDefinition","parameters":{"id":23205,"nodeType":"ParameterList","parameters":[],"src":"8101:2:73"},"src":"8062:42:73"},{"body":{"id":23223,"nodeType":"Block","src":"8134:218:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23209,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8277:3:73","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":23210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8281:6:73","memberName":"sender","nodeType":"MemberAccess","src":"8277:10:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":23213,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"8299:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}],"id":23212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8291:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23211,"name":"address","nodeType":"ElementaryTypeName","src":"8291:7:73","typeDescriptions":{}}},"id":23214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8291:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8277:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":23217,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8328:3:73","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":23218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8332:6:73","memberName":"sender","nodeType":"MemberAccess","src":"8328:10:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23216,"name":"OnlyPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23147,"src":"8313:14:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8313:26:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23208,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8269:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8269:71:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23221,"nodeType":"ExpressionStatement","src":"8269:71:73"},{"id":23222,"nodeType":"PlaceholderStatement","src":"8346:1:73"}]},"id":23224,"name":"onlyPolicyPool","nameLocation":"8117:14:73","nodeType":"ModifierDefinition","parameters":{"id":23207,"nodeType":"ParameterList","parameters":[],"src":"8131:2:73"},"src":"8108:244:73","virtual":false,"visibility":"internal"},{"body":{"id":23326,"nodeType":"Block","src":"8405:904:73","statements":[{"assignments":[23230],"declarations":[{"constant":false,"id":23230,"mutability":"mutable","name":"targetConfig","nameLocation":"8432:12:73","nodeType":"VariableDeclaration","scope":23326,"src":"8411:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23229,"nodeType":"UserDefinedTypeName","pathNode":{"id":23228,"name":"TargetConfig","nameLocations":["8411:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"8411:12:73"},"referencedDeclaration":23009,"src":"8411:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":23234,"initialValue":{"arguments":[{"id":23232,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23226,"src":"8464:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23231,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"8447:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":23233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8447:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"8411:60:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":23240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23236,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"8485:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23237,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8498:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"8485:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23238,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"8508:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23239,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8521:6:73","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22996,"src":"8508:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"8485:42:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":23242,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23226,"src":"8545:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23243,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"8553:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23244,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8566:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"8553:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}],"id":23241,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23154,"src":"8529:15:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$22999_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":23245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8529:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23235,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8477:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8477:97:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23247,"nodeType":"ExpressionStatement","src":"8477:97:73"},{"assignments":[23249],"declarations":[{"constant":false,"id":23249,"mutability":"mutable","name":"balanceBefore","nameLocation":"8623:13:73","nodeType":"VariableDeclaration","scope":23326,"src":"8615:21:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23248,"name":"uint256","nodeType":"ElementaryTypeName","src":"8615:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":23252,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23250,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"8639:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":23251,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8639:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8615:34:73"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23253,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23249,"src":"8660:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[{"expression":{"id":23256,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"8684:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23257,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8697:12:73","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":23008,"src":"8684:25:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":23255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8676:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":23254,"name":"uint256","nodeType":"ElementaryTypeName","src":"8676:7:73","typeDescriptions":{}}},"id":23258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8676:34:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8660:50:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23276,"nodeType":"IfStatement","src":"8656:166:73","trueBody":{"id":23275,"nodeType":"Block","src":"8712:110:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":23263,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"8738:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23264,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8751:12:73","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":23008,"src":"8738:25:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":23262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8730:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":23261,"name":"uint256","nodeType":"ElementaryTypeName","src":"8730:7:73","typeDescriptions":{}}},"id":23265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8730:34:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":23266,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23249,"src":"8767:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8730:50:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23260,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24529,"src":"8720:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":23268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8720:61:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23269,"nodeType":"ExpressionStatement","src":"8720:61:73"},{"expression":{"id":23273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23270,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23249,"src":"8789:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":23271,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"8805:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":23272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8805:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8789:26:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23274,"nodeType":"ExpressionStatement","src":"8789:26:73"}]}},{"id":23277,"nodeType":"PlaceholderStatement","src":"8827:1:73"},{"assignments":[23279],"declarations":[{"constant":false,"id":23279,"mutability":"mutable","name":"balanceAfter","nameLocation":"8842:12:73","nodeType":"VariableDeclaration","scope":23326,"src":"8834:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23278,"name":"uint256","nodeType":"ElementaryTypeName","src":"8834:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":23282,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23280,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"8857:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":23281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8857:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8834:33:73"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23283,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23279,"src":"8878:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":23284,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23249,"src":"8893:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8878:28:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23325,"nodeType":"IfStatement","src":"8874:431:73","trueBody":{"id":23324,"nodeType":"Block","src":"8908:397:73","statements":[{"assignments":[23287],"declarations":[{"constant":false,"id":23287,"mutability":"mutable","name":"currDebt","nameLocation":"8985:8:73","nodeType":"VariableDeclaration","scope":23324,"src":"8978:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":23286,"name":"int256","nodeType":"ElementaryTypeName","src":"8978:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":23305,"initialValue":{"arguments":[{"id":23289,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23226,"src":"9017:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23290,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"9033:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23291,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9046:8:73","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":23001,"src":"9033:21:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"expression":{"id":23293,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"9079:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23294,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9092:8:73","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":23001,"src":"9079:21:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":23295,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9102:5:73","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":23296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9108:9:73","memberName":"timestamp","nodeType":"MemberAccess","src":"9102:15:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23292,"name":"_makeSlotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24449,"src":"9064:14:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":23297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9064:54:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23298,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23249,"src":"9129:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":23299,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23279,"src":"9145:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9129:28:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":23301,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9128:30:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9159:8:73","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":21568,"src":"9128:39:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":23303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9128:41:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":23288,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24589,"src":"8996:11:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":23304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8996:181:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"8978:199:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":23316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23307,"name":"currDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23287,"src":"9193:8:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"arguments":[{"expression":{"id":23312,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"9220:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23313,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9233:9:73","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":23006,"src":"9220:22:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":23311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9212:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":23310,"name":"uint256","nodeType":"ElementaryTypeName","src":"9212:7:73","typeDescriptions":{}}},"id":23314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9212:31:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9205:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":23308,"name":"int256","nodeType":"ElementaryTypeName","src":"9205:6:73","typeDescriptions":{}}},"id":23315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9205:39:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"9193:51:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":23318,"name":"currDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23287,"src":"9264:8:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"expression":{"id":23319,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23230,"src":"9274:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23320,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9287:9:73","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":23006,"src":"9274:22:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":23317,"name":"DebtLimitExceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23166,"src":"9246:17:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$_t_uint96_$returns$_t_error_$","typeString":"function (int256,uint96) pure returns (error)"}},"id":23321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9246:51:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23306,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"9185:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9185:113:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23323,"nodeType":"ExpressionStatement","src":"9185:113:73"}]}}]},"id":23327,"name":"forwardNewPolicyWrapper","nameLocation":"8365:23:73","nodeType":"ModifierDefinition","parameters":{"id":23227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23226,"mutability":"mutable","name":"target","nameLocation":"8397:6:73","nodeType":"VariableDeclaration","scope":23327,"src":"8389:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23225,"name":"address","nodeType":"ElementaryTypeName","src":"8389:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8388:16:73"},"src":"8356:953:73","virtual":false,"visibility":"internal"},{"body":{"id":23379,"nodeType":"Block","src":"9366:510:73","statements":[{"assignments":[23333],"declarations":[{"constant":false,"id":23333,"mutability":"mutable","name":"targetConfig","nameLocation":"9393:12:73","nodeType":"VariableDeclaration","scope":23379,"src":"9372:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23332,"nodeType":"UserDefinedTypeName","pathNode":{"id":23331,"name":"TargetConfig","nameLocations":["9372:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"9372:12:73"},"referencedDeclaration":23009,"src":"9372:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":23337,"initialValue":{"arguments":[{"id":23335,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23329,"src":"9425:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23334,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"9408:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":23336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9408:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"9372:60:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23349,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":23343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23339,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23333,"src":"9453:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23340,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9466:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"9453:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23341,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"9476:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9489:6:73","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22996,"src":"9476:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"9453:42:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":23348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23344,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23333,"src":"9499:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9512:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"9499:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23346,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"9522:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9535:10:73","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":22997,"src":"9522:23:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"9499:46:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9453:92:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":23351,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23329,"src":"9569:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23352,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23333,"src":"9577:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23353,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9590:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"9577:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}],"id":23350,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23154,"src":"9553:15:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$22999_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":23354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9553:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23338,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"9438:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9438:165:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23356,"nodeType":"ExpressionStatement","src":"9438:165:73"},{"assignments":[23358],"declarations":[{"constant":false,"id":23358,"mutability":"mutable","name":"balanceBefore","nameLocation":"9682:13:73","nodeType":"VariableDeclaration","scope":23379,"src":"9674:21:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23357,"name":"uint256","nodeType":"ElementaryTypeName","src":"9674:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":23361,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23359,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"9698:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":23360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9698:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9674:34:73"},{"id":23362,"nodeType":"PlaceholderStatement","src":"9714:1:73"},{"assignments":[23364],"declarations":[{"constant":false,"id":23364,"mutability":"mutable","name":"balanceAfter","nameLocation":"9729:12:73","nodeType":"VariableDeclaration","scope":23379,"src":"9721:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23363,"name":"uint256","nodeType":"ElementaryTypeName","src":"9721:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":23367,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23365,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"9744:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":23366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9744:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9721:33:73"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23368,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23364,"src":"9765:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":23369,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23358,"src":"9780:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9765:28:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23378,"nodeType":"IfStatement","src":"9761:111:73","trueBody":{"id":23377,"nodeType":"Block","src":"9795:77:73","statements":[{"errorCall":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23372,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23358,"src":"9836:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":23373,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23364,"src":"9852:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9836:28:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23371,"name":"BalanceDecreasedOnResolve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23178,"src":"9810:25:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":23375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9810:55:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23376,"nodeType":"RevertStatement","src":"9803:62:73"}]}}]},"id":23380,"name":"forwardResolvePolicyWrapper","nameLocation":"9322:27:73","nodeType":"ModifierDefinition","parameters":{"id":23330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23329,"mutability":"mutable","name":"target","nameLocation":"9358:6:73","nodeType":"VariableDeclaration","scope":23380,"src":"9350:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23328,"name":"address","nodeType":"ElementaryTypeName","src":"9350:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9349:16:73"},"src":"9313:563:73","virtual":false,"visibility":"internal"},{"body":{"id":23399,"nodeType":"Block","src":"10040:64:73","statements":[{"expression":{"id":23394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23392,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"10046:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23393,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23386,"src":"10060:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"src":"10046:25:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"id":23395,"nodeType":"ExpressionStatement","src":"10046:25:73"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23396,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5130,"src":"10077:20:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10077:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23398,"nodeType":"ExpressionStatement","src":"10077:22:73"}]},"documentation":{"id":23381,"nodeType":"StructuredDocumentation","src":"9880:48:73","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":23400,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":23389,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23383,"src":"10021:17:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":23390,"kind":"baseConstructorSpecifier","modifierName":{"id":23388,"name":"ERC2771ContextUpgradeable","nameLocations":["9995:25:73"],"nodeType":"IdentifierPath","referencedDeclaration":4908,"src":"9995:25:73"},"nodeType":"ModifierInvocation","src":"9995:44:73"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":23387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23383,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"9951:17:73","nodeType":"VariableDeclaration","scope":23400,"src":"9943:25:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23382,"name":"address","nodeType":"ElementaryTypeName","src":"9943:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23386,"mutability":"mutable","name":"policyPool_","nameLocation":"9982:11:73","nodeType":"VariableDeclaration","scope":23400,"src":"9970:23:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"},"typeName":{"id":23385,"nodeType":"UserDefinedTypeName","pathNode":{"id":23384,"name":"IPolicyPool","nameLocations":["9970:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":25555,"src":"9970:11:73"},"referencedDeclaration":25555,"src":"9970:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"9942:52:73"},"returnParameters":{"id":23391,"nodeType":"ParameterList","parameters":[],"src":"10040:0:73"},"scope":25465,"src":"9931:173:73","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":23419,"nodeType":"Block","src":"10529:61:73","statements":[{"expression":{"arguments":[{"id":23414,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23403,"src":"10557:5:73","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":23415,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23405,"src":"10564:7:73","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":23416,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23408,"src":"10573:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23413,"name":"__CashFlowLender_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23460,"src":"10535:21:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (string memory,string memory,contract IERC4626)"}},"id":23417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10535:50:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23418,"nodeType":"ExpressionStatement","src":"10535:50:73"}]},"documentation":{"id":23401,"nodeType":"StructuredDocumentation","src":"10108:305:73","text":" @dev Initializes the CashFlowLender\n @param name_ Name of the accounting token (ERC20) for the LPs\n @param symbol_ Symbol of the accounting token (ERC20) for the LPs\n @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs."},"functionSelector":"077f224a","id":23420,"implemented":true,"kind":"function","modifiers":[{"id":23411,"kind":"modifierInvocation","modifierName":{"id":23410,"name":"initializer","nameLocations":["10517:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":5016,"src":"10517:11:73"},"nodeType":"ModifierInvocation","src":"10517:11:73"}],"name":"initialize","nameLocation":"10425:10:73","nodeType":"FunctionDefinition","parameters":{"id":23409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23403,"mutability":"mutable","name":"name_","nameLocation":"10450:5:73","nodeType":"VariableDeclaration","scope":23420,"src":"10436:19:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23402,"name":"string","nodeType":"ElementaryTypeName","src":"10436:6:73","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23405,"mutability":"mutable","name":"symbol_","nameLocation":"10471:7:73","nodeType":"VariableDeclaration","scope":23420,"src":"10457:21:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23404,"name":"string","nodeType":"ElementaryTypeName","src":"10457:6:73","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23408,"mutability":"mutable","name":"yieldVault_","nameLocation":"10489:11:73","nodeType":"VariableDeclaration","scope":23420,"src":"10480:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23407,"nodeType":"UserDefinedTypeName","pathNode":{"id":23406,"name":"IERC4626","nameLocations":["10480:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"10480:8:73"},"referencedDeclaration":9796,"src":"10480:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"10435:66:73"},"returnParameters":{"id":23412,"nodeType":"ParameterList","parameters":[],"src":"10529:0:73"},"scope":25465,"src":"10416:174:73","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":23459,"nodeType":"Block","src":"10784:209:73","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23432,"name":"__UUPSUpgradeable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5216,"src":"10790:22:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10790:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23434,"nodeType":"ExpressionStatement","src":"10790:24:73"},{"assignments":[23436],"declarations":[{"constant":false,"id":23436,"mutability":"mutable","name":"asset_","nameLocation":"10828:6:73","nodeType":"VariableDeclaration","scope":23459,"src":"10820:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23435,"name":"address","nodeType":"ElementaryTypeName","src":"10820:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23443,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23439,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"10845:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"id":23440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10857:8:73","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":25554,"src":"10845:20:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$11776_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":23441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10845:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}],"id":23438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10837:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23437,"name":"address","nodeType":"ElementaryTypeName","src":"10837:7:73","typeDescriptions":{}}},"id":23442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10837:31:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"10820:48:73"},{"expression":{"arguments":[{"arguments":[{"id":23446,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23436,"src":"10896:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23445,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"10889:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$11065_$","typeString":"type(contract IERC20)"}},"id":23447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10889:14:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}],"id":23444,"name":"__ERC4626_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6055,"src":"10874:14:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$returns$__$","typeString":"function (contract IERC20)"}},"id":23448,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10874:30:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23449,"nodeType":"ExpressionStatement","src":"10874:30:73"},{"expression":{"arguments":[{"id":23451,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23422,"src":"10923:5:73","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":23452,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23424,"src":"10930:7:73","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":23450,"name":"__ERC20_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5412,"src":"10910:12:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":23453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10910:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23454,"nodeType":"ExpressionStatement","src":"10910:28:73"},{"expression":{"arguments":[{"id":23456,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23427,"src":"10976:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23455,"name":"__CashFlowLender_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23489,"src":"10944:31:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (contract IERC4626)"}},"id":23457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10944:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23458,"nodeType":"ExpressionStatement","src":"10944:44:73"}]},"id":23460,"implemented":true,"kind":"function","modifiers":[{"id":23430,"kind":"modifierInvocation","modifierName":{"id":23429,"name":"onlyInitializing","nameLocations":["10767:16:73"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"10767:16:73"},"nodeType":"ModifierInvocation","src":"10767:16:73"}],"name":"__CashFlowLender_init","nameLocation":"10654:21:73","nodeType":"FunctionDefinition","parameters":{"id":23428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23422,"mutability":"mutable","name":"name_","nameLocation":"10695:5:73","nodeType":"VariableDeclaration","scope":23460,"src":"10681:19:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23421,"name":"string","nodeType":"ElementaryTypeName","src":"10681:6:73","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23424,"mutability":"mutable","name":"symbol_","nameLocation":"10720:7:73","nodeType":"VariableDeclaration","scope":23460,"src":"10706:21:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23423,"name":"string","nodeType":"ElementaryTypeName","src":"10706:6:73","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23427,"mutability":"mutable","name":"yieldVault_","nameLocation":"10742:11:73","nodeType":"VariableDeclaration","scope":23460,"src":"10733:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23426,"nodeType":"UserDefinedTypeName","pathNode":{"id":23425,"name":"IERC4626","nameLocations":["10733:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"10733:8:73"},"referencedDeclaration":9796,"src":"10733:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"10675:82:73"},"returnParameters":{"id":23431,"nodeType":"ParameterList","parameters":[],"src":"10784:0:73"},"scope":25465,"src":"10645:348:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23488,"nodeType":"Block","src":"11137:178:73","statements":[{"expression":{"arguments":[{"arguments":[{"id":23475,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"11245:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}],"id":23474,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11237:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23473,"name":"address","nodeType":"ElementaryTypeName","src":"11237:7:73","typeDescriptions":{}}},"id":23476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11237:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":23479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11264:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":23478,"name":"uint256","nodeType":"ElementaryTypeName","src":"11264:7:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":23477,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11259:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11259:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":23481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11273:3:73","memberName":"max","nodeType":"MemberAccess","src":"11259:17:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23468,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"11206:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"id":23470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11218:8:73","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":25554,"src":"11206:20:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$11776_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":23471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11206:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":23472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11229:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"11206:30:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":23482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11206:71:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23483,"nodeType":"ExpressionStatement","src":"11206:71:73"},{"expression":{"arguments":[{"id":23485,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23463,"src":"11298:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23484,"name":"_setYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23571,"src":"11283:14:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (contract IERC4626)"}},"id":23486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11283:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23487,"nodeType":"ExpressionStatement","src":"11283:27:73"}]},"id":23489,"implemented":true,"kind":"function","modifiers":[{"id":23466,"kind":"modifierInvocation","modifierName":{"id":23465,"name":"onlyInitializing","nameLocations":["11120:16:73"],"nodeType":"IdentifierPath","referencedDeclaration":5071,"src":"11120:16:73"},"nodeType":"ModifierInvocation","src":"11120:16:73"}],"name":"__CashFlowLender_init_unchained","nameLocation":"11057:31:73","nodeType":"FunctionDefinition","parameters":{"id":23464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23463,"mutability":"mutable","name":"yieldVault_","nameLocation":"11098:11:73","nodeType":"VariableDeclaration","scope":23489,"src":"11089:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23462,"nodeType":"UserDefinedTypeName","pathNode":{"id":23461,"name":"IERC4626","nameLocations":["11089:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"11089:8:73"},"referencedDeclaration":9796,"src":"11089:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"11088:22:73"},"returnParameters":{"id":23467,"nodeType":"ParameterList","parameters":[],"src":"11137:0:73"},"scope":25465,"src":"11048:267:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23570,"nodeType":"Block","src":"11374:690:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23498,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23492,"src":"11396:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11388:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23496,"name":"address","nodeType":"ElementaryTypeName","src":"11388:7:73","typeDescriptions":{}}},"id":23499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11388:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11420:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":23501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11412:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23500,"name":"address","nodeType":"ElementaryTypeName","src":"11412:7:73","typeDescriptions":{}}},"id":23503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11412:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11388:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23505,"name":"YieldVaultIsRequired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23180,"src":"11424:20:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11424:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23495,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11380:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11380:67:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23508,"nodeType":"ExpressionStatement","src":"11380:67:73"},{"assignments":[23511],"declarations":[{"constant":false,"id":23511,"mutability":"mutable","name":"$","nameLocation":"11731:1:73","nodeType":"VariableDeclaration","scope":23570,"src":"11701:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23510,"nodeType":"UserDefinedTypeName","pathNode":{"id":23509,"name":"CashFlowLenderStorage","nameLocations":["11701:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"11701:21:73"},"referencedDeclaration":23026,"src":"11701:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":23514,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23512,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"11735:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11735:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11701:61:73"},{"assignments":[23517],"declarations":[{"constant":false,"id":23517,"mutability":"mutable","name":"oldVault","nameLocation":"11777:8:73","nodeType":"VariableDeclaration","scope":23570,"src":"11768:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23516,"nodeType":"UserDefinedTypeName","pathNode":{"id":23515,"name":"IERC4626","nameLocations":["11768:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"11768:8:73"},"referencedDeclaration":9796,"src":"11768:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":23520,"initialValue":{"expression":{"id":23518,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23511,"src":"11788:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23519,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11790:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"11788:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"11768:33:73"},{"expression":{"id":23525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23521,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23511,"src":"11807:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23523,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"11809:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"11807:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23524,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23492,"src":"11823:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"src":"11807:27:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":23526,"nodeType":"ExpressionStatement","src":"11807:27:73"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23529,"name":"oldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23517,"src":"11852:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11844:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23527,"name":"address","nodeType":"ElementaryTypeName","src":"11844:7:73","typeDescriptions":{}}},"id":23530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11844:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":23533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11873:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":23532,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11865:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23531,"name":"address","nodeType":"ElementaryTypeName","src":"11865:7:73","typeDescriptions":{}}},"id":23534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11865:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11844:31:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23548,"nodeType":"IfStatement","src":"11840:90:73","trueBody":{"expression":{"arguments":[{"arguments":[{"id":23543,"name":"oldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23517,"src":"11917:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11909:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23541,"name":"address","nodeType":"ElementaryTypeName","src":"11909:7:73","typeDescriptions":{}}},"id":23544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11909:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":23545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11928:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":23537,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"11892:5:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11892:7:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23536,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"11877:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":23539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11877:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":23540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11901:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"11877:31:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":23546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11877:53:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23547,"nodeType":"ExpressionStatement","src":"11877:53:73"}},{"expression":{"arguments":[{"arguments":[{"id":23556,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23492,"src":"11976:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11968:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23554,"name":"address","nodeType":"ElementaryTypeName","src":"11968:7:73","typeDescriptions":{}}},"id":23557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11968:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":23560,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11995:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":23559,"name":"uint256","nodeType":"ElementaryTypeName","src":"11995:7:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":23558,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11990:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11990:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":23562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12004:3:73","memberName":"max","nodeType":"MemberAccess","src":"11990:17:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":23550,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"11951:5:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11951:7:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23549,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"11936:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":23552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11936:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":23553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11960:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"11936:31:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":23563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11936:72:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23564,"nodeType":"ExpressionStatement","src":"11936:72:73"},{"eventCall":{"arguments":[{"id":23566,"name":"oldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23517,"src":"12037:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},{"id":23567,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23492,"src":"12047:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23565,"name":"YieldVaultChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23056,"src":"12019:17:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IERC4626_$9796_$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (contract IERC4626,contract IERC4626)"}},"id":23568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12019:40:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23569,"nodeType":"EmitStatement","src":"12014:45:73"}]},"id":23571,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"11328:14:73","nodeType":"FunctionDefinition","parameters":{"id":23493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23492,"mutability":"mutable","name":"yieldVault_","nameLocation":"11352:11:73","nodeType":"VariableDeclaration","scope":23571,"src":"11343:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23491,"nodeType":"UserDefinedTypeName","pathNode":{"id":23490,"name":"IERC4626","nameLocations":["11343:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"11343:8:73"},"referencedDeclaration":9796,"src":"11343:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"11342:22:73"},"returnParameters":{"id":23494,"nodeType":"ParameterList","parameters":[],"src":"11374:0:73"},"scope":25465,"src":"11319:745:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23617,"nodeType":"Block","src":"12486:291:73","statements":[{"assignments":[23582],"declarations":[{"constant":false,"id":23582,"mutability":"mutable","name":"$","nameLocation":"12522:1:73","nodeType":"VariableDeclaration","scope":23617,"src":"12492:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23581,"nodeType":"UserDefinedTypeName","pathNode":{"id":23580,"name":"CashFlowLenderStorage","nameLocations":["12492:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"12492:21:73"},"referencedDeclaration":23026,"src":"12492:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":23585,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23583,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"12526:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12526:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"12492:61:73"},{"assignments":[23587],"declarations":[{"constant":false,"id":23587,"mutability":"mutable","name":"yieldAssets","nameLocation":"12567:11:73","nodeType":"VariableDeclaration","scope":23617,"src":"12559:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23586,"name":"uint256","nodeType":"ElementaryTypeName","src":"12559:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":23600,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":23596,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12643:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":23595,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12635:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23594,"name":"address","nodeType":"ElementaryTypeName","src":"12635:7:73","typeDescriptions":{}}},"id":23597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12635:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":23591,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23582,"src":"12611:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23592,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12613:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"12611:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":23593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12625:9:73","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":11022,"src":"12611:23:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":23598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12611:38:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":23588,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23582,"src":"12581:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12583:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"12581:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":23590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12595:15:73","memberName":"convertToAssets","nodeType":"MemberAccess","referencedDeclaration":9687,"src":"12581:29:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":23599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12581:69:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12559:91:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23603,"name":"yieldAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23587,"src":"12674:11:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23602,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24529,"src":"12664:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":23604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12664:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":23605,"name":"yieldAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23587,"src":"12690:11:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12664:37:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":23607,"name":"force","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23577,"src":"12705:5:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12664:46:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23609,"name":"CannotDeinvestYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23200,"src":"12712:24:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12712:26:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23601,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12656:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12656:83:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23612,"nodeType":"ExpressionStatement","src":"12656:83:73"},{"expression":{"arguments":[{"id":23614,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23575,"src":"12760:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":23613,"name":"_setYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23571,"src":"12745:14:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$9796_$returns$__$","typeString":"function (contract IERC4626)"}},"id":23615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12745:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23616,"nodeType":"ExpressionStatement","src":"12745:27:73"}]},"documentation":{"id":23572,"nodeType":"StructuredDocumentation","src":"12068:349:73","text":" @dev Changes the Yield Vault, deinvesting all the funds before doing it.\n @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\n @param force If true, it continues the operation even if some of the funds aren't withdrawable.\n Emits a {YieldVaultChanged} event"},"functionSelector":"194448e5","id":23618,"implemented":true,"kind":"function","modifiers":[],"name":"setYieldVault","nameLocation":"12429:13:73","nodeType":"FunctionDefinition","parameters":{"id":23578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23575,"mutability":"mutable","name":"yieldVault_","nameLocation":"12452:11:73","nodeType":"VariableDeclaration","scope":23618,"src":"12443:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23574,"nodeType":"UserDefinedTypeName","pathNode":{"id":23573,"name":"IERC4626","nameLocations":["12443:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"12443:8:73"},"referencedDeclaration":9796,"src":"12443:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":23577,"mutability":"mutable","name":"force","nameLocation":"12470:5:73","nodeType":"VariableDeclaration","scope":23618,"src":"12465:10:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23576,"name":"bool","nodeType":"ElementaryTypeName","src":"12465:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12442:34:73"},"returnParameters":{"id":23579,"nodeType":"ParameterList","parameters":[],"src":"12486:0:73"},"scope":25465,"src":"12420:357:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23628,"nodeType":"Block","src":"12836:57:73","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23624,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"12849:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12849:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23626,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12877:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"12849:39:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"functionReturnParameters":23623,"id":23627,"nodeType":"Return","src":"12842:46:73"}]},"functionSelector":"a7f8a5e2","id":23629,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"12790:10:73","nodeType":"FunctionDefinition","parameters":{"id":23619,"nodeType":"ParameterList","parameters":[],"src":"12800:2:73"},"returnParameters":{"id":23623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23629,"src":"12826:8:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"},"typeName":{"id":23621,"nodeType":"UserDefinedTypeName","pathNode":{"id":23620,"name":"IERC4626","nameLocations":["12826:8:73"],"nodeType":"IdentifierPath","referencedDeclaration":9796,"src":"12826:8:73"},"referencedDeclaration":9796,"src":"12826:8:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"12825:10:73"},"scope":25465,"src":"12781:112:73","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":23637,"nodeType":"Block","src":"12955:29:73","statements":[{"expression":{"id":23635,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"12968:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"functionReturnParameters":23634,"id":23636,"nodeType":"Return","src":"12961:18:73"}]},"functionSelector":"4d15eb03","id":23638,"implemented":true,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"12906:10:73","nodeType":"FunctionDefinition","parameters":{"id":23630,"nodeType":"ParameterList","parameters":[],"src":"12916:2:73"},"returnParameters":{"id":23634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23633,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23638,"src":"12942:11:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"},"typeName":{"id":23632,"nodeType":"UserDefinedTypeName","pathNode":{"id":23631,"name":"IPolicyPool","nameLocations":["12942:11:73"],"nodeType":"IdentifierPath","referencedDeclaration":25555,"src":"12942:11:73"},"referencedDeclaration":25555,"src":"12942:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"12941:13:73"},"scope":25465,"src":"12897:87:73","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":23670,"nodeType":"Block","src":"13088:194:73","statements":[{"assignments":[23648],"declarations":[{"constant":false,"id":23648,"mutability":"mutable","name":"$","nameLocation":"13124:1:73","nodeType":"VariableDeclaration","scope":23670,"src":"13094:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23647,"nodeType":"UserDefinedTypeName","pathNode":{"id":23646,"name":"CashFlowLenderStorage","nameLocations":["13094:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"13094:21:73"},"referencedDeclaration":23026,"src":"13094:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":23651,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23649,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"13128:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13128:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"13094:61:73"},{"expression":{"id":23657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23652,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23644,"src":"13161:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":23653,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23648,"src":"13176:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23654,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13178:8:73","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":23020,"src":"13176:10:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$23009_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":23656,"indexExpression":{"id":23655,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23640,"src":"13187:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13176:18:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"src":"13161:33:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23658,"nodeType":"ExpressionStatement","src":"13161:33:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":23664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23660,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23644,"src":"13208:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23661,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13221:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"13208:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23662,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"13231:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13244:8:73","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22995,"src":"13231:21:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"13208:44:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":23666,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23640,"src":"13269:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23665,"name":"TargetNotFound","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23186,"src":"13254:14:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13254:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23659,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13200:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13200:77:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23669,"nodeType":"ExpressionStatement","src":"13200:77:73"}]},"id":23671,"implemented":true,"kind":"function","modifiers":[],"name":"_getTargetConfig","nameLocation":"12997:16:73","nodeType":"FunctionDefinition","parameters":{"id":23641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23640,"mutability":"mutable","name":"target","nameLocation":"13022:6:73","nodeType":"VariableDeclaration","scope":23671,"src":"13014:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23639,"name":"address","nodeType":"ElementaryTypeName","src":"13014:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13013:16:73"},"returnParameters":{"id":23645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23644,"mutability":"mutable","name":"targetConfig","nameLocation":"13074:12:73","nodeType":"VariableDeclaration","scope":23671,"src":"13053:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23643,"nodeType":"UserDefinedTypeName","pathNode":{"id":23642,"name":"TargetConfig","nameLocations":["13053:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"13053:12:73"},"referencedDeclaration":23009,"src":"13053:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"13052:35:73"},"scope":25465,"src":"12988:294:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23738,"nodeType":"Block","src":"14039:497:73","statements":[{"assignments":[23685],"declarations":[{"constant":false,"id":23685,"mutability":"mutable","name":"$","nameLocation":"14075:1:73","nodeType":"VariableDeclaration","scope":23738,"src":"14045:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23684,"nodeType":"UserDefinedTypeName","pathNode":{"id":23683,"name":"CashFlowLenderStorage","nameLocations":["14045:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"14045:21:73"},"referencedDeclaration":23026,"src":"14045:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":23688,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23686,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"14079:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14079:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"14045:61:73"},{"assignments":[23691],"declarations":[{"constant":false,"id":23691,"mutability":"mutable","name":"targetConfig","nameLocation":"14133:12:73","nodeType":"VariableDeclaration","scope":23738,"src":"14112:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23690,"nodeType":"UserDefinedTypeName","pathNode":{"id":23689,"name":"TargetConfig","nameLocations":["14112:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"14112:12:73"},"referencedDeclaration":23009,"src":"14112:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":23696,"initialValue":{"baseExpression":{"expression":{"id":23692,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23685,"src":"14148:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14150:8:73","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":23020,"src":"14148:10:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$23009_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":23695,"indexExpression":{"id":23694,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23674,"src":"14159:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14148:18:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"nodeType":"VariableDeclarationStatement","src":"14112:54:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":23702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23698,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23691,"src":"14180:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23699,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14193:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"14180:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":23700,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"14203:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14216:8:73","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22995,"src":"14203:21:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"14180:44:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23703,"name":"TargetAlreadyExists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23158,"src":"14226:19:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14226:21:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23697,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14172:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14172:76:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23706,"nodeType":"ExpressionStatement","src":"14172:76:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":23710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23708,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23676,"src":"14262:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":23709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14274:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14262:13:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23711,"name":"InvalidSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23160,"src":"14277:15:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14277:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23707,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14254:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14254:41:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23714,"nodeType":"ExpressionStatement","src":"14254:41:73"},{"expression":{"id":23731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":23715,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23685,"src":"14301:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14303:8:73","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":23020,"src":"14301:10:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$23009_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":23719,"indexExpression":{"id":23717,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23674,"src":"14312:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14301:18:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":23721,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"14351:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23722,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14364:6:73","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22996,"src":"14351:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},{"id":23723,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23676,"src":"14388:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23724,"name":"debtLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23678,"src":"14415:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14425:8:73","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":20401,"src":"14415:18:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":23726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14415:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23727,"name":"minLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23680,"src":"14457:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14470:8:73","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":20401,"src":"14457:21:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":23729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14457:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":23720,"name":"TargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23009,"src":"14322:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"type(struct CashFlowLender.TargetConfig storage pointer)"}},"id":23730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14343:6:73","14378:8:73","14404:9:73","14443:12:73"],"names":["status","slotSize","debtLimit","minLiquidity"],"nodeType":"FunctionCall","src":"14322:165:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}},"src":"14301:186:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"id":23732,"nodeType":"ExpressionStatement","src":"14301:186:73"},{"eventCall":{"arguments":[{"id":23734,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23674,"src":"14510:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23735,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23691,"src":"14518:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}],"id":23733,"name":"TargetAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23105,"src":"14498:11:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_struct$_TargetConfig_$23009_memory_ptr_$returns$__$","typeString":"function (address,struct CashFlowLender.TargetConfig memory)"}},"id":23736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14498:33:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23737,"nodeType":"EmitStatement","src":"14493:38:73"}]},"documentation":{"id":23672,"nodeType":"StructuredDocumentation","src":"13286:648:73","text":" @dev Adds a new target that can be used later to forward policies and track the debt.\n @param target Address of the target contract. It should be an Ensuro's RiskModule\n @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n @param debtLimit Limit of the debt in a given period for the target.\n @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n Emits a {TargetAdded} event"},"functionSelector":"bfdb20da","id":23739,"implemented":true,"kind":"function","modifiers":[],"name":"addTarget","nameLocation":"13946:9:73","nodeType":"FunctionDefinition","parameters":{"id":23681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23674,"mutability":"mutable","name":"target","nameLocation":"13964:6:73","nodeType":"VariableDeclaration","scope":23739,"src":"13956:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23673,"name":"address","nodeType":"ElementaryTypeName","src":"13956:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23676,"mutability":"mutable","name":"slotSize","nameLocation":"13979:8:73","nodeType":"VariableDeclaration","scope":23739,"src":"13972:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23675,"name":"uint32","nodeType":"ElementaryTypeName","src":"13972:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":23678,"mutability":"mutable","name":"debtLimit","nameLocation":"13997:9:73","nodeType":"VariableDeclaration","scope":23739,"src":"13989:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23677,"name":"uint256","nodeType":"ElementaryTypeName","src":"13989:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23680,"mutability":"mutable","name":"minLiquidity","nameLocation":"14016:12:73","nodeType":"VariableDeclaration","scope":23739,"src":"14008:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23679,"name":"uint256","nodeType":"ElementaryTypeName","src":"14008:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13955:74:73"},"returnParameters":{"id":23682,"nodeType":"ParameterList","parameters":[],"src":"14039:0:73"},"scope":25465,"src":"13937:599:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23782,"nodeType":"Block","src":"15171:293:73","statements":[{"assignments":[23751],"declarations":[{"constant":false,"id":23751,"mutability":"mutable","name":"targetConfig","nameLocation":"15198:12:73","nodeType":"VariableDeclaration","scope":23782,"src":"15177:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23750,"nodeType":"UserDefinedTypeName","pathNode":{"id":23749,"name":"TargetConfig","nameLocations":["15177:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"15177:12:73"},"referencedDeclaration":23009,"src":"15177:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":23755,"initialValue":{"arguments":[{"id":23753,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23742,"src":"15230:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23752,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"15213:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":23754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15213:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"15177:60:73"},{"eventCall":{"arguments":[{"id":23757,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23742,"src":"15268:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23758,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23751,"src":"15276:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23759,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15289:9:73","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":23006,"src":"15276:22:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":23760,"name":"debtLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23744,"src":"15300:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":23761,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23751,"src":"15311:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23762,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15324:12:73","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":23008,"src":"15311:25:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":23763,"name":"minLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23746,"src":"15338:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23756,"name":"TargetLimitsChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23117,"src":"15248:19:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,uint256)"}},"id":23764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15248:103:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23765,"nodeType":"EmitStatement","src":"15243:108:73"},{"expression":{"id":23772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23766,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23751,"src":"15357:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23768,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15370:9:73","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":23006,"src":"15357:22:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23769,"name":"debtLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23744,"src":"15382:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15392:8:73","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":20401,"src":"15382:18:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":23771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"15357:45:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":23773,"nodeType":"ExpressionStatement","src":"15357:45:73"},{"expression":{"id":23780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23774,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23751,"src":"15408:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23776,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15421:12:73","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":23008,"src":"15408:25:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23777,"name":"minLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23746,"src":"15436:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15449:8:73","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":20401,"src":"15436:21:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":23779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15436:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"15408:51:73","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":23781,"nodeType":"ExpressionStatement","src":"15408:51:73"}]},"documentation":{"id":23740,"nodeType":"StructuredDocumentation","src":"14540:537:73","text":" @dev Changes debtLimit and minLiquidity for a given target.\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param debtLimit New limit of the debt in a given period for the target.\n @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n Emits a {TargetLimitsChanged} event"},"functionSelector":"bdb5371d","id":23783,"implemented":true,"kind":"function","modifiers":[],"name":"setTargetLimits","nameLocation":"15089:15:73","nodeType":"FunctionDefinition","parameters":{"id":23747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23742,"mutability":"mutable","name":"target","nameLocation":"15113:6:73","nodeType":"VariableDeclaration","scope":23783,"src":"15105:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23741,"name":"address","nodeType":"ElementaryTypeName","src":"15105:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23744,"mutability":"mutable","name":"debtLimit","nameLocation":"15129:9:73","nodeType":"VariableDeclaration","scope":23783,"src":"15121:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23743,"name":"uint256","nodeType":"ElementaryTypeName","src":"15121:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":23746,"mutability":"mutable","name":"minLiquidity","nameLocation":"15148:12:73","nodeType":"VariableDeclaration","scope":23783,"src":"15140:20:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23745,"name":"uint256","nodeType":"ElementaryTypeName","src":"15140:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15104:57:73"},"returnParameters":{"id":23748,"nodeType":"ParameterList","parameters":[],"src":"15171:0:73"},"scope":25465,"src":"15080:384:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23821,"nodeType":"Block","src":"15823:347:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":23796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23793,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23789,"src":"15931:9:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23794,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"15944:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":23795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15957:8:73","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":22995,"src":"15944:21:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"15931:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23797,"name":"CannotDeactivateTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23156,"src":"15967:22:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15967:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23792,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"15923:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15923:69:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23800,"nodeType":"ExpressionStatement","src":"15923:69:73"},{"assignments":[23803],"declarations":[{"constant":false,"id":23803,"mutability":"mutable","name":"targetConfig","nameLocation":"16019:12:73","nodeType":"VariableDeclaration","scope":23821,"src":"15998:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23802,"nodeType":"UserDefinedTypeName","pathNode":{"id":23801,"name":"TargetConfig","nameLocations":["15998:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"15998:12:73"},"referencedDeclaration":23009,"src":"15998:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":23807,"initialValue":{"arguments":[{"id":23805,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23786,"src":"16051:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23804,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"16034:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":23806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16034:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"15998:60:73"},{"eventCall":{"arguments":[{"id":23809,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23786,"src":"16089:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23810,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23803,"src":"16097:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16110:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"16097:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},{"id":23812,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23789,"src":"16118:9:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}],"id":23808,"name":"TargetStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23127,"src":"16069:19:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_enum$_TargetStatus_$22999_$_t_enum$_TargetStatus_$22999_$returns$__$","typeString":"function (address,enum CashFlowLender.TargetStatus,enum CashFlowLender.TargetStatus)"}},"id":23813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16069:59:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23814,"nodeType":"EmitStatement","src":"16064:64:73"},{"expression":{"id":23819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23815,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23803,"src":"16134:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23817,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16147:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"16134:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23818,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23789,"src":"16156:9:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"16134:31:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"id":23820,"nodeType":"ExpressionStatement","src":"16134:31:73"}]},"documentation":{"id":23784,"nodeType":"StructuredDocumentation","src":"15468:278:73","text":" @dev Changes status of a given target. See {TargetStatus}.\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param newStatus The new status of the contract\n Emits a {TargetStatusChanged} event"},"functionSelector":"f7a39333","id":23822,"implemented":true,"kind":"function","modifiers":[],"name":"setTargetStatus","nameLocation":"15758:15:73","nodeType":"FunctionDefinition","parameters":{"id":23790,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23786,"mutability":"mutable","name":"target","nameLocation":"15782:6:73","nodeType":"VariableDeclaration","scope":23822,"src":"15774:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23785,"name":"address","nodeType":"ElementaryTypeName","src":"15774:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23789,"mutability":"mutable","name":"newStatus","nameLocation":"15803:9:73","nodeType":"VariableDeclaration","scope":23822,"src":"15790:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":23788,"nodeType":"UserDefinedTypeName","pathNode":{"id":23787,"name":"TargetStatus","nameLocations":["15790:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":22999,"src":"15790:12:73"},"referencedDeclaration":22999,"src":"15790:12:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"15773:40:73"},"returnParameters":{"id":23791,"nodeType":"ParameterList","parameters":[],"src":"15823:0:73"},"scope":25465,"src":"15749:421:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":23842,"nodeType":"Block","src":"16252:110:73","statements":[{"assignments":[23832],"declarations":[{"constant":false,"id":23832,"mutability":"mutable","name":"$","nameLocation":"16288:1:73","nodeType":"VariableDeclaration","scope":23842,"src":"16258:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23831,"nodeType":"UserDefinedTypeName","pathNode":{"id":23830,"name":"CashFlowLenderStorage","nameLocations":["16258:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"16258:21:73"},"referencedDeclaration":23026,"src":"16258:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":23835,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23833,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"16292:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16292:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"16258:61:73"},{"expression":{"expression":{"baseExpression":{"expression":{"id":23836,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23832,"src":"16332:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23837,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16334:8:73","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":23020,"src":"16332:10:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$23009_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":23839,"indexExpression":{"id":23838,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23824,"src":"16343:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16332:18:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"id":23840,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16351:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"16332:25:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"functionReturnParameters":23829,"id":23841,"nodeType":"Return","src":"16325:32:73"}]},"functionSelector":"091ea8a6","id":23843,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetStatus","nameLocation":"16183:15:73","nodeType":"FunctionDefinition","parameters":{"id":23825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23824,"mutability":"mutable","name":"target","nameLocation":"16207:6:73","nodeType":"VariableDeclaration","scope":23843,"src":"16199:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23823,"name":"address","nodeType":"ElementaryTypeName","src":"16199:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16198:16:73"},"returnParameters":{"id":23829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23828,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23843,"src":"16238:12:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":23827,"nodeType":"UserDefinedTypeName","pathNode":{"id":23826,"name":"TargetStatus","nameLocations":["16238:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":22999,"src":"16238:12:73"},"referencedDeclaration":22999,"src":"16238:12:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"16237:14:73"},"scope":25465,"src":"16174:188:73","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":23879,"nodeType":"Block","src":"16770:238:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":23854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23852,"name":"newSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"16784:11:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":23853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16799:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16784:16:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23855,"name":"InvalidSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23160,"src":"16802:15:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16802:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23851,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"16776:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16776:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23858,"nodeType":"ExpressionStatement","src":"16776:44:73"},{"assignments":[23861],"declarations":[{"constant":false,"id":23861,"mutability":"mutable","name":"targetConfig","nameLocation":"16847:12:73","nodeType":"VariableDeclaration","scope":23879,"src":"16826:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":23860,"nodeType":"UserDefinedTypeName","pathNode":{"id":23859,"name":"TargetConfig","nameLocations":["16826:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"16826:12:73"},"referencedDeclaration":23009,"src":"16826:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":23865,"initialValue":{"arguments":[{"id":23863,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23846,"src":"16879:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23862,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"16862:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":23864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16862:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"16826:60:73"},{"eventCall":{"arguments":[{"id":23867,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23846,"src":"16919:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":23868,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23861,"src":"16927:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23869,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16940:8:73","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":23001,"src":"16927:21:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":23870,"name":"newSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"16950:11:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":23866,"name":"TargetSlotSizeChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23135,"src":"16897:21:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$returns$__$","typeString":"function (address,uint32,uint32)"}},"id":23871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16897:65:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23872,"nodeType":"EmitStatement","src":"16892:70:73"},{"expression":{"id":23877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23873,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23861,"src":"16968:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":23875,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16981:8:73","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":23001,"src":"16968:21:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23876,"name":"newSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"16992:11:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"16968:35:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":23878,"nodeType":"ExpressionStatement","src":"16968:35:73"}]},"documentation":{"id":23844,"nodeType":"StructuredDocumentation","src":"16366:329:73","text":" @dev Changes the slotSize of a given target.\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param newSlotSize New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n Emits a {TargetStatusChanged} event"},"functionSelector":"08742d90","id":23880,"implemented":true,"kind":"function","modifiers":[],"name":"setTargetSlotSize","nameLocation":"16707:17:73","nodeType":"FunctionDefinition","parameters":{"id":23849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23846,"mutability":"mutable","name":"target","nameLocation":"16733:6:73","nodeType":"VariableDeclaration","scope":23880,"src":"16725:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23845,"name":"address","nodeType":"ElementaryTypeName","src":"16725:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23848,"mutability":"mutable","name":"newSlotSize","nameLocation":"16748:11:73","nodeType":"VariableDeclaration","scope":23880,"src":"16741:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":23847,"name":"uint32","nodeType":"ElementaryTypeName","src":"16741:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"16724:36:73"},"returnParameters":{"id":23850,"nodeType":"ParameterList","parameters":[],"src":"16770:0:73"},"scope":25465,"src":"16698:310:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[18195],"body":{"id":23936,"nodeType":"Block","src":"17128:389:73","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23889,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17147:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23891,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12320,"src":"17167:15:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$12320_$","typeString":"type(contract IERC721Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$12320_$","typeString":"type(contract IERC721Receiver)"}],"id":23890,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17162:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23892,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17162:21:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721Receiver_$12320","typeString":"type(contract IERC721Receiver)"}},"id":23893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17184:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"17162:33:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"17147:48:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23895,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17205:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23897,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4321,"src":"17225:13:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$4321_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$4321_$","typeString":"type(contract IPolicyHolder)"}],"id":23896,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17220:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17220:19:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$4321","typeString":"type(contract IPolicyHolder)"}},"id":23899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17240:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"17220:31:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"17205:46:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17147:104:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23902,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17261:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23904,"name":"IPolicyHolderV2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4343,"src":"17281:15:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolderV2_$4343_$","typeString":"type(contract IPolicyHolderV2)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolderV2_$4343_$","typeString":"type(contract IPolicyHolderV2)"}],"id":23903,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17276:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17276:21:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolderV2_$4343","typeString":"type(contract IPolicyHolderV2)"}},"id":23906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17298:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"17276:33:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"17261:48:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17147:162:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23909,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17319:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23911,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"17339:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$11065_$","typeString":"type(contract IERC20)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20_$11065_$","typeString":"type(contract IERC20)"}],"id":23910,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17334:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17334:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20_$11065","typeString":"type(contract IERC20)"}},"id":23913,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17347:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"17334:24:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"17319:39:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17147:211:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23916,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17368:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23918,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"17388:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}],"id":23917,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17383:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17383:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20Metadata_$11776","typeString":"type(contract IERC20Metadata)"}},"id":23920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17404:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"17383:32:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"17368:47:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17147:268:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":23928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23923,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17425:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":23925,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"17445:8:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC4626_$9796_$","typeString":"type(contract IERC4626)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC4626_$9796_$","typeString":"type(contract IERC4626)"}],"id":23924,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17440:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17440:14:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC4626_$9796","typeString":"type(contract IERC4626)"}},"id":23927,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17455:11:73","memberName":"interfaceId","nodeType":"MemberAccess","src":"17440:26:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"17425:41:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17147:319:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":23932,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23883,"src":"17500:11:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":23930,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"17476:5:73","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$25465_$","typeString":"type(contract super CashFlowLender)"}},"id":23931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17482:17:73","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":18195,"src":"17476:23:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":23933,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17476:36:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17147:365:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":23888,"id":23935,"nodeType":"Return","src":"17134:378:73"}]},"documentation":{"id":23881,"nodeType":"StructuredDocumentation","src":"17012:22:73","text":"@inheritdoc ERC165"},"functionSelector":"01ffc9a7","id":23937,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"17046:17:73","nodeType":"FunctionDefinition","overrides":{"id":23885,"nodeType":"OverrideSpecifier","overrides":[],"src":"17104:8:73"},"parameters":{"id":23884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23883,"mutability":"mutable","name":"interfaceId","nameLocation":"17071:11:73","nodeType":"VariableDeclaration","scope":23937,"src":"17064:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":23882,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17064:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"17063:20:73"},"returnParameters":{"id":23888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23887,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23937,"src":"17122:4:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23886,"name":"bool","nodeType":"ElementaryTypeName","src":"17122:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17121:6:73"},"scope":25465,"src":"17037:480:73","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[5298],"body":{"id":23943,"nodeType":"Block","src":"17635:2:73","statements":[]},"id":23944,"implemented":true,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"17577:17:73","nodeType":"FunctionDefinition","overrides":{"id":23941,"nodeType":"OverrideSpecifier","overrides":[],"src":"17626:8:73"},"parameters":{"id":23940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23939,"mutability":"mutable","name":"newImpl","nameLocation":"17603:7:73","nodeType":"VariableDeclaration","scope":23944,"src":"17595:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23938,"name":"address","nodeType":"ElementaryTypeName","src":"17595:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"17594:17:73"},"returnParameters":{"id":23942,"nodeType":"ParameterList","parameters":[],"src":"17635:0:73"},"scope":25465,"src":"17568:69:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":24069,"nodeType":"Block","src":"17904:869:73","statements":[{"assignments":[23949],"declarations":[{"constant":false,"id":23949,"mutability":"mutable","name":"oldAsset","nameLocation":"17918:8:73","nodeType":"VariableDeclaration","scope":24069,"src":"17910:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23948,"name":"address","nodeType":"ElementaryTypeName","src":"17910:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23952,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23950,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"17929:5:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17929:7:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17910:26:73"},{"assignments":[23954],"declarations":[{"constant":false,"id":23954,"mutability":"mutable","name":"newAsset","nameLocation":"17950:8:73","nodeType":"VariableDeclaration","scope":24069,"src":"17942:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23953,"name":"address","nodeType":"ElementaryTypeName","src":"17942:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23961,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23957,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"17969:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}},"id":23958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17981:8:73","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":25554,"src":"17969:20:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$11776_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":23959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17969:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}],"id":23956,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17961:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23955,"name":"address","nodeType":"ElementaryTypeName","src":"17961:7:73","typeDescriptions":{}}},"id":23960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17961:31:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17942:50:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23963,"name":"oldAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23949,"src":"18006:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":23964,"name":"newAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23954,"src":"18018:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18006:20:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23966,"name":"NothingToRefresh","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23202,"src":"18028:16:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18028:18:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23962,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"17998:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17998:49:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23969,"nodeType":"ExpressionStatement","src":"17998:49:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":23971,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"18061:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":23972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18061:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18075:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18061:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23975,"name":"CannotRefreshAssetWithCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23204,"src":"18078:26:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18078:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23970,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"18053:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18053:54:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23978,"nodeType":"ExpressionStatement","src":"18053:54:73"},{"assignments":[23981],"declarations":[{"constant":false,"id":23981,"mutability":"mutable","name":"$","nameLocation":"18143:1:73","nodeType":"VariableDeclaration","scope":24069,"src":"18113:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":23980,"nodeType":"UserDefinedTypeName","pathNode":{"id":23979,"name":"CashFlowLenderStorage","nameLocations":["18113:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"18113:21:73"},"referencedDeclaration":23026,"src":"18113:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":23984,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23982,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"18147:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":23983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18147:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"18113:61:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":23986,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23981,"src":"18188:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":23987,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18190:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"18188:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":23988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18202:5:73","memberName":"asset","nodeType":"MemberAccess","referencedDeclaration":9665,"src":"18188:19:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":23989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18188:21:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":23990,"name":"newAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23954,"src":"18213:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18188:33:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":23992,"name":"MustChangeYieldAssetBeforeRefresh","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23206,"src":"18223:33:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18223:35:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":23985,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"18180:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":23994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18180:79:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23995,"nodeType":"ExpressionStatement","src":"18180:79:73"},{"assignments":[23998],"declarations":[{"constant":false,"id":23998,"mutability":"mutable","name":"$ERC4626","nameLocation":"18288:8:73","nodeType":"VariableDeclaration","scope":24069,"src":"18265:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":23997,"nodeType":"UserDefinedTypeName","pathNode":{"id":23996,"name":"ERC4626Storage","nameLocations":["18265:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":5994,"src":"18265:14:73"},"referencedDeclaration":5994,"src":"18265:14:73","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":24001,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23999,"name":"_getERC4626StorageCFL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23048,"src":"18299:21:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$5994_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":24000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18299:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"18265:57:73"},{"expression":{"id":24008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":24002,"name":"$ERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23998,"src":"18328:8:73","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$5994_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":24004,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18337:6:73","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":5991,"src":"18328:15:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":24006,"name":"newAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23954,"src":"18353:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24005,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11065,"src":"18346:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$11065_$","typeString":"type(contract IERC20)"}},"id":24007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18346:16:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"src":"18328:34:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$11065","typeString":"contract IERC20"}},"id":24009,"nodeType":"ExpressionStatement","src":"18328:34:73"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":24016,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23981,"src":"18484:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24017,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18486:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"18484:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":24015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18476:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24014,"name":"address","nodeType":"ElementaryTypeName","src":"18476:7:73","typeDescriptions":{}}},"id":24018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18476:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":24019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18500:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"arguments":[{"id":24011,"name":"oldAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23949,"src":"18458:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24010,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18443:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":24012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18443:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":24013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18468:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"18443:32:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":24020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18443:59:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24021,"nodeType":"ExpressionStatement","src":"18443:59:73"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":24028,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23981,"src":"18549:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24029,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18551:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"18549:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}],"id":24027,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18541:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24026,"name":"address","nodeType":"ElementaryTypeName","src":"18541:7:73","typeDescriptions":{}}},"id":24030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18541:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":24033,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18570:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24032,"name":"uint256","nodeType":"ElementaryTypeName","src":"18570:7:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":24031,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"18565:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":24034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18565:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":24035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18579:3:73","memberName":"max","nodeType":"MemberAccess","src":"18565:17:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":24023,"name":"newAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23954,"src":"18523:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24022,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18508:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":24024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18508:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":24025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18533:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"18508:32:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":24036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18508:75:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24037,"nodeType":"ExpressionStatement","src":"18508:75:73"},{"expression":{"arguments":[{"arguments":[{"id":24044,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"18630:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}],"id":24043,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18622:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24042,"name":"address","nodeType":"ElementaryTypeName","src":"18622:7:73","typeDescriptions":{}}},"id":24045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18622:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":24046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18644:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"arguments":[{"id":24039,"name":"oldAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23949,"src":"18604:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24038,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18589:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":24040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18589:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":24041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18614:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"18589:32:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":24047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18589:57:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24048,"nodeType":"ExpressionStatement","src":"18589:57:73"},{"expression":{"arguments":[{"arguments":[{"id":24055,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"18693:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}],"id":24054,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18685:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24053,"name":"address","nodeType":"ElementaryTypeName","src":"18685:7:73","typeDescriptions":{}}},"id":24056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18685:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":24059,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18712:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24058,"name":"uint256","nodeType":"ElementaryTypeName","src":"18712:7:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":24057,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"18707:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":24060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18707:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":24061,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18721:3:73","memberName":"max","nodeType":"MemberAccess","src":"18707:17:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":24050,"name":"newAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23954,"src":"18667:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24049,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"18652:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":24051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18652:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":24052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18677:7:73","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":11052,"src":"18652:32:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":24062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18652:73:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24063,"nodeType":"ExpressionStatement","src":"18652:73:73"},{"eventCall":{"arguments":[{"id":24065,"name":"oldAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23949,"src":"18749:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24066,"name":"newAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23954,"src":"18759:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":24064,"name":"AssetChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23141,"src":"18736:12:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":24067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18736:32:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24068,"nodeType":"EmitStatement","src":"18731:37:73"}]},"documentation":{"id":23945,"nodeType":"StructuredDocumentation","src":"17641:227:73","text":" @dev Refreshes the asset of the vault, when the currency() of the PolicyPool changes\n Requires _balance() = 0 and yieldVault.asset() = _policyPool.currency()\n Emits a {TargetStatusChanged} event"},"functionSelector":"c8030873","id":24070,"implemented":true,"kind":"function","modifiers":[],"name":"refreshAsset","nameLocation":"17880:12:73","nodeType":"FunctionDefinition","parameters":{"id":23946,"nodeType":"ParameterList","parameters":[],"src":"17892:2:73"},"returnParameters":{"id":23947,"nodeType":"ParameterList","parameters":[],"src":"17904:0:73"},"scope":25465,"src":"17871:902:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[12319],"body":{"id":24091,"nodeType":"Block","src":"18955:59:73","statements":[{"expression":{"expression":{"expression":{"id":24087,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12320,"src":"18968:15:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$12320_$","typeString":"type(contract IERC721Receiver)"}},"id":24088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18984:16:73","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":12319,"src":"18968:32:73","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"}},"id":24089,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19001:8:73","memberName":"selector","nodeType":"MemberAccess","src":"18968:41:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":24086,"id":24090,"nodeType":"Return","src":"18961:48:73"}]},"documentation":{"id":24071,"nodeType":"StructuredDocumentation","src":"18777:31:73","text":"@inheritdoc IERC721Receiver"},"functionSelector":"150b7a02","id":24092,"implemented":true,"kind":"function","modifiers":[{"id":24083,"kind":"modifierInvocation","modifierName":{"id":24082,"name":"onlyPolicyPool","nameLocations":["18923:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":23224,"src":"18923:14:73"},"nodeType":"ModifierInvocation","src":"18923:14:73"}],"name":"onERC721Received","nameLocation":"18820:16:73","nodeType":"FunctionDefinition","overrides":{"id":24081,"nodeType":"OverrideSpecifier","overrides":[],"src":"18914:8:73"},"parameters":{"id":24080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24073,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24092,"src":"18842:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24072,"name":"address","nodeType":"ElementaryTypeName","src":"18842:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24092,"src":"18855:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24074,"name":"address","nodeType":"ElementaryTypeName","src":"18855:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24092,"src":"18868:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24076,"name":"uint256","nodeType":"ElementaryTypeName","src":"18868:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24079,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24092,"src":"18881:14:73","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":24078,"name":"bytes","nodeType":"ElementaryTypeName","src":"18881:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18836:63:73"},"returnParameters":{"id":24086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24092,"src":"18947:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24084,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18947:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"18946:8:73"},"scope":25465,"src":"18811:203:73","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[4306],"body":{"id":24111,"nodeType":"Block","src":"19157:56:73","statements":[{"expression":{"expression":{"expression":{"id":24107,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4321,"src":"19170:13:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$4321_$","typeString":"type(contract IPolicyHolder)"}},"id":24108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19184:15:73","memberName":"onPolicyExpired","nodeType":"MemberAccess","referencedDeclaration":4306,"src":"19170:29:73","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyExpired(address,address,uint256) returns (bytes4)"}},"id":24109,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19200:8:73","memberName":"selector","nodeType":"MemberAccess","src":"19170:38:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":24106,"id":24110,"nodeType":"Return","src":"19163:45:73"}]},"documentation":{"id":24093,"nodeType":"StructuredDocumentation","src":"19018:29:73","text":"@inheritdoc IPolicyHolder"},"functionSelector":"e8e617b7","id":24112,"implemented":true,"kind":"function","modifiers":[{"id":24103,"kind":"modifierInvocation","modifierName":{"id":24102,"name":"onlyPolicyPool","nameLocations":["19125:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":23224,"src":"19125:14:73"},"nodeType":"ModifierInvocation","src":"19125:14:73"}],"name":"onPolicyExpired","nameLocation":"19059:15:73","nodeType":"FunctionDefinition","overrides":{"id":24101,"nodeType":"OverrideSpecifier","overrides":[],"src":"19116:8:73"},"parameters":{"id":24100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24095,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24112,"src":"19075:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24094,"name":"address","nodeType":"ElementaryTypeName","src":"19075:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24097,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24112,"src":"19084:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24096,"name":"address","nodeType":"ElementaryTypeName","src":"19084:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24099,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24112,"src":"19093:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24098,"name":"uint256","nodeType":"ElementaryTypeName","src":"19093:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19074:27:73"},"returnParameters":{"id":24106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24112,"src":"19149:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24104,"name":"bytes4","nodeType":"ElementaryTypeName","src":"19149:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"19148:8:73"},"scope":25465,"src":"19050:163:73","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[4320],"body":{"id":24175,"nodeType":"Block","src":"19397:606:73","statements":[{"assignments":[24131],"declarations":[{"constant":false,"id":24131,"mutability":"mutable","name":"targetConfig","nameLocation":"19576:12:73","nodeType":"VariableDeclaration","scope":24175,"src":"19555:33:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":24130,"nodeType":"UserDefinedTypeName","pathNode":{"id":24129,"name":"TargetConfig","nameLocations":["19555:12:73"],"nodeType":"IdentifierPath","referencedDeclaration":23009,"src":"19555:12:73"},"referencedDeclaration":23009,"src":"19555:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":24135,"initialValue":{"arguments":[{"id":24133,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24115,"src":"19608:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24132,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"19591:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":24134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19591:26:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"19555:62:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":24141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24137,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24131,"src":"19638:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":24138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19651:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"19638:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":24139,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"19661:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":24140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19674:6:73","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":22996,"src":"19661:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"19638:42:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"},"id":24146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":24142,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24131,"src":"19684:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":24143,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19697:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"19684:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":24144,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22999,"src":"19707:12:73","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$22999_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":24145,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19720:10:73","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":22997,"src":"19707:23:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}},"src":"19684:46:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19638:92:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":24149,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24115,"src":"19754:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24150,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24131,"src":"19764:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":24151,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19777:6:73","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":23004,"src":"19764:19:73","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$22999","typeString":"enum CashFlowLender.TargetStatus"}],"id":24148,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23154,"src":"19738:15:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$22999_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":24152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19738:46:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24136,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"19623:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19623:167:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24154,"nodeType":"ExpressionStatement","src":"19623:167:73"},{"expression":{"arguments":[{"id":24156,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24115,"src":"19815:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":24157,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24131,"src":"19831:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":24158,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19844:8:73","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":23001,"src":"19831:21:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"expression":{"id":24160,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24131,"src":"19875:12:73","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":24161,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19888:8:73","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":23001,"src":"19875:21:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":24162,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"19898:5:73","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":24163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19904:9:73","memberName":"timestamp","nodeType":"MemberAccess","src":"19898:15:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24159,"name":"_makeSlotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24449,"src":"19860:14:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":24164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19860:54:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":24168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"19922:18:73","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24165,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24121,"src":"19923:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19930:8:73","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":21568,"src":"19923:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":24167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19923:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":24155,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24589,"src":"19796:11:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":24169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19796:150:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":24170,"nodeType":"ExpressionStatement","src":"19796:150:73"},{"expression":{"expression":{"expression":{"id":24171,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4321,"src":"19959:13:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$4321_$","typeString":"type(contract IPolicyHolder)"}},"id":24172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19973:16:73","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":4320,"src":"19959:30:73","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPayoutReceived(address,address,uint256,uint256) returns (bytes4)"}},"id":24173,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19990:8:73","memberName":"selector","nodeType":"MemberAccess","src":"19959:39:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":24128,"id":24174,"nodeType":"Return","src":"19952:46:73"}]},"documentation":{"id":24113,"nodeType":"StructuredDocumentation","src":"19217:29:73","text":"@inheritdoc IPolicyHolder"},"functionSelector":"d6281d3e","id":24176,"implemented":true,"kind":"function","modifiers":[{"id":24125,"kind":"modifierInvocation","modifierName":{"id":24124,"name":"onlyPolicyPool","nameLocations":["19365:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":23224,"src":"19365:14:73"},"nodeType":"ModifierInvocation","src":"19365:14:73"}],"name":"onPayoutReceived","nameLocation":"19258:16:73","nodeType":"FunctionDefinition","overrides":{"id":24123,"nodeType":"OverrideSpecifier","overrides":[],"src":"19356:8:73"},"parameters":{"id":24122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24115,"mutability":"mutable","name":"operator","nameLocation":"19288:8:73","nodeType":"VariableDeclaration","scope":24176,"src":"19280:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24114,"name":"address","nodeType":"ElementaryTypeName","src":"19280:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24117,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24176,"src":"19302:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24116,"name":"address","nodeType":"ElementaryTypeName","src":"19302:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24119,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24176,"src":"19315:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24118,"name":"uint256","nodeType":"ElementaryTypeName","src":"19315:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24121,"mutability":"mutable","name":"amount","nameLocation":"19336:6:73","nodeType":"VariableDeclaration","scope":24176,"src":"19328:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24120,"name":"uint256","nodeType":"ElementaryTypeName","src":"19328:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19274:72:73"},"returnParameters":{"id":24128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24176,"src":"19389:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24126,"name":"bytes4","nodeType":"ElementaryTypeName","src":"19389:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"19388:8:73"},"scope":25465,"src":"19249:754:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[4342],"body":{"id":24197,"nodeType":"Block","src":"20158:59:73","statements":[{"expression":{"expression":{"expression":{"id":24193,"name":"IPolicyHolderV2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4343,"src":"20171:15:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolderV2_$4343_$","typeString":"type(contract IPolicyHolderV2)"}},"id":24194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20187:16:73","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":4342,"src":"20171:32:73","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolderV2.onPolicyReplaced(address,address,uint256,uint256) returns (bytes4)"}},"id":24195,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20204:8:73","memberName":"selector","nodeType":"MemberAccess","src":"20171:41:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":24192,"id":24196,"nodeType":"Return","src":"20164:48:73"}]},"documentation":{"id":24177,"nodeType":"StructuredDocumentation","src":"20007:31:73","text":"@inheritdoc IPolicyHolderV2"},"functionSelector":"5ee0c7dd","id":24198,"implemented":true,"kind":"function","modifiers":[{"id":24189,"kind":"modifierInvocation","modifierName":{"id":24188,"name":"onlyPolicyPool","nameLocations":["20126:14:73"],"nodeType":"IdentifierPath","referencedDeclaration":23224,"src":"20126:14:73"},"nodeType":"ModifierInvocation","src":"20126:14:73"}],"name":"onPolicyReplaced","nameLocation":"20050:16:73","nodeType":"FunctionDefinition","overrides":{"id":24187,"nodeType":"OverrideSpecifier","overrides":[],"src":"20117:8:73"},"parameters":{"id":24186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24179,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24198,"src":"20067:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24178,"name":"address","nodeType":"ElementaryTypeName","src":"20067:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24181,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24198,"src":"20076:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24180,"name":"address","nodeType":"ElementaryTypeName","src":"20076:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24198,"src":"20085:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24182,"name":"uint256","nodeType":"ElementaryTypeName","src":"20085:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24185,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24198,"src":"20094:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24184,"name":"uint256","nodeType":"ElementaryTypeName","src":"20094:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20066:36:73"},"returnParameters":{"id":24192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24191,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24198,"src":"20150:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24190,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20150:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"20149:8:73"},"scope":25465,"src":"20041:176:73","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[4907,6770],"body":{"id":24211,"nodeType":"Block","src":"20446:66:73","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24207,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4908,"src":"20459:25:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771ContextUpgradeable_$4908_$","typeString":"type(contract ERC2771ContextUpgradeable)"}},"id":24208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20485:20:73","memberName":"_contextSuffixLength","nodeType":"MemberAccess","referencedDeclaration":4907,"src":"20459:46:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":24209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20459:48:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24206,"id":24210,"nodeType":"Return","src":"20452:55:73"}]},"documentation":{"id":24199,"nodeType":"StructuredDocumentation","src":"20264:41:73","text":"@inheritdoc ERC2771ContextUpgradeable"},"id":24212,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"20317:20:73","nodeType":"FunctionDefinition","overrides":{"id":24203,"nodeType":"OverrideSpecifier","overrides":[{"id":24201,"name":"ContextUpgradeable","nameLocations":["20375:18:73"],"nodeType":"IdentifierPath","referencedDeclaration":6771,"src":"20375:18:73"},{"id":24202,"name":"ERC2771ContextUpgradeable","nameLocations":["20395:25:73"],"nodeType":"IdentifierPath","referencedDeclaration":4908,"src":"20395:25:73"}],"src":"20366:55:73"},"parameters":{"id":24200,"nodeType":"ParameterList","parameters":[],"src":"20337:2:73"},"returnParameters":{"id":24206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24205,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24212,"src":"20435:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24204,"name":"uint256","nodeType":"ElementaryTypeName","src":"20435:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20434:9:73"},"scope":25465,"src":"20308:204:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[4856,6753],"body":{"id":24225,"nodeType":"Block","src":"20670:56:73","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24221,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4908,"src":"20683:25:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771ContextUpgradeable_$4908_$","typeString":"type(contract ERC2771ContextUpgradeable)"}},"id":24222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20709:10:73","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":4856,"src":"20683:36:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20683:38:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":24220,"id":24224,"nodeType":"Return","src":"20676:45:73"}]},"documentation":{"id":24213,"nodeType":"StructuredDocumentation","src":"20516:41:73","text":"@inheritdoc ERC2771ContextUpgradeable"},"id":24226,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"20569:10:73","nodeType":"FunctionDefinition","overrides":{"id":24217,"nodeType":"OverrideSpecifier","overrides":[{"id":24215,"name":"ContextUpgradeable","nameLocations":["20605:18:73"],"nodeType":"IdentifierPath","referencedDeclaration":6771,"src":"20605:18:73"},{"id":24216,"name":"ERC2771ContextUpgradeable","nameLocations":["20625:25:73"],"nodeType":"IdentifierPath","referencedDeclaration":4908,"src":"20625:25:73"}],"src":"20596:55:73"},"parameters":{"id":24214,"nodeType":"ParameterList","parameters":[],"src":"20579:2:73"},"returnParameters":{"id":24220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24219,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24226,"src":"20661:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24218,"name":"address","nodeType":"ElementaryTypeName","src":"20661:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"20660:9:73"},"scope":25465,"src":"20560:166:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[4897,6762],"body":{"id":24239,"nodeType":"Block","src":"20889:54:73","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24235,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4908,"src":"20902:25:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771ContextUpgradeable_$4908_$","typeString":"type(contract ERC2771ContextUpgradeable)"}},"id":24236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20928:8:73","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":4897,"src":"20902:34:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":24237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20902:36:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":24234,"id":24238,"nodeType":"Return","src":"20895:43:73"}]},"documentation":{"id":24227,"nodeType":"StructuredDocumentation","src":"20730:41:73","text":"@inheritdoc ERC2771ContextUpgradeable"},"id":24240,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"20783:8:73","nodeType":"FunctionDefinition","overrides":{"id":24231,"nodeType":"OverrideSpecifier","overrides":[{"id":24229,"name":"ContextUpgradeable","nameLocations":["20817:18:73"],"nodeType":"IdentifierPath","referencedDeclaration":6771,"src":"20817:18:73"},{"id":24230,"name":"ERC2771ContextUpgradeable","nameLocations":["20837:25:73"],"nodeType":"IdentifierPath","referencedDeclaration":4908,"src":"20837:25:73"}],"src":"20808:55:73"},"parameters":{"id":24228,"nodeType":"ParameterList","parameters":[],"src":"20791:2:73"},"returnParameters":{"id":24234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24233,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24240,"src":"20873:14:73","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":24232,"name":"bytes","nodeType":"ElementaryTypeName","src":"20873:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20872:16:73"},"scope":25465,"src":"20774:169:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":24256,"nodeType":"Block","src":"20999:66:73","statements":[{"expression":{"arguments":[{"arguments":[{"id":24252,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21054:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21046:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24250,"name":"address","nodeType":"ElementaryTypeName","src":"21046:7:73","typeDescriptions":{}}},"id":24253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21046:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24246,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"21027:5:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21027:7:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24245,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"21012:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":24248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21012:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":24249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21036:9:73","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":11022,"src":"21012:33:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":24254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21012:48:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24244,"id":24255,"nodeType":"Return","src":"21005:55:73"}]},"id":24257,"implemented":true,"kind":"function","modifiers":[],"name":"_balance","nameLocation":"20956:8:73","nodeType":"FunctionDefinition","parameters":{"id":24241,"nodeType":"ParameterList","parameters":[],"src":"20964:2:73"},"returnParameters":{"id":24244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24243,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24257,"src":"20990:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24242,"name":"uint256","nodeType":"ElementaryTypeName","src":"20990:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20989:9:73"},"scope":25465,"src":"20947:118:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":24347,"nodeType":"Block","src":"21152:803:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24266,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21272:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3331","id":24267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21284:2:73","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"21272:14:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24271,"nodeType":"IfStatement","src":"21268:28:73","trueBody":{"expression":{"hexValue":"31","id":24269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21295:1:73","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"functionReturnParameters":24265,"id":24270,"nodeType":"Return","src":"21288:8:73"}},{"condition":{"id":24272,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24261,"src":"21306:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":24289,"nodeType":"Block","src":"21382:43:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24283,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21394:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3539","id":24284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21406:2:73","typeDescriptions":{"typeIdentifier":"t_rational_59_by_1","typeString":"int_const 59"},"value":"59"},"src":"21394:14:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24288,"nodeType":"IfStatement","src":"21390:28:73","trueBody":{"expression":{"hexValue":"32","id":24286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21417:1:73","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"functionReturnParameters":24265,"id":24287,"nodeType":"Return","src":"21410:8:73"}}]},"id":24290,"nodeType":"IfStatement","src":"21302:123:73","trueBody":{"id":24282,"nodeType":"Block","src":"21314:62:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24273,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21326:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3630","id":24274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21338:2:73","typeDescriptions":{"typeIdentifier":"t_rational_60_by_1","typeString":"int_const 60"},"value":"60"},"src":"21326:14:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24278,"nodeType":"IfStatement","src":"21322:28:73","trueBody":{"expression":{"hexValue":"32","id":24276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21349:1:73","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"functionReturnParameters":24265,"id":24277,"nodeType":"Return","src":"21342:8:73"}},{"expression":{"id":24280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"21358:11:73","subExpression":{"id":24279,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21358:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24281,"nodeType":"ExpressionStatement","src":"21358:11:73"}]}},{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24291,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21444:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3930","id":24292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21456:2:73","typeDescriptions":{"typeIdentifier":"t_rational_90_by_1","typeString":"int_const 90"},"value":"90"},"src":"21444:14:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24294,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21443:16:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24296,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21483:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313230","id":24297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21495:3:73","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},"src":"21483:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24299,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21482:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24301,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21527:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313531","id":24302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21539:3:73","typeDescriptions":{"typeIdentifier":"t_rational_151_by_1","typeString":"int_const 151"},"value":"151"},"src":"21527:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24304,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21526:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24306,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21575:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313831","id":24307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21587:3:73","typeDescriptions":{"typeIdentifier":"t_rational_181_by_1","typeString":"int_const 181"},"value":"181"},"src":"21575:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24309,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21574:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24311,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21627:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"323132","id":24312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21639:3:73","typeDescriptions":{"typeIdentifier":"t_rational_212_by_1","typeString":"int_const 212"},"value":"212"},"src":"21627:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24314,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21626:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24316,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21683:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"323433","id":24317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21695:3:73","typeDescriptions":{"typeIdentifier":"t_rational_243_by_1","typeString":"int_const 243"},"value":"243"},"src":"21683:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24319,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21682:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24321,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21743:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"323733","id":24322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21755:3:73","typeDescriptions":{"typeIdentifier":"t_rational_273_by_1","typeString":"int_const 273"},"value":"273"},"src":"21743:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24324,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21742:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24326,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21807:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"333034","id":24327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21819:3:73","typeDescriptions":{"typeIdentifier":"t_rational_304_by_1","typeString":"int_const 304"},"value":"304"},"src":"21807:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24329,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21806:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24331,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24259,"src":"21876:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"333334","id":24332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21888:3:73","typeDescriptions":{"typeIdentifier":"t_rational_334_by_1","typeString":"int_const 334"},"value":"334"},"src":"21876:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24334,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21875:17:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3132","id":24336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21948:2:73","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"id":24337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21875:75:73","trueExpression":{"hexValue":"3131","id":24335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21919:2:73","typeDescriptions":{"typeIdentifier":"t_rational_11_by_1","typeString":"int_const 11"},"value":"11"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21806:144:73","trueExpression":{"hexValue":"3130","id":24330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21848:2:73","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21742:208:73","trueExpression":{"hexValue":"39","id":24325,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21782:1:73","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21682:268:73","trueExpression":{"hexValue":"38","id":24320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21720:1:73","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21626:324:73","trueExpression":{"hexValue":"37","id":24315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21662:1:73","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21574:376:73","trueExpression":{"hexValue":"36","id":24310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21608:1:73","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21526:424:73","trueExpression":{"hexValue":"35","id":24305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21558:1:73","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21482:468:73","trueExpression":{"hexValue":"34","id":24300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21512:1:73","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21443:507:73","trueExpression":{"hexValue":"33","id":24295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21470:1:73","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":24265,"id":24346,"nodeType":"Return","src":"21430:520:73"}]},"id":24348,"implemented":true,"kind":"function","modifiers":[],"name":"_getMonth","nameLocation":"21078:9:73","nodeType":"FunctionDefinition","parameters":{"id":24262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24259,"mutability":"mutable","name":"dayInYear","nameLocation":"21096:9:73","nodeType":"VariableDeclaration","scope":24348,"src":"21088:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24258,"name":"uint256","nodeType":"ElementaryTypeName","src":"21088:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24261,"mutability":"mutable","name":"isLeap","nameLocation":"21112:6:73","nodeType":"VariableDeclaration","scope":24348,"src":"21107:11:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24260,"name":"bool","nodeType":"ElementaryTypeName","src":"21107:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"21087:32:73"},"returnParameters":{"id":24265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24264,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24348,"src":"21143:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24263,"name":"uint256","nodeType":"ElementaryTypeName","src":"21143:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21142:9:73"},"scope":25465,"src":"21069:886:73","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":24423,"nodeType":"Block","src":"22050:449:73","statements":[{"assignments":[24356],"declarations":[{"constant":false,"id":24356,"mutability":"mutable","name":"isLeap","nameLocation":"22061:6:73","nodeType":"VariableDeclaration","scope":24423,"src":"22056:11:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24355,"name":"bool","nodeType":"ElementaryTypeName","src":"22056:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":24357,"nodeType":"VariableDeclarationStatement","src":"22056:11:73"},{"expression":{"id":24360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24358,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24353,"src":"22073:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"32303235","id":24359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22085:4:73","typeDescriptions":{"typeIdentifier":"t_rational_2025_by_1","typeString":"int_const 2025"},"value":"2025"},"src":"22073:16:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":24361,"nodeType":"ExpressionStatement","src":"22073:16:73"},{"assignments":[24363],"declarations":[{"constant":false,"id":24363,"mutability":"mutable","name":"daysRemaining","nameLocation":"22103:13:73","nodeType":"VariableDeclaration","scope":24423,"src":"22095:21:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24362,"name":"uint256","nodeType":"ElementaryTypeName","src":"22095:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24370,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24364,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24350,"src":"22120:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":24365,"name":"JAN_1ST_2025","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22984,"src":"22132:12:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22120:24:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":24367,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22119:26:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":24368,"name":"SECONDS_PER_DAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22987,"src":"22148:15:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22119:44:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22095:68:73"},{"body":{"id":24409,"nodeType":"Block","src":"22270:154:73","statements":[{"expression":{"id":24383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24378,"name":"daysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24363,"src":"22278:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"condition":{"id":24379,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24356,"src":"22295:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"333635","id":24381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22310:3:73","typeDescriptions":{"typeIdentifier":"t_rational_365_by_1","typeString":"int_const 365"},"value":"365"},"id":24382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"22295:18:73","trueExpression":{"hexValue":"333636","id":24380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22304:3:73","typeDescriptions":{"typeIdentifier":"t_rational_366_by_1","typeString":"int_const 366"},"value":"366"},"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"22278:35:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24384,"nodeType":"ExpressionStatement","src":"22278:35:73"},{"expression":{"id":24386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"22321:11:73","subExpression":{"id":24385,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24353,"src":"22323:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":24387,"nodeType":"ExpressionStatement","src":"22321:11:73"},{"expression":{"id":24407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24388,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24356,"src":"22340:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24389,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24353,"src":"22349:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"34","id":24390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22361:1:73","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22349:13:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":24392,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22366:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22349:18:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24394,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24353,"src":"22372:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"313030","id":24395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22384:3:73","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"22372:15:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":24397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22391:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22372:20:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24399,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24353,"src":"22396:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"343030","id":24400,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22408:3:73","typeDescriptions":{"typeIdentifier":"t_rational_400_by_1","typeString":"int_const 400"},"value":"400"},"src":"22396:15:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":24402,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22415:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22396:20:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22372:44:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24405,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22371:46:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22349:68:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22340:77:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24408,"nodeType":"ExpressionStatement","src":"22340:77:73"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24371,"name":"daysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24363,"src":"22231:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"condition":{"id":24372,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24356,"src":"22249:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"333635","id":24374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22264:3:73","typeDescriptions":{"typeIdentifier":"t_rational_365_by_1","typeString":"int_const 365"},"value":"365"},"id":24375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"22249:18:73","trueExpression":{"hexValue":"333636","id":24373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22258:3:73","typeDescriptions":{"typeIdentifier":"t_rational_366_by_1","typeString":"int_const 366"},"value":"366"},"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"id":24376,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22248:20:73","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"22231:37:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24410,"nodeType":"WhileStatement","src":"22224:200:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24413,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24353,"src":"22443:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"313030","id":24414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22455:3:73","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"22443:15:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":24417,"name":"daysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24363,"src":"22471:13:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24418,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24356,"src":"22486:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":24416,"name":"_getMonth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24348,"src":"22461:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (uint256,bool) pure returns (uint256)"}},"id":24419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22461:32:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22443:50:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22436:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":24411,"name":"uint32","nodeType":"ElementaryTypeName","src":"22436:6:73","typeDescriptions":{}}},"id":24421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22436:58:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":24354,"id":24422,"nodeType":"Return","src":"22429:65:73"}]},"id":24424,"implemented":true,"kind":"function","modifiers":[],"name":"_computeCalendarMonth","nameLocation":"21968:21:73","nodeType":"FunctionDefinition","parameters":{"id":24351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24350,"mutability":"mutable","name":"timestamp","nameLocation":"21998:9:73","nodeType":"VariableDeclaration","scope":24424,"src":"21990:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24349,"name":"uint256","nodeType":"ElementaryTypeName","src":"21990:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21989:19:73"},"returnParameters":{"id":24354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24353,"mutability":"mutable","name":"slotIndex","nameLocation":"22039:9:73","nodeType":"VariableDeclaration","scope":24424,"src":"22032:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24352,"name":"uint32","nodeType":"ElementaryTypeName","src":"22032:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"22031:18:73"},"scope":25465,"src":"21959:540:73","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":24448,"nodeType":"Block","src":"22604:121:73","statements":[{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":24435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24433,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24426,"src":"22618:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":24434,"name":"SLOTSIZE_CALENDAR_MONTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22981,"src":"22630:23:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"22618:35:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24436,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22617:37:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24442,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24428,"src":"22699:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":24443,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24426,"src":"22711:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"22699:20:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24441,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22692:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":24440,"name":"uint32","nodeType":"ElementaryTypeName","src":"22692:6:73","typeDescriptions":{}}},"id":24445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22692:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":24446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"22617:103:73","trueExpression":{"arguments":[{"id":24438,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24428,"src":"22679:9:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24437,"name":"_computeCalendarMonth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24424,"src":"22657:21:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":24439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22657:32:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":24432,"id":24447,"nodeType":"Return","src":"22610:110:73"}]},"id":24449,"implemented":true,"kind":"function","modifiers":[],"name":"_makeSlotIndex","nameLocation":"22512:14:73","nodeType":"FunctionDefinition","parameters":{"id":24429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24426,"mutability":"mutable","name":"slotSize","nameLocation":"22534:8:73","nodeType":"VariableDeclaration","scope":24449,"src":"22527:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24425,"name":"uint32","nodeType":"ElementaryTypeName","src":"22527:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":24428,"mutability":"mutable","name":"timestamp","nameLocation":"22552:9:73","nodeType":"VariableDeclaration","scope":24449,"src":"22544:17:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24427,"name":"uint256","nodeType":"ElementaryTypeName","src":"22544:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22526:36:73"},"returnParameters":{"id":24432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24431,"mutability":"mutable","name":"slotIndex","nameLocation":"22593:9:73","nodeType":"VariableDeclaration","scope":24449,"src":"22586:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24430,"name":"uint32","nodeType":"ElementaryTypeName","src":"22586:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"22585:18:73"},"scope":25465,"src":"22503:222:73","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":24483,"nodeType":"Block","src":"22845:124:73","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":24467,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24451,"src":"22900:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22892:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":24465,"name":"bytes20","nodeType":"ElementaryTypeName","src":"22892:7:73","typeDescriptions":{}}},"id":24468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22892:15:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"arguments":[{"arguments":[{"id":24473,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24453,"src":"22933:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":24472,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22926:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":24471,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22926:6:73","typeDescriptions":{}}},"id":24474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22926:16:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"arguments":[{"id":24477,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24455,"src":"22951:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":24476,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22944:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":24475,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22944:6:73","typeDescriptions":{}}},"id":24478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22944:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":24469,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16305,"src":"22909:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Packing_$16305_$","typeString":"type(library Packing)"}},"id":24470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22917:8:73","memberName":"pack_4_4","nodeType":"MemberAccess","referencedDeclaration":12834,"src":"22909:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes4_$_t_bytes4_$returns$_t_bytes8_$","typeString":"function (bytes4,bytes4) pure returns (bytes8)"}},"id":24479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22909:53:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_bytes8","typeString":"bytes8"}],"expression":{"id":24463,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16305,"src":"22874:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Packing_$16305_$","typeString":"type(library Packing)"}},"id":24464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22882:9:73","memberName":"pack_20_8","nodeType":"MemberAccess","referencedDeclaration":13263,"src":"22874:17:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_bytes8_$returns$_t_bytes28_$","typeString":"function (bytes20,bytes8) pure returns (bytes28)"}},"id":24480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22874:89:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"}],"expression":{"id":24461,"name":"TargetSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22993,"src":"22858:10:73","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_TargetSlot_$22993_$","typeString":"type(CashFlowLender.TargetSlot)"}},"id":24462,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22869:4:73","memberName":"wrap","nodeType":"MemberAccess","src":"22858:15:73","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_TargetSlot_$22993_$","typeString":"function (bytes32) pure returns (CashFlowLender.TargetSlot)"}},"id":24481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22858:106:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"functionReturnParameters":24460,"id":24482,"nodeType":"Return","src":"22851:113:73"}]},"id":24484,"implemented":true,"kind":"function","modifiers":[],"name":"_makeTargetSlot","nameLocation":"22738:15:73","nodeType":"FunctionDefinition","parameters":{"id":24456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24451,"mutability":"mutable","name":"target","nameLocation":"22762:6:73","nodeType":"VariableDeclaration","scope":24484,"src":"22754:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24450,"name":"address","nodeType":"ElementaryTypeName","src":"22754:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24453,"mutability":"mutable","name":"slotSize","nameLocation":"22777:8:73","nodeType":"VariableDeclaration","scope":24484,"src":"22770:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24452,"name":"uint32","nodeType":"ElementaryTypeName","src":"22770:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":24455,"mutability":"mutable","name":"slotIndex","nameLocation":"22794:9:73","nodeType":"VariableDeclaration","scope":24484,"src":"22787:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24454,"name":"uint32","nodeType":"ElementaryTypeName","src":"22787:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"22753:51:73"},"returnParameters":{"id":24460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24459,"mutability":"mutable","name":"slot","nameLocation":"22839:4:73","nodeType":"VariableDeclaration","scope":24484,"src":"22828:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"},"typeName":{"id":24458,"nodeType":"UserDefinedTypeName","pathNode":{"id":24457,"name":"TargetSlot","nameLocations":["22828:10:73"],"nodeType":"IdentifierPath","referencedDeclaration":22993,"src":"22828:10:73"},"referencedDeclaration":22993,"src":"22828:10:73","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"visibility":"internal"}],"src":"22827:17:73"},"scope":25465,"src":"22729:240:73","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":24528,"nodeType":"Block","src":"23046:219:73","statements":[{"assignments":[24493],"declarations":[{"constant":false,"id":24493,"mutability":"mutable","name":"$","nameLocation":"23082:1:73","nodeType":"VariableDeclaration","scope":24528,"src":"23052:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":24492,"nodeType":"UserDefinedTypeName","pathNode":{"id":24491,"name":"CashFlowLenderStorage","nameLocations":["23052:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"23052:21:73"},"referencedDeclaration":23026,"src":"23052:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":24496,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":24494,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"23086:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":24495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23086:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"23052:61:73"},{"expression":{"id":24510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24497,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24489,"src":"23119:10:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":24500,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24486,"src":"23141:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":24506,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"23183:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23175:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24504,"name":"address","nodeType":"ElementaryTypeName","src":"23175:7:73","typeDescriptions":{}}},"id":24507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23175:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":24501,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24493,"src":"23149:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24502,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23151:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"23149:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":24503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23163:11:73","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":9747,"src":"23149:25:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":24508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23149:40:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":24498,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"23132:4:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":24499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23137:3:73","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":18443,"src":"23132:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":24509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23132:58:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23119:71:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24511,"nodeType":"ExpressionStatement","src":"23119:71:73"},{"expression":{"arguments":[{"id":24517,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24489,"src":"23219:10:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":24520,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"23239:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23231:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24518,"name":"address","nodeType":"ElementaryTypeName","src":"23231:7:73","typeDescriptions":{}}},"id":24521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23231:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24524,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"23254:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23246:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24522,"name":"address","nodeType":"ElementaryTypeName","src":"23246:7:73","typeDescriptions":{}}},"id":24525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23246:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":24512,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24493,"src":"23196:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24515,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23198:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"23196:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":24516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23210:8:73","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":9767,"src":"23196:22:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":24526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23196:64:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24527,"nodeType":"ExpressionStatement","src":"23196:64:73"}]},"id":24529,"implemented":true,"kind":"function","modifiers":[],"name":"_deinvest","nameLocation":"22982:9:73","nodeType":"FunctionDefinition","parameters":{"id":24487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24486,"mutability":"mutable","name":"amount","nameLocation":"23000:6:73","nodeType":"VariableDeclaration","scope":24529,"src":"22992:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24485,"name":"uint256","nodeType":"ElementaryTypeName","src":"22992:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22991:16:73"},"returnParameters":{"id":24490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24489,"mutability":"mutable","name":"deinvested","nameLocation":"23034:10:73","nodeType":"VariableDeclaration","scope":24529,"src":"23026:18:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24488,"name":"uint256","nodeType":"ElementaryTypeName","src":"23026:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23025:20:73"},"scope":25465,"src":"22973:292:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":24588,"nodeType":"Block","src":"23415:322:73","statements":[{"assignments":[24544],"declarations":[{"constant":false,"id":24544,"mutability":"mutable","name":"$","nameLocation":"23451:1:73","nodeType":"VariableDeclaration","scope":24588,"src":"23421:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":24543,"nodeType":"UserDefinedTypeName","pathNode":{"id":24542,"name":"CashFlowLenderStorage","nameLocations":["23421:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"23421:21:73"},"referencedDeclaration":23026,"src":"23421:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":24547,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":24545,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"23455:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":24546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23455:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"23421:61:73"},{"assignments":[24550],"declarations":[{"constant":false,"id":24550,"mutability":"mutable","name":"slot","nameLocation":"23499:4:73","nodeType":"VariableDeclaration","scope":24588,"src":"23488:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"},"typeName":{"id":24549,"nodeType":"UserDefinedTypeName","pathNode":{"id":24548,"name":"TargetSlot","nameLocations":["23488:10:73"],"nodeType":"IdentifierPath","referencedDeclaration":22993,"src":"23488:10:73"},"referencedDeclaration":22993,"src":"23488:10:73","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"visibility":"internal"}],"id":24556,"initialValue":{"arguments":[{"id":24552,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24531,"src":"23522:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24553,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24533,"src":"23530:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":24554,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24535,"src":"23540:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":24551,"name":"_makeTargetSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24484,"src":"23506:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_TargetSlot_$22993_$","typeString":"function (address,uint32,uint32) pure returns (CashFlowLender.TargetSlot)"}},"id":24555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23506:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"nodeType":"VariableDeclarationStatement","src":"23488:62:73"},{"expression":{"id":24564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24557,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24540,"src":"23556:12:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":24563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":24558,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24544,"src":"23571:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24559,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23573:13:73","memberName":"_debtByPeriod","nodeType":"MemberAccess","referencedDeclaration":23025,"src":"23571:15:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$22993_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"}},"id":24561,"indexExpression":{"id":24560,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24550,"src":"23587:4:73","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23571:21:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":24562,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24537,"src":"23596:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23571:31:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23556:46:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":24565,"nodeType":"ExpressionStatement","src":"23556:46:73"},{"expression":{"id":24573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":24566,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24544,"src":"23608:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24568,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"23610:10:73","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":23015,"src":"23608:12:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":24571,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24537,"src":"23630:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":24570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23624:5:73","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":24569,"name":"int96","nodeType":"ElementaryTypeName","src":"23624:5:73","typeDescriptions":{}}},"id":24572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23624:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"23608:29:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":24574,"nodeType":"ExpressionStatement","src":"23608:29:73"},{"eventCall":{"arguments":[{"id":24576,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24531,"src":"23660:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24577,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24533,"src":"23668:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":24578,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24535,"src":"23678:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"id":24581,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24537,"src":"23696:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":24580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23689:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":24579,"name":"int256","nodeType":"ElementaryTypeName","src":"23689:6:73","typeDescriptions":{}}},"id":24582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23689:14:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":24583,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24540,"src":"23705:12:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"expression":{"id":24584,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24544,"src":"23719:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24585,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23721:10:73","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":23015,"src":"23719:12:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int96","typeString":"int96"}],"id":24575,"name":"DebtChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23070,"src":"23648:11:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$_t_int256_$_t_int256_$returns$__$","typeString":"function (address,uint32,uint32,int256,int256,int256)"}},"id":24586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23648:84:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24587,"nodeType":"EmitStatement","src":"23643:89:73"}]},"id":24589,"implemented":true,"kind":"function","modifiers":[],"name":"_changeDebt","nameLocation":"23278:11:73","nodeType":"FunctionDefinition","parameters":{"id":24538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24531,"mutability":"mutable","name":"target","nameLocation":"23303:6:73","nodeType":"VariableDeclaration","scope":24589,"src":"23295:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24530,"name":"address","nodeType":"ElementaryTypeName","src":"23295:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24533,"mutability":"mutable","name":"slotSize","nameLocation":"23322:8:73","nodeType":"VariableDeclaration","scope":24589,"src":"23315:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24532,"name":"uint32","nodeType":"ElementaryTypeName","src":"23315:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":24535,"mutability":"mutable","name":"slotIndex","nameLocation":"23343:9:73","nodeType":"VariableDeclaration","scope":24589,"src":"23336:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24534,"name":"uint32","nodeType":"ElementaryTypeName","src":"23336:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":24537,"mutability":"mutable","name":"amount","nameLocation":"23365:6:73","nodeType":"VariableDeclaration","scope":24589,"src":"23358:13:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":24536,"name":"int256","nodeType":"ElementaryTypeName","src":"23358:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23289:86:73"},"returnParameters":{"id":24541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24540,"mutability":"mutable","name":"currentDebt_","nameLocation":"23401:12:73","nodeType":"VariableDeclaration","scope":24589,"src":"23394:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":24539,"name":"int256","nodeType":"ElementaryTypeName","src":"23394:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23393:21:73"},"scope":25465,"src":"23269:468:73","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":24611,"nodeType":"Block","src":"24154:88:73","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":24604,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24592,"src":"24215:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24605,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24594,"src":"24223:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":24602,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"24198:3:73","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":24603,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24202:12:73","memberName":"encodePacked","nodeType":"MemberAccess","src":"24198:16:73","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":24606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24198:34:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":24601,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"24188:9:73","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":24607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24188:45:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"hexValue":"30","id":24608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24235:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"id":24599,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16305,"src":"24167:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Packing_$16305_$","typeString":"type(library Packing)"}},"id":24600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24175:12:73","memberName":"extract_32_4","nodeType":"MemberAccess","referencedDeclaration":15942,"src":"24167:20:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes32,uint8) pure returns (bytes4)"}},"id":24609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24167:70:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":24598,"id":24610,"nodeType":"Return","src":"24160:77:73"}]},"documentation":{"id":24590,"nodeType":"StructuredDocumentation","src":"23741:322:73","text":" @dev Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable\n      a given call (selector) to a given target\n @param target Address of the target contract.\n @param selector The 4-bytes method selector of the method to be called in the target"},"functionSelector":"c0c51217","id":24612,"implemented":true,"kind":"function","modifiers":[],"name":"makeFakeSelector","nameLocation":"24075:16:73","nodeType":"FunctionDefinition","parameters":{"id":24595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24592,"mutability":"mutable","name":"target","nameLocation":"24100:6:73","nodeType":"VariableDeclaration","scope":24612,"src":"24092:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24591,"name":"address","nodeType":"ElementaryTypeName","src":"24092:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24594,"mutability":"mutable","name":"selector","nameLocation":"24115:8:73","nodeType":"VariableDeclaration","scope":24612,"src":"24108:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24593,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24108:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"24091:33:73"},"returnParameters":{"id":24598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24597,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24612,"src":"24146:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24596,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24146:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"24145:8:73"},"scope":25465,"src":"24066:176:73","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":24659,"nodeType":"Block","src":"24335:297:73","statements":[{"assignments":[24622],"declarations":[{"constant":false,"id":24622,"mutability":"mutable","name":"fakeSelector","nameLocation":"24348:12:73","nodeType":"VariableDeclaration","scope":24659,"src":"24341:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24621,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24341:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":24627,"initialValue":{"arguments":[{"id":24624,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24616,"src":"24380:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24625,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24618,"src":"24388:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24623,"name":"makeFakeSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24612,"src":"24363:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes4_$","typeString":"function (address,bytes4) pure returns (bytes4)"}},"id":24626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24363:34:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"24341:56:73"},{"assignments":[24629,null],"declarations":[{"constant":false,"id":24629,"mutability":"mutable","name":"immediate","nameLocation":"24409:9:73","nodeType":"VariableDeclaration","scope":24659,"src":"24404:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24628,"name":"bool","nodeType":"ElementaryTypeName","src":"24404:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":24649,"initialValue":{"arguments":[{"id":24642,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"24499:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24645,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24521:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24644,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24513:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24643,"name":"address","nodeType":"ElementaryTypeName","src":"24513:7:73","typeDescriptions":{}}},"id":24646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24513:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24647,"name":"fakeSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24622,"src":"24534:12:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"arguments":[{"id":24635,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24459:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24634,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24451:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24633,"name":"address","nodeType":"ElementaryTypeName","src":"24451:7:73","typeDescriptions":{}}},"id":24636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24451:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24632,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24443:8:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":24631,"name":"address","nodeType":"ElementaryTypeName","src":"24443:8:73","stateMutability":"payable","typeDescriptions":{}}},"id":24637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24443:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":24630,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25542,"src":"24424:18:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AccessManagedProxy_$25542_$","typeString":"type(contract AccessManagedProxy)"}},"id":24638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24424:42:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxy_$25542","typeString":"contract AccessManagedProxy"}},"id":24639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24467:14:73","memberName":"ACCESS_MANAGER","nodeType":"MemberAccess","referencedDeclaration":25476,"src":"24424:57:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IAccessManager_$9511_$","typeString":"function () view external returns (contract IAccessManager)"}},"id":24640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24424:59:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"id":24641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24484:7:73","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":9255,"src":"24424:67:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":24648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24424:128:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24403:149:73"},{"expression":{"arguments":[{"id":24651,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24629,"src":"24566:9:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":24653,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24614,"src":"24597:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24654,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24616,"src":"24605:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24655,"name":"fakeSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24622,"src":"24613:12:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24652,"name":"UnauthorizedForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23174,"src":"24577:19:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":24656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24577:49:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":24650,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24558:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":24657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24558:69:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24658,"nodeType":"ExpressionStatement","src":"24558:69:73"}]},"id":24660,"implemented":true,"kind":"function","modifiers":[],"name":"_checkCanForward","nameLocation":"24255:16:73","nodeType":"FunctionDefinition","parameters":{"id":24619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24614,"mutability":"mutable","name":"caller","nameLocation":"24280:6:73","nodeType":"VariableDeclaration","scope":24660,"src":"24272:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24613,"name":"address","nodeType":"ElementaryTypeName","src":"24272:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24616,"mutability":"mutable","name":"target","nameLocation":"24296:6:73","nodeType":"VariableDeclaration","scope":24660,"src":"24288:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24615,"name":"address","nodeType":"ElementaryTypeName","src":"24288:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24618,"mutability":"mutable","name":"selector","nameLocation":"24311:8:73","nodeType":"VariableDeclaration","scope":24660,"src":"24304:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24617,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24304:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"24271:49:73"},"returnParameters":{"id":24620,"nodeType":"ParameterList","parameters":[],"src":"24335:0:73"},"scope":25465,"src":"24246:386:73","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":24726,"nodeType":"Block","src":"25928:388:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24674,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"25951:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25951:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24676,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24663,"src":"25965:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":24679,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24665,"src":"25980:4:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":24681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25987:1:73","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":24682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"25980:9:73","startExpression":{"hexValue":"30","id":24680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25985:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":24678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25973:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":24677,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25973:6:73","typeDescriptions":{}}},"id":24683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25973:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24673,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24660,"src":"25934:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":24684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25934:57:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24685,"nodeType":"ExpressionStatement","src":"25934:57:73"},{"expression":{"id":24691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24686,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24671,"src":"25997:6:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":24689,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24665,"src":"26026:4:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":24687,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24663,"src":"26006:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":24688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26013:12:73","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":12395,"src":"26006:19:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":24690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26006:25:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"25997:34:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":24692,"nodeType":"ExpressionStatement","src":"25997:34:73"},{"assignments":[24694],"declarations":[{"constant":false,"id":24694,"mutability":"mutable","name":"policyId","nameLocation":"26045:8:73","nodeType":"VariableDeclaration","scope":24726,"src":"26037:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24693,"name":"uint256","nodeType":"ElementaryTypeName","src":"26037:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24702,"initialValue":{"arguments":[{"id":24697,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24671,"src":"26067:6:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":24699,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26076:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24698,"name":"uint256","nodeType":"ElementaryTypeName","src":"26076:7:73","typeDescriptions":{}}}],"id":24700,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26075:9:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"expression":{"id":24695,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26056:3:73","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":24696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26060:6:73","memberName":"decode","nodeType":"MemberAccess","src":"26056:10:73","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":24701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26056:29:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26037:48:73"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":24710,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24694,"src":"26133:8:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[{"id":24706,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"26111:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}],"id":24705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26103:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24704,"name":"address","nodeType":"ElementaryTypeName","src":"26103:7:73","typeDescriptions":{}}},"id":24707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26103:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24703,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12302,"src":"26095:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$12302_$","typeString":"type(contract IERC721)"}},"id":24708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26095:29:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$12302","typeString":"contract IERC721"}},"id":24709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26125:7:73","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":12235,"src":"26095:37:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view external returns (address)"}},"id":24711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26095:47:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":24714,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26154:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26146:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24712,"name":"address","nodeType":"ElementaryTypeName","src":"26146:7:73","typeDescriptions":{}}},"id":24715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26146:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26095:64:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24725,"nodeType":"IfStatement","src":"26091:221:73","trueBody":{"id":24724,"nodeType":"Block","src":"26161:151:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24718,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"26263:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26263:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24720,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24663,"src":"26277:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24721,"name":"OWN_POLICY_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22973,"src":"26285:19:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24717,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24660,"src":"26246:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":24722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26246:59:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24723,"nodeType":"ExpressionStatement","src":"26246:59:73"}]}}]},"documentation":{"id":24661,"nodeType":"StructuredDocumentation","src":"24636:1143:73","text":" @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n      debt (in the current time slot).\n      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n      will fail anyway.\n      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n      Requires the return value of the called function returns the policyId and checks if the resulting policy\n      (a PolicyPool NFT), is owned by the CFL.\n      If it's not, it requires the _msgSender() has permission to call address(this) on\n      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data The call to execute on the target contract"},"functionSelector":"33bded3c","id":24727,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":24668,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24663,"src":"25890:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":24669,"kind":"modifierInvocation","modifierName":{"id":24667,"name":"forwardNewPolicyWrapper","nameLocations":["25866:23:73"],"nodeType":"IdentifierPath","referencedDeclaration":23327,"src":"25866:23:73"},"nodeType":"ModifierInvocation","src":"25866:31:73"}],"name":"forwardNewPolicy","nameLocation":"25791:16:73","nodeType":"FunctionDefinition","parameters":{"id":24666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24663,"mutability":"mutable","name":"target","nameLocation":"25821:6:73","nodeType":"VariableDeclaration","scope":24727,"src":"25813:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24662,"name":"address","nodeType":"ElementaryTypeName","src":"25813:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24665,"mutability":"mutable","name":"data","nameLocation":"25848:4:73","nodeType":"VariableDeclaration","scope":24727,"src":"25833:19:73","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":24664,"name":"bytes","nodeType":"ElementaryTypeName","src":"25833:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25807:49:73"},"returnParameters":{"id":24672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24671,"mutability":"mutable","name":"result","nameLocation":"25920:6:73","nodeType":"VariableDeclaration","scope":24727,"src":"25907:19:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":24670,"name":"bytes","nodeType":"ElementaryTypeName","src":"25907:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25906:21:73"},"scope":25465,"src":"25782:534:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":24856,"nodeType":"Block","src":"27664:810:73","statements":[{"assignments":[24743],"declarations":[{"constant":false,"id":24743,"mutability":"mutable","name":"lastSelector","nameLocation":"27677:12:73","nodeType":"VariableDeclaration","scope":24856,"src":"27670:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24742,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27670:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":24744,"nodeType":"VariableDeclarationStatement","src":"27670:19:73"},{"assignments":[24746],"declarations":[{"constant":false,"id":24746,"mutability":"mutable","name":"ownOK","nameLocation":"27700:5:73","nodeType":"VariableDeclaration","scope":24856,"src":"27695:10:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24745,"name":"bool","nodeType":"ElementaryTypeName","src":"27695:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":24748,"initialValue":{"hexValue":"66616c7365","id":24747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27708:5:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"nodeType":"VariableDeclarationStatement","src":"27695:18:73"},{"expression":{"id":24756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24749,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24740,"src":"27719:6:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":24753,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24733,"src":"27740:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27745:6:73","memberName":"length","nodeType":"MemberAccess","src":"27740:11:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24752,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"27728:11:73","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":24750,"name":"bytes","nodeType":"ElementaryTypeName","src":"27732:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":24751,"nodeType":"ArrayTypeName","src":"27732:7:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":24755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27728:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"27719:33:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":24757,"nodeType":"ExpressionStatement","src":"27719:33:73"},{"body":{"id":24854,"nodeType":"Block","src":"27796:674:73","statements":[{"assignments":[24769],"declarations":[{"constant":false,"id":24769,"mutability":"mutable","name":"selector","nameLocation":"27811:8:73","nodeType":"VariableDeclaration","scope":24854,"src":"27804:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24768,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27804:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":24779,"initialValue":{"arguments":[{"baseExpression":{"baseExpression":{"id":24772,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24733,"src":"27829:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24774,"indexExpression":{"id":24773,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"27834:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"27829:7:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":24776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27839:1:73","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":24777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"27829:12:73","startExpression":{"hexValue":"30","id":24775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27837:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":24771,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27822:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":24770,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27822:6:73","typeDescriptions":{}}},"id":24778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27822:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"27804:38:73"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24780,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"27854:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":24781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27859:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27854:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":24785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24783,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24769,"src":"27864:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":24784,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24743,"src":"27876:12:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"27864:24:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27854:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24799,"nodeType":"IfStatement","src":"27850:211:73","trueBody":{"id":24798,"nodeType":"Block","src":"27890:171:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24788,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"27988:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27988:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24790,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24730,"src":"28002:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24791,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24769,"src":"28010:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24787,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24660,"src":"27971:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":24792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27971:48:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24793,"nodeType":"ExpressionStatement","src":"27971:48:73"},{"expression":{"id":24796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24794,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24743,"src":"28029:12:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":24795,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24769,"src":"28044:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"28029:23:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":24797,"nodeType":"ExpressionStatement","src":"28029:23:73"}]}},{"expression":{"id":24809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":24800,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24740,"src":"28068:6:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":24802,"indexExpression":{"id":24801,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"28075:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"28068:9:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":24805,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24733,"src":"28100:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24807,"indexExpression":{"id":24806,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"28105:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28100:7:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":24803,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24730,"src":"28080:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":24804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28087:12:73","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":12395,"src":"28080:19:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":24808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28080:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"28068:40:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":24810,"nodeType":"ExpressionStatement","src":"28068:40:73"},{"condition":{"id":24812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28120:6:73","subExpression":{"id":24811,"name":"ownOK","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24746,"src":"28121:5:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24853,"nodeType":"IfStatement","src":"28116:348:73","trueBody":{"id":24852,"nodeType":"Block","src":"28128:336:73","statements":[{"assignments":[24814],"declarations":[{"constant":false,"id":24814,"mutability":"mutable","name":"policyId","nameLocation":"28146:8:73","nodeType":"VariableDeclaration","scope":24852,"src":"28138:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24813,"name":"uint256","nodeType":"ElementaryTypeName","src":"28138:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24824,"initialValue":{"arguments":[{"baseExpression":{"id":24817,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24740,"src":"28168:6:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":24819,"indexExpression":{"id":24818,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"28175:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28168:9:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":24821,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28180:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24820,"name":"uint256","nodeType":"ElementaryTypeName","src":"28180:7:73","typeDescriptions":{}}}],"id":24822,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28179:9:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"expression":{"id":24815,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"28157:3:73","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":24816,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28161:6:73","memberName":"decode","nodeType":"MemberAccess","src":"28157:10:73","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":24823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28157:32:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28138:51:73"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":24832,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24814,"src":"28241:8:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[{"id":24828,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22991,"src":"28219:11:73","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$25555","typeString":"contract IPolicyPool"}],"id":24827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28211:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24826,"name":"address","nodeType":"ElementaryTypeName","src":"28211:7:73","typeDescriptions":{}}},"id":24829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28211:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24825,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12302,"src":"28203:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$12302_$","typeString":"type(contract IERC721)"}},"id":24830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28203:29:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$12302","typeString":"contract IERC721"}},"id":24831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28233:7:73","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":12235,"src":"28203:37:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view external returns (address)"}},"id":24833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28203:47:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":24836,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28262:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":24835,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28254:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24834,"name":"address","nodeType":"ElementaryTypeName","src":"28254:7:73","typeDescriptions":{}}},"id":24837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28254:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28203:64:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24851,"nodeType":"IfStatement","src":"28199:257:73","trueBody":{"id":24850,"nodeType":"Block","src":"28269:187:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24840,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"28379:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28379:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24842,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24730,"src":"28393:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24843,"name":"OWN_POLICY_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22973,"src":"28401:19:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24839,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24660,"src":"28362:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":24844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28362:59:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24845,"nodeType":"ExpressionStatement","src":"28362:59:73"},{"expression":{"id":24848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24846,"name":"ownOK","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24746,"src":"28433:5:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":24847,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28441:4:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"28433:12:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24849,"nodeType":"ExpressionStatement","src":"28433:12:73"}]}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24761,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"27774:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":24762,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24733,"src":"27778:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27783:6:73","memberName":"length","nodeType":"MemberAccess","src":"27778:11:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27774:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24855,"initializationExpression":{"assignments":[24759],"declarations":[{"constant":false,"id":24759,"mutability":"mutable","name":"i","nameLocation":"27771:1:73","nodeType":"VariableDeclaration","scope":24855,"src":"27763:9:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24758,"name":"uint256","nodeType":"ElementaryTypeName","src":"27763:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24760,"nodeType":"VariableDeclarationStatement","src":"27763:9:73"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":24766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"27791:3:73","subExpression":{"id":24765,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24759,"src":"27793:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24767,"nodeType":"ExpressionStatement","src":"27791:3:73"},"nodeType":"ForStatement","src":"27758:712:73"}]},"documentation":{"id":24728,"nodeType":"StructuredDocumentation","src":"26320:1186:73","text":" @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n      debt (in the current time slot). Batch version (multiple calls at once).\n      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n      will fail anyway.\n      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n      Requires the return value of the called function returns the policyId and checks if the resulting policy\n      (a PolicyPool NFT), is owned by the CFL.\n      If it's not, it requires the _msgSender() has permission to call address(this) on\n      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data[] The calls to execute on the target contract"},"functionSelector":"e77659fd","id":24857,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":24736,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24730,"src":"27624:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":24737,"kind":"modifierInvocation","modifierName":{"id":24735,"name":"forwardNewPolicyWrapper","nameLocations":["27600:23:73"],"nodeType":"IdentifierPath","referencedDeclaration":23327,"src":"27600:23:73"},"nodeType":"ModifierInvocation","src":"27600:31:73"}],"name":"forwardNewPolicyBatch","nameLocation":"27518:21:73","nodeType":"FunctionDefinition","parameters":{"id":24734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24730,"mutability":"mutable","name":"target","nameLocation":"27553:6:73","nodeType":"VariableDeclaration","scope":24857,"src":"27545:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24729,"name":"address","nodeType":"ElementaryTypeName","src":"27545:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24733,"mutability":"mutable","name":"data","nameLocation":"27582:4:73","nodeType":"VariableDeclaration","scope":24857,"src":"27565:21:73","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":24731,"name":"bytes","nodeType":"ElementaryTypeName","src":"27565:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":24732,"nodeType":"ArrayTypeName","src":"27565:7:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"27539:51:73"},"returnParameters":{"id":24741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24740,"mutability":"mutable","name":"result","nameLocation":"27656:6:73","nodeType":"VariableDeclaration","scope":24857,"src":"27641:21:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":24738,"name":"bytes","nodeType":"ElementaryTypeName","src":"27641:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":24739,"nodeType":"ArrayTypeName","src":"27641:7:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"27640:23:73"},"scope":25465,"src":"27509:965:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":24890,"nodeType":"Block","src":"29189:108:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24871,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"29212:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29212:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24873,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24860,"src":"29226:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":24876,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24862,"src":"29241:4:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":24878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29248:1:73","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":24879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"29241:9:73","startExpression":{"hexValue":"30","id":24877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29246:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":24875,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29234:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":24874,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29234:6:73","typeDescriptions":{}}},"id":24880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29234:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24870,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24660,"src":"29195:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":24881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29195:57:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24882,"nodeType":"ExpressionStatement","src":"29195:57:73"},{"expression":{"id":24888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24883,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24868,"src":"29258:6:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":24886,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24862,"src":"29287:4:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":24884,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24860,"src":"29267:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":24885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29274:12:73","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":12395,"src":"29267:19:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":24887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29267:25:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"29258:34:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":24889,"nodeType":"ExpressionStatement","src":"29258:34:73"}]},"documentation":{"id":24858,"nodeType":"StructuredDocumentation","src":"28478:554:73","text":" @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n      is called.\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data The calls to execute on the target contract"},"functionSelector":"86b44083","id":24891,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":24865,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24860,"src":"29151:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":24866,"kind":"modifierInvocation","modifierName":{"id":24864,"name":"forwardResolvePolicyWrapper","nameLocations":["29123:27:73"],"nodeType":"IdentifierPath","referencedDeclaration":23380,"src":"29123:27:73"},"nodeType":"ModifierInvocation","src":"29123:35:73"}],"name":"forwardResolvePolicy","nameLocation":"29044:20:73","nodeType":"FunctionDefinition","parameters":{"id":24863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24860,"mutability":"mutable","name":"target","nameLocation":"29078:6:73","nodeType":"VariableDeclaration","scope":24891,"src":"29070:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24859,"name":"address","nodeType":"ElementaryTypeName","src":"29070:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24862,"mutability":"mutable","name":"data","nameLocation":"29105:4:73","nodeType":"VariableDeclaration","scope":24891,"src":"29090:19:73","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":24861,"name":"bytes","nodeType":"ElementaryTypeName","src":"29090:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29064:49:73"},"returnParameters":{"id":24869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24868,"mutability":"mutable","name":"result","nameLocation":"29181:6:73","nodeType":"VariableDeclaration","scope":24891,"src":"29168:19:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":24867,"name":"bytes","nodeType":"ElementaryTypeName","src":"29168:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29167:21:73"},"scope":25465,"src":"29035:262:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":24973,"nodeType":"Block","src":"30063:431:73","statements":[{"assignments":[24907],"declarations":[{"constant":false,"id":24907,"mutability":"mutable","name":"lastSelector","nameLocation":"30076:12:73","nodeType":"VariableDeclaration","scope":24973,"src":"30069:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24906,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30069:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":24908,"nodeType":"VariableDeclarationStatement","src":"30069:19:73"},{"expression":{"id":24916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24909,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"30094:6:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":24913,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24897,"src":"30115:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30120:6:73","memberName":"length","nodeType":"MemberAccess","src":"30115:11:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24912,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"30103:11:73","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory[] memory)"},"typeName":{"baseType":{"id":24910,"name":"bytes","nodeType":"ElementaryTypeName","src":"30107:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":24911,"nodeType":"ArrayTypeName","src":"30107:7:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":24915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30103:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"30094:33:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":24917,"nodeType":"ExpressionStatement","src":"30094:33:73"},{"body":{"id":24971,"nodeType":"Block","src":"30171:319:73","statements":[{"assignments":[24929],"declarations":[{"constant":false,"id":24929,"mutability":"mutable","name":"selector","nameLocation":"30186:8:73","nodeType":"VariableDeclaration","scope":24971,"src":"30179:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":24928,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30179:6:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":24939,"initialValue":{"arguments":[{"baseExpression":{"baseExpression":{"id":24932,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24897,"src":"30204:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24934,"indexExpression":{"id":24933,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24919,"src":"30209:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30204:7:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":24936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30214:1:73","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":24937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"30204:12:73","startExpression":{"hexValue":"30","id":24935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30212:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":24931,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30197:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":24930,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30197:6:73","typeDescriptions":{}}},"id":24938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30197:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"30179:38:73"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24940,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24919,"src":"30229:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":24941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30234:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"30229:6:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":24945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24943,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24929,"src":"30239:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":24944,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24907,"src":"30251:12:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"30239:24:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30229:34:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24959,"nodeType":"IfStatement","src":"30225:211:73","trueBody":{"id":24958,"nodeType":"Block","src":"30265:171:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24948,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"30363:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30363:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24950,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24894,"src":"30377:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24951,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24929,"src":"30385:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":24947,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24660,"src":"30346:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":24952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30346:48:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24953,"nodeType":"ExpressionStatement","src":"30346:48:73"},{"expression":{"id":24956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24954,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24907,"src":"30404:12:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":24955,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24929,"src":"30419:8:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"30404:23:73","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":24957,"nodeType":"ExpressionStatement","src":"30404:23:73"}]}},{"expression":{"id":24969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":24960,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24904,"src":"30443:6:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":24962,"indexExpression":{"id":24961,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24919,"src":"30450:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"30443:9:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":24965,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24897,"src":"30475:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24967,"indexExpression":{"id":24966,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24919,"src":"30480:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30475:7:73","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":24963,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24894,"src":"30455:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":24964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30462:12:73","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":12395,"src":"30455:19:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":24968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30455:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"30443:40:73","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":24970,"nodeType":"ExpressionStatement","src":"30443:40:73"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24921,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24919,"src":"30149:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":24922,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24897,"src":"30153:4:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":24923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30158:6:73","memberName":"length","nodeType":"MemberAccess","src":"30153:11:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30149:15:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24972,"initializationExpression":{"assignments":[24919],"declarations":[{"constant":false,"id":24919,"mutability":"mutable","name":"i","nameLocation":"30146:1:73","nodeType":"VariableDeclaration","scope":24972,"src":"30138:9:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24918,"name":"uint256","nodeType":"ElementaryTypeName","src":"30138:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24920,"nodeType":"VariableDeclarationStatement","src":"30138:9:73"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":24926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"30166:3:73","subExpression":{"id":24925,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24919,"src":"30168:1:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24927,"nodeType":"ExpressionStatement","src":"30166:3:73"},"nodeType":"ForStatement","src":"30133:357:73"}]},"documentation":{"id":24892,"nodeType":"StructuredDocumentation","src":"29301:596:73","text":" @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n      is called. Batch version (multiple calls at once).\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data[] The calls to execute on the target contract"},"functionSelector":"ee07abbb","id":24974,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":24900,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24894,"src":"30023:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":24901,"kind":"modifierInvocation","modifierName":{"id":24899,"name":"forwardResolvePolicyWrapper","nameLocations":["29995:27:73"],"nodeType":"IdentifierPath","referencedDeclaration":23380,"src":"29995:27:73"},"nodeType":"ModifierInvocation","src":"29995:35:73"}],"name":"forwardResolvePolicyBatch","nameLocation":"29909:25:73","nodeType":"FunctionDefinition","parameters":{"id":24898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24894,"mutability":"mutable","name":"target","nameLocation":"29948:6:73","nodeType":"VariableDeclaration","scope":24974,"src":"29940:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24893,"name":"address","nodeType":"ElementaryTypeName","src":"29940:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24897,"mutability":"mutable","name":"data","nameLocation":"29977:4:73","nodeType":"VariableDeclaration","scope":24974,"src":"29960:21:73","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":24895,"name":"bytes","nodeType":"ElementaryTypeName","src":"29960:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":24896,"nodeType":"ArrayTypeName","src":"29960:7:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"29934:51:73"},"returnParameters":{"id":24905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24904,"mutability":"mutable","name":"result","nameLocation":"30055:6:73","nodeType":"VariableDeclaration","scope":24974,"src":"30040:21:73","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":24902,"name":"bytes","nodeType":"ElementaryTypeName","src":"30040:5:73","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":24903,"nodeType":"ArrayTypeName","src":"30040:7:73","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"30039:23:73"},"scope":25465,"src":"29900:594:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":24991,"nodeType":"Block","src":"30552:105:73","statements":[{"assignments":[24981],"declarations":[{"constant":false,"id":24981,"mutability":"mutable","name":"$","nameLocation":"30588:1:73","nodeType":"VariableDeclaration","scope":24991,"src":"30558:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":24980,"nodeType":"UserDefinedTypeName","pathNode":{"id":24979,"name":"CashFlowLenderStorage","nameLocations":["30558:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"30558:21:73"},"referencedDeclaration":23026,"src":"30558:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":24984,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":24982,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"30592:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":24983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30592:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"30558:61:73"},{"expression":{"arguments":[{"expression":{"id":24987,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24981,"src":"30639:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":24988,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30641:10:73","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":23015,"src":"30639:12:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int96","typeString":"int96"}],"id":24986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30632:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":24985,"name":"int256","nodeType":"ElementaryTypeName","src":"30632:6:73","typeDescriptions":{}}},"id":24989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30632:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":24978,"id":24990,"nodeType":"Return","src":"30625:27:73"}]},"functionSelector":"759076e5","id":24992,"implemented":true,"kind":"function","modifiers":[],"name":"currentDebt","nameLocation":"30507:11:73","nodeType":"FunctionDefinition","parameters":{"id":24975,"nodeType":"ParameterList","parameters":[],"src":"30518:2:73"},"returnParameters":{"id":24978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24977,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24992,"src":"30544:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":24976,"name":"int256","nodeType":"ElementaryTypeName","src":"30544:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30543:8:73"},"scope":25465,"src":"30498:159:73","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":25018,"nodeType":"Block","src":"30769:146:73","statements":[{"assignments":[25005],"declarations":[{"constant":false,"id":25005,"mutability":"mutable","name":"$","nameLocation":"30805:1:73","nodeType":"VariableDeclaration","scope":25018,"src":"30775:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":25004,"nodeType":"UserDefinedTypeName","pathNode":{"id":25003,"name":"CashFlowLenderStorage","nameLocations":["30775:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"30775:21:73"},"referencedDeclaration":23026,"src":"30775:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":25008,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25006,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"30809:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":25007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30809:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"30775:61:73"},{"expression":{"baseExpression":{"expression":{"id":25009,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25005,"src":"30849:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25010,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30851:13:73","memberName":"_debtByPeriod","nodeType":"MemberAccess","referencedDeclaration":23025,"src":"30849:15:73","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$22993_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"}},"id":25016,"indexExpression":{"arguments":[{"id":25012,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24994,"src":"30881:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25013,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24996,"src":"30889:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25014,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24998,"src":"30899:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":25011,"name":"_makeTargetSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24484,"src":"30865:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_TargetSlot_$22993_$","typeString":"function (address,uint32,uint32) pure returns (CashFlowLender.TargetSlot)"}},"id":25015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30865:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$22993","typeString":"CashFlowLender.TargetSlot"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30849:61:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":25002,"id":25017,"nodeType":"Return","src":"30842:68:73"}]},"functionSelector":"a3ac9390","id":25019,"implemented":true,"kind":"function","modifiers":[],"name":"getDebtForPeriod","nameLocation":"30670:16:73","nodeType":"FunctionDefinition","parameters":{"id":24999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24994,"mutability":"mutable","name":"target","nameLocation":"30695:6:73","nodeType":"VariableDeclaration","scope":25019,"src":"30687:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24993,"name":"address","nodeType":"ElementaryTypeName","src":"30687:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24996,"mutability":"mutable","name":"slotSize","nameLocation":"30710:8:73","nodeType":"VariableDeclaration","scope":25019,"src":"30703:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24995,"name":"uint32","nodeType":"ElementaryTypeName","src":"30703:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":24998,"mutability":"mutable","name":"slotIndex","nameLocation":"30727:9:73","nodeType":"VariableDeclaration","scope":25019,"src":"30720:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":24997,"name":"uint32","nodeType":"ElementaryTypeName","src":"30720:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"30686:51:73"},"returnParameters":{"id":25002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25001,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25019,"src":"30761:6:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25000,"name":"int256","nodeType":"ElementaryTypeName","src":"30761:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30760:8:73"},"scope":25465,"src":"30661:254:73","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[6223],"body":{"id":25082,"nodeType":"Block","src":"31025:324:73","statements":[{"assignments":[25028],"declarations":[{"constant":false,"id":25028,"mutability":"mutable","name":"$","nameLocation":"31061:1:73","nodeType":"VariableDeclaration","scope":25082,"src":"31031:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":25027,"nodeType":"UserDefinedTypeName","pathNode":{"id":25026,"name":"CashFlowLenderStorage","nameLocations":["31031:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"31031:21:73"},"referencedDeclaration":23026,"src":"31031:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":25031,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25029,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"31065:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":25030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31065:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"31031:61:73"},{"expression":{"id":25035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25032,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25024,"src":"31098:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":25033,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"31107:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31107:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31098:19:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25036,"nodeType":"ExpressionStatement","src":"31098:19:73"},{"expression":{"id":25050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25037,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25024,"src":"31123:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"arguments":[{"arguments":[{"id":25046,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"31195:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25045,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31187:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25044,"name":"address","nodeType":"ElementaryTypeName","src":"31187:7:73","typeDescriptions":{}}},"id":25047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31187:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":25041,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25028,"src":"31163:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25042,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31165:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"31163:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31177:9:73","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":11022,"src":"31163:23:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":25048,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31163:38:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":25038,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25028,"src":"31133:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25039,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31135:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"31133:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31147:15:73","memberName":"convertToAssets","nodeType":"MemberAccess","referencedDeclaration":9687,"src":"31133:29:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":25049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31133:69:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31123:79:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25051,"nodeType":"ExpressionStatement","src":"31123:79:73"},{"condition":{"commonType":{"typeIdentifier":"t_int96","typeString":"int96"},"id":25055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25052,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25028,"src":"31212:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25053,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31214:10:73","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":23015,"src":"31212:12:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":25054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31227:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31212:16:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25080,"nodeType":"Block","src":"31291:54:73","statements":[{"expression":{"id":25078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25069,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25024,"src":"31299:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":25074,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25028,"src":"31324:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25075,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31326:10:73","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":23015,"src":"31324:12:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int96","typeString":"int96"}],"id":25073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31317:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":25072,"name":"int256","nodeType":"ElementaryTypeName","src":"31317:6:73","typeDescriptions":{}}},"id":25076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31317:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31309:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":25070,"name":"uint256","nodeType":"ElementaryTypeName","src":"31309:7:73","typeDescriptions":{}}},"id":25077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31309:29:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31299:39:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25079,"nodeType":"ExpressionStatement","src":"31299:39:73"}]},"id":25081,"nodeType":"IfStatement","src":"31208:137:73","trueBody":{"id":25068,"nodeType":"Block","src":"31230:55:73","statements":[{"expression":{"id":25066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25056,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25024,"src":"31238:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[{"id":25064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"31256:21:73","subExpression":{"arguments":[{"expression":{"id":25061,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25028,"src":"31264:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25062,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31266:10:73","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":23015,"src":"31264:12:73","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int96","typeString":"int96"}],"id":25060,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31257:6:73","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":25059,"name":"int256","nodeType":"ElementaryTypeName","src":"31257:6:73","typeDescriptions":{}}},"id":25063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31257:20:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31248:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":25057,"name":"uint256","nodeType":"ElementaryTypeName","src":"31248:7:73","typeDescriptions":{}}},"id":25065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31248:30:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31238:40:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25067,"nodeType":"ExpressionStatement","src":"31238:40:73"}]}}]},"documentation":{"id":25020,"nodeType":"StructuredDocumentation","src":"30919:34:73","text":"@inheritdoc ERC4626Upgradeable"},"functionSelector":"01e1d114","id":25083,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"30965:11:73","nodeType":"FunctionDefinition","overrides":{"id":25022,"nodeType":"OverrideSpecifier","overrides":[],"src":"30991:8:73"},"parameters":{"id":25021,"nodeType":"ParameterList","parameters":[],"src":"30976:2:73"},"returnParameters":{"id":25025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25024,"mutability":"mutable","name":"assets","nameLocation":"31017:6:73","nodeType":"VariableDeclaration","scope":25083,"src":"31009:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25023,"name":"uint256","nodeType":"ElementaryTypeName","src":"31009:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31008:16:73"},"scope":25465,"src":"30956:393:73","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":25106,"nodeType":"Block","src":"31411:138:73","statements":[{"assignments":[25090],"declarations":[{"constant":false,"id":25090,"mutability":"mutable","name":"$","nameLocation":"31447:1:73","nodeType":"VariableDeclaration","scope":25106,"src":"31417:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":25089,"nodeType":"UserDefinedTypeName","pathNode":{"id":25088,"name":"CashFlowLenderStorage","nameLocations":["31417:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"31417:21:73"},"referencedDeclaration":23026,"src":"31417:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":25093,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25091,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"31451:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":25092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31451:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"31417:61:73"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":25094,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"31491:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31491:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"arguments":[{"id":25101,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"31538:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25100,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31530:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25099,"name":"address","nodeType":"ElementaryTypeName","src":"31530:7:73","typeDescriptions":{}}},"id":25102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31530:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":25096,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25090,"src":"31504:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25097,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31506:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"31504:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31518:11:73","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":9747,"src":"31504:25:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":25103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31504:40:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31491:53:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":25087,"id":25105,"nodeType":"Return","src":"31484:60:73"}]},"functionSelector":"cc671a18","id":25107,"implemented":true,"kind":"function","modifiers":[],"name":"cashWithdrawable","nameLocation":"31362:16:73","nodeType":"FunctionDefinition","parameters":{"id":25084,"nodeType":"ParameterList","parameters":[],"src":"31378:2:73"},"returnParameters":{"id":25087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25107,"src":"31402:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25085,"name":"uint256","nodeType":"ElementaryTypeName","src":"31402:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31401:9:73"},"scope":25465,"src":"31353:196:73","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[6316],"body":{"id":25128,"nodeType":"Block","src":"31671:87:73","statements":[{"expression":{"arguments":[{"arguments":[{"id":25120,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25110,"src":"31709:5:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25118,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"31693:5:73","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$25465_$","typeString":"type(contract super CashFlowLender)"}},"id":25119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31699:9:73","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":6316,"src":"31693:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":25121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31693:22:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25123,"name":"cashWithdrawable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25107,"src":"31733:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31733:18:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25122,"name":"convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6239,"src":"31717:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":25125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31717:35:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":25116,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"31684:4:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":25117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31689:3:73","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":18443,"src":"31684:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":25126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31684:69:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":25115,"id":25127,"nodeType":"Return","src":"31677:76:73"}]},"documentation":{"id":25108,"nodeType":"StructuredDocumentation","src":"31553:34:73","text":"@inheritdoc ERC4626Upgradeable"},"functionSelector":"d905777e","id":25129,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"31599:9:73","nodeType":"FunctionDefinition","overrides":{"id":25112,"nodeType":"OverrideSpecifier","overrides":[],"src":"31644:8:73"},"parameters":{"id":25111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25110,"mutability":"mutable","name":"owner","nameLocation":"31617:5:73","nodeType":"VariableDeclaration","scope":25129,"src":"31609:13:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25109,"name":"address","nodeType":"ElementaryTypeName","src":"31609:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"31608:15:73"},"returnParameters":{"id":25115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25114,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25129,"src":"31662:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25113,"name":"uint256","nodeType":"ElementaryTypeName","src":"31662:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31661:9:73"},"scope":25465,"src":"31590:168:73","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6303],"body":{"id":25148,"nodeType":"Block","src":"31882:72:73","statements":[{"expression":{"arguments":[{"arguments":[{"id":25142,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25132,"src":"31922:5:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25140,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"31904:5:73","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$25465_$","typeString":"type(contract super CashFlowLender)"}},"id":25141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31910:11:73","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":6303,"src":"31904:17:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":25143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31904:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25144,"name":"cashWithdrawable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25107,"src":"31930:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31930:18:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":25138,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19814,"src":"31895:4:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$19814_$","typeString":"type(library Math)"}},"id":25139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31900:3:73","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":18443,"src":"31895:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":25146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31895:54:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":25137,"id":25147,"nodeType":"Return","src":"31888:61:73"}]},"documentation":{"id":25130,"nodeType":"StructuredDocumentation","src":"31762:34:73","text":"@inheritdoc ERC4626Upgradeable"},"functionSelector":"ce96cb77","id":25149,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"31808:11:73","nodeType":"FunctionDefinition","overrides":{"id":25134,"nodeType":"OverrideSpecifier","overrides":[],"src":"31855:8:73"},"parameters":{"id":25133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25132,"mutability":"mutable","name":"owner","nameLocation":"31828:5:73","nodeType":"VariableDeclaration","scope":25149,"src":"31820:13:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25131,"name":"address","nodeType":"ElementaryTypeName","src":"31820:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"31819:15:73"},"returnParameters":{"id":25137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25136,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25149,"src":"31873:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25135,"name":"uint256","nodeType":"ElementaryTypeName","src":"31873:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31872:9:73"},"scope":25465,"src":"31799:155:73","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[6716],"body":{"id":25225,"nodeType":"Block","src":"32108:456:73","statements":[{"assignments":[25164],"declarations":[{"constant":false,"id":25164,"mutability":"mutable","name":"balance","nameLocation":"32122:7:73","nodeType":"VariableDeclaration","scope":25225,"src":"32114:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25163,"name":"uint256","nodeType":"ElementaryTypeName","src":"32114:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":25167,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25165,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"32132:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32132:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"32114:28:73"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25168,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"32152:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":25169,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25157,"src":"32162:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32152:16:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25214,"nodeType":"IfStatement","src":"32148:350:73","trueBody":{"id":25213,"nodeType":"Block","src":"32170:328:73","statements":[{"assignments":[25173],"declarations":[{"constant":false,"id":25173,"mutability":"mutable","name":"$","nameLocation":"32286:1:73","nodeType":"VariableDeclaration","scope":25213,"src":"32256:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":25172,"nodeType":"UserDefinedTypeName","pathNode":{"id":25171,"name":"CashFlowLenderStorage","nameLocations":["32256:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"32256:21:73"},"referencedDeclaration":23026,"src":"32256:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":25176,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25174,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"32290:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":25175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32290:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"32256:61:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25178,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25157,"src":"32334:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":25179,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"32343:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32334:16:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":25181,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"32333:18:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"arguments":[{"id":25187,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"32389:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25186,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32381:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25185,"name":"address","nodeType":"ElementaryTypeName","src":"32381:7:73","typeDescriptions":{}}},"id":25188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32381:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":25182,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25173,"src":"32355:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25183,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32357:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"32355:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32369:11:73","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":9747,"src":"32355:25:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":25189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32355:40:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32333:62:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25191,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23182,"src":"32397:13:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32397:15:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25177,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"32325:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32325:88:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25194,"nodeType":"ExpressionStatement","src":"32325:88:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25200,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25157,"src":"32444:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":25201,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"32453:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32444:16:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":25205,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"32470:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32462:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25203,"name":"address","nodeType":"ElementaryTypeName","src":"32462:7:73","typeDescriptions":{}}},"id":25206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32462:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25209,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"32485:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25208,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32477:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25207,"name":"address","nodeType":"ElementaryTypeName","src":"32477:7:73","typeDescriptions":{}}},"id":25210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32477:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":25195,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25173,"src":"32421:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25198,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32423:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"32421:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32435:8:73","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":9767,"src":"32421:22:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":25211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32421:70:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25212,"nodeType":"ExpressionStatement","src":"32421:70:73"}]}},{"expression":{"arguments":[{"id":25218,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25151,"src":"32519:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25219,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25153,"src":"32527:8:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25220,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25155,"src":"32537:5:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25221,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25157,"src":"32544:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25222,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25159,"src":"32552:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":25215,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"32503:5:73","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$25465_$","typeString":"type(contract super CashFlowLender)"}},"id":25217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32509:9:73","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":6716,"src":"32503:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":25223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32503:56:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25224,"nodeType":"ExpressionStatement","src":"32503:56:73"}]},"id":25226,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"31967:9:73","nodeType":"FunctionDefinition","overrides":{"id":25161,"nodeType":"OverrideSpecifier","overrides":[],"src":"32099:8:73"},"parameters":{"id":25160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25151,"mutability":"mutable","name":"caller","nameLocation":"31990:6:73","nodeType":"VariableDeclaration","scope":25226,"src":"31982:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25150,"name":"address","nodeType":"ElementaryTypeName","src":"31982:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25153,"mutability":"mutable","name":"receiver","nameLocation":"32010:8:73","nodeType":"VariableDeclaration","scope":25226,"src":"32002:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25152,"name":"address","nodeType":"ElementaryTypeName","src":"32002:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25155,"mutability":"mutable","name":"owner","nameLocation":"32032:5:73","nodeType":"VariableDeclaration","scope":25226,"src":"32024:13:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25154,"name":"address","nodeType":"ElementaryTypeName","src":"32024:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25157,"mutability":"mutable","name":"assets","nameLocation":"32051:6:73","nodeType":"VariableDeclaration","scope":25226,"src":"32043:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25156,"name":"uint256","nodeType":"ElementaryTypeName","src":"32043:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25159,"mutability":"mutable","name":"shares","nameLocation":"32071:6:73","nodeType":"VariableDeclaration","scope":25226,"src":"32063:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25158,"name":"uint256","nodeType":"ElementaryTypeName","src":"32063:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31976:105:73"},"returnParameters":{"id":25162,"nodeType":"ParameterList","parameters":[],"src":"32108:0:73"},"scope":25465,"src":"31958:606:73","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":25268,"nodeType":"Block","src":"32870:235:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25232,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25229,"src":"32880:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":25235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32895:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":25234,"name":"uint256","nodeType":"ElementaryTypeName","src":"32895:7:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":25233,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"32890:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32890:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":25237,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32904:3:73","memberName":"max","nodeType":"MemberAccess","src":"32890:17:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32880:27:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25257,"nodeType":"IfStatement","src":"32876:166:73","trueBody":{"id":25256,"nodeType":"Block","src":"32909:133:73","statements":[{"assignments":[25241],"declarations":[{"constant":false,"id":25241,"mutability":"mutable","name":"$","nameLocation":"32947:1:73","nodeType":"VariableDeclaration","scope":25256,"src":"32917:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":25240,"nodeType":"UserDefinedTypeName","pathNode":{"id":25239,"name":"CashFlowLenderStorage","nameLocations":["32917:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"32917:21:73"},"referencedDeclaration":23026,"src":"32917:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":25244,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25242,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"32951:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":25243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32951:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"32917:61:73"},{"expression":{"id":25254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25245,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25229,"src":"32986:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":25251,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"33029:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33021:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25249,"name":"address","nodeType":"ElementaryTypeName","src":"33021:7:73","typeDescriptions":{}}},"id":25252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33021:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":25246,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25241,"src":"32995:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25247,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32997:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"32995:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33009:11:73","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":9747,"src":"32995:25:73","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":25253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32995:40:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32986:49:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25255,"nodeType":"ExpressionStatement","src":"32986:49:73"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":25260,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25229,"src":"33065:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25259,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24529,"src":"33055:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":25261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33055:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":25262,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25229,"src":"33076:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33055:27:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25264,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23182,"src":"33084:13:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33084:15:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25258,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"33047:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33047:53:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25267,"nodeType":"ExpressionStatement","src":"33047:53:73"}]},"documentation":{"id":25227,"nodeType":"StructuredDocumentation","src":"32568:242:73","text":" @dev Deinvest from the vault a given amount.\n      Requires $._yieldVault.maxWithdraw() <= amount\n @param amount Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()"},"functionSelector":"d336078c","id":25269,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawFromYieldVault","nameLocation":"32822:22:73","nodeType":"FunctionDefinition","parameters":{"id":25230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25229,"mutability":"mutable","name":"amount","nameLocation":"32853:6:73","nodeType":"VariableDeclaration","scope":25269,"src":"32845:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25228,"name":"uint256","nodeType":"ElementaryTypeName","src":"32845:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32844:16:73"},"returnParameters":{"id":25231,"nodeType":"ParameterList","parameters":[],"src":"32870:0:73"},"scope":25465,"src":"32813:292:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":25317,"nodeType":"Block","src":"33431:261:73","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25275,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25272,"src":"33441:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":25278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33456:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":25277,"name":"uint256","nodeType":"ElementaryTypeName","src":"33456:7:73","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":25276,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"33451:4:73","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":25279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33451:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":25280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"33465:3:73","memberName":"max","nodeType":"MemberAccess","src":"33451:17:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33441:27:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25297,"nodeType":"Block","src":"33510:61:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25289,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25272,"src":"33526:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":25290,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"33536:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33536:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33526:20:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25293,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23182,"src":"33548:13:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33548:15:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25288,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"33518:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33518:46:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25296,"nodeType":"ExpressionStatement","src":"33518:46:73"}]},"id":25298,"nodeType":"IfStatement","src":"33437:134:73","trueBody":{"id":25287,"nodeType":"Block","src":"33470:34:73","statements":[{"expression":{"id":25285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25282,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25272,"src":"33478:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":25283,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"33487:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33487:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33478:19:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25286,"nodeType":"ExpressionStatement","src":"33478:19:73"}]}},{"assignments":[25301],"declarations":[{"constant":false,"id":25301,"mutability":"mutable","name":"$","nameLocation":"33606:1:73","nodeType":"VariableDeclaration","scope":25317,"src":"33576:31:73","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":25300,"nodeType":"UserDefinedTypeName","pathNode":{"id":25299,"name":"CashFlowLenderStorage","nameLocations":["33576:21:73"],"nodeType":"IdentifierPath","referencedDeclaration":23026,"src":"33576:21:73"},"referencedDeclaration":23026,"src":"33576:21:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":25304,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25302,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23037,"src":"33610:25:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$23026_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":25303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33610:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"33576:61:73"},{"expression":{"arguments":[{"id":25310,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25272,"src":"33665:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":25313,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"33681:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33673:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25311,"name":"address","nodeType":"ElementaryTypeName","src":"33673:7:73","typeDescriptions":{}}},"id":25314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33673:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":25305,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25301,"src":"33643:1:73","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$23026_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":25308,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33645:11:73","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":23013,"src":"33643:13:73","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$9796","typeString":"contract IERC4626"}},"id":25309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33657:7:73","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":9713,"src":"33643:21:73","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":25315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33643:44:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25316,"nodeType":"ExpressionStatement","src":"33643:44:73"}]},"documentation":{"id":25270,"nodeType":"StructuredDocumentation","src":"33109:263:73","text":" @dev Moves money that's liquid in the contract to the yield vault, to generate yields\n      Requires _balance() >= amount\n @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`"},"functionSelector":"ac860f74","id":25318,"implemented":true,"kind":"function","modifiers":[],"name":"depositIntoYieldVault","nameLocation":"33384:21:73","nodeType":"FunctionDefinition","parameters":{"id":25273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25272,"mutability":"mutable","name":"amount","nameLocation":"33414:6:73","nodeType":"VariableDeclaration","scope":25318,"src":"33406:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25271,"name":"uint256","nodeType":"ElementaryTypeName","src":"33406:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33405:16:73"},"returnParameters":{"id":25274,"nodeType":"ParameterList","parameters":[],"src":"33431:0:73"},"scope":25465,"src":"33375:317:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":25400,"nodeType":"Block","src":"34540:558:73","statements":[{"expression":{"arguments":[{"id":25333,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25321,"src":"34563:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25332,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"34546:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":25334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34546:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":25335,"nodeType":"ExpressionStatement","src":"34546:24:73"},{"assignments":[25337],"declarations":[{"constant":false,"id":25337,"mutability":"mutable","name":"debtAfter","nameLocation":"34606:9:73","nodeType":"VariableDeclaration","scope":25400,"src":"34599:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25336,"name":"int256","nodeType":"ElementaryTypeName","src":"34599:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":25346,"initialValue":{"arguments":[{"id":25339,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25321,"src":"34630:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25340,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25323,"src":"34638:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25341,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25325,"src":"34648:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25342,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"34659:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34666:8:73","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":21568,"src":"34659:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":25344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34659:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25338,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24589,"src":"34618:11:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":25345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34618:59:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"34599:78:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":25350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25348,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25337,"src":"34691:9:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30","id":25349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34704:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"34691:14:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":25352,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"34727:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25353,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25337,"src":"34735:9:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25351,"name":"CashOutExceedsLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23192,"src":"34707:19:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_int256_$returns$_t_error_$","typeString":"function (uint256,int256) pure returns (error)"}},"id":25354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34707:38:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25347,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"34683:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34683:63:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25356,"nodeType":"ExpressionStatement","src":"34683:63:73"},{"assignments":[25358],"declarations":[{"constant":false,"id":25358,"mutability":"mutable","name":"balance","nameLocation":"34808:7:73","nodeType":"VariableDeclaration","scope":25400,"src":"34800:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25357,"name":"uint256","nodeType":"ElementaryTypeName","src":"34800:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":25361,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":25359,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24257,"src":"34818:8:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":25360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34818:10:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"34800:28:73"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25362,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25358,"src":"34838:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":25363,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"34848:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34838:16:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25381,"nodeType":"IfStatement","src":"34834:112:73","trueBody":{"id":25380,"nodeType":"Block","src":"34856:90:73","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25367,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"34882:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":25368,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25358,"src":"34891:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34882:16:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25366,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24529,"src":"34872:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":25370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34872:27:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25371,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"34904:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":25372,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25358,"src":"34913:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34904:16:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":25374,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34903:18:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34872:49:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25376,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23182,"src":"34923:13:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34923:15:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25365,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"34864:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34864:75:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25379,"nodeType":"ExpressionStatement","src":"34864:75:73"}]}},{"expression":{"arguments":[{"id":25387,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25329,"src":"34988:11:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25388,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"35001:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25383,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"34966:5:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34966:7:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25382,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"34951:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":25385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34951:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":25386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34975:12:73","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":11821,"src":"34951:36:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$11065_$","typeString":"function (contract IERC20,address,uint256)"}},"id":25389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34951:57:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25390,"nodeType":"ExpressionStatement","src":"34951:57:73"},{"eventCall":{"arguments":[{"id":25392,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25321,"src":"35033:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25393,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25323,"src":"35041:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25394,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25325,"src":"35051:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25395,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25327,"src":"35062:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25396,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25337,"src":"35070:9:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":25397,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25329,"src":"35081:11:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":25391,"name":"CashOutPayout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23084,"src":"35019:13:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_uint256_$_t_int256_$_t_address_$returns$__$","typeString":"function (address,uint32,uint32,uint256,int256,address)"}},"id":25398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35019:74:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25399,"nodeType":"EmitStatement","src":"35014:79:73"}]},"documentation":{"id":25319,"nodeType":"StructuredDocumentation","src":"33696:696:73","text":" @dev Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)\n      in a given slot\n      Requires the debt of the slot <= -amount\n      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)\n      emits {CashOutPayout}\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n @param slotIndex Current slot time selected\n @param amount Amount to cash out\n @param destination Address that will receive the funds"},"functionSelector":"225c531e","id":25401,"implemented":true,"kind":"function","modifiers":[],"name":"cashOutPayouts","nameLocation":"34404:14:73","nodeType":"FunctionDefinition","parameters":{"id":25330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25321,"mutability":"mutable","name":"target","nameLocation":"34432:6:73","nodeType":"VariableDeclaration","scope":25401,"src":"34424:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25320,"name":"address","nodeType":"ElementaryTypeName","src":"34424:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25323,"mutability":"mutable","name":"slotSize","nameLocation":"34451:8:73","nodeType":"VariableDeclaration","scope":25401,"src":"34444:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":25322,"name":"uint32","nodeType":"ElementaryTypeName","src":"34444:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":25325,"mutability":"mutable","name":"slotIndex","nameLocation":"34472:9:73","nodeType":"VariableDeclaration","scope":25401,"src":"34465:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":25324,"name":"uint32","nodeType":"ElementaryTypeName","src":"34465:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":25327,"mutability":"mutable","name":"amount","nameLocation":"34495:6:73","nodeType":"VariableDeclaration","scope":25401,"src":"34487:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25326,"name":"uint256","nodeType":"ElementaryTypeName","src":"34487:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25329,"mutability":"mutable","name":"destination","nameLocation":"34515:11:73","nodeType":"VariableDeclaration","scope":25401,"src":"34507:19:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25328,"name":"address","nodeType":"ElementaryTypeName","src":"34507:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"34418:112:73"},"returnParameters":{"id":25331,"nodeType":"ParameterList","parameters":[],"src":"34540:0:73"},"scope":25465,"src":"34395:703:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":25463,"nodeType":"Block","src":"35736:381:73","statements":[{"expression":{"arguments":[{"id":25414,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25404,"src":"35759:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25413,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23671,"src":"35742:16:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$23009_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":25415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35742:24:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$23009_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":25416,"nodeType":"ExpressionStatement","src":"35742:24:73"},{"assignments":[25418],"declarations":[{"constant":false,"id":25418,"mutability":"mutable","name":"debtAfter","nameLocation":"35803:9:73","nodeType":"VariableDeclaration","scope":25463,"src":"35796:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":25417,"name":"int256","nodeType":"ElementaryTypeName","src":"35796:6:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":25428,"initialValue":{"arguments":[{"id":25420,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25404,"src":"35827:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25421,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25406,"src":"35835:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25422,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25408,"src":"35845:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"35856:18:73","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25423,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25410,"src":"35857:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":25424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35864:8:73","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":21568,"src":"35857:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":25425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35857:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25419,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24589,"src":"35815:11:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":25427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35815:60:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"35796:79:73"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":25432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25430,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25418,"src":"35889:9:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":25431,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35902:1:73","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"35889:14:73","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":25434,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25410,"src":"35927:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25435,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25418,"src":"35935:9:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":25433,"name":"RepaymentExceedsLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23198,"src":"35905:21:73","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_int256_$returns$_t_error_$","typeString":"function (uint256,int256) pure returns (error)"}},"id":25436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35905:40:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":25429,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"35881:7:73","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":25437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35881:65:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25438,"nodeType":"ExpressionStatement","src":"35881:65:73"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25444,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"35994:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35994:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25448,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"36016:4:73","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$25465","typeString":"contract CashFlowLender"}],"id":25447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36008:7:73","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25446,"name":"address","nodeType":"ElementaryTypeName","src":"36008:7:73","typeDescriptions":{}}},"id":25449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36008:13:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25450,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25410,"src":"36023:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":25440,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6201,"src":"35968:5:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35968:7:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25439,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"35953:14:73","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$11776_$","typeString":"type(contract IERC20Metadata)"}},"id":25442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35953:23:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"id":25443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35977:16:73","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":11848,"src":"35953:40:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$11065_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$11065_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":25451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35953:77:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25452,"nodeType":"ExpressionStatement","src":"35953:77:73"},{"eventCall":{"arguments":[{"id":25454,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25404,"src":"36051:6:73","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25455,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25406,"src":"36059:8:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25456,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25408,"src":"36069:9:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":25457,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25410,"src":"36080:6:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25458,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25418,"src":"36088:9:73","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":25459,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[24226],"referencedDeclaration":24226,"src":"36099:10:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":25460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36099:12:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":25453,"name":"RepayDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23098,"src":"36041:9:73","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_uint256_$_t_int256_$_t_address_$returns$__$","typeString":"function (address,uint32,uint32,uint256,int256,address)"}},"id":25461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36041:71:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25462,"nodeType":"EmitStatement","src":"36036:76:73"}]},"documentation":{"id":25402,"nodeType":"StructuredDocumentation","src":"35102:536:73","text":" @dev Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)\n      in a given slot\n      Requires the debt of the slot >= amount\n      emits {RepayDebt}\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n @param slotIndex Current slot time selected\n @param amount Amount to pay"},"functionSelector":"82dbbd71","id":25464,"implemented":true,"kind":"function","modifiers":[],"name":"repayDebt","nameLocation":"35650:9:73","nodeType":"FunctionDefinition","parameters":{"id":25411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25404,"mutability":"mutable","name":"target","nameLocation":"35668:6:73","nodeType":"VariableDeclaration","scope":25464,"src":"35660:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25403,"name":"address","nodeType":"ElementaryTypeName","src":"35660:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25406,"mutability":"mutable","name":"slotSize","nameLocation":"35683:8:73","nodeType":"VariableDeclaration","scope":25464,"src":"35676:15:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":25405,"name":"uint32","nodeType":"ElementaryTypeName","src":"35676:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":25408,"mutability":"mutable","name":"slotIndex","nameLocation":"35700:9:73","nodeType":"VariableDeclaration","scope":25464,"src":"35693:16:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":25407,"name":"uint32","nodeType":"ElementaryTypeName","src":"35693:6:73","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":25410,"mutability":"mutable","name":"amount","nameLocation":"35719:6:73","nodeType":"VariableDeclaration","scope":25464,"src":"35711:14:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25409,"name":"uint256","nodeType":"ElementaryTypeName","src":"35711:7:73","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35659:67:73"},"returnParameters":{"id":25412,"nodeType":"ParameterList","parameters":[],"src":"35736:0:73"},"scope":25465,"src":"35641:476:73","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":25466,"src":"3266:32853:73","usedErrors":[4925,4928,5189,5194,6014,6023,6032,6041,9826,9831,9836,9845,9850,9855,10152,10165,11788,12330,12620,12623,12724,19824,19841,23143,23147,23154,23156,23158,23160,23166,23174,23178,23180,23182,23186,23192,23198,23200,23202,23204,23206],"usedEvents":[4933,9605,9647,9659,10999,11008,23056,23070,23084,23098,23105,23117,23127,23135,23141]}],"src":"39:36081:73"},"id":73},"contracts/dependencies/AccessManagedProxy.sol":{"ast":{"absolutePath":"contracts/dependencies/AccessManagedProxy.sol","exportedSymbols":{"AccessManagedProxy":[25542],"ERC1967Proxy":[10132],"IAccessManager":[9511]},"id":25543,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":25467,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:74"},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":25469,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25543,"sourceUnit":10133,"src":"57:84:74","symbolAliases":[{"foreign":{"id":25468,"name":"ERC1967Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10132,"src":"65:12:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":25471,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25543,"sourceUnit":9512,"src":"142:89:74","symbolAliases":[{"foreign":{"id":25470,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9511,"src":"150:14:74","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":25472,"name":"ERC1967Proxy","nameLocations":["264:12:74"],"nodeType":"IdentifierPath","referencedDeclaration":10132,"src":"264:12:74"},"id":25473,"nodeType":"InheritanceSpecifier","src":"264:12:74"}],"canonicalName":"AccessManagedProxy","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":25542,"linearizedBaseContracts":[25542,10132,10462],"name":"AccessManagedProxy","nameLocation":"242:18:74","nodeType":"ContractDefinition","nodes":[{"constant":false,"functionSelector":"3a7b7a39","id":25476,"mutability":"immutable","name":"ACCESS_MANAGER","nameLocation":"313:14:74","nodeType":"VariableDeclaration","scope":25542,"src":"281:46:74","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"},"typeName":{"id":25475,"nodeType":"UserDefinedTypeName","pathNode":{"id":25474,"name":"IAccessManager","nameLocations":["281:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":9511,"src":"281:14:74"},"referencedDeclaration":9511,"src":"281:14:74","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"visibility":"public"},{"errorSelector":"068ca9d8","id":25480,"name":"AccessManagedUnauthorized","nameLocation":"376:25:74","nodeType":"ErrorDefinition","parameters":{"id":25479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25478,"mutability":"mutable","name":"caller","nameLocation":"410:6:74","nodeType":"VariableDeclaration","scope":25480,"src":"402:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25477,"name":"address","nodeType":"ElementaryTypeName","src":"402:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"401:16:74"},"src":"370:48:74"},{"body":{"id":25498,"nodeType":"Block","src":"562:35:74","statements":[{"expression":{"id":25496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":25494,"name":"ACCESS_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25476,"src":"568:14:74","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":25495,"name":"manager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25487,"src":"585:7:74","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"src":"568:24:74","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"id":25497,"nodeType":"ExpressionStatement","src":"568:24:74"}]},"id":25499,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":25490,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25482,"src":"539:14:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25491,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25484,"src":"555:5:74","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":25492,"kind":"baseConstructorSpecifier","modifierName":{"id":25489,"name":"ERC1967Proxy","nameLocations":["526:12:74"],"nodeType":"IdentifierPath","referencedDeclaration":10132,"src":"526:12:74"},"nodeType":"ModifierInvocation","src":"526:35:74"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":25488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25482,"mutability":"mutable","name":"implementation","nameLocation":"447:14:74","nodeType":"VariableDeclaration","scope":25499,"src":"439:22:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25481,"name":"address","nodeType":"ElementaryTypeName","src":"439:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25484,"mutability":"mutable","name":"_data","nameLocation":"480:5:74","nodeType":"VariableDeclaration","scope":25499,"src":"467:18:74","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25483,"name":"bytes","nodeType":"ElementaryTypeName","src":"467:5:74","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":25487,"mutability":"mutable","name":"manager","nameLocation":"506:7:74","nodeType":"VariableDeclaration","scope":25499,"src":"491:22:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"},"typeName":{"id":25486,"nodeType":"UserDefinedTypeName","pathNode":{"id":25485,"name":"IAccessManager","nameLocations":["491:14:74"],"nodeType":"IdentifierPath","referencedDeclaration":9511,"src":"491:14:74"},"referencedDeclaration":9511,"src":"491:14:74","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"433:84:74"},"returnParameters":{"id":25493,"nodeType":"ParameterList","parameters":[],"src":"562:0:74"},"scope":25542,"src":"422:175:74","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[10437],"body":{"id":25540,"nodeType":"Block","src":"967:207:74","statements":[{"assignments":[25507,null],"declarations":[{"constant":false,"id":25507,"mutability":"mutable","name":"immediate","nameLocation":"979:9:74","nodeType":"VariableDeclaration","scope":25540,"src":"974:14:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25506,"name":"bool","nodeType":"ElementaryTypeName","src":"974:4:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":25525,"initialValue":{"arguments":[{"expression":{"id":25510,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1017:3:74","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":25511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1021:6:74","memberName":"sender","nodeType":"MemberAccess","src":"1017:10:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":25514,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1037:4:74","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxy_$25542","typeString":"contract AccessManagedProxy"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagedProxy_$25542","typeString":"contract AccessManagedProxy"}],"id":25513,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1029:7:74","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25512,"name":"address","nodeType":"ElementaryTypeName","src":"1029:7:74","typeDescriptions":{}}},"id":25515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1029:13:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"expression":{"id":25518,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1051:3:74","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":25519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1055:4:74","memberName":"data","nodeType":"MemberAccess","src":"1051:8:74","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":25521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1062:1:74","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":25522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1051:13:74","startExpression":{"hexValue":"30","id":25520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1060:1:74","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":25517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1044:6:74","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":25516,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1044:6:74","typeDescriptions":{}}},"id":25523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1044:21:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":25508,"name":"ACCESS_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25476,"src":"994:14:74","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$9511","typeString":"contract IAccessManager"}},"id":25509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1009:7:74","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":9255,"src":"994:22:74","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":25524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"994:72:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"973:93:74"},{"condition":{"id":25527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1076:10:74","subExpression":{"id":25526,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25507,"src":"1077:9:74","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25533,"nodeType":"IfStatement","src":"1072:60:74","trueBody":{"errorCall":{"arguments":[{"expression":{"id":25529,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1121:3:74","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":25530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1125:6:74","memberName":"sender","nodeType":"MemberAccess","src":"1121:10:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25528,"name":"AccessManagedUnauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25480,"src":"1095:25:74","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25531,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1095:37:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25532,"nodeType":"RevertStatement","src":"1088:44:74"}},{"expression":{"arguments":[{"id":25537,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25502,"src":"1154:14:74","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25534,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1138:5:74","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessManagedProxy_$25542_$","typeString":"type(contract super AccessManagedProxy)"}},"id":25536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1144:9:74","memberName":"_delegate","nodeType":"MemberAccess","referencedDeclaration":10437,"src":"1138:15:74","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":25538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1138:31:74","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25539,"nodeType":"ExpressionStatement","src":"1138:31:74"}]},"documentation":{"id":25500,"nodeType":"StructuredDocumentation","src":"601:294:74","text":" @dev Checks with the ACCESS_MANAGER if msg.sender is authorized to call the current call's function,\n and if so, delegates the current call to `implementation`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":25541,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"907:9:74","nodeType":"FunctionDefinition","overrides":{"id":25504,"nodeType":"OverrideSpecifier","overrides":[],"src":"958:8:74"},"parameters":{"id":25503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25502,"mutability":"mutable","name":"implementation","nameLocation":"925:14:74","nodeType":"VariableDeclaration","scope":25541,"src":"917:22:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25501,"name":"address","nodeType":"ElementaryTypeName","src":"917:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"916:24:74"},"returnParameters":{"id":25505,"nodeType":"ParameterList","parameters":[],"src":"967:0:74"},"scope":25542,"src":"898:276:74","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":25543,"src":"233:943:74","usedErrors":[10152,10165,12330,12623,25480],"usedEvents":[9605]}],"src":"32:1145:74"},"id":74},"contracts/dependencies/IPolicyPool.sol":{"ast":{"absolutePath":"contracts/dependencies/IPolicyPool.sol","exportedSymbols":{"IERC20Metadata":[11776],"IPolicyPool":[25555]},"id":25556,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":25544,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:75"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":25546,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25556,"sourceUnit":11777,"src":"64:97:75","symbolAliases":[{"foreign":{"id":25545,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11776,"src":"72:14:75","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPolicyPool","contractDependencies":[],"contractKind":"interface","documentation":{"id":25547,"nodeType":"StructuredDocumentation","src":"163:107:75","text":" @dev Minimalistic version of the IPolicyPool interface, just the methods needed for this project"},"fullyImplemented":false,"id":25555,"linearizedBaseContracts":[25555],"name":"IPolicyPool","nameLocation":"281:11:75","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":25548,"nodeType":"StructuredDocumentation","src":"297:159:75","text":" @dev Reference to the main currency (ERC20) used in the protocol\n @return The address of the currency (e.g. USDC) token used in the protocol"},"functionSelector":"e5a6b10f","id":25554,"implemented":false,"kind":"function","modifiers":[],"name":"currency","nameLocation":"468:8:75","nodeType":"FunctionDefinition","parameters":{"id":25549,"nodeType":"ParameterList","parameters":[],"src":"476:2:75"},"returnParameters":{"id":25553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25552,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25554,"src":"502:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"},"typeName":{"id":25551,"nodeType":"UserDefinedTypeName","pathNode":{"id":25550,"name":"IERC20Metadata","nameLocations":["502:14:75"],"nodeType":"IdentifierPath","referencedDeclaration":11776,"src":"502:14:75"},"referencedDeclaration":11776,"src":"502:14:75","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$11776","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"501:16:75"},"scope":25555,"src":"459:59:75","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":25556,"src":"271:249:75","usedErrors":[],"usedEvents":[]}],"src":"39:482:75"},"id":75},"contracts/hardhat-dependency-compiler/@account-abstraction/contracts/core/EntryPoint.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@account-abstraction/contracts/core/EntryPoint.sol","exportedSymbols":{"ERC165":[18196],"EntryPoint":[2236],"Exec":[3839],"IAccount":[3335],"IAccountExecute":[3348],"IAggregator":[3382],"IERC165":[18208],"IEntryPoint":[3566],"INonceManager":[3585],"IPaymaster":[3622],"IStakeManager":[3726],"NonceManager":[2506],"PackedUserOperation":[3748],"ReentrancyGuard":[16426],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244],"SenderCreator":[2553],"StakeManager":[2961],"UserOperationLib":[3318],"ValidationData":[2252],"_packValidationData":[2349,2387],"_parseValidationData":[2312],"calldataKeccak":[2397],"min":[2415]},"id":25559,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":25557,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:76"},{"absolutePath":"@account-abstraction/contracts/core/EntryPoint.sol","file":"@account-abstraction/contracts/core/EntryPoint.sol","id":25558,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25559,"sourceUnit":2237,"src":"63:60:76","symbolAliases":[],"unitAlias":""}],"src":"39:85:76"},"id":76},"contracts/hardhat-dependency-compiler/@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","exportedSymbols":{"AccessControl":[7067],"Address":[12580],"BaseAccount":[138],"ECDSA":[18098],"ERC2771Context":[10094],"ERC2771ForwarderAccount":[4287],"IEntryPoint":[3566],"MessageHashUtils":[18172],"PackedUserOperation":[3748],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244]},"id":25562,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":25560,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:77"},{"absolutePath":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","file":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","id":25561,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25562,"sourceUnit":4288,"src":"63:75:77","symbolAliases":[],"unitAlias":""}],"src":"39:100:77"},"id":77},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol","exportedSymbols":{"AccessControl":[7067],"ERC20":[10987],"TestCurrency":[4440]},"id":25565,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":25563,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:78"},{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","file":"@ensuro/utils/contracts/TestCurrency.sol","id":25564,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25565,"sourceUnit":4441,"src":"63:50:78","symbolAliases":[],"unitAlias":""}],"src":"39:75:78"},"id":78},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol","exportedSymbols":{"ERC20":[10987],"ERC4626":[11750],"IERC20Metadata":[11776],"TestCurrency":[4440],"TestERC4626":[4761]},"id":25568,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":25566,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:79"},{"absolutePath":"@ensuro/utils/contracts/TestERC4626.sol","file":"@ensuro/utils/contracts/TestERC4626.sol","id":25567,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25568,"sourceUnit":4762,"src":"63:49:79","symbolAliases":[],"unitAlias":""}],"src":"39:74:79"},"id":79},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol","exportedSymbols":{"AccessManager":[9039],"Address":[12580],"Context":[12610],"IAccessManaged":[9079],"IAccessManager":[9511],"Math":[19814],"Multicall":[12719],"Time":[21997]},"id":25571,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":25569,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:80"},{"absolutePath":"@openzeppelin/contracts/access/manager/AccessManager.sol","file":"@openzeppelin/contracts/access/manager/AccessManager.sol","id":25570,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25571,"sourceUnit":9040,"src":"63:66:80","symbolAliases":[],"unitAlias":""}],"src":"39:91:80"},"id":80}},"contracts":{"@account-abstraction/contracts/core/BaseAccount.sol":{"BaseAccount":{"abi":[{"inputs":[],"name":"entryPoint","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"entryPoint()":"b0d691fe","getNonce()":"d087d288","validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"entryPoint\",\"outputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"entryPoint()\":{\"notice\":\"Return the entryPoint used by this account. Subclass should return the current entryPoint used by this account.\"},\"getNonce()\":{\"notice\":\"Return the account nonce. This method returns the next sequential nonce. For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"}},\"notice\":\"Basic account implementation. This contract provides the basic logic for implementing the IAccount interface - validateUserOp Specific account implementation should inherit it and provide the account-specific logic.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":\"BaseAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":{\"keccak256\":\"0x2736272f077d1699b8b8bf8be18d1c20e506668fc52b3293da70d17e63794358\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://35744475cf48405d7fd6edf6a96c84ef9da3ce844d8dfe3e2e1ffc30edf21d07\",\"dweb:/ipfs/QmUdau9VjVQ7iuRbdTmFSrXP7Hcasd9Cc57LP9thK78bwj\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/core/EntryPoint.sol":{"EntryPoint":{"abi":[{"inputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"ret","type":"bytes"}],"name":"DelegateAndRevert","type":"error"},{"inputs":[{"internalType":"uint256","name":"opIndex","type":"uint256"},{"internalType":"string","name":"reason","type":"string"}],"name":"FailedOp","type":"error"},{"inputs":[{"internalType":"uint256","name":"opIndex","type":"uint256"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"inner","type":"bytes"}],"name":"FailedOpWithRevert","type":"error"},{"inputs":[{"internalType":"bytes","name":"returnData","type":"bytes"}],"name":"PostOpReverted","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderAddressResult","type":"error"},{"inputs":[{"internalType":"address","name":"aggregator","type":"address"}],"name":"SignatureValidationFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"factory","type":"address"},{"indexed":false,"internalType":"address","name":"paymaster","type":"address"}],"name":"AccountDeployed","type":"event"},{"anonymous":false,"inputs":[],"name":"BeforeExecution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"revertReason","type":"bytes"}],"name":"PostOpRevertReason","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"aggregator","type":"address"}],"name":"SignatureAggregatorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakeDelaySec","type":"uint256"}],"name":"StakeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"withdrawTime","type":"uint256"}],"name":"StakeUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"paymaster","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"},{"indexed":false,"internalType":"uint256","name":"actualGasCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"actualGasUsed","type":"uint256"}],"name":"UserOperationEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"UserOperationPrefundTooLow","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"revertReason","type":"bytes"}],"name":"UserOperationRevertReason","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"}],"name":"addStake","outputs":[],"stateMutability":"payable","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":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateAndRevert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getDepositInfo","outputs":[{"components":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"internalType":"struct IStakeManager.DepositInfo","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint192","name":"key","type":"uint192"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"initCode","type":"bytes"}],"name":"getSenderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"}],"name":"getUserOpHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"},{"internalType":"contract IAggregator","name":"aggregator","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct IEntryPoint.UserOpsPerAggregator[]","name":"opsPerAggregator","type":"tuple[]"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"handleAggregatedOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"ops","type":"tuple[]"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"handleOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint192","name":"key","type":"uint192"}],"name":"incrementNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"callData","type":"bytes"},{"components":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"verificationGasLimit","type":"uint256"},{"internalType":"uint256","name":"callGasLimit","type":"uint256"},{"internalType":"uint256","name":"paymasterVerificationGasLimit","type":"uint256"},{"internalType":"uint256","name":"paymasterPostOpGasLimit","type":"uint256"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"address","name":"paymaster","type":"address"},{"internalType":"uint256","name":"maxFeePerGas","type":"uint256"},{"internalType":"uint256","name":"maxPriorityFeePerGas","type":"uint256"}],"internalType":"struct EntryPoint.MemoryUserOp","name":"mUserOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"prefund","type":"uint256"},{"internalType":"uint256","name":"contextOffset","type":"uint256"},{"internalType":"uint256","name":"preOpGas","type":"uint256"}],"internalType":"struct EntryPoint.UserOpInfo","name":"opInfo","type":"tuple"},{"internalType":"bytes","name":"context","type":"bytes"}],"name":"innerHandleOp","outputs":[{"internalType":"uint256","name":"actualGasCost","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint192","name":"","type":"uint192"}],"name":"nonceSequenceNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_16379":{"entryPoint":null,"id":16379,"parameterSlots":0,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"60a0604052604051600e906047565b604051809103905ff0801580156026573d5f5f3e3d5ffd5b506001600160a01b0316608052348015603d575f5ffd5b5060016002556054565b6102188061372d83390190565b6080516136ba6100735f395f8181610de0015261271501526136ba5ff3fe608060405260043610610107575f3560e01c806370a0823111610092578063b760faf911610062578063b760faf914610425578063bb9fe6bf14610438578063c23a5cea1461044c578063dbed18e01461046b578063fc7e286d1461048a575f5ffd5b806370a0823114610394578063765e827f146103c8578063850aaf62146103e75780639b249f6914610406575f5ffd5b80631b2e01b8116100d85780631b2e01b8146101ae578063205c2878146101e457806322cdde4c1461020357806335567e1a146102225780635287ce1214610280575f5ffd5b806242dc531461011b57806301ffc9a71461014d5780630396cb601461017c5780630bd28e3b1461018f575f5ffd5b366101175761011533610530565b005b5f5ffd5b348015610126575f5ffd5b5061013a610135366004612c4c565b610584565b6040519081526020015b60405180910390f35b348015610158575f5ffd5b5061016c610167366004612d04565b610702565b6040519015158152602001610144565b61011561018a366004612d2b565b610789565b34801561019a575f5ffd5b506101156101a9366004612d64565b610a14565b3480156101b9575f5ffd5b5061013a6101c8366004612d7d565b600160209081525f928352604080842090915290825290205481565b3480156101ef575f5ffd5b506101156101fe366004612db0565b610a4a565b34801561020e575f5ffd5b5061013a61021d366004612dda565b610b96565b34801561022d575f5ffd5b5061013a61023c366004612d7d565b6001600160a01b0382165f9081526001602090815260408083206001600160c01b038516845290915290819020549082901b67ffffffffffffffff19161792915050565b34801561028b575f5ffd5b5061033a61029a366004612e11565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152506001600160a01b03165f9081526020818152604091829020825160a0810184528154815260019091015460ff811615159282019290925261010082046001600160701b031692810192909252600160781b810463ffffffff166060830152600160981b900465ffffffffffff16608082015290565b60405161014491905f60a082019050825182526020830151151560208301526001600160701b03604084015116604083015263ffffffff606084015116606083015265ffffffffffff608084015116608083015292915050565b34801561039f575f5ffd5b5061013a6103ae366004612e11565b6001600160a01b03165f9081526020819052604090205490565b3480156103d3575f5ffd5b506101156103e2366004612e6c565b610bd7565b3480156103f2575f5ffd5b50610115610401366004612ebe565b610d4c565b348015610411575f5ffd5b50610115610420366004612f0e565b610dc7565b610115610433366004612e11565b610530565b348015610443575f5ffd5b50610115610e7e565b348015610457575f5ffd5b50610115610466366004612e11565b610fa8565b348015610476575f5ffd5b50610115610485366004612e6c565b6111c7565b348015610495575f5ffd5b506104ed6104a4366004612e11565b5f602081905290815260409020805460019091015460ff81169061010081046001600160701b031690600160781b810463ffffffff1690600160981b900465ffffffffffff1685565b6040805195865293151560208601526001600160701b039092169284019290925263ffffffff909116606083015265ffffffffffff16608082015260a001610144565b5f61053b82346115ce565b9050816001600160a01b03167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c48260405161057891815260200190565b60405180910390a25050565b5f5f5a90503330146105dd5760405162461bcd60e51b815260206004820152601760248201527f4141393220696e7465726e616c2063616c6c206f6e6c7900000000000000000060448201526064015b60405180910390fd5b8451606081015160a082015181016127100160405a603f028161060257610602612f4c565b0410156106185763deaddead60e01b5f5260205ffd5b87515f90156106a6575f610631845f01515f8c86611600565b9050806106a4575f610644610800611616565b80519091501561069e57845f01516001600160a01b03168a602001517f1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a201876020015184604051610695929190612f8e565b60405180910390a35b60019250505b505b5f88608001515a86030190506106f4828a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250879250611641915050565b9a9950505050505050505050565b5f6001600160e01b0319821663307e35b760e11b148061073257506001600160e01b0319821663122a0e9b60e31b145b8061074d57506001600160e01b0319821663cf28ef9760e01b145b8061076857506001600160e01b03198216633e84f02160e01b145b8061078357506301ffc9a760e01b6001600160e01b03198316145b92915050565b335f90815260208190526040902063ffffffff82166107ea5760405162461bcd60e51b815260206004820152601a60248201527f6d757374207370656369667920756e7374616b652064656c617900000000000060448201526064016105d4565b600181015463ffffffff600160781b9091048116908316101561084f5760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420646563726561736520756e7374616b652074696d650000000060448201526064016105d4565b60018101545f9061086f90349061010090046001600160701b0316612fba565b90505f81116108b55760405162461bcd60e51b81526020600482015260126024820152711b9bc81cdd185ad9481cdc1958da599a595960721b60448201526064016105d4565b6001600160701b038111156108fd5760405162461bcd60e51b815260206004820152600e60248201526d7374616b65206f766572666c6f7760901b60448201526064016105d4565b6040805160a08101825283548152600160208083018281526001600160701b0386811685870190815263ffffffff8a8116606088018181525f60808a0181815233808352828a52918c90209a518b55965199909801805494519151965165ffffffffffff16600160981b0265ffffffffffff60981b1997909416600160781b029690961669ffffffffffffffffffff60781b1991909516610100026effffffffffffffffffffffffffff0019991515999099166effffffffffffffffffffffffffffff1990941693909317979097179190911691909117179055835185815290810192909252917fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01910160405180910390a2505050565b335f9081526001602090815260408083206001600160c01b03851684529091528120805491610a4283612fcd565b919050555050565b335f9081526020819052604090208054821115610aa95760405162461bcd60e51b815260206004820152601960248201527f576974686472617720616d6f756e7420746f6f206c617267650000000000000060448201526064016105d4565b8054610ab6908390612fe5565b8155604080516001600160a01b03851681526020810184905233917fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb910160405180910390a25f836001600160a01b0316836040515f6040518083038185875af1925050503d805f8114610b45576040519150601f19603f3d011682016040523d82523d5f602084013e610b4a565b606091505b5050905080610b905760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b60448201526064016105d4565b50505050565b5f610ba0826117f9565b6040805160208101929092523090820152466060820152608001604051602081830303815290604052805190602001209050919050565b610bdf611811565b815f816001600160401b03811115610bf957610bf9612a57565b604051908082528060200260200182016040528015610c3257816020015b610c1f6129d0565b815260200190600190039081610c175790505b5090505f5b82811015610ca7575f828281518110610c5257610c52612ff8565b602002602001015190505f5f610c8c848a8a87818110610c7457610c74612ff8565b9050602002810190610c86919061300c565b85611839565b91509150610c9c8483835f611a3b565b505050600101610c37565b506040515f907fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972908290a15f5b83811015610d2f57610d2381888884818110610cf257610cf2612ff8565b9050602002810190610d04919061300c565b858481518110610d1657610d16612ff8565b6020026020010151611bd5565b90910190600101610cd4565b50610d3a8482611e83565b505050610d476001600255565b505050565b5f5f846001600160a01b03168484604051610d6892919061302b565b5f60405180830381855af49150503d805f8114610da0576040519150601f19603f3d011682016040523d82523d5f602084013e610da5565b606091505b50915091508181604051632650415560e21b81526004016105d492919061303a565b604051632b870d1b60e11b81525f906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063570e1a3690610e17908690869060040161307c565b6020604051808303815f875af1158015610e33573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e57919061308f565b604051633653dc0360e11b81526001600160a01b03821660048201529091506024016105d4565b335f90815260208190526040812060018101549091600160781b90910463ffffffff169003610edc5760405162461bcd60e51b815260206004820152600a6024820152691b9bdd081cdd185ad95960b21b60448201526064016105d4565b600181015460ff16610f245760405162461bcd60e51b8152602060048201526011602482015270616c726561647920756e7374616b696e6760781b60448201526064016105d4565b60018101545f90610f4290600160781b900463ffffffff16426130aa565b60018301805460ff65ffffffffffff60981b011916600160981b65ffffffffffff841690810260ff19169190911790915560405190815290915033907ffa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a90602001610578565b335f908152602081905260409020600181015461010090046001600160701b03168061100d5760405162461bcd60e51b81526020600482015260146024820152734e6f207374616b6520746f20776974686472617760601b60448201526064016105d4565b6001820154600160981b900465ffffffffffff1661106d5760405162461bcd60e51b815260206004820152601d60248201527f6d7573742063616c6c20756e6c6f636b5374616b65282920666972737400000060448201526064016105d4565b600182015442600160981b90910465ffffffffffff1611156110d15760405162461bcd60e51b815260206004820152601b60248201527f5374616b65207769746864726177616c206973206e6f7420647565000000000060448201526064016105d4565b600182018054610100600160c81b0319169055604080516001600160a01b03851681526020810183905233917fb7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3910160405180910390a25f836001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611171576040519150601f19603f3d011682016040523d82523d5f602084013e611176565b606091505b5050905080610b905760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207769746864726177207374616b65000000000000000060448201526064016105d4565b6111cf611811565b815f805b8281101561133657368686838181106111ee576111ee612ff8565b905060200281019061120091906130c8565b9050365f61120e83806130dc565b90925090505f6112246040850160208601612e11565b90505f196001600160a01b0382160161127f5760405162461bcd60e51b815260206004820152601760248201527f4141393620696e76616c69642061676772656761746f7200000000000000000060448201526064016105d4565b6001600160a01b0381161561131a576001600160a01b038116632dd8113384846112ac6040890189613121565b6040518563ffffffff1660e01b81526004016112cb9493929190613283565b5f6040518083038186803b1580156112e1575f5ffd5b505afa9250505080156112f2575060015b61131a5760405163086a9f7560e41b81526001600160a01b03821660048201526024016105d4565b6113248287612fba565b955050600190930192506111d3915050565b505f816001600160401b0381111561135057611350612a57565b60405190808252806020026020018201604052801561138957816020015b6113766129d0565b81526020019060019003908161136e5790505b5090505f805b8481101561146057368888838181106113aa576113aa612ff8565b90506020028101906113bc91906130c8565b9050365f6113ca83806130dc565b90925090505f6113e06040850160208601612e11565b9050815f5b8181101561144e575f89898151811061140057611400612ff8565b602002602001015190505f5f6114228b898987818110610c7457610c74612ff8565b9150915061143284838389611a3b565b8a61143c81612fcd565b9b5050600190930192506113e5915050565b50506001909401935061138f92505050565b506040517fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972905f90a1505f80805b8581101561158a57368989838181106114a9576114a9612ff8565b90506020028101906114bb91906130c8565b90506114cd6040820160208301612e11565b6001600160a01b03167f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d60405160405180910390a2365f61150e83806130dc565b9092509050805f5b81811015611579576115588885858481811061153457611534612ff8565b9050602002810190611546919061300c565b8b8b81518110610d1657610d16612ff8565b6115629088612fba565b96508761156e81612fcd565b985050600101611516565b50506001909301925061148e915050565b506040515f907f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d908290a26115bf8682611e83565b5050505050610d476001600255565b6001600160a01b0382165f908152602081905260408120805482906115f4908590612fba565b91829055509392505050565b5f5f5f845160208601878987f195945050505050565b60603d828111156116245750815b604051602082018101604052818152815f602083013e9392505050565b5f5f5a85519091505f908161165582611f78565b60e08301519091506001600160a01b038116611674578251935061172b565b8093505f8851111561172b57868202955060028a60028111156116995761169961330e565b1461172b5760a0830151604051637c627b2160e01b81526001600160a01b03831691637c627b21916116d5908e908d908c908990600401613322565b5f604051808303815f88803b1580156116ec575f5ffd5b5087f1935050505080156116fe575060015b61172b575f61170e610800611616565b905080604051632b5e552f60e21b81526004016105d49190613369565b5a60a0840151606085015160808c01519288039990990198019088038082111561175e576064600a828403020498909801975b505060408901518783029650868110156117b75760028b60028111156117865761178661330e565b036117a8578096506117978a611fa9565b6117a38a5f898b611ff8565b6117eb565b63deadaa5160e01b5f5260205ffd5b8681036117c486826115ce565b505f808d60028111156117d9576117d961330e565b1490506117e88c828b8d611ff8565b50505b505050505050949350505050565b5f61180382612073565b805190602001209050919050565b600280540361183357604051633ee5aeb560e01b815260040160405180910390fd5b60028055565b5f5f5f5a845190915061184c8682612128565b61185586610b96565b6020860152604081015161012082015161010083015160a08401516080850151606086015160c0870151861717171717176effffffffffffffffffffffffffffff8111156118e55760405162461bcd60e51b815260206004820152601860248201527f41413934206761732076616c756573206f766572666c6f77000000000000000060448201526064016105d4565b5f6119138460c081015160a08201516080830151606084015160408501516101009095015194010101010290565b90506119228a8a8a8487612234565b9650611935845f015185602001516123c5565b61198b5789604051631101335b60e11b81526004016105d4918152604060208201819052601a908201527f4141323520696e76616c6964206163636f756e74206e6f6e6365000000000000606082015260800190565b825a860311156119e75789604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413236206f76657220766572696669636174696f6e4761734c696d69740000606082015260800190565b60e08401516060906001600160a01b031615611a0e57611a098b8b8b85612411565b975090505b604089018290528060608a015260a08a01355a870301896080018181525050505050505050935093915050565b5f5f611a46856125c8565b91509150816001600160a01b0316836001600160a01b031614611aac5785604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0991a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8015611b045785604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f414132322065787069726564206f72206e6f7420647565000000000000000000606082015260800190565b5f611b0e856125c8565b925090506001600160a01b03811615611b6a5786604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0999a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8115611bcc5786604051631101335b60e11b81526004016105d49181526040602082018190526021908201527f41413332207061796d61737465722065787069726564206f72206e6f742064756060820152606560f81b608082015260a00190565b50505050505050565b5f5f5a90505f611be6846060015190565b6040519091505f903682611bfd60608a018a613121565b9150915060605f826003811115611c1357843591505b506372288ed160e01b6001600160e01b0319821601611cc0575f8b8b60200151604051602401611c4492919061337b565b60408051601f198184030181529181526020820180516001600160e01b0316638dd7712f60e01b1790525190915030906242dc5390611c8b9084908f908d90602401613446565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050925050611d15565b306001600160a01b03166242dc5385858d8b604051602401611ce5949392919061347a565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505091505b60205f8351602085015f305af195505f51985084604052505050505080611e79575f3d80602003611d4a5760205f5f3e5f5191505b5063deaddead60e01b8103611d9d5787604051631101335b60e11b81526004016105d4918152604060208201819052600f908201526e41413935206f7574206f662067617360881b606082015260800190565b63deadaa5160e01b8103611dec575f86608001515a611dbc9087612fe5565b611dc69190612fba565b6040880151909150611dd788611fa9565b611de3885f8385611ff8565b9550611e779050565b855180516020808901519201516001600160a01b0390911691907ff62676f440ff169a3a9afdbf812e89e7f95975ee8e5c31214ffdef631c5f479290611e33610800611616565b604051611e41929190612f8e565b60405180910390a35f86608001515a611e5a9087612fe5565b611e649190612fba565b9050611e736002888684611641565b9550505b505b5050509392505050565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820152601860248201527f4141393020696e76616c69642062656e6566696369617279000000000000000060448201526064016105d4565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611f22576040519150601f19603f3d011682016040523d82523d5f602084013e611f27565b606091505b5050905080610d475760405162461bcd60e51b815260206004820152601f60248201527f41413931206661696c65642073656e6420746f2062656e65666963696172790060448201526064016105d4565b6101008101516101208201515f9190808203611f95575092915050565b611fa182488301612617565b949350505050565b80518051602080840151928101516040519081526001600160a01b0390921692917f67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e910160405180910390a350565b835160e081015181516020808801519301516040516001600160a01b039384169492909316927f49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f916120659189908990899093845291151560208401526040830152606082015260800190565b60405180910390a450505050565b6060813560208301355f61209261208d6040870187613121565b61262e565b90505f6120a561208d6060880188613121565b9050608086013560a087013560c08801355f6120c761208d60e08c018c613121565b604080516001600160a01b039a909a1660208b015289810198909852606089019690965250608087019390935260a086019190915260c085015260e08401526101008084019190915281518084039091018152610120909201905292915050565b6121356020830183612e11565b6001600160a01b03168152602082810135908201526001600160801b036080808401358281166060850152811c604084015260a084013560c0808501919091528401359182166101008401521c610120820152365f61219760e0850185613121565b9092509050801561221a5760348110156121f35760405162461bcd60e51b815260206004820152601d60248201527f4141393320696e76616c6964207061796d6173746572416e644461746100000060448201526064016105d4565b6121fd8282612640565b60a086015260808501526001600160a01b031660e0840152610b90565b5f60e084018190526080840181905260a084015250505050565b825180515f9190612252888761224d60408b018b613121565b6126a7565b60e08201515f6001600160a01b038216612293576001600160a01b0383165f9081526020819052604090205487811161228d5780880361228f565b5f5b9150505b60208801516040516306608bdf60e21b81526001600160a01b038516916319822f7c9189916122c9918e919087906004016134af565b6020604051808303815f8887f193505050508015612304575060408051601f3d908101601f19168201909252612301918101906134d3565b60015b61232f5789612314610800611616565b6040516365c8fd4d60e01b81526004016105d49291906134ea565b94506001600160a01b0382166123b8576001600160a01b0383165f9081526020819052604090208054808911156123b2578b604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f41413231206469646e2774207061792070726566756e64000000000000000000606082015260800190565b88900390555b5050505095945050505050565b6001600160a01b0382165f90815260016020908152604080832084821c80855292528220805484916001600160401b03831691908561240383612fcd565b909155501495945050505050565b60605f5f5a855160e08101516001600160a01b0381165f9081526020819052604090208054939450919290919087811015612498578a604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413331207061796d6173746572206465706f73697420746f6f206c6f770000606082015260800190565b878103825f01819055505f84608001519050836001600160a01b03166352b7512c828d8d602001518d6040518563ffffffff1660e01b81526004016124df939291906134af565b5f604051808303815f8887f19350505050801561251d57506040513d5f823e601f3d908101601f1916820160405261251a9190810190613526565b60015b612548578b61252d610800611616565b6040516365c8fd4d60e01b81526004016105d492919061359e565b9098509650805a870311156125b9578b604051631101335b60e11b81526004016105d49181526040602082018190526027908201527f41413336206f766572207061796d6173746572566572696669636174696f6e47606082015266185cd31a5b5a5d60ca1b608082015260a00190565b50505050505094509492505050565b5f5f825f036125db57505f928392509050565b5f6125e584612961565b9050806040015165ffffffffffff1642118061260c5750806020015165ffffffffffff1642105b905194909350915050565b5f8183106126255781612627565b825b9392505050565b5f604051828085833790209392505050565b5f808061265060148286886135da565b61265991613601565b60601c61266a6024601487896135da565b6126739161364e565b60801c61268460346024888a6135da565b61268d9161364e565b9194506001600160801b0316925060801c90509250925092565b8015610b90578251516001600160a01b0381163b156127125784604051631101335b60e11b81526004016105d4918152604060208201819052601f908201527f414131302073656e64657220616c726561647920636f6e737472756374656400606082015260800190565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663570e1a36865f01516040015186866040518463ffffffff1660e01b815260040161276992919061307c565b6020604051808303815f8887f1158015612785573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127aa919061308f565b90506001600160a01b03811661280c5785604051631101335b60e11b81526004016105d4918152604060208201819052601b908201527f4141313320696e6974436f6465206661696c6564206f72204f4f470000000000606082015260800190565b816001600160a01b0316816001600160a01b0316146128765785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313420696e6974436f6465206d7573742072657475726e2073656e646572606082015260800190565b806001600160a01b03163b5f036128d85785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313520696e6974436f6465206d757374206372656174652073656e646572606082015260800190565b5f6128e660148286886135da565b6128ef91613601565b60601c9050826001600160a01b031686602001517fd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d83895f015160e001516040516129509291906001600160a01b0392831681529116602082015260400190565b60405180910390a350505050505050565b604080516060810182525f80825260208201819052918101919091528160a081901c65ffffffffffff81165f0361299b575065ffffffffffff5b604080516060810182526001600160a01b03909316835260d09490941c602083015265ffffffffffff16928101929092525090565b6040518060a00160405280612a396040518061014001604052805f6001600160a01b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f6001600160a01b031681526020015f81526020015f81525090565b81526020015f81526020015f81526020015f81526020015f81525090565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715612a8d57612a8d612a57565b60405290565b60405161014081016001600160401b0381118282101715612a8d57612a8d612a57565b604051601f8201601f191681016001600160401b0381118282101715612ade57612ade612a57565b604052919050565b5f6001600160401b03821115612afe57612afe612a57565b50601f01601f191660200190565b6001600160a01b0381168114612b20575f5ffd5b50565b8035612b2e81612b0c565b919050565b5f8183036101c0811215612b45575f5ffd5b612b4d612a6b565b9150610140811215612b5d575f5ffd5b50612b66612a93565b612b6f83612b23565b81526020838101359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c08084013590820152612bb960e08401612b23565b60e08201526101008381013590820152610120808401359082015281526101408201356020820152610160820135604082015261018082013560608201526101a0909101356080820152919050565b5f5f83601f840112612c18575f5ffd5b5081356001600160401b03811115612c2e575f5ffd5b602083019150836020828501011115612c45575f5ffd5b9250929050565b5f5f5f5f6102008587031215612c60575f5ffd5b84356001600160401b03811115612c75575f5ffd5b8501601f81018713612c85575f5ffd5b8035612c98612c9382612ae6565b612ab6565b818152886020838501011115612cac575f5ffd5b816020840160208301375f60208383010152809650505050612cd18660208701612b33565b92506101e08501356001600160401b03811115612cec575f5ffd5b612cf887828801612c08565b95989497509550505050565b5f60208284031215612d14575f5ffd5b81356001600160e01b031981168114612627575f5ffd5b5f60208284031215612d3b575f5ffd5b813563ffffffff81168114612627575f5ffd5b80356001600160c01b0381168114612b2e575f5ffd5b5f60208284031215612d74575f5ffd5b61262782612d4e565b5f5f60408385031215612d8e575f5ffd5b8235612d9981612b0c565b9150612da760208401612d4e565b90509250929050565b5f5f60408385031215612dc1575f5ffd5b8235612dcc81612b0c565b946020939093013593505050565b5f60208284031215612dea575f5ffd5b81356001600160401b03811115612dff575f5ffd5b82016101208185031215612627575f5ffd5b5f60208284031215612e21575f5ffd5b813561262781612b0c565b5f5f83601f840112612e3c575f5ffd5b5081356001600160401b03811115612e52575f5ffd5b6020830191508360208260051b8501011115612c45575f5ffd5b5f5f5f60408486031215612e7e575f5ffd5b83356001600160401b03811115612e93575f5ffd5b612e9f86828701612e2c565b9094509250506020840135612eb381612b0c565b809150509250925092565b5f5f5f60408486031215612ed0575f5ffd5b8335612edb81612b0c565b925060208401356001600160401b03811115612ef5575f5ffd5b612f0186828701612c08565b9497909650939450505050565b5f5f60208385031215612f1f575f5ffd5b82356001600160401b03811115612f34575f5ffd5b612f4085828601612c08565b90969095509350505050565b634e487b7160e01b5f52601260045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b828152604060208201525f611fa16040830184612f60565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078357610783612fa6565b5f60018201612fde57612fde612fa6565b5060010190565b8181038181111561078357610783612fa6565b634e487b7160e01b5f52603260045260245ffd5b5f823561011e19833603018112613021575f5ffd5b9190910192915050565b818382375f9101908152919050565b8215158152604060208201525f611fa16040830184612f60565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f611fa1602083018486613054565b5f6020828403121561309f575f5ffd5b815161262781612b0c565b65ffffffffffff818116838216019081111561078357610783612fa6565b5f8235605e19833603018112613021575f5ffd5b5f5f8335601e198436030181126130f1575f5ffd5b8301803591506001600160401b0382111561310a575f5ffd5b6020019150600581901b3603821315612c45575f5ffd5b5f5f8335601e19843603018112613136575f5ffd5b8301803591506001600160401b0382111561314f575f5ffd5b602001915036819003821315612c45575f5ffd5b5f5f8335601e19843603018112613178575f5ffd5b83016020810192503590506001600160401b03811115613196575f5ffd5b803603821315612c45575f5ffd5b6131be826131b183612b23565b6001600160a01b03169052565b602081810135908301525f6131d66040830183613163565b61012060408601526131ed61012086018284613054565b9150506131fd6060840184613163565b8583036060870152613210838284613054565b6080868101359088015260a0808701359088015260c08087013590880152925061324091505060e0840184613163565b85830360e0870152613253838284613054565b92505050613265610100840184613163565b858303610100870152613279838284613054565b9695505050505050565b604080825281018490525f6060600586901b83018101908301878361011e1936839003015b898210156132ec57868503605f1901845282358181126132c6575f5ffd5b6132d2868d83016131a4565b9550506020830192506020840193506001820191506132a8565b505050508281036020840152613303818587613054565b979650505050505050565b634e487b7160e01b5f52602160045260245ffd5b5f6003861061333f57634e487b7160e01b5f52602160045260245ffd5b858252608060208301526133566080830186612f60565b6040830194909452506060015292915050565b602081525f6126276020830184612f60565b604081525f61338d60408301856131a4565b90508260208301529392505050565b805180516001600160a01b031683526020810151602084015260408101516040840152606081015160608401526080810151608084015260a081015160a084015260c081015160c084015260e081015161340160e08501826001600160a01b03169052565b5061010081810151908401526101209081015190830152602081015161014083015260408101516101608301526060810151610180830152608001516101a090910152565b61020081525f61345a610200830186612f60565b613467602084018661339c565b8281036101e08401526132798185612f60565b61020081525f61348f61020083018688613054565b61349c602084018661339c565b8281036101e08401526133038185612f60565b606081525f6134c160608301866131a4565b60208301949094525060400152919050565b5f602082840312156134e3575f5ffd5b5051919050565b82815260606020820152600d60608201526c10504c8cc81c995d995c9d1959609a1b608082015260a060408201525f611fa160a0830184612f60565b5f5f60408385031215613537575f5ffd5b82516001600160401b0381111561354c575f5ffd5b8301601f8101851361355c575f5ffd5b805161356a612c9382612ae6565b81815286602083850101111561357e575f5ffd5b8160208401602083015e5f60209282018301529401519395939450505050565b82815260606020820152600d60608201526c10504cccc81c995d995c9d1959609a1b608082015260a060408201525f611fa160a0830184612f60565b5f5f858511156135e8575f5ffd5b838611156135f4575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff198116906014841015613647576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b5092915050565b80356001600160801b03198116906010841015613647576001600160801b031960109490940360031b84901b169092169291505056fea2646970667358221220473e737b2e0f18cfeb65066ae9814ae1c88262a2bb3943ab31976f3ee902aabc64736f6c634300081c00336080604052348015600e575f5ffd5b506101fc8061001c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610029575f3560e01c8063570e1a361461002d575b5f5ffd5b61004061003b3660046100e4565b61005c565b6040516001600160a01b03909116815260200160405180910390f35b5f8061006b6014828587610152565b61007491610179565b60601c90505f6100878460148188610152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92018290525084519495509360209350849250905082850182875af190505f519350806100db575f93505b50505092915050565b5f5f602083850312156100f5575f5ffd5b823567ffffffffffffffff81111561010b575f5ffd5b8301601f8101851361011b575f5ffd5b803567ffffffffffffffff811115610131575f5ffd5b856020828401011115610142575f5ffd5b6020919091019590945092505050565b5f5f85851115610160575f5ffd5b8386111561016c575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff1981169060148410156101bf576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b509291505056fea264697066735822122030d5fffd4a3dd2ab69501a2f8fc7f9592e7a9dd8ff73291baa2fdf62374d0ac464736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH1 0xE SWAP1 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH1 0x26 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0x3D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x2 SSTORE PUSH1 0x54 JUMP JUMPDEST PUSH2 0x218 DUP1 PUSH2 0x372D DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x36BA PUSH2 0x73 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0xDE0 ADD MSTORE PUSH2 0x2715 ADD MSTORE PUSH2 0x36BA PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x107 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB760FAF9 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB760FAF9 EQ PUSH2 0x425 JUMPI DUP1 PUSH4 0xBB9FE6BF EQ PUSH2 0x438 JUMPI DUP1 PUSH4 0xC23A5CEA EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDBED18E0 EQ PUSH2 0x46B JUMPI DUP1 PUSH4 0xFC7E286D EQ PUSH2 0x48A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x394 JUMPI DUP1 PUSH4 0x765E827F EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x850AAF62 EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0x9B249F69 EQ PUSH2 0x406 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1B2E01B8 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x1B2E01B8 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x205C2878 EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x22CDDE4C EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x35567E1A EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x5287CE12 EQ PUSH2 0x280 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH3 0x42DC53 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0x396CB60 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0xBD28E3B EQ PUSH2 0x18F JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x117 JUMPI PUSH2 0x115 CALLER PUSH2 0x530 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x126 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x135 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C4C JUMP JUMPDEST PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x158 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D04 JUMP JUMPDEST PUSH2 0x702 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x2D2B JUMP JUMPDEST PUSH2 0x789 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D64 JUMP JUMPDEST PUSH2 0xA14 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x1C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D7D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2DB0 JUMP JUMPDEST PUSH2 0xA4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x2DDA JUMP JUMPDEST PUSH2 0xB96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x23C CALLDATASIZE PUSH1 0x4 PUSH2 0x2D7D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 SLOAD SWAP1 DUP3 SWAP1 SHL PUSH8 0xFFFFFFFFFFFFFFFF NOT AND OR SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33A PUSH2 0x29A CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND ISZERO ISZERO SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x100 DUP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x3AE CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x3E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E6C JUMP JUMPDEST PUSH2 0xBD7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x401 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EBE JUMP JUMPDEST PUSH2 0xD4C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x411 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x420 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F0E JUMP JUMPDEST PUSH2 0xDC7 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x433 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH2 0x530 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x443 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0xE7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x457 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x466 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH2 0xFA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x476 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x485 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E6C JUMP JUMPDEST PUSH2 0x11C7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x495 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4ED PUSH2 0x4A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND SWAP1 PUSH2 0x100 DUP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP6 DUP7 MSTORE SWAP4 ISZERO ISZERO PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP3 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x144 JUMP JUMPDEST PUSH0 PUSH2 0x53B DUP3 CALLVALUE PUSH2 0x15CE JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x2DA466A7B24304F47E87FA2E1E5A81B9831CE54FEC19055CE277CA2F39BA42C4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x578 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP CALLER ADDRESS EQ PUSH2 0x5DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393220696E7465726E616C2063616C6C206F6E6C79000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD DUP2 ADD PUSH2 0x2710 ADD PUSH1 0x40 GAS PUSH1 0x3F MUL DUP2 PUSH2 0x602 JUMPI PUSH2 0x602 PUSH2 0x2F4C JUMP JUMPDEST DIV LT ISZERO PUSH2 0x618 JUMPI PUSH4 0xDEADDEAD PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP8 MLOAD PUSH0 SWAP1 ISZERO PUSH2 0x6A6 JUMPI PUSH0 PUSH2 0x631 DUP5 PUSH0 ADD MLOAD PUSH0 DUP13 DUP7 PUSH2 0x1600 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x6A4 JUMPI PUSH0 PUSH2 0x644 PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x69E JUMPI DUP5 PUSH0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP11 PUSH1 0x20 ADD MLOAD PUSH32 0x1C4FADA7374C0A9EE8841FC38AFE82932DC0F8E69012E927F061A8BAE611A201 DUP8 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x695 SWAP3 SWAP2 SWAP1 PUSH2 0x2F8E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x1 SWAP3 POP POP JUMPDEST POP JUMPDEST PUSH0 DUP9 PUSH1 0x80 ADD MLOAD GAS DUP7 SUB ADD SWAP1 POP PUSH2 0x6F4 DUP3 DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP8 SWAP3 POP PUSH2 0x1641 SWAP2 POP POP JUMP JUMPDEST SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x307E35B7 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x732 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x122A0E9B PUSH1 0xE3 SHL EQ JUMPDEST DUP1 PUSH2 0x74D JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCF28EF97 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x768 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3E84F021 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x783 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D757374207370656369667920756E7374616B652064656C6179000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV DUP2 AND SWAP1 DUP4 AND LT ISZERO PUSH2 0x84F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x63616E6E6F7420646563726561736520756E7374616B652074696D6500000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0x86F SWAP1 CALLVALUE SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x2FBA JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT PUSH2 0x8B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x1B9BC81CDD185AD9481CDC1958DA599A5959 PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP2 GT ISZERO PUSH2 0x8FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x7374616B65206F766572666C6F77 PUSH1 0x90 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP4 SLOAD DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP1 DUP4 ADD DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 DUP2 AND DUP6 DUP8 ADD SWAP1 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP11 DUP2 AND PUSH1 0x60 DUP9 ADD DUP2 DUP2 MSTORE PUSH0 PUSH1 0x80 DUP11 ADD DUP2 DUP2 MSTORE CALLER DUP1 DUP4 MSTORE DUP3 DUP11 MSTORE SWAP2 DUP13 SWAP1 KECCAK256 SWAP11 MLOAD DUP12 SSTORE SWAP7 MLOAD SWAP10 SWAP1 SWAP9 ADD DUP1 SLOAD SWAP5 MLOAD SWAP2 MLOAD SWAP7 MLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x98 SHL MUL PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL NOT SWAP8 SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x78 SHL MUL SWAP7 SWAP1 SWAP7 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x78 SHL NOT SWAP2 SWAP1 SWAP6 AND PUSH2 0x100 MUL PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 NOT SWAP10 ISZERO ISZERO SWAP10 SWAP1 SWAP10 AND PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP8 SWAP1 SWAP8 OR SWAP2 SWAP1 SWAP2 AND SWAP2 SWAP1 SWAP2 OR OR SWAP1 SSTORE DUP4 MLOAD DUP6 DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 PUSH32 0xA5AE833D0BB1DCD632D98A8B70973E8516812898E19BF27B70071EBC8DC52C01 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0xA42 DUP4 PUSH2 0x2FCD JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 GT ISZERO PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x576974686472617720616D6F756E7420746F6F206C6172676500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xAB6 SWAP1 DUP4 SWAP1 PUSH2 0x2FE5 JUMP JUMPDEST DUP2 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xD1C19FBCD4551A5EDFB66D43D2E337C04837AFDA3482B42BDF569A8FCCDAE5FB SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xB45 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB4A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x6661696C656420746F207769746864726177 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xBA0 DUP3 PUSH2 0x17F9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADDRESS SWAP1 DUP3 ADD MSTORE CHAINID PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBDF PUSH2 0x1811 JUMP JUMPDEST DUP2 PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBF9 JUMPI PUSH2 0xBF9 PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC32 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xC1F PUSH2 0x29D0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC17 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xCA7 JUMPI PUSH0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC52 JUMPI PUSH2 0xC52 PUSH2 0x2FF8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0xC8C DUP5 DUP11 DUP11 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC86 SWAP2 SWAP1 PUSH2 0x300C JUMP JUMPDEST DUP6 PUSH2 0x1839 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xC9C DUP5 DUP4 DUP4 PUSH0 PUSH2 0x1A3B JUMP JUMPDEST POP POP POP PUSH1 0x1 ADD PUSH2 0xC37 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 DUP3 SWAP1 LOG1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD2F JUMPI PUSH2 0xD23 DUP2 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xCF2 JUMPI PUSH2 0xCF2 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xD04 SWAP2 SWAP1 PUSH2 0x300C JUMP JUMPDEST DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x2FF8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1BD5 JUMP JUMPDEST SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xCD4 JUMP JUMPDEST POP PUSH2 0xD3A DUP5 DUP3 PUSH2 0x1E83 JUMP JUMPDEST POP POP POP PUSH2 0xD47 PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xD68 SWAP3 SWAP2 SWAP1 PUSH2 0x302B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xDA0 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xDA5 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 PUSH1 0x40 MLOAD PUSH4 0x26504155 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x303A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2B870D1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x570E1A36 SWAP1 PUSH2 0xE17 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x307C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE33 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xE57 SWAP2 SWAP1 PUSH2 0x308F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3653DC03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 SUB PUSH2 0xEDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xA PUSH1 0x24 DUP3 ADD MSTORE PUSH10 0x1B9BDD081CDD185AD959 PUSH1 0xB2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0xFF AND PUSH2 0xF24 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x616C726561647920756E7374616B696E67 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0xF42 SWAP1 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x30AA JUMP JUMPDEST PUSH1 0x1 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL ADD NOT AND PUSH1 0x1 PUSH1 0x98 SHL PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP1 DUP2 MUL PUSH1 0xFF NOT AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 SWAP2 POP CALLER SWAP1 PUSH32 0xFA9B3C14CC825C412C9ED81B3BA365A5B459439403F18829E572ED53A4180F0A SWAP1 PUSH1 0x20 ADD PUSH2 0x578 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP1 PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F207374616B6520746F207769746864726177 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x106D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D7573742063616C6C20756E6C6F636B5374616B652829206669727374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD TIMESTAMP PUSH1 0x1 PUSH1 0x98 SHL SWAP1 SWAP2 DIV PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x10D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5374616B65207769746864726177616C206973206E6F74206475650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x100 PUSH1 0x1 PUSH1 0xC8 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xB7C918E0E249F999E965CAFEB6C664271B3F4317D296461500E71DA39F0CBDA3 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1176 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6661696C656420746F207769746864726177207374616B650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x11CF PUSH2 0x1811 JUMP JUMPDEST DUP2 PUSH0 DUP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1336 JUMPI CALLDATASIZE DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x11EE JUMPI PUSH2 0x11EE PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1200 SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x120E DUP4 DUP1 PUSH2 0x30DC JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x1224 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E11 JUMP JUMPDEST SWAP1 POP PUSH0 NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ADD PUSH2 0x127F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393620696E76616C69642061676772656761746F72000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x131A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0x2DD81133 DUP5 DUP5 PUSH2 0x12AC PUSH1 0x40 DUP10 ADD DUP10 PUSH2 0x3121 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12CB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3283 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12F2 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x131A JUMPI PUSH1 0x40 MLOAD PUSH4 0x86A9F75 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x1324 DUP3 DUP8 PUSH2 0x2FBA JUMP JUMPDEST SWAP6 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x11D3 SWAP2 POP POP JUMP JUMPDEST POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1350 JUMPI PUSH2 0x1350 PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1389 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1376 PUSH2 0x29D0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x136E JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1460 JUMPI CALLDATASIZE DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x13AA JUMPI PUSH2 0x13AA PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x13BC SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x13CA DUP4 DUP1 PUSH2 0x30DC JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x13E0 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E11 JUMP JUMPDEST SWAP1 POP DUP2 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x144E JUMPI PUSH0 DUP10 DUP10 DUP2 MLOAD DUP2 LT PUSH2 0x1400 JUMPI PUSH2 0x1400 PUSH2 0x2FF8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0x1422 DUP12 DUP10 DUP10 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x2FF8 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1432 DUP5 DUP4 DUP4 DUP10 PUSH2 0x1A3B JUMP JUMPDEST DUP11 PUSH2 0x143C DUP2 PUSH2 0x2FCD JUMP JUMPDEST SWAP12 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x13E5 SWAP2 POP POP JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 POP PUSH2 0x138F SWAP3 POP POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 PUSH0 SWAP1 LOG1 POP PUSH0 DUP1 DUP1 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x158A JUMPI CALLDATASIZE DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x14A9 JUMPI PUSH2 0x14A9 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x14BB SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP PUSH2 0x14CD PUSH1 0x40 DUP3 ADD PUSH1 0x20 DUP4 ADD PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 CALLDATASIZE PUSH0 PUSH2 0x150E DUP4 DUP1 PUSH2 0x30DC JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1579 JUMPI PUSH2 0x1558 DUP9 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x1534 JUMPI PUSH2 0x1534 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1546 SWAP2 SWAP1 PUSH2 0x300C JUMP JUMPDEST DUP12 DUP12 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x2FF8 JUMP JUMPDEST PUSH2 0x1562 SWAP1 DUP9 PUSH2 0x2FBA JUMP JUMPDEST SWAP7 POP DUP8 PUSH2 0x156E DUP2 PUSH2 0x2FCD JUMP JUMPDEST SWAP9 POP POP PUSH1 0x1 ADD PUSH2 0x1516 JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x148E SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D SWAP1 DUP3 SWAP1 LOG2 PUSH2 0x15BF DUP7 DUP3 PUSH2 0x1E83 JUMP JUMPDEST POP POP POP POP POP PUSH2 0xD47 PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH2 0x15F4 SWAP1 DUP6 SWAP1 PUSH2 0x2FBA JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD DUP8 DUP10 DUP8 CALL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 RETURNDATASIZE DUP3 DUP2 GT ISZERO PUSH2 0x1624 JUMPI POP DUP2 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP3 ADD DUP2 ADD PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP2 PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS DUP6 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 PUSH2 0x1655 DUP3 PUSH2 0x1F78 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1674 JUMPI DUP3 MLOAD SWAP4 POP PUSH2 0x172B JUMP JUMPDEST DUP1 SWAP4 POP PUSH0 DUP9 MLOAD GT ISZERO PUSH2 0x172B JUMPI DUP7 DUP3 MUL SWAP6 POP PUSH1 0x2 DUP11 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x1699 JUMPI PUSH2 0x1699 PUSH2 0x330E JUMP JUMPDEST EQ PUSH2 0x172B JUMPI PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x7C627B21 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP2 PUSH4 0x7C627B21 SWAP2 PUSH2 0x16D5 SWAP1 DUP15 SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x3322 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x16FE JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x172B JUMPI PUSH0 PUSH2 0x170E PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 MLOAD PUSH4 0x2B5E552F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 SWAP1 PUSH2 0x3369 JUMP JUMPDEST GAS PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0x80 DUP13 ADD MLOAD SWAP3 DUP9 SUB SWAP10 SWAP1 SWAP10 ADD SWAP9 ADD SWAP1 DUP9 SUB DUP1 DUP3 GT ISZERO PUSH2 0x175E JUMPI PUSH1 0x64 PUSH1 0xA DUP3 DUP5 SUB MUL DIV SWAP9 SWAP1 SWAP9 ADD SWAP8 JUMPDEST POP POP PUSH1 0x40 DUP10 ADD MLOAD DUP8 DUP4 MUL SWAP7 POP DUP7 DUP2 LT ISZERO PUSH2 0x17B7 JUMPI PUSH1 0x2 DUP12 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x1786 JUMPI PUSH2 0x1786 PUSH2 0x330E JUMP JUMPDEST SUB PUSH2 0x17A8 JUMPI DUP1 SWAP7 POP PUSH2 0x1797 DUP11 PUSH2 0x1FA9 JUMP JUMPDEST PUSH2 0x17A3 DUP11 PUSH0 DUP10 DUP12 PUSH2 0x1FF8 JUMP JUMPDEST PUSH2 0x17EB JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP7 DUP2 SUB PUSH2 0x17C4 DUP7 DUP3 PUSH2 0x15CE JUMP JUMPDEST POP PUSH0 DUP1 DUP14 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x17D9 JUMPI PUSH2 0x17D9 PUSH2 0x330E JUMP JUMPDEST EQ SWAP1 POP PUSH2 0x17E8 DUP13 DUP3 DUP12 DUP14 PUSH2 0x1FF8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1803 DUP3 PUSH2 0x2073 JUMP JUMPDEST DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SUB PUSH2 0x1833 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP1 SSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 GAS DUP5 MLOAD SWAP1 SWAP2 POP PUSH2 0x184C DUP7 DUP3 PUSH2 0x2128 JUMP JUMPDEST PUSH2 0x1855 DUP7 PUSH2 0xB96 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x100 DUP4 ADD MLOAD PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x80 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0xC0 DUP8 ADD MLOAD DUP7 OR OR OR OR OR OR PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x18E5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413934206761732076616C756573206F766572666C6F770000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 PUSH2 0x1913 DUP5 PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x60 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH2 0x100 SWAP1 SWAP6 ADD MLOAD SWAP5 ADD ADD ADD ADD MUL SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1922 DUP11 DUP11 DUP11 DUP5 DUP8 PUSH2 0x2234 JUMP JUMPDEST SWAP7 POP PUSH2 0x1935 DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x23C5 JUMP JUMPDEST PUSH2 0x198B JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1A SWAP1 DUP3 ADD MSTORE PUSH32 0x4141323520696E76616C6964206163636F756E74206E6F6E6365000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP3 GAS DUP7 SUB GT ISZERO PUSH2 0x19E7 JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413236206F76657220766572696669636174696F6E4761734C696D69740000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0xE0 DUP5 ADD MLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1A0E JUMPI PUSH2 0x1A09 DUP12 DUP12 DUP12 DUP6 PUSH2 0x2411 JUMP JUMPDEST SWAP8 POP SWAP1 POP JUMPDEST PUSH1 0x40 DUP10 ADD DUP3 SWAP1 MSTORE DUP1 PUSH1 0x60 DUP11 ADD MSTORE PUSH1 0xA0 DUP11 ADD CALLDATALOAD GAS DUP8 SUB ADD DUP10 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP POP POP POP POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A46 DUP6 PUSH2 0x25C8 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1AAC JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0991A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1B04 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x414132322065787069726564206F72206E6F7420647565000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1B0E DUP6 PUSH2 0x25C8 JUMP JUMPDEST SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1B6A JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0999A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 ISZERO PUSH2 0x1BCC JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413332207061796D61737465722065787069726564206F72206E6F74206475 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP PUSH0 PUSH2 0x1BE6 DUP5 PUSH1 0x60 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 CALLDATASIZE DUP3 PUSH2 0x1BFD PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x3121 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x60 PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C13 JUMPI DUP5 CALLDATALOAD SWAP2 POP JUMPDEST POP PUSH4 0x72288ED1 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x1CC0 JUMPI PUSH0 DUP12 DUP12 PUSH1 0x20 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1C44 SWAP3 SWAP2 SWAP1 PUSH2 0x337B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x8DD7712F PUSH1 0xE0 SHL OR SWAP1 MSTORE MLOAD SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH3 0x42DC53 SWAP1 PUSH2 0x1C8B SWAP1 DUP5 SWAP1 DUP16 SWAP1 DUP14 SWAP1 PUSH1 0x24 ADD PUSH2 0x3446 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP3 POP POP PUSH2 0x1D15 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH3 0x42DC53 DUP6 DUP6 DUP14 DUP12 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1CE5 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x347A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP2 POP JUMPDEST PUSH1 0x20 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD PUSH0 ADDRESS GAS CALL SWAP6 POP PUSH0 MLOAD SWAP9 POP DUP5 PUSH1 0x40 MSTORE POP POP POP POP POP DUP1 PUSH2 0x1E79 JUMPI PUSH0 RETURNDATASIZE DUP1 PUSH1 0x20 SUB PUSH2 0x1D4A JUMPI PUSH1 0x20 PUSH0 PUSH0 RETURNDATACOPY PUSH0 MLOAD SWAP2 POP JUMPDEST POP PUSH4 0xDEADDEAD PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1D9D JUMPI DUP8 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0xF SWAP1 DUP3 ADD MSTORE PUSH15 0x41413935206F7574206F6620676173 PUSH1 0x88 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1DEC JUMPI PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1DBC SWAP1 DUP8 PUSH2 0x2FE5 JUMP JUMPDEST PUSH2 0x1DC6 SWAP2 SWAP1 PUSH2 0x2FBA JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x1DD7 DUP9 PUSH2 0x1FA9 JUMP JUMPDEST PUSH2 0x1DE3 DUP9 PUSH0 DUP4 DUP6 PUSH2 0x1FF8 JUMP JUMPDEST SWAP6 POP PUSH2 0x1E77 SWAP1 POP JUMP JUMPDEST DUP6 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP10 ADD MLOAD SWAP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 PUSH32 0xF62676F440FF169A3A9AFDBF812E89E7F95975EE8E5C31214FFDEF631C5F4792 SWAP1 PUSH2 0x1E33 PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E41 SWAP3 SWAP2 SWAP1 PUSH2 0x2F8E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1E5A SWAP1 DUP8 PUSH2 0x2FE5 JUMP JUMPDEST PUSH2 0x1E64 SWAP2 SWAP1 PUSH2 0x2FBA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E73 PUSH1 0x2 DUP9 DUP7 DUP5 PUSH2 0x1641 JUMP JUMPDEST SWAP6 POP POP JUMPDEST POP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1ED9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393020696E76616C69642062656E65666963696172790000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1F22 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1F27 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xD47 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413931206661696C65642073656E6420746F2062656E656669636961727900 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH0 SWAP2 SWAP1 DUP1 DUP3 SUB PUSH2 0x1F95 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1FA1 DUP3 BASEFEE DUP4 ADD PUSH2 0x2617 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP3 DUP2 ADD MLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP3 SWAP2 PUSH32 0x67B4FA9642F42120BF031F3051D1824B0FE25627945B27B8A6A65D5761D5482E SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST DUP4 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD DUP2 MLOAD PUSH1 0x20 DUP1 DUP9 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP5 SWAP3 SWAP1 SWAP4 AND SWAP3 PUSH32 0x49628FD1471006C1482DA88028E9CE4DBB080B815C9B0344D39E5A8E6EC1419F SWAP2 PUSH2 0x2065 SWAP2 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 SWAP4 DUP5 MSTORE SWAP2 ISZERO ISZERO PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH0 PUSH2 0x2092 PUSH2 0x208D PUSH1 0x40 DUP8 ADD DUP8 PUSH2 0x3121 JUMP JUMPDEST PUSH2 0x262E JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x20A5 PUSH2 0x208D PUSH1 0x60 DUP9 ADD DUP9 PUSH2 0x3121 JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH1 0xA0 DUP8 ADD CALLDATALOAD PUSH1 0xC0 DUP9 ADD CALLDATALOAD PUSH0 PUSH2 0x20C7 PUSH2 0x208D PUSH1 0xE0 DUP13 ADD DUP13 PUSH2 0x3121 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP11 SWAP1 SWAP11 AND PUSH1 0x20 DUP12 ADD MSTORE DUP10 DUP2 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP10 ADD SWAP7 SWAP1 SWAP7 MSTORE POP PUSH1 0x80 DUP8 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0xA0 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH2 0x120 SWAP1 SWAP3 ADD SWAP1 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2135 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD DUP3 DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE DUP2 SHR PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0xA0 DUP5 ADD CALLDATALOAD PUSH1 0xC0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 ADD CALLDATALOAD SWAP2 DUP3 AND PUSH2 0x100 DUP5 ADD MSTORE SHR PUSH2 0x120 DUP3 ADD MSTORE CALLDATASIZE PUSH0 PUSH2 0x2197 PUSH1 0xE0 DUP6 ADD DUP6 PUSH2 0x3121 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x221A JUMPI PUSH1 0x34 DUP2 LT ISZERO PUSH2 0x21F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393320696E76616C6964207061796D6173746572416E6444617461000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x21FD DUP3 DUP3 PUSH2 0x2640 JUMP JUMPDEST PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0xB90 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0xA0 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST DUP3 MLOAD DUP1 MLOAD PUSH0 SWAP2 SWAP1 PUSH2 0x2252 DUP9 DUP8 PUSH2 0x224D PUSH1 0x40 DUP12 ADD DUP12 PUSH2 0x3121 JUMP JUMPDEST PUSH2 0x26A7 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MLOAD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2293 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 DUP2 GT PUSH2 0x228D JUMPI DUP1 DUP9 SUB PUSH2 0x228F JUMP JUMPDEST PUSH0 JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x6608BDF PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH4 0x19822F7C SWAP2 DUP10 SWAP2 PUSH2 0x22C9 SWAP2 DUP15 SWAP2 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x34AF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x2304 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2301 SWAP2 DUP2 ADD SWAP1 PUSH2 0x34D3 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x232F JUMPI DUP10 PUSH2 0x2314 PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x34EA JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x23B8 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP1 DUP10 GT ISZERO PUSH2 0x23B2 JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413231206469646E2774207061792070726566756E64000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP9 SWAP1 SUB SWAP1 SSTORE JUMPDEST POP POP POP POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP3 SHR DUP1 DUP6 MSTORE SWAP3 MSTORE DUP3 KECCAK256 DUP1 SLOAD DUP5 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP2 SWAP1 DUP6 PUSH2 0x2403 DUP4 PUSH2 0x2FCD JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP EQ SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 GAS DUP6 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD SWAP4 SWAP5 POP SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 DUP8 DUP2 LT ISZERO PUSH2 0x2498 JUMPI DUP11 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413331207061796D6173746572206465706F73697420746F6F206C6F770000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP8 DUP2 SUB DUP3 PUSH0 ADD DUP2 SWAP1 SSTORE POP PUSH0 DUP5 PUSH1 0x80 ADD MLOAD SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52B7512C DUP3 DUP14 DUP14 PUSH1 0x20 ADD MLOAD DUP14 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x34AF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x251D JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x251A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x3526 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2548 JUMPI DUP12 PUSH2 0x252D PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x359E JUMP JUMPDEST SWAP1 SWAP9 POP SWAP7 POP DUP1 GAS DUP8 SUB GT ISZERO PUSH2 0x25B9 JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x27 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413336206F766572207061796D6173746572566572696669636174696F6E47 PUSH1 0x60 DUP3 ADD MSTORE PUSH7 0x185CD31A5B5A5D PUSH1 0xCA SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH0 SUB PUSH2 0x25DB JUMPI POP PUSH0 SWAP3 DUP4 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x25E5 DUP5 PUSH2 0x2961 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP GT DUP1 PUSH2 0x260C JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP LT JUMPDEST SWAP1 MLOAD SWAP5 SWAP1 SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 DUP4 LT PUSH2 0x2625 JUMPI DUP2 PUSH2 0x2627 JUMP JUMPDEST DUP3 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP3 DUP1 DUP6 DUP4 CALLDATACOPY SWAP1 KECCAK256 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x2650 PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x2659 SWAP2 PUSH2 0x3601 JUMP JUMPDEST PUSH1 0x60 SHR PUSH2 0x266A PUSH1 0x24 PUSH1 0x14 DUP8 DUP10 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x2673 SWAP2 PUSH2 0x364E JUMP JUMPDEST PUSH1 0x80 SHR PUSH2 0x2684 PUSH1 0x34 PUSH1 0x24 DUP9 DUP11 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x268D SWAP2 PUSH2 0x364E JUMP JUMPDEST SWAP2 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP3 POP PUSH1 0x80 SHR SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB90 JUMPI DUP3 MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x2712 JUMPI DUP5 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1F SWAP1 DUP3 ADD MSTORE PUSH32 0x414131302073656E64657220616C726561647920636F6E737472756374656400 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x570E1A36 DUP7 PUSH0 ADD MLOAD PUSH1 0x40 ADD MLOAD DUP7 DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2769 SWAP3 SWAP2 SWAP1 PUSH2 0x307C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL ISZERO DUP1 ISZERO PUSH2 0x2785 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP 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 0x27AA SWAP2 SWAP1 PUSH2 0x308F JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x280C JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1B SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313320696E6974436F6465206661696C6564206F72204F4F470000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2876 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313420696E6974436F6465206D7573742072657475726E2073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x28D8 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313520696E6974436F6465206D757374206372656174652073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x28E6 PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x28EF SWAP2 PUSH2 0x3601 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x20 ADD MLOAD PUSH32 0xD51A9C61267AA6196961883ECF5FF2DA6619C37DAC0FA92122513FB32C032D2D DUP4 DUP10 PUSH0 ADD MLOAD PUSH1 0xE0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x2950 SWAP3 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 PUSH1 0xA0 DUP2 SWAP1 SHR PUSH6 0xFFFFFFFFFFFF DUP2 AND PUSH0 SUB PUSH2 0x299B JUMPI POP PUSH6 0xFFFFFFFFFFFF JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0xD0 SWAP5 SWAP1 SWAP5 SHR PUSH1 0x20 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2A39 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2A8D JUMPI PUSH2 0x2A8D PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x140 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2A8D JUMPI PUSH2 0x2A8D PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2ADE JUMPI PUSH2 0x2ADE PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x2AFE JUMPI PUSH2 0x2AFE PUSH2 0x2A57 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2B2E DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 DUP4 SUB PUSH2 0x1C0 DUP2 SLT ISZERO PUSH2 0x2B45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2B4D PUSH2 0x2A6B JUMP JUMPDEST SWAP2 POP PUSH2 0x140 DUP2 SLT ISZERO PUSH2 0x2B5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B66 PUSH2 0x2A93 JUMP JUMPDEST PUSH2 0x2B6F DUP4 PUSH2 0x2B23 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x2BB9 PUSH1 0xE0 DUP5 ADD PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE DUP2 MSTORE PUSH2 0x140 DUP3 ADD CALLDATALOAD PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x160 DUP3 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x180 DUP3 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1A0 SWAP1 SWAP2 ADD CALLDATALOAD PUSH1 0x80 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C18 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2C60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C75 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x2C85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2C98 PUSH2 0x2C93 DUP3 PUSH2 0x2AE6 JUMP JUMPDEST PUSH2 0x2AB6 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP9 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x2CAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP7 POP POP POP POP PUSH2 0x2CD1 DUP7 PUSH1 0x20 DUP8 ADD PUSH2 0x2B33 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E0 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2CEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2CF8 DUP8 DUP3 DUP9 ADD PUSH2 0x2C08 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2627 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D3B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2627 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D74 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2627 DUP3 PUSH2 0x2D4E JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D8E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2D99 DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP2 POP PUSH2 0x2DA7 PUSH1 0x20 DUP5 ADD PUSH2 0x2D4E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DCC DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2DEA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2DFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH2 0x120 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2627 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E21 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2627 DUP2 PUSH2 0x2B0C JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2E3C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E52 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2E7E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E93 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2E9F DUP7 DUP3 DUP8 ADD PUSH2 0x2E2C JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2EB3 DUP2 PUSH2 0x2B0C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2ED0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2EDB DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2EF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F01 DUP7 DUP3 DUP8 ADD PUSH2 0x2C08 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F34 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F40 DUP6 DUP3 DUP7 ADD PUSH2 0x2C08 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FA6 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x2FDE JUMPI PUSH2 0x2FDE PUSH2 0x2FA6 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FA6 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH2 0x11E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3021 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP4 DUP3 CALLDATACOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x3054 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x309F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x2627 DUP2 PUSH2 0x2B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FA6 JUMP JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH1 0x5E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3021 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x30F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x310A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP PUSH1 0x5 DUP2 SWAP1 SHL CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3136 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x314F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x20 DUP2 ADD SWAP3 POP CALLDATALOAD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3196 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x31BE DUP3 PUSH2 0x31B1 DUP4 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 DUP2 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH0 PUSH2 0x31D6 PUSH1 0x40 DUP4 ADD DUP4 PUSH2 0x3163 JUMP JUMPDEST PUSH2 0x120 PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0x31ED PUSH2 0x120 DUP7 ADD DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x31FD PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x3163 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0x60 DUP8 ADD MSTORE PUSH2 0x3210 DUP4 DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST PUSH1 0x80 DUP7 DUP2 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xA0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xC0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE SWAP3 POP PUSH2 0x3240 SWAP2 POP POP PUSH1 0xE0 DUP5 ADD DUP5 PUSH2 0x3163 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xE0 DUP8 ADD MSTORE PUSH2 0x3253 DUP4 DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x3265 PUSH2 0x100 DUP5 ADD DUP5 PUSH2 0x3163 JUMP JUMPDEST DUP6 DUP4 SUB PUSH2 0x100 DUP8 ADD MSTORE PUSH2 0x3279 DUP4 DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP5 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP7 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP8 DUP4 PUSH2 0x11E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP10 DUP3 LT ISZERO PUSH2 0x32EC JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x32C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x32D2 DUP7 DUP14 DUP4 ADD PUSH2 0x31A4 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x32A8 JUMP JUMPDEST POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x3303 DUP2 DUP6 DUP8 PUSH2 0x3054 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x3 DUP7 LT PUSH2 0x333F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP6 DUP3 MSTORE PUSH1 0x80 PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3356 PUSH1 0x80 DUP4 ADD DUP7 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x60 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x2627 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x338D PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x31A4 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x3401 PUSH1 0xE0 DUP6 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x100 DUP2 DUP2 ADD MLOAD SWAP1 DUP5 ADD MSTORE PUSH2 0x120 SWAP1 DUP2 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH2 0x140 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x160 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x180 DUP4 ADD MSTORE PUSH1 0x80 ADD MLOAD PUSH2 0x1A0 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x345A PUSH2 0x200 DUP4 ADD DUP7 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0x3467 PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x339C JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x3279 DUP2 DUP6 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x348F PUSH2 0x200 DUP4 ADD DUP7 DUP9 PUSH2 0x3054 JUMP JUMPDEST PUSH2 0x349C PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x339C JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x3303 DUP2 DUP6 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH0 PUSH2 0x34C1 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x31A4 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x40 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34E3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504C8CC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3537 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x354C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x355C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x356A PUSH2 0x2C93 DUP3 PUSH2 0x2AE6 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x357E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE SWAP5 ADD MLOAD SWAP4 SWAP6 SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504CCCC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x35E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x35F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x3647 JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x10 DUP5 LT ISZERO PUSH2 0x3647 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0x10 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFBALANCE RETURNDATACOPY PUSH20 0x7B2E0F18CFEB65066AE9814AE1C88262A2BB3943 0xAB BALANCE SWAP8 PUSH16 0x3EE902AABC64736F6C634300081C0033 PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FC DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x570E1A36 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x3B CALLDATASIZE PUSH1 0x4 PUSH2 0xE4 JUMP JUMPDEST PUSH2 0x5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH2 0x6B PUSH1 0x14 DUP3 DUP6 DUP8 PUSH2 0x152 JUMP JUMPDEST PUSH2 0x74 SWAP2 PUSH2 0x179 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP PUSH0 PUSH2 0x87 DUP5 PUSH1 0x14 DUP2 DUP9 PUSH2 0x152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD DUP3 SWAP1 MSTORE POP DUP5 MLOAD SWAP5 SWAP6 POP SWAP4 PUSH1 0x20 SWAP4 POP DUP5 SWAP3 POP SWAP1 POP DUP3 DUP6 ADD DUP3 DUP8 GAS CALL SWAP1 POP PUSH0 MLOAD SWAP4 POP DUP1 PUSH2 0xDB JUMPI PUSH0 SWAP4 POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x11B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x142 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x160 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x16C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x1BF JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS 0xD5 SELFDESTRUCT REVERT BLOBBASEFEE RETURNDATASIZE 0xD2 0xAB PUSH10 0x501A2F8FC7F9592E7A9D 0xD8 SELFDESTRUCT PUSH20 0x291BAA2FDF62374D0AC464736F6C634300081C00 CALLER ","sourceMap":"789:30345:1:-:0;;;986:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;937:68:1;;;789:30345;;;;;;;;;-1:-1:-1;1857:1:60;2061:7;:21;789:30345:1;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_2633":{"entryPoint":null,"id":2633,"parameterSlots":0,"returnSlots":0},"@_compensate_285":{"entryPoint":7811,"id":285,"parameterSlots":2,"returnSlots":0},"@_copyUserOpToMemory_1221":{"entryPoint":8488,"id":1221,"parameterSlots":2,"returnSlots":0},"@_createSenderIfNeeded_1358":{"entryPoint":9895,"id":1358,"parameterSlots":4,"returnSlots":0},"@_executeUserOp_467":{"entryPoint":7125,"id":467,"parameterSlots":3,"returnSlots":1},"@_getRequiredPrefund_1256":{"entryPoint":null,"id":1256,"parameterSlots":1,"returnSlots":1},"@_getValidationData_1761":{"entryPoint":9672,"id":1761,"parameterSlots":1,"returnSlots":2},"@_incrementDeposit_2666":{"entryPoint":5582,"id":2666,"parameterSlots":2,"returnSlots":1},"@_nonReentrantAfter_16414":{"entryPoint":null,"id":16414,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_16406":{"entryPoint":6161,"id":16406,"parameterSlots":0,"returnSlots":0},"@_parseValidationData_2312":{"entryPoint":10593,"id":2312,"parameterSlots":1,"returnSlots":1},"@_postExecution_2156":{"entryPoint":5697,"id":2156,"parameterSlots":4,"returnSlots":1},"@_validateAccountAndPaymasterValidationData_1712":{"entryPoint":6715,"id":1712,"parameterSlots":4,"returnSlots":0},"@_validateAccountPrepayment_1519":{"entryPoint":8756,"id":1519,"parameterSlots":5,"returnSlots":1},"@_validateAndUpdateNonce_2505":{"entryPoint":9157,"id":2505,"parameterSlots":2,"returnSlots":1},"@_validatePaymasterPrepayment_1641":{"entryPoint":9233,"id":1641,"parameterSlots":4,"returnSlots":2},"@_validatePrepayment_1934":{"entryPoint":6201,"id":1934,"parameterSlots":3,"returnSlots":2},"@addStake_2766":{"entryPoint":1929,"id":2766,"parameterSlots":1,"returnSlots":0},"@balanceOf_2624":{"entryPoint":null,"id":2624,"parameterSlots":1,"returnSlots":1},"@call_3766":{"entryPoint":5632,"id":3766,"parameterSlots":4,"returnSlots":1},"@calldataKeccak_2397":{"entryPoint":9774,"id":2397,"parameterSlots":2,"returnSlots":1},"@delegateAndRevert_2235":{"entryPoint":3404,"id":2235,"parameterSlots":3,"returnSlots":0},"@depositTo_2686":{"entryPoint":1328,"id":2686,"parameterSlots":1,"returnSlots":0},"@deposits_2565":{"entryPoint":null,"id":2565,"parameterSlots":0,"returnSlots":0},"@emitPrefundTooLow_515":{"entryPoint":8105,"id":515,"parameterSlots":1,"returnSlots":0},"@emitUserOperationEvent_497":{"entryPoint":8184,"id":497,"parameterSlots":4,"returnSlots":0},"@encode_3103":{"entryPoint":8307,"id":3103,"parameterSlots":1,"returnSlots":1},"@getDepositInfo_2579":{"entryPoint":null,"id":2579,"parameterSlots":1,"returnSlots":1},"@getMemoryBytesFromOffset_2212":{"entryPoint":null,"id":2212,"parameterSlots":1,"returnSlots":1},"@getNonce_2454":{"entryPoint":null,"id":2454,"parameterSlots":2,"returnSlots":1},"@getOffsetOfMemoryBytes_2202":{"entryPoint":null,"id":2202,"parameterSlots":1,"returnSlots":1},"@getReturnData_3801":{"entryPoint":5654,"id":3801,"parameterSlots":1,"returnSlots":1},"@getSenderAddress_1377":{"entryPoint":3527,"id":1377,"parameterSlots":2,"returnSlots":0},"@getSender_2999":{"entryPoint":null,"id":2999,"parameterSlots":1,"returnSlots":1},"@getUserOpGasPrice_2192":{"entryPoint":8056,"id":2192,"parameterSlots":1,"returnSlots":1},"@getUserOpHash_1107":{"entryPoint":2966,"id":1107,"parameterSlots":1,"returnSlots":1},"@handleAggregatedOps_913":{"entryPoint":4551,"id":913,"parameterSlots":3,"returnSlots":0},"@handleOps_623":{"entryPoint":3031,"id":623,"parameterSlots":3,"returnSlots":0},"@hash_3317":{"entryPoint":6137,"id":3317,"parameterSlots":1,"returnSlots":1},"@incrementNonce_2469":{"entryPoint":2580,"id":2469,"parameterSlots":1,"returnSlots":0},"@innerHandleOp_1082":{"entryPoint":1412,"id":1082,"parameterSlots":4,"returnSlots":1},"@min_2415":{"entryPoint":9751,"id":2415,"parameterSlots":2,"returnSlots":1},"@nonceSequenceNumber_2428":{"entryPoint":null,"id":2428,"parameterSlots":0,"returnSlots":0},"@senderCreator_183":{"entryPoint":null,"id":183,"parameterSlots":0,"returnSlots":1},"@supportsInterface_18195":{"entryPoint":null,"id":18195,"parameterSlots":1,"returnSlots":1},"@supportsInterface_252":{"entryPoint":1794,"id":252,"parameterSlots":1,"returnSlots":1},"@unlockStake_2822":{"entryPoint":3710,"id":2822,"parameterSlots":0,"returnSlots":0},"@unpackPaymasterStaticFields_3301":{"entryPoint":9792,"id":3301,"parameterSlots":2,"returnSlots":3},"@unpackUints_3129":{"entryPoint":null,"id":3129,"parameterSlots":1,"returnSlots":2},"@withdrawStake_2905":{"entryPoint":4008,"id":2905,"parameterSlots":1,"returnSlots":0},"@withdrawTo_2960":{"entryPoint":2634,"id":2960,"parameterSlots":2,"returnSlots":0},"abi_decode_address":{"entryPoint":11043,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata":{"entryPoint":11820,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":11272,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_struct_UserOpInfo":{"entryPoint":11059,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":11793,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":12431,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_uint256":{"entryPoint":11696,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":11966,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint192":{"entryPoint":11645,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptrt_address_payable":{"entryPoint":11884,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptrt_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes4":{"entryPoint":11524,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_calldata_ptr":{"entryPoint":12046,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes_memory_ptrt_struct$_UserOpInfo_$947_memory_ptrt_bytes_calldata_ptr":{"entryPoint":11340,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_bytes_memory_ptrt_uint256_fromMemory":{"entryPoint":13606,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IAggregator_$3382":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr":{"entryPoint":11738,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint192":{"entryPoint":11620,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":13523,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint32":{"entryPoint":11563,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint192":{"entryPoint":11598,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_bytes":{"entryPoint":12128,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":12372,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_struct_PackedUserOperation_calldata":{"entryPoint":12708,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_UserOpInfo":{"entryPoint":13212,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":12331,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__to_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":9,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12931,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12346,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_address_t_uint256__to_t_bytes32_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12412,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes_calldata_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13434,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13161,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13382,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_enum$_PostOpMode_$3593_t_bytes_memory_ptr_t_uint256_t_uint256__to_t_uint8_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":13090,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_DepositInfo_$3673_memory_ptr__to_t_struct$_DepositInfo_$3673_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32__fromStack_reversed":{"entryPoint":13179,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32_t_uint256__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32_t_uint256__fromStack_reversed":{"entryPoint":13487,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__to_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bool_t_uint256_t_uint256__to_t_uint256_t_bool_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12174,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13726,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13546,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint32__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint48__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":12508,"id":null,"parameterSlots":2,"returnSlots":2},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":12577,"id":null,"parameterSlots":2,"returnSlots":2},"access_calldata_tail_t_struct$_PackedUserOperation_$3748_calldata_ptr":{"entryPoint":12300,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr":{"entryPoint":12488,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":10934,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_4710":{"entryPoint":10859,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_4711":{"entryPoint":10899,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":10982,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_access_bytes_calldata":{"entryPoint":12643,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":13786,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":12218,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":12458,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":12261,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes16":{"entryPoint":13902,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":13825,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":12237,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":12198,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":12108,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":13070,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":12280,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":10839,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":11020,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:42449:81","nodeType":"YulBlock","src":"0:42449:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"46:95:81","nodeType":"YulBlock","src":"46:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:81","nodeType":"YulLiteral","src":"63:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:81","nodeType":"YulLiteral","src":"70:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:81","nodeType":"YulLiteral","src":"75:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:81","nodeType":"YulIdentifier","src":"66:3:81"},"nativeSrc":"66:20:81","nodeType":"YulFunctionCall","src":"66:20:81"}],"functionName":{"name":"mstore","nativeSrc":"56:6:81","nodeType":"YulIdentifier","src":"56:6:81"},"nativeSrc":"56:31:81","nodeType":"YulFunctionCall","src":"56:31:81"},"nativeSrc":"56:31:81","nodeType":"YulExpressionStatement","src":"56:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:81","nodeType":"YulLiteral","src":"103:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:81","nodeType":"YulLiteral","src":"106:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:81","nodeType":"YulIdentifier","src":"96:6:81"},"nativeSrc":"96:15:81","nodeType":"YulFunctionCall","src":"96:15:81"},"nativeSrc":"96:15:81","nodeType":"YulExpressionStatement","src":"96:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:81","nodeType":"YulLiteral","src":"127:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:81","nodeType":"YulLiteral","src":"130:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:81","nodeType":"YulIdentifier","src":"120:6:81"},"nativeSrc":"120:15:81","nodeType":"YulFunctionCall","src":"120:15:81"},"nativeSrc":"120:15:81","nodeType":"YulExpressionStatement","src":"120:15:81"}]},"name":"panic_error_0x41","nativeSrc":"14:127:81","nodeType":"YulFunctionDefinition","src":"14:127:81"},{"body":{"nativeSrc":"192:207:81","nodeType":"YulBlock","src":"192:207:81","statements":[{"nativeSrc":"202:19:81","nodeType":"YulAssignment","src":"202:19:81","value":{"arguments":[{"kind":"number","nativeSrc":"218:2:81","nodeType":"YulLiteral","src":"218:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"212:5:81","nodeType":"YulIdentifier","src":"212:5:81"},"nativeSrc":"212:9:81","nodeType":"YulFunctionCall","src":"212:9:81"},"variableNames":[{"name":"memPtr","nativeSrc":"202:6:81","nodeType":"YulIdentifier","src":"202:6:81"}]},{"nativeSrc":"230:35:81","nodeType":"YulVariableDeclaration","src":"230:35:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"252:6:81","nodeType":"YulIdentifier","src":"252:6:81"},{"kind":"number","nativeSrc":"260:4:81","nodeType":"YulLiteral","src":"260:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"248:3:81","nodeType":"YulIdentifier","src":"248:3:81"},"nativeSrc":"248:17:81","nodeType":"YulFunctionCall","src":"248:17:81"},"variables":[{"name":"newFreePtr","nativeSrc":"234:10:81","nodeType":"YulTypedName","src":"234:10:81","type":""}]},{"body":{"nativeSrc":"340:22:81","nodeType":"YulBlock","src":"340:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"342:16:81","nodeType":"YulIdentifier","src":"342:16:81"},"nativeSrc":"342:18:81","nodeType":"YulFunctionCall","src":"342:18:81"},"nativeSrc":"342:18:81","nodeType":"YulExpressionStatement","src":"342:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"283:10:81","nodeType":"YulIdentifier","src":"283:10:81"},{"kind":"number","nativeSrc":"295:18:81","nodeType":"YulLiteral","src":"295:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"280:2:81","nodeType":"YulIdentifier","src":"280:2:81"},"nativeSrc":"280:34:81","nodeType":"YulFunctionCall","src":"280:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"319:10:81","nodeType":"YulIdentifier","src":"319:10:81"},{"name":"memPtr","nativeSrc":"331:6:81","nodeType":"YulIdentifier","src":"331:6:81"}],"functionName":{"name":"lt","nativeSrc":"316:2:81","nodeType":"YulIdentifier","src":"316:2:81"},"nativeSrc":"316:22:81","nodeType":"YulFunctionCall","src":"316:22:81"}],"functionName":{"name":"or","nativeSrc":"277:2:81","nodeType":"YulIdentifier","src":"277:2:81"},"nativeSrc":"277:62:81","nodeType":"YulFunctionCall","src":"277:62:81"},"nativeSrc":"274:88:81","nodeType":"YulIf","src":"274:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"378:2:81","nodeType":"YulLiteral","src":"378:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"382:10:81","nodeType":"YulIdentifier","src":"382:10:81"}],"functionName":{"name":"mstore","nativeSrc":"371:6:81","nodeType":"YulIdentifier","src":"371:6:81"},"nativeSrc":"371:22:81","nodeType":"YulFunctionCall","src":"371:22:81"},"nativeSrc":"371:22:81","nodeType":"YulExpressionStatement","src":"371:22:81"}]},"name":"allocate_memory_4710","nativeSrc":"146:253:81","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"181:6:81","nodeType":"YulTypedName","src":"181:6:81","type":""}],"src":"146:253:81"},{"body":{"nativeSrc":"450:209:81","nodeType":"YulBlock","src":"450:209:81","statements":[{"nativeSrc":"460:19:81","nodeType":"YulAssignment","src":"460:19:81","value":{"arguments":[{"kind":"number","nativeSrc":"476:2:81","nodeType":"YulLiteral","src":"476:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"470:5:81","nodeType":"YulIdentifier","src":"470:5:81"},"nativeSrc":"470:9:81","nodeType":"YulFunctionCall","src":"470:9:81"},"variableNames":[{"name":"memPtr","nativeSrc":"460:6:81","nodeType":"YulIdentifier","src":"460:6:81"}]},{"nativeSrc":"488:37:81","nodeType":"YulVariableDeclaration","src":"488:37:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"510:6:81","nodeType":"YulIdentifier","src":"510:6:81"},{"kind":"number","nativeSrc":"518:6:81","nodeType":"YulLiteral","src":"518:6:81","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"506:3:81","nodeType":"YulIdentifier","src":"506:3:81"},"nativeSrc":"506:19:81","nodeType":"YulFunctionCall","src":"506:19:81"},"variables":[{"name":"newFreePtr","nativeSrc":"492:10:81","nodeType":"YulTypedName","src":"492:10:81","type":""}]},{"body":{"nativeSrc":"600:22:81","nodeType":"YulBlock","src":"600:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"602:16:81","nodeType":"YulIdentifier","src":"602:16:81"},"nativeSrc":"602:18:81","nodeType":"YulFunctionCall","src":"602:18:81"},"nativeSrc":"602:18:81","nodeType":"YulExpressionStatement","src":"602:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"543:10:81","nodeType":"YulIdentifier","src":"543:10:81"},{"kind":"number","nativeSrc":"555:18:81","nodeType":"YulLiteral","src":"555:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"540:2:81","nodeType":"YulIdentifier","src":"540:2:81"},"nativeSrc":"540:34:81","nodeType":"YulFunctionCall","src":"540:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"579:10:81","nodeType":"YulIdentifier","src":"579:10:81"},{"name":"memPtr","nativeSrc":"591:6:81","nodeType":"YulIdentifier","src":"591:6:81"}],"functionName":{"name":"lt","nativeSrc":"576:2:81","nodeType":"YulIdentifier","src":"576:2:81"},"nativeSrc":"576:22:81","nodeType":"YulFunctionCall","src":"576:22:81"}],"functionName":{"name":"or","nativeSrc":"537:2:81","nodeType":"YulIdentifier","src":"537:2:81"},"nativeSrc":"537:62:81","nodeType":"YulFunctionCall","src":"537:62:81"},"nativeSrc":"534:88:81","nodeType":"YulIf","src":"534:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"638:2:81","nodeType":"YulLiteral","src":"638:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"642:10:81","nodeType":"YulIdentifier","src":"642:10:81"}],"functionName":{"name":"mstore","nativeSrc":"631:6:81","nodeType":"YulIdentifier","src":"631:6:81"},"nativeSrc":"631:22:81","nodeType":"YulFunctionCall","src":"631:22:81"},"nativeSrc":"631:22:81","nodeType":"YulExpressionStatement","src":"631:22:81"}]},"name":"allocate_memory_4711","nativeSrc":"404:255:81","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"439:6:81","nodeType":"YulTypedName","src":"439:6:81","type":""}],"src":"404:255:81"},{"body":{"nativeSrc":"709:230:81","nodeType":"YulBlock","src":"709:230:81","statements":[{"nativeSrc":"719:19:81","nodeType":"YulAssignment","src":"719:19:81","value":{"arguments":[{"kind":"number","nativeSrc":"735:2:81","nodeType":"YulLiteral","src":"735:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"729:5:81","nodeType":"YulIdentifier","src":"729:5:81"},"nativeSrc":"729:9:81","nodeType":"YulFunctionCall","src":"729:9:81"},"variableNames":[{"name":"memPtr","nativeSrc":"719:6:81","nodeType":"YulIdentifier","src":"719:6:81"}]},{"nativeSrc":"747:58:81","nodeType":"YulVariableDeclaration","src":"747:58:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"769:6:81","nodeType":"YulIdentifier","src":"769:6:81"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"785:4:81","nodeType":"YulIdentifier","src":"785:4:81"},{"kind":"number","nativeSrc":"791:2:81","nodeType":"YulLiteral","src":"791:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"781:3:81","nodeType":"YulIdentifier","src":"781:3:81"},"nativeSrc":"781:13:81","nodeType":"YulFunctionCall","src":"781:13:81"},{"arguments":[{"kind":"number","nativeSrc":"800:2:81","nodeType":"YulLiteral","src":"800:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"796:3:81","nodeType":"YulIdentifier","src":"796:3:81"},"nativeSrc":"796:7:81","nodeType":"YulFunctionCall","src":"796:7:81"}],"functionName":{"name":"and","nativeSrc":"777:3:81","nodeType":"YulIdentifier","src":"777:3:81"},"nativeSrc":"777:27:81","nodeType":"YulFunctionCall","src":"777:27:81"}],"functionName":{"name":"add","nativeSrc":"765:3:81","nodeType":"YulIdentifier","src":"765:3:81"},"nativeSrc":"765:40:81","nodeType":"YulFunctionCall","src":"765:40:81"},"variables":[{"name":"newFreePtr","nativeSrc":"751:10:81","nodeType":"YulTypedName","src":"751:10:81","type":""}]},{"body":{"nativeSrc":"880:22:81","nodeType":"YulBlock","src":"880:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"882:16:81","nodeType":"YulIdentifier","src":"882:16:81"},"nativeSrc":"882:18:81","nodeType":"YulFunctionCall","src":"882:18:81"},"nativeSrc":"882:18:81","nodeType":"YulExpressionStatement","src":"882:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"823:10:81","nodeType":"YulIdentifier","src":"823:10:81"},{"kind":"number","nativeSrc":"835:18:81","nodeType":"YulLiteral","src":"835:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"820:2:81","nodeType":"YulIdentifier","src":"820:2:81"},"nativeSrc":"820:34:81","nodeType":"YulFunctionCall","src":"820:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"859:10:81","nodeType":"YulIdentifier","src":"859:10:81"},{"name":"memPtr","nativeSrc":"871:6:81","nodeType":"YulIdentifier","src":"871:6:81"}],"functionName":{"name":"lt","nativeSrc":"856:2:81","nodeType":"YulIdentifier","src":"856:2:81"},"nativeSrc":"856:22:81","nodeType":"YulFunctionCall","src":"856:22:81"}],"functionName":{"name":"or","nativeSrc":"817:2:81","nodeType":"YulIdentifier","src":"817:2:81"},"nativeSrc":"817:62:81","nodeType":"YulFunctionCall","src":"817:62:81"},"nativeSrc":"814:88:81","nodeType":"YulIf","src":"814:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"918:2:81","nodeType":"YulLiteral","src":"918:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"922:10:81","nodeType":"YulIdentifier","src":"922:10:81"}],"functionName":{"name":"mstore","nativeSrc":"911:6:81","nodeType":"YulIdentifier","src":"911:6:81"},"nativeSrc":"911:22:81","nodeType":"YulFunctionCall","src":"911:22:81"},"nativeSrc":"911:22:81","nodeType":"YulExpressionStatement","src":"911:22:81"}]},"name":"allocate_memory","nativeSrc":"664:275:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"689:4:81","nodeType":"YulTypedName","src":"689:4:81","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"698:6:81","nodeType":"YulTypedName","src":"698:6:81","type":""}],"src":"664:275:81"},{"body":{"nativeSrc":"1001:129:81","nodeType":"YulBlock","src":"1001:129:81","statements":[{"body":{"nativeSrc":"1045:22:81","nodeType":"YulBlock","src":"1045:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1047:16:81","nodeType":"YulIdentifier","src":"1047:16:81"},"nativeSrc":"1047:18:81","nodeType":"YulFunctionCall","src":"1047:18:81"},"nativeSrc":"1047:18:81","nodeType":"YulExpressionStatement","src":"1047:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1017:6:81","nodeType":"YulIdentifier","src":"1017:6:81"},{"kind":"number","nativeSrc":"1025:18:81","nodeType":"YulLiteral","src":"1025:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1014:2:81","nodeType":"YulIdentifier","src":"1014:2:81"},"nativeSrc":"1014:30:81","nodeType":"YulFunctionCall","src":"1014:30:81"},"nativeSrc":"1011:56:81","nodeType":"YulIf","src":"1011:56:81"},{"nativeSrc":"1076:48:81","nodeType":"YulAssignment","src":"1076:48:81","value":{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1096:6:81","nodeType":"YulIdentifier","src":"1096:6:81"},{"kind":"number","nativeSrc":"1104:2:81","nodeType":"YulLiteral","src":"1104:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1092:3:81","nodeType":"YulIdentifier","src":"1092:3:81"},"nativeSrc":"1092:15:81","nodeType":"YulFunctionCall","src":"1092:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1113:2:81","nodeType":"YulLiteral","src":"1113:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1109:3:81","nodeType":"YulIdentifier","src":"1109:3:81"},"nativeSrc":"1109:7:81","nodeType":"YulFunctionCall","src":"1109:7:81"}],"functionName":{"name":"and","nativeSrc":"1088:3:81","nodeType":"YulIdentifier","src":"1088:3:81"},"nativeSrc":"1088:29:81","nodeType":"YulFunctionCall","src":"1088:29:81"},{"kind":"number","nativeSrc":"1119:4:81","nodeType":"YulLiteral","src":"1119:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1084:3:81","nodeType":"YulIdentifier","src":"1084:3:81"},"nativeSrc":"1084:40:81","nodeType":"YulFunctionCall","src":"1084:40:81"},"variableNames":[{"name":"size","nativeSrc":"1076:4:81","nodeType":"YulIdentifier","src":"1076:4:81"}]}]},"name":"array_allocation_size_bytes","nativeSrc":"944:186:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nativeSrc":"981:6:81","nodeType":"YulTypedName","src":"981:6:81","type":""}],"returnVariables":[{"name":"size","nativeSrc":"992:4:81","nodeType":"YulTypedName","src":"992:4:81","type":""}],"src":"944:186:81"},{"body":{"nativeSrc":"1180:86:81","nodeType":"YulBlock","src":"1180:86:81","statements":[{"body":{"nativeSrc":"1244:16:81","nodeType":"YulBlock","src":"1244:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1253:1:81","nodeType":"YulLiteral","src":"1253:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1256:1:81","nodeType":"YulLiteral","src":"1256:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1246:6:81","nodeType":"YulIdentifier","src":"1246:6:81"},"nativeSrc":"1246:12:81","nodeType":"YulFunctionCall","src":"1246:12:81"},"nativeSrc":"1246:12:81","nodeType":"YulExpressionStatement","src":"1246:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1203:5:81","nodeType":"YulIdentifier","src":"1203:5:81"},{"arguments":[{"name":"value","nativeSrc":"1214:5:81","nodeType":"YulIdentifier","src":"1214:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1229:3:81","nodeType":"YulLiteral","src":"1229:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1234:1:81","nodeType":"YulLiteral","src":"1234:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1225:3:81","nodeType":"YulIdentifier","src":"1225:3:81"},"nativeSrc":"1225:11:81","nodeType":"YulFunctionCall","src":"1225:11:81"},{"kind":"number","nativeSrc":"1238:1:81","nodeType":"YulLiteral","src":"1238:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1221:3:81","nodeType":"YulIdentifier","src":"1221:3:81"},"nativeSrc":"1221:19:81","nodeType":"YulFunctionCall","src":"1221:19:81"}],"functionName":{"name":"and","nativeSrc":"1210:3:81","nodeType":"YulIdentifier","src":"1210:3:81"},"nativeSrc":"1210:31:81","nodeType":"YulFunctionCall","src":"1210:31:81"}],"functionName":{"name":"eq","nativeSrc":"1200:2:81","nodeType":"YulIdentifier","src":"1200:2:81"},"nativeSrc":"1200:42:81","nodeType":"YulFunctionCall","src":"1200:42:81"}],"functionName":{"name":"iszero","nativeSrc":"1193:6:81","nodeType":"YulIdentifier","src":"1193:6:81"},"nativeSrc":"1193:50:81","nodeType":"YulFunctionCall","src":"1193:50:81"},"nativeSrc":"1190:70:81","nodeType":"YulIf","src":"1190:70:81"}]},"name":"validator_revert_address","nativeSrc":"1135:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1169:5:81","nodeType":"YulTypedName","src":"1169:5:81","type":""}],"src":"1135:131:81"},{"body":{"nativeSrc":"1320:85:81","nodeType":"YulBlock","src":"1320:85:81","statements":[{"nativeSrc":"1330:29:81","nodeType":"YulAssignment","src":"1330:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"1352:6:81","nodeType":"YulIdentifier","src":"1352:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"1339:12:81","nodeType":"YulIdentifier","src":"1339:12:81"},"nativeSrc":"1339:20:81","nodeType":"YulFunctionCall","src":"1339:20:81"},"variableNames":[{"name":"value","nativeSrc":"1330:5:81","nodeType":"YulIdentifier","src":"1330:5:81"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1393:5:81","nodeType":"YulIdentifier","src":"1393:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1368:24:81","nodeType":"YulIdentifier","src":"1368:24:81"},"nativeSrc":"1368:31:81","nodeType":"YulFunctionCall","src":"1368:31:81"},"nativeSrc":"1368:31:81","nodeType":"YulExpressionStatement","src":"1368:31:81"}]},"name":"abi_decode_address","nativeSrc":"1271:134:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1299:6:81","nodeType":"YulTypedName","src":"1299:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1310:5:81","nodeType":"YulTypedName","src":"1310:5:81","type":""}],"src":"1271:134:81"},{"body":{"nativeSrc":"1477:1832:81","nodeType":"YulBlock","src":"1477:1832:81","statements":[{"nativeSrc":"1487:29:81","nodeType":"YulVariableDeclaration","src":"1487:29:81","value":{"arguments":[{"name":"end","nativeSrc":"1501:3:81","nodeType":"YulIdentifier","src":"1501:3:81"},{"name":"headStart","nativeSrc":"1506:9:81","nodeType":"YulIdentifier","src":"1506:9:81"}],"functionName":{"name":"sub","nativeSrc":"1497:3:81","nodeType":"YulIdentifier","src":"1497:3:81"},"nativeSrc":"1497:19:81","nodeType":"YulFunctionCall","src":"1497:19:81"},"variables":[{"name":"_1","nativeSrc":"1491:2:81","nodeType":"YulTypedName","src":"1491:2:81","type":""}]},{"body":{"nativeSrc":"1544:16:81","nodeType":"YulBlock","src":"1544:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1553:1:81","nodeType":"YulLiteral","src":"1553:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1556:1:81","nodeType":"YulLiteral","src":"1556:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1546:6:81","nodeType":"YulIdentifier","src":"1546:6:81"},"nativeSrc":"1546:12:81","nodeType":"YulFunctionCall","src":"1546:12:81"},"nativeSrc":"1546:12:81","nodeType":"YulExpressionStatement","src":"1546:12:81"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"1532:2:81","nodeType":"YulIdentifier","src":"1532:2:81"},{"kind":"number","nativeSrc":"1536:6:81","nodeType":"YulLiteral","src":"1536:6:81","type":"","value":"0x01c0"}],"functionName":{"name":"slt","nativeSrc":"1528:3:81","nodeType":"YulIdentifier","src":"1528:3:81"},"nativeSrc":"1528:15:81","nodeType":"YulFunctionCall","src":"1528:15:81"},"nativeSrc":"1525:35:81","nodeType":"YulIf","src":"1525:35:81"},{"nativeSrc":"1569:31:81","nodeType":"YulAssignment","src":"1569:31:81","value":{"arguments":[],"functionName":{"name":"allocate_memory_4710","nativeSrc":"1578:20:81","nodeType":"YulIdentifier","src":"1578:20:81"},"nativeSrc":"1578:22:81","nodeType":"YulFunctionCall","src":"1578:22:81"},"variableNames":[{"name":"value","nativeSrc":"1569:5:81","nodeType":"YulIdentifier","src":"1569:5:81"}]},{"body":{"nativeSrc":"1628:16:81","nodeType":"YulBlock","src":"1628:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1637:1:81","nodeType":"YulLiteral","src":"1637:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1640:1:81","nodeType":"YulLiteral","src":"1640:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1630:6:81","nodeType":"YulIdentifier","src":"1630:6:81"},"nativeSrc":"1630:12:81","nodeType":"YulFunctionCall","src":"1630:12:81"},"nativeSrc":"1630:12:81","nodeType":"YulExpressionStatement","src":"1630:12:81"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"1616:2:81","nodeType":"YulIdentifier","src":"1616:2:81"},{"kind":"number","nativeSrc":"1620:6:81","nodeType":"YulLiteral","src":"1620:6:81","type":"","value":"0x0140"}],"functionName":{"name":"slt","nativeSrc":"1612:3:81","nodeType":"YulIdentifier","src":"1612:3:81"},"nativeSrc":"1612:15:81","nodeType":"YulFunctionCall","src":"1612:15:81"},"nativeSrc":"1609:35:81","nodeType":"YulIf","src":"1609:35:81"},{"nativeSrc":"1653:37:81","nodeType":"YulVariableDeclaration","src":"1653:37:81","value":{"arguments":[],"functionName":{"name":"allocate_memory_4711","nativeSrc":"1668:20:81","nodeType":"YulIdentifier","src":"1668:20:81"},"nativeSrc":"1668:22:81","nodeType":"YulFunctionCall","src":"1668:22:81"},"variables":[{"name":"value_1","nativeSrc":"1657:7:81","nodeType":"YulTypedName","src":"1657:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"1706:7:81","nodeType":"YulIdentifier","src":"1706:7:81"},{"arguments":[{"name":"headStart","nativeSrc":"1734:9:81","nodeType":"YulIdentifier","src":"1734:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1715:18:81","nodeType":"YulIdentifier","src":"1715:18:81"},"nativeSrc":"1715:29:81","nodeType":"YulFunctionCall","src":"1715:29:81"}],"functionName":{"name":"mstore","nativeSrc":"1699:6:81","nodeType":"YulIdentifier","src":"1699:6:81"},"nativeSrc":"1699:46:81","nodeType":"YulFunctionCall","src":"1699:46:81"},"nativeSrc":"1699:46:81","nodeType":"YulExpressionStatement","src":"1699:46:81"},{"nativeSrc":"1754:16:81","nodeType":"YulVariableDeclaration","src":"1754:16:81","value":{"kind":"number","nativeSrc":"1769:1:81","nodeType":"YulLiteral","src":"1769:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"1758:7:81","nodeType":"YulTypedName","src":"1758:7:81","type":""}]},{"nativeSrc":"1779:43:81","nodeType":"YulAssignment","src":"1779:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1807:9:81","nodeType":"YulIdentifier","src":"1807:9:81"},{"kind":"number","nativeSrc":"1818:2:81","nodeType":"YulLiteral","src":"1818:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1803:3:81","nodeType":"YulIdentifier","src":"1803:3:81"},"nativeSrc":"1803:18:81","nodeType":"YulFunctionCall","src":"1803:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1790:12:81","nodeType":"YulIdentifier","src":"1790:12:81"},"nativeSrc":"1790:32:81","nodeType":"YulFunctionCall","src":"1790:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"1779:7:81","nodeType":"YulIdentifier","src":"1779:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1842:7:81","nodeType":"YulIdentifier","src":"1842:7:81"},{"kind":"number","nativeSrc":"1851:2:81","nodeType":"YulLiteral","src":"1851:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1838:3:81","nodeType":"YulIdentifier","src":"1838:3:81"},"nativeSrc":"1838:16:81","nodeType":"YulFunctionCall","src":"1838:16:81"},{"name":"value_2","nativeSrc":"1856:7:81","nodeType":"YulIdentifier","src":"1856:7:81"}],"functionName":{"name":"mstore","nativeSrc":"1831:6:81","nodeType":"YulIdentifier","src":"1831:6:81"},"nativeSrc":"1831:33:81","nodeType":"YulFunctionCall","src":"1831:33:81"},"nativeSrc":"1831:33:81","nodeType":"YulExpressionStatement","src":"1831:33:81"},{"nativeSrc":"1873:16:81","nodeType":"YulVariableDeclaration","src":"1873:16:81","value":{"kind":"number","nativeSrc":"1888:1:81","nodeType":"YulLiteral","src":"1888:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"1877:7:81","nodeType":"YulTypedName","src":"1877:7:81","type":""}]},{"nativeSrc":"1898:43:81","nodeType":"YulAssignment","src":"1898:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1926:9:81","nodeType":"YulIdentifier","src":"1926:9:81"},{"kind":"number","nativeSrc":"1937:2:81","nodeType":"YulLiteral","src":"1937:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1922:3:81","nodeType":"YulIdentifier","src":"1922:3:81"},"nativeSrc":"1922:18:81","nodeType":"YulFunctionCall","src":"1922:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1909:12:81","nodeType":"YulIdentifier","src":"1909:12:81"},"nativeSrc":"1909:32:81","nodeType":"YulFunctionCall","src":"1909:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"1898:7:81","nodeType":"YulIdentifier","src":"1898:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1961:7:81","nodeType":"YulIdentifier","src":"1961:7:81"},{"kind":"number","nativeSrc":"1970:2:81","nodeType":"YulLiteral","src":"1970:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1957:3:81","nodeType":"YulIdentifier","src":"1957:3:81"},"nativeSrc":"1957:16:81","nodeType":"YulFunctionCall","src":"1957:16:81"},{"name":"value_3","nativeSrc":"1975:7:81","nodeType":"YulIdentifier","src":"1975:7:81"}],"functionName":{"name":"mstore","nativeSrc":"1950:6:81","nodeType":"YulIdentifier","src":"1950:6:81"},"nativeSrc":"1950:33:81","nodeType":"YulFunctionCall","src":"1950:33:81"},"nativeSrc":"1950:33:81","nodeType":"YulExpressionStatement","src":"1950:33:81"},{"nativeSrc":"1992:16:81","nodeType":"YulVariableDeclaration","src":"1992:16:81","value":{"kind":"number","nativeSrc":"2007:1:81","nodeType":"YulLiteral","src":"2007:1:81","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"1996:7:81","nodeType":"YulTypedName","src":"1996:7:81","type":""}]},{"nativeSrc":"2017:43:81","nodeType":"YulAssignment","src":"2017:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2045:9:81","nodeType":"YulIdentifier","src":"2045:9:81"},{"kind":"number","nativeSrc":"2056:2:81","nodeType":"YulLiteral","src":"2056:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2041:3:81","nodeType":"YulIdentifier","src":"2041:3:81"},"nativeSrc":"2041:18:81","nodeType":"YulFunctionCall","src":"2041:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"2028:12:81","nodeType":"YulIdentifier","src":"2028:12:81"},"nativeSrc":"2028:32:81","nodeType":"YulFunctionCall","src":"2028:32:81"},"variableNames":[{"name":"value_4","nativeSrc":"2017:7:81","nodeType":"YulIdentifier","src":"2017:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2080:7:81","nodeType":"YulIdentifier","src":"2080:7:81"},{"kind":"number","nativeSrc":"2089:2:81","nodeType":"YulLiteral","src":"2089:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2076:3:81","nodeType":"YulIdentifier","src":"2076:3:81"},"nativeSrc":"2076:16:81","nodeType":"YulFunctionCall","src":"2076:16:81"},{"name":"value_4","nativeSrc":"2094:7:81","nodeType":"YulIdentifier","src":"2094:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2069:6:81","nodeType":"YulIdentifier","src":"2069:6:81"},"nativeSrc":"2069:33:81","nodeType":"YulFunctionCall","src":"2069:33:81"},"nativeSrc":"2069:33:81","nodeType":"YulExpressionStatement","src":"2069:33:81"},{"nativeSrc":"2111:16:81","nodeType":"YulVariableDeclaration","src":"2111:16:81","value":{"kind":"number","nativeSrc":"2126:1:81","nodeType":"YulLiteral","src":"2126:1:81","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"2115:7:81","nodeType":"YulTypedName","src":"2115:7:81","type":""}]},{"nativeSrc":"2136:44:81","nodeType":"YulAssignment","src":"2136:44:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2164:9:81","nodeType":"YulIdentifier","src":"2164:9:81"},{"kind":"number","nativeSrc":"2175:3:81","nodeType":"YulLiteral","src":"2175:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"2160:3:81","nodeType":"YulIdentifier","src":"2160:3:81"},"nativeSrc":"2160:19:81","nodeType":"YulFunctionCall","src":"2160:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"2147:12:81","nodeType":"YulIdentifier","src":"2147:12:81"},"nativeSrc":"2147:33:81","nodeType":"YulFunctionCall","src":"2147:33:81"},"variableNames":[{"name":"value_5","nativeSrc":"2136:7:81","nodeType":"YulIdentifier","src":"2136:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2200:7:81","nodeType":"YulIdentifier","src":"2200:7:81"},{"kind":"number","nativeSrc":"2209:3:81","nodeType":"YulLiteral","src":"2209:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"2196:3:81","nodeType":"YulIdentifier","src":"2196:3:81"},"nativeSrc":"2196:17:81","nodeType":"YulFunctionCall","src":"2196:17:81"},{"name":"value_5","nativeSrc":"2215:7:81","nodeType":"YulIdentifier","src":"2215:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2189:6:81","nodeType":"YulIdentifier","src":"2189:6:81"},"nativeSrc":"2189:34:81","nodeType":"YulFunctionCall","src":"2189:34:81"},"nativeSrc":"2189:34:81","nodeType":"YulExpressionStatement","src":"2189:34:81"},{"nativeSrc":"2232:16:81","nodeType":"YulVariableDeclaration","src":"2232:16:81","value":{"kind":"number","nativeSrc":"2247:1:81","nodeType":"YulLiteral","src":"2247:1:81","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"2236:7:81","nodeType":"YulTypedName","src":"2236:7:81","type":""}]},{"nativeSrc":"2257:45:81","nodeType":"YulAssignment","src":"2257:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2285:9:81","nodeType":"YulIdentifier","src":"2285:9:81"},{"kind":"number","nativeSrc":"2296:4:81","nodeType":"YulLiteral","src":"2296:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2281:3:81","nodeType":"YulIdentifier","src":"2281:3:81"},"nativeSrc":"2281:20:81","nodeType":"YulFunctionCall","src":"2281:20:81"}],"functionName":{"name":"calldataload","nativeSrc":"2268:12:81","nodeType":"YulIdentifier","src":"2268:12:81"},"nativeSrc":"2268:34:81","nodeType":"YulFunctionCall","src":"2268:34:81"},"variableNames":[{"name":"value_6","nativeSrc":"2257:7:81","nodeType":"YulIdentifier","src":"2257:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2322:7:81","nodeType":"YulIdentifier","src":"2322:7:81"},{"kind":"number","nativeSrc":"2331:4:81","nodeType":"YulLiteral","src":"2331:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2318:3:81","nodeType":"YulIdentifier","src":"2318:3:81"},"nativeSrc":"2318:18:81","nodeType":"YulFunctionCall","src":"2318:18:81"},{"name":"value_6","nativeSrc":"2338:7:81","nodeType":"YulIdentifier","src":"2338:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2311:6:81","nodeType":"YulIdentifier","src":"2311:6:81"},"nativeSrc":"2311:35:81","nodeType":"YulFunctionCall","src":"2311:35:81"},"nativeSrc":"2311:35:81","nodeType":"YulExpressionStatement","src":"2311:35:81"},{"nativeSrc":"2355:16:81","nodeType":"YulVariableDeclaration","src":"2355:16:81","value":{"kind":"number","nativeSrc":"2370:1:81","nodeType":"YulLiteral","src":"2370:1:81","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"2359:7:81","nodeType":"YulTypedName","src":"2359:7:81","type":""}]},{"nativeSrc":"2380:44:81","nodeType":"YulAssignment","src":"2380:44:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2408:9:81","nodeType":"YulIdentifier","src":"2408:9:81"},{"kind":"number","nativeSrc":"2419:3:81","nodeType":"YulLiteral","src":"2419:3:81","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"2404:3:81","nodeType":"YulIdentifier","src":"2404:3:81"},"nativeSrc":"2404:19:81","nodeType":"YulFunctionCall","src":"2404:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"2391:12:81","nodeType":"YulIdentifier","src":"2391:12:81"},"nativeSrc":"2391:33:81","nodeType":"YulFunctionCall","src":"2391:33:81"},"variableNames":[{"name":"value_7","nativeSrc":"2380:7:81","nodeType":"YulIdentifier","src":"2380:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2444:7:81","nodeType":"YulIdentifier","src":"2444:7:81"},{"kind":"number","nativeSrc":"2453:3:81","nodeType":"YulLiteral","src":"2453:3:81","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"2440:3:81","nodeType":"YulIdentifier","src":"2440:3:81"},"nativeSrc":"2440:17:81","nodeType":"YulFunctionCall","src":"2440:17:81"},{"name":"value_7","nativeSrc":"2459:7:81","nodeType":"YulIdentifier","src":"2459:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2433:6:81","nodeType":"YulIdentifier","src":"2433:6:81"},"nativeSrc":"2433:34:81","nodeType":"YulFunctionCall","src":"2433:34:81"},"nativeSrc":"2433:34:81","nodeType":"YulExpressionStatement","src":"2433:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2487:7:81","nodeType":"YulIdentifier","src":"2487:7:81"},{"kind":"number","nativeSrc":"2496:3:81","nodeType":"YulLiteral","src":"2496:3:81","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"2483:3:81","nodeType":"YulIdentifier","src":"2483:3:81"},"nativeSrc":"2483:17:81","nodeType":"YulFunctionCall","src":"2483:17:81"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2525:9:81","nodeType":"YulIdentifier","src":"2525:9:81"},{"kind":"number","nativeSrc":"2536:3:81","nodeType":"YulLiteral","src":"2536:3:81","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"2521:3:81","nodeType":"YulIdentifier","src":"2521:3:81"},"nativeSrc":"2521:19:81","nodeType":"YulFunctionCall","src":"2521:19:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2502:18:81","nodeType":"YulIdentifier","src":"2502:18:81"},"nativeSrc":"2502:39:81","nodeType":"YulFunctionCall","src":"2502:39:81"}],"functionName":{"name":"mstore","nativeSrc":"2476:6:81","nodeType":"YulIdentifier","src":"2476:6:81"},"nativeSrc":"2476:66:81","nodeType":"YulFunctionCall","src":"2476:66:81"},"nativeSrc":"2476:66:81","nodeType":"YulExpressionStatement","src":"2476:66:81"},{"nativeSrc":"2551:16:81","nodeType":"YulVariableDeclaration","src":"2551:16:81","value":{"kind":"number","nativeSrc":"2566:1:81","nodeType":"YulLiteral","src":"2566:1:81","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"2555:7:81","nodeType":"YulTypedName","src":"2555:7:81","type":""}]},{"nativeSrc":"2576:44:81","nodeType":"YulAssignment","src":"2576:44:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2604:9:81","nodeType":"YulIdentifier","src":"2604:9:81"},{"kind":"number","nativeSrc":"2615:3:81","nodeType":"YulLiteral","src":"2615:3:81","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"2600:3:81","nodeType":"YulIdentifier","src":"2600:3:81"},"nativeSrc":"2600:19:81","nodeType":"YulFunctionCall","src":"2600:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"2587:12:81","nodeType":"YulIdentifier","src":"2587:12:81"},"nativeSrc":"2587:33:81","nodeType":"YulFunctionCall","src":"2587:33:81"},"variableNames":[{"name":"value_8","nativeSrc":"2576:7:81","nodeType":"YulIdentifier","src":"2576:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2640:7:81","nodeType":"YulIdentifier","src":"2640:7:81"},{"kind":"number","nativeSrc":"2649:3:81","nodeType":"YulLiteral","src":"2649:3:81","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"2636:3:81","nodeType":"YulIdentifier","src":"2636:3:81"},"nativeSrc":"2636:17:81","nodeType":"YulFunctionCall","src":"2636:17:81"},{"name":"value_8","nativeSrc":"2655:7:81","nodeType":"YulIdentifier","src":"2655:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2629:6:81","nodeType":"YulIdentifier","src":"2629:6:81"},"nativeSrc":"2629:34:81","nodeType":"YulFunctionCall","src":"2629:34:81"},"nativeSrc":"2629:34:81","nodeType":"YulExpressionStatement","src":"2629:34:81"},{"nativeSrc":"2672:16:81","nodeType":"YulVariableDeclaration","src":"2672:16:81","value":{"kind":"number","nativeSrc":"2687:1:81","nodeType":"YulLiteral","src":"2687:1:81","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"2676:7:81","nodeType":"YulTypedName","src":"2676:7:81","type":""}]},{"nativeSrc":"2697:44:81","nodeType":"YulAssignment","src":"2697:44:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2725:9:81","nodeType":"YulIdentifier","src":"2725:9:81"},{"kind":"number","nativeSrc":"2736:3:81","nodeType":"YulLiteral","src":"2736:3:81","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"2721:3:81","nodeType":"YulIdentifier","src":"2721:3:81"},"nativeSrc":"2721:19:81","nodeType":"YulFunctionCall","src":"2721:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"2708:12:81","nodeType":"YulIdentifier","src":"2708:12:81"},"nativeSrc":"2708:33:81","nodeType":"YulFunctionCall","src":"2708:33:81"},"variableNames":[{"name":"value_9","nativeSrc":"2697:7:81","nodeType":"YulIdentifier","src":"2697:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2761:7:81","nodeType":"YulIdentifier","src":"2761:7:81"},{"kind":"number","nativeSrc":"2770:3:81","nodeType":"YulLiteral","src":"2770:3:81","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"2757:3:81","nodeType":"YulIdentifier","src":"2757:3:81"},"nativeSrc":"2757:17:81","nodeType":"YulFunctionCall","src":"2757:17:81"},{"name":"value_9","nativeSrc":"2776:7:81","nodeType":"YulIdentifier","src":"2776:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2750:6:81","nodeType":"YulIdentifier","src":"2750:6:81"},"nativeSrc":"2750:34:81","nodeType":"YulFunctionCall","src":"2750:34:81"},"nativeSrc":"2750:34:81","nodeType":"YulExpressionStatement","src":"2750:34:81"},{"expression":{"arguments":[{"name":"value","nativeSrc":"2800:5:81","nodeType":"YulIdentifier","src":"2800:5:81"},{"name":"value_1","nativeSrc":"2807:7:81","nodeType":"YulIdentifier","src":"2807:7:81"}],"functionName":{"name":"mstore","nativeSrc":"2793:6:81","nodeType":"YulIdentifier","src":"2793:6:81"},"nativeSrc":"2793:22:81","nodeType":"YulFunctionCall","src":"2793:22:81"},"nativeSrc":"2793:22:81","nodeType":"YulExpressionStatement","src":"2793:22:81"},{"nativeSrc":"2824:17:81","nodeType":"YulVariableDeclaration","src":"2824:17:81","value":{"kind":"number","nativeSrc":"2840:1:81","nodeType":"YulLiteral","src":"2840:1:81","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"2828:8:81","nodeType":"YulTypedName","src":"2828:8:81","type":""}]},{"nativeSrc":"2850:48:81","nodeType":"YulAssignment","src":"2850:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2879:9:81","nodeType":"YulIdentifier","src":"2879:9:81"},{"kind":"number","nativeSrc":"2890:6:81","nodeType":"YulLiteral","src":"2890:6:81","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"2875:3:81","nodeType":"YulIdentifier","src":"2875:3:81"},"nativeSrc":"2875:22:81","nodeType":"YulFunctionCall","src":"2875:22:81"}],"functionName":{"name":"calldataload","nativeSrc":"2862:12:81","nodeType":"YulIdentifier","src":"2862:12:81"},"nativeSrc":"2862:36:81","nodeType":"YulFunctionCall","src":"2862:36:81"},"variableNames":[{"name":"value_10","nativeSrc":"2850:8:81","nodeType":"YulIdentifier","src":"2850:8:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2918:5:81","nodeType":"YulIdentifier","src":"2918:5:81"},{"kind":"number","nativeSrc":"2925:2:81","nodeType":"YulLiteral","src":"2925:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2914:3:81","nodeType":"YulIdentifier","src":"2914:3:81"},"nativeSrc":"2914:14:81","nodeType":"YulFunctionCall","src":"2914:14:81"},{"name":"value_10","nativeSrc":"2930:8:81","nodeType":"YulIdentifier","src":"2930:8:81"}],"functionName":{"name":"mstore","nativeSrc":"2907:6:81","nodeType":"YulIdentifier","src":"2907:6:81"},"nativeSrc":"2907:32:81","nodeType":"YulFunctionCall","src":"2907:32:81"},"nativeSrc":"2907:32:81","nodeType":"YulExpressionStatement","src":"2907:32:81"},{"nativeSrc":"2948:17:81","nodeType":"YulVariableDeclaration","src":"2948:17:81","value":{"kind":"number","nativeSrc":"2964:1:81","nodeType":"YulLiteral","src":"2964:1:81","type":"","value":"0"},"variables":[{"name":"value_11","nativeSrc":"2952:8:81","nodeType":"YulTypedName","src":"2952:8:81","type":""}]},{"nativeSrc":"2974:45:81","nodeType":"YulAssignment","src":"2974:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3003:9:81","nodeType":"YulIdentifier","src":"3003:9:81"},{"kind":"number","nativeSrc":"3014:3:81","nodeType":"YulLiteral","src":"3014:3:81","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"2999:3:81","nodeType":"YulIdentifier","src":"2999:3:81"},"nativeSrc":"2999:19:81","nodeType":"YulFunctionCall","src":"2999:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"2986:12:81","nodeType":"YulIdentifier","src":"2986:12:81"},"nativeSrc":"2986:33:81","nodeType":"YulFunctionCall","src":"2986:33:81"},"variableNames":[{"name":"value_11","nativeSrc":"2974:8:81","nodeType":"YulIdentifier","src":"2974:8:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3039:5:81","nodeType":"YulIdentifier","src":"3039:5:81"},{"kind":"number","nativeSrc":"3046:2:81","nodeType":"YulLiteral","src":"3046:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3035:3:81","nodeType":"YulIdentifier","src":"3035:3:81"},"nativeSrc":"3035:14:81","nodeType":"YulFunctionCall","src":"3035:14:81"},{"name":"value_11","nativeSrc":"3051:8:81","nodeType":"YulIdentifier","src":"3051:8:81"}],"functionName":{"name":"mstore","nativeSrc":"3028:6:81","nodeType":"YulIdentifier","src":"3028:6:81"},"nativeSrc":"3028:32:81","nodeType":"YulFunctionCall","src":"3028:32:81"},"nativeSrc":"3028:32:81","nodeType":"YulExpressionStatement","src":"3028:32:81"},{"nativeSrc":"3069:17:81","nodeType":"YulVariableDeclaration","src":"3069:17:81","value":{"kind":"number","nativeSrc":"3085:1:81","nodeType":"YulLiteral","src":"3085:1:81","type":"","value":"0"},"variables":[{"name":"value_12","nativeSrc":"3073:8:81","nodeType":"YulTypedName","src":"3073:8:81","type":""}]},{"nativeSrc":"3095:45:81","nodeType":"YulAssignment","src":"3095:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3124:9:81","nodeType":"YulIdentifier","src":"3124:9:81"},{"kind":"number","nativeSrc":"3135:3:81","nodeType":"YulLiteral","src":"3135:3:81","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3120:3:81","nodeType":"YulIdentifier","src":"3120:3:81"},"nativeSrc":"3120:19:81","nodeType":"YulFunctionCall","src":"3120:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"3107:12:81","nodeType":"YulIdentifier","src":"3107:12:81"},"nativeSrc":"3107:33:81","nodeType":"YulFunctionCall","src":"3107:33:81"},"variableNames":[{"name":"value_12","nativeSrc":"3095:8:81","nodeType":"YulIdentifier","src":"3095:8:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3160:5:81","nodeType":"YulIdentifier","src":"3160:5:81"},{"kind":"number","nativeSrc":"3167:2:81","nodeType":"YulLiteral","src":"3167:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3156:3:81","nodeType":"YulIdentifier","src":"3156:3:81"},"nativeSrc":"3156:14:81","nodeType":"YulFunctionCall","src":"3156:14:81"},{"name":"value_12","nativeSrc":"3172:8:81","nodeType":"YulIdentifier","src":"3172:8:81"}],"functionName":{"name":"mstore","nativeSrc":"3149:6:81","nodeType":"YulIdentifier","src":"3149:6:81"},"nativeSrc":"3149:32:81","nodeType":"YulFunctionCall","src":"3149:32:81"},"nativeSrc":"3149:32:81","nodeType":"YulExpressionStatement","src":"3149:32:81"},{"nativeSrc":"3190:17:81","nodeType":"YulVariableDeclaration","src":"3190:17:81","value":{"kind":"number","nativeSrc":"3206:1:81","nodeType":"YulLiteral","src":"3206:1:81","type":"","value":"0"},"variables":[{"name":"value_13","nativeSrc":"3194:8:81","nodeType":"YulTypedName","src":"3194:8:81","type":""}]},{"nativeSrc":"3216:45:81","nodeType":"YulAssignment","src":"3216:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3245:9:81","nodeType":"YulIdentifier","src":"3245:9:81"},{"kind":"number","nativeSrc":"3256:3:81","nodeType":"YulLiteral","src":"3256:3:81","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"3241:3:81","nodeType":"YulIdentifier","src":"3241:3:81"},"nativeSrc":"3241:19:81","nodeType":"YulFunctionCall","src":"3241:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"3228:12:81","nodeType":"YulIdentifier","src":"3228:12:81"},"nativeSrc":"3228:33:81","nodeType":"YulFunctionCall","src":"3228:33:81"},"variableNames":[{"name":"value_13","nativeSrc":"3216:8:81","nodeType":"YulIdentifier","src":"3216:8:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3281:5:81","nodeType":"YulIdentifier","src":"3281:5:81"},{"kind":"number","nativeSrc":"3288:3:81","nodeType":"YulLiteral","src":"3288:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3277:3:81","nodeType":"YulIdentifier","src":"3277:3:81"},"nativeSrc":"3277:15:81","nodeType":"YulFunctionCall","src":"3277:15:81"},{"name":"value_13","nativeSrc":"3294:8:81","nodeType":"YulIdentifier","src":"3294:8:81"}],"functionName":{"name":"mstore","nativeSrc":"3270:6:81","nodeType":"YulIdentifier","src":"3270:6:81"},"nativeSrc":"3270:33:81","nodeType":"YulFunctionCall","src":"3270:33:81"},"nativeSrc":"3270:33:81","nodeType":"YulExpressionStatement","src":"3270:33:81"}]},"name":"abi_decode_struct_UserOpInfo","nativeSrc":"1410:1899:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1448:9:81","nodeType":"YulTypedName","src":"1448:9:81","type":""},{"name":"end","nativeSrc":"1459:3:81","nodeType":"YulTypedName","src":"1459:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1467:5:81","nodeType":"YulTypedName","src":"1467:5:81","type":""}],"src":"1410:1899:81"},{"body":{"nativeSrc":"3386:275:81","nodeType":"YulBlock","src":"3386:275:81","statements":[{"body":{"nativeSrc":"3435:16:81","nodeType":"YulBlock","src":"3435:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3444:1:81","nodeType":"YulLiteral","src":"3444:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3447:1:81","nodeType":"YulLiteral","src":"3447:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3437:6:81","nodeType":"YulIdentifier","src":"3437:6:81"},"nativeSrc":"3437:12:81","nodeType":"YulFunctionCall","src":"3437:12:81"},"nativeSrc":"3437:12:81","nodeType":"YulExpressionStatement","src":"3437:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3414:6:81","nodeType":"YulIdentifier","src":"3414:6:81"},{"kind":"number","nativeSrc":"3422:4:81","nodeType":"YulLiteral","src":"3422:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3410:3:81","nodeType":"YulIdentifier","src":"3410:3:81"},"nativeSrc":"3410:17:81","nodeType":"YulFunctionCall","src":"3410:17:81"},{"name":"end","nativeSrc":"3429:3:81","nodeType":"YulIdentifier","src":"3429:3:81"}],"functionName":{"name":"slt","nativeSrc":"3406:3:81","nodeType":"YulIdentifier","src":"3406:3:81"},"nativeSrc":"3406:27:81","nodeType":"YulFunctionCall","src":"3406:27:81"}],"functionName":{"name":"iszero","nativeSrc":"3399:6:81","nodeType":"YulIdentifier","src":"3399:6:81"},"nativeSrc":"3399:35:81","nodeType":"YulFunctionCall","src":"3399:35:81"},"nativeSrc":"3396:55:81","nodeType":"YulIf","src":"3396:55:81"},{"nativeSrc":"3460:30:81","nodeType":"YulAssignment","src":"3460:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"3483:6:81","nodeType":"YulIdentifier","src":"3483:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"3470:12:81","nodeType":"YulIdentifier","src":"3470:12:81"},"nativeSrc":"3470:20:81","nodeType":"YulFunctionCall","src":"3470:20:81"},"variableNames":[{"name":"length","nativeSrc":"3460:6:81","nodeType":"YulIdentifier","src":"3460:6:81"}]},{"body":{"nativeSrc":"3533:16:81","nodeType":"YulBlock","src":"3533:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3542:1:81","nodeType":"YulLiteral","src":"3542:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3545:1:81","nodeType":"YulLiteral","src":"3545:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3535:6:81","nodeType":"YulIdentifier","src":"3535:6:81"},"nativeSrc":"3535:12:81","nodeType":"YulFunctionCall","src":"3535:12:81"},"nativeSrc":"3535:12:81","nodeType":"YulExpressionStatement","src":"3535:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3505:6:81","nodeType":"YulIdentifier","src":"3505:6:81"},{"kind":"number","nativeSrc":"3513:18:81","nodeType":"YulLiteral","src":"3513:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3502:2:81","nodeType":"YulIdentifier","src":"3502:2:81"},"nativeSrc":"3502:30:81","nodeType":"YulFunctionCall","src":"3502:30:81"},"nativeSrc":"3499:50:81","nodeType":"YulIf","src":"3499:50:81"},{"nativeSrc":"3558:29:81","nodeType":"YulAssignment","src":"3558:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"3574:6:81","nodeType":"YulIdentifier","src":"3574:6:81"},{"kind":"number","nativeSrc":"3582:4:81","nodeType":"YulLiteral","src":"3582:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3570:3:81","nodeType":"YulIdentifier","src":"3570:3:81"},"nativeSrc":"3570:17:81","nodeType":"YulFunctionCall","src":"3570:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"3558:8:81","nodeType":"YulIdentifier","src":"3558:8:81"}]},{"body":{"nativeSrc":"3639:16:81","nodeType":"YulBlock","src":"3639:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3648:1:81","nodeType":"YulLiteral","src":"3648:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3651:1:81","nodeType":"YulLiteral","src":"3651:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3641:6:81","nodeType":"YulIdentifier","src":"3641:6:81"},"nativeSrc":"3641:12:81","nodeType":"YulFunctionCall","src":"3641:12:81"},"nativeSrc":"3641:12:81","nodeType":"YulExpressionStatement","src":"3641:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3610:6:81","nodeType":"YulIdentifier","src":"3610:6:81"},{"name":"length","nativeSrc":"3618:6:81","nodeType":"YulIdentifier","src":"3618:6:81"}],"functionName":{"name":"add","nativeSrc":"3606:3:81","nodeType":"YulIdentifier","src":"3606:3:81"},"nativeSrc":"3606:19:81","nodeType":"YulFunctionCall","src":"3606:19:81"},{"kind":"number","nativeSrc":"3627:4:81","nodeType":"YulLiteral","src":"3627:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3602:3:81","nodeType":"YulIdentifier","src":"3602:3:81"},"nativeSrc":"3602:30:81","nodeType":"YulFunctionCall","src":"3602:30:81"},{"name":"end","nativeSrc":"3634:3:81","nodeType":"YulIdentifier","src":"3634:3:81"}],"functionName":{"name":"gt","nativeSrc":"3599:2:81","nodeType":"YulIdentifier","src":"3599:2:81"},"nativeSrc":"3599:39:81","nodeType":"YulFunctionCall","src":"3599:39:81"},"nativeSrc":"3596:59:81","nodeType":"YulIf","src":"3596:59:81"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"3314:347:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3349:6:81","nodeType":"YulTypedName","src":"3349:6:81","type":""},{"name":"end","nativeSrc":"3357:3:81","nodeType":"YulTypedName","src":"3357:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"3365:8:81","nodeType":"YulTypedName","src":"3365:8:81","type":""},{"name":"length","nativeSrc":"3375:6:81","nodeType":"YulTypedName","src":"3375:6:81","type":""}],"src":"3314:347:81"},{"body":{"nativeSrc":"3825:971:81","nodeType":"YulBlock","src":"3825:971:81","statements":[{"body":{"nativeSrc":"3872:16:81","nodeType":"YulBlock","src":"3872:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3881:1:81","nodeType":"YulLiteral","src":"3881:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3884:1:81","nodeType":"YulLiteral","src":"3884:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3874:6:81","nodeType":"YulIdentifier","src":"3874:6:81"},"nativeSrc":"3874:12:81","nodeType":"YulFunctionCall","src":"3874:12:81"},"nativeSrc":"3874:12:81","nodeType":"YulExpressionStatement","src":"3874:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3846:7:81","nodeType":"YulIdentifier","src":"3846:7:81"},{"name":"headStart","nativeSrc":"3855:9:81","nodeType":"YulIdentifier","src":"3855:9:81"}],"functionName":{"name":"sub","nativeSrc":"3842:3:81","nodeType":"YulIdentifier","src":"3842:3:81"},"nativeSrc":"3842:23:81","nodeType":"YulFunctionCall","src":"3842:23:81"},{"kind":"number","nativeSrc":"3867:3:81","nodeType":"YulLiteral","src":"3867:3:81","type":"","value":"512"}],"functionName":{"name":"slt","nativeSrc":"3838:3:81","nodeType":"YulIdentifier","src":"3838:3:81"},"nativeSrc":"3838:33:81","nodeType":"YulFunctionCall","src":"3838:33:81"},"nativeSrc":"3835:53:81","nodeType":"YulIf","src":"3835:53:81"},{"nativeSrc":"3897:37:81","nodeType":"YulVariableDeclaration","src":"3897:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3924:9:81","nodeType":"YulIdentifier","src":"3924:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3911:12:81","nodeType":"YulIdentifier","src":"3911:12:81"},"nativeSrc":"3911:23:81","nodeType":"YulFunctionCall","src":"3911:23:81"},"variables":[{"name":"offset","nativeSrc":"3901:6:81","nodeType":"YulTypedName","src":"3901:6:81","type":""}]},{"body":{"nativeSrc":"3977:16:81","nodeType":"YulBlock","src":"3977:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3986:1:81","nodeType":"YulLiteral","src":"3986:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3989:1:81","nodeType":"YulLiteral","src":"3989:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3979:6:81","nodeType":"YulIdentifier","src":"3979:6:81"},"nativeSrc":"3979:12:81","nodeType":"YulFunctionCall","src":"3979:12:81"},"nativeSrc":"3979:12:81","nodeType":"YulExpressionStatement","src":"3979:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3949:6:81","nodeType":"YulIdentifier","src":"3949:6:81"},{"kind":"number","nativeSrc":"3957:18:81","nodeType":"YulLiteral","src":"3957:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3946:2:81","nodeType":"YulIdentifier","src":"3946:2:81"},"nativeSrc":"3946:30:81","nodeType":"YulFunctionCall","src":"3946:30:81"},"nativeSrc":"3943:50:81","nodeType":"YulIf","src":"3943:50:81"},{"nativeSrc":"4002:32:81","nodeType":"YulVariableDeclaration","src":"4002:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4016:9:81","nodeType":"YulIdentifier","src":"4016:9:81"},{"name":"offset","nativeSrc":"4027:6:81","nodeType":"YulIdentifier","src":"4027:6:81"}],"functionName":{"name":"add","nativeSrc":"4012:3:81","nodeType":"YulIdentifier","src":"4012:3:81"},"nativeSrc":"4012:22:81","nodeType":"YulFunctionCall","src":"4012:22:81"},"variables":[{"name":"_1","nativeSrc":"4006:2:81","nodeType":"YulTypedName","src":"4006:2:81","type":""}]},{"body":{"nativeSrc":"4082:16:81","nodeType":"YulBlock","src":"4082:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4091:1:81","nodeType":"YulLiteral","src":"4091:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4094:1:81","nodeType":"YulLiteral","src":"4094:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4084:6:81","nodeType":"YulIdentifier","src":"4084:6:81"},"nativeSrc":"4084:12:81","nodeType":"YulFunctionCall","src":"4084:12:81"},"nativeSrc":"4084:12:81","nodeType":"YulExpressionStatement","src":"4084:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4061:2:81","nodeType":"YulIdentifier","src":"4061:2:81"},{"kind":"number","nativeSrc":"4065:4:81","nodeType":"YulLiteral","src":"4065:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4057:3:81","nodeType":"YulIdentifier","src":"4057:3:81"},"nativeSrc":"4057:13:81","nodeType":"YulFunctionCall","src":"4057:13:81"},{"name":"dataEnd","nativeSrc":"4072:7:81","nodeType":"YulIdentifier","src":"4072:7:81"}],"functionName":{"name":"slt","nativeSrc":"4053:3:81","nodeType":"YulIdentifier","src":"4053:3:81"},"nativeSrc":"4053:27:81","nodeType":"YulFunctionCall","src":"4053:27:81"}],"functionName":{"name":"iszero","nativeSrc":"4046:6:81","nodeType":"YulIdentifier","src":"4046:6:81"},"nativeSrc":"4046:35:81","nodeType":"YulFunctionCall","src":"4046:35:81"},"nativeSrc":"4043:55:81","nodeType":"YulIf","src":"4043:55:81"},{"nativeSrc":"4107:30:81","nodeType":"YulVariableDeclaration","src":"4107:30:81","value":{"arguments":[{"name":"_1","nativeSrc":"4134:2:81","nodeType":"YulIdentifier","src":"4134:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"4121:12:81","nodeType":"YulIdentifier","src":"4121:12:81"},"nativeSrc":"4121:16:81","nodeType":"YulFunctionCall","src":"4121:16:81"},"variables":[{"name":"length","nativeSrc":"4111:6:81","nodeType":"YulTypedName","src":"4111:6:81","type":""}]},{"nativeSrc":"4146:65:81","nodeType":"YulVariableDeclaration","src":"4146:65:81","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"4203:6:81","nodeType":"YulIdentifier","src":"4203:6:81"}],"functionName":{"name":"array_allocation_size_bytes","nativeSrc":"4175:27:81","nodeType":"YulIdentifier","src":"4175:27:81"},"nativeSrc":"4175:35:81","nodeType":"YulFunctionCall","src":"4175:35:81"}],"functionName":{"name":"allocate_memory","nativeSrc":"4159:15:81","nodeType":"YulIdentifier","src":"4159:15:81"},"nativeSrc":"4159:52:81","nodeType":"YulFunctionCall","src":"4159:52:81"},"variables":[{"name":"array","nativeSrc":"4150:5:81","nodeType":"YulTypedName","src":"4150:5:81","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"4227:5:81","nodeType":"YulIdentifier","src":"4227:5:81"},{"name":"length","nativeSrc":"4234:6:81","nodeType":"YulIdentifier","src":"4234:6:81"}],"functionName":{"name":"mstore","nativeSrc":"4220:6:81","nodeType":"YulIdentifier","src":"4220:6:81"},"nativeSrc":"4220:21:81","nodeType":"YulFunctionCall","src":"4220:21:81"},"nativeSrc":"4220:21:81","nodeType":"YulExpressionStatement","src":"4220:21:81"},{"body":{"nativeSrc":"4293:16:81","nodeType":"YulBlock","src":"4293:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4302:1:81","nodeType":"YulLiteral","src":"4302:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4305:1:81","nodeType":"YulLiteral","src":"4305:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4295:6:81","nodeType":"YulIdentifier","src":"4295:6:81"},"nativeSrc":"4295:12:81","nodeType":"YulFunctionCall","src":"4295:12:81"},"nativeSrc":"4295:12:81","nodeType":"YulExpressionStatement","src":"4295:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4264:2:81","nodeType":"YulIdentifier","src":"4264:2:81"},{"name":"length","nativeSrc":"4268:6:81","nodeType":"YulIdentifier","src":"4268:6:81"}],"functionName":{"name":"add","nativeSrc":"4260:3:81","nodeType":"YulIdentifier","src":"4260:3:81"},"nativeSrc":"4260:15:81","nodeType":"YulFunctionCall","src":"4260:15:81"},{"kind":"number","nativeSrc":"4277:4:81","nodeType":"YulLiteral","src":"4277:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4256:3:81","nodeType":"YulIdentifier","src":"4256:3:81"},"nativeSrc":"4256:26:81","nodeType":"YulFunctionCall","src":"4256:26:81"},{"name":"dataEnd","nativeSrc":"4284:7:81","nodeType":"YulIdentifier","src":"4284:7:81"}],"functionName":{"name":"gt","nativeSrc":"4253:2:81","nodeType":"YulIdentifier","src":"4253:2:81"},"nativeSrc":"4253:39:81","nodeType":"YulFunctionCall","src":"4253:39:81"},"nativeSrc":"4250:59:81","nodeType":"YulIf","src":"4250:59:81"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"4335:5:81","nodeType":"YulIdentifier","src":"4335:5:81"},{"kind":"number","nativeSrc":"4342:4:81","nodeType":"YulLiteral","src":"4342:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4331:3:81","nodeType":"YulIdentifier","src":"4331:3:81"},"nativeSrc":"4331:16:81","nodeType":"YulFunctionCall","src":"4331:16:81"},{"arguments":[{"name":"_1","nativeSrc":"4353:2:81","nodeType":"YulIdentifier","src":"4353:2:81"},{"kind":"number","nativeSrc":"4357:4:81","nodeType":"YulLiteral","src":"4357:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4349:3:81","nodeType":"YulIdentifier","src":"4349:3:81"},"nativeSrc":"4349:13:81","nodeType":"YulFunctionCall","src":"4349:13:81"},{"name":"length","nativeSrc":"4364:6:81","nodeType":"YulIdentifier","src":"4364:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"4318:12:81","nodeType":"YulIdentifier","src":"4318:12:81"},"nativeSrc":"4318:53:81","nodeType":"YulFunctionCall","src":"4318:53:81"},"nativeSrc":"4318:53:81","nodeType":"YulExpressionStatement","src":"4318:53:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"4395:5:81","nodeType":"YulIdentifier","src":"4395:5:81"},{"name":"length","nativeSrc":"4402:6:81","nodeType":"YulIdentifier","src":"4402:6:81"}],"functionName":{"name":"add","nativeSrc":"4391:3:81","nodeType":"YulIdentifier","src":"4391:3:81"},"nativeSrc":"4391:18:81","nodeType":"YulFunctionCall","src":"4391:18:81"},{"kind":"number","nativeSrc":"4411:4:81","nodeType":"YulLiteral","src":"4411:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4387:3:81","nodeType":"YulIdentifier","src":"4387:3:81"},"nativeSrc":"4387:29:81","nodeType":"YulFunctionCall","src":"4387:29:81"},{"kind":"number","nativeSrc":"4418:1:81","nodeType":"YulLiteral","src":"4418:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"4380:6:81","nodeType":"YulIdentifier","src":"4380:6:81"},"nativeSrc":"4380:40:81","nodeType":"YulFunctionCall","src":"4380:40:81"},"nativeSrc":"4380:40:81","nodeType":"YulExpressionStatement","src":"4380:40:81"},{"nativeSrc":"4429:15:81","nodeType":"YulAssignment","src":"4429:15:81","value":{"name":"array","nativeSrc":"4439:5:81","nodeType":"YulIdentifier","src":"4439:5:81"},"variableNames":[{"name":"value0","nativeSrc":"4429:6:81","nodeType":"YulIdentifier","src":"4429:6:81"}]},{"nativeSrc":"4453:69:81","nodeType":"YulAssignment","src":"4453:69:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4496:9:81","nodeType":"YulIdentifier","src":"4496:9:81"},{"kind":"number","nativeSrc":"4507:4:81","nodeType":"YulLiteral","src":"4507:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4492:3:81","nodeType":"YulIdentifier","src":"4492:3:81"},"nativeSrc":"4492:20:81","nodeType":"YulFunctionCall","src":"4492:20:81"},{"name":"dataEnd","nativeSrc":"4514:7:81","nodeType":"YulIdentifier","src":"4514:7:81"}],"functionName":{"name":"abi_decode_struct_UserOpInfo","nativeSrc":"4463:28:81","nodeType":"YulIdentifier","src":"4463:28:81"},"nativeSrc":"4463:59:81","nodeType":"YulFunctionCall","src":"4463:59:81"},"variableNames":[{"name":"value1","nativeSrc":"4453:6:81","nodeType":"YulIdentifier","src":"4453:6:81"}]},{"nativeSrc":"4531:49:81","nodeType":"YulVariableDeclaration","src":"4531:49:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4564:9:81","nodeType":"YulIdentifier","src":"4564:9:81"},{"kind":"number","nativeSrc":"4575:3:81","nodeType":"YulLiteral","src":"4575:3:81","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"4560:3:81","nodeType":"YulIdentifier","src":"4560:3:81"},"nativeSrc":"4560:19:81","nodeType":"YulFunctionCall","src":"4560:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"4547:12:81","nodeType":"YulIdentifier","src":"4547:12:81"},"nativeSrc":"4547:33:81","nodeType":"YulFunctionCall","src":"4547:33:81"},"variables":[{"name":"offset_1","nativeSrc":"4535:8:81","nodeType":"YulTypedName","src":"4535:8:81","type":""}]},{"body":{"nativeSrc":"4625:16:81","nodeType":"YulBlock","src":"4625:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4634:1:81","nodeType":"YulLiteral","src":"4634:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4637:1:81","nodeType":"YulLiteral","src":"4637:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4627:6:81","nodeType":"YulIdentifier","src":"4627:6:81"},"nativeSrc":"4627:12:81","nodeType":"YulFunctionCall","src":"4627:12:81"},"nativeSrc":"4627:12:81","nodeType":"YulExpressionStatement","src":"4627:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"4595:8:81","nodeType":"YulIdentifier","src":"4595:8:81"},{"kind":"number","nativeSrc":"4605:18:81","nodeType":"YulLiteral","src":"4605:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4592:2:81","nodeType":"YulIdentifier","src":"4592:2:81"},"nativeSrc":"4592:32:81","nodeType":"YulFunctionCall","src":"4592:32:81"},"nativeSrc":"4589:52:81","nodeType":"YulIf","src":"4589:52:81"},{"nativeSrc":"4650:86:81","nodeType":"YulVariableDeclaration","src":"4650:86:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4706:9:81","nodeType":"YulIdentifier","src":"4706:9:81"},{"name":"offset_1","nativeSrc":"4717:8:81","nodeType":"YulIdentifier","src":"4717:8:81"}],"functionName":{"name":"add","nativeSrc":"4702:3:81","nodeType":"YulIdentifier","src":"4702:3:81"},"nativeSrc":"4702:24:81","nodeType":"YulFunctionCall","src":"4702:24:81"},{"name":"dataEnd","nativeSrc":"4728:7:81","nodeType":"YulIdentifier","src":"4728:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"4676:25:81","nodeType":"YulIdentifier","src":"4676:25:81"},"nativeSrc":"4676:60:81","nodeType":"YulFunctionCall","src":"4676:60:81"},"variables":[{"name":"value2_1","nativeSrc":"4654:8:81","nodeType":"YulTypedName","src":"4654:8:81","type":""},{"name":"value3_1","nativeSrc":"4664:8:81","nodeType":"YulTypedName","src":"4664:8:81","type":""}]},{"nativeSrc":"4745:18:81","nodeType":"YulAssignment","src":"4745:18:81","value":{"name":"value2_1","nativeSrc":"4755:8:81","nodeType":"YulIdentifier","src":"4755:8:81"},"variableNames":[{"name":"value2","nativeSrc":"4745:6:81","nodeType":"YulIdentifier","src":"4745:6:81"}]},{"nativeSrc":"4772:18:81","nodeType":"YulAssignment","src":"4772:18:81","value":{"name":"value3_1","nativeSrc":"4782:8:81","nodeType":"YulIdentifier","src":"4782:8:81"},"variableNames":[{"name":"value3","nativeSrc":"4772:6:81","nodeType":"YulIdentifier","src":"4772:6:81"}]}]},"name":"abi_decode_tuple_t_bytes_memory_ptrt_struct$_UserOpInfo_$947_memory_ptrt_bytes_calldata_ptr","nativeSrc":"3666:1130:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3767:9:81","nodeType":"YulTypedName","src":"3767:9:81","type":""},{"name":"dataEnd","nativeSrc":"3778:7:81","nodeType":"YulTypedName","src":"3778:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3790:6:81","nodeType":"YulTypedName","src":"3790:6:81","type":""},{"name":"value1","nativeSrc":"3798:6:81","nodeType":"YulTypedName","src":"3798:6:81","type":""},{"name":"value2","nativeSrc":"3806:6:81","nodeType":"YulTypedName","src":"3806:6:81","type":""},{"name":"value3","nativeSrc":"3814:6:81","nodeType":"YulTypedName","src":"3814:6:81","type":""}],"src":"3666:1130:81"},{"body":{"nativeSrc":"4902:76:81","nodeType":"YulBlock","src":"4902:76:81","statements":[{"nativeSrc":"4912:26:81","nodeType":"YulAssignment","src":"4912:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4924:9:81","nodeType":"YulIdentifier","src":"4924:9:81"},{"kind":"number","nativeSrc":"4935:2:81","nodeType":"YulLiteral","src":"4935:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4920:3:81","nodeType":"YulIdentifier","src":"4920:3:81"},"nativeSrc":"4920:18:81","nodeType":"YulFunctionCall","src":"4920:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4912:4:81","nodeType":"YulIdentifier","src":"4912:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4954:9:81","nodeType":"YulIdentifier","src":"4954:9:81"},{"name":"value0","nativeSrc":"4965:6:81","nodeType":"YulIdentifier","src":"4965:6:81"}],"functionName":{"name":"mstore","nativeSrc":"4947:6:81","nodeType":"YulIdentifier","src":"4947:6:81"},"nativeSrc":"4947:25:81","nodeType":"YulFunctionCall","src":"4947:25:81"},"nativeSrc":"4947:25:81","nodeType":"YulExpressionStatement","src":"4947:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"4801:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4871:9:81","nodeType":"YulTypedName","src":"4871:9:81","type":""},{"name":"value0","nativeSrc":"4882:6:81","nodeType":"YulTypedName","src":"4882:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4893:4:81","nodeType":"YulTypedName","src":"4893:4:81","type":""}],"src":"4801:177:81"},{"body":{"nativeSrc":"5052:217:81","nodeType":"YulBlock","src":"5052:217:81","statements":[{"body":{"nativeSrc":"5098:16:81","nodeType":"YulBlock","src":"5098:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5107:1:81","nodeType":"YulLiteral","src":"5107:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5110:1:81","nodeType":"YulLiteral","src":"5110:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5100:6:81","nodeType":"YulIdentifier","src":"5100:6:81"},"nativeSrc":"5100:12:81","nodeType":"YulFunctionCall","src":"5100:12:81"},"nativeSrc":"5100:12:81","nodeType":"YulExpressionStatement","src":"5100:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5073:7:81","nodeType":"YulIdentifier","src":"5073:7:81"},{"name":"headStart","nativeSrc":"5082:9:81","nodeType":"YulIdentifier","src":"5082:9:81"}],"functionName":{"name":"sub","nativeSrc":"5069:3:81","nodeType":"YulIdentifier","src":"5069:3:81"},"nativeSrc":"5069:23:81","nodeType":"YulFunctionCall","src":"5069:23:81"},{"kind":"number","nativeSrc":"5094:2:81","nodeType":"YulLiteral","src":"5094:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5065:3:81","nodeType":"YulIdentifier","src":"5065:3:81"},"nativeSrc":"5065:32:81","nodeType":"YulFunctionCall","src":"5065:32:81"},"nativeSrc":"5062:52:81","nodeType":"YulIf","src":"5062:52:81"},{"nativeSrc":"5123:36:81","nodeType":"YulVariableDeclaration","src":"5123:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5149:9:81","nodeType":"YulIdentifier","src":"5149:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5136:12:81","nodeType":"YulIdentifier","src":"5136:12:81"},"nativeSrc":"5136:23:81","nodeType":"YulFunctionCall","src":"5136:23:81"},"variables":[{"name":"value","nativeSrc":"5127:5:81","nodeType":"YulTypedName","src":"5127:5:81","type":""}]},{"body":{"nativeSrc":"5223:16:81","nodeType":"YulBlock","src":"5223:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5232:1:81","nodeType":"YulLiteral","src":"5232:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5235:1:81","nodeType":"YulLiteral","src":"5235:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5225:6:81","nodeType":"YulIdentifier","src":"5225:6:81"},"nativeSrc":"5225:12:81","nodeType":"YulFunctionCall","src":"5225:12:81"},"nativeSrc":"5225:12:81","nodeType":"YulExpressionStatement","src":"5225:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5181:5:81","nodeType":"YulIdentifier","src":"5181:5:81"},{"arguments":[{"name":"value","nativeSrc":"5192:5:81","nodeType":"YulIdentifier","src":"5192:5:81"},{"arguments":[{"kind":"number","nativeSrc":"5203:3:81","nodeType":"YulLiteral","src":"5203:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"5208:10:81","nodeType":"YulLiteral","src":"5208:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"5199:3:81","nodeType":"YulIdentifier","src":"5199:3:81"},"nativeSrc":"5199:20:81","nodeType":"YulFunctionCall","src":"5199:20:81"}],"functionName":{"name":"and","nativeSrc":"5188:3:81","nodeType":"YulIdentifier","src":"5188:3:81"},"nativeSrc":"5188:32:81","nodeType":"YulFunctionCall","src":"5188:32:81"}],"functionName":{"name":"eq","nativeSrc":"5178:2:81","nodeType":"YulIdentifier","src":"5178:2:81"},"nativeSrc":"5178:43:81","nodeType":"YulFunctionCall","src":"5178:43:81"}],"functionName":{"name":"iszero","nativeSrc":"5171:6:81","nodeType":"YulIdentifier","src":"5171:6:81"},"nativeSrc":"5171:51:81","nodeType":"YulFunctionCall","src":"5171:51:81"},"nativeSrc":"5168:71:81","nodeType":"YulIf","src":"5168:71:81"},{"nativeSrc":"5248:15:81","nodeType":"YulAssignment","src":"5248:15:81","value":{"name":"value","nativeSrc":"5258:5:81","nodeType":"YulIdentifier","src":"5258:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5248:6:81","nodeType":"YulIdentifier","src":"5248:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"4983:286:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5018:9:81","nodeType":"YulTypedName","src":"5018:9:81","type":""},{"name":"dataEnd","nativeSrc":"5029:7:81","nodeType":"YulTypedName","src":"5029:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5041:6:81","nodeType":"YulTypedName","src":"5041:6:81","type":""}],"src":"4983:286:81"},{"body":{"nativeSrc":"5369:92:81","nodeType":"YulBlock","src":"5369:92:81","statements":[{"nativeSrc":"5379:26:81","nodeType":"YulAssignment","src":"5379:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5391:9:81","nodeType":"YulIdentifier","src":"5391:9:81"},{"kind":"number","nativeSrc":"5402:2:81","nodeType":"YulLiteral","src":"5402:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5387:3:81","nodeType":"YulIdentifier","src":"5387:3:81"},"nativeSrc":"5387:18:81","nodeType":"YulFunctionCall","src":"5387:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5379:4:81","nodeType":"YulIdentifier","src":"5379:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5421:9:81","nodeType":"YulIdentifier","src":"5421:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"5446:6:81","nodeType":"YulIdentifier","src":"5446:6:81"}],"functionName":{"name":"iszero","nativeSrc":"5439:6:81","nodeType":"YulIdentifier","src":"5439:6:81"},"nativeSrc":"5439:14:81","nodeType":"YulFunctionCall","src":"5439:14:81"}],"functionName":{"name":"iszero","nativeSrc":"5432:6:81","nodeType":"YulIdentifier","src":"5432:6:81"},"nativeSrc":"5432:22:81","nodeType":"YulFunctionCall","src":"5432:22:81"}],"functionName":{"name":"mstore","nativeSrc":"5414:6:81","nodeType":"YulIdentifier","src":"5414:6:81"},"nativeSrc":"5414:41:81","nodeType":"YulFunctionCall","src":"5414:41:81"},"nativeSrc":"5414:41:81","nodeType":"YulExpressionStatement","src":"5414:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"5274:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5338:9:81","nodeType":"YulTypedName","src":"5338:9:81","type":""},{"name":"value0","nativeSrc":"5349:6:81","nodeType":"YulTypedName","src":"5349:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5360:4:81","nodeType":"YulTypedName","src":"5360:4:81","type":""}],"src":"5274:187:81"},{"body":{"nativeSrc":"5535:207:81","nodeType":"YulBlock","src":"5535:207:81","statements":[{"body":{"nativeSrc":"5581:16:81","nodeType":"YulBlock","src":"5581:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5590:1:81","nodeType":"YulLiteral","src":"5590:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5593:1:81","nodeType":"YulLiteral","src":"5593:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5583:6:81","nodeType":"YulIdentifier","src":"5583:6:81"},"nativeSrc":"5583:12:81","nodeType":"YulFunctionCall","src":"5583:12:81"},"nativeSrc":"5583:12:81","nodeType":"YulExpressionStatement","src":"5583:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5556:7:81","nodeType":"YulIdentifier","src":"5556:7:81"},{"name":"headStart","nativeSrc":"5565:9:81","nodeType":"YulIdentifier","src":"5565:9:81"}],"functionName":{"name":"sub","nativeSrc":"5552:3:81","nodeType":"YulIdentifier","src":"5552:3:81"},"nativeSrc":"5552:23:81","nodeType":"YulFunctionCall","src":"5552:23:81"},{"kind":"number","nativeSrc":"5577:2:81","nodeType":"YulLiteral","src":"5577:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5548:3:81","nodeType":"YulIdentifier","src":"5548:3:81"},"nativeSrc":"5548:32:81","nodeType":"YulFunctionCall","src":"5548:32:81"},"nativeSrc":"5545:52:81","nodeType":"YulIf","src":"5545:52:81"},{"nativeSrc":"5606:36:81","nodeType":"YulVariableDeclaration","src":"5606:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5632:9:81","nodeType":"YulIdentifier","src":"5632:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5619:12:81","nodeType":"YulIdentifier","src":"5619:12:81"},"nativeSrc":"5619:23:81","nodeType":"YulFunctionCall","src":"5619:23:81"},"variables":[{"name":"value","nativeSrc":"5610:5:81","nodeType":"YulTypedName","src":"5610:5:81","type":""}]},{"body":{"nativeSrc":"5696:16:81","nodeType":"YulBlock","src":"5696:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5705:1:81","nodeType":"YulLiteral","src":"5705:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5708:1:81","nodeType":"YulLiteral","src":"5708:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5698:6:81","nodeType":"YulIdentifier","src":"5698:6:81"},"nativeSrc":"5698:12:81","nodeType":"YulFunctionCall","src":"5698:12:81"},"nativeSrc":"5698:12:81","nodeType":"YulExpressionStatement","src":"5698:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5664:5:81","nodeType":"YulIdentifier","src":"5664:5:81"},{"arguments":[{"name":"value","nativeSrc":"5675:5:81","nodeType":"YulIdentifier","src":"5675:5:81"},{"kind":"number","nativeSrc":"5682:10:81","nodeType":"YulLiteral","src":"5682:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"5671:3:81","nodeType":"YulIdentifier","src":"5671:3:81"},"nativeSrc":"5671:22:81","nodeType":"YulFunctionCall","src":"5671:22:81"}],"functionName":{"name":"eq","nativeSrc":"5661:2:81","nodeType":"YulIdentifier","src":"5661:2:81"},"nativeSrc":"5661:33:81","nodeType":"YulFunctionCall","src":"5661:33:81"}],"functionName":{"name":"iszero","nativeSrc":"5654:6:81","nodeType":"YulIdentifier","src":"5654:6:81"},"nativeSrc":"5654:41:81","nodeType":"YulFunctionCall","src":"5654:41:81"},"nativeSrc":"5651:61:81","nodeType":"YulIf","src":"5651:61:81"},{"nativeSrc":"5721:15:81","nodeType":"YulAssignment","src":"5721:15:81","value":{"name":"value","nativeSrc":"5731:5:81","nodeType":"YulIdentifier","src":"5731:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5721:6:81","nodeType":"YulIdentifier","src":"5721:6:81"}]}]},"name":"abi_decode_tuple_t_uint32","nativeSrc":"5466:276:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5501:9:81","nodeType":"YulTypedName","src":"5501:9:81","type":""},{"name":"dataEnd","nativeSrc":"5512:7:81","nodeType":"YulTypedName","src":"5512:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5524:6:81","nodeType":"YulTypedName","src":"5524:6:81","type":""}],"src":"5466:276:81"},{"body":{"nativeSrc":"5796:124:81","nodeType":"YulBlock","src":"5796:124:81","statements":[{"nativeSrc":"5806:29:81","nodeType":"YulAssignment","src":"5806:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"5828:6:81","nodeType":"YulIdentifier","src":"5828:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"5815:12:81","nodeType":"YulIdentifier","src":"5815:12:81"},"nativeSrc":"5815:20:81","nodeType":"YulFunctionCall","src":"5815:20:81"},"variableNames":[{"name":"value","nativeSrc":"5806:5:81","nodeType":"YulIdentifier","src":"5806:5:81"}]},{"body":{"nativeSrc":"5898:16:81","nodeType":"YulBlock","src":"5898:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5907:1:81","nodeType":"YulLiteral","src":"5907:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5910:1:81","nodeType":"YulLiteral","src":"5910:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5900:6:81","nodeType":"YulIdentifier","src":"5900:6:81"},"nativeSrc":"5900:12:81","nodeType":"YulFunctionCall","src":"5900:12:81"},"nativeSrc":"5900:12:81","nodeType":"YulExpressionStatement","src":"5900:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5857:5:81","nodeType":"YulIdentifier","src":"5857:5:81"},{"arguments":[{"name":"value","nativeSrc":"5868:5:81","nodeType":"YulIdentifier","src":"5868:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5883:3:81","nodeType":"YulLiteral","src":"5883:3:81","type":"","value":"192"},{"kind":"number","nativeSrc":"5888:1:81","nodeType":"YulLiteral","src":"5888:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5879:3:81","nodeType":"YulIdentifier","src":"5879:3:81"},"nativeSrc":"5879:11:81","nodeType":"YulFunctionCall","src":"5879:11:81"},{"kind":"number","nativeSrc":"5892:1:81","nodeType":"YulLiteral","src":"5892:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5875:3:81","nodeType":"YulIdentifier","src":"5875:3:81"},"nativeSrc":"5875:19:81","nodeType":"YulFunctionCall","src":"5875:19:81"}],"functionName":{"name":"and","nativeSrc":"5864:3:81","nodeType":"YulIdentifier","src":"5864:3:81"},"nativeSrc":"5864:31:81","nodeType":"YulFunctionCall","src":"5864:31:81"}],"functionName":{"name":"eq","nativeSrc":"5854:2:81","nodeType":"YulIdentifier","src":"5854:2:81"},"nativeSrc":"5854:42:81","nodeType":"YulFunctionCall","src":"5854:42:81"}],"functionName":{"name":"iszero","nativeSrc":"5847:6:81","nodeType":"YulIdentifier","src":"5847:6:81"},"nativeSrc":"5847:50:81","nodeType":"YulFunctionCall","src":"5847:50:81"},"nativeSrc":"5844:70:81","nodeType":"YulIf","src":"5844:70:81"}]},"name":"abi_decode_uint192","nativeSrc":"5747:173:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5775:6:81","nodeType":"YulTypedName","src":"5775:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5786:5:81","nodeType":"YulTypedName","src":"5786:5:81","type":""}],"src":"5747:173:81"},{"body":{"nativeSrc":"5995:116:81","nodeType":"YulBlock","src":"5995:116:81","statements":[{"body":{"nativeSrc":"6041:16:81","nodeType":"YulBlock","src":"6041:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6050:1:81","nodeType":"YulLiteral","src":"6050:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6053:1:81","nodeType":"YulLiteral","src":"6053:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6043:6:81","nodeType":"YulIdentifier","src":"6043:6:81"},"nativeSrc":"6043:12:81","nodeType":"YulFunctionCall","src":"6043:12:81"},"nativeSrc":"6043:12:81","nodeType":"YulExpressionStatement","src":"6043:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6016:7:81","nodeType":"YulIdentifier","src":"6016:7:81"},{"name":"headStart","nativeSrc":"6025:9:81","nodeType":"YulIdentifier","src":"6025:9:81"}],"functionName":{"name":"sub","nativeSrc":"6012:3:81","nodeType":"YulIdentifier","src":"6012:3:81"},"nativeSrc":"6012:23:81","nodeType":"YulFunctionCall","src":"6012:23:81"},{"kind":"number","nativeSrc":"6037:2:81","nodeType":"YulLiteral","src":"6037:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6008:3:81","nodeType":"YulIdentifier","src":"6008:3:81"},"nativeSrc":"6008:32:81","nodeType":"YulFunctionCall","src":"6008:32:81"},"nativeSrc":"6005:52:81","nodeType":"YulIf","src":"6005:52:81"},{"nativeSrc":"6066:39:81","nodeType":"YulAssignment","src":"6066:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6095:9:81","nodeType":"YulIdentifier","src":"6095:9:81"}],"functionName":{"name":"abi_decode_uint192","nativeSrc":"6076:18:81","nodeType":"YulIdentifier","src":"6076:18:81"},"nativeSrc":"6076:29:81","nodeType":"YulFunctionCall","src":"6076:29:81"},"variableNames":[{"name":"value0","nativeSrc":"6066:6:81","nodeType":"YulIdentifier","src":"6066:6:81"}]}]},"name":"abi_decode_tuple_t_uint192","nativeSrc":"5925:186:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5961:9:81","nodeType":"YulTypedName","src":"5961:9:81","type":""},{"name":"dataEnd","nativeSrc":"5972:7:81","nodeType":"YulTypedName","src":"5972:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5984:6:81","nodeType":"YulTypedName","src":"5984:6:81","type":""}],"src":"5925:186:81"},{"body":{"nativeSrc":"6203:234:81","nodeType":"YulBlock","src":"6203:234:81","statements":[{"body":{"nativeSrc":"6249:16:81","nodeType":"YulBlock","src":"6249:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6258:1:81","nodeType":"YulLiteral","src":"6258:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6261:1:81","nodeType":"YulLiteral","src":"6261:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6251:6:81","nodeType":"YulIdentifier","src":"6251:6:81"},"nativeSrc":"6251:12:81","nodeType":"YulFunctionCall","src":"6251:12:81"},"nativeSrc":"6251:12:81","nodeType":"YulExpressionStatement","src":"6251:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6224:7:81","nodeType":"YulIdentifier","src":"6224:7:81"},{"name":"headStart","nativeSrc":"6233:9:81","nodeType":"YulIdentifier","src":"6233:9:81"}],"functionName":{"name":"sub","nativeSrc":"6220:3:81","nodeType":"YulIdentifier","src":"6220:3:81"},"nativeSrc":"6220:23:81","nodeType":"YulFunctionCall","src":"6220:23:81"},{"kind":"number","nativeSrc":"6245:2:81","nodeType":"YulLiteral","src":"6245:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6216:3:81","nodeType":"YulIdentifier","src":"6216:3:81"},"nativeSrc":"6216:32:81","nodeType":"YulFunctionCall","src":"6216:32:81"},"nativeSrc":"6213:52:81","nodeType":"YulIf","src":"6213:52:81"},{"nativeSrc":"6274:36:81","nodeType":"YulVariableDeclaration","src":"6274:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6300:9:81","nodeType":"YulIdentifier","src":"6300:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"6287:12:81","nodeType":"YulIdentifier","src":"6287:12:81"},"nativeSrc":"6287:23:81","nodeType":"YulFunctionCall","src":"6287:23:81"},"variables":[{"name":"value","nativeSrc":"6278:5:81","nodeType":"YulTypedName","src":"6278:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6344:5:81","nodeType":"YulIdentifier","src":"6344:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6319:24:81","nodeType":"YulIdentifier","src":"6319:24:81"},"nativeSrc":"6319:31:81","nodeType":"YulFunctionCall","src":"6319:31:81"},"nativeSrc":"6319:31:81","nodeType":"YulExpressionStatement","src":"6319:31:81"},{"nativeSrc":"6359:15:81","nodeType":"YulAssignment","src":"6359:15:81","value":{"name":"value","nativeSrc":"6369:5:81","nodeType":"YulIdentifier","src":"6369:5:81"},"variableNames":[{"name":"value0","nativeSrc":"6359:6:81","nodeType":"YulIdentifier","src":"6359:6:81"}]},{"nativeSrc":"6383:48:81","nodeType":"YulAssignment","src":"6383:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6416:9:81","nodeType":"YulIdentifier","src":"6416:9:81"},{"kind":"number","nativeSrc":"6427:2:81","nodeType":"YulLiteral","src":"6427:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6412:3:81","nodeType":"YulIdentifier","src":"6412:3:81"},"nativeSrc":"6412:18:81","nodeType":"YulFunctionCall","src":"6412:18:81"}],"functionName":{"name":"abi_decode_uint192","nativeSrc":"6393:18:81","nodeType":"YulIdentifier","src":"6393:18:81"},"nativeSrc":"6393:38:81","nodeType":"YulFunctionCall","src":"6393:38:81"},"variableNames":[{"name":"value1","nativeSrc":"6383:6:81","nodeType":"YulIdentifier","src":"6383:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint192","nativeSrc":"6116:321:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6161:9:81","nodeType":"YulTypedName","src":"6161:9:81","type":""},{"name":"dataEnd","nativeSrc":"6172:7:81","nodeType":"YulTypedName","src":"6172:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6184:6:81","nodeType":"YulTypedName","src":"6184:6:81","type":""},{"name":"value1","nativeSrc":"6192:6:81","nodeType":"YulTypedName","src":"6192:6:81","type":""}],"src":"6116:321:81"},{"body":{"nativeSrc":"6537:280:81","nodeType":"YulBlock","src":"6537:280:81","statements":[{"body":{"nativeSrc":"6583:16:81","nodeType":"YulBlock","src":"6583:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6592:1:81","nodeType":"YulLiteral","src":"6592:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6595:1:81","nodeType":"YulLiteral","src":"6595:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6585:6:81","nodeType":"YulIdentifier","src":"6585:6:81"},"nativeSrc":"6585:12:81","nodeType":"YulFunctionCall","src":"6585:12:81"},"nativeSrc":"6585:12:81","nodeType":"YulExpressionStatement","src":"6585:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6558:7:81","nodeType":"YulIdentifier","src":"6558:7:81"},{"name":"headStart","nativeSrc":"6567:9:81","nodeType":"YulIdentifier","src":"6567:9:81"}],"functionName":{"name":"sub","nativeSrc":"6554:3:81","nodeType":"YulIdentifier","src":"6554:3:81"},"nativeSrc":"6554:23:81","nodeType":"YulFunctionCall","src":"6554:23:81"},{"kind":"number","nativeSrc":"6579:2:81","nodeType":"YulLiteral","src":"6579:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6550:3:81","nodeType":"YulIdentifier","src":"6550:3:81"},"nativeSrc":"6550:32:81","nodeType":"YulFunctionCall","src":"6550:32:81"},"nativeSrc":"6547:52:81","nodeType":"YulIf","src":"6547:52:81"},{"nativeSrc":"6608:36:81","nodeType":"YulVariableDeclaration","src":"6608:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6634:9:81","nodeType":"YulIdentifier","src":"6634:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"6621:12:81","nodeType":"YulIdentifier","src":"6621:12:81"},"nativeSrc":"6621:23:81","nodeType":"YulFunctionCall","src":"6621:23:81"},"variables":[{"name":"value","nativeSrc":"6612:5:81","nodeType":"YulTypedName","src":"6612:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6678:5:81","nodeType":"YulIdentifier","src":"6678:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6653:24:81","nodeType":"YulIdentifier","src":"6653:24:81"},"nativeSrc":"6653:31:81","nodeType":"YulFunctionCall","src":"6653:31:81"},"nativeSrc":"6653:31:81","nodeType":"YulExpressionStatement","src":"6653:31:81"},{"nativeSrc":"6693:15:81","nodeType":"YulAssignment","src":"6693:15:81","value":{"name":"value","nativeSrc":"6703:5:81","nodeType":"YulIdentifier","src":"6703:5:81"},"variableNames":[{"name":"value0","nativeSrc":"6693:6:81","nodeType":"YulIdentifier","src":"6693:6:81"}]},{"nativeSrc":"6717:16:81","nodeType":"YulVariableDeclaration","src":"6717:16:81","value":{"kind":"number","nativeSrc":"6732:1:81","nodeType":"YulLiteral","src":"6732:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6721:7:81","nodeType":"YulTypedName","src":"6721:7:81","type":""}]},{"nativeSrc":"6742:43:81","nodeType":"YulAssignment","src":"6742:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6770:9:81","nodeType":"YulIdentifier","src":"6770:9:81"},{"kind":"number","nativeSrc":"6781:2:81","nodeType":"YulLiteral","src":"6781:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6766:3:81","nodeType":"YulIdentifier","src":"6766:3:81"},"nativeSrc":"6766:18:81","nodeType":"YulFunctionCall","src":"6766:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6753:12:81","nodeType":"YulIdentifier","src":"6753:12:81"},"nativeSrc":"6753:32:81","nodeType":"YulFunctionCall","src":"6753:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"6742:7:81","nodeType":"YulIdentifier","src":"6742:7:81"}]},{"nativeSrc":"6794:17:81","nodeType":"YulAssignment","src":"6794:17:81","value":{"name":"value_1","nativeSrc":"6804:7:81","nodeType":"YulIdentifier","src":"6804:7:81"},"variableNames":[{"name":"value1","nativeSrc":"6794:6:81","nodeType":"YulIdentifier","src":"6794:6:81"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"6442:375:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6495:9:81","nodeType":"YulTypedName","src":"6495:9:81","type":""},{"name":"dataEnd","nativeSrc":"6506:7:81","nodeType":"YulTypedName","src":"6506:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6518:6:81","nodeType":"YulTypedName","src":"6518:6:81","type":""},{"name":"value1","nativeSrc":"6526:6:81","nodeType":"YulTypedName","src":"6526:6:81","type":""}],"src":"6442:375:81"},{"body":{"nativeSrc":"6931:290:81","nodeType":"YulBlock","src":"6931:290:81","statements":[{"body":{"nativeSrc":"6977:16:81","nodeType":"YulBlock","src":"6977:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6986:1:81","nodeType":"YulLiteral","src":"6986:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6989:1:81","nodeType":"YulLiteral","src":"6989:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6979:6:81","nodeType":"YulIdentifier","src":"6979:6:81"},"nativeSrc":"6979:12:81","nodeType":"YulFunctionCall","src":"6979:12:81"},"nativeSrc":"6979:12:81","nodeType":"YulExpressionStatement","src":"6979:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6952:7:81","nodeType":"YulIdentifier","src":"6952:7:81"},{"name":"headStart","nativeSrc":"6961:9:81","nodeType":"YulIdentifier","src":"6961:9:81"}],"functionName":{"name":"sub","nativeSrc":"6948:3:81","nodeType":"YulIdentifier","src":"6948:3:81"},"nativeSrc":"6948:23:81","nodeType":"YulFunctionCall","src":"6948:23:81"},{"kind":"number","nativeSrc":"6973:2:81","nodeType":"YulLiteral","src":"6973:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6944:3:81","nodeType":"YulIdentifier","src":"6944:3:81"},"nativeSrc":"6944:32:81","nodeType":"YulFunctionCall","src":"6944:32:81"},"nativeSrc":"6941:52:81","nodeType":"YulIf","src":"6941:52:81"},{"nativeSrc":"7002:37:81","nodeType":"YulVariableDeclaration","src":"7002:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7029:9:81","nodeType":"YulIdentifier","src":"7029:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"7016:12:81","nodeType":"YulIdentifier","src":"7016:12:81"},"nativeSrc":"7016:23:81","nodeType":"YulFunctionCall","src":"7016:23:81"},"variables":[{"name":"offset","nativeSrc":"7006:6:81","nodeType":"YulTypedName","src":"7006:6:81","type":""}]},{"body":{"nativeSrc":"7082:16:81","nodeType":"YulBlock","src":"7082:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7091:1:81","nodeType":"YulLiteral","src":"7091:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7094:1:81","nodeType":"YulLiteral","src":"7094:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7084:6:81","nodeType":"YulIdentifier","src":"7084:6:81"},"nativeSrc":"7084:12:81","nodeType":"YulFunctionCall","src":"7084:12:81"},"nativeSrc":"7084:12:81","nodeType":"YulExpressionStatement","src":"7084:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7054:6:81","nodeType":"YulIdentifier","src":"7054:6:81"},{"kind":"number","nativeSrc":"7062:18:81","nodeType":"YulLiteral","src":"7062:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7051:2:81","nodeType":"YulIdentifier","src":"7051:2:81"},"nativeSrc":"7051:30:81","nodeType":"YulFunctionCall","src":"7051:30:81"},"nativeSrc":"7048:50:81","nodeType":"YulIf","src":"7048:50:81"},{"nativeSrc":"7107:32:81","nodeType":"YulVariableDeclaration","src":"7107:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7121:9:81","nodeType":"YulIdentifier","src":"7121:9:81"},{"name":"offset","nativeSrc":"7132:6:81","nodeType":"YulIdentifier","src":"7132:6:81"}],"functionName":{"name":"add","nativeSrc":"7117:3:81","nodeType":"YulIdentifier","src":"7117:3:81"},"nativeSrc":"7117:22:81","nodeType":"YulFunctionCall","src":"7117:22:81"},"variables":[{"name":"_1","nativeSrc":"7111:2:81","nodeType":"YulTypedName","src":"7111:2:81","type":""}]},{"body":{"nativeSrc":"7178:16:81","nodeType":"YulBlock","src":"7178:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7187:1:81","nodeType":"YulLiteral","src":"7187:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7190:1:81","nodeType":"YulLiteral","src":"7190:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7180:6:81","nodeType":"YulIdentifier","src":"7180:6:81"},"nativeSrc":"7180:12:81","nodeType":"YulFunctionCall","src":"7180:12:81"},"nativeSrc":"7180:12:81","nodeType":"YulExpressionStatement","src":"7180:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7159:7:81","nodeType":"YulIdentifier","src":"7159:7:81"},{"name":"_1","nativeSrc":"7168:2:81","nodeType":"YulIdentifier","src":"7168:2:81"}],"functionName":{"name":"sub","nativeSrc":"7155:3:81","nodeType":"YulIdentifier","src":"7155:3:81"},"nativeSrc":"7155:16:81","nodeType":"YulFunctionCall","src":"7155:16:81"},{"kind":"number","nativeSrc":"7173:3:81","nodeType":"YulLiteral","src":"7173:3:81","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"7151:3:81","nodeType":"YulIdentifier","src":"7151:3:81"},"nativeSrc":"7151:26:81","nodeType":"YulFunctionCall","src":"7151:26:81"},"nativeSrc":"7148:46:81","nodeType":"YulIf","src":"7148:46:81"},{"nativeSrc":"7203:12:81","nodeType":"YulAssignment","src":"7203:12:81","value":{"name":"_1","nativeSrc":"7213:2:81","nodeType":"YulIdentifier","src":"7213:2:81"},"variableNames":[{"name":"value0","nativeSrc":"7203:6:81","nodeType":"YulIdentifier","src":"7203:6:81"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr","nativeSrc":"6822:399:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6897:9:81","nodeType":"YulTypedName","src":"6897:9:81","type":""},{"name":"dataEnd","nativeSrc":"6908:7:81","nodeType":"YulTypedName","src":"6908:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6920:6:81","nodeType":"YulTypedName","src":"6920:6:81","type":""}],"src":"6822:399:81"},{"body":{"nativeSrc":"7327:76:81","nodeType":"YulBlock","src":"7327:76:81","statements":[{"nativeSrc":"7337:26:81","nodeType":"YulAssignment","src":"7337:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7349:9:81","nodeType":"YulIdentifier","src":"7349:9:81"},{"kind":"number","nativeSrc":"7360:2:81","nodeType":"YulLiteral","src":"7360:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7345:3:81","nodeType":"YulIdentifier","src":"7345:3:81"},"nativeSrc":"7345:18:81","nodeType":"YulFunctionCall","src":"7345:18:81"},"variableNames":[{"name":"tail","nativeSrc":"7337:4:81","nodeType":"YulIdentifier","src":"7337:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7379:9:81","nodeType":"YulIdentifier","src":"7379:9:81"},{"name":"value0","nativeSrc":"7390:6:81","nodeType":"YulIdentifier","src":"7390:6:81"}],"functionName":{"name":"mstore","nativeSrc":"7372:6:81","nodeType":"YulIdentifier","src":"7372:6:81"},"nativeSrc":"7372:25:81","nodeType":"YulFunctionCall","src":"7372:25:81"},"nativeSrc":"7372:25:81","nodeType":"YulExpressionStatement","src":"7372:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"7226:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7296:9:81","nodeType":"YulTypedName","src":"7296:9:81","type":""},{"name":"value0","nativeSrc":"7307:6:81","nodeType":"YulTypedName","src":"7307:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7318:4:81","nodeType":"YulTypedName","src":"7318:4:81","type":""}],"src":"7226:177:81"},{"body":{"nativeSrc":"7478:177:81","nodeType":"YulBlock","src":"7478:177:81","statements":[{"body":{"nativeSrc":"7524:16:81","nodeType":"YulBlock","src":"7524:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7533:1:81","nodeType":"YulLiteral","src":"7533:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7536:1:81","nodeType":"YulLiteral","src":"7536:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7526:6:81","nodeType":"YulIdentifier","src":"7526:6:81"},"nativeSrc":"7526:12:81","nodeType":"YulFunctionCall","src":"7526:12:81"},"nativeSrc":"7526:12:81","nodeType":"YulExpressionStatement","src":"7526:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7499:7:81","nodeType":"YulIdentifier","src":"7499:7:81"},{"name":"headStart","nativeSrc":"7508:9:81","nodeType":"YulIdentifier","src":"7508:9:81"}],"functionName":{"name":"sub","nativeSrc":"7495:3:81","nodeType":"YulIdentifier","src":"7495:3:81"},"nativeSrc":"7495:23:81","nodeType":"YulFunctionCall","src":"7495:23:81"},{"kind":"number","nativeSrc":"7520:2:81","nodeType":"YulLiteral","src":"7520:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7491:3:81","nodeType":"YulIdentifier","src":"7491:3:81"},"nativeSrc":"7491:32:81","nodeType":"YulFunctionCall","src":"7491:32:81"},"nativeSrc":"7488:52:81","nodeType":"YulIf","src":"7488:52:81"},{"nativeSrc":"7549:36:81","nodeType":"YulVariableDeclaration","src":"7549:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7575:9:81","nodeType":"YulIdentifier","src":"7575:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"7562:12:81","nodeType":"YulIdentifier","src":"7562:12:81"},"nativeSrc":"7562:23:81","nodeType":"YulFunctionCall","src":"7562:23:81"},"variables":[{"name":"value","nativeSrc":"7553:5:81","nodeType":"YulTypedName","src":"7553:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7619:5:81","nodeType":"YulIdentifier","src":"7619:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7594:24:81","nodeType":"YulIdentifier","src":"7594:24:81"},"nativeSrc":"7594:31:81","nodeType":"YulFunctionCall","src":"7594:31:81"},"nativeSrc":"7594:31:81","nodeType":"YulExpressionStatement","src":"7594:31:81"},{"nativeSrc":"7634:15:81","nodeType":"YulAssignment","src":"7634:15:81","value":{"name":"value","nativeSrc":"7644:5:81","nodeType":"YulIdentifier","src":"7644:5:81"},"variableNames":[{"name":"value0","nativeSrc":"7634:6:81","nodeType":"YulIdentifier","src":"7634:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"7408:247:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7444:9:81","nodeType":"YulTypedName","src":"7444:9:81","type":""},{"name":"dataEnd","nativeSrc":"7455:7:81","nodeType":"YulTypedName","src":"7455:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7467:6:81","nodeType":"YulTypedName","src":"7467:6:81","type":""}],"src":"7408:247:81"},{"body":{"nativeSrc":"7819:427:81","nodeType":"YulBlock","src":"7819:427:81","statements":[{"nativeSrc":"7829:27:81","nodeType":"YulAssignment","src":"7829:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7841:9:81","nodeType":"YulIdentifier","src":"7841:9:81"},{"kind":"number","nativeSrc":"7852:3:81","nodeType":"YulLiteral","src":"7852:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"7837:3:81","nodeType":"YulIdentifier","src":"7837:3:81"},"nativeSrc":"7837:19:81","nodeType":"YulFunctionCall","src":"7837:19:81"},"variableNames":[{"name":"tail","nativeSrc":"7829:4:81","nodeType":"YulIdentifier","src":"7829:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7872:9:81","nodeType":"YulIdentifier","src":"7872:9:81"},{"arguments":[{"name":"value0","nativeSrc":"7889:6:81","nodeType":"YulIdentifier","src":"7889:6:81"}],"functionName":{"name":"mload","nativeSrc":"7883:5:81","nodeType":"YulIdentifier","src":"7883:5:81"},"nativeSrc":"7883:13:81","nodeType":"YulFunctionCall","src":"7883:13:81"}],"functionName":{"name":"mstore","nativeSrc":"7865:6:81","nodeType":"YulIdentifier","src":"7865:6:81"},"nativeSrc":"7865:32:81","nodeType":"YulFunctionCall","src":"7865:32:81"},"nativeSrc":"7865:32:81","nodeType":"YulExpressionStatement","src":"7865:32:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7917:9:81","nodeType":"YulIdentifier","src":"7917:9:81"},{"kind":"number","nativeSrc":"7928:4:81","nodeType":"YulLiteral","src":"7928:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7913:3:81","nodeType":"YulIdentifier","src":"7913:3:81"},"nativeSrc":"7913:20:81","nodeType":"YulFunctionCall","src":"7913:20:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7959:6:81","nodeType":"YulIdentifier","src":"7959:6:81"},{"kind":"number","nativeSrc":"7967:4:81","nodeType":"YulLiteral","src":"7967:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7955:3:81","nodeType":"YulIdentifier","src":"7955:3:81"},"nativeSrc":"7955:17:81","nodeType":"YulFunctionCall","src":"7955:17:81"}],"functionName":{"name":"mload","nativeSrc":"7949:5:81","nodeType":"YulIdentifier","src":"7949:5:81"},"nativeSrc":"7949:24:81","nodeType":"YulFunctionCall","src":"7949:24:81"}],"functionName":{"name":"iszero","nativeSrc":"7942:6:81","nodeType":"YulIdentifier","src":"7942:6:81"},"nativeSrc":"7942:32:81","nodeType":"YulFunctionCall","src":"7942:32:81"}],"functionName":{"name":"iszero","nativeSrc":"7935:6:81","nodeType":"YulIdentifier","src":"7935:6:81"},"nativeSrc":"7935:40:81","nodeType":"YulFunctionCall","src":"7935:40:81"}],"functionName":{"name":"mstore","nativeSrc":"7906:6:81","nodeType":"YulIdentifier","src":"7906:6:81"},"nativeSrc":"7906:70:81","nodeType":"YulFunctionCall","src":"7906:70:81"},"nativeSrc":"7906:70:81","nodeType":"YulExpressionStatement","src":"7906:70:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7996:9:81","nodeType":"YulIdentifier","src":"7996:9:81"},{"kind":"number","nativeSrc":"8007:4:81","nodeType":"YulLiteral","src":"8007:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"7992:3:81","nodeType":"YulIdentifier","src":"7992:3:81"},"nativeSrc":"7992:20:81","nodeType":"YulFunctionCall","src":"7992:20:81"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8028:6:81","nodeType":"YulIdentifier","src":"8028:6:81"},{"kind":"number","nativeSrc":"8036:4:81","nodeType":"YulLiteral","src":"8036:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"8024:3:81","nodeType":"YulIdentifier","src":"8024:3:81"},"nativeSrc":"8024:17:81","nodeType":"YulFunctionCall","src":"8024:17:81"}],"functionName":{"name":"mload","nativeSrc":"8018:5:81","nodeType":"YulIdentifier","src":"8018:5:81"},"nativeSrc":"8018:24:81","nodeType":"YulFunctionCall","src":"8018:24:81"},{"kind":"number","nativeSrc":"8044:30:81","nodeType":"YulLiteral","src":"8044:30:81","type":"","value":"0xffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8014:3:81","nodeType":"YulIdentifier","src":"8014:3:81"},"nativeSrc":"8014:61:81","nodeType":"YulFunctionCall","src":"8014:61:81"}],"functionName":{"name":"mstore","nativeSrc":"7985:6:81","nodeType":"YulIdentifier","src":"7985:6:81"},"nativeSrc":"7985:91:81","nodeType":"YulFunctionCall","src":"7985:91:81"},"nativeSrc":"7985:91:81","nodeType":"YulExpressionStatement","src":"7985:91:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8096:9:81","nodeType":"YulIdentifier","src":"8096:9:81"},{"kind":"number","nativeSrc":"8107:4:81","nodeType":"YulLiteral","src":"8107:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"8092:3:81","nodeType":"YulIdentifier","src":"8092:3:81"},"nativeSrc":"8092:20:81","nodeType":"YulFunctionCall","src":"8092:20:81"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8128:6:81","nodeType":"YulIdentifier","src":"8128:6:81"},{"kind":"number","nativeSrc":"8136:4:81","nodeType":"YulLiteral","src":"8136:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"8124:3:81","nodeType":"YulIdentifier","src":"8124:3:81"},"nativeSrc":"8124:17:81","nodeType":"YulFunctionCall","src":"8124:17:81"}],"functionName":{"name":"mload","nativeSrc":"8118:5:81","nodeType":"YulIdentifier","src":"8118:5:81"},"nativeSrc":"8118:24:81","nodeType":"YulFunctionCall","src":"8118:24:81"},{"kind":"number","nativeSrc":"8144:10:81","nodeType":"YulLiteral","src":"8144:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"8114:3:81","nodeType":"YulIdentifier","src":"8114:3:81"},"nativeSrc":"8114:41:81","nodeType":"YulFunctionCall","src":"8114:41:81"}],"functionName":{"name":"mstore","nativeSrc":"8085:6:81","nodeType":"YulIdentifier","src":"8085:6:81"},"nativeSrc":"8085:71:81","nodeType":"YulFunctionCall","src":"8085:71:81"},"nativeSrc":"8085:71:81","nodeType":"YulExpressionStatement","src":"8085:71:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8176:9:81","nodeType":"YulIdentifier","src":"8176:9:81"},{"kind":"number","nativeSrc":"8187:4:81","nodeType":"YulLiteral","src":"8187:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"8172:3:81","nodeType":"YulIdentifier","src":"8172:3:81"},"nativeSrc":"8172:20:81","nodeType":"YulFunctionCall","src":"8172:20:81"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8208:6:81","nodeType":"YulIdentifier","src":"8208:6:81"},{"kind":"number","nativeSrc":"8216:4:81","nodeType":"YulLiteral","src":"8216:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"8204:3:81","nodeType":"YulIdentifier","src":"8204:3:81"},"nativeSrc":"8204:17:81","nodeType":"YulFunctionCall","src":"8204:17:81"}],"functionName":{"name":"mload","nativeSrc":"8198:5:81","nodeType":"YulIdentifier","src":"8198:5:81"},"nativeSrc":"8198:24:81","nodeType":"YulFunctionCall","src":"8198:24:81"},{"kind":"number","nativeSrc":"8224:14:81","nodeType":"YulLiteral","src":"8224:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8194:3:81","nodeType":"YulIdentifier","src":"8194:3:81"},"nativeSrc":"8194:45:81","nodeType":"YulFunctionCall","src":"8194:45:81"}],"functionName":{"name":"mstore","nativeSrc":"8165:6:81","nodeType":"YulIdentifier","src":"8165:6:81"},"nativeSrc":"8165:75:81","nodeType":"YulFunctionCall","src":"8165:75:81"},"nativeSrc":"8165:75:81","nodeType":"YulExpressionStatement","src":"8165:75:81"}]},"name":"abi_encode_tuple_t_struct$_DepositInfo_$3673_memory_ptr__to_t_struct$_DepositInfo_$3673_memory_ptr__fromStack_reversed","nativeSrc":"7660:586:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7788:9:81","nodeType":"YulTypedName","src":"7788:9:81","type":""},{"name":"value0","nativeSrc":"7799:6:81","nodeType":"YulTypedName","src":"7799:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7810:4:81","nodeType":"YulTypedName","src":"7810:4:81","type":""}],"src":"7660:586:81"},{"body":{"nativeSrc":"8363:283:81","nodeType":"YulBlock","src":"8363:283:81","statements":[{"body":{"nativeSrc":"8412:16:81","nodeType":"YulBlock","src":"8412:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8421:1:81","nodeType":"YulLiteral","src":"8421:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8424:1:81","nodeType":"YulLiteral","src":"8424:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8414:6:81","nodeType":"YulIdentifier","src":"8414:6:81"},"nativeSrc":"8414:12:81","nodeType":"YulFunctionCall","src":"8414:12:81"},"nativeSrc":"8414:12:81","nodeType":"YulExpressionStatement","src":"8414:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"8391:6:81","nodeType":"YulIdentifier","src":"8391:6:81"},{"kind":"number","nativeSrc":"8399:4:81","nodeType":"YulLiteral","src":"8399:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"8387:3:81","nodeType":"YulIdentifier","src":"8387:3:81"},"nativeSrc":"8387:17:81","nodeType":"YulFunctionCall","src":"8387:17:81"},{"name":"end","nativeSrc":"8406:3:81","nodeType":"YulIdentifier","src":"8406:3:81"}],"functionName":{"name":"slt","nativeSrc":"8383:3:81","nodeType":"YulIdentifier","src":"8383:3:81"},"nativeSrc":"8383:27:81","nodeType":"YulFunctionCall","src":"8383:27:81"}],"functionName":{"name":"iszero","nativeSrc":"8376:6:81","nodeType":"YulIdentifier","src":"8376:6:81"},"nativeSrc":"8376:35:81","nodeType":"YulFunctionCall","src":"8376:35:81"},"nativeSrc":"8373:55:81","nodeType":"YulIf","src":"8373:55:81"},{"nativeSrc":"8437:30:81","nodeType":"YulAssignment","src":"8437:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"8460:6:81","nodeType":"YulIdentifier","src":"8460:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"8447:12:81","nodeType":"YulIdentifier","src":"8447:12:81"},"nativeSrc":"8447:20:81","nodeType":"YulFunctionCall","src":"8447:20:81"},"variableNames":[{"name":"length","nativeSrc":"8437:6:81","nodeType":"YulIdentifier","src":"8437:6:81"}]},{"body":{"nativeSrc":"8510:16:81","nodeType":"YulBlock","src":"8510:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8519:1:81","nodeType":"YulLiteral","src":"8519:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8522:1:81","nodeType":"YulLiteral","src":"8522:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8512:6:81","nodeType":"YulIdentifier","src":"8512:6:81"},"nativeSrc":"8512:12:81","nodeType":"YulFunctionCall","src":"8512:12:81"},"nativeSrc":"8512:12:81","nodeType":"YulExpressionStatement","src":"8512:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"8482:6:81","nodeType":"YulIdentifier","src":"8482:6:81"},{"kind":"number","nativeSrc":"8490:18:81","nodeType":"YulLiteral","src":"8490:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8479:2:81","nodeType":"YulIdentifier","src":"8479:2:81"},"nativeSrc":"8479:30:81","nodeType":"YulFunctionCall","src":"8479:30:81"},"nativeSrc":"8476:50:81","nodeType":"YulIf","src":"8476:50:81"},{"nativeSrc":"8535:29:81","nodeType":"YulAssignment","src":"8535:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"8551:6:81","nodeType":"YulIdentifier","src":"8551:6:81"},{"kind":"number","nativeSrc":"8559:4:81","nodeType":"YulLiteral","src":"8559:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8547:3:81","nodeType":"YulIdentifier","src":"8547:3:81"},"nativeSrc":"8547:17:81","nodeType":"YulFunctionCall","src":"8547:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"8535:8:81","nodeType":"YulIdentifier","src":"8535:8:81"}]},{"body":{"nativeSrc":"8624:16:81","nodeType":"YulBlock","src":"8624:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8633:1:81","nodeType":"YulLiteral","src":"8633:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8636:1:81","nodeType":"YulLiteral","src":"8636:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8626:6:81","nodeType":"YulIdentifier","src":"8626:6:81"},"nativeSrc":"8626:12:81","nodeType":"YulFunctionCall","src":"8626:12:81"},"nativeSrc":"8626:12:81","nodeType":"YulExpressionStatement","src":"8626:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"8587:6:81","nodeType":"YulIdentifier","src":"8587:6:81"},{"arguments":[{"kind":"number","nativeSrc":"8599:1:81","nodeType":"YulLiteral","src":"8599:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"8602:6:81","nodeType":"YulIdentifier","src":"8602:6:81"}],"functionName":{"name":"shl","nativeSrc":"8595:3:81","nodeType":"YulIdentifier","src":"8595:3:81"},"nativeSrc":"8595:14:81","nodeType":"YulFunctionCall","src":"8595:14:81"}],"functionName":{"name":"add","nativeSrc":"8583:3:81","nodeType":"YulIdentifier","src":"8583:3:81"},"nativeSrc":"8583:27:81","nodeType":"YulFunctionCall","src":"8583:27:81"},{"kind":"number","nativeSrc":"8612:4:81","nodeType":"YulLiteral","src":"8612:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8579:3:81","nodeType":"YulIdentifier","src":"8579:3:81"},"nativeSrc":"8579:38:81","nodeType":"YulFunctionCall","src":"8579:38:81"},{"name":"end","nativeSrc":"8619:3:81","nodeType":"YulIdentifier","src":"8619:3:81"}],"functionName":{"name":"gt","nativeSrc":"8576:2:81","nodeType":"YulIdentifier","src":"8576:2:81"},"nativeSrc":"8576:47:81","nodeType":"YulFunctionCall","src":"8576:47:81"},"nativeSrc":"8573:67:81","nodeType":"YulIf","src":"8573:67:81"}]},"name":"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata","nativeSrc":"8251:395:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"8326:6:81","nodeType":"YulTypedName","src":"8326:6:81","type":""},{"name":"end","nativeSrc":"8334:3:81","nodeType":"YulTypedName","src":"8334:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"8342:8:81","nodeType":"YulTypedName","src":"8342:8:81","type":""},{"name":"length","nativeSrc":"8352:6:81","nodeType":"YulTypedName","src":"8352:6:81","type":""}],"src":"8251:395:81"},{"body":{"nativeSrc":"8820:478:81","nodeType":"YulBlock","src":"8820:478:81","statements":[{"body":{"nativeSrc":"8866:16:81","nodeType":"YulBlock","src":"8866:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8875:1:81","nodeType":"YulLiteral","src":"8875:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8878:1:81","nodeType":"YulLiteral","src":"8878:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8868:6:81","nodeType":"YulIdentifier","src":"8868:6:81"},"nativeSrc":"8868:12:81","nodeType":"YulFunctionCall","src":"8868:12:81"},"nativeSrc":"8868:12:81","nodeType":"YulExpressionStatement","src":"8868:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8841:7:81","nodeType":"YulIdentifier","src":"8841:7:81"},{"name":"headStart","nativeSrc":"8850:9:81","nodeType":"YulIdentifier","src":"8850:9:81"}],"functionName":{"name":"sub","nativeSrc":"8837:3:81","nodeType":"YulIdentifier","src":"8837:3:81"},"nativeSrc":"8837:23:81","nodeType":"YulFunctionCall","src":"8837:23:81"},{"kind":"number","nativeSrc":"8862:2:81","nodeType":"YulLiteral","src":"8862:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8833:3:81","nodeType":"YulIdentifier","src":"8833:3:81"},"nativeSrc":"8833:32:81","nodeType":"YulFunctionCall","src":"8833:32:81"},"nativeSrc":"8830:52:81","nodeType":"YulIf","src":"8830:52:81"},{"nativeSrc":"8891:37:81","nodeType":"YulVariableDeclaration","src":"8891:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8918:9:81","nodeType":"YulIdentifier","src":"8918:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"8905:12:81","nodeType":"YulIdentifier","src":"8905:12:81"},"nativeSrc":"8905:23:81","nodeType":"YulFunctionCall","src":"8905:23:81"},"variables":[{"name":"offset","nativeSrc":"8895:6:81","nodeType":"YulTypedName","src":"8895:6:81","type":""}]},{"body":{"nativeSrc":"8971:16:81","nodeType":"YulBlock","src":"8971:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8980:1:81","nodeType":"YulLiteral","src":"8980:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8983:1:81","nodeType":"YulLiteral","src":"8983:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8973:6:81","nodeType":"YulIdentifier","src":"8973:6:81"},"nativeSrc":"8973:12:81","nodeType":"YulFunctionCall","src":"8973:12:81"},"nativeSrc":"8973:12:81","nodeType":"YulExpressionStatement","src":"8973:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8943:6:81","nodeType":"YulIdentifier","src":"8943:6:81"},{"kind":"number","nativeSrc":"8951:18:81","nodeType":"YulLiteral","src":"8951:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8940:2:81","nodeType":"YulIdentifier","src":"8940:2:81"},"nativeSrc":"8940:30:81","nodeType":"YulFunctionCall","src":"8940:30:81"},"nativeSrc":"8937:50:81","nodeType":"YulIf","src":"8937:50:81"},{"nativeSrc":"8996:124:81","nodeType":"YulVariableDeclaration","src":"8996:124:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9092:9:81","nodeType":"YulIdentifier","src":"9092:9:81"},{"name":"offset","nativeSrc":"9103:6:81","nodeType":"YulIdentifier","src":"9103:6:81"}],"functionName":{"name":"add","nativeSrc":"9088:3:81","nodeType":"YulIdentifier","src":"9088:3:81"},"nativeSrc":"9088:22:81","nodeType":"YulFunctionCall","src":"9088:22:81"},{"name":"dataEnd","nativeSrc":"9112:7:81","nodeType":"YulIdentifier","src":"9112:7:81"}],"functionName":{"name":"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata","nativeSrc":"9022:65:81","nodeType":"YulIdentifier","src":"9022:65:81"},"nativeSrc":"9022:98:81","nodeType":"YulFunctionCall","src":"9022:98:81"},"variables":[{"name":"value0_1","nativeSrc":"9000:8:81","nodeType":"YulTypedName","src":"9000:8:81","type":""},{"name":"value1_1","nativeSrc":"9010:8:81","nodeType":"YulTypedName","src":"9010:8:81","type":""}]},{"nativeSrc":"9129:18:81","nodeType":"YulAssignment","src":"9129:18:81","value":{"name":"value0_1","nativeSrc":"9139:8:81","nodeType":"YulIdentifier","src":"9139:8:81"},"variableNames":[{"name":"value0","nativeSrc":"9129:6:81","nodeType":"YulIdentifier","src":"9129:6:81"}]},{"nativeSrc":"9156:18:81","nodeType":"YulAssignment","src":"9156:18:81","value":{"name":"value1_1","nativeSrc":"9166:8:81","nodeType":"YulIdentifier","src":"9166:8:81"},"variableNames":[{"name":"value1","nativeSrc":"9156:6:81","nodeType":"YulIdentifier","src":"9156:6:81"}]},{"nativeSrc":"9183:45:81","nodeType":"YulVariableDeclaration","src":"9183:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9213:9:81","nodeType":"YulIdentifier","src":"9213:9:81"},{"kind":"number","nativeSrc":"9224:2:81","nodeType":"YulLiteral","src":"9224:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9209:3:81","nodeType":"YulIdentifier","src":"9209:3:81"},"nativeSrc":"9209:18:81","nodeType":"YulFunctionCall","src":"9209:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"9196:12:81","nodeType":"YulIdentifier","src":"9196:12:81"},"nativeSrc":"9196:32:81","nodeType":"YulFunctionCall","src":"9196:32:81"},"variables":[{"name":"value","nativeSrc":"9187:5:81","nodeType":"YulTypedName","src":"9187:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9262:5:81","nodeType":"YulIdentifier","src":"9262:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9237:24:81","nodeType":"YulIdentifier","src":"9237:24:81"},"nativeSrc":"9237:31:81","nodeType":"YulFunctionCall","src":"9237:31:81"},"nativeSrc":"9237:31:81","nodeType":"YulExpressionStatement","src":"9237:31:81"},{"nativeSrc":"9277:15:81","nodeType":"YulAssignment","src":"9277:15:81","value":{"name":"value","nativeSrc":"9287:5:81","nodeType":"YulIdentifier","src":"9287:5:81"},"variableNames":[{"name":"value2","nativeSrc":"9277:6:81","nodeType":"YulIdentifier","src":"9277:6:81"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptrt_address_payable","nativeSrc":"8651:647:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8770:9:81","nodeType":"YulTypedName","src":"8770:9:81","type":""},{"name":"dataEnd","nativeSrc":"8781:7:81","nodeType":"YulTypedName","src":"8781:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8793:6:81","nodeType":"YulTypedName","src":"8793:6:81","type":""},{"name":"value1","nativeSrc":"8801:6:81","nodeType":"YulTypedName","src":"8801:6:81","type":""},{"name":"value2","nativeSrc":"8809:6:81","nodeType":"YulTypedName","src":"8809:6:81","type":""}],"src":"8651:647:81"},{"body":{"nativeSrc":"9409:438:81","nodeType":"YulBlock","src":"9409:438:81","statements":[{"body":{"nativeSrc":"9455:16:81","nodeType":"YulBlock","src":"9455:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9464:1:81","nodeType":"YulLiteral","src":"9464:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9467:1:81","nodeType":"YulLiteral","src":"9467:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9457:6:81","nodeType":"YulIdentifier","src":"9457:6:81"},"nativeSrc":"9457:12:81","nodeType":"YulFunctionCall","src":"9457:12:81"},"nativeSrc":"9457:12:81","nodeType":"YulExpressionStatement","src":"9457:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9430:7:81","nodeType":"YulIdentifier","src":"9430:7:81"},{"name":"headStart","nativeSrc":"9439:9:81","nodeType":"YulIdentifier","src":"9439:9:81"}],"functionName":{"name":"sub","nativeSrc":"9426:3:81","nodeType":"YulIdentifier","src":"9426:3:81"},"nativeSrc":"9426:23:81","nodeType":"YulFunctionCall","src":"9426:23:81"},{"kind":"number","nativeSrc":"9451:2:81","nodeType":"YulLiteral","src":"9451:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9422:3:81","nodeType":"YulIdentifier","src":"9422:3:81"},"nativeSrc":"9422:32:81","nodeType":"YulFunctionCall","src":"9422:32:81"},"nativeSrc":"9419:52:81","nodeType":"YulIf","src":"9419:52:81"},{"nativeSrc":"9480:36:81","nodeType":"YulVariableDeclaration","src":"9480:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9506:9:81","nodeType":"YulIdentifier","src":"9506:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"9493:12:81","nodeType":"YulIdentifier","src":"9493:12:81"},"nativeSrc":"9493:23:81","nodeType":"YulFunctionCall","src":"9493:23:81"},"variables":[{"name":"value","nativeSrc":"9484:5:81","nodeType":"YulTypedName","src":"9484:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9550:5:81","nodeType":"YulIdentifier","src":"9550:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9525:24:81","nodeType":"YulIdentifier","src":"9525:24:81"},"nativeSrc":"9525:31:81","nodeType":"YulFunctionCall","src":"9525:31:81"},"nativeSrc":"9525:31:81","nodeType":"YulExpressionStatement","src":"9525:31:81"},{"nativeSrc":"9565:15:81","nodeType":"YulAssignment","src":"9565:15:81","value":{"name":"value","nativeSrc":"9575:5:81","nodeType":"YulIdentifier","src":"9575:5:81"},"variableNames":[{"name":"value0","nativeSrc":"9565:6:81","nodeType":"YulIdentifier","src":"9565:6:81"}]},{"nativeSrc":"9589:46:81","nodeType":"YulVariableDeclaration","src":"9589:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9620:9:81","nodeType":"YulIdentifier","src":"9620:9:81"},{"kind":"number","nativeSrc":"9631:2:81","nodeType":"YulLiteral","src":"9631:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9616:3:81","nodeType":"YulIdentifier","src":"9616:3:81"},"nativeSrc":"9616:18:81","nodeType":"YulFunctionCall","src":"9616:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"9603:12:81","nodeType":"YulIdentifier","src":"9603:12:81"},"nativeSrc":"9603:32:81","nodeType":"YulFunctionCall","src":"9603:32:81"},"variables":[{"name":"offset","nativeSrc":"9593:6:81","nodeType":"YulTypedName","src":"9593:6:81","type":""}]},{"body":{"nativeSrc":"9678:16:81","nodeType":"YulBlock","src":"9678:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9687:1:81","nodeType":"YulLiteral","src":"9687:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9690:1:81","nodeType":"YulLiteral","src":"9690:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9680:6:81","nodeType":"YulIdentifier","src":"9680:6:81"},"nativeSrc":"9680:12:81","nodeType":"YulFunctionCall","src":"9680:12:81"},"nativeSrc":"9680:12:81","nodeType":"YulExpressionStatement","src":"9680:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9650:6:81","nodeType":"YulIdentifier","src":"9650:6:81"},{"kind":"number","nativeSrc":"9658:18:81","nodeType":"YulLiteral","src":"9658:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9647:2:81","nodeType":"YulIdentifier","src":"9647:2:81"},"nativeSrc":"9647:30:81","nodeType":"YulFunctionCall","src":"9647:30:81"},"nativeSrc":"9644:50:81","nodeType":"YulIf","src":"9644:50:81"},{"nativeSrc":"9703:84:81","nodeType":"YulVariableDeclaration","src":"9703:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9759:9:81","nodeType":"YulIdentifier","src":"9759:9:81"},{"name":"offset","nativeSrc":"9770:6:81","nodeType":"YulIdentifier","src":"9770:6:81"}],"functionName":{"name":"add","nativeSrc":"9755:3:81","nodeType":"YulIdentifier","src":"9755:3:81"},"nativeSrc":"9755:22:81","nodeType":"YulFunctionCall","src":"9755:22:81"},{"name":"dataEnd","nativeSrc":"9779:7:81","nodeType":"YulIdentifier","src":"9779:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9729:25:81","nodeType":"YulIdentifier","src":"9729:25:81"},"nativeSrc":"9729:58:81","nodeType":"YulFunctionCall","src":"9729:58:81"},"variables":[{"name":"value1_1","nativeSrc":"9707:8:81","nodeType":"YulTypedName","src":"9707:8:81","type":""},{"name":"value2_1","nativeSrc":"9717:8:81","nodeType":"YulTypedName","src":"9717:8:81","type":""}]},{"nativeSrc":"9796:18:81","nodeType":"YulAssignment","src":"9796:18:81","value":{"name":"value1_1","nativeSrc":"9806:8:81","nodeType":"YulIdentifier","src":"9806:8:81"},"variableNames":[{"name":"value1","nativeSrc":"9796:6:81","nodeType":"YulIdentifier","src":"9796:6:81"}]},{"nativeSrc":"9823:18:81","nodeType":"YulAssignment","src":"9823:18:81","value":{"name":"value2_1","nativeSrc":"9833:8:81","nodeType":"YulIdentifier","src":"9833:8:81"},"variableNames":[{"name":"value2","nativeSrc":"9823:6:81","nodeType":"YulIdentifier","src":"9823:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"9303:544:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9359:9:81","nodeType":"YulTypedName","src":"9359:9:81","type":""},{"name":"dataEnd","nativeSrc":"9370:7:81","nodeType":"YulTypedName","src":"9370:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9382:6:81","nodeType":"YulTypedName","src":"9382:6:81","type":""},{"name":"value1","nativeSrc":"9390:6:81","nodeType":"YulTypedName","src":"9390:6:81","type":""},{"name":"value2","nativeSrc":"9398:6:81","nodeType":"YulTypedName","src":"9398:6:81","type":""}],"src":"9303:544:81"},{"body":{"nativeSrc":"9941:320:81","nodeType":"YulBlock","src":"9941:320:81","statements":[{"body":{"nativeSrc":"9987:16:81","nodeType":"YulBlock","src":"9987:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9996:1:81","nodeType":"YulLiteral","src":"9996:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9999:1:81","nodeType":"YulLiteral","src":"9999:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9989:6:81","nodeType":"YulIdentifier","src":"9989:6:81"},"nativeSrc":"9989:12:81","nodeType":"YulFunctionCall","src":"9989:12:81"},"nativeSrc":"9989:12:81","nodeType":"YulExpressionStatement","src":"9989:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9962:7:81","nodeType":"YulIdentifier","src":"9962:7:81"},{"name":"headStart","nativeSrc":"9971:9:81","nodeType":"YulIdentifier","src":"9971:9:81"}],"functionName":{"name":"sub","nativeSrc":"9958:3:81","nodeType":"YulIdentifier","src":"9958:3:81"},"nativeSrc":"9958:23:81","nodeType":"YulFunctionCall","src":"9958:23:81"},{"kind":"number","nativeSrc":"9983:2:81","nodeType":"YulLiteral","src":"9983:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9954:3:81","nodeType":"YulIdentifier","src":"9954:3:81"},"nativeSrc":"9954:32:81","nodeType":"YulFunctionCall","src":"9954:32:81"},"nativeSrc":"9951:52:81","nodeType":"YulIf","src":"9951:52:81"},{"nativeSrc":"10012:37:81","nodeType":"YulVariableDeclaration","src":"10012:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10039:9:81","nodeType":"YulIdentifier","src":"10039:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"10026:12:81","nodeType":"YulIdentifier","src":"10026:12:81"},"nativeSrc":"10026:23:81","nodeType":"YulFunctionCall","src":"10026:23:81"},"variables":[{"name":"offset","nativeSrc":"10016:6:81","nodeType":"YulTypedName","src":"10016:6:81","type":""}]},{"body":{"nativeSrc":"10092:16:81","nodeType":"YulBlock","src":"10092:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10101:1:81","nodeType":"YulLiteral","src":"10101:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10104:1:81","nodeType":"YulLiteral","src":"10104:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10094:6:81","nodeType":"YulIdentifier","src":"10094:6:81"},"nativeSrc":"10094:12:81","nodeType":"YulFunctionCall","src":"10094:12:81"},"nativeSrc":"10094:12:81","nodeType":"YulExpressionStatement","src":"10094:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10064:6:81","nodeType":"YulIdentifier","src":"10064:6:81"},{"kind":"number","nativeSrc":"10072:18:81","nodeType":"YulLiteral","src":"10072:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10061:2:81","nodeType":"YulIdentifier","src":"10061:2:81"},"nativeSrc":"10061:30:81","nodeType":"YulFunctionCall","src":"10061:30:81"},"nativeSrc":"10058:50:81","nodeType":"YulIf","src":"10058:50:81"},{"nativeSrc":"10117:84:81","nodeType":"YulVariableDeclaration","src":"10117:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10173:9:81","nodeType":"YulIdentifier","src":"10173:9:81"},{"name":"offset","nativeSrc":"10184:6:81","nodeType":"YulIdentifier","src":"10184:6:81"}],"functionName":{"name":"add","nativeSrc":"10169:3:81","nodeType":"YulIdentifier","src":"10169:3:81"},"nativeSrc":"10169:22:81","nodeType":"YulFunctionCall","src":"10169:22:81"},{"name":"dataEnd","nativeSrc":"10193:7:81","nodeType":"YulIdentifier","src":"10193:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"10143:25:81","nodeType":"YulIdentifier","src":"10143:25:81"},"nativeSrc":"10143:58:81","nodeType":"YulFunctionCall","src":"10143:58:81"},"variables":[{"name":"value0_1","nativeSrc":"10121:8:81","nodeType":"YulTypedName","src":"10121:8:81","type":""},{"name":"value1_1","nativeSrc":"10131:8:81","nodeType":"YulTypedName","src":"10131:8:81","type":""}]},{"nativeSrc":"10210:18:81","nodeType":"YulAssignment","src":"10210:18:81","value":{"name":"value0_1","nativeSrc":"10220:8:81","nodeType":"YulIdentifier","src":"10220:8:81"},"variableNames":[{"name":"value0","nativeSrc":"10210:6:81","nodeType":"YulIdentifier","src":"10210:6:81"}]},{"nativeSrc":"10237:18:81","nodeType":"YulAssignment","src":"10237:18:81","value":{"name":"value1_1","nativeSrc":"10247:8:81","nodeType":"YulIdentifier","src":"10247:8:81"},"variableNames":[{"name":"value1","nativeSrc":"10237:6:81","nodeType":"YulIdentifier","src":"10237:6:81"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptr","nativeSrc":"9852:409:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9899:9:81","nodeType":"YulTypedName","src":"9899:9:81","type":""},{"name":"dataEnd","nativeSrc":"9910:7:81","nodeType":"YulTypedName","src":"9910:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9922:6:81","nodeType":"YulTypedName","src":"9922:6:81","type":""},{"name":"value1","nativeSrc":"9930:6:81","nodeType":"YulTypedName","src":"9930:6:81","type":""}],"src":"9852:409:81"},{"body":{"nativeSrc":"10344:177:81","nodeType":"YulBlock","src":"10344:177:81","statements":[{"body":{"nativeSrc":"10390:16:81","nodeType":"YulBlock","src":"10390:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10399:1:81","nodeType":"YulLiteral","src":"10399:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10402:1:81","nodeType":"YulLiteral","src":"10402:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10392:6:81","nodeType":"YulIdentifier","src":"10392:6:81"},"nativeSrc":"10392:12:81","nodeType":"YulFunctionCall","src":"10392:12:81"},"nativeSrc":"10392:12:81","nodeType":"YulExpressionStatement","src":"10392:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10365:7:81","nodeType":"YulIdentifier","src":"10365:7:81"},{"name":"headStart","nativeSrc":"10374:9:81","nodeType":"YulIdentifier","src":"10374:9:81"}],"functionName":{"name":"sub","nativeSrc":"10361:3:81","nodeType":"YulIdentifier","src":"10361:3:81"},"nativeSrc":"10361:23:81","nodeType":"YulFunctionCall","src":"10361:23:81"},{"kind":"number","nativeSrc":"10386:2:81","nodeType":"YulLiteral","src":"10386:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10357:3:81","nodeType":"YulIdentifier","src":"10357:3:81"},"nativeSrc":"10357:32:81","nodeType":"YulFunctionCall","src":"10357:32:81"},"nativeSrc":"10354:52:81","nodeType":"YulIf","src":"10354:52:81"},{"nativeSrc":"10415:36:81","nodeType":"YulVariableDeclaration","src":"10415:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10441:9:81","nodeType":"YulIdentifier","src":"10441:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"10428:12:81","nodeType":"YulIdentifier","src":"10428:12:81"},"nativeSrc":"10428:23:81","nodeType":"YulFunctionCall","src":"10428:23:81"},"variables":[{"name":"value","nativeSrc":"10419:5:81","nodeType":"YulTypedName","src":"10419:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10485:5:81","nodeType":"YulIdentifier","src":"10485:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10460:24:81","nodeType":"YulIdentifier","src":"10460:24:81"},"nativeSrc":"10460:31:81","nodeType":"YulFunctionCall","src":"10460:31:81"},"nativeSrc":"10460:31:81","nodeType":"YulExpressionStatement","src":"10460:31:81"},{"nativeSrc":"10500:15:81","nodeType":"YulAssignment","src":"10500:15:81","value":{"name":"value","nativeSrc":"10510:5:81","nodeType":"YulIdentifier","src":"10510:5:81"},"variableNames":[{"name":"value0","nativeSrc":"10500:6:81","nodeType":"YulIdentifier","src":"10500:6:81"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"10266:255:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10310:9:81","nodeType":"YulTypedName","src":"10310:9:81","type":""},{"name":"dataEnd","nativeSrc":"10321:7:81","nodeType":"YulTypedName","src":"10321:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10333:6:81","nodeType":"YulTypedName","src":"10333:6:81","type":""}],"src":"10266:255:81"},{"body":{"nativeSrc":"10696:478:81","nodeType":"YulBlock","src":"10696:478:81","statements":[{"body":{"nativeSrc":"10742:16:81","nodeType":"YulBlock","src":"10742:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10751:1:81","nodeType":"YulLiteral","src":"10751:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10754:1:81","nodeType":"YulLiteral","src":"10754:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10744:6:81","nodeType":"YulIdentifier","src":"10744:6:81"},"nativeSrc":"10744:12:81","nodeType":"YulFunctionCall","src":"10744:12:81"},"nativeSrc":"10744:12:81","nodeType":"YulExpressionStatement","src":"10744:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10717:7:81","nodeType":"YulIdentifier","src":"10717:7:81"},{"name":"headStart","nativeSrc":"10726:9:81","nodeType":"YulIdentifier","src":"10726:9:81"}],"functionName":{"name":"sub","nativeSrc":"10713:3:81","nodeType":"YulIdentifier","src":"10713:3:81"},"nativeSrc":"10713:23:81","nodeType":"YulFunctionCall","src":"10713:23:81"},{"kind":"number","nativeSrc":"10738:2:81","nodeType":"YulLiteral","src":"10738:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10709:3:81","nodeType":"YulIdentifier","src":"10709:3:81"},"nativeSrc":"10709:32:81","nodeType":"YulFunctionCall","src":"10709:32:81"},"nativeSrc":"10706:52:81","nodeType":"YulIf","src":"10706:52:81"},{"nativeSrc":"10767:37:81","nodeType":"YulVariableDeclaration","src":"10767:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10794:9:81","nodeType":"YulIdentifier","src":"10794:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"10781:12:81","nodeType":"YulIdentifier","src":"10781:12:81"},"nativeSrc":"10781:23:81","nodeType":"YulFunctionCall","src":"10781:23:81"},"variables":[{"name":"offset","nativeSrc":"10771:6:81","nodeType":"YulTypedName","src":"10771:6:81","type":""}]},{"body":{"nativeSrc":"10847:16:81","nodeType":"YulBlock","src":"10847:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10856:1:81","nodeType":"YulLiteral","src":"10856:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10859:1:81","nodeType":"YulLiteral","src":"10859:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10849:6:81","nodeType":"YulIdentifier","src":"10849:6:81"},"nativeSrc":"10849:12:81","nodeType":"YulFunctionCall","src":"10849:12:81"},"nativeSrc":"10849:12:81","nodeType":"YulExpressionStatement","src":"10849:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10819:6:81","nodeType":"YulIdentifier","src":"10819:6:81"},{"kind":"number","nativeSrc":"10827:18:81","nodeType":"YulLiteral","src":"10827:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10816:2:81","nodeType":"YulIdentifier","src":"10816:2:81"},"nativeSrc":"10816:30:81","nodeType":"YulFunctionCall","src":"10816:30:81"},"nativeSrc":"10813:50:81","nodeType":"YulIf","src":"10813:50:81"},{"nativeSrc":"10872:124:81","nodeType":"YulVariableDeclaration","src":"10872:124:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10968:9:81","nodeType":"YulIdentifier","src":"10968:9:81"},{"name":"offset","nativeSrc":"10979:6:81","nodeType":"YulIdentifier","src":"10979:6:81"}],"functionName":{"name":"add","nativeSrc":"10964:3:81","nodeType":"YulIdentifier","src":"10964:3:81"},"nativeSrc":"10964:22:81","nodeType":"YulFunctionCall","src":"10964:22:81"},{"name":"dataEnd","nativeSrc":"10988:7:81","nodeType":"YulIdentifier","src":"10988:7:81"}],"functionName":{"name":"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata","nativeSrc":"10898:65:81","nodeType":"YulIdentifier","src":"10898:65:81"},"nativeSrc":"10898:98:81","nodeType":"YulFunctionCall","src":"10898:98:81"},"variables":[{"name":"value0_1","nativeSrc":"10876:8:81","nodeType":"YulTypedName","src":"10876:8:81","type":""},{"name":"value1_1","nativeSrc":"10886:8:81","nodeType":"YulTypedName","src":"10886:8:81","type":""}]},{"nativeSrc":"11005:18:81","nodeType":"YulAssignment","src":"11005:18:81","value":{"name":"value0_1","nativeSrc":"11015:8:81","nodeType":"YulIdentifier","src":"11015:8:81"},"variableNames":[{"name":"value0","nativeSrc":"11005:6:81","nodeType":"YulIdentifier","src":"11005:6:81"}]},{"nativeSrc":"11032:18:81","nodeType":"YulAssignment","src":"11032:18:81","value":{"name":"value1_1","nativeSrc":"11042:8:81","nodeType":"YulIdentifier","src":"11042:8:81"},"variableNames":[{"name":"value1","nativeSrc":"11032:6:81","nodeType":"YulIdentifier","src":"11032:6:81"}]},{"nativeSrc":"11059:45:81","nodeType":"YulVariableDeclaration","src":"11059:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11089:9:81","nodeType":"YulIdentifier","src":"11089:9:81"},{"kind":"number","nativeSrc":"11100:2:81","nodeType":"YulLiteral","src":"11100:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11085:3:81","nodeType":"YulIdentifier","src":"11085:3:81"},"nativeSrc":"11085:18:81","nodeType":"YulFunctionCall","src":"11085:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11072:12:81","nodeType":"YulIdentifier","src":"11072:12:81"},"nativeSrc":"11072:32:81","nodeType":"YulFunctionCall","src":"11072:32:81"},"variables":[{"name":"value","nativeSrc":"11063:5:81","nodeType":"YulTypedName","src":"11063:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11138:5:81","nodeType":"YulIdentifier","src":"11138:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11113:24:81","nodeType":"YulIdentifier","src":"11113:24:81"},"nativeSrc":"11113:31:81","nodeType":"YulFunctionCall","src":"11113:31:81"},"nativeSrc":"11113:31:81","nodeType":"YulExpressionStatement","src":"11113:31:81"},{"nativeSrc":"11153:15:81","nodeType":"YulAssignment","src":"11153:15:81","value":{"name":"value","nativeSrc":"11163:5:81","nodeType":"YulIdentifier","src":"11163:5:81"},"variableNames":[{"name":"value2","nativeSrc":"11153:6:81","nodeType":"YulIdentifier","src":"11153:6:81"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptrt_address_payable","nativeSrc":"10526:648:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10646:9:81","nodeType":"YulTypedName","src":"10646:9:81","type":""},{"name":"dataEnd","nativeSrc":"10657:7:81","nodeType":"YulTypedName","src":"10657:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10669:6:81","nodeType":"YulTypedName","src":"10669:6:81","type":""},{"name":"value1","nativeSrc":"10677:6:81","nodeType":"YulTypedName","src":"10677:6:81","type":""},{"name":"value2","nativeSrc":"10685:6:81","nodeType":"YulTypedName","src":"10685:6:81","type":""}],"src":"10526:648:81"},{"body":{"nativeSrc":"11382:341:81","nodeType":"YulBlock","src":"11382:341:81","statements":[{"nativeSrc":"11392:27:81","nodeType":"YulAssignment","src":"11392:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11404:9:81","nodeType":"YulIdentifier","src":"11404:9:81"},{"kind":"number","nativeSrc":"11415:3:81","nodeType":"YulLiteral","src":"11415:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"11400:3:81","nodeType":"YulIdentifier","src":"11400:3:81"},"nativeSrc":"11400:19:81","nodeType":"YulFunctionCall","src":"11400:19:81"},"variableNames":[{"name":"tail","nativeSrc":"11392:4:81","nodeType":"YulIdentifier","src":"11392:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11435:9:81","nodeType":"YulIdentifier","src":"11435:9:81"},{"name":"value0","nativeSrc":"11446:6:81","nodeType":"YulIdentifier","src":"11446:6:81"}],"functionName":{"name":"mstore","nativeSrc":"11428:6:81","nodeType":"YulIdentifier","src":"11428:6:81"},"nativeSrc":"11428:25:81","nodeType":"YulFunctionCall","src":"11428:25:81"},"nativeSrc":"11428:25:81","nodeType":"YulExpressionStatement","src":"11428:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11473:9:81","nodeType":"YulIdentifier","src":"11473:9:81"},{"kind":"number","nativeSrc":"11484:2:81","nodeType":"YulLiteral","src":"11484:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11469:3:81","nodeType":"YulIdentifier","src":"11469:3:81"},"nativeSrc":"11469:18:81","nodeType":"YulFunctionCall","src":"11469:18:81"},{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11503:6:81","nodeType":"YulIdentifier","src":"11503:6:81"}],"functionName":{"name":"iszero","nativeSrc":"11496:6:81","nodeType":"YulIdentifier","src":"11496:6:81"},"nativeSrc":"11496:14:81","nodeType":"YulFunctionCall","src":"11496:14:81"}],"functionName":{"name":"iszero","nativeSrc":"11489:6:81","nodeType":"YulIdentifier","src":"11489:6:81"},"nativeSrc":"11489:22:81","nodeType":"YulFunctionCall","src":"11489:22:81"}],"functionName":{"name":"mstore","nativeSrc":"11462:6:81","nodeType":"YulIdentifier","src":"11462:6:81"},"nativeSrc":"11462:50:81","nodeType":"YulFunctionCall","src":"11462:50:81"},"nativeSrc":"11462:50:81","nodeType":"YulExpressionStatement","src":"11462:50:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11532:9:81","nodeType":"YulIdentifier","src":"11532:9:81"},{"kind":"number","nativeSrc":"11543:2:81","nodeType":"YulLiteral","src":"11543:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11528:3:81","nodeType":"YulIdentifier","src":"11528:3:81"},"nativeSrc":"11528:18:81","nodeType":"YulFunctionCall","src":"11528:18:81"},{"arguments":[{"name":"value2","nativeSrc":"11552:6:81","nodeType":"YulIdentifier","src":"11552:6:81"},{"kind":"number","nativeSrc":"11560:30:81","nodeType":"YulLiteral","src":"11560:30:81","type":"","value":"0xffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11548:3:81","nodeType":"YulIdentifier","src":"11548:3:81"},"nativeSrc":"11548:43:81","nodeType":"YulFunctionCall","src":"11548:43:81"}],"functionName":{"name":"mstore","nativeSrc":"11521:6:81","nodeType":"YulIdentifier","src":"11521:6:81"},"nativeSrc":"11521:71:81","nodeType":"YulFunctionCall","src":"11521:71:81"},"nativeSrc":"11521:71:81","nodeType":"YulExpressionStatement","src":"11521:71:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11612:9:81","nodeType":"YulIdentifier","src":"11612:9:81"},{"kind":"number","nativeSrc":"11623:2:81","nodeType":"YulLiteral","src":"11623:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11608:3:81","nodeType":"YulIdentifier","src":"11608:3:81"},"nativeSrc":"11608:18:81","nodeType":"YulFunctionCall","src":"11608:18:81"},{"arguments":[{"name":"value3","nativeSrc":"11632:6:81","nodeType":"YulIdentifier","src":"11632:6:81"},{"kind":"number","nativeSrc":"11640:10:81","nodeType":"YulLiteral","src":"11640:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11628:3:81","nodeType":"YulIdentifier","src":"11628:3:81"},"nativeSrc":"11628:23:81","nodeType":"YulFunctionCall","src":"11628:23:81"}],"functionName":{"name":"mstore","nativeSrc":"11601:6:81","nodeType":"YulIdentifier","src":"11601:6:81"},"nativeSrc":"11601:51:81","nodeType":"YulFunctionCall","src":"11601:51:81"},"nativeSrc":"11601:51:81","nodeType":"YulExpressionStatement","src":"11601:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11672:9:81","nodeType":"YulIdentifier","src":"11672:9:81"},{"kind":"number","nativeSrc":"11683:3:81","nodeType":"YulLiteral","src":"11683:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"11668:3:81","nodeType":"YulIdentifier","src":"11668:3:81"},"nativeSrc":"11668:19:81","nodeType":"YulFunctionCall","src":"11668:19:81"},{"arguments":[{"name":"value4","nativeSrc":"11693:6:81","nodeType":"YulIdentifier","src":"11693:6:81"},{"kind":"number","nativeSrc":"11701:14:81","nodeType":"YulLiteral","src":"11701:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11689:3:81","nodeType":"YulIdentifier","src":"11689:3:81"},"nativeSrc":"11689:27:81","nodeType":"YulFunctionCall","src":"11689:27:81"}],"functionName":{"name":"mstore","nativeSrc":"11661:6:81","nodeType":"YulIdentifier","src":"11661:6:81"},"nativeSrc":"11661:56:81","nodeType":"YulFunctionCall","src":"11661:56:81"},"nativeSrc":"11661:56:81","nodeType":"YulExpressionStatement","src":"11661:56:81"}]},"name":"abi_encode_tuple_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__to_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"11179:544:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11319:9:81","nodeType":"YulTypedName","src":"11319:9:81","type":""},{"name":"value4","nativeSrc":"11330:6:81","nodeType":"YulTypedName","src":"11330:6:81","type":""},{"name":"value3","nativeSrc":"11338:6:81","nodeType":"YulTypedName","src":"11338:6:81","type":""},{"name":"value2","nativeSrc":"11346:6:81","nodeType":"YulTypedName","src":"11346:6:81","type":""},{"name":"value1","nativeSrc":"11354:6:81","nodeType":"YulTypedName","src":"11354:6:81","type":""},{"name":"value0","nativeSrc":"11362:6:81","nodeType":"YulTypedName","src":"11362:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11373:4:81","nodeType":"YulTypedName","src":"11373:4:81","type":""}],"src":"11179:544:81"},{"body":{"nativeSrc":"11902:173:81","nodeType":"YulBlock","src":"11902:173:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11919:9:81","nodeType":"YulIdentifier","src":"11919:9:81"},{"kind":"number","nativeSrc":"11930:2:81","nodeType":"YulLiteral","src":"11930:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11912:6:81","nodeType":"YulIdentifier","src":"11912:6:81"},"nativeSrc":"11912:21:81","nodeType":"YulFunctionCall","src":"11912:21:81"},"nativeSrc":"11912:21:81","nodeType":"YulExpressionStatement","src":"11912:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11953:9:81","nodeType":"YulIdentifier","src":"11953:9:81"},{"kind":"number","nativeSrc":"11964:2:81","nodeType":"YulLiteral","src":"11964:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11949:3:81","nodeType":"YulIdentifier","src":"11949:3:81"},"nativeSrc":"11949:18:81","nodeType":"YulFunctionCall","src":"11949:18:81"},{"kind":"number","nativeSrc":"11969:2:81","nodeType":"YulLiteral","src":"11969:2:81","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"11942:6:81","nodeType":"YulIdentifier","src":"11942:6:81"},"nativeSrc":"11942:30:81","nodeType":"YulFunctionCall","src":"11942:30:81"},"nativeSrc":"11942:30:81","nodeType":"YulExpressionStatement","src":"11942:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11992:9:81","nodeType":"YulIdentifier","src":"11992:9:81"},{"kind":"number","nativeSrc":"12003:2:81","nodeType":"YulLiteral","src":"12003:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11988:3:81","nodeType":"YulIdentifier","src":"11988:3:81"},"nativeSrc":"11988:18:81","nodeType":"YulFunctionCall","src":"11988:18:81"},{"hexValue":"4141393220696e7465726e616c2063616c6c206f6e6c79","kind":"string","nativeSrc":"12008:25:81","nodeType":"YulLiteral","src":"12008:25:81","type":"","value":"AA92 internal call only"}],"functionName":{"name":"mstore","nativeSrc":"11981:6:81","nodeType":"YulIdentifier","src":"11981:6:81"},"nativeSrc":"11981:53:81","nodeType":"YulFunctionCall","src":"11981:53:81"},"nativeSrc":"11981:53:81","nodeType":"YulExpressionStatement","src":"11981:53:81"},{"nativeSrc":"12043:26:81","nodeType":"YulAssignment","src":"12043:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12055:9:81","nodeType":"YulIdentifier","src":"12055:9:81"},{"kind":"number","nativeSrc":"12066:2:81","nodeType":"YulLiteral","src":"12066:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12051:3:81","nodeType":"YulIdentifier","src":"12051:3:81"},"nativeSrc":"12051:18:81","nodeType":"YulFunctionCall","src":"12051:18:81"},"variableNames":[{"name":"tail","nativeSrc":"12043:4:81","nodeType":"YulIdentifier","src":"12043:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11728:347:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11879:9:81","nodeType":"YulTypedName","src":"11879:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11893:4:81","nodeType":"YulTypedName","src":"11893:4:81","type":""}],"src":"11728:347:81"},{"body":{"nativeSrc":"12112:95:81","nodeType":"YulBlock","src":"12112:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12129:1:81","nodeType":"YulLiteral","src":"12129:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12136:3:81","nodeType":"YulLiteral","src":"12136:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"12141:10:81","nodeType":"YulLiteral","src":"12141:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12132:3:81","nodeType":"YulIdentifier","src":"12132:3:81"},"nativeSrc":"12132:20:81","nodeType":"YulFunctionCall","src":"12132:20:81"}],"functionName":{"name":"mstore","nativeSrc":"12122:6:81","nodeType":"YulIdentifier","src":"12122:6:81"},"nativeSrc":"12122:31:81","nodeType":"YulFunctionCall","src":"12122:31:81"},"nativeSrc":"12122:31:81","nodeType":"YulExpressionStatement","src":"12122:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12169:1:81","nodeType":"YulLiteral","src":"12169:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"12172:4:81","nodeType":"YulLiteral","src":"12172:4:81","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12162:6:81","nodeType":"YulIdentifier","src":"12162:6:81"},"nativeSrc":"12162:15:81","nodeType":"YulFunctionCall","src":"12162:15:81"},"nativeSrc":"12162:15:81","nodeType":"YulExpressionStatement","src":"12162:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12193:1:81","nodeType":"YulLiteral","src":"12193:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12196:4:81","nodeType":"YulLiteral","src":"12196:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12186:6:81","nodeType":"YulIdentifier","src":"12186:6:81"},"nativeSrc":"12186:15:81","nodeType":"YulFunctionCall","src":"12186:15:81"},"nativeSrc":"12186:15:81","nodeType":"YulExpressionStatement","src":"12186:15:81"}]},"name":"panic_error_0x12","nativeSrc":"12080:127:81","nodeType":"YulFunctionDefinition","src":"12080:127:81"},{"body":{"nativeSrc":"12261:239:81","nodeType":"YulBlock","src":"12261:239:81","statements":[{"nativeSrc":"12271:26:81","nodeType":"YulVariableDeclaration","src":"12271:26:81","value":{"arguments":[{"name":"value","nativeSrc":"12291:5:81","nodeType":"YulIdentifier","src":"12291:5:81"}],"functionName":{"name":"mload","nativeSrc":"12285:5:81","nodeType":"YulIdentifier","src":"12285:5:81"},"nativeSrc":"12285:12:81","nodeType":"YulFunctionCall","src":"12285:12:81"},"variables":[{"name":"length","nativeSrc":"12275:6:81","nodeType":"YulTypedName","src":"12275:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"12313:3:81","nodeType":"YulIdentifier","src":"12313:3:81"},{"name":"length","nativeSrc":"12318:6:81","nodeType":"YulIdentifier","src":"12318:6:81"}],"functionName":{"name":"mstore","nativeSrc":"12306:6:81","nodeType":"YulIdentifier","src":"12306:6:81"},"nativeSrc":"12306:19:81","nodeType":"YulFunctionCall","src":"12306:19:81"},"nativeSrc":"12306:19:81","nodeType":"YulExpressionStatement","src":"12306:19:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12344:3:81","nodeType":"YulIdentifier","src":"12344:3:81"},{"kind":"number","nativeSrc":"12349:4:81","nodeType":"YulLiteral","src":"12349:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12340:3:81","nodeType":"YulIdentifier","src":"12340:3:81"},"nativeSrc":"12340:14:81","nodeType":"YulFunctionCall","src":"12340:14:81"},{"arguments":[{"name":"value","nativeSrc":"12360:5:81","nodeType":"YulIdentifier","src":"12360:5:81"},{"kind":"number","nativeSrc":"12367:4:81","nodeType":"YulLiteral","src":"12367:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12356:3:81","nodeType":"YulIdentifier","src":"12356:3:81"},"nativeSrc":"12356:16:81","nodeType":"YulFunctionCall","src":"12356:16:81"},{"name":"length","nativeSrc":"12374:6:81","nodeType":"YulIdentifier","src":"12374:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"12334:5:81","nodeType":"YulIdentifier","src":"12334:5:81"},"nativeSrc":"12334:47:81","nodeType":"YulFunctionCall","src":"12334:47:81"},"nativeSrc":"12334:47:81","nodeType":"YulExpressionStatement","src":"12334:47:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12405:3:81","nodeType":"YulIdentifier","src":"12405:3:81"},{"name":"length","nativeSrc":"12410:6:81","nodeType":"YulIdentifier","src":"12410:6:81"}],"functionName":{"name":"add","nativeSrc":"12401:3:81","nodeType":"YulIdentifier","src":"12401:3:81"},"nativeSrc":"12401:16:81","nodeType":"YulFunctionCall","src":"12401:16:81"},{"kind":"number","nativeSrc":"12419:4:81","nodeType":"YulLiteral","src":"12419:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12397:3:81","nodeType":"YulIdentifier","src":"12397:3:81"},"nativeSrc":"12397:27:81","nodeType":"YulFunctionCall","src":"12397:27:81"},{"kind":"number","nativeSrc":"12426:1:81","nodeType":"YulLiteral","src":"12426:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12390:6:81","nodeType":"YulIdentifier","src":"12390:6:81"},"nativeSrc":"12390:38:81","nodeType":"YulFunctionCall","src":"12390:38:81"},"nativeSrc":"12390:38:81","nodeType":"YulExpressionStatement","src":"12390:38:81"},{"nativeSrc":"12437:57:81","nodeType":"YulAssignment","src":"12437:57:81","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12452:3:81","nodeType":"YulIdentifier","src":"12452:3:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"12465:6:81","nodeType":"YulIdentifier","src":"12465:6:81"},{"kind":"number","nativeSrc":"12473:2:81","nodeType":"YulLiteral","src":"12473:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"12461:3:81","nodeType":"YulIdentifier","src":"12461:3:81"},"nativeSrc":"12461:15:81","nodeType":"YulFunctionCall","src":"12461:15:81"},{"arguments":[{"kind":"number","nativeSrc":"12482:2:81","nodeType":"YulLiteral","src":"12482:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"12478:3:81","nodeType":"YulIdentifier","src":"12478:3:81"},"nativeSrc":"12478:7:81","nodeType":"YulFunctionCall","src":"12478:7:81"}],"functionName":{"name":"and","nativeSrc":"12457:3:81","nodeType":"YulIdentifier","src":"12457:3:81"},"nativeSrc":"12457:29:81","nodeType":"YulFunctionCall","src":"12457:29:81"}],"functionName":{"name":"add","nativeSrc":"12448:3:81","nodeType":"YulIdentifier","src":"12448:3:81"},"nativeSrc":"12448:39:81","nodeType":"YulFunctionCall","src":"12448:39:81"},{"kind":"number","nativeSrc":"12489:4:81","nodeType":"YulLiteral","src":"12489:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12444:3:81","nodeType":"YulIdentifier","src":"12444:3:81"},"nativeSrc":"12444:50:81","nodeType":"YulFunctionCall","src":"12444:50:81"},"variableNames":[{"name":"end","nativeSrc":"12437:3:81","nodeType":"YulIdentifier","src":"12437:3:81"}]}]},"name":"abi_encode_bytes","nativeSrc":"12212:288:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12238:5:81","nodeType":"YulTypedName","src":"12238:5:81","type":""},{"name":"pos","nativeSrc":"12245:3:81","nodeType":"YulTypedName","src":"12245:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12253:3:81","nodeType":"YulTypedName","src":"12253:3:81","type":""}],"src":"12212:288:81"},{"body":{"nativeSrc":"12652:141:81","nodeType":"YulBlock","src":"12652:141:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12669:9:81","nodeType":"YulIdentifier","src":"12669:9:81"},{"name":"value0","nativeSrc":"12680:6:81","nodeType":"YulIdentifier","src":"12680:6:81"}],"functionName":{"name":"mstore","nativeSrc":"12662:6:81","nodeType":"YulIdentifier","src":"12662:6:81"},"nativeSrc":"12662:25:81","nodeType":"YulFunctionCall","src":"12662:25:81"},"nativeSrc":"12662:25:81","nodeType":"YulExpressionStatement","src":"12662:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12707:9:81","nodeType":"YulIdentifier","src":"12707:9:81"},{"kind":"number","nativeSrc":"12718:2:81","nodeType":"YulLiteral","src":"12718:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12703:3:81","nodeType":"YulIdentifier","src":"12703:3:81"},"nativeSrc":"12703:18:81","nodeType":"YulFunctionCall","src":"12703:18:81"},{"kind":"number","nativeSrc":"12723:2:81","nodeType":"YulLiteral","src":"12723:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"12696:6:81","nodeType":"YulIdentifier","src":"12696:6:81"},"nativeSrc":"12696:30:81","nodeType":"YulFunctionCall","src":"12696:30:81"},"nativeSrc":"12696:30:81","nodeType":"YulExpressionStatement","src":"12696:30:81"},{"nativeSrc":"12735:52:81","nodeType":"YulAssignment","src":"12735:52:81","value":{"arguments":[{"name":"value1","nativeSrc":"12760:6:81","nodeType":"YulIdentifier","src":"12760:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"12772:9:81","nodeType":"YulIdentifier","src":"12772:9:81"},{"kind":"number","nativeSrc":"12783:2:81","nodeType":"YulLiteral","src":"12783:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12768:3:81","nodeType":"YulIdentifier","src":"12768:3:81"},"nativeSrc":"12768:18:81","nodeType":"YulFunctionCall","src":"12768:18:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"12743:16:81","nodeType":"YulIdentifier","src":"12743:16:81"},"nativeSrc":"12743:44:81","nodeType":"YulFunctionCall","src":"12743:44:81"},"variableNames":[{"name":"tail","nativeSrc":"12735:4:81","nodeType":"YulIdentifier","src":"12735:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"12505:288:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12613:9:81","nodeType":"YulTypedName","src":"12613:9:81","type":""},{"name":"value1","nativeSrc":"12624:6:81","nodeType":"YulTypedName","src":"12624:6:81","type":""},{"name":"value0","nativeSrc":"12632:6:81","nodeType":"YulTypedName","src":"12632:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12643:4:81","nodeType":"YulTypedName","src":"12643:4:81","type":""}],"src":"12505:288:81"},{"body":{"nativeSrc":"12972:176:81","nodeType":"YulBlock","src":"12972:176:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12989:9:81","nodeType":"YulIdentifier","src":"12989:9:81"},{"kind":"number","nativeSrc":"13000:2:81","nodeType":"YulLiteral","src":"13000:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12982:6:81","nodeType":"YulIdentifier","src":"12982:6:81"},"nativeSrc":"12982:21:81","nodeType":"YulFunctionCall","src":"12982:21:81"},"nativeSrc":"12982:21:81","nodeType":"YulExpressionStatement","src":"12982:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13023:9:81","nodeType":"YulIdentifier","src":"13023:9:81"},{"kind":"number","nativeSrc":"13034:2:81","nodeType":"YulLiteral","src":"13034:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13019:3:81","nodeType":"YulIdentifier","src":"13019:3:81"},"nativeSrc":"13019:18:81","nodeType":"YulFunctionCall","src":"13019:18:81"},{"kind":"number","nativeSrc":"13039:2:81","nodeType":"YulLiteral","src":"13039:2:81","type":"","value":"26"}],"functionName":{"name":"mstore","nativeSrc":"13012:6:81","nodeType":"YulIdentifier","src":"13012:6:81"},"nativeSrc":"13012:30:81","nodeType":"YulFunctionCall","src":"13012:30:81"},"nativeSrc":"13012:30:81","nodeType":"YulExpressionStatement","src":"13012:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13062:9:81","nodeType":"YulIdentifier","src":"13062:9:81"},{"kind":"number","nativeSrc":"13073:2:81","nodeType":"YulLiteral","src":"13073:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13058:3:81","nodeType":"YulIdentifier","src":"13058:3:81"},"nativeSrc":"13058:18:81","nodeType":"YulFunctionCall","src":"13058:18:81"},{"hexValue":"6d757374207370656369667920756e7374616b652064656c6179","kind":"string","nativeSrc":"13078:28:81","nodeType":"YulLiteral","src":"13078:28:81","type":"","value":"must specify unstake delay"}],"functionName":{"name":"mstore","nativeSrc":"13051:6:81","nodeType":"YulIdentifier","src":"13051:6:81"},"nativeSrc":"13051:56:81","nodeType":"YulFunctionCall","src":"13051:56:81"},"nativeSrc":"13051:56:81","nodeType":"YulExpressionStatement","src":"13051:56:81"},{"nativeSrc":"13116:26:81","nodeType":"YulAssignment","src":"13116:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13128:9:81","nodeType":"YulIdentifier","src":"13128:9:81"},{"kind":"number","nativeSrc":"13139:2:81","nodeType":"YulLiteral","src":"13139:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13124:3:81","nodeType":"YulIdentifier","src":"13124:3:81"},"nativeSrc":"13124:18:81","nodeType":"YulFunctionCall","src":"13124:18:81"},"variableNames":[{"name":"tail","nativeSrc":"13116:4:81","nodeType":"YulIdentifier","src":"13116:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12798:350:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12949:9:81","nodeType":"YulTypedName","src":"12949:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12963:4:81","nodeType":"YulTypedName","src":"12963:4:81","type":""}],"src":"12798:350:81"},{"body":{"nativeSrc":"13327:178:81","nodeType":"YulBlock","src":"13327:178:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13344:9:81","nodeType":"YulIdentifier","src":"13344:9:81"},{"kind":"number","nativeSrc":"13355:2:81","nodeType":"YulLiteral","src":"13355:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13337:6:81","nodeType":"YulIdentifier","src":"13337:6:81"},"nativeSrc":"13337:21:81","nodeType":"YulFunctionCall","src":"13337:21:81"},"nativeSrc":"13337:21:81","nodeType":"YulExpressionStatement","src":"13337:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13378:9:81","nodeType":"YulIdentifier","src":"13378:9:81"},{"kind":"number","nativeSrc":"13389:2:81","nodeType":"YulLiteral","src":"13389:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13374:3:81","nodeType":"YulIdentifier","src":"13374:3:81"},"nativeSrc":"13374:18:81","nodeType":"YulFunctionCall","src":"13374:18:81"},{"kind":"number","nativeSrc":"13394:2:81","nodeType":"YulLiteral","src":"13394:2:81","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"13367:6:81","nodeType":"YulIdentifier","src":"13367:6:81"},"nativeSrc":"13367:30:81","nodeType":"YulFunctionCall","src":"13367:30:81"},"nativeSrc":"13367:30:81","nodeType":"YulExpressionStatement","src":"13367:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13417:9:81","nodeType":"YulIdentifier","src":"13417:9:81"},{"kind":"number","nativeSrc":"13428:2:81","nodeType":"YulLiteral","src":"13428:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13413:3:81","nodeType":"YulIdentifier","src":"13413:3:81"},"nativeSrc":"13413:18:81","nodeType":"YulFunctionCall","src":"13413:18:81"},{"hexValue":"63616e6e6f7420646563726561736520756e7374616b652074696d65","kind":"string","nativeSrc":"13433:30:81","nodeType":"YulLiteral","src":"13433:30:81","type":"","value":"cannot decrease unstake time"}],"functionName":{"name":"mstore","nativeSrc":"13406:6:81","nodeType":"YulIdentifier","src":"13406:6:81"},"nativeSrc":"13406:58:81","nodeType":"YulFunctionCall","src":"13406:58:81"},"nativeSrc":"13406:58:81","nodeType":"YulExpressionStatement","src":"13406:58:81"},{"nativeSrc":"13473:26:81","nodeType":"YulAssignment","src":"13473:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13485:9:81","nodeType":"YulIdentifier","src":"13485:9:81"},{"kind":"number","nativeSrc":"13496:2:81","nodeType":"YulLiteral","src":"13496:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13481:3:81","nodeType":"YulIdentifier","src":"13481:3:81"},"nativeSrc":"13481:18:81","nodeType":"YulFunctionCall","src":"13481:18:81"},"variableNames":[{"name":"tail","nativeSrc":"13473:4:81","nodeType":"YulIdentifier","src":"13473:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13153:352:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13304:9:81","nodeType":"YulTypedName","src":"13304:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13318:4:81","nodeType":"YulTypedName","src":"13318:4:81","type":""}],"src":"13153:352:81"},{"body":{"nativeSrc":"13542:95:81","nodeType":"YulBlock","src":"13542:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13559:1:81","nodeType":"YulLiteral","src":"13559:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13566:3:81","nodeType":"YulLiteral","src":"13566:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"13571:10:81","nodeType":"YulLiteral","src":"13571:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13562:3:81","nodeType":"YulIdentifier","src":"13562:3:81"},"nativeSrc":"13562:20:81","nodeType":"YulFunctionCall","src":"13562:20:81"}],"functionName":{"name":"mstore","nativeSrc":"13552:6:81","nodeType":"YulIdentifier","src":"13552:6:81"},"nativeSrc":"13552:31:81","nodeType":"YulFunctionCall","src":"13552:31:81"},"nativeSrc":"13552:31:81","nodeType":"YulExpressionStatement","src":"13552:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13599:1:81","nodeType":"YulLiteral","src":"13599:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"13602:4:81","nodeType":"YulLiteral","src":"13602:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"13592:6:81","nodeType":"YulIdentifier","src":"13592:6:81"},"nativeSrc":"13592:15:81","nodeType":"YulFunctionCall","src":"13592:15:81"},"nativeSrc":"13592:15:81","nodeType":"YulExpressionStatement","src":"13592:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13623:1:81","nodeType":"YulLiteral","src":"13623:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"13626:4:81","nodeType":"YulLiteral","src":"13626:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13616:6:81","nodeType":"YulIdentifier","src":"13616:6:81"},"nativeSrc":"13616:15:81","nodeType":"YulFunctionCall","src":"13616:15:81"},"nativeSrc":"13616:15:81","nodeType":"YulExpressionStatement","src":"13616:15:81"}]},"name":"panic_error_0x11","nativeSrc":"13510:127:81","nodeType":"YulFunctionDefinition","src":"13510:127:81"},{"body":{"nativeSrc":"13690:77:81","nodeType":"YulBlock","src":"13690:77:81","statements":[{"nativeSrc":"13700:16:81","nodeType":"YulAssignment","src":"13700:16:81","value":{"arguments":[{"name":"x","nativeSrc":"13711:1:81","nodeType":"YulIdentifier","src":"13711:1:81"},{"name":"y","nativeSrc":"13714:1:81","nodeType":"YulIdentifier","src":"13714:1:81"}],"functionName":{"name":"add","nativeSrc":"13707:3:81","nodeType":"YulIdentifier","src":"13707:3:81"},"nativeSrc":"13707:9:81","nodeType":"YulFunctionCall","src":"13707:9:81"},"variableNames":[{"name":"sum","nativeSrc":"13700:3:81","nodeType":"YulIdentifier","src":"13700:3:81"}]},{"body":{"nativeSrc":"13739:22:81","nodeType":"YulBlock","src":"13739:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13741:16:81","nodeType":"YulIdentifier","src":"13741:16:81"},"nativeSrc":"13741:18:81","nodeType":"YulFunctionCall","src":"13741:18:81"},"nativeSrc":"13741:18:81","nodeType":"YulExpressionStatement","src":"13741:18:81"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"13731:1:81","nodeType":"YulIdentifier","src":"13731:1:81"},{"name":"sum","nativeSrc":"13734:3:81","nodeType":"YulIdentifier","src":"13734:3:81"}],"functionName":{"name":"gt","nativeSrc":"13728:2:81","nodeType":"YulIdentifier","src":"13728:2:81"},"nativeSrc":"13728:10:81","nodeType":"YulFunctionCall","src":"13728:10:81"},"nativeSrc":"13725:36:81","nodeType":"YulIf","src":"13725:36:81"}]},"name":"checked_add_t_uint256","nativeSrc":"13642:125:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13673:1:81","nodeType":"YulTypedName","src":"13673:1:81","type":""},{"name":"y","nativeSrc":"13676:1:81","nodeType":"YulTypedName","src":"13676:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"13682:3:81","nodeType":"YulTypedName","src":"13682:3:81","type":""}],"src":"13642:125:81"},{"body":{"nativeSrc":"13946:168:81","nodeType":"YulBlock","src":"13946:168:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13963:9:81","nodeType":"YulIdentifier","src":"13963:9:81"},{"kind":"number","nativeSrc":"13974:2:81","nodeType":"YulLiteral","src":"13974:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13956:6:81","nodeType":"YulIdentifier","src":"13956:6:81"},"nativeSrc":"13956:21:81","nodeType":"YulFunctionCall","src":"13956:21:81"},"nativeSrc":"13956:21:81","nodeType":"YulExpressionStatement","src":"13956:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13997:9:81","nodeType":"YulIdentifier","src":"13997:9:81"},{"kind":"number","nativeSrc":"14008:2:81","nodeType":"YulLiteral","src":"14008:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13993:3:81","nodeType":"YulIdentifier","src":"13993:3:81"},"nativeSrc":"13993:18:81","nodeType":"YulFunctionCall","src":"13993:18:81"},{"kind":"number","nativeSrc":"14013:2:81","nodeType":"YulLiteral","src":"14013:2:81","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"13986:6:81","nodeType":"YulIdentifier","src":"13986:6:81"},"nativeSrc":"13986:30:81","nodeType":"YulFunctionCall","src":"13986:30:81"},"nativeSrc":"13986:30:81","nodeType":"YulExpressionStatement","src":"13986:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14036:9:81","nodeType":"YulIdentifier","src":"14036:9:81"},{"kind":"number","nativeSrc":"14047:2:81","nodeType":"YulLiteral","src":"14047:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14032:3:81","nodeType":"YulIdentifier","src":"14032:3:81"},"nativeSrc":"14032:18:81","nodeType":"YulFunctionCall","src":"14032:18:81"},{"hexValue":"6e6f207374616b6520737065636966696564","kind":"string","nativeSrc":"14052:20:81","nodeType":"YulLiteral","src":"14052:20:81","type":"","value":"no stake specified"}],"functionName":{"name":"mstore","nativeSrc":"14025:6:81","nodeType":"YulIdentifier","src":"14025:6:81"},"nativeSrc":"14025:48:81","nodeType":"YulFunctionCall","src":"14025:48:81"},"nativeSrc":"14025:48:81","nodeType":"YulExpressionStatement","src":"14025:48:81"},{"nativeSrc":"14082:26:81","nodeType":"YulAssignment","src":"14082:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14094:9:81","nodeType":"YulIdentifier","src":"14094:9:81"},{"kind":"number","nativeSrc":"14105:2:81","nodeType":"YulLiteral","src":"14105:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14090:3:81","nodeType":"YulIdentifier","src":"14090:3:81"},"nativeSrc":"14090:18:81","nodeType":"YulFunctionCall","src":"14090:18:81"},"variableNames":[{"name":"tail","nativeSrc":"14082:4:81","nodeType":"YulIdentifier","src":"14082:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13772:342:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13923:9:81","nodeType":"YulTypedName","src":"13923:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13937:4:81","nodeType":"YulTypedName","src":"13937:4:81","type":""}],"src":"13772:342:81"},{"body":{"nativeSrc":"14293:164:81","nodeType":"YulBlock","src":"14293:164:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14310:9:81","nodeType":"YulIdentifier","src":"14310:9:81"},{"kind":"number","nativeSrc":"14321:2:81","nodeType":"YulLiteral","src":"14321:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14303:6:81","nodeType":"YulIdentifier","src":"14303:6:81"},"nativeSrc":"14303:21:81","nodeType":"YulFunctionCall","src":"14303:21:81"},"nativeSrc":"14303:21:81","nodeType":"YulExpressionStatement","src":"14303:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14344:9:81","nodeType":"YulIdentifier","src":"14344:9:81"},{"kind":"number","nativeSrc":"14355:2:81","nodeType":"YulLiteral","src":"14355:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14340:3:81","nodeType":"YulIdentifier","src":"14340:3:81"},"nativeSrc":"14340:18:81","nodeType":"YulFunctionCall","src":"14340:18:81"},{"kind":"number","nativeSrc":"14360:2:81","nodeType":"YulLiteral","src":"14360:2:81","type":"","value":"14"}],"functionName":{"name":"mstore","nativeSrc":"14333:6:81","nodeType":"YulIdentifier","src":"14333:6:81"},"nativeSrc":"14333:30:81","nodeType":"YulFunctionCall","src":"14333:30:81"},"nativeSrc":"14333:30:81","nodeType":"YulExpressionStatement","src":"14333:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14383:9:81","nodeType":"YulIdentifier","src":"14383:9:81"},{"kind":"number","nativeSrc":"14394:2:81","nodeType":"YulLiteral","src":"14394:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14379:3:81","nodeType":"YulIdentifier","src":"14379:3:81"},"nativeSrc":"14379:18:81","nodeType":"YulFunctionCall","src":"14379:18:81"},{"hexValue":"7374616b65206f766572666c6f77","kind":"string","nativeSrc":"14399:16:81","nodeType":"YulLiteral","src":"14399:16:81","type":"","value":"stake overflow"}],"functionName":{"name":"mstore","nativeSrc":"14372:6:81","nodeType":"YulIdentifier","src":"14372:6:81"},"nativeSrc":"14372:44:81","nodeType":"YulFunctionCall","src":"14372:44:81"},"nativeSrc":"14372:44:81","nodeType":"YulExpressionStatement","src":"14372:44:81"},{"nativeSrc":"14425:26:81","nodeType":"YulAssignment","src":"14425:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14437:9:81","nodeType":"YulIdentifier","src":"14437:9:81"},{"kind":"number","nativeSrc":"14448:2:81","nodeType":"YulLiteral","src":"14448:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14433:3:81","nodeType":"YulIdentifier","src":"14433:3:81"},"nativeSrc":"14433:18:81","nodeType":"YulFunctionCall","src":"14433:18:81"},"variableNames":[{"name":"tail","nativeSrc":"14425:4:81","nodeType":"YulIdentifier","src":"14425:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14119:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14270:9:81","nodeType":"YulTypedName","src":"14270:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14284:4:81","nodeType":"YulTypedName","src":"14284:4:81","type":""}],"src":"14119:338:81"},{"body":{"nativeSrc":"14590:136:81","nodeType":"YulBlock","src":"14590:136:81","statements":[{"nativeSrc":"14600:26:81","nodeType":"YulAssignment","src":"14600:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14612:9:81","nodeType":"YulIdentifier","src":"14612:9:81"},{"kind":"number","nativeSrc":"14623:2:81","nodeType":"YulLiteral","src":"14623:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14608:3:81","nodeType":"YulIdentifier","src":"14608:3:81"},"nativeSrc":"14608:18:81","nodeType":"YulFunctionCall","src":"14608:18:81"},"variableNames":[{"name":"tail","nativeSrc":"14600:4:81","nodeType":"YulIdentifier","src":"14600:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14642:9:81","nodeType":"YulIdentifier","src":"14642:9:81"},{"name":"value0","nativeSrc":"14653:6:81","nodeType":"YulIdentifier","src":"14653:6:81"}],"functionName":{"name":"mstore","nativeSrc":"14635:6:81","nodeType":"YulIdentifier","src":"14635:6:81"},"nativeSrc":"14635:25:81","nodeType":"YulFunctionCall","src":"14635:25:81"},"nativeSrc":"14635:25:81","nodeType":"YulExpressionStatement","src":"14635:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14680:9:81","nodeType":"YulIdentifier","src":"14680:9:81"},{"kind":"number","nativeSrc":"14691:2:81","nodeType":"YulLiteral","src":"14691:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14676:3:81","nodeType":"YulIdentifier","src":"14676:3:81"},"nativeSrc":"14676:18:81","nodeType":"YulFunctionCall","src":"14676:18:81"},{"arguments":[{"name":"value1","nativeSrc":"14700:6:81","nodeType":"YulIdentifier","src":"14700:6:81"},{"kind":"number","nativeSrc":"14708:10:81","nodeType":"YulLiteral","src":"14708:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"14696:3:81","nodeType":"YulIdentifier","src":"14696:3:81"},"nativeSrc":"14696:23:81","nodeType":"YulFunctionCall","src":"14696:23:81"}],"functionName":{"name":"mstore","nativeSrc":"14669:6:81","nodeType":"YulIdentifier","src":"14669:6:81"},"nativeSrc":"14669:51:81","nodeType":"YulFunctionCall","src":"14669:51:81"},"nativeSrc":"14669:51:81","nodeType":"YulExpressionStatement","src":"14669:51:81"}]},"name":"abi_encode_tuple_t_uint256_t_uint32__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"14462:264:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14551:9:81","nodeType":"YulTypedName","src":"14551:9:81","type":""},{"name":"value1","nativeSrc":"14562:6:81","nodeType":"YulTypedName","src":"14562:6:81","type":""},{"name":"value0","nativeSrc":"14570:6:81","nodeType":"YulTypedName","src":"14570:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14581:4:81","nodeType":"YulTypedName","src":"14581:4:81","type":""}],"src":"14462:264:81"},{"body":{"nativeSrc":"14778:88:81","nodeType":"YulBlock","src":"14778:88:81","statements":[{"body":{"nativeSrc":"14809:22:81","nodeType":"YulBlock","src":"14809:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14811:16:81","nodeType":"YulIdentifier","src":"14811:16:81"},"nativeSrc":"14811:18:81","nodeType":"YulFunctionCall","src":"14811:18:81"},"nativeSrc":"14811:18:81","nodeType":"YulExpressionStatement","src":"14811:18:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"14794:5:81","nodeType":"YulIdentifier","src":"14794:5:81"},{"arguments":[{"kind":"number","nativeSrc":"14805:1:81","nodeType":"YulLiteral","src":"14805:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14801:3:81","nodeType":"YulIdentifier","src":"14801:3:81"},"nativeSrc":"14801:6:81","nodeType":"YulFunctionCall","src":"14801:6:81"}],"functionName":{"name":"eq","nativeSrc":"14791:2:81","nodeType":"YulIdentifier","src":"14791:2:81"},"nativeSrc":"14791:17:81","nodeType":"YulFunctionCall","src":"14791:17:81"},"nativeSrc":"14788:43:81","nodeType":"YulIf","src":"14788:43:81"},{"nativeSrc":"14840:20:81","nodeType":"YulAssignment","src":"14840:20:81","value":{"arguments":[{"name":"value","nativeSrc":"14851:5:81","nodeType":"YulIdentifier","src":"14851:5:81"},{"kind":"number","nativeSrc":"14858:1:81","nodeType":"YulLiteral","src":"14858:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"14847:3:81","nodeType":"YulIdentifier","src":"14847:3:81"},"nativeSrc":"14847:13:81","nodeType":"YulFunctionCall","src":"14847:13:81"},"variableNames":[{"name":"ret","nativeSrc":"14840:3:81","nodeType":"YulIdentifier","src":"14840:3:81"}]}]},"name":"increment_t_uint256","nativeSrc":"14731:135:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"14760:5:81","nodeType":"YulTypedName","src":"14760:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"14770:3:81","nodeType":"YulTypedName","src":"14770:3:81","type":""}],"src":"14731:135:81"},{"body":{"nativeSrc":"15045:175:81","nodeType":"YulBlock","src":"15045:175:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15062:9:81","nodeType":"YulIdentifier","src":"15062:9:81"},{"kind":"number","nativeSrc":"15073:2:81","nodeType":"YulLiteral","src":"15073:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15055:6:81","nodeType":"YulIdentifier","src":"15055:6:81"},"nativeSrc":"15055:21:81","nodeType":"YulFunctionCall","src":"15055:21:81"},"nativeSrc":"15055:21:81","nodeType":"YulExpressionStatement","src":"15055:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15096:9:81","nodeType":"YulIdentifier","src":"15096:9:81"},{"kind":"number","nativeSrc":"15107:2:81","nodeType":"YulLiteral","src":"15107:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15092:3:81","nodeType":"YulIdentifier","src":"15092:3:81"},"nativeSrc":"15092:18:81","nodeType":"YulFunctionCall","src":"15092:18:81"},{"kind":"number","nativeSrc":"15112:2:81","nodeType":"YulLiteral","src":"15112:2:81","type":"","value":"25"}],"functionName":{"name":"mstore","nativeSrc":"15085:6:81","nodeType":"YulIdentifier","src":"15085:6:81"},"nativeSrc":"15085:30:81","nodeType":"YulFunctionCall","src":"15085:30:81"},"nativeSrc":"15085:30:81","nodeType":"YulExpressionStatement","src":"15085:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15135:9:81","nodeType":"YulIdentifier","src":"15135:9:81"},{"kind":"number","nativeSrc":"15146:2:81","nodeType":"YulLiteral","src":"15146:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15131:3:81","nodeType":"YulIdentifier","src":"15131:3:81"},"nativeSrc":"15131:18:81","nodeType":"YulFunctionCall","src":"15131:18:81"},{"hexValue":"576974686472617720616d6f756e7420746f6f206c61726765","kind":"string","nativeSrc":"15151:27:81","nodeType":"YulLiteral","src":"15151:27:81","type":"","value":"Withdraw amount too large"}],"functionName":{"name":"mstore","nativeSrc":"15124:6:81","nodeType":"YulIdentifier","src":"15124:6:81"},"nativeSrc":"15124:55:81","nodeType":"YulFunctionCall","src":"15124:55:81"},"nativeSrc":"15124:55:81","nodeType":"YulExpressionStatement","src":"15124:55:81"},{"nativeSrc":"15188:26:81","nodeType":"YulAssignment","src":"15188:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"15200:9:81","nodeType":"YulIdentifier","src":"15200:9:81"},{"kind":"number","nativeSrc":"15211:2:81","nodeType":"YulLiteral","src":"15211:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15196:3:81","nodeType":"YulIdentifier","src":"15196:3:81"},"nativeSrc":"15196:18:81","nodeType":"YulFunctionCall","src":"15196:18:81"},"variableNames":[{"name":"tail","nativeSrc":"15188:4:81","nodeType":"YulIdentifier","src":"15188:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14871:349:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15022:9:81","nodeType":"YulTypedName","src":"15022:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15036:4:81","nodeType":"YulTypedName","src":"15036:4:81","type":""}],"src":"14871:349:81"},{"body":{"nativeSrc":"15274:79:81","nodeType":"YulBlock","src":"15274:79:81","statements":[{"nativeSrc":"15284:17:81","nodeType":"YulAssignment","src":"15284:17:81","value":{"arguments":[{"name":"x","nativeSrc":"15296:1:81","nodeType":"YulIdentifier","src":"15296:1:81"},{"name":"y","nativeSrc":"15299:1:81","nodeType":"YulIdentifier","src":"15299:1:81"}],"functionName":{"name":"sub","nativeSrc":"15292:3:81","nodeType":"YulIdentifier","src":"15292:3:81"},"nativeSrc":"15292:9:81","nodeType":"YulFunctionCall","src":"15292:9:81"},"variableNames":[{"name":"diff","nativeSrc":"15284:4:81","nodeType":"YulIdentifier","src":"15284:4:81"}]},{"body":{"nativeSrc":"15325:22:81","nodeType":"YulBlock","src":"15325:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15327:16:81","nodeType":"YulIdentifier","src":"15327:16:81"},"nativeSrc":"15327:18:81","nodeType":"YulFunctionCall","src":"15327:18:81"},"nativeSrc":"15327:18:81","nodeType":"YulExpressionStatement","src":"15327:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"15316:4:81","nodeType":"YulIdentifier","src":"15316:4:81"},{"name":"x","nativeSrc":"15322:1:81","nodeType":"YulIdentifier","src":"15322:1:81"}],"functionName":{"name":"gt","nativeSrc":"15313:2:81","nodeType":"YulIdentifier","src":"15313:2:81"},"nativeSrc":"15313:11:81","nodeType":"YulFunctionCall","src":"15313:11:81"},"nativeSrc":"15310:37:81","nodeType":"YulIf","src":"15310:37:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"15225:128:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"15256:1:81","nodeType":"YulTypedName","src":"15256:1:81","type":""},{"name":"y","nativeSrc":"15259:1:81","nodeType":"YulTypedName","src":"15259:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"15265:4:81","nodeType":"YulTypedName","src":"15265:4:81","type":""}],"src":"15225:128:81"},{"body":{"nativeSrc":"15495:145:81","nodeType":"YulBlock","src":"15495:145:81","statements":[{"nativeSrc":"15505:26:81","nodeType":"YulAssignment","src":"15505:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"15517:9:81","nodeType":"YulIdentifier","src":"15517:9:81"},{"kind":"number","nativeSrc":"15528:2:81","nodeType":"YulLiteral","src":"15528:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15513:3:81","nodeType":"YulIdentifier","src":"15513:3:81"},"nativeSrc":"15513:18:81","nodeType":"YulFunctionCall","src":"15513:18:81"},"variableNames":[{"name":"tail","nativeSrc":"15505:4:81","nodeType":"YulIdentifier","src":"15505:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15547:9:81","nodeType":"YulIdentifier","src":"15547:9:81"},{"arguments":[{"name":"value0","nativeSrc":"15562:6:81","nodeType":"YulIdentifier","src":"15562:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15578:3:81","nodeType":"YulLiteral","src":"15578:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"15583:1:81","nodeType":"YulLiteral","src":"15583:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15574:3:81","nodeType":"YulIdentifier","src":"15574:3:81"},"nativeSrc":"15574:11:81","nodeType":"YulFunctionCall","src":"15574:11:81"},{"kind":"number","nativeSrc":"15587:1:81","nodeType":"YulLiteral","src":"15587:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15570:3:81","nodeType":"YulIdentifier","src":"15570:3:81"},"nativeSrc":"15570:19:81","nodeType":"YulFunctionCall","src":"15570:19:81"}],"functionName":{"name":"and","nativeSrc":"15558:3:81","nodeType":"YulIdentifier","src":"15558:3:81"},"nativeSrc":"15558:32:81","nodeType":"YulFunctionCall","src":"15558:32:81"}],"functionName":{"name":"mstore","nativeSrc":"15540:6:81","nodeType":"YulIdentifier","src":"15540:6:81"},"nativeSrc":"15540:51:81","nodeType":"YulFunctionCall","src":"15540:51:81"},"nativeSrc":"15540:51:81","nodeType":"YulExpressionStatement","src":"15540:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15611:9:81","nodeType":"YulIdentifier","src":"15611:9:81"},{"kind":"number","nativeSrc":"15622:2:81","nodeType":"YulLiteral","src":"15622:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15607:3:81","nodeType":"YulIdentifier","src":"15607:3:81"},"nativeSrc":"15607:18:81","nodeType":"YulFunctionCall","src":"15607:18:81"},{"name":"value1","nativeSrc":"15627:6:81","nodeType":"YulIdentifier","src":"15627:6:81"}],"functionName":{"name":"mstore","nativeSrc":"15600:6:81","nodeType":"YulIdentifier","src":"15600:6:81"},"nativeSrc":"15600:34:81","nodeType":"YulFunctionCall","src":"15600:34:81"},"nativeSrc":"15600:34:81","nodeType":"YulExpressionStatement","src":"15600:34:81"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"15358:282:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15456:9:81","nodeType":"YulTypedName","src":"15456:9:81","type":""},{"name":"value1","nativeSrc":"15467:6:81","nodeType":"YulTypedName","src":"15467:6:81","type":""},{"name":"value0","nativeSrc":"15475:6:81","nodeType":"YulTypedName","src":"15475:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15486:4:81","nodeType":"YulTypedName","src":"15486:4:81","type":""}],"src":"15358:282:81"},{"body":{"nativeSrc":"15836:14:81","nodeType":"YulBlock","src":"15836:14:81","statements":[{"nativeSrc":"15838:10:81","nodeType":"YulAssignment","src":"15838:10:81","value":{"name":"pos","nativeSrc":"15845:3:81","nodeType":"YulIdentifier","src":"15845:3:81"},"variableNames":[{"name":"end","nativeSrc":"15838:3:81","nodeType":"YulIdentifier","src":"15838:3:81"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"15645:205:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15820:3:81","nodeType":"YulTypedName","src":"15820:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15828:3:81","nodeType":"YulTypedName","src":"15828:3:81","type":""}],"src":"15645:205:81"},{"body":{"nativeSrc":"16029:168:81","nodeType":"YulBlock","src":"16029:168:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16046:9:81","nodeType":"YulIdentifier","src":"16046:9:81"},{"kind":"number","nativeSrc":"16057:2:81","nodeType":"YulLiteral","src":"16057:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16039:6:81","nodeType":"YulIdentifier","src":"16039:6:81"},"nativeSrc":"16039:21:81","nodeType":"YulFunctionCall","src":"16039:21:81"},"nativeSrc":"16039:21:81","nodeType":"YulExpressionStatement","src":"16039:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16080:9:81","nodeType":"YulIdentifier","src":"16080:9:81"},{"kind":"number","nativeSrc":"16091:2:81","nodeType":"YulLiteral","src":"16091:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16076:3:81","nodeType":"YulIdentifier","src":"16076:3:81"},"nativeSrc":"16076:18:81","nodeType":"YulFunctionCall","src":"16076:18:81"},{"kind":"number","nativeSrc":"16096:2:81","nodeType":"YulLiteral","src":"16096:2:81","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"16069:6:81","nodeType":"YulIdentifier","src":"16069:6:81"},"nativeSrc":"16069:30:81","nodeType":"YulFunctionCall","src":"16069:30:81"},"nativeSrc":"16069:30:81","nodeType":"YulExpressionStatement","src":"16069:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16119:9:81","nodeType":"YulIdentifier","src":"16119:9:81"},{"kind":"number","nativeSrc":"16130:2:81","nodeType":"YulLiteral","src":"16130:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16115:3:81","nodeType":"YulIdentifier","src":"16115:3:81"},"nativeSrc":"16115:18:81","nodeType":"YulFunctionCall","src":"16115:18:81"},{"hexValue":"6661696c656420746f207769746864726177","kind":"string","nativeSrc":"16135:20:81","nodeType":"YulLiteral","src":"16135:20:81","type":"","value":"failed to withdraw"}],"functionName":{"name":"mstore","nativeSrc":"16108:6:81","nodeType":"YulIdentifier","src":"16108:6:81"},"nativeSrc":"16108:48:81","nodeType":"YulFunctionCall","src":"16108:48:81"},"nativeSrc":"16108:48:81","nodeType":"YulExpressionStatement","src":"16108:48:81"},{"nativeSrc":"16165:26:81","nodeType":"YulAssignment","src":"16165:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16177:9:81","nodeType":"YulIdentifier","src":"16177:9:81"},{"kind":"number","nativeSrc":"16188:2:81","nodeType":"YulLiteral","src":"16188:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16173:3:81","nodeType":"YulIdentifier","src":"16173:3:81"},"nativeSrc":"16173:18:81","nodeType":"YulFunctionCall","src":"16173:18:81"},"variableNames":[{"name":"tail","nativeSrc":"16165:4:81","nodeType":"YulIdentifier","src":"16165:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15855:342:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16006:9:81","nodeType":"YulTypedName","src":"16006:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16020:4:81","nodeType":"YulTypedName","src":"16020:4:81","type":""}],"src":"15855:342:81"},{"body":{"nativeSrc":"16246:60:81","nodeType":"YulBlock","src":"16246:60:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"16263:3:81","nodeType":"YulIdentifier","src":"16263:3:81"},{"arguments":[{"name":"value","nativeSrc":"16272:5:81","nodeType":"YulIdentifier","src":"16272:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16287:3:81","nodeType":"YulLiteral","src":"16287:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16292:1:81","nodeType":"YulLiteral","src":"16292:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16283:3:81","nodeType":"YulIdentifier","src":"16283:3:81"},"nativeSrc":"16283:11:81","nodeType":"YulFunctionCall","src":"16283:11:81"},{"kind":"number","nativeSrc":"16296:1:81","nodeType":"YulLiteral","src":"16296:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16279:3:81","nodeType":"YulIdentifier","src":"16279:3:81"},"nativeSrc":"16279:19:81","nodeType":"YulFunctionCall","src":"16279:19:81"}],"functionName":{"name":"and","nativeSrc":"16268:3:81","nodeType":"YulIdentifier","src":"16268:3:81"},"nativeSrc":"16268:31:81","nodeType":"YulFunctionCall","src":"16268:31:81"}],"functionName":{"name":"mstore","nativeSrc":"16256:6:81","nodeType":"YulIdentifier","src":"16256:6:81"},"nativeSrc":"16256:44:81","nodeType":"YulFunctionCall","src":"16256:44:81"},"nativeSrc":"16256:44:81","nodeType":"YulExpressionStatement","src":"16256:44:81"}]},"name":"abi_encode_address","nativeSrc":"16202:104:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"16230:5:81","nodeType":"YulTypedName","src":"16230:5:81","type":""},{"name":"pos","nativeSrc":"16237:3:81","nodeType":"YulTypedName","src":"16237:3:81","type":""}],"src":"16202:104:81"},{"body":{"nativeSrc":"16468:188:81","nodeType":"YulBlock","src":"16468:188:81","statements":[{"nativeSrc":"16478:26:81","nodeType":"YulAssignment","src":"16478:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16490:9:81","nodeType":"YulIdentifier","src":"16490:9:81"},{"kind":"number","nativeSrc":"16501:2:81","nodeType":"YulLiteral","src":"16501:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16486:3:81","nodeType":"YulIdentifier","src":"16486:3:81"},"nativeSrc":"16486:18:81","nodeType":"YulFunctionCall","src":"16486:18:81"},"variableNames":[{"name":"tail","nativeSrc":"16478:4:81","nodeType":"YulIdentifier","src":"16478:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16520:9:81","nodeType":"YulIdentifier","src":"16520:9:81"},{"name":"value0","nativeSrc":"16531:6:81","nodeType":"YulIdentifier","src":"16531:6:81"}],"functionName":{"name":"mstore","nativeSrc":"16513:6:81","nodeType":"YulIdentifier","src":"16513:6:81"},"nativeSrc":"16513:25:81","nodeType":"YulFunctionCall","src":"16513:25:81"},"nativeSrc":"16513:25:81","nodeType":"YulExpressionStatement","src":"16513:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16558:9:81","nodeType":"YulIdentifier","src":"16558:9:81"},{"kind":"number","nativeSrc":"16569:2:81","nodeType":"YulLiteral","src":"16569:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16554:3:81","nodeType":"YulIdentifier","src":"16554:3:81"},"nativeSrc":"16554:18:81","nodeType":"YulFunctionCall","src":"16554:18:81"},{"arguments":[{"name":"value1","nativeSrc":"16578:6:81","nodeType":"YulIdentifier","src":"16578:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16594:3:81","nodeType":"YulLiteral","src":"16594:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16599:1:81","nodeType":"YulLiteral","src":"16599:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16590:3:81","nodeType":"YulIdentifier","src":"16590:3:81"},"nativeSrc":"16590:11:81","nodeType":"YulFunctionCall","src":"16590:11:81"},{"kind":"number","nativeSrc":"16603:1:81","nodeType":"YulLiteral","src":"16603:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16586:3:81","nodeType":"YulIdentifier","src":"16586:3:81"},"nativeSrc":"16586:19:81","nodeType":"YulFunctionCall","src":"16586:19:81"}],"functionName":{"name":"and","nativeSrc":"16574:3:81","nodeType":"YulIdentifier","src":"16574:3:81"},"nativeSrc":"16574:32:81","nodeType":"YulFunctionCall","src":"16574:32:81"}],"functionName":{"name":"mstore","nativeSrc":"16547:6:81","nodeType":"YulIdentifier","src":"16547:6:81"},"nativeSrc":"16547:60:81","nodeType":"YulFunctionCall","src":"16547:60:81"},"nativeSrc":"16547:60:81","nodeType":"YulExpressionStatement","src":"16547:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16627:9:81","nodeType":"YulIdentifier","src":"16627:9:81"},{"kind":"number","nativeSrc":"16638:2:81","nodeType":"YulLiteral","src":"16638:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16623:3:81","nodeType":"YulIdentifier","src":"16623:3:81"},"nativeSrc":"16623:18:81","nodeType":"YulFunctionCall","src":"16623:18:81"},{"name":"value2","nativeSrc":"16643:6:81","nodeType":"YulIdentifier","src":"16643:6:81"}],"functionName":{"name":"mstore","nativeSrc":"16616:6:81","nodeType":"YulIdentifier","src":"16616:6:81"},"nativeSrc":"16616:34:81","nodeType":"YulFunctionCall","src":"16616:34:81"},"nativeSrc":"16616:34:81","nodeType":"YulExpressionStatement","src":"16616:34:81"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_uint256__to_t_bytes32_t_address_t_uint256__fromStack_reversed","nativeSrc":"16311:345:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16421:9:81","nodeType":"YulTypedName","src":"16421:9:81","type":""},{"name":"value2","nativeSrc":"16432:6:81","nodeType":"YulTypedName","src":"16432:6:81","type":""},{"name":"value1","nativeSrc":"16440:6:81","nodeType":"YulTypedName","src":"16440:6:81","type":""},{"name":"value0","nativeSrc":"16448:6:81","nodeType":"YulTypedName","src":"16448:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16459:4:81","nodeType":"YulTypedName","src":"16459:4:81","type":""}],"src":"16311:345:81"},{"body":{"nativeSrc":"16693:95:81","nodeType":"YulBlock","src":"16693:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16710:1:81","nodeType":"YulLiteral","src":"16710:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"16717:3:81","nodeType":"YulLiteral","src":"16717:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"16722:10:81","nodeType":"YulLiteral","src":"16722:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"16713:3:81","nodeType":"YulIdentifier","src":"16713:3:81"},"nativeSrc":"16713:20:81","nodeType":"YulFunctionCall","src":"16713:20:81"}],"functionName":{"name":"mstore","nativeSrc":"16703:6:81","nodeType":"YulIdentifier","src":"16703:6:81"},"nativeSrc":"16703:31:81","nodeType":"YulFunctionCall","src":"16703:31:81"},"nativeSrc":"16703:31:81","nodeType":"YulExpressionStatement","src":"16703:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16750:1:81","nodeType":"YulLiteral","src":"16750:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"16753:4:81","nodeType":"YulLiteral","src":"16753:4:81","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"16743:6:81","nodeType":"YulIdentifier","src":"16743:6:81"},"nativeSrc":"16743:15:81","nodeType":"YulFunctionCall","src":"16743:15:81"},"nativeSrc":"16743:15:81","nodeType":"YulExpressionStatement","src":"16743:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16774:1:81","nodeType":"YulLiteral","src":"16774:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16777:4:81","nodeType":"YulLiteral","src":"16777:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16767:6:81","nodeType":"YulIdentifier","src":"16767:6:81"},"nativeSrc":"16767:15:81","nodeType":"YulFunctionCall","src":"16767:15:81"},"nativeSrc":"16767:15:81","nodeType":"YulExpressionStatement","src":"16767:15:81"}]},"name":"panic_error_0x32","nativeSrc":"16661:127:81","nodeType":"YulFunctionDefinition","src":"16661:127:81"},{"body":{"nativeSrc":"16907:223:81","nodeType":"YulBlock","src":"16907:223:81","statements":[{"nativeSrc":"16917:51:81","nodeType":"YulVariableDeclaration","src":"16917:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"16956:11:81","nodeType":"YulIdentifier","src":"16956:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"16943:12:81","nodeType":"YulIdentifier","src":"16943:12:81"},"nativeSrc":"16943:25:81","nodeType":"YulFunctionCall","src":"16943:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"16921:18:81","nodeType":"YulTypedName","src":"16921:18:81","type":""}]},{"body":{"nativeSrc":"17058:16:81","nodeType":"YulBlock","src":"17058:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17067:1:81","nodeType":"YulLiteral","src":"17067:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"17070:1:81","nodeType":"YulLiteral","src":"17070:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17060:6:81","nodeType":"YulIdentifier","src":"17060:6:81"},"nativeSrc":"17060:12:81","nodeType":"YulFunctionCall","src":"17060:12:81"},"nativeSrc":"17060:12:81","nodeType":"YulExpressionStatement","src":"17060:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"16991:18:81","nodeType":"YulIdentifier","src":"16991:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"17019:12:81","nodeType":"YulIdentifier","src":"17019:12:81"},"nativeSrc":"17019:14:81","nodeType":"YulFunctionCall","src":"17019:14:81"},{"name":"base_ref","nativeSrc":"17035:8:81","nodeType":"YulIdentifier","src":"17035:8:81"}],"functionName":{"name":"sub","nativeSrc":"17015:3:81","nodeType":"YulIdentifier","src":"17015:3:81"},"nativeSrc":"17015:29:81","nodeType":"YulFunctionCall","src":"17015:29:81"},{"arguments":[{"kind":"number","nativeSrc":"17050:3:81","nodeType":"YulLiteral","src":"17050:3:81","type":"","value":"286"}],"functionName":{"name":"not","nativeSrc":"17046:3:81","nodeType":"YulIdentifier","src":"17046:3:81"},"nativeSrc":"17046:8:81","nodeType":"YulFunctionCall","src":"17046:8:81"}],"functionName":{"name":"add","nativeSrc":"17011:3:81","nodeType":"YulIdentifier","src":"17011:3:81"},"nativeSrc":"17011:44:81","nodeType":"YulFunctionCall","src":"17011:44:81"}],"functionName":{"name":"slt","nativeSrc":"16987:3:81","nodeType":"YulIdentifier","src":"16987:3:81"},"nativeSrc":"16987:69:81","nodeType":"YulFunctionCall","src":"16987:69:81"}],"functionName":{"name":"iszero","nativeSrc":"16980:6:81","nodeType":"YulIdentifier","src":"16980:6:81"},"nativeSrc":"16980:77:81","nodeType":"YulFunctionCall","src":"16980:77:81"},"nativeSrc":"16977:97:81","nodeType":"YulIf","src":"16977:97:81"},{"nativeSrc":"17083:41:81","nodeType":"YulAssignment","src":"17083:41:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"17095:8:81","nodeType":"YulIdentifier","src":"17095:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"17105:18:81","nodeType":"YulIdentifier","src":"17105:18:81"}],"functionName":{"name":"add","nativeSrc":"17091:3:81","nodeType":"YulIdentifier","src":"17091:3:81"},"nativeSrc":"17091:33:81","nodeType":"YulFunctionCall","src":"17091:33:81"},"variableNames":[{"name":"addr","nativeSrc":"17083:4:81","nodeType":"YulIdentifier","src":"17083:4:81"}]}]},"name":"access_calldata_tail_t_struct$_PackedUserOperation_$3748_calldata_ptr","nativeSrc":"16793:337:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"16872:8:81","nodeType":"YulTypedName","src":"16872:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"16882:11:81","nodeType":"YulTypedName","src":"16882:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"16898:4:81","nodeType":"YulTypedName","src":"16898:4:81","type":""}],"src":"16793:337:81"},{"body":{"nativeSrc":"17282:124:81","nodeType":"YulBlock","src":"17282:124:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"17305:3:81","nodeType":"YulIdentifier","src":"17305:3:81"},{"name":"value0","nativeSrc":"17310:6:81","nodeType":"YulIdentifier","src":"17310:6:81"},{"name":"value1","nativeSrc":"17318:6:81","nodeType":"YulIdentifier","src":"17318:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"17292:12:81","nodeType":"YulIdentifier","src":"17292:12:81"},"nativeSrc":"17292:33:81","nodeType":"YulFunctionCall","src":"17292:33:81"},"nativeSrc":"17292:33:81","nodeType":"YulExpressionStatement","src":"17292:33:81"},{"nativeSrc":"17334:26:81","nodeType":"YulVariableDeclaration","src":"17334:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"17348:3:81","nodeType":"YulIdentifier","src":"17348:3:81"},{"name":"value1","nativeSrc":"17353:6:81","nodeType":"YulIdentifier","src":"17353:6:81"}],"functionName":{"name":"add","nativeSrc":"17344:3:81","nodeType":"YulIdentifier","src":"17344:3:81"},"nativeSrc":"17344:16:81","nodeType":"YulFunctionCall","src":"17344:16:81"},"variables":[{"name":"_1","nativeSrc":"17338:2:81","nodeType":"YulTypedName","src":"17338:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"17376:2:81","nodeType":"YulIdentifier","src":"17376:2:81"},{"kind":"number","nativeSrc":"17380:1:81","nodeType":"YulLiteral","src":"17380:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"17369:6:81","nodeType":"YulIdentifier","src":"17369:6:81"},"nativeSrc":"17369:13:81","nodeType":"YulFunctionCall","src":"17369:13:81"},"nativeSrc":"17369:13:81","nodeType":"YulExpressionStatement","src":"17369:13:81"},{"nativeSrc":"17391:9:81","nodeType":"YulAssignment","src":"17391:9:81","value":{"name":"_1","nativeSrc":"17398:2:81","nodeType":"YulIdentifier","src":"17398:2:81"},"variableNames":[{"name":"end","nativeSrc":"17391:3:81","nodeType":"YulIdentifier","src":"17391:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"17135:271:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"17250:3:81","nodeType":"YulTypedName","src":"17250:3:81","type":""},{"name":"value1","nativeSrc":"17255:6:81","nodeType":"YulTypedName","src":"17255:6:81","type":""},{"name":"value0","nativeSrc":"17263:6:81","nodeType":"YulTypedName","src":"17263:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"17274:3:81","nodeType":"YulTypedName","src":"17274:3:81","type":""}],"src":"17135:271:81"},{"body":{"nativeSrc":"17552:157:81","nodeType":"YulBlock","src":"17552:157:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17569:9:81","nodeType":"YulIdentifier","src":"17569:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17594:6:81","nodeType":"YulIdentifier","src":"17594:6:81"}],"functionName":{"name":"iszero","nativeSrc":"17587:6:81","nodeType":"YulIdentifier","src":"17587:6:81"},"nativeSrc":"17587:14:81","nodeType":"YulFunctionCall","src":"17587:14:81"}],"functionName":{"name":"iszero","nativeSrc":"17580:6:81","nodeType":"YulIdentifier","src":"17580:6:81"},"nativeSrc":"17580:22:81","nodeType":"YulFunctionCall","src":"17580:22:81"}],"functionName":{"name":"mstore","nativeSrc":"17562:6:81","nodeType":"YulIdentifier","src":"17562:6:81"},"nativeSrc":"17562:41:81","nodeType":"YulFunctionCall","src":"17562:41:81"},"nativeSrc":"17562:41:81","nodeType":"YulExpressionStatement","src":"17562:41:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17623:9:81","nodeType":"YulIdentifier","src":"17623:9:81"},{"kind":"number","nativeSrc":"17634:2:81","nodeType":"YulLiteral","src":"17634:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17619:3:81","nodeType":"YulIdentifier","src":"17619:3:81"},"nativeSrc":"17619:18:81","nodeType":"YulFunctionCall","src":"17619:18:81"},{"kind":"number","nativeSrc":"17639:2:81","nodeType":"YulLiteral","src":"17639:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"17612:6:81","nodeType":"YulIdentifier","src":"17612:6:81"},"nativeSrc":"17612:30:81","nodeType":"YulFunctionCall","src":"17612:30:81"},"nativeSrc":"17612:30:81","nodeType":"YulExpressionStatement","src":"17612:30:81"},{"nativeSrc":"17651:52:81","nodeType":"YulAssignment","src":"17651:52:81","value":{"arguments":[{"name":"value1","nativeSrc":"17676:6:81","nodeType":"YulIdentifier","src":"17676:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"17688:9:81","nodeType":"YulIdentifier","src":"17688:9:81"},{"kind":"number","nativeSrc":"17699:2:81","nodeType":"YulLiteral","src":"17699:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17684:3:81","nodeType":"YulIdentifier","src":"17684:3:81"},"nativeSrc":"17684:18:81","nodeType":"YulFunctionCall","src":"17684:18:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"17659:16:81","nodeType":"YulIdentifier","src":"17659:16:81"},"nativeSrc":"17659:44:81","nodeType":"YulFunctionCall","src":"17659:44:81"},"variableNames":[{"name":"tail","nativeSrc":"17651:4:81","nodeType":"YulIdentifier","src":"17651:4:81"}]}]},"name":"abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"17411:298:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17513:9:81","nodeType":"YulTypedName","src":"17513:9:81","type":""},{"name":"value1","nativeSrc":"17524:6:81","nodeType":"YulTypedName","src":"17524:6:81","type":""},{"name":"value0","nativeSrc":"17532:6:81","nodeType":"YulTypedName","src":"17532:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17543:4:81","nodeType":"YulTypedName","src":"17543:4:81","type":""}],"src":"17411:298:81"},{"body":{"nativeSrc":"17780:200:81","nodeType":"YulBlock","src":"17780:200:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"17797:3:81","nodeType":"YulIdentifier","src":"17797:3:81"},{"name":"length","nativeSrc":"17802:6:81","nodeType":"YulIdentifier","src":"17802:6:81"}],"functionName":{"name":"mstore","nativeSrc":"17790:6:81","nodeType":"YulIdentifier","src":"17790:6:81"},"nativeSrc":"17790:19:81","nodeType":"YulFunctionCall","src":"17790:19:81"},"nativeSrc":"17790:19:81","nodeType":"YulExpressionStatement","src":"17790:19:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17835:3:81","nodeType":"YulIdentifier","src":"17835:3:81"},{"kind":"number","nativeSrc":"17840:4:81","nodeType":"YulLiteral","src":"17840:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17831:3:81","nodeType":"YulIdentifier","src":"17831:3:81"},"nativeSrc":"17831:14:81","nodeType":"YulFunctionCall","src":"17831:14:81"},{"name":"start","nativeSrc":"17847:5:81","nodeType":"YulIdentifier","src":"17847:5:81"},{"name":"length","nativeSrc":"17854:6:81","nodeType":"YulIdentifier","src":"17854:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"17818:12:81","nodeType":"YulIdentifier","src":"17818:12:81"},"nativeSrc":"17818:43:81","nodeType":"YulFunctionCall","src":"17818:43:81"},"nativeSrc":"17818:43:81","nodeType":"YulExpressionStatement","src":"17818:43:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17885:3:81","nodeType":"YulIdentifier","src":"17885:3:81"},{"name":"length","nativeSrc":"17890:6:81","nodeType":"YulIdentifier","src":"17890:6:81"}],"functionName":{"name":"add","nativeSrc":"17881:3:81","nodeType":"YulIdentifier","src":"17881:3:81"},"nativeSrc":"17881:16:81","nodeType":"YulFunctionCall","src":"17881:16:81"},{"kind":"number","nativeSrc":"17899:4:81","nodeType":"YulLiteral","src":"17899:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17877:3:81","nodeType":"YulIdentifier","src":"17877:3:81"},"nativeSrc":"17877:27:81","nodeType":"YulFunctionCall","src":"17877:27:81"},{"kind":"number","nativeSrc":"17906:1:81","nodeType":"YulLiteral","src":"17906:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"17870:6:81","nodeType":"YulIdentifier","src":"17870:6:81"},"nativeSrc":"17870:38:81","nodeType":"YulFunctionCall","src":"17870:38:81"},"nativeSrc":"17870:38:81","nodeType":"YulExpressionStatement","src":"17870:38:81"},{"nativeSrc":"17917:57:81","nodeType":"YulAssignment","src":"17917:57:81","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17932:3:81","nodeType":"YulIdentifier","src":"17932:3:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"17945:6:81","nodeType":"YulIdentifier","src":"17945:6:81"},{"kind":"number","nativeSrc":"17953:2:81","nodeType":"YulLiteral","src":"17953:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"17941:3:81","nodeType":"YulIdentifier","src":"17941:3:81"},"nativeSrc":"17941:15:81","nodeType":"YulFunctionCall","src":"17941:15:81"},{"arguments":[{"kind":"number","nativeSrc":"17962:2:81","nodeType":"YulLiteral","src":"17962:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"17958:3:81","nodeType":"YulIdentifier","src":"17958:3:81"},"nativeSrc":"17958:7:81","nodeType":"YulFunctionCall","src":"17958:7:81"}],"functionName":{"name":"and","nativeSrc":"17937:3:81","nodeType":"YulIdentifier","src":"17937:3:81"},"nativeSrc":"17937:29:81","nodeType":"YulFunctionCall","src":"17937:29:81"}],"functionName":{"name":"add","nativeSrc":"17928:3:81","nodeType":"YulIdentifier","src":"17928:3:81"},"nativeSrc":"17928:39:81","nodeType":"YulFunctionCall","src":"17928:39:81"},{"kind":"number","nativeSrc":"17969:4:81","nodeType":"YulLiteral","src":"17969:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17924:3:81","nodeType":"YulIdentifier","src":"17924:3:81"},"nativeSrc":"17924:50:81","nodeType":"YulFunctionCall","src":"17924:50:81"},"variableNames":[{"name":"end","nativeSrc":"17917:3:81","nodeType":"YulIdentifier","src":"17917:3:81"}]}]},"name":"abi_encode_bytes_calldata","nativeSrc":"17714:266:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"17749:5:81","nodeType":"YulTypedName","src":"17749:5:81","type":""},{"name":"length","nativeSrc":"17756:6:81","nodeType":"YulTypedName","src":"17756:6:81","type":""},{"name":"pos","nativeSrc":"17764:3:81","nodeType":"YulTypedName","src":"17764:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"17772:3:81","nodeType":"YulTypedName","src":"17772:3:81","type":""}],"src":"17714:266:81"},{"body":{"nativeSrc":"18114:115:81","nodeType":"YulBlock","src":"18114:115:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18131:9:81","nodeType":"YulIdentifier","src":"18131:9:81"},{"kind":"number","nativeSrc":"18142:2:81","nodeType":"YulLiteral","src":"18142:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18124:6:81","nodeType":"YulIdentifier","src":"18124:6:81"},"nativeSrc":"18124:21:81","nodeType":"YulFunctionCall","src":"18124:21:81"},"nativeSrc":"18124:21:81","nodeType":"YulExpressionStatement","src":"18124:21:81"},{"nativeSrc":"18154:69:81","nodeType":"YulAssignment","src":"18154:69:81","value":{"arguments":[{"name":"value0","nativeSrc":"18188:6:81","nodeType":"YulIdentifier","src":"18188:6:81"},{"name":"value1","nativeSrc":"18196:6:81","nodeType":"YulIdentifier","src":"18196:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"18208:9:81","nodeType":"YulIdentifier","src":"18208:9:81"},{"kind":"number","nativeSrc":"18219:2:81","nodeType":"YulLiteral","src":"18219:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18204:3:81","nodeType":"YulIdentifier","src":"18204:3:81"},"nativeSrc":"18204:18:81","nodeType":"YulFunctionCall","src":"18204:18:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"18162:25:81","nodeType":"YulIdentifier","src":"18162:25:81"},"nativeSrc":"18162:61:81","nodeType":"YulFunctionCall","src":"18162:61:81"},"variableNames":[{"name":"tail","nativeSrc":"18154:4:81","nodeType":"YulIdentifier","src":"18154:4:81"}]}]},"name":"abi_encode_tuple_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"17985:244:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18075:9:81","nodeType":"YulTypedName","src":"18075:9:81","type":""},{"name":"value1","nativeSrc":"18086:6:81","nodeType":"YulTypedName","src":"18086:6:81","type":""},{"name":"value0","nativeSrc":"18094:6:81","nodeType":"YulTypedName","src":"18094:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18105:4:81","nodeType":"YulTypedName","src":"18105:4:81","type":""}],"src":"17985:244:81"},{"body":{"nativeSrc":"18315:170:81","nodeType":"YulBlock","src":"18315:170:81","statements":[{"body":{"nativeSrc":"18361:16:81","nodeType":"YulBlock","src":"18361:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18370:1:81","nodeType":"YulLiteral","src":"18370:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"18373:1:81","nodeType":"YulLiteral","src":"18373:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18363:6:81","nodeType":"YulIdentifier","src":"18363:6:81"},"nativeSrc":"18363:12:81","nodeType":"YulFunctionCall","src":"18363:12:81"},"nativeSrc":"18363:12:81","nodeType":"YulExpressionStatement","src":"18363:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18336:7:81","nodeType":"YulIdentifier","src":"18336:7:81"},{"name":"headStart","nativeSrc":"18345:9:81","nodeType":"YulIdentifier","src":"18345:9:81"}],"functionName":{"name":"sub","nativeSrc":"18332:3:81","nodeType":"YulIdentifier","src":"18332:3:81"},"nativeSrc":"18332:23:81","nodeType":"YulFunctionCall","src":"18332:23:81"},{"kind":"number","nativeSrc":"18357:2:81","nodeType":"YulLiteral","src":"18357:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18328:3:81","nodeType":"YulIdentifier","src":"18328:3:81"},"nativeSrc":"18328:32:81","nodeType":"YulFunctionCall","src":"18328:32:81"},"nativeSrc":"18325:52:81","nodeType":"YulIf","src":"18325:52:81"},{"nativeSrc":"18386:29:81","nodeType":"YulVariableDeclaration","src":"18386:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18405:9:81","nodeType":"YulIdentifier","src":"18405:9:81"}],"functionName":{"name":"mload","nativeSrc":"18399:5:81","nodeType":"YulIdentifier","src":"18399:5:81"},"nativeSrc":"18399:16:81","nodeType":"YulFunctionCall","src":"18399:16:81"},"variables":[{"name":"value","nativeSrc":"18390:5:81","nodeType":"YulTypedName","src":"18390:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18449:5:81","nodeType":"YulIdentifier","src":"18449:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18424:24:81","nodeType":"YulIdentifier","src":"18424:24:81"},"nativeSrc":"18424:31:81","nodeType":"YulFunctionCall","src":"18424:31:81"},"nativeSrc":"18424:31:81","nodeType":"YulExpressionStatement","src":"18424:31:81"},{"nativeSrc":"18464:15:81","nodeType":"YulAssignment","src":"18464:15:81","value":{"name":"value","nativeSrc":"18474:5:81","nodeType":"YulIdentifier","src":"18474:5:81"},"variableNames":[{"name":"value0","nativeSrc":"18464:6:81","nodeType":"YulIdentifier","src":"18464:6:81"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"18234:251:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18281:9:81","nodeType":"YulTypedName","src":"18281:9:81","type":""},{"name":"dataEnd","nativeSrc":"18292:7:81","nodeType":"YulTypedName","src":"18292:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18304:6:81","nodeType":"YulTypedName","src":"18304:6:81","type":""}],"src":"18234:251:81"},{"body":{"nativeSrc":"18591:102:81","nodeType":"YulBlock","src":"18591:102:81","statements":[{"nativeSrc":"18601:26:81","nodeType":"YulAssignment","src":"18601:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18613:9:81","nodeType":"YulIdentifier","src":"18613:9:81"},{"kind":"number","nativeSrc":"18624:2:81","nodeType":"YulLiteral","src":"18624:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18609:3:81","nodeType":"YulIdentifier","src":"18609:3:81"},"nativeSrc":"18609:18:81","nodeType":"YulFunctionCall","src":"18609:18:81"},"variableNames":[{"name":"tail","nativeSrc":"18601:4:81","nodeType":"YulIdentifier","src":"18601:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18643:9:81","nodeType":"YulIdentifier","src":"18643:9:81"},{"arguments":[{"name":"value0","nativeSrc":"18658:6:81","nodeType":"YulIdentifier","src":"18658:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18674:3:81","nodeType":"YulLiteral","src":"18674:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"18679:1:81","nodeType":"YulLiteral","src":"18679:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18670:3:81","nodeType":"YulIdentifier","src":"18670:3:81"},"nativeSrc":"18670:11:81","nodeType":"YulFunctionCall","src":"18670:11:81"},{"kind":"number","nativeSrc":"18683:1:81","nodeType":"YulLiteral","src":"18683:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18666:3:81","nodeType":"YulIdentifier","src":"18666:3:81"},"nativeSrc":"18666:19:81","nodeType":"YulFunctionCall","src":"18666:19:81"}],"functionName":{"name":"and","nativeSrc":"18654:3:81","nodeType":"YulIdentifier","src":"18654:3:81"},"nativeSrc":"18654:32:81","nodeType":"YulFunctionCall","src":"18654:32:81"}],"functionName":{"name":"mstore","nativeSrc":"18636:6:81","nodeType":"YulIdentifier","src":"18636:6:81"},"nativeSrc":"18636:51:81","nodeType":"YulFunctionCall","src":"18636:51:81"},"nativeSrc":"18636:51:81","nodeType":"YulExpressionStatement","src":"18636:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"18490:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18560:9:81","nodeType":"YulTypedName","src":"18560:9:81","type":""},{"name":"value0","nativeSrc":"18571:6:81","nodeType":"YulTypedName","src":"18571:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18582:4:81","nodeType":"YulTypedName","src":"18582:4:81","type":""}],"src":"18490:203:81"},{"body":{"nativeSrc":"18872:160:81","nodeType":"YulBlock","src":"18872:160:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18889:9:81","nodeType":"YulIdentifier","src":"18889:9:81"},{"kind":"number","nativeSrc":"18900:2:81","nodeType":"YulLiteral","src":"18900:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18882:6:81","nodeType":"YulIdentifier","src":"18882:6:81"},"nativeSrc":"18882:21:81","nodeType":"YulFunctionCall","src":"18882:21:81"},"nativeSrc":"18882:21:81","nodeType":"YulExpressionStatement","src":"18882:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18923:9:81","nodeType":"YulIdentifier","src":"18923:9:81"},{"kind":"number","nativeSrc":"18934:2:81","nodeType":"YulLiteral","src":"18934:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18919:3:81","nodeType":"YulIdentifier","src":"18919:3:81"},"nativeSrc":"18919:18:81","nodeType":"YulFunctionCall","src":"18919:18:81"},{"kind":"number","nativeSrc":"18939:2:81","nodeType":"YulLiteral","src":"18939:2:81","type":"","value":"10"}],"functionName":{"name":"mstore","nativeSrc":"18912:6:81","nodeType":"YulIdentifier","src":"18912:6:81"},"nativeSrc":"18912:30:81","nodeType":"YulFunctionCall","src":"18912:30:81"},"nativeSrc":"18912:30:81","nodeType":"YulExpressionStatement","src":"18912:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18962:9:81","nodeType":"YulIdentifier","src":"18962:9:81"},{"kind":"number","nativeSrc":"18973:2:81","nodeType":"YulLiteral","src":"18973:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18958:3:81","nodeType":"YulIdentifier","src":"18958:3:81"},"nativeSrc":"18958:18:81","nodeType":"YulFunctionCall","src":"18958:18:81"},{"hexValue":"6e6f74207374616b6564","kind":"string","nativeSrc":"18978:12:81","nodeType":"YulLiteral","src":"18978:12:81","type":"","value":"not staked"}],"functionName":{"name":"mstore","nativeSrc":"18951:6:81","nodeType":"YulIdentifier","src":"18951:6:81"},"nativeSrc":"18951:40:81","nodeType":"YulFunctionCall","src":"18951:40:81"},"nativeSrc":"18951:40:81","nodeType":"YulExpressionStatement","src":"18951:40:81"},{"nativeSrc":"19000:26:81","nodeType":"YulAssignment","src":"19000:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19012:9:81","nodeType":"YulIdentifier","src":"19012:9:81"},{"kind":"number","nativeSrc":"19023:2:81","nodeType":"YulLiteral","src":"19023:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19008:3:81","nodeType":"YulIdentifier","src":"19008:3:81"},"nativeSrc":"19008:18:81","nodeType":"YulFunctionCall","src":"19008:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19000:4:81","nodeType":"YulIdentifier","src":"19000:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"18698:334:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18849:9:81","nodeType":"YulTypedName","src":"18849:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18863:4:81","nodeType":"YulTypedName","src":"18863:4:81","type":""}],"src":"18698:334:81"},{"body":{"nativeSrc":"19211:167:81","nodeType":"YulBlock","src":"19211:167:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19228:9:81","nodeType":"YulIdentifier","src":"19228:9:81"},{"kind":"number","nativeSrc":"19239:2:81","nodeType":"YulLiteral","src":"19239:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19221:6:81","nodeType":"YulIdentifier","src":"19221:6:81"},"nativeSrc":"19221:21:81","nodeType":"YulFunctionCall","src":"19221:21:81"},"nativeSrc":"19221:21:81","nodeType":"YulExpressionStatement","src":"19221:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19262:9:81","nodeType":"YulIdentifier","src":"19262:9:81"},{"kind":"number","nativeSrc":"19273:2:81","nodeType":"YulLiteral","src":"19273:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19258:3:81","nodeType":"YulIdentifier","src":"19258:3:81"},"nativeSrc":"19258:18:81","nodeType":"YulFunctionCall","src":"19258:18:81"},{"kind":"number","nativeSrc":"19278:2:81","nodeType":"YulLiteral","src":"19278:2:81","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"19251:6:81","nodeType":"YulIdentifier","src":"19251:6:81"},"nativeSrc":"19251:30:81","nodeType":"YulFunctionCall","src":"19251:30:81"},"nativeSrc":"19251:30:81","nodeType":"YulExpressionStatement","src":"19251:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19301:9:81","nodeType":"YulIdentifier","src":"19301:9:81"},{"kind":"number","nativeSrc":"19312:2:81","nodeType":"YulLiteral","src":"19312:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19297:3:81","nodeType":"YulIdentifier","src":"19297:3:81"},"nativeSrc":"19297:18:81","nodeType":"YulFunctionCall","src":"19297:18:81"},{"hexValue":"616c726561647920756e7374616b696e67","kind":"string","nativeSrc":"19317:19:81","nodeType":"YulLiteral","src":"19317:19:81","type":"","value":"already unstaking"}],"functionName":{"name":"mstore","nativeSrc":"19290:6:81","nodeType":"YulIdentifier","src":"19290:6:81"},"nativeSrc":"19290:47:81","nodeType":"YulFunctionCall","src":"19290:47:81"},"nativeSrc":"19290:47:81","nodeType":"YulExpressionStatement","src":"19290:47:81"},{"nativeSrc":"19346:26:81","nodeType":"YulAssignment","src":"19346:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19358:9:81","nodeType":"YulIdentifier","src":"19358:9:81"},{"kind":"number","nativeSrc":"19369:2:81","nodeType":"YulLiteral","src":"19369:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19354:3:81","nodeType":"YulIdentifier","src":"19354:3:81"},"nativeSrc":"19354:18:81","nodeType":"YulFunctionCall","src":"19354:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19346:4:81","nodeType":"YulIdentifier","src":"19346:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19037:341:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19188:9:81","nodeType":"YulTypedName","src":"19188:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19202:4:81","nodeType":"YulTypedName","src":"19202:4:81","type":""}],"src":"19037:341:81"},{"body":{"nativeSrc":"19430:132:81","nodeType":"YulBlock","src":"19430:132:81","statements":[{"nativeSrc":"19440:58:81","nodeType":"YulAssignment","src":"19440:58:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19455:1:81","nodeType":"YulIdentifier","src":"19455:1:81"},{"kind":"number","nativeSrc":"19458:14:81","nodeType":"YulLiteral","src":"19458:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19451:3:81","nodeType":"YulIdentifier","src":"19451:3:81"},"nativeSrc":"19451:22:81","nodeType":"YulFunctionCall","src":"19451:22:81"},{"arguments":[{"name":"y","nativeSrc":"19479:1:81","nodeType":"YulIdentifier","src":"19479:1:81"},{"kind":"number","nativeSrc":"19482:14:81","nodeType":"YulLiteral","src":"19482:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19475:3:81","nodeType":"YulIdentifier","src":"19475:3:81"},"nativeSrc":"19475:22:81","nodeType":"YulFunctionCall","src":"19475:22:81"}],"functionName":{"name":"add","nativeSrc":"19447:3:81","nodeType":"YulIdentifier","src":"19447:3:81"},"nativeSrc":"19447:51:81","nodeType":"YulFunctionCall","src":"19447:51:81"},"variableNames":[{"name":"sum","nativeSrc":"19440:3:81","nodeType":"YulIdentifier","src":"19440:3:81"}]},{"body":{"nativeSrc":"19534:22:81","nodeType":"YulBlock","src":"19534:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19536:16:81","nodeType":"YulIdentifier","src":"19536:16:81"},"nativeSrc":"19536:18:81","nodeType":"YulFunctionCall","src":"19536:18:81"},"nativeSrc":"19536:18:81","nodeType":"YulExpressionStatement","src":"19536:18:81"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"19513:3:81","nodeType":"YulIdentifier","src":"19513:3:81"},{"kind":"number","nativeSrc":"19518:14:81","nodeType":"YulLiteral","src":"19518:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19510:2:81","nodeType":"YulIdentifier","src":"19510:2:81"},"nativeSrc":"19510:23:81","nodeType":"YulFunctionCall","src":"19510:23:81"},"nativeSrc":"19507:49:81","nodeType":"YulIf","src":"19507:49:81"}]},"name":"checked_add_t_uint48","nativeSrc":"19383:179:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19413:1:81","nodeType":"YulTypedName","src":"19413:1:81","type":""},{"name":"y","nativeSrc":"19416:1:81","nodeType":"YulTypedName","src":"19416:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"19422:3:81","nodeType":"YulTypedName","src":"19422:3:81","type":""}],"src":"19383:179:81"},{"body":{"nativeSrc":"19667:97:81","nodeType":"YulBlock","src":"19667:97:81","statements":[{"nativeSrc":"19677:26:81","nodeType":"YulAssignment","src":"19677:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19689:9:81","nodeType":"YulIdentifier","src":"19689:9:81"},{"kind":"number","nativeSrc":"19700:2:81","nodeType":"YulLiteral","src":"19700:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19685:3:81","nodeType":"YulIdentifier","src":"19685:3:81"},"nativeSrc":"19685:18:81","nodeType":"YulFunctionCall","src":"19685:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19677:4:81","nodeType":"YulIdentifier","src":"19677:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19719:9:81","nodeType":"YulIdentifier","src":"19719:9:81"},{"arguments":[{"name":"value0","nativeSrc":"19734:6:81","nodeType":"YulIdentifier","src":"19734:6:81"},{"kind":"number","nativeSrc":"19742:14:81","nodeType":"YulLiteral","src":"19742:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19730:3:81","nodeType":"YulIdentifier","src":"19730:3:81"},"nativeSrc":"19730:27:81","nodeType":"YulFunctionCall","src":"19730:27:81"}],"functionName":{"name":"mstore","nativeSrc":"19712:6:81","nodeType":"YulIdentifier","src":"19712:6:81"},"nativeSrc":"19712:46:81","nodeType":"YulFunctionCall","src":"19712:46:81"},"nativeSrc":"19712:46:81","nodeType":"YulExpressionStatement","src":"19712:46:81"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint256__fromStack_reversed","nativeSrc":"19567:197:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19636:9:81","nodeType":"YulTypedName","src":"19636:9:81","type":""},{"name":"value0","nativeSrc":"19647:6:81","nodeType":"YulTypedName","src":"19647:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19658:4:81","nodeType":"YulTypedName","src":"19658:4:81","type":""}],"src":"19567:197:81"},{"body":{"nativeSrc":"19943:170:81","nodeType":"YulBlock","src":"19943:170:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19960:9:81","nodeType":"YulIdentifier","src":"19960:9:81"},{"kind":"number","nativeSrc":"19971:2:81","nodeType":"YulLiteral","src":"19971:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19953:6:81","nodeType":"YulIdentifier","src":"19953:6:81"},"nativeSrc":"19953:21:81","nodeType":"YulFunctionCall","src":"19953:21:81"},"nativeSrc":"19953:21:81","nodeType":"YulExpressionStatement","src":"19953:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19994:9:81","nodeType":"YulIdentifier","src":"19994:9:81"},{"kind":"number","nativeSrc":"20005:2:81","nodeType":"YulLiteral","src":"20005:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19990:3:81","nodeType":"YulIdentifier","src":"19990:3:81"},"nativeSrc":"19990:18:81","nodeType":"YulFunctionCall","src":"19990:18:81"},{"kind":"number","nativeSrc":"20010:2:81","nodeType":"YulLiteral","src":"20010:2:81","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"19983:6:81","nodeType":"YulIdentifier","src":"19983:6:81"},"nativeSrc":"19983:30:81","nodeType":"YulFunctionCall","src":"19983:30:81"},"nativeSrc":"19983:30:81","nodeType":"YulExpressionStatement","src":"19983:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20033:9:81","nodeType":"YulIdentifier","src":"20033:9:81"},{"kind":"number","nativeSrc":"20044:2:81","nodeType":"YulLiteral","src":"20044:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20029:3:81","nodeType":"YulIdentifier","src":"20029:3:81"},"nativeSrc":"20029:18:81","nodeType":"YulFunctionCall","src":"20029:18:81"},{"hexValue":"4e6f207374616b6520746f207769746864726177","kind":"string","nativeSrc":"20049:22:81","nodeType":"YulLiteral","src":"20049:22:81","type":"","value":"No stake to withdraw"}],"functionName":{"name":"mstore","nativeSrc":"20022:6:81","nodeType":"YulIdentifier","src":"20022:6:81"},"nativeSrc":"20022:50:81","nodeType":"YulFunctionCall","src":"20022:50:81"},"nativeSrc":"20022:50:81","nodeType":"YulExpressionStatement","src":"20022:50:81"},{"nativeSrc":"20081:26:81","nodeType":"YulAssignment","src":"20081:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20093:9:81","nodeType":"YulIdentifier","src":"20093:9:81"},{"kind":"number","nativeSrc":"20104:2:81","nodeType":"YulLiteral","src":"20104:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20089:3:81","nodeType":"YulIdentifier","src":"20089:3:81"},"nativeSrc":"20089:18:81","nodeType":"YulFunctionCall","src":"20089:18:81"},"variableNames":[{"name":"tail","nativeSrc":"20081:4:81","nodeType":"YulIdentifier","src":"20081:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19769:344:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19920:9:81","nodeType":"YulTypedName","src":"19920:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19934:4:81","nodeType":"YulTypedName","src":"19934:4:81","type":""}],"src":"19769:344:81"},{"body":{"nativeSrc":"20292:179:81","nodeType":"YulBlock","src":"20292:179:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20309:9:81","nodeType":"YulIdentifier","src":"20309:9:81"},{"kind":"number","nativeSrc":"20320:2:81","nodeType":"YulLiteral","src":"20320:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20302:6:81","nodeType":"YulIdentifier","src":"20302:6:81"},"nativeSrc":"20302:21:81","nodeType":"YulFunctionCall","src":"20302:21:81"},"nativeSrc":"20302:21:81","nodeType":"YulExpressionStatement","src":"20302:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20343:9:81","nodeType":"YulIdentifier","src":"20343:9:81"},{"kind":"number","nativeSrc":"20354:2:81","nodeType":"YulLiteral","src":"20354:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20339:3:81","nodeType":"YulIdentifier","src":"20339:3:81"},"nativeSrc":"20339:18:81","nodeType":"YulFunctionCall","src":"20339:18:81"},{"kind":"number","nativeSrc":"20359:2:81","nodeType":"YulLiteral","src":"20359:2:81","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"20332:6:81","nodeType":"YulIdentifier","src":"20332:6:81"},"nativeSrc":"20332:30:81","nodeType":"YulFunctionCall","src":"20332:30:81"},"nativeSrc":"20332:30:81","nodeType":"YulExpressionStatement","src":"20332:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20382:9:81","nodeType":"YulIdentifier","src":"20382:9:81"},{"kind":"number","nativeSrc":"20393:2:81","nodeType":"YulLiteral","src":"20393:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20378:3:81","nodeType":"YulIdentifier","src":"20378:3:81"},"nativeSrc":"20378:18:81","nodeType":"YulFunctionCall","src":"20378:18:81"},{"hexValue":"6d7573742063616c6c20756e6c6f636b5374616b652829206669727374","kind":"string","nativeSrc":"20398:31:81","nodeType":"YulLiteral","src":"20398:31:81","type":"","value":"must call unlockStake() first"}],"functionName":{"name":"mstore","nativeSrc":"20371:6:81","nodeType":"YulIdentifier","src":"20371:6:81"},"nativeSrc":"20371:59:81","nodeType":"YulFunctionCall","src":"20371:59:81"},"nativeSrc":"20371:59:81","nodeType":"YulExpressionStatement","src":"20371:59:81"},{"nativeSrc":"20439:26:81","nodeType":"YulAssignment","src":"20439:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20451:9:81","nodeType":"YulIdentifier","src":"20451:9:81"},{"kind":"number","nativeSrc":"20462:2:81","nodeType":"YulLiteral","src":"20462:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20447:3:81","nodeType":"YulIdentifier","src":"20447:3:81"},"nativeSrc":"20447:18:81","nodeType":"YulFunctionCall","src":"20447:18:81"},"variableNames":[{"name":"tail","nativeSrc":"20439:4:81","nodeType":"YulIdentifier","src":"20439:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20118:353:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20269:9:81","nodeType":"YulTypedName","src":"20269:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20283:4:81","nodeType":"YulTypedName","src":"20283:4:81","type":""}],"src":"20118:353:81"},{"body":{"nativeSrc":"20650:177:81","nodeType":"YulBlock","src":"20650:177:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20667:9:81","nodeType":"YulIdentifier","src":"20667:9:81"},{"kind":"number","nativeSrc":"20678:2:81","nodeType":"YulLiteral","src":"20678:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20660:6:81","nodeType":"YulIdentifier","src":"20660:6:81"},"nativeSrc":"20660:21:81","nodeType":"YulFunctionCall","src":"20660:21:81"},"nativeSrc":"20660:21:81","nodeType":"YulExpressionStatement","src":"20660:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20701:9:81","nodeType":"YulIdentifier","src":"20701:9:81"},{"kind":"number","nativeSrc":"20712:2:81","nodeType":"YulLiteral","src":"20712:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20697:3:81","nodeType":"YulIdentifier","src":"20697:3:81"},"nativeSrc":"20697:18:81","nodeType":"YulFunctionCall","src":"20697:18:81"},{"kind":"number","nativeSrc":"20717:2:81","nodeType":"YulLiteral","src":"20717:2:81","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"20690:6:81","nodeType":"YulIdentifier","src":"20690:6:81"},"nativeSrc":"20690:30:81","nodeType":"YulFunctionCall","src":"20690:30:81"},"nativeSrc":"20690:30:81","nodeType":"YulExpressionStatement","src":"20690:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20740:9:81","nodeType":"YulIdentifier","src":"20740:9:81"},{"kind":"number","nativeSrc":"20751:2:81","nodeType":"YulLiteral","src":"20751:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20736:3:81","nodeType":"YulIdentifier","src":"20736:3:81"},"nativeSrc":"20736:18:81","nodeType":"YulFunctionCall","src":"20736:18:81"},{"hexValue":"5374616b65207769746864726177616c206973206e6f7420647565","kind":"string","nativeSrc":"20756:29:81","nodeType":"YulLiteral","src":"20756:29:81","type":"","value":"Stake withdrawal is not due"}],"functionName":{"name":"mstore","nativeSrc":"20729:6:81","nodeType":"YulIdentifier","src":"20729:6:81"},"nativeSrc":"20729:57:81","nodeType":"YulFunctionCall","src":"20729:57:81"},"nativeSrc":"20729:57:81","nodeType":"YulExpressionStatement","src":"20729:57:81"},{"nativeSrc":"20795:26:81","nodeType":"YulAssignment","src":"20795:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20807:9:81","nodeType":"YulIdentifier","src":"20807:9:81"},{"kind":"number","nativeSrc":"20818:2:81","nodeType":"YulLiteral","src":"20818:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20803:3:81","nodeType":"YulIdentifier","src":"20803:3:81"},"nativeSrc":"20803:18:81","nodeType":"YulFunctionCall","src":"20803:18:81"},"variableNames":[{"name":"tail","nativeSrc":"20795:4:81","nodeType":"YulIdentifier","src":"20795:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20476:351:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20627:9:81","nodeType":"YulTypedName","src":"20627:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20641:4:81","nodeType":"YulTypedName","src":"20641:4:81","type":""}],"src":"20476:351:81"},{"body":{"nativeSrc":"21006:174:81","nodeType":"YulBlock","src":"21006:174:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21023:9:81","nodeType":"YulIdentifier","src":"21023:9:81"},{"kind":"number","nativeSrc":"21034:2:81","nodeType":"YulLiteral","src":"21034:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"21016:6:81","nodeType":"YulIdentifier","src":"21016:6:81"},"nativeSrc":"21016:21:81","nodeType":"YulFunctionCall","src":"21016:21:81"},"nativeSrc":"21016:21:81","nodeType":"YulExpressionStatement","src":"21016:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21057:9:81","nodeType":"YulIdentifier","src":"21057:9:81"},{"kind":"number","nativeSrc":"21068:2:81","nodeType":"YulLiteral","src":"21068:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21053:3:81","nodeType":"YulIdentifier","src":"21053:3:81"},"nativeSrc":"21053:18:81","nodeType":"YulFunctionCall","src":"21053:18:81"},{"kind":"number","nativeSrc":"21073:2:81","nodeType":"YulLiteral","src":"21073:2:81","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"21046:6:81","nodeType":"YulIdentifier","src":"21046:6:81"},"nativeSrc":"21046:30:81","nodeType":"YulFunctionCall","src":"21046:30:81"},"nativeSrc":"21046:30:81","nodeType":"YulExpressionStatement","src":"21046:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21096:9:81","nodeType":"YulIdentifier","src":"21096:9:81"},{"kind":"number","nativeSrc":"21107:2:81","nodeType":"YulLiteral","src":"21107:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21092:3:81","nodeType":"YulIdentifier","src":"21092:3:81"},"nativeSrc":"21092:18:81","nodeType":"YulFunctionCall","src":"21092:18:81"},{"hexValue":"6661696c656420746f207769746864726177207374616b65","kind":"string","nativeSrc":"21112:26:81","nodeType":"YulLiteral","src":"21112:26:81","type":"","value":"failed to withdraw stake"}],"functionName":{"name":"mstore","nativeSrc":"21085:6:81","nodeType":"YulIdentifier","src":"21085:6:81"},"nativeSrc":"21085:54:81","nodeType":"YulFunctionCall","src":"21085:54:81"},"nativeSrc":"21085:54:81","nodeType":"YulExpressionStatement","src":"21085:54:81"},{"nativeSrc":"21148:26:81","nodeType":"YulAssignment","src":"21148:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"21160:9:81","nodeType":"YulIdentifier","src":"21160:9:81"},{"kind":"number","nativeSrc":"21171:2:81","nodeType":"YulLiteral","src":"21171:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21156:3:81","nodeType":"YulIdentifier","src":"21156:3:81"},"nativeSrc":"21156:18:81","nodeType":"YulFunctionCall","src":"21156:18:81"},"variableNames":[{"name":"tail","nativeSrc":"21148:4:81","nodeType":"YulIdentifier","src":"21148:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20832:348:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20983:9:81","nodeType":"YulTypedName","src":"20983:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20997:4:81","nodeType":"YulTypedName","src":"20997:4:81","type":""}],"src":"20832:348:81"},{"body":{"nativeSrc":"21300:222:81","nodeType":"YulBlock","src":"21300:222:81","statements":[{"nativeSrc":"21310:51:81","nodeType":"YulVariableDeclaration","src":"21310:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"21349:11:81","nodeType":"YulIdentifier","src":"21349:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"21336:12:81","nodeType":"YulIdentifier","src":"21336:12:81"},"nativeSrc":"21336:25:81","nodeType":"YulFunctionCall","src":"21336:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"21314:18:81","nodeType":"YulTypedName","src":"21314:18:81","type":""}]},{"body":{"nativeSrc":"21450:16:81","nodeType":"YulBlock","src":"21450:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21459:1:81","nodeType":"YulLiteral","src":"21459:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"21462:1:81","nodeType":"YulLiteral","src":"21462:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21452:6:81","nodeType":"YulIdentifier","src":"21452:6:81"},"nativeSrc":"21452:12:81","nodeType":"YulFunctionCall","src":"21452:12:81"},"nativeSrc":"21452:12:81","nodeType":"YulExpressionStatement","src":"21452:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"21384:18:81","nodeType":"YulIdentifier","src":"21384:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"21412:12:81","nodeType":"YulIdentifier","src":"21412:12:81"},"nativeSrc":"21412:14:81","nodeType":"YulFunctionCall","src":"21412:14:81"},{"name":"base_ref","nativeSrc":"21428:8:81","nodeType":"YulIdentifier","src":"21428:8:81"}],"functionName":{"name":"sub","nativeSrc":"21408:3:81","nodeType":"YulIdentifier","src":"21408:3:81"},"nativeSrc":"21408:29:81","nodeType":"YulFunctionCall","src":"21408:29:81"},{"arguments":[{"kind":"number","nativeSrc":"21443:2:81","nodeType":"YulLiteral","src":"21443:2:81","type":"","value":"94"}],"functionName":{"name":"not","nativeSrc":"21439:3:81","nodeType":"YulIdentifier","src":"21439:3:81"},"nativeSrc":"21439:7:81","nodeType":"YulFunctionCall","src":"21439:7:81"}],"functionName":{"name":"add","nativeSrc":"21404:3:81","nodeType":"YulIdentifier","src":"21404:3:81"},"nativeSrc":"21404:43:81","nodeType":"YulFunctionCall","src":"21404:43:81"}],"functionName":{"name":"slt","nativeSrc":"21380:3:81","nodeType":"YulIdentifier","src":"21380:3:81"},"nativeSrc":"21380:68:81","nodeType":"YulFunctionCall","src":"21380:68:81"}],"functionName":{"name":"iszero","nativeSrc":"21373:6:81","nodeType":"YulIdentifier","src":"21373:6:81"},"nativeSrc":"21373:76:81","nodeType":"YulFunctionCall","src":"21373:76:81"},"nativeSrc":"21370:96:81","nodeType":"YulIf","src":"21370:96:81"},{"nativeSrc":"21475:41:81","nodeType":"YulAssignment","src":"21475:41:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"21487:8:81","nodeType":"YulIdentifier","src":"21487:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"21497:18:81","nodeType":"YulIdentifier","src":"21497:18:81"}],"functionName":{"name":"add","nativeSrc":"21483:3:81","nodeType":"YulIdentifier","src":"21483:3:81"},"nativeSrc":"21483:33:81","nodeType":"YulFunctionCall","src":"21483:33:81"},"variableNames":[{"name":"addr","nativeSrc":"21475:4:81","nodeType":"YulIdentifier","src":"21475:4:81"}]}]},"name":"access_calldata_tail_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","nativeSrc":"21185:337:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"21265:8:81","nodeType":"YulTypedName","src":"21265:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"21275:11:81","nodeType":"YulTypedName","src":"21275:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"21291:4:81","nodeType":"YulTypedName","src":"21291:4:81","type":""}],"src":"21185:337:81"},{"body":{"nativeSrc":"21676:435:81","nodeType":"YulBlock","src":"21676:435:81","statements":[{"nativeSrc":"21686:51:81","nodeType":"YulVariableDeclaration","src":"21686:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"21725:11:81","nodeType":"YulIdentifier","src":"21725:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"21712:12:81","nodeType":"YulIdentifier","src":"21712:12:81"},"nativeSrc":"21712:25:81","nodeType":"YulFunctionCall","src":"21712:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"21690:18:81","nodeType":"YulTypedName","src":"21690:18:81","type":""}]},{"body":{"nativeSrc":"21826:16:81","nodeType":"YulBlock","src":"21826:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21835:1:81","nodeType":"YulLiteral","src":"21835:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"21838:1:81","nodeType":"YulLiteral","src":"21838:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21828:6:81","nodeType":"YulIdentifier","src":"21828:6:81"},"nativeSrc":"21828:12:81","nodeType":"YulFunctionCall","src":"21828:12:81"},"nativeSrc":"21828:12:81","nodeType":"YulExpressionStatement","src":"21828:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"21760:18:81","nodeType":"YulIdentifier","src":"21760:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"21788:12:81","nodeType":"YulIdentifier","src":"21788:12:81"},"nativeSrc":"21788:14:81","nodeType":"YulFunctionCall","src":"21788:14:81"},{"name":"base_ref","nativeSrc":"21804:8:81","nodeType":"YulIdentifier","src":"21804:8:81"}],"functionName":{"name":"sub","nativeSrc":"21784:3:81","nodeType":"YulIdentifier","src":"21784:3:81"},"nativeSrc":"21784:29:81","nodeType":"YulFunctionCall","src":"21784:29:81"},{"arguments":[{"kind":"number","nativeSrc":"21819:2:81","nodeType":"YulLiteral","src":"21819:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"21815:3:81","nodeType":"YulIdentifier","src":"21815:3:81"},"nativeSrc":"21815:7:81","nodeType":"YulFunctionCall","src":"21815:7:81"}],"functionName":{"name":"add","nativeSrc":"21780:3:81","nodeType":"YulIdentifier","src":"21780:3:81"},"nativeSrc":"21780:43:81","nodeType":"YulFunctionCall","src":"21780:43:81"}],"functionName":{"name":"slt","nativeSrc":"21756:3:81","nodeType":"YulIdentifier","src":"21756:3:81"},"nativeSrc":"21756:68:81","nodeType":"YulFunctionCall","src":"21756:68:81"}],"functionName":{"name":"iszero","nativeSrc":"21749:6:81","nodeType":"YulIdentifier","src":"21749:6:81"},"nativeSrc":"21749:76:81","nodeType":"YulFunctionCall","src":"21749:76:81"},"nativeSrc":"21746:96:81","nodeType":"YulIf","src":"21746:96:81"},{"nativeSrc":"21851:47:81","nodeType":"YulVariableDeclaration","src":"21851:47:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"21869:8:81","nodeType":"YulIdentifier","src":"21869:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"21879:18:81","nodeType":"YulIdentifier","src":"21879:18:81"}],"functionName":{"name":"add","nativeSrc":"21865:3:81","nodeType":"YulIdentifier","src":"21865:3:81"},"nativeSrc":"21865:33:81","nodeType":"YulFunctionCall","src":"21865:33:81"},"variables":[{"name":"addr_1","nativeSrc":"21855:6:81","nodeType":"YulTypedName","src":"21855:6:81","type":""}]},{"nativeSrc":"21907:30:81","nodeType":"YulAssignment","src":"21907:30:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"21930:6:81","nodeType":"YulIdentifier","src":"21930:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"21917:12:81","nodeType":"YulIdentifier","src":"21917:12:81"},"nativeSrc":"21917:20:81","nodeType":"YulFunctionCall","src":"21917:20:81"},"variableNames":[{"name":"length","nativeSrc":"21907:6:81","nodeType":"YulIdentifier","src":"21907:6:81"}]},{"body":{"nativeSrc":"21980:16:81","nodeType":"YulBlock","src":"21980:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21989:1:81","nodeType":"YulLiteral","src":"21989:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"21992:1:81","nodeType":"YulLiteral","src":"21992:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21982:6:81","nodeType":"YulIdentifier","src":"21982:6:81"},"nativeSrc":"21982:12:81","nodeType":"YulFunctionCall","src":"21982:12:81"},"nativeSrc":"21982:12:81","nodeType":"YulExpressionStatement","src":"21982:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"21952:6:81","nodeType":"YulIdentifier","src":"21952:6:81"},{"kind":"number","nativeSrc":"21960:18:81","nodeType":"YulLiteral","src":"21960:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"21949:2:81","nodeType":"YulIdentifier","src":"21949:2:81"},"nativeSrc":"21949:30:81","nodeType":"YulFunctionCall","src":"21949:30:81"},"nativeSrc":"21946:50:81","nodeType":"YulIf","src":"21946:50:81"},{"nativeSrc":"22005:25:81","nodeType":"YulAssignment","src":"22005:25:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"22017:6:81","nodeType":"YulIdentifier","src":"22017:6:81"},{"kind":"number","nativeSrc":"22025:4:81","nodeType":"YulLiteral","src":"22025:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22013:3:81","nodeType":"YulIdentifier","src":"22013:3:81"},"nativeSrc":"22013:17:81","nodeType":"YulFunctionCall","src":"22013:17:81"},"variableNames":[{"name":"addr","nativeSrc":"22005:4:81","nodeType":"YulIdentifier","src":"22005:4:81"}]},{"body":{"nativeSrc":"22089:16:81","nodeType":"YulBlock","src":"22089:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22098:1:81","nodeType":"YulLiteral","src":"22098:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"22101:1:81","nodeType":"YulLiteral","src":"22101:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22091:6:81","nodeType":"YulIdentifier","src":"22091:6:81"},"nativeSrc":"22091:12:81","nodeType":"YulFunctionCall","src":"22091:12:81"},"nativeSrc":"22091:12:81","nodeType":"YulExpressionStatement","src":"22091:12:81"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"22046:4:81","nodeType":"YulIdentifier","src":"22046:4:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"22056:12:81","nodeType":"YulIdentifier","src":"22056:12:81"},"nativeSrc":"22056:14:81","nodeType":"YulFunctionCall","src":"22056:14:81"},{"arguments":[{"kind":"number","nativeSrc":"22076:1:81","nodeType":"YulLiteral","src":"22076:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"22079:6:81","nodeType":"YulIdentifier","src":"22079:6:81"}],"functionName":{"name":"shl","nativeSrc":"22072:3:81","nodeType":"YulIdentifier","src":"22072:3:81"},"nativeSrc":"22072:14:81","nodeType":"YulFunctionCall","src":"22072:14:81"}],"functionName":{"name":"sub","nativeSrc":"22052:3:81","nodeType":"YulIdentifier","src":"22052:3:81"},"nativeSrc":"22052:35:81","nodeType":"YulFunctionCall","src":"22052:35:81"}],"functionName":{"name":"sgt","nativeSrc":"22042:3:81","nodeType":"YulIdentifier","src":"22042:3:81"},"nativeSrc":"22042:46:81","nodeType":"YulFunctionCall","src":"22042:46:81"},"nativeSrc":"22039:66:81","nodeType":"YulIf","src":"22039:66:81"}]},"name":"access_calldata_tail_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"21527:584:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"21633:8:81","nodeType":"YulTypedName","src":"21633:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"21643:11:81","nodeType":"YulTypedName","src":"21643:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"21659:4:81","nodeType":"YulTypedName","src":"21659:4:81","type":""},{"name":"length","nativeSrc":"21665:6:81","nodeType":"YulTypedName","src":"21665:6:81","type":""}],"src":"21527:584:81"},{"body":{"nativeSrc":"22206:177:81","nodeType":"YulBlock","src":"22206:177:81","statements":[{"body":{"nativeSrc":"22252:16:81","nodeType":"YulBlock","src":"22252:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22261:1:81","nodeType":"YulLiteral","src":"22261:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"22264:1:81","nodeType":"YulLiteral","src":"22264:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22254:6:81","nodeType":"YulIdentifier","src":"22254:6:81"},"nativeSrc":"22254:12:81","nodeType":"YulFunctionCall","src":"22254:12:81"},"nativeSrc":"22254:12:81","nodeType":"YulExpressionStatement","src":"22254:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22227:7:81","nodeType":"YulIdentifier","src":"22227:7:81"},{"name":"headStart","nativeSrc":"22236:9:81","nodeType":"YulIdentifier","src":"22236:9:81"}],"functionName":{"name":"sub","nativeSrc":"22223:3:81","nodeType":"YulIdentifier","src":"22223:3:81"},"nativeSrc":"22223:23:81","nodeType":"YulFunctionCall","src":"22223:23:81"},{"kind":"number","nativeSrc":"22248:2:81","nodeType":"YulLiteral","src":"22248:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"22219:3:81","nodeType":"YulIdentifier","src":"22219:3:81"},"nativeSrc":"22219:32:81","nodeType":"YulFunctionCall","src":"22219:32:81"},"nativeSrc":"22216:52:81","nodeType":"YulIf","src":"22216:52:81"},{"nativeSrc":"22277:36:81","nodeType":"YulVariableDeclaration","src":"22277:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22303:9:81","nodeType":"YulIdentifier","src":"22303:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"22290:12:81","nodeType":"YulIdentifier","src":"22290:12:81"},"nativeSrc":"22290:23:81","nodeType":"YulFunctionCall","src":"22290:23:81"},"variables":[{"name":"value","nativeSrc":"22281:5:81","nodeType":"YulTypedName","src":"22281:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22347:5:81","nodeType":"YulIdentifier","src":"22347:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"22322:24:81","nodeType":"YulIdentifier","src":"22322:24:81"},"nativeSrc":"22322:31:81","nodeType":"YulFunctionCall","src":"22322:31:81"},"nativeSrc":"22322:31:81","nodeType":"YulExpressionStatement","src":"22322:31:81"},{"nativeSrc":"22362:15:81","nodeType":"YulAssignment","src":"22362:15:81","value":{"name":"value","nativeSrc":"22372:5:81","nodeType":"YulIdentifier","src":"22372:5:81"},"variableNames":[{"name":"value0","nativeSrc":"22362:6:81","nodeType":"YulIdentifier","src":"22362:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IAggregator_$3382","nativeSrc":"22116:267:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22172:9:81","nodeType":"YulTypedName","src":"22172:9:81","type":""},{"name":"dataEnd","nativeSrc":"22183:7:81","nodeType":"YulTypedName","src":"22183:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22195:6:81","nodeType":"YulTypedName","src":"22195:6:81","type":""}],"src":"22116:267:81"},{"body":{"nativeSrc":"22562:173:81","nodeType":"YulBlock","src":"22562:173:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22579:9:81","nodeType":"YulIdentifier","src":"22579:9:81"},{"kind":"number","nativeSrc":"22590:2:81","nodeType":"YulLiteral","src":"22590:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"22572:6:81","nodeType":"YulIdentifier","src":"22572:6:81"},"nativeSrc":"22572:21:81","nodeType":"YulFunctionCall","src":"22572:21:81"},"nativeSrc":"22572:21:81","nodeType":"YulExpressionStatement","src":"22572:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22613:9:81","nodeType":"YulIdentifier","src":"22613:9:81"},{"kind":"number","nativeSrc":"22624:2:81","nodeType":"YulLiteral","src":"22624:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22609:3:81","nodeType":"YulIdentifier","src":"22609:3:81"},"nativeSrc":"22609:18:81","nodeType":"YulFunctionCall","src":"22609:18:81"},{"kind":"number","nativeSrc":"22629:2:81","nodeType":"YulLiteral","src":"22629:2:81","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"22602:6:81","nodeType":"YulIdentifier","src":"22602:6:81"},"nativeSrc":"22602:30:81","nodeType":"YulFunctionCall","src":"22602:30:81"},"nativeSrc":"22602:30:81","nodeType":"YulExpressionStatement","src":"22602:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22652:9:81","nodeType":"YulIdentifier","src":"22652:9:81"},{"kind":"number","nativeSrc":"22663:2:81","nodeType":"YulLiteral","src":"22663:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22648:3:81","nodeType":"YulIdentifier","src":"22648:3:81"},"nativeSrc":"22648:18:81","nodeType":"YulFunctionCall","src":"22648:18:81"},{"hexValue":"4141393620696e76616c69642061676772656761746f72","kind":"string","nativeSrc":"22668:25:81","nodeType":"YulLiteral","src":"22668:25:81","type":"","value":"AA96 invalid aggregator"}],"functionName":{"name":"mstore","nativeSrc":"22641:6:81","nodeType":"YulIdentifier","src":"22641:6:81"},"nativeSrc":"22641:53:81","nodeType":"YulFunctionCall","src":"22641:53:81"},"nativeSrc":"22641:53:81","nodeType":"YulExpressionStatement","src":"22641:53:81"},{"nativeSrc":"22703:26:81","nodeType":"YulAssignment","src":"22703:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22715:9:81","nodeType":"YulIdentifier","src":"22715:9:81"},{"kind":"number","nativeSrc":"22726:2:81","nodeType":"YulLiteral","src":"22726:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22711:3:81","nodeType":"YulIdentifier","src":"22711:3:81"},"nativeSrc":"22711:18:81","nodeType":"YulFunctionCall","src":"22711:18:81"},"variableNames":[{"name":"tail","nativeSrc":"22703:4:81","nodeType":"YulIdentifier","src":"22703:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22388:347:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22539:9:81","nodeType":"YulTypedName","src":"22539:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22553:4:81","nodeType":"YulTypedName","src":"22553:4:81","type":""}],"src":"22388:347:81"},{"body":{"nativeSrc":"22834:427:81","nodeType":"YulBlock","src":"22834:427:81","statements":[{"nativeSrc":"22844:51:81","nodeType":"YulVariableDeclaration","src":"22844:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"22883:11:81","nodeType":"YulIdentifier","src":"22883:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"22870:12:81","nodeType":"YulIdentifier","src":"22870:12:81"},"nativeSrc":"22870:25:81","nodeType":"YulFunctionCall","src":"22870:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"22848:18:81","nodeType":"YulTypedName","src":"22848:18:81","type":""}]},{"body":{"nativeSrc":"22984:16:81","nodeType":"YulBlock","src":"22984:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22993:1:81","nodeType":"YulLiteral","src":"22993:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"22996:1:81","nodeType":"YulLiteral","src":"22996:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22986:6:81","nodeType":"YulIdentifier","src":"22986:6:81"},"nativeSrc":"22986:12:81","nodeType":"YulFunctionCall","src":"22986:12:81"},"nativeSrc":"22986:12:81","nodeType":"YulExpressionStatement","src":"22986:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"22918:18:81","nodeType":"YulIdentifier","src":"22918:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"22946:12:81","nodeType":"YulIdentifier","src":"22946:12:81"},"nativeSrc":"22946:14:81","nodeType":"YulFunctionCall","src":"22946:14:81"},{"name":"base_ref","nativeSrc":"22962:8:81","nodeType":"YulIdentifier","src":"22962:8:81"}],"functionName":{"name":"sub","nativeSrc":"22942:3:81","nodeType":"YulIdentifier","src":"22942:3:81"},"nativeSrc":"22942:29:81","nodeType":"YulFunctionCall","src":"22942:29:81"},{"arguments":[{"kind":"number","nativeSrc":"22977:2:81","nodeType":"YulLiteral","src":"22977:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"22973:3:81","nodeType":"YulIdentifier","src":"22973:3:81"},"nativeSrc":"22973:7:81","nodeType":"YulFunctionCall","src":"22973:7:81"}],"functionName":{"name":"add","nativeSrc":"22938:3:81","nodeType":"YulIdentifier","src":"22938:3:81"},"nativeSrc":"22938:43:81","nodeType":"YulFunctionCall","src":"22938:43:81"}],"functionName":{"name":"slt","nativeSrc":"22914:3:81","nodeType":"YulIdentifier","src":"22914:3:81"},"nativeSrc":"22914:68:81","nodeType":"YulFunctionCall","src":"22914:68:81"}],"functionName":{"name":"iszero","nativeSrc":"22907:6:81","nodeType":"YulIdentifier","src":"22907:6:81"},"nativeSrc":"22907:76:81","nodeType":"YulFunctionCall","src":"22907:76:81"},"nativeSrc":"22904:96:81","nodeType":"YulIf","src":"22904:96:81"},{"nativeSrc":"23009:47:81","nodeType":"YulVariableDeclaration","src":"23009:47:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"23027:8:81","nodeType":"YulIdentifier","src":"23027:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"23037:18:81","nodeType":"YulIdentifier","src":"23037:18:81"}],"functionName":{"name":"add","nativeSrc":"23023:3:81","nodeType":"YulIdentifier","src":"23023:3:81"},"nativeSrc":"23023:33:81","nodeType":"YulFunctionCall","src":"23023:33:81"},"variables":[{"name":"addr_1","nativeSrc":"23013:6:81","nodeType":"YulTypedName","src":"23013:6:81","type":""}]},{"nativeSrc":"23065:30:81","nodeType":"YulAssignment","src":"23065:30:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"23088:6:81","nodeType":"YulIdentifier","src":"23088:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"23075:12:81","nodeType":"YulIdentifier","src":"23075:12:81"},"nativeSrc":"23075:20:81","nodeType":"YulFunctionCall","src":"23075:20:81"},"variableNames":[{"name":"length","nativeSrc":"23065:6:81","nodeType":"YulIdentifier","src":"23065:6:81"}]},{"body":{"nativeSrc":"23138:16:81","nodeType":"YulBlock","src":"23138:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23147:1:81","nodeType":"YulLiteral","src":"23147:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23150:1:81","nodeType":"YulLiteral","src":"23150:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23140:6:81","nodeType":"YulIdentifier","src":"23140:6:81"},"nativeSrc":"23140:12:81","nodeType":"YulFunctionCall","src":"23140:12:81"},"nativeSrc":"23140:12:81","nodeType":"YulExpressionStatement","src":"23140:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"23110:6:81","nodeType":"YulIdentifier","src":"23110:6:81"},{"kind":"number","nativeSrc":"23118:18:81","nodeType":"YulLiteral","src":"23118:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23107:2:81","nodeType":"YulIdentifier","src":"23107:2:81"},"nativeSrc":"23107:30:81","nodeType":"YulFunctionCall","src":"23107:30:81"},"nativeSrc":"23104:50:81","nodeType":"YulIf","src":"23104:50:81"},{"nativeSrc":"23163:25:81","nodeType":"YulAssignment","src":"23163:25:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"23175:6:81","nodeType":"YulIdentifier","src":"23175:6:81"},{"kind":"number","nativeSrc":"23183:4:81","nodeType":"YulLiteral","src":"23183:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23171:3:81","nodeType":"YulIdentifier","src":"23171:3:81"},"nativeSrc":"23171:17:81","nodeType":"YulFunctionCall","src":"23171:17:81"},"variableNames":[{"name":"addr","nativeSrc":"23163:4:81","nodeType":"YulIdentifier","src":"23163:4:81"}]},{"body":{"nativeSrc":"23239:16:81","nodeType":"YulBlock","src":"23239:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23248:1:81","nodeType":"YulLiteral","src":"23248:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23251:1:81","nodeType":"YulLiteral","src":"23251:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23241:6:81","nodeType":"YulIdentifier","src":"23241:6:81"},"nativeSrc":"23241:12:81","nodeType":"YulFunctionCall","src":"23241:12:81"},"nativeSrc":"23241:12:81","nodeType":"YulExpressionStatement","src":"23241:12:81"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"23204:4:81","nodeType":"YulIdentifier","src":"23204:4:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"23214:12:81","nodeType":"YulIdentifier","src":"23214:12:81"},"nativeSrc":"23214:14:81","nodeType":"YulFunctionCall","src":"23214:14:81"},{"name":"length","nativeSrc":"23230:6:81","nodeType":"YulIdentifier","src":"23230:6:81"}],"functionName":{"name":"sub","nativeSrc":"23210:3:81","nodeType":"YulIdentifier","src":"23210:3:81"},"nativeSrc":"23210:27:81","nodeType":"YulFunctionCall","src":"23210:27:81"}],"functionName":{"name":"sgt","nativeSrc":"23200:3:81","nodeType":"YulIdentifier","src":"23200:3:81"},"nativeSrc":"23200:38:81","nodeType":"YulFunctionCall","src":"23200:38:81"},"nativeSrc":"23197:58:81","nodeType":"YulIf","src":"23197:58:81"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"22740:521:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"22791:8:81","nodeType":"YulTypedName","src":"22791:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"22801:11:81","nodeType":"YulTypedName","src":"22801:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"22817:4:81","nodeType":"YulTypedName","src":"22817:4:81","type":""},{"name":"length","nativeSrc":"22823:6:81","nodeType":"YulTypedName","src":"22823:6:81","type":""}],"src":"22740:521:81"},{"body":{"nativeSrc":"23342:424:81","nodeType":"YulBlock","src":"23342:424:81","statements":[{"nativeSrc":"23352:43:81","nodeType":"YulVariableDeclaration","src":"23352:43:81","value":{"arguments":[{"name":"ptr","nativeSrc":"23391:3:81","nodeType":"YulIdentifier","src":"23391:3:81"}],"functionName":{"name":"calldataload","nativeSrc":"23378:12:81","nodeType":"YulIdentifier","src":"23378:12:81"},"nativeSrc":"23378:17:81","nodeType":"YulFunctionCall","src":"23378:17:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"23356:18:81","nodeType":"YulTypedName","src":"23356:18:81","type":""}]},{"body":{"nativeSrc":"23484:16:81","nodeType":"YulBlock","src":"23484:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23493:1:81","nodeType":"YulLiteral","src":"23493:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23496:1:81","nodeType":"YulLiteral","src":"23496:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23486:6:81","nodeType":"YulIdentifier","src":"23486:6:81"},"nativeSrc":"23486:12:81","nodeType":"YulFunctionCall","src":"23486:12:81"},"nativeSrc":"23486:12:81","nodeType":"YulExpressionStatement","src":"23486:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"23418:18:81","nodeType":"YulIdentifier","src":"23418:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"23446:12:81","nodeType":"YulIdentifier","src":"23446:12:81"},"nativeSrc":"23446:14:81","nodeType":"YulFunctionCall","src":"23446:14:81"},{"name":"base_ref","nativeSrc":"23462:8:81","nodeType":"YulIdentifier","src":"23462:8:81"}],"functionName":{"name":"sub","nativeSrc":"23442:3:81","nodeType":"YulIdentifier","src":"23442:3:81"},"nativeSrc":"23442:29:81","nodeType":"YulFunctionCall","src":"23442:29:81"},{"arguments":[{"kind":"number","nativeSrc":"23477:2:81","nodeType":"YulLiteral","src":"23477:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"23473:3:81","nodeType":"YulIdentifier","src":"23473:3:81"},"nativeSrc":"23473:7:81","nodeType":"YulFunctionCall","src":"23473:7:81"}],"functionName":{"name":"add","nativeSrc":"23438:3:81","nodeType":"YulIdentifier","src":"23438:3:81"},"nativeSrc":"23438:43:81","nodeType":"YulFunctionCall","src":"23438:43:81"}],"functionName":{"name":"slt","nativeSrc":"23414:3:81","nodeType":"YulIdentifier","src":"23414:3:81"},"nativeSrc":"23414:68:81","nodeType":"YulFunctionCall","src":"23414:68:81"}],"functionName":{"name":"iszero","nativeSrc":"23407:6:81","nodeType":"YulIdentifier","src":"23407:6:81"},"nativeSrc":"23407:76:81","nodeType":"YulFunctionCall","src":"23407:76:81"},"nativeSrc":"23404:96:81","nodeType":"YulIf","src":"23404:96:81"},{"nativeSrc":"23509:48:81","nodeType":"YulVariableDeclaration","src":"23509:48:81","value":{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"23528:18:81","nodeType":"YulIdentifier","src":"23528:18:81"},{"name":"base_ref","nativeSrc":"23548:8:81","nodeType":"YulIdentifier","src":"23548:8:81"}],"functionName":{"name":"add","nativeSrc":"23524:3:81","nodeType":"YulIdentifier","src":"23524:3:81"},"nativeSrc":"23524:33:81","nodeType":"YulFunctionCall","src":"23524:33:81"},"variables":[{"name":"value_1","nativeSrc":"23513:7:81","nodeType":"YulTypedName","src":"23513:7:81","type":""}]},{"nativeSrc":"23566:31:81","nodeType":"YulAssignment","src":"23566:31:81","value":{"arguments":[{"name":"value_1","nativeSrc":"23589:7:81","nodeType":"YulIdentifier","src":"23589:7:81"}],"functionName":{"name":"calldataload","nativeSrc":"23576:12:81","nodeType":"YulIdentifier","src":"23576:12:81"},"nativeSrc":"23576:21:81","nodeType":"YulFunctionCall","src":"23576:21:81"},"variableNames":[{"name":"length","nativeSrc":"23566:6:81","nodeType":"YulIdentifier","src":"23566:6:81"}]},{"nativeSrc":"23606:27:81","nodeType":"YulAssignment","src":"23606:27:81","value":{"arguments":[{"name":"value_1","nativeSrc":"23619:7:81","nodeType":"YulIdentifier","src":"23619:7:81"},{"kind":"number","nativeSrc":"23628:4:81","nodeType":"YulLiteral","src":"23628:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23615:3:81","nodeType":"YulIdentifier","src":"23615:3:81"},"nativeSrc":"23615:18:81","nodeType":"YulFunctionCall","src":"23615:18:81"},"variableNames":[{"name":"value","nativeSrc":"23606:5:81","nodeType":"YulIdentifier","src":"23606:5:81"}]},{"body":{"nativeSrc":"23676:16:81","nodeType":"YulBlock","src":"23676:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23685:1:81","nodeType":"YulLiteral","src":"23685:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23688:1:81","nodeType":"YulLiteral","src":"23688:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23678:6:81","nodeType":"YulIdentifier","src":"23678:6:81"},"nativeSrc":"23678:12:81","nodeType":"YulFunctionCall","src":"23678:12:81"},"nativeSrc":"23678:12:81","nodeType":"YulExpressionStatement","src":"23678:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"23648:6:81","nodeType":"YulIdentifier","src":"23648:6:81"},{"kind":"number","nativeSrc":"23656:18:81","nodeType":"YulLiteral","src":"23656:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23645:2:81","nodeType":"YulIdentifier","src":"23645:2:81"},"nativeSrc":"23645:30:81","nodeType":"YulFunctionCall","src":"23645:30:81"},"nativeSrc":"23642:50:81","nodeType":"YulIf","src":"23642:50:81"},{"body":{"nativeSrc":"23744:16:81","nodeType":"YulBlock","src":"23744:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23753:1:81","nodeType":"YulLiteral","src":"23753:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23756:1:81","nodeType":"YulLiteral","src":"23756:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23746:6:81","nodeType":"YulIdentifier","src":"23746:6:81"},"nativeSrc":"23746:12:81","nodeType":"YulFunctionCall","src":"23746:12:81"},"nativeSrc":"23746:12:81","nodeType":"YulExpressionStatement","src":"23746:12:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"23708:5:81","nodeType":"YulIdentifier","src":"23708:5:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"23719:12:81","nodeType":"YulIdentifier","src":"23719:12:81"},"nativeSrc":"23719:14:81","nodeType":"YulFunctionCall","src":"23719:14:81"},{"name":"length","nativeSrc":"23735:6:81","nodeType":"YulIdentifier","src":"23735:6:81"}],"functionName":{"name":"sub","nativeSrc":"23715:3:81","nodeType":"YulIdentifier","src":"23715:3:81"},"nativeSrc":"23715:27:81","nodeType":"YulFunctionCall","src":"23715:27:81"}],"functionName":{"name":"sgt","nativeSrc":"23704:3:81","nodeType":"YulIdentifier","src":"23704:3:81"},"nativeSrc":"23704:39:81","nodeType":"YulFunctionCall","src":"23704:39:81"},"nativeSrc":"23701:59:81","nodeType":"YulIf","src":"23701:59:81"}]},"name":"calldata_access_bytes_calldata","nativeSrc":"23266:500:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"23306:8:81","nodeType":"YulTypedName","src":"23306:8:81","type":""},{"name":"ptr","nativeSrc":"23316:3:81","nodeType":"YulTypedName","src":"23316:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"23324:5:81","nodeType":"YulTypedName","src":"23324:5:81","type":""},{"name":"length","nativeSrc":"23331:6:81","nodeType":"YulTypedName","src":"23331:6:81","type":""}],"src":"23266:500:81"},{"body":{"nativeSrc":"23850:1465:81","nodeType":"YulBlock","src":"23850:1465:81","statements":[{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"23898:5:81","nodeType":"YulIdentifier","src":"23898:5:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"23879:18:81","nodeType":"YulIdentifier","src":"23879:18:81"},"nativeSrc":"23879:25:81","nodeType":"YulFunctionCall","src":"23879:25:81"},{"name":"pos","nativeSrc":"23906:3:81","nodeType":"YulIdentifier","src":"23906:3:81"}],"functionName":{"name":"abi_encode_address","nativeSrc":"23860:18:81","nodeType":"YulIdentifier","src":"23860:18:81"},"nativeSrc":"23860:50:81","nodeType":"YulFunctionCall","src":"23860:50:81"},"nativeSrc":"23860:50:81","nodeType":"YulExpressionStatement","src":"23860:50:81"},{"nativeSrc":"23919:16:81","nodeType":"YulVariableDeclaration","src":"23919:16:81","value":{"kind":"number","nativeSrc":"23934:1:81","nodeType":"YulLiteral","src":"23934:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"23923:7:81","nodeType":"YulTypedName","src":"23923:7:81","type":""}]},{"nativeSrc":"23944:41:81","nodeType":"YulAssignment","src":"23944:41:81","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"23972:5:81","nodeType":"YulIdentifier","src":"23972:5:81"},{"kind":"number","nativeSrc":"23979:4:81","nodeType":"YulLiteral","src":"23979:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23968:3:81","nodeType":"YulIdentifier","src":"23968:3:81"},"nativeSrc":"23968:16:81","nodeType":"YulFunctionCall","src":"23968:16:81"}],"functionName":{"name":"calldataload","nativeSrc":"23955:12:81","nodeType":"YulIdentifier","src":"23955:12:81"},"nativeSrc":"23955:30:81","nodeType":"YulFunctionCall","src":"23955:30:81"},"variableNames":[{"name":"value_1","nativeSrc":"23944:7:81","nodeType":"YulIdentifier","src":"23944:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24005:3:81","nodeType":"YulIdentifier","src":"24005:3:81"},{"kind":"number","nativeSrc":"24010:4:81","nodeType":"YulLiteral","src":"24010:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24001:3:81","nodeType":"YulIdentifier","src":"24001:3:81"},"nativeSrc":"24001:14:81","nodeType":"YulFunctionCall","src":"24001:14:81"},{"name":"value_1","nativeSrc":"24017:7:81","nodeType":"YulIdentifier","src":"24017:7:81"}],"functionName":{"name":"mstore","nativeSrc":"23994:6:81","nodeType":"YulIdentifier","src":"23994:6:81"},"nativeSrc":"23994:31:81","nodeType":"YulFunctionCall","src":"23994:31:81"},"nativeSrc":"23994:31:81","nodeType":"YulExpressionStatement","src":"23994:31:81"},{"nativeSrc":"24034:89:81","nodeType":"YulVariableDeclaration","src":"24034:89:81","value":{"arguments":[{"name":"value","nativeSrc":"24099:5:81","nodeType":"YulIdentifier","src":"24099:5:81"},{"arguments":[{"name":"value","nativeSrc":"24110:5:81","nodeType":"YulIdentifier","src":"24110:5:81"},{"kind":"number","nativeSrc":"24117:4:81","nodeType":"YulLiteral","src":"24117:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"24106:3:81","nodeType":"YulIdentifier","src":"24106:3:81"},"nativeSrc":"24106:16:81","nodeType":"YulFunctionCall","src":"24106:16:81"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"24068:30:81","nodeType":"YulIdentifier","src":"24068:30:81"},"nativeSrc":"24068:55:81","nodeType":"YulFunctionCall","src":"24068:55:81"},"variables":[{"name":"memberValue0","nativeSrc":"24038:12:81","nodeType":"YulTypedName","src":"24038:12:81","type":""},{"name":"memberValue1","nativeSrc":"24052:12:81","nodeType":"YulTypedName","src":"24052:12:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24143:3:81","nodeType":"YulIdentifier","src":"24143:3:81"},{"kind":"number","nativeSrc":"24148:4:81","nodeType":"YulLiteral","src":"24148:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"24139:3:81","nodeType":"YulIdentifier","src":"24139:3:81"},"nativeSrc":"24139:14:81","nodeType":"YulFunctionCall","src":"24139:14:81"},{"kind":"number","nativeSrc":"24155:6:81","nodeType":"YulLiteral","src":"24155:6:81","type":"","value":"0x0120"}],"functionName":{"name":"mstore","nativeSrc":"24132:6:81","nodeType":"YulIdentifier","src":"24132:6:81"},"nativeSrc":"24132:30:81","nodeType":"YulFunctionCall","src":"24132:30:81"},"nativeSrc":"24132:30:81","nodeType":"YulExpressionStatement","src":"24132:30:81"},{"nativeSrc":"24171:83:81","nodeType":"YulVariableDeclaration","src":"24171:83:81","value":{"arguments":[{"name":"memberValue0","nativeSrc":"24209:12:81","nodeType":"YulIdentifier","src":"24209:12:81"},{"name":"memberValue1","nativeSrc":"24223:12:81","nodeType":"YulIdentifier","src":"24223:12:81"},{"arguments":[{"name":"pos","nativeSrc":"24241:3:81","nodeType":"YulIdentifier","src":"24241:3:81"},{"kind":"number","nativeSrc":"24246:6:81","nodeType":"YulLiteral","src":"24246:6:81","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"24237:3:81","nodeType":"YulIdentifier","src":"24237:3:81"},"nativeSrc":"24237:16:81","nodeType":"YulFunctionCall","src":"24237:16:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"24183:25:81","nodeType":"YulIdentifier","src":"24183:25:81"},"nativeSrc":"24183:71:81","nodeType":"YulFunctionCall","src":"24183:71:81"},"variables":[{"name":"tail","nativeSrc":"24175:4:81","nodeType":"YulTypedName","src":"24175:4:81","type":""}]},{"nativeSrc":"24263:93:81","nodeType":"YulVariableDeclaration","src":"24263:93:81","value":{"arguments":[{"name":"value","nativeSrc":"24332:5:81","nodeType":"YulIdentifier","src":"24332:5:81"},{"arguments":[{"name":"value","nativeSrc":"24343:5:81","nodeType":"YulIdentifier","src":"24343:5:81"},{"kind":"number","nativeSrc":"24350:4:81","nodeType":"YulLiteral","src":"24350:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"24339:3:81","nodeType":"YulIdentifier","src":"24339:3:81"},"nativeSrc":"24339:16:81","nodeType":"YulFunctionCall","src":"24339:16:81"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"24301:30:81","nodeType":"YulIdentifier","src":"24301:30:81"},"nativeSrc":"24301:55:81","nodeType":"YulFunctionCall","src":"24301:55:81"},"variables":[{"name":"memberValue0_1","nativeSrc":"24267:14:81","nodeType":"YulTypedName","src":"24267:14:81","type":""},{"name":"memberValue1_1","nativeSrc":"24283:14:81","nodeType":"YulTypedName","src":"24283:14:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24376:3:81","nodeType":"YulIdentifier","src":"24376:3:81"},{"kind":"number","nativeSrc":"24381:4:81","nodeType":"YulLiteral","src":"24381:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"24372:3:81","nodeType":"YulIdentifier","src":"24372:3:81"},"nativeSrc":"24372:14:81","nodeType":"YulFunctionCall","src":"24372:14:81"},{"arguments":[{"name":"tail","nativeSrc":"24392:4:81","nodeType":"YulIdentifier","src":"24392:4:81"},{"name":"pos","nativeSrc":"24398:3:81","nodeType":"YulIdentifier","src":"24398:3:81"}],"functionName":{"name":"sub","nativeSrc":"24388:3:81","nodeType":"YulIdentifier","src":"24388:3:81"},"nativeSrc":"24388:14:81","nodeType":"YulFunctionCall","src":"24388:14:81"}],"functionName":{"name":"mstore","nativeSrc":"24365:6:81","nodeType":"YulIdentifier","src":"24365:6:81"},"nativeSrc":"24365:38:81","nodeType":"YulFunctionCall","src":"24365:38:81"},"nativeSrc":"24365:38:81","nodeType":"YulExpressionStatement","src":"24365:38:81"},{"nativeSrc":"24412:77:81","nodeType":"YulVariableDeclaration","src":"24412:77:81","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"24452:14:81","nodeType":"YulIdentifier","src":"24452:14:81"},{"name":"memberValue1_1","nativeSrc":"24468:14:81","nodeType":"YulIdentifier","src":"24468:14:81"},{"name":"tail","nativeSrc":"24484:4:81","nodeType":"YulIdentifier","src":"24484:4:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"24426:25:81","nodeType":"YulIdentifier","src":"24426:25:81"},"nativeSrc":"24426:63:81","nodeType":"YulFunctionCall","src":"24426:63:81"},"variables":[{"name":"tail_1","nativeSrc":"24416:6:81","nodeType":"YulTypedName","src":"24416:6:81","type":""}]},{"nativeSrc":"24498:16:81","nodeType":"YulVariableDeclaration","src":"24498:16:81","value":{"kind":"number","nativeSrc":"24513:1:81","nodeType":"YulLiteral","src":"24513:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"24502:7:81","nodeType":"YulTypedName","src":"24502:7:81","type":""}]},{"nativeSrc":"24523:41:81","nodeType":"YulAssignment","src":"24523:41:81","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24551:5:81","nodeType":"YulIdentifier","src":"24551:5:81"},{"kind":"number","nativeSrc":"24558:4:81","nodeType":"YulLiteral","src":"24558:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"24547:3:81","nodeType":"YulIdentifier","src":"24547:3:81"},"nativeSrc":"24547:16:81","nodeType":"YulFunctionCall","src":"24547:16:81"}],"functionName":{"name":"calldataload","nativeSrc":"24534:12:81","nodeType":"YulIdentifier","src":"24534:12:81"},"nativeSrc":"24534:30:81","nodeType":"YulFunctionCall","src":"24534:30:81"},"variableNames":[{"name":"value_2","nativeSrc":"24523:7:81","nodeType":"YulIdentifier","src":"24523:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24584:3:81","nodeType":"YulIdentifier","src":"24584:3:81"},{"kind":"number","nativeSrc":"24589:4:81","nodeType":"YulLiteral","src":"24589:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"24580:3:81","nodeType":"YulIdentifier","src":"24580:3:81"},"nativeSrc":"24580:14:81","nodeType":"YulFunctionCall","src":"24580:14:81"},{"name":"value_2","nativeSrc":"24596:7:81","nodeType":"YulIdentifier","src":"24596:7:81"}],"functionName":{"name":"mstore","nativeSrc":"24573:6:81","nodeType":"YulIdentifier","src":"24573:6:81"},"nativeSrc":"24573:31:81","nodeType":"YulFunctionCall","src":"24573:31:81"},"nativeSrc":"24573:31:81","nodeType":"YulExpressionStatement","src":"24573:31:81"},{"nativeSrc":"24613:16:81","nodeType":"YulVariableDeclaration","src":"24613:16:81","value":{"kind":"number","nativeSrc":"24628:1:81","nodeType":"YulLiteral","src":"24628:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"24617:7:81","nodeType":"YulTypedName","src":"24617:7:81","type":""}]},{"nativeSrc":"24638:41:81","nodeType":"YulAssignment","src":"24638:41:81","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24666:5:81","nodeType":"YulIdentifier","src":"24666:5:81"},{"kind":"number","nativeSrc":"24673:4:81","nodeType":"YulLiteral","src":"24673:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"24662:3:81","nodeType":"YulIdentifier","src":"24662:3:81"},"nativeSrc":"24662:16:81","nodeType":"YulFunctionCall","src":"24662:16:81"}],"functionName":{"name":"calldataload","nativeSrc":"24649:12:81","nodeType":"YulIdentifier","src":"24649:12:81"},"nativeSrc":"24649:30:81","nodeType":"YulFunctionCall","src":"24649:30:81"},"variableNames":[{"name":"value_3","nativeSrc":"24638:7:81","nodeType":"YulIdentifier","src":"24638:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24699:3:81","nodeType":"YulIdentifier","src":"24699:3:81"},{"kind":"number","nativeSrc":"24704:4:81","nodeType":"YulLiteral","src":"24704:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"24695:3:81","nodeType":"YulIdentifier","src":"24695:3:81"},"nativeSrc":"24695:14:81","nodeType":"YulFunctionCall","src":"24695:14:81"},{"name":"value_3","nativeSrc":"24711:7:81","nodeType":"YulIdentifier","src":"24711:7:81"}],"functionName":{"name":"mstore","nativeSrc":"24688:6:81","nodeType":"YulIdentifier","src":"24688:6:81"},"nativeSrc":"24688:31:81","nodeType":"YulFunctionCall","src":"24688:31:81"},"nativeSrc":"24688:31:81","nodeType":"YulExpressionStatement","src":"24688:31:81"},{"nativeSrc":"24728:16:81","nodeType":"YulVariableDeclaration","src":"24728:16:81","value":{"kind":"number","nativeSrc":"24743:1:81","nodeType":"YulLiteral","src":"24743:1:81","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"24732:7:81","nodeType":"YulTypedName","src":"24732:7:81","type":""}]},{"nativeSrc":"24753:41:81","nodeType":"YulAssignment","src":"24753:41:81","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24781:5:81","nodeType":"YulIdentifier","src":"24781:5:81"},{"kind":"number","nativeSrc":"24788:4:81","nodeType":"YulLiteral","src":"24788:4:81","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"24777:3:81","nodeType":"YulIdentifier","src":"24777:3:81"},"nativeSrc":"24777:16:81","nodeType":"YulFunctionCall","src":"24777:16:81"}],"functionName":{"name":"calldataload","nativeSrc":"24764:12:81","nodeType":"YulIdentifier","src":"24764:12:81"},"nativeSrc":"24764:30:81","nodeType":"YulFunctionCall","src":"24764:30:81"},"variableNames":[{"name":"value_4","nativeSrc":"24753:7:81","nodeType":"YulIdentifier","src":"24753:7:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24814:3:81","nodeType":"YulIdentifier","src":"24814:3:81"},{"kind":"number","nativeSrc":"24819:4:81","nodeType":"YulLiteral","src":"24819:4:81","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"24810:3:81","nodeType":"YulIdentifier","src":"24810:3:81"},"nativeSrc":"24810:14:81","nodeType":"YulFunctionCall","src":"24810:14:81"},{"name":"value_4","nativeSrc":"24826:7:81","nodeType":"YulIdentifier","src":"24826:7:81"}],"functionName":{"name":"mstore","nativeSrc":"24803:6:81","nodeType":"YulIdentifier","src":"24803:6:81"},"nativeSrc":"24803:31:81","nodeType":"YulFunctionCall","src":"24803:31:81"},"nativeSrc":"24803:31:81","nodeType":"YulExpressionStatement","src":"24803:31:81"},{"nativeSrc":"24843:93:81","nodeType":"YulVariableDeclaration","src":"24843:93:81","value":{"arguments":[{"name":"value","nativeSrc":"24912:5:81","nodeType":"YulIdentifier","src":"24912:5:81"},{"arguments":[{"name":"value","nativeSrc":"24923:5:81","nodeType":"YulIdentifier","src":"24923:5:81"},{"kind":"number","nativeSrc":"24930:4:81","nodeType":"YulLiteral","src":"24930:4:81","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"24919:3:81","nodeType":"YulIdentifier","src":"24919:3:81"},"nativeSrc":"24919:16:81","nodeType":"YulFunctionCall","src":"24919:16:81"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"24881:30:81","nodeType":"YulIdentifier","src":"24881:30:81"},"nativeSrc":"24881:55:81","nodeType":"YulFunctionCall","src":"24881:55:81"},"variables":[{"name":"memberValue0_2","nativeSrc":"24847:14:81","nodeType":"YulTypedName","src":"24847:14:81","type":""},{"name":"memberValue1_2","nativeSrc":"24863:14:81","nodeType":"YulTypedName","src":"24863:14:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24956:3:81","nodeType":"YulIdentifier","src":"24956:3:81"},{"kind":"number","nativeSrc":"24961:4:81","nodeType":"YulLiteral","src":"24961:4:81","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"24952:3:81","nodeType":"YulIdentifier","src":"24952:3:81"},"nativeSrc":"24952:14:81","nodeType":"YulFunctionCall","src":"24952:14:81"},{"arguments":[{"name":"tail_1","nativeSrc":"24972:6:81","nodeType":"YulIdentifier","src":"24972:6:81"},{"name":"pos","nativeSrc":"24980:3:81","nodeType":"YulIdentifier","src":"24980:3:81"}],"functionName":{"name":"sub","nativeSrc":"24968:3:81","nodeType":"YulIdentifier","src":"24968:3:81"},"nativeSrc":"24968:16:81","nodeType":"YulFunctionCall","src":"24968:16:81"}],"functionName":{"name":"mstore","nativeSrc":"24945:6:81","nodeType":"YulIdentifier","src":"24945:6:81"},"nativeSrc":"24945:40:81","nodeType":"YulFunctionCall","src":"24945:40:81"},"nativeSrc":"24945:40:81","nodeType":"YulExpressionStatement","src":"24945:40:81"},{"nativeSrc":"24994:79:81","nodeType":"YulVariableDeclaration","src":"24994:79:81","value":{"arguments":[{"name":"memberValue0_2","nativeSrc":"25034:14:81","nodeType":"YulIdentifier","src":"25034:14:81"},{"name":"memberValue1_2","nativeSrc":"25050:14:81","nodeType":"YulIdentifier","src":"25050:14:81"},{"name":"tail_1","nativeSrc":"25066:6:81","nodeType":"YulIdentifier","src":"25066:6:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"25008:25:81","nodeType":"YulIdentifier","src":"25008:25:81"},"nativeSrc":"25008:65:81","nodeType":"YulFunctionCall","src":"25008:65:81"},"variables":[{"name":"tail_2","nativeSrc":"24998:6:81","nodeType":"YulTypedName","src":"24998:6:81","type":""}]},{"nativeSrc":"25082:95:81","nodeType":"YulVariableDeclaration","src":"25082:95:81","value":{"arguments":[{"name":"value","nativeSrc":"25151:5:81","nodeType":"YulIdentifier","src":"25151:5:81"},{"arguments":[{"name":"value","nativeSrc":"25162:5:81","nodeType":"YulIdentifier","src":"25162:5:81"},{"kind":"number","nativeSrc":"25169:6:81","nodeType":"YulLiteral","src":"25169:6:81","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"25158:3:81","nodeType":"YulIdentifier","src":"25158:3:81"},"nativeSrc":"25158:18:81","nodeType":"YulFunctionCall","src":"25158:18:81"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"25120:30:81","nodeType":"YulIdentifier","src":"25120:30:81"},"nativeSrc":"25120:57:81","nodeType":"YulFunctionCall","src":"25120:57:81"},"variables":[{"name":"memberValue0_3","nativeSrc":"25086:14:81","nodeType":"YulTypedName","src":"25086:14:81","type":""},{"name":"memberValue1_3","nativeSrc":"25102:14:81","nodeType":"YulTypedName","src":"25102:14:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"25197:3:81","nodeType":"YulIdentifier","src":"25197:3:81"},{"kind":"number","nativeSrc":"25202:6:81","nodeType":"YulLiteral","src":"25202:6:81","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"25193:3:81","nodeType":"YulIdentifier","src":"25193:3:81"},"nativeSrc":"25193:16:81","nodeType":"YulFunctionCall","src":"25193:16:81"},{"arguments":[{"name":"tail_2","nativeSrc":"25215:6:81","nodeType":"YulIdentifier","src":"25215:6:81"},{"name":"pos","nativeSrc":"25223:3:81","nodeType":"YulIdentifier","src":"25223:3:81"}],"functionName":{"name":"sub","nativeSrc":"25211:3:81","nodeType":"YulIdentifier","src":"25211:3:81"},"nativeSrc":"25211:16:81","nodeType":"YulFunctionCall","src":"25211:16:81"}],"functionName":{"name":"mstore","nativeSrc":"25186:6:81","nodeType":"YulIdentifier","src":"25186:6:81"},"nativeSrc":"25186:42:81","nodeType":"YulFunctionCall","src":"25186:42:81"},"nativeSrc":"25186:42:81","nodeType":"YulExpressionStatement","src":"25186:42:81"},{"nativeSrc":"25237:72:81","nodeType":"YulAssignment","src":"25237:72:81","value":{"arguments":[{"name":"memberValue0_3","nativeSrc":"25270:14:81","nodeType":"YulIdentifier","src":"25270:14:81"},{"name":"memberValue1_3","nativeSrc":"25286:14:81","nodeType":"YulIdentifier","src":"25286:14:81"},{"name":"tail_2","nativeSrc":"25302:6:81","nodeType":"YulIdentifier","src":"25302:6:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"25244:25:81","nodeType":"YulIdentifier","src":"25244:25:81"},"nativeSrc":"25244:65:81","nodeType":"YulFunctionCall","src":"25244:65:81"},"variableNames":[{"name":"end","nativeSrc":"25237:3:81","nodeType":"YulIdentifier","src":"25237:3:81"}]}]},"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"23771:1544:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"23827:5:81","nodeType":"YulTypedName","src":"23827:5:81","type":""},{"name":"pos","nativeSrc":"23834:3:81","nodeType":"YulTypedName","src":"23834:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"23842:3:81","nodeType":"YulTypedName","src":"23842:3:81","type":""}],"src":"23771:1544:81"},{"body":{"nativeSrc":"25613:909:81","nodeType":"YulBlock","src":"25613:909:81","statements":[{"nativeSrc":"25623:32:81","nodeType":"YulVariableDeclaration","src":"25623:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"25641:9:81","nodeType":"YulIdentifier","src":"25641:9:81"},{"kind":"number","nativeSrc":"25652:2:81","nodeType":"YulLiteral","src":"25652:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25637:3:81","nodeType":"YulIdentifier","src":"25637:3:81"},"nativeSrc":"25637:18:81","nodeType":"YulFunctionCall","src":"25637:18:81"},"variables":[{"name":"tail_1","nativeSrc":"25627:6:81","nodeType":"YulTypedName","src":"25627:6:81","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25671:9:81","nodeType":"YulIdentifier","src":"25671:9:81"},{"kind":"number","nativeSrc":"25682:2:81","nodeType":"YulLiteral","src":"25682:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"25664:6:81","nodeType":"YulIdentifier","src":"25664:6:81"},"nativeSrc":"25664:21:81","nodeType":"YulFunctionCall","src":"25664:21:81"},"nativeSrc":"25664:21:81","nodeType":"YulExpressionStatement","src":"25664:21:81"},{"nativeSrc":"25694:17:81","nodeType":"YulVariableDeclaration","src":"25694:17:81","value":{"name":"tail_1","nativeSrc":"25705:6:81","nodeType":"YulIdentifier","src":"25705:6:81"},"variables":[{"name":"pos","nativeSrc":"25698:3:81","nodeType":"YulTypedName","src":"25698:3:81","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"25727:6:81","nodeType":"YulIdentifier","src":"25727:6:81"},{"name":"value1","nativeSrc":"25735:6:81","nodeType":"YulIdentifier","src":"25735:6:81"}],"functionName":{"name":"mstore","nativeSrc":"25720:6:81","nodeType":"YulIdentifier","src":"25720:6:81"},"nativeSrc":"25720:22:81","nodeType":"YulFunctionCall","src":"25720:22:81"},"nativeSrc":"25720:22:81","nodeType":"YulExpressionStatement","src":"25720:22:81"},{"nativeSrc":"25751:25:81","nodeType":"YulAssignment","src":"25751:25:81","value":{"arguments":[{"name":"headStart","nativeSrc":"25762:9:81","nodeType":"YulIdentifier","src":"25762:9:81"},{"kind":"number","nativeSrc":"25773:2:81","nodeType":"YulLiteral","src":"25773:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25758:3:81","nodeType":"YulIdentifier","src":"25758:3:81"},"nativeSrc":"25758:18:81","nodeType":"YulFunctionCall","src":"25758:18:81"},"variableNames":[{"name":"pos","nativeSrc":"25751:3:81","nodeType":"YulIdentifier","src":"25751:3:81"}]},{"nativeSrc":"25785:53:81","nodeType":"YulVariableDeclaration","src":"25785:53:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25807:9:81","nodeType":"YulIdentifier","src":"25807:9:81"},{"arguments":[{"kind":"number","nativeSrc":"25822:1:81","nodeType":"YulLiteral","src":"25822:1:81","type":"","value":"5"},{"name":"value1","nativeSrc":"25825:6:81","nodeType":"YulIdentifier","src":"25825:6:81"}],"functionName":{"name":"shl","nativeSrc":"25818:3:81","nodeType":"YulIdentifier","src":"25818:3:81"},"nativeSrc":"25818:14:81","nodeType":"YulFunctionCall","src":"25818:14:81"}],"functionName":{"name":"add","nativeSrc":"25803:3:81","nodeType":"YulIdentifier","src":"25803:3:81"},"nativeSrc":"25803:30:81","nodeType":"YulFunctionCall","src":"25803:30:81"},{"kind":"number","nativeSrc":"25835:2:81","nodeType":"YulLiteral","src":"25835:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25799:3:81","nodeType":"YulIdentifier","src":"25799:3:81"},"nativeSrc":"25799:39:81","nodeType":"YulFunctionCall","src":"25799:39:81"},"variables":[{"name":"tail_2","nativeSrc":"25789:6:81","nodeType":"YulTypedName","src":"25789:6:81","type":""}]},{"nativeSrc":"25847:20:81","nodeType":"YulVariableDeclaration","src":"25847:20:81","value":{"name":"value0","nativeSrc":"25861:6:81","nodeType":"YulIdentifier","src":"25861:6:81"},"variables":[{"name":"srcPtr","nativeSrc":"25851:6:81","nodeType":"YulTypedName","src":"25851:6:81","type":""}]},{"nativeSrc":"25876:10:81","nodeType":"YulVariableDeclaration","src":"25876:10:81","value":{"kind":"number","nativeSrc":"25885:1:81","nodeType":"YulLiteral","src":"25885:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"25880:1:81","nodeType":"YulTypedName","src":"25880:1:81","type":""}]},{"nativeSrc":"25895:52:81","nodeType":"YulVariableDeclaration","src":"25895:52:81","value":{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"25913:12:81","nodeType":"YulIdentifier","src":"25913:12:81"},"nativeSrc":"25913:14:81","nodeType":"YulFunctionCall","src":"25913:14:81"},{"name":"value0","nativeSrc":"25929:6:81","nodeType":"YulIdentifier","src":"25929:6:81"}],"functionName":{"name":"sub","nativeSrc":"25909:3:81","nodeType":"YulIdentifier","src":"25909:3:81"},"nativeSrc":"25909:27:81","nodeType":"YulFunctionCall","src":"25909:27:81"},{"arguments":[{"kind":"number","nativeSrc":"25942:3:81","nodeType":"YulLiteral","src":"25942:3:81","type":"","value":"286"}],"functionName":{"name":"not","nativeSrc":"25938:3:81","nodeType":"YulIdentifier","src":"25938:3:81"},"nativeSrc":"25938:8:81","nodeType":"YulFunctionCall","src":"25938:8:81"}],"functionName":{"name":"add","nativeSrc":"25905:3:81","nodeType":"YulIdentifier","src":"25905:3:81"},"nativeSrc":"25905:42:81","nodeType":"YulFunctionCall","src":"25905:42:81"},"variables":[{"name":"_1","nativeSrc":"25899:2:81","nodeType":"YulTypedName","src":"25899:2:81","type":""}]},{"body":{"nativeSrc":"26005:384:81","nodeType":"YulBlock","src":"26005:384:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"26026:3:81","nodeType":"YulIdentifier","src":"26026:3:81"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"26039:6:81","nodeType":"YulIdentifier","src":"26039:6:81"},{"name":"headStart","nativeSrc":"26047:9:81","nodeType":"YulIdentifier","src":"26047:9:81"}],"functionName":{"name":"sub","nativeSrc":"26035:3:81","nodeType":"YulIdentifier","src":"26035:3:81"},"nativeSrc":"26035:22:81","nodeType":"YulFunctionCall","src":"26035:22:81"},{"arguments":[{"kind":"number","nativeSrc":"26063:2:81","nodeType":"YulLiteral","src":"26063:2:81","type":"","value":"95"}],"functionName":{"name":"not","nativeSrc":"26059:3:81","nodeType":"YulIdentifier","src":"26059:3:81"},"nativeSrc":"26059:7:81","nodeType":"YulFunctionCall","src":"26059:7:81"}],"functionName":{"name":"add","nativeSrc":"26031:3:81","nodeType":"YulIdentifier","src":"26031:3:81"},"nativeSrc":"26031:36:81","nodeType":"YulFunctionCall","src":"26031:36:81"}],"functionName":{"name":"mstore","nativeSrc":"26019:6:81","nodeType":"YulIdentifier","src":"26019:6:81"},"nativeSrc":"26019:49:81","nodeType":"YulFunctionCall","src":"26019:49:81"},"nativeSrc":"26019:49:81","nodeType":"YulExpressionStatement","src":"26019:49:81"},{"nativeSrc":"26081:46:81","nodeType":"YulVariableDeclaration","src":"26081:46:81","value":{"arguments":[{"name":"srcPtr","nativeSrc":"26120:6:81","nodeType":"YulIdentifier","src":"26120:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"26107:12:81","nodeType":"YulIdentifier","src":"26107:12:81"},"nativeSrc":"26107:20:81","nodeType":"YulFunctionCall","src":"26107:20:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"26085:18:81","nodeType":"YulTypedName","src":"26085:18:81","type":""}]},{"body":{"nativeSrc":"26179:16:81","nodeType":"YulBlock","src":"26179:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26188:1:81","nodeType":"YulLiteral","src":"26188:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"26191:1:81","nodeType":"YulLiteral","src":"26191:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26181:6:81","nodeType":"YulIdentifier","src":"26181:6:81"},"nativeSrc":"26181:12:81","nodeType":"YulFunctionCall","src":"26181:12:81"},"nativeSrc":"26181:12:81","nodeType":"YulExpressionStatement","src":"26181:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"26154:18:81","nodeType":"YulIdentifier","src":"26154:18:81"},{"name":"_1","nativeSrc":"26174:2:81","nodeType":"YulIdentifier","src":"26174:2:81"}],"functionName":{"name":"slt","nativeSrc":"26150:3:81","nodeType":"YulIdentifier","src":"26150:3:81"},"nativeSrc":"26150:27:81","nodeType":"YulFunctionCall","src":"26150:27:81"}],"functionName":{"name":"iszero","nativeSrc":"26143:6:81","nodeType":"YulIdentifier","src":"26143:6:81"},"nativeSrc":"26143:35:81","nodeType":"YulFunctionCall","src":"26143:35:81"},"nativeSrc":"26140:55:81","nodeType":"YulIf","src":"26140:55:81"},{"nativeSrc":"26208:97:81","nodeType":"YulAssignment","src":"26208:97:81","value":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"26269:18:81","nodeType":"YulIdentifier","src":"26269:18:81"},{"name":"value0","nativeSrc":"26289:6:81","nodeType":"YulIdentifier","src":"26289:6:81"}],"functionName":{"name":"add","nativeSrc":"26265:3:81","nodeType":"YulIdentifier","src":"26265:3:81"},"nativeSrc":"26265:31:81","nodeType":"YulFunctionCall","src":"26265:31:81"},{"name":"tail_2","nativeSrc":"26298:6:81","nodeType":"YulIdentifier","src":"26298:6:81"}],"functionName":{"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"26218:46:81","nodeType":"YulIdentifier","src":"26218:46:81"},"nativeSrc":"26218:87:81","nodeType":"YulFunctionCall","src":"26218:87:81"},"variableNames":[{"name":"tail_2","nativeSrc":"26208:6:81","nodeType":"YulIdentifier","src":"26208:6:81"}]},{"nativeSrc":"26318:27:81","nodeType":"YulAssignment","src":"26318:27:81","value":{"arguments":[{"name":"srcPtr","nativeSrc":"26332:6:81","nodeType":"YulIdentifier","src":"26332:6:81"},{"kind":"number","nativeSrc":"26340:4:81","nodeType":"YulLiteral","src":"26340:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26328:3:81","nodeType":"YulIdentifier","src":"26328:3:81"},"nativeSrc":"26328:17:81","nodeType":"YulFunctionCall","src":"26328:17:81"},"variableNames":[{"name":"srcPtr","nativeSrc":"26318:6:81","nodeType":"YulIdentifier","src":"26318:6:81"}]},{"nativeSrc":"26358:21:81","nodeType":"YulAssignment","src":"26358:21:81","value":{"arguments":[{"name":"pos","nativeSrc":"26369:3:81","nodeType":"YulIdentifier","src":"26369:3:81"},{"kind":"number","nativeSrc":"26374:4:81","nodeType":"YulLiteral","src":"26374:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26365:3:81","nodeType":"YulIdentifier","src":"26365:3:81"},"nativeSrc":"26365:14:81","nodeType":"YulFunctionCall","src":"26365:14:81"},"variableNames":[{"name":"pos","nativeSrc":"26358:3:81","nodeType":"YulIdentifier","src":"26358:3:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"25967:1:81","nodeType":"YulIdentifier","src":"25967:1:81"},{"name":"value1","nativeSrc":"25970:6:81","nodeType":"YulIdentifier","src":"25970:6:81"}],"functionName":{"name":"lt","nativeSrc":"25964:2:81","nodeType":"YulIdentifier","src":"25964:2:81"},"nativeSrc":"25964:13:81","nodeType":"YulFunctionCall","src":"25964:13:81"},"nativeSrc":"25956:433:81","nodeType":"YulForLoop","post":{"nativeSrc":"25978:18:81","nodeType":"YulBlock","src":"25978:18:81","statements":[{"nativeSrc":"25980:14:81","nodeType":"YulAssignment","src":"25980:14:81","value":{"arguments":[{"name":"i","nativeSrc":"25989:1:81","nodeType":"YulIdentifier","src":"25989:1:81"},{"kind":"number","nativeSrc":"25992:1:81","nodeType":"YulLiteral","src":"25992:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"25985:3:81","nodeType":"YulIdentifier","src":"25985:3:81"},"nativeSrc":"25985:9:81","nodeType":"YulFunctionCall","src":"25985:9:81"},"variableNames":[{"name":"i","nativeSrc":"25980:1:81","nodeType":"YulIdentifier","src":"25980:1:81"}]}]},"pre":{"nativeSrc":"25960:3:81","nodeType":"YulBlock","src":"25960:3:81","statements":[]},"src":"25956:433:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26409:9:81","nodeType":"YulIdentifier","src":"26409:9:81"},{"kind":"number","nativeSrc":"26420:4:81","nodeType":"YulLiteral","src":"26420:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26405:3:81","nodeType":"YulIdentifier","src":"26405:3:81"},"nativeSrc":"26405:20:81","nodeType":"YulFunctionCall","src":"26405:20:81"},{"arguments":[{"name":"tail_2","nativeSrc":"26431:6:81","nodeType":"YulIdentifier","src":"26431:6:81"},{"name":"headStart","nativeSrc":"26439:9:81","nodeType":"YulIdentifier","src":"26439:9:81"}],"functionName":{"name":"sub","nativeSrc":"26427:3:81","nodeType":"YulIdentifier","src":"26427:3:81"},"nativeSrc":"26427:22:81","nodeType":"YulFunctionCall","src":"26427:22:81"}],"functionName":{"name":"mstore","nativeSrc":"26398:6:81","nodeType":"YulIdentifier","src":"26398:6:81"},"nativeSrc":"26398:52:81","nodeType":"YulFunctionCall","src":"26398:52:81"},"nativeSrc":"26398:52:81","nodeType":"YulExpressionStatement","src":"26398:52:81"},{"nativeSrc":"26459:57:81","nodeType":"YulAssignment","src":"26459:57:81","value":{"arguments":[{"name":"value2","nativeSrc":"26493:6:81","nodeType":"YulIdentifier","src":"26493:6:81"},{"name":"value3","nativeSrc":"26501:6:81","nodeType":"YulIdentifier","src":"26501:6:81"},{"name":"tail_2","nativeSrc":"26509:6:81","nodeType":"YulIdentifier","src":"26509:6:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"26467:25:81","nodeType":"YulIdentifier","src":"26467:25:81"},"nativeSrc":"26467:49:81","nodeType":"YulFunctionCall","src":"26467:49:81"},"variableNames":[{"name":"tail","nativeSrc":"26459:4:81","nodeType":"YulIdentifier","src":"26459:4:81"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"25320:1202:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25558:9:81","nodeType":"YulTypedName","src":"25558:9:81","type":""},{"name":"value3","nativeSrc":"25569:6:81","nodeType":"YulTypedName","src":"25569:6:81","type":""},{"name":"value2","nativeSrc":"25577:6:81","nodeType":"YulTypedName","src":"25577:6:81","type":""},{"name":"value1","nativeSrc":"25585:6:81","nodeType":"YulTypedName","src":"25585:6:81","type":""},{"name":"value0","nativeSrc":"25593:6:81","nodeType":"YulTypedName","src":"25593:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25604:4:81","nodeType":"YulTypedName","src":"25604:4:81","type":""}],"src":"25320:1202:81"},{"body":{"nativeSrc":"26559:95:81","nodeType":"YulBlock","src":"26559:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26576:1:81","nodeType":"YulLiteral","src":"26576:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"26583:3:81","nodeType":"YulLiteral","src":"26583:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"26588:10:81","nodeType":"YulLiteral","src":"26588:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"26579:3:81","nodeType":"YulIdentifier","src":"26579:3:81"},"nativeSrc":"26579:20:81","nodeType":"YulFunctionCall","src":"26579:20:81"}],"functionName":{"name":"mstore","nativeSrc":"26569:6:81","nodeType":"YulIdentifier","src":"26569:6:81"},"nativeSrc":"26569:31:81","nodeType":"YulFunctionCall","src":"26569:31:81"},"nativeSrc":"26569:31:81","nodeType":"YulExpressionStatement","src":"26569:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26616:1:81","nodeType":"YulLiteral","src":"26616:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"26619:4:81","nodeType":"YulLiteral","src":"26619:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"26609:6:81","nodeType":"YulIdentifier","src":"26609:6:81"},"nativeSrc":"26609:15:81","nodeType":"YulFunctionCall","src":"26609:15:81"},"nativeSrc":"26609:15:81","nodeType":"YulExpressionStatement","src":"26609:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26640:1:81","nodeType":"YulLiteral","src":"26640:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"26643:4:81","nodeType":"YulLiteral","src":"26643:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"26633:6:81","nodeType":"YulIdentifier","src":"26633:6:81"},"nativeSrc":"26633:15:81","nodeType":"YulFunctionCall","src":"26633:15:81"},"nativeSrc":"26633:15:81","nodeType":"YulExpressionStatement","src":"26633:15:81"}]},"name":"panic_error_0x21","nativeSrc":"26527:127:81","nodeType":"YulFunctionDefinition","src":"26527:127:81"},{"body":{"nativeSrc":"26875:382:81","nodeType":"YulBlock","src":"26875:382:81","statements":[{"body":{"nativeSrc":"26918:111:81","nodeType":"YulBlock","src":"26918:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26939:1:81","nodeType":"YulLiteral","src":"26939:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"26946:3:81","nodeType":"YulLiteral","src":"26946:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"26951:10:81","nodeType":"YulLiteral","src":"26951:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"26942:3:81","nodeType":"YulIdentifier","src":"26942:3:81"},"nativeSrc":"26942:20:81","nodeType":"YulFunctionCall","src":"26942:20:81"}],"functionName":{"name":"mstore","nativeSrc":"26932:6:81","nodeType":"YulIdentifier","src":"26932:6:81"},"nativeSrc":"26932:31:81","nodeType":"YulFunctionCall","src":"26932:31:81"},"nativeSrc":"26932:31:81","nodeType":"YulExpressionStatement","src":"26932:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26983:1:81","nodeType":"YulLiteral","src":"26983:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"26986:4:81","nodeType":"YulLiteral","src":"26986:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"26976:6:81","nodeType":"YulIdentifier","src":"26976:6:81"},"nativeSrc":"26976:15:81","nodeType":"YulFunctionCall","src":"26976:15:81"},"nativeSrc":"26976:15:81","nodeType":"YulExpressionStatement","src":"26976:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"27011:1:81","nodeType":"YulLiteral","src":"27011:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"27014:4:81","nodeType":"YulLiteral","src":"27014:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"27004:6:81","nodeType":"YulIdentifier","src":"27004:6:81"},"nativeSrc":"27004:15:81","nodeType":"YulFunctionCall","src":"27004:15:81"},"nativeSrc":"27004:15:81","nodeType":"YulExpressionStatement","src":"27004:15:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26898:6:81","nodeType":"YulIdentifier","src":"26898:6:81"},{"kind":"number","nativeSrc":"26906:1:81","nodeType":"YulLiteral","src":"26906:1:81","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"26895:2:81","nodeType":"YulIdentifier","src":"26895:2:81"},"nativeSrc":"26895:13:81","nodeType":"YulFunctionCall","src":"26895:13:81"}],"functionName":{"name":"iszero","nativeSrc":"26888:6:81","nodeType":"YulIdentifier","src":"26888:6:81"},"nativeSrc":"26888:21:81","nodeType":"YulFunctionCall","src":"26888:21:81"},"nativeSrc":"26885:144:81","nodeType":"YulIf","src":"26885:144:81"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27045:9:81","nodeType":"YulIdentifier","src":"27045:9:81"},{"name":"value0","nativeSrc":"27056:6:81","nodeType":"YulIdentifier","src":"27056:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27038:6:81","nodeType":"YulIdentifier","src":"27038:6:81"},"nativeSrc":"27038:25:81","nodeType":"YulFunctionCall","src":"27038:25:81"},"nativeSrc":"27038:25:81","nodeType":"YulExpressionStatement","src":"27038:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27083:9:81","nodeType":"YulIdentifier","src":"27083:9:81"},{"kind":"number","nativeSrc":"27094:2:81","nodeType":"YulLiteral","src":"27094:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27079:3:81","nodeType":"YulIdentifier","src":"27079:3:81"},"nativeSrc":"27079:18:81","nodeType":"YulFunctionCall","src":"27079:18:81"},{"kind":"number","nativeSrc":"27099:3:81","nodeType":"YulLiteral","src":"27099:3:81","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"27072:6:81","nodeType":"YulIdentifier","src":"27072:6:81"},"nativeSrc":"27072:31:81","nodeType":"YulFunctionCall","src":"27072:31:81"},"nativeSrc":"27072:31:81","nodeType":"YulExpressionStatement","src":"27072:31:81"},{"nativeSrc":"27112:53:81","nodeType":"YulAssignment","src":"27112:53:81","value":{"arguments":[{"name":"value1","nativeSrc":"27137:6:81","nodeType":"YulIdentifier","src":"27137:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"27149:9:81","nodeType":"YulIdentifier","src":"27149:9:81"},{"kind":"number","nativeSrc":"27160:3:81","nodeType":"YulLiteral","src":"27160:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"27145:3:81","nodeType":"YulIdentifier","src":"27145:3:81"},"nativeSrc":"27145:19:81","nodeType":"YulFunctionCall","src":"27145:19:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"27120:16:81","nodeType":"YulIdentifier","src":"27120:16:81"},"nativeSrc":"27120:45:81","nodeType":"YulFunctionCall","src":"27120:45:81"},"variableNames":[{"name":"tail","nativeSrc":"27112:4:81","nodeType":"YulIdentifier","src":"27112:4:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27185:9:81","nodeType":"YulIdentifier","src":"27185:9:81"},{"kind":"number","nativeSrc":"27196:2:81","nodeType":"YulLiteral","src":"27196:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27181:3:81","nodeType":"YulIdentifier","src":"27181:3:81"},"nativeSrc":"27181:18:81","nodeType":"YulFunctionCall","src":"27181:18:81"},{"name":"value2","nativeSrc":"27201:6:81","nodeType":"YulIdentifier","src":"27201:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27174:6:81","nodeType":"YulIdentifier","src":"27174:6:81"},"nativeSrc":"27174:34:81","nodeType":"YulFunctionCall","src":"27174:34:81"},"nativeSrc":"27174:34:81","nodeType":"YulExpressionStatement","src":"27174:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27228:9:81","nodeType":"YulIdentifier","src":"27228:9:81"},{"kind":"number","nativeSrc":"27239:2:81","nodeType":"YulLiteral","src":"27239:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27224:3:81","nodeType":"YulIdentifier","src":"27224:3:81"},"nativeSrc":"27224:18:81","nodeType":"YulFunctionCall","src":"27224:18:81"},{"name":"value3","nativeSrc":"27244:6:81","nodeType":"YulIdentifier","src":"27244:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27217:6:81","nodeType":"YulIdentifier","src":"27217:6:81"},"nativeSrc":"27217:34:81","nodeType":"YulFunctionCall","src":"27217:34:81"},"nativeSrc":"27217:34:81","nodeType":"YulExpressionStatement","src":"27217:34:81"}]},"name":"abi_encode_tuple_t_enum$_PostOpMode_$3593_t_bytes_memory_ptr_t_uint256_t_uint256__to_t_uint8_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"26659:598:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26820:9:81","nodeType":"YulTypedName","src":"26820:9:81","type":""},{"name":"value3","nativeSrc":"26831:6:81","nodeType":"YulTypedName","src":"26831:6:81","type":""},{"name":"value2","nativeSrc":"26839:6:81","nodeType":"YulTypedName","src":"26839:6:81","type":""},{"name":"value1","nativeSrc":"26847:6:81","nodeType":"YulTypedName","src":"26847:6:81","type":""},{"name":"value0","nativeSrc":"26855:6:81","nodeType":"YulTypedName","src":"26855:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26866:4:81","nodeType":"YulTypedName","src":"26866:4:81","type":""}],"src":"26659:598:81"},{"body":{"nativeSrc":"27381:98:81","nodeType":"YulBlock","src":"27381:98:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27398:9:81","nodeType":"YulIdentifier","src":"27398:9:81"},{"kind":"number","nativeSrc":"27409:2:81","nodeType":"YulLiteral","src":"27409:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27391:6:81","nodeType":"YulIdentifier","src":"27391:6:81"},"nativeSrc":"27391:21:81","nodeType":"YulFunctionCall","src":"27391:21:81"},"nativeSrc":"27391:21:81","nodeType":"YulExpressionStatement","src":"27391:21:81"},{"nativeSrc":"27421:52:81","nodeType":"YulAssignment","src":"27421:52:81","value":{"arguments":[{"name":"value0","nativeSrc":"27446:6:81","nodeType":"YulIdentifier","src":"27446:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"27458:9:81","nodeType":"YulIdentifier","src":"27458:9:81"},{"kind":"number","nativeSrc":"27469:2:81","nodeType":"YulLiteral","src":"27469:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27454:3:81","nodeType":"YulIdentifier","src":"27454:3:81"},"nativeSrc":"27454:18:81","nodeType":"YulFunctionCall","src":"27454:18:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"27429:16:81","nodeType":"YulIdentifier","src":"27429:16:81"},"nativeSrc":"27429:44:81","nodeType":"YulFunctionCall","src":"27429:44:81"},"variableNames":[{"name":"tail","nativeSrc":"27421:4:81","nodeType":"YulIdentifier","src":"27421:4:81"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"27262:217:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27350:9:81","nodeType":"YulTypedName","src":"27350:9:81","type":""},{"name":"value0","nativeSrc":"27361:6:81","nodeType":"YulTypedName","src":"27361:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27372:4:81","nodeType":"YulTypedName","src":"27372:4:81","type":""}],"src":"27262:217:81"},{"body":{"nativeSrc":"27658:174:81","nodeType":"YulBlock","src":"27658:174:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27675:9:81","nodeType":"YulIdentifier","src":"27675:9:81"},{"kind":"number","nativeSrc":"27686:2:81","nodeType":"YulLiteral","src":"27686:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27668:6:81","nodeType":"YulIdentifier","src":"27668:6:81"},"nativeSrc":"27668:21:81","nodeType":"YulFunctionCall","src":"27668:21:81"},"nativeSrc":"27668:21:81","nodeType":"YulExpressionStatement","src":"27668:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27709:9:81","nodeType":"YulIdentifier","src":"27709:9:81"},{"kind":"number","nativeSrc":"27720:2:81","nodeType":"YulLiteral","src":"27720:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27705:3:81","nodeType":"YulIdentifier","src":"27705:3:81"},"nativeSrc":"27705:18:81","nodeType":"YulFunctionCall","src":"27705:18:81"},{"kind":"number","nativeSrc":"27725:2:81","nodeType":"YulLiteral","src":"27725:2:81","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"27698:6:81","nodeType":"YulIdentifier","src":"27698:6:81"},"nativeSrc":"27698:30:81","nodeType":"YulFunctionCall","src":"27698:30:81"},"nativeSrc":"27698:30:81","nodeType":"YulExpressionStatement","src":"27698:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27748:9:81","nodeType":"YulIdentifier","src":"27748:9:81"},{"kind":"number","nativeSrc":"27759:2:81","nodeType":"YulLiteral","src":"27759:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27744:3:81","nodeType":"YulIdentifier","src":"27744:3:81"},"nativeSrc":"27744:18:81","nodeType":"YulFunctionCall","src":"27744:18:81"},{"hexValue":"41413934206761732076616c756573206f766572666c6f77","kind":"string","nativeSrc":"27764:26:81","nodeType":"YulLiteral","src":"27764:26:81","type":"","value":"AA94 gas values overflow"}],"functionName":{"name":"mstore","nativeSrc":"27737:6:81","nodeType":"YulIdentifier","src":"27737:6:81"},"nativeSrc":"27737:54:81","nodeType":"YulFunctionCall","src":"27737:54:81"},"nativeSrc":"27737:54:81","nodeType":"YulExpressionStatement","src":"27737:54:81"},{"nativeSrc":"27800:26:81","nodeType":"YulAssignment","src":"27800:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"27812:9:81","nodeType":"YulIdentifier","src":"27812:9:81"},{"kind":"number","nativeSrc":"27823:2:81","nodeType":"YulLiteral","src":"27823:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27808:3:81","nodeType":"YulIdentifier","src":"27808:3:81"},"nativeSrc":"27808:18:81","nodeType":"YulFunctionCall","src":"27808:18:81"},"variableNames":[{"name":"tail","nativeSrc":"27800:4:81","nodeType":"YulIdentifier","src":"27800:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27484:348:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27635:9:81","nodeType":"YulTypedName","src":"27635:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27649:4:81","nodeType":"YulTypedName","src":"27649:4:81","type":""}],"src":"27484:348:81"},{"body":{"nativeSrc":"28039:220:81","nodeType":"YulBlock","src":"28039:220:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28056:9:81","nodeType":"YulIdentifier","src":"28056:9:81"},{"name":"value0","nativeSrc":"28067:6:81","nodeType":"YulIdentifier","src":"28067:6:81"}],"functionName":{"name":"mstore","nativeSrc":"28049:6:81","nodeType":"YulIdentifier","src":"28049:6:81"},"nativeSrc":"28049:25:81","nodeType":"YulFunctionCall","src":"28049:25:81"},"nativeSrc":"28049:25:81","nodeType":"YulExpressionStatement","src":"28049:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28094:9:81","nodeType":"YulIdentifier","src":"28094:9:81"},{"kind":"number","nativeSrc":"28105:2:81","nodeType":"YulLiteral","src":"28105:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28090:3:81","nodeType":"YulIdentifier","src":"28090:3:81"},"nativeSrc":"28090:18:81","nodeType":"YulFunctionCall","src":"28090:18:81"},{"kind":"number","nativeSrc":"28110:2:81","nodeType":"YulLiteral","src":"28110:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"28083:6:81","nodeType":"YulIdentifier","src":"28083:6:81"},"nativeSrc":"28083:30:81","nodeType":"YulFunctionCall","src":"28083:30:81"},"nativeSrc":"28083:30:81","nodeType":"YulExpressionStatement","src":"28083:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28133:9:81","nodeType":"YulIdentifier","src":"28133:9:81"},{"kind":"number","nativeSrc":"28144:2:81","nodeType":"YulLiteral","src":"28144:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28129:3:81","nodeType":"YulIdentifier","src":"28129:3:81"},"nativeSrc":"28129:18:81","nodeType":"YulFunctionCall","src":"28129:18:81"},{"kind":"number","nativeSrc":"28149:2:81","nodeType":"YulLiteral","src":"28149:2:81","type":"","value":"26"}],"functionName":{"name":"mstore","nativeSrc":"28122:6:81","nodeType":"YulIdentifier","src":"28122:6:81"},"nativeSrc":"28122:30:81","nodeType":"YulFunctionCall","src":"28122:30:81"},"nativeSrc":"28122:30:81","nodeType":"YulExpressionStatement","src":"28122:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28172:9:81","nodeType":"YulIdentifier","src":"28172:9:81"},{"kind":"number","nativeSrc":"28183:2:81","nodeType":"YulLiteral","src":"28183:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28168:3:81","nodeType":"YulIdentifier","src":"28168:3:81"},"nativeSrc":"28168:18:81","nodeType":"YulFunctionCall","src":"28168:18:81"},{"hexValue":"4141323520696e76616c6964206163636f756e74206e6f6e6365","kind":"string","nativeSrc":"28188:28:81","nodeType":"YulLiteral","src":"28188:28:81","type":"","value":"AA25 invalid account nonce"}],"functionName":{"name":"mstore","nativeSrc":"28161:6:81","nodeType":"YulIdentifier","src":"28161:6:81"},"nativeSrc":"28161:56:81","nodeType":"YulFunctionCall","src":"28161:56:81"},"nativeSrc":"28161:56:81","nodeType":"YulExpressionStatement","src":"28161:56:81"},{"nativeSrc":"28226:27:81","nodeType":"YulAssignment","src":"28226:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"28238:9:81","nodeType":"YulIdentifier","src":"28238:9:81"},{"kind":"number","nativeSrc":"28249:3:81","nodeType":"YulLiteral","src":"28249:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28234:3:81","nodeType":"YulIdentifier","src":"28234:3:81"},"nativeSrc":"28234:19:81","nodeType":"YulFunctionCall","src":"28234:19:81"},"variableNames":[{"name":"tail","nativeSrc":"28226:4:81","nodeType":"YulIdentifier","src":"28226:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27837:422:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28008:9:81","nodeType":"YulTypedName","src":"28008:9:81","type":""},{"name":"value0","nativeSrc":"28019:6:81","nodeType":"YulTypedName","src":"28019:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28030:4:81","nodeType":"YulTypedName","src":"28030:4:81","type":""}],"src":"27837:422:81"},{"body":{"nativeSrc":"28466:224:81","nodeType":"YulBlock","src":"28466:224:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28483:9:81","nodeType":"YulIdentifier","src":"28483:9:81"},{"name":"value0","nativeSrc":"28494:6:81","nodeType":"YulIdentifier","src":"28494:6:81"}],"functionName":{"name":"mstore","nativeSrc":"28476:6:81","nodeType":"YulIdentifier","src":"28476:6:81"},"nativeSrc":"28476:25:81","nodeType":"YulFunctionCall","src":"28476:25:81"},"nativeSrc":"28476:25:81","nodeType":"YulExpressionStatement","src":"28476:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28521:9:81","nodeType":"YulIdentifier","src":"28521:9:81"},{"kind":"number","nativeSrc":"28532:2:81","nodeType":"YulLiteral","src":"28532:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28517:3:81","nodeType":"YulIdentifier","src":"28517:3:81"},"nativeSrc":"28517:18:81","nodeType":"YulFunctionCall","src":"28517:18:81"},{"kind":"number","nativeSrc":"28537:2:81","nodeType":"YulLiteral","src":"28537:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"28510:6:81","nodeType":"YulIdentifier","src":"28510:6:81"},"nativeSrc":"28510:30:81","nodeType":"YulFunctionCall","src":"28510:30:81"},"nativeSrc":"28510:30:81","nodeType":"YulExpressionStatement","src":"28510:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28560:9:81","nodeType":"YulIdentifier","src":"28560:9:81"},{"kind":"number","nativeSrc":"28571:2:81","nodeType":"YulLiteral","src":"28571:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28556:3:81","nodeType":"YulIdentifier","src":"28556:3:81"},"nativeSrc":"28556:18:81","nodeType":"YulFunctionCall","src":"28556:18:81"},{"kind":"number","nativeSrc":"28576:2:81","nodeType":"YulLiteral","src":"28576:2:81","type":"","value":"30"}],"functionName":{"name":"mstore","nativeSrc":"28549:6:81","nodeType":"YulIdentifier","src":"28549:6:81"},"nativeSrc":"28549:30:81","nodeType":"YulFunctionCall","src":"28549:30:81"},"nativeSrc":"28549:30:81","nodeType":"YulExpressionStatement","src":"28549:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28599:9:81","nodeType":"YulIdentifier","src":"28599:9:81"},{"kind":"number","nativeSrc":"28610:2:81","nodeType":"YulLiteral","src":"28610:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28595:3:81","nodeType":"YulIdentifier","src":"28595:3:81"},"nativeSrc":"28595:18:81","nodeType":"YulFunctionCall","src":"28595:18:81"},{"hexValue":"41413236206f76657220766572696669636174696f6e4761734c696d6974","kind":"string","nativeSrc":"28615:32:81","nodeType":"YulLiteral","src":"28615:32:81","type":"","value":"AA26 over verificationGasLimit"}],"functionName":{"name":"mstore","nativeSrc":"28588:6:81","nodeType":"YulIdentifier","src":"28588:6:81"},"nativeSrc":"28588:60:81","nodeType":"YulFunctionCall","src":"28588:60:81"},"nativeSrc":"28588:60:81","nodeType":"YulExpressionStatement","src":"28588:60:81"},{"nativeSrc":"28657:27:81","nodeType":"YulAssignment","src":"28657:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"28669:9:81","nodeType":"YulIdentifier","src":"28669:9:81"},{"kind":"number","nativeSrc":"28680:3:81","nodeType":"YulLiteral","src":"28680:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28665:3:81","nodeType":"YulIdentifier","src":"28665:3:81"},"nativeSrc":"28665:19:81","nodeType":"YulFunctionCall","src":"28665:19:81"},"variableNames":[{"name":"tail","nativeSrc":"28657:4:81","nodeType":"YulIdentifier","src":"28657:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28264:426:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28435:9:81","nodeType":"YulTypedName","src":"28435:9:81","type":""},{"name":"value0","nativeSrc":"28446:6:81","nodeType":"YulTypedName","src":"28446:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28457:4:81","nodeType":"YulTypedName","src":"28457:4:81","type":""}],"src":"28264:426:81"},{"body":{"nativeSrc":"28897:214:81","nodeType":"YulBlock","src":"28897:214:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28914:9:81","nodeType":"YulIdentifier","src":"28914:9:81"},{"name":"value0","nativeSrc":"28925:6:81","nodeType":"YulIdentifier","src":"28925:6:81"}],"functionName":{"name":"mstore","nativeSrc":"28907:6:81","nodeType":"YulIdentifier","src":"28907:6:81"},"nativeSrc":"28907:25:81","nodeType":"YulFunctionCall","src":"28907:25:81"},"nativeSrc":"28907:25:81","nodeType":"YulExpressionStatement","src":"28907:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28952:9:81","nodeType":"YulIdentifier","src":"28952:9:81"},{"kind":"number","nativeSrc":"28963:2:81","nodeType":"YulLiteral","src":"28963:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28948:3:81","nodeType":"YulIdentifier","src":"28948:3:81"},"nativeSrc":"28948:18:81","nodeType":"YulFunctionCall","src":"28948:18:81"},{"kind":"number","nativeSrc":"28968:2:81","nodeType":"YulLiteral","src":"28968:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"28941:6:81","nodeType":"YulIdentifier","src":"28941:6:81"},"nativeSrc":"28941:30:81","nodeType":"YulFunctionCall","src":"28941:30:81"},"nativeSrc":"28941:30:81","nodeType":"YulExpressionStatement","src":"28941:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28991:9:81","nodeType":"YulIdentifier","src":"28991:9:81"},{"kind":"number","nativeSrc":"29002:2:81","nodeType":"YulLiteral","src":"29002:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28987:3:81","nodeType":"YulIdentifier","src":"28987:3:81"},"nativeSrc":"28987:18:81","nodeType":"YulFunctionCall","src":"28987:18:81"},{"kind":"number","nativeSrc":"29007:2:81","nodeType":"YulLiteral","src":"29007:2:81","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"28980:6:81","nodeType":"YulIdentifier","src":"28980:6:81"},"nativeSrc":"28980:30:81","nodeType":"YulFunctionCall","src":"28980:30:81"},"nativeSrc":"28980:30:81","nodeType":"YulExpressionStatement","src":"28980:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29030:9:81","nodeType":"YulIdentifier","src":"29030:9:81"},{"kind":"number","nativeSrc":"29041:2:81","nodeType":"YulLiteral","src":"29041:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29026:3:81","nodeType":"YulIdentifier","src":"29026:3:81"},"nativeSrc":"29026:18:81","nodeType":"YulFunctionCall","src":"29026:18:81"},{"hexValue":"41413234207369676e6174757265206572726f72","kind":"string","nativeSrc":"29046:22:81","nodeType":"YulLiteral","src":"29046:22:81","type":"","value":"AA24 signature error"}],"functionName":{"name":"mstore","nativeSrc":"29019:6:81","nodeType":"YulIdentifier","src":"29019:6:81"},"nativeSrc":"29019:50:81","nodeType":"YulFunctionCall","src":"29019:50:81"},"nativeSrc":"29019:50:81","nodeType":"YulExpressionStatement","src":"29019:50:81"},{"nativeSrc":"29078:27:81","nodeType":"YulAssignment","src":"29078:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29090:9:81","nodeType":"YulIdentifier","src":"29090:9:81"},{"kind":"number","nativeSrc":"29101:3:81","nodeType":"YulLiteral","src":"29101:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29086:3:81","nodeType":"YulIdentifier","src":"29086:3:81"},"nativeSrc":"29086:19:81","nodeType":"YulFunctionCall","src":"29086:19:81"},"variableNames":[{"name":"tail","nativeSrc":"29078:4:81","nodeType":"YulIdentifier","src":"29078:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28695:416:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28866:9:81","nodeType":"YulTypedName","src":"28866:9:81","type":""},{"name":"value0","nativeSrc":"28877:6:81","nodeType":"YulTypedName","src":"28877:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28888:4:81","nodeType":"YulTypedName","src":"28888:4:81","type":""}],"src":"28695:416:81"},{"body":{"nativeSrc":"29318:217:81","nodeType":"YulBlock","src":"29318:217:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29335:9:81","nodeType":"YulIdentifier","src":"29335:9:81"},{"name":"value0","nativeSrc":"29346:6:81","nodeType":"YulIdentifier","src":"29346:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29328:6:81","nodeType":"YulIdentifier","src":"29328:6:81"},"nativeSrc":"29328:25:81","nodeType":"YulFunctionCall","src":"29328:25:81"},"nativeSrc":"29328:25:81","nodeType":"YulExpressionStatement","src":"29328:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29373:9:81","nodeType":"YulIdentifier","src":"29373:9:81"},{"kind":"number","nativeSrc":"29384:2:81","nodeType":"YulLiteral","src":"29384:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29369:3:81","nodeType":"YulIdentifier","src":"29369:3:81"},"nativeSrc":"29369:18:81","nodeType":"YulFunctionCall","src":"29369:18:81"},{"kind":"number","nativeSrc":"29389:2:81","nodeType":"YulLiteral","src":"29389:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"29362:6:81","nodeType":"YulIdentifier","src":"29362:6:81"},"nativeSrc":"29362:30:81","nodeType":"YulFunctionCall","src":"29362:30:81"},"nativeSrc":"29362:30:81","nodeType":"YulExpressionStatement","src":"29362:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29412:9:81","nodeType":"YulIdentifier","src":"29412:9:81"},{"kind":"number","nativeSrc":"29423:2:81","nodeType":"YulLiteral","src":"29423:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29408:3:81","nodeType":"YulIdentifier","src":"29408:3:81"},"nativeSrc":"29408:18:81","nodeType":"YulFunctionCall","src":"29408:18:81"},{"kind":"number","nativeSrc":"29428:2:81","nodeType":"YulLiteral","src":"29428:2:81","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"29401:6:81","nodeType":"YulIdentifier","src":"29401:6:81"},"nativeSrc":"29401:30:81","nodeType":"YulFunctionCall","src":"29401:30:81"},"nativeSrc":"29401:30:81","nodeType":"YulExpressionStatement","src":"29401:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29451:9:81","nodeType":"YulIdentifier","src":"29451:9:81"},{"kind":"number","nativeSrc":"29462:2:81","nodeType":"YulLiteral","src":"29462:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29447:3:81","nodeType":"YulIdentifier","src":"29447:3:81"},"nativeSrc":"29447:18:81","nodeType":"YulFunctionCall","src":"29447:18:81"},{"hexValue":"414132322065787069726564206f72206e6f7420647565","kind":"string","nativeSrc":"29467:25:81","nodeType":"YulLiteral","src":"29467:25:81","type":"","value":"AA22 expired or not due"}],"functionName":{"name":"mstore","nativeSrc":"29440:6:81","nodeType":"YulIdentifier","src":"29440:6:81"},"nativeSrc":"29440:53:81","nodeType":"YulFunctionCall","src":"29440:53:81"},"nativeSrc":"29440:53:81","nodeType":"YulExpressionStatement","src":"29440:53:81"},{"nativeSrc":"29502:27:81","nodeType":"YulAssignment","src":"29502:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29514:9:81","nodeType":"YulIdentifier","src":"29514:9:81"},{"kind":"number","nativeSrc":"29525:3:81","nodeType":"YulLiteral","src":"29525:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29510:3:81","nodeType":"YulIdentifier","src":"29510:3:81"},"nativeSrc":"29510:19:81","nodeType":"YulFunctionCall","src":"29510:19:81"},"variableNames":[{"name":"tail","nativeSrc":"29502:4:81","nodeType":"YulIdentifier","src":"29502:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29116:419:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29287:9:81","nodeType":"YulTypedName","src":"29287:9:81","type":""},{"name":"value0","nativeSrc":"29298:6:81","nodeType":"YulTypedName","src":"29298:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29309:4:81","nodeType":"YulTypedName","src":"29309:4:81","type":""}],"src":"29116:419:81"},{"body":{"nativeSrc":"29742:214:81","nodeType":"YulBlock","src":"29742:214:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29759:9:81","nodeType":"YulIdentifier","src":"29759:9:81"},{"name":"value0","nativeSrc":"29770:6:81","nodeType":"YulIdentifier","src":"29770:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29752:6:81","nodeType":"YulIdentifier","src":"29752:6:81"},"nativeSrc":"29752:25:81","nodeType":"YulFunctionCall","src":"29752:25:81"},"nativeSrc":"29752:25:81","nodeType":"YulExpressionStatement","src":"29752:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29797:9:81","nodeType":"YulIdentifier","src":"29797:9:81"},{"kind":"number","nativeSrc":"29808:2:81","nodeType":"YulLiteral","src":"29808:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29793:3:81","nodeType":"YulIdentifier","src":"29793:3:81"},"nativeSrc":"29793:18:81","nodeType":"YulFunctionCall","src":"29793:18:81"},{"kind":"number","nativeSrc":"29813:2:81","nodeType":"YulLiteral","src":"29813:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"29786:6:81","nodeType":"YulIdentifier","src":"29786:6:81"},"nativeSrc":"29786:30:81","nodeType":"YulFunctionCall","src":"29786:30:81"},"nativeSrc":"29786:30:81","nodeType":"YulExpressionStatement","src":"29786:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29836:9:81","nodeType":"YulIdentifier","src":"29836:9:81"},{"kind":"number","nativeSrc":"29847:2:81","nodeType":"YulLiteral","src":"29847:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29832:3:81","nodeType":"YulIdentifier","src":"29832:3:81"},"nativeSrc":"29832:18:81","nodeType":"YulFunctionCall","src":"29832:18:81"},{"kind":"number","nativeSrc":"29852:2:81","nodeType":"YulLiteral","src":"29852:2:81","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"29825:6:81","nodeType":"YulIdentifier","src":"29825:6:81"},"nativeSrc":"29825:30:81","nodeType":"YulFunctionCall","src":"29825:30:81"},"nativeSrc":"29825:30:81","nodeType":"YulExpressionStatement","src":"29825:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29875:9:81","nodeType":"YulIdentifier","src":"29875:9:81"},{"kind":"number","nativeSrc":"29886:2:81","nodeType":"YulLiteral","src":"29886:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29871:3:81","nodeType":"YulIdentifier","src":"29871:3:81"},"nativeSrc":"29871:18:81","nodeType":"YulFunctionCall","src":"29871:18:81"},{"hexValue":"41413334207369676e6174757265206572726f72","kind":"string","nativeSrc":"29891:22:81","nodeType":"YulLiteral","src":"29891:22:81","type":"","value":"AA34 signature error"}],"functionName":{"name":"mstore","nativeSrc":"29864:6:81","nodeType":"YulIdentifier","src":"29864:6:81"},"nativeSrc":"29864:50:81","nodeType":"YulFunctionCall","src":"29864:50:81"},"nativeSrc":"29864:50:81","nodeType":"YulExpressionStatement","src":"29864:50:81"},{"nativeSrc":"29923:27:81","nodeType":"YulAssignment","src":"29923:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29935:9:81","nodeType":"YulIdentifier","src":"29935:9:81"},{"kind":"number","nativeSrc":"29946:3:81","nodeType":"YulLiteral","src":"29946:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29931:3:81","nodeType":"YulIdentifier","src":"29931:3:81"},"nativeSrc":"29931:19:81","nodeType":"YulFunctionCall","src":"29931:19:81"},"variableNames":[{"name":"tail","nativeSrc":"29923:4:81","nodeType":"YulIdentifier","src":"29923:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29540:416:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29711:9:81","nodeType":"YulTypedName","src":"29711:9:81","type":""},{"name":"value0","nativeSrc":"29722:6:81","nodeType":"YulTypedName","src":"29722:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29733:4:81","nodeType":"YulTypedName","src":"29733:4:81","type":""}],"src":"29540:416:81"},{"body":{"nativeSrc":"30163:267:81","nodeType":"YulBlock","src":"30163:267:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30180:9:81","nodeType":"YulIdentifier","src":"30180:9:81"},{"name":"value0","nativeSrc":"30191:6:81","nodeType":"YulIdentifier","src":"30191:6:81"}],"functionName":{"name":"mstore","nativeSrc":"30173:6:81","nodeType":"YulIdentifier","src":"30173:6:81"},"nativeSrc":"30173:25:81","nodeType":"YulFunctionCall","src":"30173:25:81"},"nativeSrc":"30173:25:81","nodeType":"YulExpressionStatement","src":"30173:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30218:9:81","nodeType":"YulIdentifier","src":"30218:9:81"},{"kind":"number","nativeSrc":"30229:2:81","nodeType":"YulLiteral","src":"30229:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30214:3:81","nodeType":"YulIdentifier","src":"30214:3:81"},"nativeSrc":"30214:18:81","nodeType":"YulFunctionCall","src":"30214:18:81"},{"kind":"number","nativeSrc":"30234:2:81","nodeType":"YulLiteral","src":"30234:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"30207:6:81","nodeType":"YulIdentifier","src":"30207:6:81"},"nativeSrc":"30207:30:81","nodeType":"YulFunctionCall","src":"30207:30:81"},"nativeSrc":"30207:30:81","nodeType":"YulExpressionStatement","src":"30207:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30257:9:81","nodeType":"YulIdentifier","src":"30257:9:81"},{"kind":"number","nativeSrc":"30268:2:81","nodeType":"YulLiteral","src":"30268:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30253:3:81","nodeType":"YulIdentifier","src":"30253:3:81"},"nativeSrc":"30253:18:81","nodeType":"YulFunctionCall","src":"30253:18:81"},{"kind":"number","nativeSrc":"30273:2:81","nodeType":"YulLiteral","src":"30273:2:81","type":"","value":"33"}],"functionName":{"name":"mstore","nativeSrc":"30246:6:81","nodeType":"YulIdentifier","src":"30246:6:81"},"nativeSrc":"30246:30:81","nodeType":"YulFunctionCall","src":"30246:30:81"},"nativeSrc":"30246:30:81","nodeType":"YulExpressionStatement","src":"30246:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30296:9:81","nodeType":"YulIdentifier","src":"30296:9:81"},{"kind":"number","nativeSrc":"30307:2:81","nodeType":"YulLiteral","src":"30307:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30292:3:81","nodeType":"YulIdentifier","src":"30292:3:81"},"nativeSrc":"30292:18:81","nodeType":"YulFunctionCall","src":"30292:18:81"},{"hexValue":"41413332207061796d61737465722065787069726564206f72206e6f74206475","kind":"string","nativeSrc":"30312:34:81","nodeType":"YulLiteral","src":"30312:34:81","type":"","value":"AA32 paymaster expired or not du"}],"functionName":{"name":"mstore","nativeSrc":"30285:6:81","nodeType":"YulIdentifier","src":"30285:6:81"},"nativeSrc":"30285:62:81","nodeType":"YulFunctionCall","src":"30285:62:81"},"nativeSrc":"30285:62:81","nodeType":"YulExpressionStatement","src":"30285:62:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30367:9:81","nodeType":"YulIdentifier","src":"30367:9:81"},{"kind":"number","nativeSrc":"30378:3:81","nodeType":"YulLiteral","src":"30378:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30363:3:81","nodeType":"YulIdentifier","src":"30363:3:81"},"nativeSrc":"30363:19:81","nodeType":"YulFunctionCall","src":"30363:19:81"},{"hexValue":"65","kind":"string","nativeSrc":"30384:3:81","nodeType":"YulLiteral","src":"30384:3:81","type":"","value":"e"}],"functionName":{"name":"mstore","nativeSrc":"30356:6:81","nodeType":"YulIdentifier","src":"30356:6:81"},"nativeSrc":"30356:32:81","nodeType":"YulFunctionCall","src":"30356:32:81"},"nativeSrc":"30356:32:81","nodeType":"YulExpressionStatement","src":"30356:32:81"},{"nativeSrc":"30397:27:81","nodeType":"YulAssignment","src":"30397:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"30409:9:81","nodeType":"YulIdentifier","src":"30409:9:81"},{"kind":"number","nativeSrc":"30420:3:81","nodeType":"YulLiteral","src":"30420:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"30405:3:81","nodeType":"YulIdentifier","src":"30405:3:81"},"nativeSrc":"30405:19:81","nodeType":"YulFunctionCall","src":"30405:19:81"},"variableNames":[{"name":"tail","nativeSrc":"30397:4:81","nodeType":"YulIdentifier","src":"30397:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29961:469:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30132:9:81","nodeType":"YulTypedName","src":"30132:9:81","type":""},{"name":"value0","nativeSrc":"30143:6:81","nodeType":"YulTypedName","src":"30143:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30154:4:81","nodeType":"YulTypedName","src":"30154:4:81","type":""}],"src":"29961:469:81"},{"body":{"nativeSrc":"30640:171:81","nodeType":"YulBlock","src":"30640:171:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30657:9:81","nodeType":"YulIdentifier","src":"30657:9:81"},{"kind":"number","nativeSrc":"30668:2:81","nodeType":"YulLiteral","src":"30668:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"30650:6:81","nodeType":"YulIdentifier","src":"30650:6:81"},"nativeSrc":"30650:21:81","nodeType":"YulFunctionCall","src":"30650:21:81"},"nativeSrc":"30650:21:81","nodeType":"YulExpressionStatement","src":"30650:21:81"},{"nativeSrc":"30680:82:81","nodeType":"YulAssignment","src":"30680:82:81","value":{"arguments":[{"name":"value0","nativeSrc":"30735:6:81","nodeType":"YulIdentifier","src":"30735:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"30747:9:81","nodeType":"YulIdentifier","src":"30747:9:81"},{"kind":"number","nativeSrc":"30758:2:81","nodeType":"YulLiteral","src":"30758:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30743:3:81","nodeType":"YulIdentifier","src":"30743:3:81"},"nativeSrc":"30743:18:81","nodeType":"YulFunctionCall","src":"30743:18:81"}],"functionName":{"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"30688:46:81","nodeType":"YulIdentifier","src":"30688:46:81"},"nativeSrc":"30688:74:81","nodeType":"YulFunctionCall","src":"30688:74:81"},"variableNames":[{"name":"tail","nativeSrc":"30680:4:81","nodeType":"YulIdentifier","src":"30680:4:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30782:9:81","nodeType":"YulIdentifier","src":"30782:9:81"},{"kind":"number","nativeSrc":"30793:2:81","nodeType":"YulLiteral","src":"30793:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30778:3:81","nodeType":"YulIdentifier","src":"30778:3:81"},"nativeSrc":"30778:18:81","nodeType":"YulFunctionCall","src":"30778:18:81"},{"name":"value1","nativeSrc":"30798:6:81","nodeType":"YulIdentifier","src":"30798:6:81"}],"functionName":{"name":"mstore","nativeSrc":"30771:6:81","nodeType":"YulIdentifier","src":"30771:6:81"},"nativeSrc":"30771:34:81","nodeType":"YulFunctionCall","src":"30771:34:81"},"nativeSrc":"30771:34:81","nodeType":"YulExpressionStatement","src":"30771:34:81"}]},"name":"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32__fromStack_reversed","nativeSrc":"30435:376:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30601:9:81","nodeType":"YulTypedName","src":"30601:9:81","type":""},{"name":"value1","nativeSrc":"30612:6:81","nodeType":"YulTypedName","src":"30612:6:81","type":""},{"name":"value0","nativeSrc":"30620:6:81","nodeType":"YulTypedName","src":"30620:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30631:4:81","nodeType":"YulTypedName","src":"30631:4:81","type":""}],"src":"30435:376:81"},{"body":{"nativeSrc":"30870:851:81","nodeType":"YulBlock","src":"30870:851:81","statements":[{"nativeSrc":"30880:22:81","nodeType":"YulVariableDeclaration","src":"30880:22:81","value":{"arguments":[{"name":"value","nativeSrc":"30896:5:81","nodeType":"YulIdentifier","src":"30896:5:81"}],"functionName":{"name":"mload","nativeSrc":"30890:5:81","nodeType":"YulIdentifier","src":"30890:5:81"},"nativeSrc":"30890:12:81","nodeType":"YulFunctionCall","src":"30890:12:81"},"variables":[{"name":"_1","nativeSrc":"30884:2:81","nodeType":"YulTypedName","src":"30884:2:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"30936:2:81","nodeType":"YulIdentifier","src":"30936:2:81"}],"functionName":{"name":"mload","nativeSrc":"30930:5:81","nodeType":"YulIdentifier","src":"30930:5:81"},"nativeSrc":"30930:9:81","nodeType":"YulFunctionCall","src":"30930:9:81"},{"name":"pos","nativeSrc":"30941:3:81","nodeType":"YulIdentifier","src":"30941:3:81"}],"functionName":{"name":"abi_encode_address","nativeSrc":"30911:18:81","nodeType":"YulIdentifier","src":"30911:18:81"},"nativeSrc":"30911:34:81","nodeType":"YulFunctionCall","src":"30911:34:81"},"nativeSrc":"30911:34:81","nodeType":"YulExpressionStatement","src":"30911:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"30965:3:81","nodeType":"YulIdentifier","src":"30965:3:81"},{"kind":"number","nativeSrc":"30970:4:81","nodeType":"YulLiteral","src":"30970:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"30961:3:81","nodeType":"YulIdentifier","src":"30961:3:81"},"nativeSrc":"30961:14:81","nodeType":"YulFunctionCall","src":"30961:14:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"30987:2:81","nodeType":"YulIdentifier","src":"30987:2:81"},{"kind":"number","nativeSrc":"30991:4:81","nodeType":"YulLiteral","src":"30991:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"30983:3:81","nodeType":"YulIdentifier","src":"30983:3:81"},"nativeSrc":"30983:13:81","nodeType":"YulFunctionCall","src":"30983:13:81"}],"functionName":{"name":"mload","nativeSrc":"30977:5:81","nodeType":"YulIdentifier","src":"30977:5:81"},"nativeSrc":"30977:20:81","nodeType":"YulFunctionCall","src":"30977:20:81"}],"functionName":{"name":"mstore","nativeSrc":"30954:6:81","nodeType":"YulIdentifier","src":"30954:6:81"},"nativeSrc":"30954:44:81","nodeType":"YulFunctionCall","src":"30954:44:81"},"nativeSrc":"30954:44:81","nodeType":"YulExpressionStatement","src":"30954:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31018:3:81","nodeType":"YulIdentifier","src":"31018:3:81"},{"kind":"number","nativeSrc":"31023:4:81","nodeType":"YulLiteral","src":"31023:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31014:3:81","nodeType":"YulIdentifier","src":"31014:3:81"},"nativeSrc":"31014:14:81","nodeType":"YulFunctionCall","src":"31014:14:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31040:2:81","nodeType":"YulIdentifier","src":"31040:2:81"},{"kind":"number","nativeSrc":"31044:4:81","nodeType":"YulLiteral","src":"31044:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31036:3:81","nodeType":"YulIdentifier","src":"31036:3:81"},"nativeSrc":"31036:13:81","nodeType":"YulFunctionCall","src":"31036:13:81"}],"functionName":{"name":"mload","nativeSrc":"31030:5:81","nodeType":"YulIdentifier","src":"31030:5:81"},"nativeSrc":"31030:20:81","nodeType":"YulFunctionCall","src":"31030:20:81"}],"functionName":{"name":"mstore","nativeSrc":"31007:6:81","nodeType":"YulIdentifier","src":"31007:6:81"},"nativeSrc":"31007:44:81","nodeType":"YulFunctionCall","src":"31007:44:81"},"nativeSrc":"31007:44:81","nodeType":"YulExpressionStatement","src":"31007:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31071:3:81","nodeType":"YulIdentifier","src":"31071:3:81"},{"kind":"number","nativeSrc":"31076:4:81","nodeType":"YulLiteral","src":"31076:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31067:3:81","nodeType":"YulIdentifier","src":"31067:3:81"},"nativeSrc":"31067:14:81","nodeType":"YulFunctionCall","src":"31067:14:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31093:2:81","nodeType":"YulIdentifier","src":"31093:2:81"},{"kind":"number","nativeSrc":"31097:4:81","nodeType":"YulLiteral","src":"31097:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31089:3:81","nodeType":"YulIdentifier","src":"31089:3:81"},"nativeSrc":"31089:13:81","nodeType":"YulFunctionCall","src":"31089:13:81"}],"functionName":{"name":"mload","nativeSrc":"31083:5:81","nodeType":"YulIdentifier","src":"31083:5:81"},"nativeSrc":"31083:20:81","nodeType":"YulFunctionCall","src":"31083:20:81"}],"functionName":{"name":"mstore","nativeSrc":"31060:6:81","nodeType":"YulIdentifier","src":"31060:6:81"},"nativeSrc":"31060:44:81","nodeType":"YulFunctionCall","src":"31060:44:81"},"nativeSrc":"31060:44:81","nodeType":"YulExpressionStatement","src":"31060:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31124:3:81","nodeType":"YulIdentifier","src":"31124:3:81"},{"kind":"number","nativeSrc":"31129:4:81","nodeType":"YulLiteral","src":"31129:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"31120:3:81","nodeType":"YulIdentifier","src":"31120:3:81"},"nativeSrc":"31120:14:81","nodeType":"YulFunctionCall","src":"31120:14:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31146:2:81","nodeType":"YulIdentifier","src":"31146:2:81"},{"kind":"number","nativeSrc":"31150:4:81","nodeType":"YulLiteral","src":"31150:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"31142:3:81","nodeType":"YulIdentifier","src":"31142:3:81"},"nativeSrc":"31142:13:81","nodeType":"YulFunctionCall","src":"31142:13:81"}],"functionName":{"name":"mload","nativeSrc":"31136:5:81","nodeType":"YulIdentifier","src":"31136:5:81"},"nativeSrc":"31136:20:81","nodeType":"YulFunctionCall","src":"31136:20:81"}],"functionName":{"name":"mstore","nativeSrc":"31113:6:81","nodeType":"YulIdentifier","src":"31113:6:81"},"nativeSrc":"31113:44:81","nodeType":"YulFunctionCall","src":"31113:44:81"},"nativeSrc":"31113:44:81","nodeType":"YulExpressionStatement","src":"31113:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31177:3:81","nodeType":"YulIdentifier","src":"31177:3:81"},{"kind":"number","nativeSrc":"31182:4:81","nodeType":"YulLiteral","src":"31182:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"31173:3:81","nodeType":"YulIdentifier","src":"31173:3:81"},"nativeSrc":"31173:14:81","nodeType":"YulFunctionCall","src":"31173:14:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31199:2:81","nodeType":"YulIdentifier","src":"31199:2:81"},{"kind":"number","nativeSrc":"31203:4:81","nodeType":"YulLiteral","src":"31203:4:81","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"31195:3:81","nodeType":"YulIdentifier","src":"31195:3:81"},"nativeSrc":"31195:13:81","nodeType":"YulFunctionCall","src":"31195:13:81"}],"functionName":{"name":"mload","nativeSrc":"31189:5:81","nodeType":"YulIdentifier","src":"31189:5:81"},"nativeSrc":"31189:20:81","nodeType":"YulFunctionCall","src":"31189:20:81"}],"functionName":{"name":"mstore","nativeSrc":"31166:6:81","nodeType":"YulIdentifier","src":"31166:6:81"},"nativeSrc":"31166:44:81","nodeType":"YulFunctionCall","src":"31166:44:81"},"nativeSrc":"31166:44:81","nodeType":"YulExpressionStatement","src":"31166:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31230:3:81","nodeType":"YulIdentifier","src":"31230:3:81"},{"kind":"number","nativeSrc":"31235:4:81","nodeType":"YulLiteral","src":"31235:4:81","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"31226:3:81","nodeType":"YulIdentifier","src":"31226:3:81"},"nativeSrc":"31226:14:81","nodeType":"YulFunctionCall","src":"31226:14:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31252:2:81","nodeType":"YulIdentifier","src":"31252:2:81"},{"kind":"number","nativeSrc":"31256:4:81","nodeType":"YulLiteral","src":"31256:4:81","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"31248:3:81","nodeType":"YulIdentifier","src":"31248:3:81"},"nativeSrc":"31248:13:81","nodeType":"YulFunctionCall","src":"31248:13:81"}],"functionName":{"name":"mload","nativeSrc":"31242:5:81","nodeType":"YulIdentifier","src":"31242:5:81"},"nativeSrc":"31242:20:81","nodeType":"YulFunctionCall","src":"31242:20:81"}],"functionName":{"name":"mstore","nativeSrc":"31219:6:81","nodeType":"YulIdentifier","src":"31219:6:81"},"nativeSrc":"31219:44:81","nodeType":"YulFunctionCall","src":"31219:44:81"},"nativeSrc":"31219:44:81","nodeType":"YulExpressionStatement","src":"31219:44:81"},{"nativeSrc":"31272:40:81","nodeType":"YulVariableDeclaration","src":"31272:40:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31302:2:81","nodeType":"YulIdentifier","src":"31302:2:81"},{"kind":"number","nativeSrc":"31306:4:81","nodeType":"YulLiteral","src":"31306:4:81","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"31298:3:81","nodeType":"YulIdentifier","src":"31298:3:81"},"nativeSrc":"31298:13:81","nodeType":"YulFunctionCall","src":"31298:13:81"}],"functionName":{"name":"mload","nativeSrc":"31292:5:81","nodeType":"YulIdentifier","src":"31292:5:81"},"nativeSrc":"31292:20:81","nodeType":"YulFunctionCall","src":"31292:20:81"},"variables":[{"name":"memberValue0","nativeSrc":"31276:12:81","nodeType":"YulTypedName","src":"31276:12:81","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"31340:12:81","nodeType":"YulIdentifier","src":"31340:12:81"},{"arguments":[{"name":"pos","nativeSrc":"31358:3:81","nodeType":"YulIdentifier","src":"31358:3:81"},{"kind":"number","nativeSrc":"31363:4:81","nodeType":"YulLiteral","src":"31363:4:81","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"31354:3:81","nodeType":"YulIdentifier","src":"31354:3:81"},"nativeSrc":"31354:14:81","nodeType":"YulFunctionCall","src":"31354:14:81"}],"functionName":{"name":"abi_encode_address","nativeSrc":"31321:18:81","nodeType":"YulIdentifier","src":"31321:18:81"},"nativeSrc":"31321:48:81","nodeType":"YulFunctionCall","src":"31321:48:81"},"nativeSrc":"31321:48:81","nodeType":"YulExpressionStatement","src":"31321:48:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31389:3:81","nodeType":"YulIdentifier","src":"31389:3:81"},{"kind":"number","nativeSrc":"31394:6:81","nodeType":"YulLiteral","src":"31394:6:81","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"31385:3:81","nodeType":"YulIdentifier","src":"31385:3:81"},"nativeSrc":"31385:16:81","nodeType":"YulFunctionCall","src":"31385:16:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31413:2:81","nodeType":"YulIdentifier","src":"31413:2:81"},{"kind":"number","nativeSrc":"31417:6:81","nodeType":"YulLiteral","src":"31417:6:81","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"31409:3:81","nodeType":"YulIdentifier","src":"31409:3:81"},"nativeSrc":"31409:15:81","nodeType":"YulFunctionCall","src":"31409:15:81"}],"functionName":{"name":"mload","nativeSrc":"31403:5:81","nodeType":"YulIdentifier","src":"31403:5:81"},"nativeSrc":"31403:22:81","nodeType":"YulFunctionCall","src":"31403:22:81"}],"functionName":{"name":"mstore","nativeSrc":"31378:6:81","nodeType":"YulIdentifier","src":"31378:6:81"},"nativeSrc":"31378:48:81","nodeType":"YulFunctionCall","src":"31378:48:81"},"nativeSrc":"31378:48:81","nodeType":"YulExpressionStatement","src":"31378:48:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31446:3:81","nodeType":"YulIdentifier","src":"31446:3:81"},{"kind":"number","nativeSrc":"31451:6:81","nodeType":"YulLiteral","src":"31451:6:81","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"31442:3:81","nodeType":"YulIdentifier","src":"31442:3:81"},"nativeSrc":"31442:16:81","nodeType":"YulFunctionCall","src":"31442:16:81"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31470:2:81","nodeType":"YulIdentifier","src":"31470:2:81"},{"kind":"number","nativeSrc":"31474:6:81","nodeType":"YulLiteral","src":"31474:6:81","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"31466:3:81","nodeType":"YulIdentifier","src":"31466:3:81"},"nativeSrc":"31466:15:81","nodeType":"YulFunctionCall","src":"31466:15:81"}],"functionName":{"name":"mload","nativeSrc":"31460:5:81","nodeType":"YulIdentifier","src":"31460:5:81"},"nativeSrc":"31460:22:81","nodeType":"YulFunctionCall","src":"31460:22:81"}],"functionName":{"name":"mstore","nativeSrc":"31435:6:81","nodeType":"YulIdentifier","src":"31435:6:81"},"nativeSrc":"31435:48:81","nodeType":"YulFunctionCall","src":"31435:48:81"},"nativeSrc":"31435:48:81","nodeType":"YulExpressionStatement","src":"31435:48:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31503:3:81","nodeType":"YulIdentifier","src":"31503:3:81"},{"kind":"number","nativeSrc":"31508:6:81","nodeType":"YulLiteral","src":"31508:6:81","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"31499:3:81","nodeType":"YulIdentifier","src":"31499:3:81"},"nativeSrc":"31499:16:81","nodeType":"YulFunctionCall","src":"31499:16:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31527:5:81","nodeType":"YulIdentifier","src":"31527:5:81"},{"kind":"number","nativeSrc":"31534:4:81","nodeType":"YulLiteral","src":"31534:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"31523:3:81","nodeType":"YulIdentifier","src":"31523:3:81"},"nativeSrc":"31523:16:81","nodeType":"YulFunctionCall","src":"31523:16:81"}],"functionName":{"name":"mload","nativeSrc":"31517:5:81","nodeType":"YulIdentifier","src":"31517:5:81"},"nativeSrc":"31517:23:81","nodeType":"YulFunctionCall","src":"31517:23:81"}],"functionName":{"name":"mstore","nativeSrc":"31492:6:81","nodeType":"YulIdentifier","src":"31492:6:81"},"nativeSrc":"31492:49:81","nodeType":"YulFunctionCall","src":"31492:49:81"},"nativeSrc":"31492:49:81","nodeType":"YulExpressionStatement","src":"31492:49:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31561:3:81","nodeType":"YulIdentifier","src":"31561:3:81"},{"kind":"number","nativeSrc":"31566:6:81","nodeType":"YulLiteral","src":"31566:6:81","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"31557:3:81","nodeType":"YulIdentifier","src":"31557:3:81"},"nativeSrc":"31557:16:81","nodeType":"YulFunctionCall","src":"31557:16:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31585:5:81","nodeType":"YulIdentifier","src":"31585:5:81"},{"kind":"number","nativeSrc":"31592:4:81","nodeType":"YulLiteral","src":"31592:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31581:3:81","nodeType":"YulIdentifier","src":"31581:3:81"},"nativeSrc":"31581:16:81","nodeType":"YulFunctionCall","src":"31581:16:81"}],"functionName":{"name":"mload","nativeSrc":"31575:5:81","nodeType":"YulIdentifier","src":"31575:5:81"},"nativeSrc":"31575:23:81","nodeType":"YulFunctionCall","src":"31575:23:81"}],"functionName":{"name":"mstore","nativeSrc":"31550:6:81","nodeType":"YulIdentifier","src":"31550:6:81"},"nativeSrc":"31550:49:81","nodeType":"YulFunctionCall","src":"31550:49:81"},"nativeSrc":"31550:49:81","nodeType":"YulExpressionStatement","src":"31550:49:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31619:3:81","nodeType":"YulIdentifier","src":"31619:3:81"},{"kind":"number","nativeSrc":"31624:6:81","nodeType":"YulLiteral","src":"31624:6:81","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"31615:3:81","nodeType":"YulIdentifier","src":"31615:3:81"},"nativeSrc":"31615:16:81","nodeType":"YulFunctionCall","src":"31615:16:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31643:5:81","nodeType":"YulIdentifier","src":"31643:5:81"},{"kind":"number","nativeSrc":"31650:4:81","nodeType":"YulLiteral","src":"31650:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31639:3:81","nodeType":"YulIdentifier","src":"31639:3:81"},"nativeSrc":"31639:16:81","nodeType":"YulFunctionCall","src":"31639:16:81"}],"functionName":{"name":"mload","nativeSrc":"31633:5:81","nodeType":"YulIdentifier","src":"31633:5:81"},"nativeSrc":"31633:23:81","nodeType":"YulFunctionCall","src":"31633:23:81"}],"functionName":{"name":"mstore","nativeSrc":"31608:6:81","nodeType":"YulIdentifier","src":"31608:6:81"},"nativeSrc":"31608:49:81","nodeType":"YulFunctionCall","src":"31608:49:81"},"nativeSrc":"31608:49:81","nodeType":"YulExpressionStatement","src":"31608:49:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31677:3:81","nodeType":"YulIdentifier","src":"31677:3:81"},{"kind":"number","nativeSrc":"31682:6:81","nodeType":"YulLiteral","src":"31682:6:81","type":"","value":"0x01a0"}],"functionName":{"name":"add","nativeSrc":"31673:3:81","nodeType":"YulIdentifier","src":"31673:3:81"},"nativeSrc":"31673:16:81","nodeType":"YulFunctionCall","src":"31673:16:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31701:5:81","nodeType":"YulIdentifier","src":"31701:5:81"},{"kind":"number","nativeSrc":"31708:4:81","nodeType":"YulLiteral","src":"31708:4:81","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"31697:3:81","nodeType":"YulIdentifier","src":"31697:3:81"},"nativeSrc":"31697:16:81","nodeType":"YulFunctionCall","src":"31697:16:81"}],"functionName":{"name":"mload","nativeSrc":"31691:5:81","nodeType":"YulIdentifier","src":"31691:5:81"},"nativeSrc":"31691:23:81","nodeType":"YulFunctionCall","src":"31691:23:81"}],"functionName":{"name":"mstore","nativeSrc":"31666:6:81","nodeType":"YulIdentifier","src":"31666:6:81"},"nativeSrc":"31666:49:81","nodeType":"YulFunctionCall","src":"31666:49:81"},"nativeSrc":"31666:49:81","nodeType":"YulExpressionStatement","src":"31666:49:81"}]},"name":"abi_encode_struct_UserOpInfo","nativeSrc":"30816:905:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"30854:5:81","nodeType":"YulTypedName","src":"30854:5:81","type":""},{"name":"pos","nativeSrc":"30861:3:81","nodeType":"YulTypedName","src":"30861:3:81","type":""}],"src":"30816:905:81"},{"body":{"nativeSrc":"31973:280:81","nodeType":"YulBlock","src":"31973:280:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31990:9:81","nodeType":"YulIdentifier","src":"31990:9:81"},{"kind":"number","nativeSrc":"32001:3:81","nodeType":"YulLiteral","src":"32001:3:81","type":"","value":"512"}],"functionName":{"name":"mstore","nativeSrc":"31983:6:81","nodeType":"YulIdentifier","src":"31983:6:81"},"nativeSrc":"31983:22:81","nodeType":"YulFunctionCall","src":"31983:22:81"},"nativeSrc":"31983:22:81","nodeType":"YulExpressionStatement","src":"31983:22:81"},{"nativeSrc":"32014:59:81","nodeType":"YulVariableDeclaration","src":"32014:59:81","value":{"arguments":[{"name":"value0","nativeSrc":"32045:6:81","nodeType":"YulIdentifier","src":"32045:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"32057:9:81","nodeType":"YulIdentifier","src":"32057:9:81"},{"kind":"number","nativeSrc":"32068:3:81","nodeType":"YulLiteral","src":"32068:3:81","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"32053:3:81","nodeType":"YulIdentifier","src":"32053:3:81"},"nativeSrc":"32053:19:81","nodeType":"YulFunctionCall","src":"32053:19:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"32028:16:81","nodeType":"YulIdentifier","src":"32028:16:81"},"nativeSrc":"32028:45:81","nodeType":"YulFunctionCall","src":"32028:45:81"},"variables":[{"name":"tail_1","nativeSrc":"32018:6:81","nodeType":"YulTypedName","src":"32018:6:81","type":""}]},{"expression":{"arguments":[{"name":"value1","nativeSrc":"32111:6:81","nodeType":"YulIdentifier","src":"32111:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"32123:9:81","nodeType":"YulIdentifier","src":"32123:9:81"},{"kind":"number","nativeSrc":"32134:2:81","nodeType":"YulLiteral","src":"32134:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32119:3:81","nodeType":"YulIdentifier","src":"32119:3:81"},"nativeSrc":"32119:18:81","nodeType":"YulFunctionCall","src":"32119:18:81"}],"functionName":{"name":"abi_encode_struct_UserOpInfo","nativeSrc":"32082:28:81","nodeType":"YulIdentifier","src":"32082:28:81"},"nativeSrc":"32082:56:81","nodeType":"YulFunctionCall","src":"32082:56:81"},"nativeSrc":"32082:56:81","nodeType":"YulExpressionStatement","src":"32082:56:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32158:9:81","nodeType":"YulIdentifier","src":"32158:9:81"},{"kind":"number","nativeSrc":"32169:3:81","nodeType":"YulLiteral","src":"32169:3:81","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"32154:3:81","nodeType":"YulIdentifier","src":"32154:3:81"},"nativeSrc":"32154:19:81","nodeType":"YulFunctionCall","src":"32154:19:81"},{"arguments":[{"name":"tail_1","nativeSrc":"32179:6:81","nodeType":"YulIdentifier","src":"32179:6:81"},{"name":"headStart","nativeSrc":"32187:9:81","nodeType":"YulIdentifier","src":"32187:9:81"}],"functionName":{"name":"sub","nativeSrc":"32175:3:81","nodeType":"YulIdentifier","src":"32175:3:81"},"nativeSrc":"32175:22:81","nodeType":"YulFunctionCall","src":"32175:22:81"}],"functionName":{"name":"mstore","nativeSrc":"32147:6:81","nodeType":"YulIdentifier","src":"32147:6:81"},"nativeSrc":"32147:51:81","nodeType":"YulFunctionCall","src":"32147:51:81"},"nativeSrc":"32147:51:81","nodeType":"YulExpressionStatement","src":"32147:51:81"},{"nativeSrc":"32207:40:81","nodeType":"YulAssignment","src":"32207:40:81","value":{"arguments":[{"name":"value2","nativeSrc":"32232:6:81","nodeType":"YulIdentifier","src":"32232:6:81"},{"name":"tail_1","nativeSrc":"32240:6:81","nodeType":"YulIdentifier","src":"32240:6:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"32215:16:81","nodeType":"YulIdentifier","src":"32215:16:81"},"nativeSrc":"32215:32:81","nodeType":"YulFunctionCall","src":"32215:32:81"},"variableNames":[{"name":"tail","nativeSrc":"32207:4:81","nodeType":"YulIdentifier","src":"32207:4:81"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"31726:527:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31926:9:81","nodeType":"YulTypedName","src":"31926:9:81","type":""},{"name":"value2","nativeSrc":"31937:6:81","nodeType":"YulTypedName","src":"31937:6:81","type":""},{"name":"value1","nativeSrc":"31945:6:81","nodeType":"YulTypedName","src":"31945:6:81","type":""},{"name":"value0","nativeSrc":"31953:6:81","nodeType":"YulTypedName","src":"31953:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31964:4:81","nodeType":"YulTypedName","src":"31964:4:81","type":""}],"src":"31726:527:81"},{"body":{"nativeSrc":"32515:297:81","nodeType":"YulBlock","src":"32515:297:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32532:9:81","nodeType":"YulIdentifier","src":"32532:9:81"},{"kind":"number","nativeSrc":"32543:3:81","nodeType":"YulLiteral","src":"32543:3:81","type":"","value":"512"}],"functionName":{"name":"mstore","nativeSrc":"32525:6:81","nodeType":"YulIdentifier","src":"32525:6:81"},"nativeSrc":"32525:22:81","nodeType":"YulFunctionCall","src":"32525:22:81"},"nativeSrc":"32525:22:81","nodeType":"YulExpressionStatement","src":"32525:22:81"},{"nativeSrc":"32556:76:81","nodeType":"YulVariableDeclaration","src":"32556:76:81","value":{"arguments":[{"name":"value0","nativeSrc":"32596:6:81","nodeType":"YulIdentifier","src":"32596:6:81"},{"name":"value1","nativeSrc":"32604:6:81","nodeType":"YulIdentifier","src":"32604:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"32616:9:81","nodeType":"YulIdentifier","src":"32616:9:81"},{"kind":"number","nativeSrc":"32627:3:81","nodeType":"YulLiteral","src":"32627:3:81","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"32612:3:81","nodeType":"YulIdentifier","src":"32612:3:81"},"nativeSrc":"32612:19:81","nodeType":"YulFunctionCall","src":"32612:19:81"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"32570:25:81","nodeType":"YulIdentifier","src":"32570:25:81"},"nativeSrc":"32570:62:81","nodeType":"YulFunctionCall","src":"32570:62:81"},"variables":[{"name":"tail_1","nativeSrc":"32560:6:81","nodeType":"YulTypedName","src":"32560:6:81","type":""}]},{"expression":{"arguments":[{"name":"value2","nativeSrc":"32670:6:81","nodeType":"YulIdentifier","src":"32670:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"32682:9:81","nodeType":"YulIdentifier","src":"32682:9:81"},{"kind":"number","nativeSrc":"32693:2:81","nodeType":"YulLiteral","src":"32693:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32678:3:81","nodeType":"YulIdentifier","src":"32678:3:81"},"nativeSrc":"32678:18:81","nodeType":"YulFunctionCall","src":"32678:18:81"}],"functionName":{"name":"abi_encode_struct_UserOpInfo","nativeSrc":"32641:28:81","nodeType":"YulIdentifier","src":"32641:28:81"},"nativeSrc":"32641:56:81","nodeType":"YulFunctionCall","src":"32641:56:81"},"nativeSrc":"32641:56:81","nodeType":"YulExpressionStatement","src":"32641:56:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32717:9:81","nodeType":"YulIdentifier","src":"32717:9:81"},{"kind":"number","nativeSrc":"32728:3:81","nodeType":"YulLiteral","src":"32728:3:81","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"32713:3:81","nodeType":"YulIdentifier","src":"32713:3:81"},"nativeSrc":"32713:19:81","nodeType":"YulFunctionCall","src":"32713:19:81"},{"arguments":[{"name":"tail_1","nativeSrc":"32738:6:81","nodeType":"YulIdentifier","src":"32738:6:81"},{"name":"headStart","nativeSrc":"32746:9:81","nodeType":"YulIdentifier","src":"32746:9:81"}],"functionName":{"name":"sub","nativeSrc":"32734:3:81","nodeType":"YulIdentifier","src":"32734:3:81"},"nativeSrc":"32734:22:81","nodeType":"YulFunctionCall","src":"32734:22:81"}],"functionName":{"name":"mstore","nativeSrc":"32706:6:81","nodeType":"YulIdentifier","src":"32706:6:81"},"nativeSrc":"32706:51:81","nodeType":"YulFunctionCall","src":"32706:51:81"},"nativeSrc":"32706:51:81","nodeType":"YulExpressionStatement","src":"32706:51:81"},{"nativeSrc":"32766:40:81","nodeType":"YulAssignment","src":"32766:40:81","value":{"arguments":[{"name":"value3","nativeSrc":"32791:6:81","nodeType":"YulIdentifier","src":"32791:6:81"},{"name":"tail_1","nativeSrc":"32799:6:81","nodeType":"YulIdentifier","src":"32799:6:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"32774:16:81","nodeType":"YulIdentifier","src":"32774:16:81"},"nativeSrc":"32774:32:81","nodeType":"YulFunctionCall","src":"32774:32:81"},"variableNames":[{"name":"tail","nativeSrc":"32766:4:81","nodeType":"YulIdentifier","src":"32766:4:81"}]}]},"name":"abi_encode_tuple_t_bytes_calldata_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"32258:554:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32460:9:81","nodeType":"YulTypedName","src":"32460:9:81","type":""},{"name":"value3","nativeSrc":"32471:6:81","nodeType":"YulTypedName","src":"32471:6:81","type":""},{"name":"value2","nativeSrc":"32479:6:81","nodeType":"YulTypedName","src":"32479:6:81","type":""},{"name":"value1","nativeSrc":"32487:6:81","nodeType":"YulTypedName","src":"32487:6:81","type":""},{"name":"value0","nativeSrc":"32495:6:81","nodeType":"YulTypedName","src":"32495:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32506:4:81","nodeType":"YulTypedName","src":"32506:4:81","type":""}],"src":"32258:554:81"},{"body":{"nativeSrc":"33019:209:81","nodeType":"YulBlock","src":"33019:209:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33036:9:81","nodeType":"YulIdentifier","src":"33036:9:81"},{"name":"value0","nativeSrc":"33047:6:81","nodeType":"YulIdentifier","src":"33047:6:81"}],"functionName":{"name":"mstore","nativeSrc":"33029:6:81","nodeType":"YulIdentifier","src":"33029:6:81"},"nativeSrc":"33029:25:81","nodeType":"YulFunctionCall","src":"33029:25:81"},"nativeSrc":"33029:25:81","nodeType":"YulExpressionStatement","src":"33029:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33074:9:81","nodeType":"YulIdentifier","src":"33074:9:81"},{"kind":"number","nativeSrc":"33085:2:81","nodeType":"YulLiteral","src":"33085:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33070:3:81","nodeType":"YulIdentifier","src":"33070:3:81"},"nativeSrc":"33070:18:81","nodeType":"YulFunctionCall","src":"33070:18:81"},{"kind":"number","nativeSrc":"33090:2:81","nodeType":"YulLiteral","src":"33090:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"33063:6:81","nodeType":"YulIdentifier","src":"33063:6:81"},"nativeSrc":"33063:30:81","nodeType":"YulFunctionCall","src":"33063:30:81"},"nativeSrc":"33063:30:81","nodeType":"YulExpressionStatement","src":"33063:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33113:9:81","nodeType":"YulIdentifier","src":"33113:9:81"},{"kind":"number","nativeSrc":"33124:2:81","nodeType":"YulLiteral","src":"33124:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33109:3:81","nodeType":"YulIdentifier","src":"33109:3:81"},"nativeSrc":"33109:18:81","nodeType":"YulFunctionCall","src":"33109:18:81"},{"kind":"number","nativeSrc":"33129:2:81","nodeType":"YulLiteral","src":"33129:2:81","type":"","value":"15"}],"functionName":{"name":"mstore","nativeSrc":"33102:6:81","nodeType":"YulIdentifier","src":"33102:6:81"},"nativeSrc":"33102:30:81","nodeType":"YulFunctionCall","src":"33102:30:81"},"nativeSrc":"33102:30:81","nodeType":"YulExpressionStatement","src":"33102:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33152:9:81","nodeType":"YulIdentifier","src":"33152:9:81"},{"kind":"number","nativeSrc":"33163:2:81","nodeType":"YulLiteral","src":"33163:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33148:3:81","nodeType":"YulIdentifier","src":"33148:3:81"},"nativeSrc":"33148:18:81","nodeType":"YulFunctionCall","src":"33148:18:81"},{"hexValue":"41413935206f7574206f6620676173","kind":"string","nativeSrc":"33168:17:81","nodeType":"YulLiteral","src":"33168:17:81","type":"","value":"AA95 out of gas"}],"functionName":{"name":"mstore","nativeSrc":"33141:6:81","nodeType":"YulIdentifier","src":"33141:6:81"},"nativeSrc":"33141:45:81","nodeType":"YulFunctionCall","src":"33141:45:81"},"nativeSrc":"33141:45:81","nodeType":"YulExpressionStatement","src":"33141:45:81"},{"nativeSrc":"33195:27:81","nodeType":"YulAssignment","src":"33195:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"33207:9:81","nodeType":"YulIdentifier","src":"33207:9:81"},{"kind":"number","nativeSrc":"33218:3:81","nodeType":"YulLiteral","src":"33218:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"33203:3:81","nodeType":"YulIdentifier","src":"33203:3:81"},"nativeSrc":"33203:19:81","nodeType":"YulFunctionCall","src":"33203:19:81"},"variableNames":[{"name":"tail","nativeSrc":"33195:4:81","nodeType":"YulIdentifier","src":"33195:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"32817:411:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32988:9:81","nodeType":"YulTypedName","src":"32988:9:81","type":""},{"name":"value0","nativeSrc":"32999:6:81","nodeType":"YulTypedName","src":"32999:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33010:4:81","nodeType":"YulTypedName","src":"33010:4:81","type":""}],"src":"32817:411:81"},{"body":{"nativeSrc":"33407:174:81","nodeType":"YulBlock","src":"33407:174:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33424:9:81","nodeType":"YulIdentifier","src":"33424:9:81"},{"kind":"number","nativeSrc":"33435:2:81","nodeType":"YulLiteral","src":"33435:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33417:6:81","nodeType":"YulIdentifier","src":"33417:6:81"},"nativeSrc":"33417:21:81","nodeType":"YulFunctionCall","src":"33417:21:81"},"nativeSrc":"33417:21:81","nodeType":"YulExpressionStatement","src":"33417:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33458:9:81","nodeType":"YulIdentifier","src":"33458:9:81"},{"kind":"number","nativeSrc":"33469:2:81","nodeType":"YulLiteral","src":"33469:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33454:3:81","nodeType":"YulIdentifier","src":"33454:3:81"},"nativeSrc":"33454:18:81","nodeType":"YulFunctionCall","src":"33454:18:81"},{"kind":"number","nativeSrc":"33474:2:81","nodeType":"YulLiteral","src":"33474:2:81","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"33447:6:81","nodeType":"YulIdentifier","src":"33447:6:81"},"nativeSrc":"33447:30:81","nodeType":"YulFunctionCall","src":"33447:30:81"},"nativeSrc":"33447:30:81","nodeType":"YulExpressionStatement","src":"33447:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33497:9:81","nodeType":"YulIdentifier","src":"33497:9:81"},{"kind":"number","nativeSrc":"33508:2:81","nodeType":"YulLiteral","src":"33508:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33493:3:81","nodeType":"YulIdentifier","src":"33493:3:81"},"nativeSrc":"33493:18:81","nodeType":"YulFunctionCall","src":"33493:18:81"},{"hexValue":"4141393020696e76616c69642062656e6566696369617279","kind":"string","nativeSrc":"33513:26:81","nodeType":"YulLiteral","src":"33513:26:81","type":"","value":"AA90 invalid beneficiary"}],"functionName":{"name":"mstore","nativeSrc":"33486:6:81","nodeType":"YulIdentifier","src":"33486:6:81"},"nativeSrc":"33486:54:81","nodeType":"YulFunctionCall","src":"33486:54:81"},"nativeSrc":"33486:54:81","nodeType":"YulExpressionStatement","src":"33486:54:81"},{"nativeSrc":"33549:26:81","nodeType":"YulAssignment","src":"33549:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"33561:9:81","nodeType":"YulIdentifier","src":"33561:9:81"},{"kind":"number","nativeSrc":"33572:2:81","nodeType":"YulLiteral","src":"33572:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33557:3:81","nodeType":"YulIdentifier","src":"33557:3:81"},"nativeSrc":"33557:18:81","nodeType":"YulFunctionCall","src":"33557:18:81"},"variableNames":[{"name":"tail","nativeSrc":"33549:4:81","nodeType":"YulIdentifier","src":"33549:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33233:348:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33384:9:81","nodeType":"YulTypedName","src":"33384:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33398:4:81","nodeType":"YulTypedName","src":"33398:4:81","type":""}],"src":"33233:348:81"},{"body":{"nativeSrc":"33760:181:81","nodeType":"YulBlock","src":"33760:181:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33777:9:81","nodeType":"YulIdentifier","src":"33777:9:81"},{"kind":"number","nativeSrc":"33788:2:81","nodeType":"YulLiteral","src":"33788:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33770:6:81","nodeType":"YulIdentifier","src":"33770:6:81"},"nativeSrc":"33770:21:81","nodeType":"YulFunctionCall","src":"33770:21:81"},"nativeSrc":"33770:21:81","nodeType":"YulExpressionStatement","src":"33770:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33811:9:81","nodeType":"YulIdentifier","src":"33811:9:81"},{"kind":"number","nativeSrc":"33822:2:81","nodeType":"YulLiteral","src":"33822:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33807:3:81","nodeType":"YulIdentifier","src":"33807:3:81"},"nativeSrc":"33807:18:81","nodeType":"YulFunctionCall","src":"33807:18:81"},{"kind":"number","nativeSrc":"33827:2:81","nodeType":"YulLiteral","src":"33827:2:81","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"33800:6:81","nodeType":"YulIdentifier","src":"33800:6:81"},"nativeSrc":"33800:30:81","nodeType":"YulFunctionCall","src":"33800:30:81"},"nativeSrc":"33800:30:81","nodeType":"YulExpressionStatement","src":"33800:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33850:9:81","nodeType":"YulIdentifier","src":"33850:9:81"},{"kind":"number","nativeSrc":"33861:2:81","nodeType":"YulLiteral","src":"33861:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33846:3:81","nodeType":"YulIdentifier","src":"33846:3:81"},"nativeSrc":"33846:18:81","nodeType":"YulFunctionCall","src":"33846:18:81"},{"hexValue":"41413931206661696c65642073656e6420746f2062656e6566696369617279","kind":"string","nativeSrc":"33866:33:81","nodeType":"YulLiteral","src":"33866:33:81","type":"","value":"AA91 failed send to beneficiary"}],"functionName":{"name":"mstore","nativeSrc":"33839:6:81","nodeType":"YulIdentifier","src":"33839:6:81"},"nativeSrc":"33839:61:81","nodeType":"YulFunctionCall","src":"33839:61:81"},"nativeSrc":"33839:61:81","nodeType":"YulExpressionStatement","src":"33839:61:81"},{"nativeSrc":"33909:26:81","nodeType":"YulAssignment","src":"33909:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"33921:9:81","nodeType":"YulIdentifier","src":"33921:9:81"},{"kind":"number","nativeSrc":"33932:2:81","nodeType":"YulLiteral","src":"33932:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33917:3:81","nodeType":"YulIdentifier","src":"33917:3:81"},"nativeSrc":"33917:18:81","nodeType":"YulFunctionCall","src":"33917:18:81"},"variableNames":[{"name":"tail","nativeSrc":"33909:4:81","nodeType":"YulIdentifier","src":"33909:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33586:355:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33737:9:81","nodeType":"YulTypedName","src":"33737:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33751:4:81","nodeType":"YulTypedName","src":"33751:4:81","type":""}],"src":"33586:355:81"},{"body":{"nativeSrc":"34125:222:81","nodeType":"YulBlock","src":"34125:222:81","statements":[{"nativeSrc":"34135:27:81","nodeType":"YulAssignment","src":"34135:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"34147:9:81","nodeType":"YulIdentifier","src":"34147:9:81"},{"kind":"number","nativeSrc":"34158:3:81","nodeType":"YulLiteral","src":"34158:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34143:3:81","nodeType":"YulIdentifier","src":"34143:3:81"},"nativeSrc":"34143:19:81","nodeType":"YulFunctionCall","src":"34143:19:81"},"variableNames":[{"name":"tail","nativeSrc":"34135:4:81","nodeType":"YulIdentifier","src":"34135:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34178:9:81","nodeType":"YulIdentifier","src":"34178:9:81"},{"name":"value0","nativeSrc":"34189:6:81","nodeType":"YulIdentifier","src":"34189:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34171:6:81","nodeType":"YulIdentifier","src":"34171:6:81"},"nativeSrc":"34171:25:81","nodeType":"YulFunctionCall","src":"34171:25:81"},"nativeSrc":"34171:25:81","nodeType":"YulExpressionStatement","src":"34171:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34216:9:81","nodeType":"YulIdentifier","src":"34216:9:81"},{"kind":"number","nativeSrc":"34227:2:81","nodeType":"YulLiteral","src":"34227:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34212:3:81","nodeType":"YulIdentifier","src":"34212:3:81"},"nativeSrc":"34212:18:81","nodeType":"YulFunctionCall","src":"34212:18:81"},{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"34246:6:81","nodeType":"YulIdentifier","src":"34246:6:81"}],"functionName":{"name":"iszero","nativeSrc":"34239:6:81","nodeType":"YulIdentifier","src":"34239:6:81"},"nativeSrc":"34239:14:81","nodeType":"YulFunctionCall","src":"34239:14:81"}],"functionName":{"name":"iszero","nativeSrc":"34232:6:81","nodeType":"YulIdentifier","src":"34232:6:81"},"nativeSrc":"34232:22:81","nodeType":"YulFunctionCall","src":"34232:22:81"}],"functionName":{"name":"mstore","nativeSrc":"34205:6:81","nodeType":"YulIdentifier","src":"34205:6:81"},"nativeSrc":"34205:50:81","nodeType":"YulFunctionCall","src":"34205:50:81"},"nativeSrc":"34205:50:81","nodeType":"YulExpressionStatement","src":"34205:50:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34275:9:81","nodeType":"YulIdentifier","src":"34275:9:81"},{"kind":"number","nativeSrc":"34286:2:81","nodeType":"YulLiteral","src":"34286:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34271:3:81","nodeType":"YulIdentifier","src":"34271:3:81"},"nativeSrc":"34271:18:81","nodeType":"YulFunctionCall","src":"34271:18:81"},{"name":"value2","nativeSrc":"34291:6:81","nodeType":"YulIdentifier","src":"34291:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34264:6:81","nodeType":"YulIdentifier","src":"34264:6:81"},"nativeSrc":"34264:34:81","nodeType":"YulFunctionCall","src":"34264:34:81"},"nativeSrc":"34264:34:81","nodeType":"YulExpressionStatement","src":"34264:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34318:9:81","nodeType":"YulIdentifier","src":"34318:9:81"},{"kind":"number","nativeSrc":"34329:2:81","nodeType":"YulLiteral","src":"34329:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34314:3:81","nodeType":"YulIdentifier","src":"34314:3:81"},"nativeSrc":"34314:18:81","nodeType":"YulFunctionCall","src":"34314:18:81"},{"name":"value3","nativeSrc":"34334:6:81","nodeType":"YulIdentifier","src":"34334:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34307:6:81","nodeType":"YulIdentifier","src":"34307:6:81"},"nativeSrc":"34307:34:81","nodeType":"YulFunctionCall","src":"34307:34:81"},"nativeSrc":"34307:34:81","nodeType":"YulExpressionStatement","src":"34307:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_bool_t_uint256_t_uint256__to_t_uint256_t_bool_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"33946:401:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34070:9:81","nodeType":"YulTypedName","src":"34070:9:81","type":""},{"name":"value3","nativeSrc":"34081:6:81","nodeType":"YulTypedName","src":"34081:6:81","type":""},{"name":"value2","nativeSrc":"34089:6:81","nodeType":"YulTypedName","src":"34089:6:81","type":""},{"name":"value1","nativeSrc":"34097:6:81","nodeType":"YulTypedName","src":"34097:6:81","type":""},{"name":"value0","nativeSrc":"34105:6:81","nodeType":"YulTypedName","src":"34105:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34116:4:81","nodeType":"YulTypedName","src":"34116:4:81","type":""}],"src":"33946:401:81"},{"body":{"nativeSrc":"34649:408:81","nodeType":"YulBlock","src":"34649:408:81","statements":[{"nativeSrc":"34659:27:81","nodeType":"YulAssignment","src":"34659:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"34671:9:81","nodeType":"YulIdentifier","src":"34671:9:81"},{"kind":"number","nativeSrc":"34682:3:81","nodeType":"YulLiteral","src":"34682:3:81","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"34667:3:81","nodeType":"YulIdentifier","src":"34667:3:81"},"nativeSrc":"34667:19:81","nodeType":"YulFunctionCall","src":"34667:19:81"},"variableNames":[{"name":"tail","nativeSrc":"34659:4:81","nodeType":"YulIdentifier","src":"34659:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34702:9:81","nodeType":"YulIdentifier","src":"34702:9:81"},{"arguments":[{"name":"value0","nativeSrc":"34717:6:81","nodeType":"YulIdentifier","src":"34717:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34733:3:81","nodeType":"YulLiteral","src":"34733:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"34738:1:81","nodeType":"YulLiteral","src":"34738:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34729:3:81","nodeType":"YulIdentifier","src":"34729:3:81"},"nativeSrc":"34729:11:81","nodeType":"YulFunctionCall","src":"34729:11:81"},{"kind":"number","nativeSrc":"34742:1:81","nodeType":"YulLiteral","src":"34742:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34725:3:81","nodeType":"YulIdentifier","src":"34725:3:81"},"nativeSrc":"34725:19:81","nodeType":"YulFunctionCall","src":"34725:19:81"}],"functionName":{"name":"and","nativeSrc":"34713:3:81","nodeType":"YulIdentifier","src":"34713:3:81"},"nativeSrc":"34713:32:81","nodeType":"YulFunctionCall","src":"34713:32:81"}],"functionName":{"name":"mstore","nativeSrc":"34695:6:81","nodeType":"YulIdentifier","src":"34695:6:81"},"nativeSrc":"34695:51:81","nodeType":"YulFunctionCall","src":"34695:51:81"},"nativeSrc":"34695:51:81","nodeType":"YulExpressionStatement","src":"34695:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34766:9:81","nodeType":"YulIdentifier","src":"34766:9:81"},{"kind":"number","nativeSrc":"34777:2:81","nodeType":"YulLiteral","src":"34777:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34762:3:81","nodeType":"YulIdentifier","src":"34762:3:81"},"nativeSrc":"34762:18:81","nodeType":"YulFunctionCall","src":"34762:18:81"},{"name":"value1","nativeSrc":"34782:6:81","nodeType":"YulIdentifier","src":"34782:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34755:6:81","nodeType":"YulIdentifier","src":"34755:6:81"},"nativeSrc":"34755:34:81","nodeType":"YulFunctionCall","src":"34755:34:81"},"nativeSrc":"34755:34:81","nodeType":"YulExpressionStatement","src":"34755:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34809:9:81","nodeType":"YulIdentifier","src":"34809:9:81"},{"kind":"number","nativeSrc":"34820:2:81","nodeType":"YulLiteral","src":"34820:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34805:3:81","nodeType":"YulIdentifier","src":"34805:3:81"},"nativeSrc":"34805:18:81","nodeType":"YulFunctionCall","src":"34805:18:81"},{"name":"value2","nativeSrc":"34825:6:81","nodeType":"YulIdentifier","src":"34825:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34798:6:81","nodeType":"YulIdentifier","src":"34798:6:81"},"nativeSrc":"34798:34:81","nodeType":"YulFunctionCall","src":"34798:34:81"},"nativeSrc":"34798:34:81","nodeType":"YulExpressionStatement","src":"34798:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34852:9:81","nodeType":"YulIdentifier","src":"34852:9:81"},{"kind":"number","nativeSrc":"34863:2:81","nodeType":"YulLiteral","src":"34863:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34848:3:81","nodeType":"YulIdentifier","src":"34848:3:81"},"nativeSrc":"34848:18:81","nodeType":"YulFunctionCall","src":"34848:18:81"},{"name":"value3","nativeSrc":"34868:6:81","nodeType":"YulIdentifier","src":"34868:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34841:6:81","nodeType":"YulIdentifier","src":"34841:6:81"},"nativeSrc":"34841:34:81","nodeType":"YulFunctionCall","src":"34841:34:81"},"nativeSrc":"34841:34:81","nodeType":"YulExpressionStatement","src":"34841:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34895:9:81","nodeType":"YulIdentifier","src":"34895:9:81"},{"kind":"number","nativeSrc":"34906:3:81","nodeType":"YulLiteral","src":"34906:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34891:3:81","nodeType":"YulIdentifier","src":"34891:3:81"},"nativeSrc":"34891:19:81","nodeType":"YulFunctionCall","src":"34891:19:81"},{"name":"value4","nativeSrc":"34912:6:81","nodeType":"YulIdentifier","src":"34912:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34884:6:81","nodeType":"YulIdentifier","src":"34884:6:81"},"nativeSrc":"34884:35:81","nodeType":"YulFunctionCall","src":"34884:35:81"},"nativeSrc":"34884:35:81","nodeType":"YulExpressionStatement","src":"34884:35:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34939:9:81","nodeType":"YulIdentifier","src":"34939:9:81"},{"kind":"number","nativeSrc":"34950:3:81","nodeType":"YulLiteral","src":"34950:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"34935:3:81","nodeType":"YulIdentifier","src":"34935:3:81"},"nativeSrc":"34935:19:81","nodeType":"YulFunctionCall","src":"34935:19:81"},{"name":"value5","nativeSrc":"34956:6:81","nodeType":"YulIdentifier","src":"34956:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34928:6:81","nodeType":"YulIdentifier","src":"34928:6:81"},"nativeSrc":"34928:35:81","nodeType":"YulFunctionCall","src":"34928:35:81"},"nativeSrc":"34928:35:81","nodeType":"YulExpressionStatement","src":"34928:35:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34983:9:81","nodeType":"YulIdentifier","src":"34983:9:81"},{"kind":"number","nativeSrc":"34994:3:81","nodeType":"YulLiteral","src":"34994:3:81","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"34979:3:81","nodeType":"YulIdentifier","src":"34979:3:81"},"nativeSrc":"34979:19:81","nodeType":"YulFunctionCall","src":"34979:19:81"},{"name":"value6","nativeSrc":"35000:6:81","nodeType":"YulIdentifier","src":"35000:6:81"}],"functionName":{"name":"mstore","nativeSrc":"34972:6:81","nodeType":"YulIdentifier","src":"34972:6:81"},"nativeSrc":"34972:35:81","nodeType":"YulFunctionCall","src":"34972:35:81"},"nativeSrc":"34972:35:81","nodeType":"YulExpressionStatement","src":"34972:35:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35027:9:81","nodeType":"YulIdentifier","src":"35027:9:81"},{"kind":"number","nativeSrc":"35038:3:81","nodeType":"YulLiteral","src":"35038:3:81","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"35023:3:81","nodeType":"YulIdentifier","src":"35023:3:81"},"nativeSrc":"35023:19:81","nodeType":"YulFunctionCall","src":"35023:19:81"},{"name":"value7","nativeSrc":"35044:6:81","nodeType":"YulIdentifier","src":"35044:6:81"}],"functionName":{"name":"mstore","nativeSrc":"35016:6:81","nodeType":"YulIdentifier","src":"35016:6:81"},"nativeSrc":"35016:35:81","nodeType":"YulFunctionCall","src":"35016:35:81"},"nativeSrc":"35016:35:81","nodeType":"YulExpressionStatement","src":"35016:35:81"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__to_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"34352:705:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34562:9:81","nodeType":"YulTypedName","src":"34562:9:81","type":""},{"name":"value7","nativeSrc":"34573:6:81","nodeType":"YulTypedName","src":"34573:6:81","type":""},{"name":"value6","nativeSrc":"34581:6:81","nodeType":"YulTypedName","src":"34581:6:81","type":""},{"name":"value5","nativeSrc":"34589:6:81","nodeType":"YulTypedName","src":"34589:6:81","type":""},{"name":"value4","nativeSrc":"34597:6:81","nodeType":"YulTypedName","src":"34597:6:81","type":""},{"name":"value3","nativeSrc":"34605:6:81","nodeType":"YulTypedName","src":"34605:6:81","type":""},{"name":"value2","nativeSrc":"34613:6:81","nodeType":"YulTypedName","src":"34613:6:81","type":""},{"name":"value1","nativeSrc":"34621:6:81","nodeType":"YulTypedName","src":"34621:6:81","type":""},{"name":"value0","nativeSrc":"34629:6:81","nodeType":"YulTypedName","src":"34629:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34640:4:81","nodeType":"YulTypedName","src":"34640:4:81","type":""}],"src":"34352:705:81"},{"body":{"nativeSrc":"35236:179:81","nodeType":"YulBlock","src":"35236:179:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35253:9:81","nodeType":"YulIdentifier","src":"35253:9:81"},{"kind":"number","nativeSrc":"35264:2:81","nodeType":"YulLiteral","src":"35264:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35246:6:81","nodeType":"YulIdentifier","src":"35246:6:81"},"nativeSrc":"35246:21:81","nodeType":"YulFunctionCall","src":"35246:21:81"},"nativeSrc":"35246:21:81","nodeType":"YulExpressionStatement","src":"35246:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35287:9:81","nodeType":"YulIdentifier","src":"35287:9:81"},{"kind":"number","nativeSrc":"35298:2:81","nodeType":"YulLiteral","src":"35298:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35283:3:81","nodeType":"YulIdentifier","src":"35283:3:81"},"nativeSrc":"35283:18:81","nodeType":"YulFunctionCall","src":"35283:18:81"},{"kind":"number","nativeSrc":"35303:2:81","nodeType":"YulLiteral","src":"35303:2:81","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"35276:6:81","nodeType":"YulIdentifier","src":"35276:6:81"},"nativeSrc":"35276:30:81","nodeType":"YulFunctionCall","src":"35276:30:81"},"nativeSrc":"35276:30:81","nodeType":"YulExpressionStatement","src":"35276:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35326:9:81","nodeType":"YulIdentifier","src":"35326:9:81"},{"kind":"number","nativeSrc":"35337:2:81","nodeType":"YulLiteral","src":"35337:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35322:3:81","nodeType":"YulIdentifier","src":"35322:3:81"},"nativeSrc":"35322:18:81","nodeType":"YulFunctionCall","src":"35322:18:81"},{"hexValue":"4141393320696e76616c6964207061796d6173746572416e6444617461","kind":"string","nativeSrc":"35342:31:81","nodeType":"YulLiteral","src":"35342:31:81","type":"","value":"AA93 invalid paymasterAndData"}],"functionName":{"name":"mstore","nativeSrc":"35315:6:81","nodeType":"YulIdentifier","src":"35315:6:81"},"nativeSrc":"35315:59:81","nodeType":"YulFunctionCall","src":"35315:59:81"},"nativeSrc":"35315:59:81","nodeType":"YulExpressionStatement","src":"35315:59:81"},{"nativeSrc":"35383:26:81","nodeType":"YulAssignment","src":"35383:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"35395:9:81","nodeType":"YulIdentifier","src":"35395:9:81"},{"kind":"number","nativeSrc":"35406:2:81","nodeType":"YulLiteral","src":"35406:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35391:3:81","nodeType":"YulIdentifier","src":"35391:3:81"},"nativeSrc":"35391:18:81","nodeType":"YulFunctionCall","src":"35391:18:81"},"variableNames":[{"name":"tail","nativeSrc":"35383:4:81","nodeType":"YulIdentifier","src":"35383:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"35062:353:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35213:9:81","nodeType":"YulTypedName","src":"35213:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35227:4:81","nodeType":"YulTypedName","src":"35227:4:81","type":""}],"src":"35062:353:81"},{"body":{"nativeSrc":"35653:214:81","nodeType":"YulBlock","src":"35653:214:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35670:9:81","nodeType":"YulIdentifier","src":"35670:9:81"},{"kind":"number","nativeSrc":"35681:2:81","nodeType":"YulLiteral","src":"35681:2:81","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"35663:6:81","nodeType":"YulIdentifier","src":"35663:6:81"},"nativeSrc":"35663:21:81","nodeType":"YulFunctionCall","src":"35663:21:81"},"nativeSrc":"35663:21:81","nodeType":"YulExpressionStatement","src":"35663:21:81"},{"nativeSrc":"35693:82:81","nodeType":"YulAssignment","src":"35693:82:81","value":{"arguments":[{"name":"value0","nativeSrc":"35748:6:81","nodeType":"YulIdentifier","src":"35748:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"35760:9:81","nodeType":"YulIdentifier","src":"35760:9:81"},{"kind":"number","nativeSrc":"35771:2:81","nodeType":"YulLiteral","src":"35771:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35756:3:81","nodeType":"YulIdentifier","src":"35756:3:81"},"nativeSrc":"35756:18:81","nodeType":"YulFunctionCall","src":"35756:18:81"}],"functionName":{"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"35701:46:81","nodeType":"YulIdentifier","src":"35701:46:81"},"nativeSrc":"35701:74:81","nodeType":"YulFunctionCall","src":"35701:74:81"},"variableNames":[{"name":"tail","nativeSrc":"35693:4:81","nodeType":"YulIdentifier","src":"35693:4:81"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35795:9:81","nodeType":"YulIdentifier","src":"35795:9:81"},{"kind":"number","nativeSrc":"35806:2:81","nodeType":"YulLiteral","src":"35806:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35791:3:81","nodeType":"YulIdentifier","src":"35791:3:81"},"nativeSrc":"35791:18:81","nodeType":"YulFunctionCall","src":"35791:18:81"},{"name":"value1","nativeSrc":"35811:6:81","nodeType":"YulIdentifier","src":"35811:6:81"}],"functionName":{"name":"mstore","nativeSrc":"35784:6:81","nodeType":"YulIdentifier","src":"35784:6:81"},"nativeSrc":"35784:34:81","nodeType":"YulFunctionCall","src":"35784:34:81"},"nativeSrc":"35784:34:81","nodeType":"YulExpressionStatement","src":"35784:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35838:9:81","nodeType":"YulIdentifier","src":"35838:9:81"},{"kind":"number","nativeSrc":"35849:2:81","nodeType":"YulLiteral","src":"35849:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35834:3:81","nodeType":"YulIdentifier","src":"35834:3:81"},"nativeSrc":"35834:18:81","nodeType":"YulFunctionCall","src":"35834:18:81"},{"name":"value2","nativeSrc":"35854:6:81","nodeType":"YulIdentifier","src":"35854:6:81"}],"functionName":{"name":"mstore","nativeSrc":"35827:6:81","nodeType":"YulIdentifier","src":"35827:6:81"},"nativeSrc":"35827:34:81","nodeType":"YulFunctionCall","src":"35827:34:81"},"nativeSrc":"35827:34:81","nodeType":"YulExpressionStatement","src":"35827:34:81"}]},"name":"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32_t_uint256__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32_t_uint256__fromStack_reversed","nativeSrc":"35420:447:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35606:9:81","nodeType":"YulTypedName","src":"35606:9:81","type":""},{"name":"value2","nativeSrc":"35617:6:81","nodeType":"YulTypedName","src":"35617:6:81","type":""},{"name":"value1","nativeSrc":"35625:6:81","nodeType":"YulTypedName","src":"35625:6:81","type":""},{"name":"value0","nativeSrc":"35633:6:81","nodeType":"YulTypedName","src":"35633:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35644:4:81","nodeType":"YulTypedName","src":"35644:4:81","type":""}],"src":"35420:447:81"},{"body":{"nativeSrc":"35953:149:81","nodeType":"YulBlock","src":"35953:149:81","statements":[{"body":{"nativeSrc":"35999:16:81","nodeType":"YulBlock","src":"35999:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36008:1:81","nodeType":"YulLiteral","src":"36008:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"36011:1:81","nodeType":"YulLiteral","src":"36011:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"36001:6:81","nodeType":"YulIdentifier","src":"36001:6:81"},"nativeSrc":"36001:12:81","nodeType":"YulFunctionCall","src":"36001:12:81"},"nativeSrc":"36001:12:81","nodeType":"YulExpressionStatement","src":"36001:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"35974:7:81","nodeType":"YulIdentifier","src":"35974:7:81"},{"name":"headStart","nativeSrc":"35983:9:81","nodeType":"YulIdentifier","src":"35983:9:81"}],"functionName":{"name":"sub","nativeSrc":"35970:3:81","nodeType":"YulIdentifier","src":"35970:3:81"},"nativeSrc":"35970:23:81","nodeType":"YulFunctionCall","src":"35970:23:81"},{"kind":"number","nativeSrc":"35995:2:81","nodeType":"YulLiteral","src":"35995:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"35966:3:81","nodeType":"YulIdentifier","src":"35966:3:81"},"nativeSrc":"35966:32:81","nodeType":"YulFunctionCall","src":"35966:32:81"},"nativeSrc":"35963:52:81","nodeType":"YulIf","src":"35963:52:81"},{"nativeSrc":"36024:14:81","nodeType":"YulVariableDeclaration","src":"36024:14:81","value":{"kind":"number","nativeSrc":"36037:1:81","nodeType":"YulLiteral","src":"36037:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"36028:5:81","nodeType":"YulTypedName","src":"36028:5:81","type":""}]},{"nativeSrc":"36047:25:81","nodeType":"YulAssignment","src":"36047:25:81","value":{"arguments":[{"name":"headStart","nativeSrc":"36062:9:81","nodeType":"YulIdentifier","src":"36062:9:81"}],"functionName":{"name":"mload","nativeSrc":"36056:5:81","nodeType":"YulIdentifier","src":"36056:5:81"},"nativeSrc":"36056:16:81","nodeType":"YulFunctionCall","src":"36056:16:81"},"variableNames":[{"name":"value","nativeSrc":"36047:5:81","nodeType":"YulIdentifier","src":"36047:5:81"}]},{"nativeSrc":"36081:15:81","nodeType":"YulAssignment","src":"36081:15:81","value":{"name":"value","nativeSrc":"36091:5:81","nodeType":"YulIdentifier","src":"36091:5:81"},"variableNames":[{"name":"value0","nativeSrc":"36081:6:81","nodeType":"YulIdentifier","src":"36081:6:81"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"35872:230:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35919:9:81","nodeType":"YulTypedName","src":"35919:9:81","type":""},{"name":"dataEnd","nativeSrc":"35930:7:81","nodeType":"YulTypedName","src":"35930:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"35942:6:81","nodeType":"YulTypedName","src":"35942:6:81","type":""}],"src":"35872:230:81"},{"body":{"nativeSrc":"36355:274:81","nodeType":"YulBlock","src":"36355:274:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36372:9:81","nodeType":"YulIdentifier","src":"36372:9:81"},{"name":"value0","nativeSrc":"36383:6:81","nodeType":"YulIdentifier","src":"36383:6:81"}],"functionName":{"name":"mstore","nativeSrc":"36365:6:81","nodeType":"YulIdentifier","src":"36365:6:81"},"nativeSrc":"36365:25:81","nodeType":"YulFunctionCall","src":"36365:25:81"},"nativeSrc":"36365:25:81","nodeType":"YulExpressionStatement","src":"36365:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36410:9:81","nodeType":"YulIdentifier","src":"36410:9:81"},{"kind":"number","nativeSrc":"36421:2:81","nodeType":"YulLiteral","src":"36421:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36406:3:81","nodeType":"YulIdentifier","src":"36406:3:81"},"nativeSrc":"36406:18:81","nodeType":"YulFunctionCall","src":"36406:18:81"},{"kind":"number","nativeSrc":"36426:2:81","nodeType":"YulLiteral","src":"36426:2:81","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"36399:6:81","nodeType":"YulIdentifier","src":"36399:6:81"},"nativeSrc":"36399:30:81","nodeType":"YulFunctionCall","src":"36399:30:81"},"nativeSrc":"36399:30:81","nodeType":"YulExpressionStatement","src":"36399:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36449:9:81","nodeType":"YulIdentifier","src":"36449:9:81"},{"kind":"number","nativeSrc":"36460:2:81","nodeType":"YulLiteral","src":"36460:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36445:3:81","nodeType":"YulIdentifier","src":"36445:3:81"},"nativeSrc":"36445:18:81","nodeType":"YulFunctionCall","src":"36445:18:81"},{"kind":"number","nativeSrc":"36465:2:81","nodeType":"YulLiteral","src":"36465:2:81","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"36438:6:81","nodeType":"YulIdentifier","src":"36438:6:81"},"nativeSrc":"36438:30:81","nodeType":"YulFunctionCall","src":"36438:30:81"},"nativeSrc":"36438:30:81","nodeType":"YulExpressionStatement","src":"36438:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36488:9:81","nodeType":"YulIdentifier","src":"36488:9:81"},{"kind":"number","nativeSrc":"36499:3:81","nodeType":"YulLiteral","src":"36499:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"36484:3:81","nodeType":"YulIdentifier","src":"36484:3:81"},"nativeSrc":"36484:19:81","nodeType":"YulFunctionCall","src":"36484:19:81"},{"hexValue":"41413233207265766572746564","kind":"string","nativeSrc":"36505:15:81","nodeType":"YulLiteral","src":"36505:15:81","type":"","value":"AA23 reverted"}],"functionName":{"name":"mstore","nativeSrc":"36477:6:81","nodeType":"YulIdentifier","src":"36477:6:81"},"nativeSrc":"36477:44:81","nodeType":"YulFunctionCall","src":"36477:44:81"},"nativeSrc":"36477:44:81","nodeType":"YulExpressionStatement","src":"36477:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36541:9:81","nodeType":"YulIdentifier","src":"36541:9:81"},{"kind":"number","nativeSrc":"36552:2:81","nodeType":"YulLiteral","src":"36552:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36537:3:81","nodeType":"YulIdentifier","src":"36537:3:81"},"nativeSrc":"36537:18:81","nodeType":"YulFunctionCall","src":"36537:18:81"},{"kind":"number","nativeSrc":"36557:3:81","nodeType":"YulLiteral","src":"36557:3:81","type":"","value":"160"}],"functionName":{"name":"mstore","nativeSrc":"36530:6:81","nodeType":"YulIdentifier","src":"36530:6:81"},"nativeSrc":"36530:31:81","nodeType":"YulFunctionCall","src":"36530:31:81"},"nativeSrc":"36530:31:81","nodeType":"YulExpressionStatement","src":"36530:31:81"},{"nativeSrc":"36570:53:81","nodeType":"YulAssignment","src":"36570:53:81","value":{"arguments":[{"name":"value1","nativeSrc":"36595:6:81","nodeType":"YulIdentifier","src":"36595:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"36607:9:81","nodeType":"YulIdentifier","src":"36607:9:81"},{"kind":"number","nativeSrc":"36618:3:81","nodeType":"YulLiteral","src":"36618:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"36603:3:81","nodeType":"YulIdentifier","src":"36603:3:81"},"nativeSrc":"36603:19:81","nodeType":"YulFunctionCall","src":"36603:19:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"36578:16:81","nodeType":"YulIdentifier","src":"36578:16:81"},"nativeSrc":"36578:45:81","nodeType":"YulFunctionCall","src":"36578:45:81"},"variableNames":[{"name":"tail","nativeSrc":"36570:4:81","nodeType":"YulIdentifier","src":"36570:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"36107:522:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36316:9:81","nodeType":"YulTypedName","src":"36316:9:81","type":""},{"name":"value1","nativeSrc":"36327:6:81","nodeType":"YulTypedName","src":"36327:6:81","type":""},{"name":"value0","nativeSrc":"36335:6:81","nodeType":"YulTypedName","src":"36335:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36346:4:81","nodeType":"YulTypedName","src":"36346:4:81","type":""}],"src":"36107:522:81"},{"body":{"nativeSrc":"36836:217:81","nodeType":"YulBlock","src":"36836:217:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36853:9:81","nodeType":"YulIdentifier","src":"36853:9:81"},{"name":"value0","nativeSrc":"36864:6:81","nodeType":"YulIdentifier","src":"36864:6:81"}],"functionName":{"name":"mstore","nativeSrc":"36846:6:81","nodeType":"YulIdentifier","src":"36846:6:81"},"nativeSrc":"36846:25:81","nodeType":"YulFunctionCall","src":"36846:25:81"},"nativeSrc":"36846:25:81","nodeType":"YulExpressionStatement","src":"36846:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36891:9:81","nodeType":"YulIdentifier","src":"36891:9:81"},{"kind":"number","nativeSrc":"36902:2:81","nodeType":"YulLiteral","src":"36902:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36887:3:81","nodeType":"YulIdentifier","src":"36887:3:81"},"nativeSrc":"36887:18:81","nodeType":"YulFunctionCall","src":"36887:18:81"},{"kind":"number","nativeSrc":"36907:2:81","nodeType":"YulLiteral","src":"36907:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"36880:6:81","nodeType":"YulIdentifier","src":"36880:6:81"},"nativeSrc":"36880:30:81","nodeType":"YulFunctionCall","src":"36880:30:81"},"nativeSrc":"36880:30:81","nodeType":"YulExpressionStatement","src":"36880:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36930:9:81","nodeType":"YulIdentifier","src":"36930:9:81"},{"kind":"number","nativeSrc":"36941:2:81","nodeType":"YulLiteral","src":"36941:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36926:3:81","nodeType":"YulIdentifier","src":"36926:3:81"},"nativeSrc":"36926:18:81","nodeType":"YulFunctionCall","src":"36926:18:81"},{"kind":"number","nativeSrc":"36946:2:81","nodeType":"YulLiteral","src":"36946:2:81","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"36919:6:81","nodeType":"YulIdentifier","src":"36919:6:81"},"nativeSrc":"36919:30:81","nodeType":"YulFunctionCall","src":"36919:30:81"},"nativeSrc":"36919:30:81","nodeType":"YulExpressionStatement","src":"36919:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36969:9:81","nodeType":"YulIdentifier","src":"36969:9:81"},{"kind":"number","nativeSrc":"36980:2:81","nodeType":"YulLiteral","src":"36980:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36965:3:81","nodeType":"YulIdentifier","src":"36965:3:81"},"nativeSrc":"36965:18:81","nodeType":"YulFunctionCall","src":"36965:18:81"},{"hexValue":"41413231206469646e2774207061792070726566756e64","kind":"string","nativeSrc":"36985:25:81","nodeType":"YulLiteral","src":"36985:25:81","type":"","value":"AA21 didn't pay prefund"}],"functionName":{"name":"mstore","nativeSrc":"36958:6:81","nodeType":"YulIdentifier","src":"36958:6:81"},"nativeSrc":"36958:53:81","nodeType":"YulFunctionCall","src":"36958:53:81"},"nativeSrc":"36958:53:81","nodeType":"YulExpressionStatement","src":"36958:53:81"},{"nativeSrc":"37020:27:81","nodeType":"YulAssignment","src":"37020:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37032:9:81","nodeType":"YulIdentifier","src":"37032:9:81"},{"kind":"number","nativeSrc":"37043:3:81","nodeType":"YulLiteral","src":"37043:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37028:3:81","nodeType":"YulIdentifier","src":"37028:3:81"},"nativeSrc":"37028:19:81","nodeType":"YulFunctionCall","src":"37028:19:81"},"variableNames":[{"name":"tail","nativeSrc":"37020:4:81","nodeType":"YulIdentifier","src":"37020:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"36634:419:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36805:9:81","nodeType":"YulTypedName","src":"36805:9:81","type":""},{"name":"value0","nativeSrc":"36816:6:81","nodeType":"YulTypedName","src":"36816:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36827:4:81","nodeType":"YulTypedName","src":"36827:4:81","type":""}],"src":"36634:419:81"},{"body":{"nativeSrc":"37260:224:81","nodeType":"YulBlock","src":"37260:224:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37277:9:81","nodeType":"YulIdentifier","src":"37277:9:81"},{"name":"value0","nativeSrc":"37288:6:81","nodeType":"YulIdentifier","src":"37288:6:81"}],"functionName":{"name":"mstore","nativeSrc":"37270:6:81","nodeType":"YulIdentifier","src":"37270:6:81"},"nativeSrc":"37270:25:81","nodeType":"YulFunctionCall","src":"37270:25:81"},"nativeSrc":"37270:25:81","nodeType":"YulExpressionStatement","src":"37270:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37315:9:81","nodeType":"YulIdentifier","src":"37315:9:81"},{"kind":"number","nativeSrc":"37326:2:81","nodeType":"YulLiteral","src":"37326:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37311:3:81","nodeType":"YulIdentifier","src":"37311:3:81"},"nativeSrc":"37311:18:81","nodeType":"YulFunctionCall","src":"37311:18:81"},{"kind":"number","nativeSrc":"37331:2:81","nodeType":"YulLiteral","src":"37331:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"37304:6:81","nodeType":"YulIdentifier","src":"37304:6:81"},"nativeSrc":"37304:30:81","nodeType":"YulFunctionCall","src":"37304:30:81"},"nativeSrc":"37304:30:81","nodeType":"YulExpressionStatement","src":"37304:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37354:9:81","nodeType":"YulIdentifier","src":"37354:9:81"},{"kind":"number","nativeSrc":"37365:2:81","nodeType":"YulLiteral","src":"37365:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37350:3:81","nodeType":"YulIdentifier","src":"37350:3:81"},"nativeSrc":"37350:18:81","nodeType":"YulFunctionCall","src":"37350:18:81"},{"kind":"number","nativeSrc":"37370:2:81","nodeType":"YulLiteral","src":"37370:2:81","type":"","value":"30"}],"functionName":{"name":"mstore","nativeSrc":"37343:6:81","nodeType":"YulIdentifier","src":"37343:6:81"},"nativeSrc":"37343:30:81","nodeType":"YulFunctionCall","src":"37343:30:81"},"nativeSrc":"37343:30:81","nodeType":"YulExpressionStatement","src":"37343:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37393:9:81","nodeType":"YulIdentifier","src":"37393:9:81"},{"kind":"number","nativeSrc":"37404:2:81","nodeType":"YulLiteral","src":"37404:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37389:3:81","nodeType":"YulIdentifier","src":"37389:3:81"},"nativeSrc":"37389:18:81","nodeType":"YulFunctionCall","src":"37389:18:81"},{"hexValue":"41413331207061796d6173746572206465706f73697420746f6f206c6f77","kind":"string","nativeSrc":"37409:32:81","nodeType":"YulLiteral","src":"37409:32:81","type":"","value":"AA31 paymaster deposit too low"}],"functionName":{"name":"mstore","nativeSrc":"37382:6:81","nodeType":"YulIdentifier","src":"37382:6:81"},"nativeSrc":"37382:60:81","nodeType":"YulFunctionCall","src":"37382:60:81"},"nativeSrc":"37382:60:81","nodeType":"YulExpressionStatement","src":"37382:60:81"},{"nativeSrc":"37451:27:81","nodeType":"YulAssignment","src":"37451:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37463:9:81","nodeType":"YulIdentifier","src":"37463:9:81"},{"kind":"number","nativeSrc":"37474:3:81","nodeType":"YulLiteral","src":"37474:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37459:3:81","nodeType":"YulIdentifier","src":"37459:3:81"},"nativeSrc":"37459:19:81","nodeType":"YulFunctionCall","src":"37459:19:81"},"variableNames":[{"name":"tail","nativeSrc":"37451:4:81","nodeType":"YulIdentifier","src":"37451:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"37058:426:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37229:9:81","nodeType":"YulTypedName","src":"37229:9:81","type":""},{"name":"value0","nativeSrc":"37240:6:81","nodeType":"YulTypedName","src":"37240:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37251:4:81","nodeType":"YulTypedName","src":"37251:4:81","type":""}],"src":"37058:426:81"},{"body":{"nativeSrc":"37596:695:81","nodeType":"YulBlock","src":"37596:695:81","statements":[{"body":{"nativeSrc":"37642:16:81","nodeType":"YulBlock","src":"37642:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37651:1:81","nodeType":"YulLiteral","src":"37651:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"37654:1:81","nodeType":"YulLiteral","src":"37654:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37644:6:81","nodeType":"YulIdentifier","src":"37644:6:81"},"nativeSrc":"37644:12:81","nodeType":"YulFunctionCall","src":"37644:12:81"},"nativeSrc":"37644:12:81","nodeType":"YulExpressionStatement","src":"37644:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37617:7:81","nodeType":"YulIdentifier","src":"37617:7:81"},{"name":"headStart","nativeSrc":"37626:9:81","nodeType":"YulIdentifier","src":"37626:9:81"}],"functionName":{"name":"sub","nativeSrc":"37613:3:81","nodeType":"YulIdentifier","src":"37613:3:81"},"nativeSrc":"37613:23:81","nodeType":"YulFunctionCall","src":"37613:23:81"},{"kind":"number","nativeSrc":"37638:2:81","nodeType":"YulLiteral","src":"37638:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"37609:3:81","nodeType":"YulIdentifier","src":"37609:3:81"},"nativeSrc":"37609:32:81","nodeType":"YulFunctionCall","src":"37609:32:81"},"nativeSrc":"37606:52:81","nodeType":"YulIf","src":"37606:52:81"},{"nativeSrc":"37667:30:81","nodeType":"YulVariableDeclaration","src":"37667:30:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37687:9:81","nodeType":"YulIdentifier","src":"37687:9:81"}],"functionName":{"name":"mload","nativeSrc":"37681:5:81","nodeType":"YulIdentifier","src":"37681:5:81"},"nativeSrc":"37681:16:81","nodeType":"YulFunctionCall","src":"37681:16:81"},"variables":[{"name":"offset","nativeSrc":"37671:6:81","nodeType":"YulTypedName","src":"37671:6:81","type":""}]},{"body":{"nativeSrc":"37740:16:81","nodeType":"YulBlock","src":"37740:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37749:1:81","nodeType":"YulLiteral","src":"37749:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"37752:1:81","nodeType":"YulLiteral","src":"37752:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37742:6:81","nodeType":"YulIdentifier","src":"37742:6:81"},"nativeSrc":"37742:12:81","nodeType":"YulFunctionCall","src":"37742:12:81"},"nativeSrc":"37742:12:81","nodeType":"YulExpressionStatement","src":"37742:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"37712:6:81","nodeType":"YulIdentifier","src":"37712:6:81"},{"kind":"number","nativeSrc":"37720:18:81","nodeType":"YulLiteral","src":"37720:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"37709:2:81","nodeType":"YulIdentifier","src":"37709:2:81"},"nativeSrc":"37709:30:81","nodeType":"YulFunctionCall","src":"37709:30:81"},"nativeSrc":"37706:50:81","nodeType":"YulIf","src":"37706:50:81"},{"nativeSrc":"37765:32:81","nodeType":"YulVariableDeclaration","src":"37765:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37779:9:81","nodeType":"YulIdentifier","src":"37779:9:81"},{"name":"offset","nativeSrc":"37790:6:81","nodeType":"YulIdentifier","src":"37790:6:81"}],"functionName":{"name":"add","nativeSrc":"37775:3:81","nodeType":"YulIdentifier","src":"37775:3:81"},"nativeSrc":"37775:22:81","nodeType":"YulFunctionCall","src":"37775:22:81"},"variables":[{"name":"_1","nativeSrc":"37769:2:81","nodeType":"YulTypedName","src":"37769:2:81","type":""}]},{"body":{"nativeSrc":"37845:16:81","nodeType":"YulBlock","src":"37845:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37854:1:81","nodeType":"YulLiteral","src":"37854:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"37857:1:81","nodeType":"YulLiteral","src":"37857:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37847:6:81","nodeType":"YulIdentifier","src":"37847:6:81"},"nativeSrc":"37847:12:81","nodeType":"YulFunctionCall","src":"37847:12:81"},"nativeSrc":"37847:12:81","nodeType":"YulExpressionStatement","src":"37847:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"37824:2:81","nodeType":"YulIdentifier","src":"37824:2:81"},{"kind":"number","nativeSrc":"37828:4:81","nodeType":"YulLiteral","src":"37828:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"37820:3:81","nodeType":"YulIdentifier","src":"37820:3:81"},"nativeSrc":"37820:13:81","nodeType":"YulFunctionCall","src":"37820:13:81"},{"name":"dataEnd","nativeSrc":"37835:7:81","nodeType":"YulIdentifier","src":"37835:7:81"}],"functionName":{"name":"slt","nativeSrc":"37816:3:81","nodeType":"YulIdentifier","src":"37816:3:81"},"nativeSrc":"37816:27:81","nodeType":"YulFunctionCall","src":"37816:27:81"}],"functionName":{"name":"iszero","nativeSrc":"37809:6:81","nodeType":"YulIdentifier","src":"37809:6:81"},"nativeSrc":"37809:35:81","nodeType":"YulFunctionCall","src":"37809:35:81"},"nativeSrc":"37806:55:81","nodeType":"YulIf","src":"37806:55:81"},{"nativeSrc":"37870:23:81","nodeType":"YulVariableDeclaration","src":"37870:23:81","value":{"arguments":[{"name":"_1","nativeSrc":"37890:2:81","nodeType":"YulIdentifier","src":"37890:2:81"}],"functionName":{"name":"mload","nativeSrc":"37884:5:81","nodeType":"YulIdentifier","src":"37884:5:81"},"nativeSrc":"37884:9:81","nodeType":"YulFunctionCall","src":"37884:9:81"},"variables":[{"name":"length","nativeSrc":"37874:6:81","nodeType":"YulTypedName","src":"37874:6:81","type":""}]},{"nativeSrc":"37902:65:81","nodeType":"YulVariableDeclaration","src":"37902:65:81","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"37959:6:81","nodeType":"YulIdentifier","src":"37959:6:81"}],"functionName":{"name":"array_allocation_size_bytes","nativeSrc":"37931:27:81","nodeType":"YulIdentifier","src":"37931:27:81"},"nativeSrc":"37931:35:81","nodeType":"YulFunctionCall","src":"37931:35:81"}],"functionName":{"name":"allocate_memory","nativeSrc":"37915:15:81","nodeType":"YulIdentifier","src":"37915:15:81"},"nativeSrc":"37915:52:81","nodeType":"YulFunctionCall","src":"37915:52:81"},"variables":[{"name":"array","nativeSrc":"37906:5:81","nodeType":"YulTypedName","src":"37906:5:81","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"37983:5:81","nodeType":"YulIdentifier","src":"37983:5:81"},{"name":"length","nativeSrc":"37990:6:81","nodeType":"YulIdentifier","src":"37990:6:81"}],"functionName":{"name":"mstore","nativeSrc":"37976:6:81","nodeType":"YulIdentifier","src":"37976:6:81"},"nativeSrc":"37976:21:81","nodeType":"YulFunctionCall","src":"37976:21:81"},"nativeSrc":"37976:21:81","nodeType":"YulExpressionStatement","src":"37976:21:81"},{"body":{"nativeSrc":"38049:16:81","nodeType":"YulBlock","src":"38049:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"38058:1:81","nodeType":"YulLiteral","src":"38058:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"38061:1:81","nodeType":"YulLiteral","src":"38061:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"38051:6:81","nodeType":"YulIdentifier","src":"38051:6:81"},"nativeSrc":"38051:12:81","nodeType":"YulFunctionCall","src":"38051:12:81"},"nativeSrc":"38051:12:81","nodeType":"YulExpressionStatement","src":"38051:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"38020:2:81","nodeType":"YulIdentifier","src":"38020:2:81"},{"name":"length","nativeSrc":"38024:6:81","nodeType":"YulIdentifier","src":"38024:6:81"}],"functionName":{"name":"add","nativeSrc":"38016:3:81","nodeType":"YulIdentifier","src":"38016:3:81"},"nativeSrc":"38016:15:81","nodeType":"YulFunctionCall","src":"38016:15:81"},{"kind":"number","nativeSrc":"38033:4:81","nodeType":"YulLiteral","src":"38033:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38012:3:81","nodeType":"YulIdentifier","src":"38012:3:81"},"nativeSrc":"38012:26:81","nodeType":"YulFunctionCall","src":"38012:26:81"},{"name":"dataEnd","nativeSrc":"38040:7:81","nodeType":"YulIdentifier","src":"38040:7:81"}],"functionName":{"name":"gt","nativeSrc":"38009:2:81","nodeType":"YulIdentifier","src":"38009:2:81"},"nativeSrc":"38009:39:81","nodeType":"YulFunctionCall","src":"38009:39:81"},"nativeSrc":"38006:59:81","nodeType":"YulIf","src":"38006:59:81"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"38084:5:81","nodeType":"YulIdentifier","src":"38084:5:81"},{"kind":"number","nativeSrc":"38091:4:81","nodeType":"YulLiteral","src":"38091:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38080:3:81","nodeType":"YulIdentifier","src":"38080:3:81"},"nativeSrc":"38080:16:81","nodeType":"YulFunctionCall","src":"38080:16:81"},{"arguments":[{"name":"_1","nativeSrc":"38102:2:81","nodeType":"YulIdentifier","src":"38102:2:81"},{"kind":"number","nativeSrc":"38106:4:81","nodeType":"YulLiteral","src":"38106:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38098:3:81","nodeType":"YulIdentifier","src":"38098:3:81"},"nativeSrc":"38098:13:81","nodeType":"YulFunctionCall","src":"38098:13:81"},{"name":"length","nativeSrc":"38113:6:81","nodeType":"YulIdentifier","src":"38113:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"38074:5:81","nodeType":"YulIdentifier","src":"38074:5:81"},"nativeSrc":"38074:46:81","nodeType":"YulFunctionCall","src":"38074:46:81"},"nativeSrc":"38074:46:81","nodeType":"YulExpressionStatement","src":"38074:46:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"38144:5:81","nodeType":"YulIdentifier","src":"38144:5:81"},{"name":"length","nativeSrc":"38151:6:81","nodeType":"YulIdentifier","src":"38151:6:81"}],"functionName":{"name":"add","nativeSrc":"38140:3:81","nodeType":"YulIdentifier","src":"38140:3:81"},"nativeSrc":"38140:18:81","nodeType":"YulFunctionCall","src":"38140:18:81"},{"kind":"number","nativeSrc":"38160:4:81","nodeType":"YulLiteral","src":"38160:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38136:3:81","nodeType":"YulIdentifier","src":"38136:3:81"},"nativeSrc":"38136:29:81","nodeType":"YulFunctionCall","src":"38136:29:81"},{"kind":"number","nativeSrc":"38167:1:81","nodeType":"YulLiteral","src":"38167:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"38129:6:81","nodeType":"YulIdentifier","src":"38129:6:81"},"nativeSrc":"38129:40:81","nodeType":"YulFunctionCall","src":"38129:40:81"},"nativeSrc":"38129:40:81","nodeType":"YulExpressionStatement","src":"38129:40:81"},{"nativeSrc":"38178:15:81","nodeType":"YulAssignment","src":"38178:15:81","value":{"name":"array","nativeSrc":"38188:5:81","nodeType":"YulIdentifier","src":"38188:5:81"},"variableNames":[{"name":"value0","nativeSrc":"38178:6:81","nodeType":"YulIdentifier","src":"38178:6:81"}]},{"nativeSrc":"38202:14:81","nodeType":"YulVariableDeclaration","src":"38202:14:81","value":{"kind":"number","nativeSrc":"38215:1:81","nodeType":"YulLiteral","src":"38215:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"38206:5:81","nodeType":"YulTypedName","src":"38206:5:81","type":""}]},{"nativeSrc":"38225:36:81","nodeType":"YulAssignment","src":"38225:36:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38244:9:81","nodeType":"YulIdentifier","src":"38244:9:81"},{"kind":"number","nativeSrc":"38255:4:81","nodeType":"YulLiteral","src":"38255:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38240:3:81","nodeType":"YulIdentifier","src":"38240:3:81"},"nativeSrc":"38240:20:81","nodeType":"YulFunctionCall","src":"38240:20:81"}],"functionName":{"name":"mload","nativeSrc":"38234:5:81","nodeType":"YulIdentifier","src":"38234:5:81"},"nativeSrc":"38234:27:81","nodeType":"YulFunctionCall","src":"38234:27:81"},"variableNames":[{"name":"value","nativeSrc":"38225:5:81","nodeType":"YulIdentifier","src":"38225:5:81"}]},{"nativeSrc":"38270:15:81","nodeType":"YulAssignment","src":"38270:15:81","value":{"name":"value","nativeSrc":"38280:5:81","nodeType":"YulIdentifier","src":"38280:5:81"},"variableNames":[{"name":"value1","nativeSrc":"38270:6:81","nodeType":"YulIdentifier","src":"38270:6:81"}]}]},"name":"abi_decode_tuple_t_bytes_memory_ptrt_uint256_fromMemory","nativeSrc":"37489:802:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37554:9:81","nodeType":"YulTypedName","src":"37554:9:81","type":""},{"name":"dataEnd","nativeSrc":"37565:7:81","nodeType":"YulTypedName","src":"37565:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37577:6:81","nodeType":"YulTypedName","src":"37577:6:81","type":""},{"name":"value1","nativeSrc":"37585:6:81","nodeType":"YulTypedName","src":"37585:6:81","type":""}],"src":"37489:802:81"},{"body":{"nativeSrc":"38544:274:81","nodeType":"YulBlock","src":"38544:274:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38561:9:81","nodeType":"YulIdentifier","src":"38561:9:81"},{"name":"value0","nativeSrc":"38572:6:81","nodeType":"YulIdentifier","src":"38572:6:81"}],"functionName":{"name":"mstore","nativeSrc":"38554:6:81","nodeType":"YulIdentifier","src":"38554:6:81"},"nativeSrc":"38554:25:81","nodeType":"YulFunctionCall","src":"38554:25:81"},"nativeSrc":"38554:25:81","nodeType":"YulExpressionStatement","src":"38554:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38599:9:81","nodeType":"YulIdentifier","src":"38599:9:81"},{"kind":"number","nativeSrc":"38610:2:81","nodeType":"YulLiteral","src":"38610:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38595:3:81","nodeType":"YulIdentifier","src":"38595:3:81"},"nativeSrc":"38595:18:81","nodeType":"YulFunctionCall","src":"38595:18:81"},{"kind":"number","nativeSrc":"38615:2:81","nodeType":"YulLiteral","src":"38615:2:81","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"38588:6:81","nodeType":"YulIdentifier","src":"38588:6:81"},"nativeSrc":"38588:30:81","nodeType":"YulFunctionCall","src":"38588:30:81"},"nativeSrc":"38588:30:81","nodeType":"YulExpressionStatement","src":"38588:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38638:9:81","nodeType":"YulIdentifier","src":"38638:9:81"},{"kind":"number","nativeSrc":"38649:2:81","nodeType":"YulLiteral","src":"38649:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38634:3:81","nodeType":"YulIdentifier","src":"38634:3:81"},"nativeSrc":"38634:18:81","nodeType":"YulFunctionCall","src":"38634:18:81"},{"kind":"number","nativeSrc":"38654:2:81","nodeType":"YulLiteral","src":"38654:2:81","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"38627:6:81","nodeType":"YulIdentifier","src":"38627:6:81"},"nativeSrc":"38627:30:81","nodeType":"YulFunctionCall","src":"38627:30:81"},"nativeSrc":"38627:30:81","nodeType":"YulExpressionStatement","src":"38627:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38677:9:81","nodeType":"YulIdentifier","src":"38677:9:81"},{"kind":"number","nativeSrc":"38688:3:81","nodeType":"YulLiteral","src":"38688:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"38673:3:81","nodeType":"YulIdentifier","src":"38673:3:81"},"nativeSrc":"38673:19:81","nodeType":"YulFunctionCall","src":"38673:19:81"},{"hexValue":"41413333207265766572746564","kind":"string","nativeSrc":"38694:15:81","nodeType":"YulLiteral","src":"38694:15:81","type":"","value":"AA33 reverted"}],"functionName":{"name":"mstore","nativeSrc":"38666:6:81","nodeType":"YulIdentifier","src":"38666:6:81"},"nativeSrc":"38666:44:81","nodeType":"YulFunctionCall","src":"38666:44:81"},"nativeSrc":"38666:44:81","nodeType":"YulExpressionStatement","src":"38666:44:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38730:9:81","nodeType":"YulIdentifier","src":"38730:9:81"},{"kind":"number","nativeSrc":"38741:2:81","nodeType":"YulLiteral","src":"38741:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38726:3:81","nodeType":"YulIdentifier","src":"38726:3:81"},"nativeSrc":"38726:18:81","nodeType":"YulFunctionCall","src":"38726:18:81"},{"kind":"number","nativeSrc":"38746:3:81","nodeType":"YulLiteral","src":"38746:3:81","type":"","value":"160"}],"functionName":{"name":"mstore","nativeSrc":"38719:6:81","nodeType":"YulIdentifier","src":"38719:6:81"},"nativeSrc":"38719:31:81","nodeType":"YulFunctionCall","src":"38719:31:81"},"nativeSrc":"38719:31:81","nodeType":"YulExpressionStatement","src":"38719:31:81"},{"nativeSrc":"38759:53:81","nodeType":"YulAssignment","src":"38759:53:81","value":{"arguments":[{"name":"value1","nativeSrc":"38784:6:81","nodeType":"YulIdentifier","src":"38784:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"38796:9:81","nodeType":"YulIdentifier","src":"38796:9:81"},{"kind":"number","nativeSrc":"38807:3:81","nodeType":"YulLiteral","src":"38807:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"38792:3:81","nodeType":"YulIdentifier","src":"38792:3:81"},"nativeSrc":"38792:19:81","nodeType":"YulFunctionCall","src":"38792:19:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"38767:16:81","nodeType":"YulIdentifier","src":"38767:16:81"},"nativeSrc":"38767:45:81","nodeType":"YulFunctionCall","src":"38767:45:81"},"variableNames":[{"name":"tail","nativeSrc":"38759:4:81","nodeType":"YulIdentifier","src":"38759:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"38296:522:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38505:9:81","nodeType":"YulTypedName","src":"38505:9:81","type":""},{"name":"value1","nativeSrc":"38516:6:81","nodeType":"YulTypedName","src":"38516:6:81","type":""},{"name":"value0","nativeSrc":"38524:6:81","nodeType":"YulTypedName","src":"38524:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38535:4:81","nodeType":"YulTypedName","src":"38535:4:81","type":""}],"src":"38296:522:81"},{"body":{"nativeSrc":"39025:273:81","nodeType":"YulBlock","src":"39025:273:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39042:9:81","nodeType":"YulIdentifier","src":"39042:9:81"},{"name":"value0","nativeSrc":"39053:6:81","nodeType":"YulIdentifier","src":"39053:6:81"}],"functionName":{"name":"mstore","nativeSrc":"39035:6:81","nodeType":"YulIdentifier","src":"39035:6:81"},"nativeSrc":"39035:25:81","nodeType":"YulFunctionCall","src":"39035:25:81"},"nativeSrc":"39035:25:81","nodeType":"YulExpressionStatement","src":"39035:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39080:9:81","nodeType":"YulIdentifier","src":"39080:9:81"},{"kind":"number","nativeSrc":"39091:2:81","nodeType":"YulLiteral","src":"39091:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39076:3:81","nodeType":"YulIdentifier","src":"39076:3:81"},"nativeSrc":"39076:18:81","nodeType":"YulFunctionCall","src":"39076:18:81"},{"kind":"number","nativeSrc":"39096:2:81","nodeType":"YulLiteral","src":"39096:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"39069:6:81","nodeType":"YulIdentifier","src":"39069:6:81"},"nativeSrc":"39069:30:81","nodeType":"YulFunctionCall","src":"39069:30:81"},"nativeSrc":"39069:30:81","nodeType":"YulExpressionStatement","src":"39069:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39119:9:81","nodeType":"YulIdentifier","src":"39119:9:81"},{"kind":"number","nativeSrc":"39130:2:81","nodeType":"YulLiteral","src":"39130:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39115:3:81","nodeType":"YulIdentifier","src":"39115:3:81"},"nativeSrc":"39115:18:81","nodeType":"YulFunctionCall","src":"39115:18:81"},{"kind":"number","nativeSrc":"39135:2:81","nodeType":"YulLiteral","src":"39135:2:81","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"39108:6:81","nodeType":"YulIdentifier","src":"39108:6:81"},"nativeSrc":"39108:30:81","nodeType":"YulFunctionCall","src":"39108:30:81"},"nativeSrc":"39108:30:81","nodeType":"YulExpressionStatement","src":"39108:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39158:9:81","nodeType":"YulIdentifier","src":"39158:9:81"},{"kind":"number","nativeSrc":"39169:2:81","nodeType":"YulLiteral","src":"39169:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39154:3:81","nodeType":"YulIdentifier","src":"39154:3:81"},"nativeSrc":"39154:18:81","nodeType":"YulFunctionCall","src":"39154:18:81"},{"hexValue":"41413336206f766572207061796d6173746572566572696669636174696f6e47","kind":"string","nativeSrc":"39174:34:81","nodeType":"YulLiteral","src":"39174:34:81","type":"","value":"AA36 over paymasterVerificationG"}],"functionName":{"name":"mstore","nativeSrc":"39147:6:81","nodeType":"YulIdentifier","src":"39147:6:81"},"nativeSrc":"39147:62:81","nodeType":"YulFunctionCall","src":"39147:62:81"},"nativeSrc":"39147:62:81","nodeType":"YulExpressionStatement","src":"39147:62:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39229:9:81","nodeType":"YulIdentifier","src":"39229:9:81"},{"kind":"number","nativeSrc":"39240:3:81","nodeType":"YulLiteral","src":"39240:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"39225:3:81","nodeType":"YulIdentifier","src":"39225:3:81"},"nativeSrc":"39225:19:81","nodeType":"YulFunctionCall","src":"39225:19:81"},{"hexValue":"61734c696d6974","kind":"string","nativeSrc":"39246:9:81","nodeType":"YulLiteral","src":"39246:9:81","type":"","value":"asLimit"}],"functionName":{"name":"mstore","nativeSrc":"39218:6:81","nodeType":"YulIdentifier","src":"39218:6:81"},"nativeSrc":"39218:38:81","nodeType":"YulFunctionCall","src":"39218:38:81"},"nativeSrc":"39218:38:81","nodeType":"YulExpressionStatement","src":"39218:38:81"},{"nativeSrc":"39265:27:81","nodeType":"YulAssignment","src":"39265:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"39277:9:81","nodeType":"YulIdentifier","src":"39277:9:81"},{"kind":"number","nativeSrc":"39288:3:81","nodeType":"YulLiteral","src":"39288:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"39273:3:81","nodeType":"YulIdentifier","src":"39273:3:81"},"nativeSrc":"39273:19:81","nodeType":"YulFunctionCall","src":"39273:19:81"},"variableNames":[{"name":"tail","nativeSrc":"39265:4:81","nodeType":"YulIdentifier","src":"39265:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"38823:475:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38994:9:81","nodeType":"YulTypedName","src":"38994:9:81","type":""},{"name":"value0","nativeSrc":"39005:6:81","nodeType":"YulTypedName","src":"39005:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39016:4:81","nodeType":"YulTypedName","src":"39016:4:81","type":""}],"src":"38823:475:81"},{"body":{"nativeSrc":"39433:201:81","nodeType":"YulBlock","src":"39433:201:81","statements":[{"body":{"nativeSrc":"39471:16:81","nodeType":"YulBlock","src":"39471:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39480:1:81","nodeType":"YulLiteral","src":"39480:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"39483:1:81","nodeType":"YulLiteral","src":"39483:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39473:6:81","nodeType":"YulIdentifier","src":"39473:6:81"},"nativeSrc":"39473:12:81","nodeType":"YulFunctionCall","src":"39473:12:81"},"nativeSrc":"39473:12:81","nodeType":"YulExpressionStatement","src":"39473:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"39449:10:81","nodeType":"YulIdentifier","src":"39449:10:81"},{"name":"endIndex","nativeSrc":"39461:8:81","nodeType":"YulIdentifier","src":"39461:8:81"}],"functionName":{"name":"gt","nativeSrc":"39446:2:81","nodeType":"YulIdentifier","src":"39446:2:81"},"nativeSrc":"39446:24:81","nodeType":"YulFunctionCall","src":"39446:24:81"},"nativeSrc":"39443:44:81","nodeType":"YulIf","src":"39443:44:81"},{"body":{"nativeSrc":"39520:16:81","nodeType":"YulBlock","src":"39520:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39529:1:81","nodeType":"YulLiteral","src":"39529:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"39532:1:81","nodeType":"YulLiteral","src":"39532:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39522:6:81","nodeType":"YulIdentifier","src":"39522:6:81"},"nativeSrc":"39522:12:81","nodeType":"YulFunctionCall","src":"39522:12:81"},"nativeSrc":"39522:12:81","nodeType":"YulExpressionStatement","src":"39522:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"39502:8:81","nodeType":"YulIdentifier","src":"39502:8:81"},{"name":"length","nativeSrc":"39512:6:81","nodeType":"YulIdentifier","src":"39512:6:81"}],"functionName":{"name":"gt","nativeSrc":"39499:2:81","nodeType":"YulIdentifier","src":"39499:2:81"},"nativeSrc":"39499:20:81","nodeType":"YulFunctionCall","src":"39499:20:81"},"nativeSrc":"39496:40:81","nodeType":"YulIf","src":"39496:40:81"},{"nativeSrc":"39545:36:81","nodeType":"YulAssignment","src":"39545:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"39562:6:81","nodeType":"YulIdentifier","src":"39562:6:81"},{"name":"startIndex","nativeSrc":"39570:10:81","nodeType":"YulIdentifier","src":"39570:10:81"}],"functionName":{"name":"add","nativeSrc":"39558:3:81","nodeType":"YulIdentifier","src":"39558:3:81"},"nativeSrc":"39558:23:81","nodeType":"YulFunctionCall","src":"39558:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"39545:9:81","nodeType":"YulIdentifier","src":"39545:9:81"}]},{"nativeSrc":"39590:38:81","nodeType":"YulAssignment","src":"39590:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"39607:8:81","nodeType":"YulIdentifier","src":"39607:8:81"},{"name":"startIndex","nativeSrc":"39617:10:81","nodeType":"YulIdentifier","src":"39617:10:81"}],"functionName":{"name":"sub","nativeSrc":"39603:3:81","nodeType":"YulIdentifier","src":"39603:3:81"},"nativeSrc":"39603:25:81","nodeType":"YulFunctionCall","src":"39603:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"39590:9:81","nodeType":"YulIdentifier","src":"39590:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"39303:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"39367:6:81","nodeType":"YulTypedName","src":"39367:6:81","type":""},{"name":"length","nativeSrc":"39375:6:81","nodeType":"YulTypedName","src":"39375:6:81","type":""},{"name":"startIndex","nativeSrc":"39383:10:81","nodeType":"YulTypedName","src":"39383:10:81","type":""},{"name":"endIndex","nativeSrc":"39395:8:81","nodeType":"YulTypedName","src":"39395:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"39408:9:81","nodeType":"YulTypedName","src":"39408:9:81","type":""},{"name":"lengthOut","nativeSrc":"39419:9:81","nodeType":"YulTypedName","src":"39419:9:81","type":""}],"src":"39303:331:81"},{"body":{"nativeSrc":"39740:273:81","nodeType":"YulBlock","src":"39740:273:81","statements":[{"nativeSrc":"39750:29:81","nodeType":"YulVariableDeclaration","src":"39750:29:81","value":{"arguments":[{"name":"array","nativeSrc":"39773:5:81","nodeType":"YulIdentifier","src":"39773:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"39760:12:81","nodeType":"YulIdentifier","src":"39760:12:81"},"nativeSrc":"39760:19:81","nodeType":"YulFunctionCall","src":"39760:19:81"},"variables":[{"name":"_1","nativeSrc":"39754:2:81","nodeType":"YulTypedName","src":"39754:2:81","type":""}]},{"nativeSrc":"39788:49:81","nodeType":"YulAssignment","src":"39788:49:81","value":{"arguments":[{"name":"_1","nativeSrc":"39801:2:81","nodeType":"YulIdentifier","src":"39801:2:81"},{"arguments":[{"kind":"number","nativeSrc":"39809:26:81","nodeType":"YulLiteral","src":"39809:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39805:3:81","nodeType":"YulIdentifier","src":"39805:3:81"},"nativeSrc":"39805:31:81","nodeType":"YulFunctionCall","src":"39805:31:81"}],"functionName":{"name":"and","nativeSrc":"39797:3:81","nodeType":"YulIdentifier","src":"39797:3:81"},"nativeSrc":"39797:40:81","nodeType":"YulFunctionCall","src":"39797:40:81"},"variableNames":[{"name":"value","nativeSrc":"39788:5:81","nodeType":"YulIdentifier","src":"39788:5:81"}]},{"body":{"nativeSrc":"39869:138:81","nodeType":"YulBlock","src":"39869:138:81","statements":[{"nativeSrc":"39883:114:81","nodeType":"YulAssignment","src":"39883:114:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"39900:2:81","nodeType":"YulIdentifier","src":"39900:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39912:1:81","nodeType":"YulLiteral","src":"39912:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"39919:2:81","nodeType":"YulLiteral","src":"39919:2:81","type":"","value":"20"},{"name":"len","nativeSrc":"39923:3:81","nodeType":"YulIdentifier","src":"39923:3:81"}],"functionName":{"name":"sub","nativeSrc":"39915:3:81","nodeType":"YulIdentifier","src":"39915:3:81"},"nativeSrc":"39915:12:81","nodeType":"YulFunctionCall","src":"39915:12:81"}],"functionName":{"name":"shl","nativeSrc":"39908:3:81","nodeType":"YulIdentifier","src":"39908:3:81"},"nativeSrc":"39908:20:81","nodeType":"YulFunctionCall","src":"39908:20:81"},{"arguments":[{"kind":"number","nativeSrc":"39934:26:81","nodeType":"YulLiteral","src":"39934:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39930:3:81","nodeType":"YulIdentifier","src":"39930:3:81"},"nativeSrc":"39930:31:81","nodeType":"YulFunctionCall","src":"39930:31:81"}],"functionName":{"name":"shl","nativeSrc":"39904:3:81","nodeType":"YulIdentifier","src":"39904:3:81"},"nativeSrc":"39904:58:81","nodeType":"YulFunctionCall","src":"39904:58:81"}],"functionName":{"name":"and","nativeSrc":"39896:3:81","nodeType":"YulIdentifier","src":"39896:3:81"},"nativeSrc":"39896:67:81","nodeType":"YulFunctionCall","src":"39896:67:81"},{"arguments":[{"kind":"number","nativeSrc":"39969:26:81","nodeType":"YulLiteral","src":"39969:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39965:3:81","nodeType":"YulIdentifier","src":"39965:3:81"},"nativeSrc":"39965:31:81","nodeType":"YulFunctionCall","src":"39965:31:81"}],"functionName":{"name":"and","nativeSrc":"39892:3:81","nodeType":"YulIdentifier","src":"39892:3:81"},"nativeSrc":"39892:105:81","nodeType":"YulFunctionCall","src":"39892:105:81"},"variableNames":[{"name":"value","nativeSrc":"39883:5:81","nodeType":"YulIdentifier","src":"39883:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"39852:3:81","nodeType":"YulIdentifier","src":"39852:3:81"},{"kind":"number","nativeSrc":"39857:2:81","nodeType":"YulLiteral","src":"39857:2:81","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"39849:2:81","nodeType":"YulIdentifier","src":"39849:2:81"},"nativeSrc":"39849:11:81","nodeType":"YulFunctionCall","src":"39849:11:81"},"nativeSrc":"39846:161:81","nodeType":"YulIf","src":"39846:161:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"39639:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"39715:5:81","nodeType":"YulTypedName","src":"39715:5:81","type":""},{"name":"len","nativeSrc":"39722:3:81","nodeType":"YulTypedName","src":"39722:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"39730:5:81","nodeType":"YulTypedName","src":"39730:5:81","type":""}],"src":"39639:374:81"},{"body":{"nativeSrc":"40119:297:81","nodeType":"YulBlock","src":"40119:297:81","statements":[{"nativeSrc":"40129:29:81","nodeType":"YulVariableDeclaration","src":"40129:29:81","value":{"arguments":[{"name":"array","nativeSrc":"40152:5:81","nodeType":"YulIdentifier","src":"40152:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"40139:12:81","nodeType":"YulIdentifier","src":"40139:12:81"},"nativeSrc":"40139:19:81","nodeType":"YulFunctionCall","src":"40139:19:81"},"variables":[{"name":"_1","nativeSrc":"40133:2:81","nodeType":"YulTypedName","src":"40133:2:81","type":""}]},{"nativeSrc":"40167:57:81","nodeType":"YulAssignment","src":"40167:57:81","value":{"arguments":[{"name":"_1","nativeSrc":"40180:2:81","nodeType":"YulIdentifier","src":"40180:2:81"},{"arguments":[{"kind":"number","nativeSrc":"40188:34:81","nodeType":"YulLiteral","src":"40188:34:81","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"40184:3:81","nodeType":"YulIdentifier","src":"40184:3:81"},"nativeSrc":"40184:39:81","nodeType":"YulFunctionCall","src":"40184:39:81"}],"functionName":{"name":"and","nativeSrc":"40176:3:81","nodeType":"YulIdentifier","src":"40176:3:81"},"nativeSrc":"40176:48:81","nodeType":"YulFunctionCall","src":"40176:48:81"},"variableNames":[{"name":"value","nativeSrc":"40167:5:81","nodeType":"YulIdentifier","src":"40167:5:81"}]},{"body":{"nativeSrc":"40256:154:81","nodeType":"YulBlock","src":"40256:154:81","statements":[{"nativeSrc":"40270:130:81","nodeType":"YulAssignment","src":"40270:130:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"40287:2:81","nodeType":"YulIdentifier","src":"40287:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40299:1:81","nodeType":"YulLiteral","src":"40299:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"40306:2:81","nodeType":"YulLiteral","src":"40306:2:81","type":"","value":"16"},{"name":"len","nativeSrc":"40310:3:81","nodeType":"YulIdentifier","src":"40310:3:81"}],"functionName":{"name":"sub","nativeSrc":"40302:3:81","nodeType":"YulIdentifier","src":"40302:3:81"},"nativeSrc":"40302:12:81","nodeType":"YulFunctionCall","src":"40302:12:81"}],"functionName":{"name":"shl","nativeSrc":"40295:3:81","nodeType":"YulIdentifier","src":"40295:3:81"},"nativeSrc":"40295:20:81","nodeType":"YulFunctionCall","src":"40295:20:81"},{"arguments":[{"kind":"number","nativeSrc":"40321:34:81","nodeType":"YulLiteral","src":"40321:34:81","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"40317:3:81","nodeType":"YulIdentifier","src":"40317:3:81"},"nativeSrc":"40317:39:81","nodeType":"YulFunctionCall","src":"40317:39:81"}],"functionName":{"name":"shl","nativeSrc":"40291:3:81","nodeType":"YulIdentifier","src":"40291:3:81"},"nativeSrc":"40291:66:81","nodeType":"YulFunctionCall","src":"40291:66:81"}],"functionName":{"name":"and","nativeSrc":"40283:3:81","nodeType":"YulIdentifier","src":"40283:3:81"},"nativeSrc":"40283:75:81","nodeType":"YulFunctionCall","src":"40283:75:81"},{"arguments":[{"kind":"number","nativeSrc":"40364:34:81","nodeType":"YulLiteral","src":"40364:34:81","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"40360:3:81","nodeType":"YulIdentifier","src":"40360:3:81"},"nativeSrc":"40360:39:81","nodeType":"YulFunctionCall","src":"40360:39:81"}],"functionName":{"name":"and","nativeSrc":"40279:3:81","nodeType":"YulIdentifier","src":"40279:3:81"},"nativeSrc":"40279:121:81","nodeType":"YulFunctionCall","src":"40279:121:81"},"variableNames":[{"name":"value","nativeSrc":"40270:5:81","nodeType":"YulIdentifier","src":"40270:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"40239:3:81","nodeType":"YulIdentifier","src":"40239:3:81"},{"kind":"number","nativeSrc":"40244:2:81","nodeType":"YulLiteral","src":"40244:2:81","type":"","value":"16"}],"functionName":{"name":"lt","nativeSrc":"40236:2:81","nodeType":"YulIdentifier","src":"40236:2:81"},"nativeSrc":"40236:11:81","nodeType":"YulFunctionCall","src":"40236:11:81"},"nativeSrc":"40233:177:81","nodeType":"YulIf","src":"40233:177:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes16","nativeSrc":"40018:398:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"40094:5:81","nodeType":"YulTypedName","src":"40094:5:81","type":""},{"name":"len","nativeSrc":"40101:3:81","nodeType":"YulTypedName","src":"40101:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"40109:5:81","nodeType":"YulTypedName","src":"40109:5:81","type":""}],"src":"40018:398:81"},{"body":{"nativeSrc":"40623:225:81","nodeType":"YulBlock","src":"40623:225:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40640:9:81","nodeType":"YulIdentifier","src":"40640:9:81"},{"name":"value0","nativeSrc":"40651:6:81","nodeType":"YulIdentifier","src":"40651:6:81"}],"functionName":{"name":"mstore","nativeSrc":"40633:6:81","nodeType":"YulIdentifier","src":"40633:6:81"},"nativeSrc":"40633:25:81","nodeType":"YulFunctionCall","src":"40633:25:81"},"nativeSrc":"40633:25:81","nodeType":"YulExpressionStatement","src":"40633:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40678:9:81","nodeType":"YulIdentifier","src":"40678:9:81"},{"kind":"number","nativeSrc":"40689:2:81","nodeType":"YulLiteral","src":"40689:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40674:3:81","nodeType":"YulIdentifier","src":"40674:3:81"},"nativeSrc":"40674:18:81","nodeType":"YulFunctionCall","src":"40674:18:81"},{"kind":"number","nativeSrc":"40694:2:81","nodeType":"YulLiteral","src":"40694:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"40667:6:81","nodeType":"YulIdentifier","src":"40667:6:81"},"nativeSrc":"40667:30:81","nodeType":"YulFunctionCall","src":"40667:30:81"},"nativeSrc":"40667:30:81","nodeType":"YulExpressionStatement","src":"40667:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40717:9:81","nodeType":"YulIdentifier","src":"40717:9:81"},{"kind":"number","nativeSrc":"40728:2:81","nodeType":"YulLiteral","src":"40728:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40713:3:81","nodeType":"YulIdentifier","src":"40713:3:81"},"nativeSrc":"40713:18:81","nodeType":"YulFunctionCall","src":"40713:18:81"},{"kind":"number","nativeSrc":"40733:2:81","nodeType":"YulLiteral","src":"40733:2:81","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"40706:6:81","nodeType":"YulIdentifier","src":"40706:6:81"},"nativeSrc":"40706:30:81","nodeType":"YulFunctionCall","src":"40706:30:81"},"nativeSrc":"40706:30:81","nodeType":"YulExpressionStatement","src":"40706:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40756:9:81","nodeType":"YulIdentifier","src":"40756:9:81"},{"kind":"number","nativeSrc":"40767:2:81","nodeType":"YulLiteral","src":"40767:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40752:3:81","nodeType":"YulIdentifier","src":"40752:3:81"},"nativeSrc":"40752:18:81","nodeType":"YulFunctionCall","src":"40752:18:81"},{"hexValue":"414131302073656e64657220616c726561647920636f6e7374727563746564","kind":"string","nativeSrc":"40772:33:81","nodeType":"YulLiteral","src":"40772:33:81","type":"","value":"AA10 sender already constructed"}],"functionName":{"name":"mstore","nativeSrc":"40745:6:81","nodeType":"YulIdentifier","src":"40745:6:81"},"nativeSrc":"40745:61:81","nodeType":"YulFunctionCall","src":"40745:61:81"},"nativeSrc":"40745:61:81","nodeType":"YulExpressionStatement","src":"40745:61:81"},{"nativeSrc":"40815:27:81","nodeType":"YulAssignment","src":"40815:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"40827:9:81","nodeType":"YulIdentifier","src":"40827:9:81"},{"kind":"number","nativeSrc":"40838:3:81","nodeType":"YulLiteral","src":"40838:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"40823:3:81","nodeType":"YulIdentifier","src":"40823:3:81"},"nativeSrc":"40823:19:81","nodeType":"YulFunctionCall","src":"40823:19:81"},"variableNames":[{"name":"tail","nativeSrc":"40815:4:81","nodeType":"YulIdentifier","src":"40815:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40421:427:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40592:9:81","nodeType":"YulTypedName","src":"40592:9:81","type":""},{"name":"value0","nativeSrc":"40603:6:81","nodeType":"YulTypedName","src":"40603:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40614:4:81","nodeType":"YulTypedName","src":"40614:4:81","type":""}],"src":"40421:427:81"},{"body":{"nativeSrc":"41055:221:81","nodeType":"YulBlock","src":"41055:221:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41072:9:81","nodeType":"YulIdentifier","src":"41072:9:81"},{"name":"value0","nativeSrc":"41083:6:81","nodeType":"YulIdentifier","src":"41083:6:81"}],"functionName":{"name":"mstore","nativeSrc":"41065:6:81","nodeType":"YulIdentifier","src":"41065:6:81"},"nativeSrc":"41065:25:81","nodeType":"YulFunctionCall","src":"41065:25:81"},"nativeSrc":"41065:25:81","nodeType":"YulExpressionStatement","src":"41065:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41110:9:81","nodeType":"YulIdentifier","src":"41110:9:81"},{"kind":"number","nativeSrc":"41121:2:81","nodeType":"YulLiteral","src":"41121:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41106:3:81","nodeType":"YulIdentifier","src":"41106:3:81"},"nativeSrc":"41106:18:81","nodeType":"YulFunctionCall","src":"41106:18:81"},{"kind":"number","nativeSrc":"41126:2:81","nodeType":"YulLiteral","src":"41126:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"41099:6:81","nodeType":"YulIdentifier","src":"41099:6:81"},"nativeSrc":"41099:30:81","nodeType":"YulFunctionCall","src":"41099:30:81"},"nativeSrc":"41099:30:81","nodeType":"YulExpressionStatement","src":"41099:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41149:9:81","nodeType":"YulIdentifier","src":"41149:9:81"},{"kind":"number","nativeSrc":"41160:2:81","nodeType":"YulLiteral","src":"41160:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41145:3:81","nodeType":"YulIdentifier","src":"41145:3:81"},"nativeSrc":"41145:18:81","nodeType":"YulFunctionCall","src":"41145:18:81"},{"kind":"number","nativeSrc":"41165:2:81","nodeType":"YulLiteral","src":"41165:2:81","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"41138:6:81","nodeType":"YulIdentifier","src":"41138:6:81"},"nativeSrc":"41138:30:81","nodeType":"YulFunctionCall","src":"41138:30:81"},"nativeSrc":"41138:30:81","nodeType":"YulExpressionStatement","src":"41138:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41188:9:81","nodeType":"YulIdentifier","src":"41188:9:81"},{"kind":"number","nativeSrc":"41199:2:81","nodeType":"YulLiteral","src":"41199:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41184:3:81","nodeType":"YulIdentifier","src":"41184:3:81"},"nativeSrc":"41184:18:81","nodeType":"YulFunctionCall","src":"41184:18:81"},{"hexValue":"4141313320696e6974436f6465206661696c6564206f72204f4f47","kind":"string","nativeSrc":"41204:29:81","nodeType":"YulLiteral","src":"41204:29:81","type":"","value":"AA13 initCode failed or OOG"}],"functionName":{"name":"mstore","nativeSrc":"41177:6:81","nodeType":"YulIdentifier","src":"41177:6:81"},"nativeSrc":"41177:57:81","nodeType":"YulFunctionCall","src":"41177:57:81"},"nativeSrc":"41177:57:81","nodeType":"YulExpressionStatement","src":"41177:57:81"},{"nativeSrc":"41243:27:81","nodeType":"YulAssignment","src":"41243:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"41255:9:81","nodeType":"YulIdentifier","src":"41255:9:81"},{"kind":"number","nativeSrc":"41266:3:81","nodeType":"YulLiteral","src":"41266:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"41251:3:81","nodeType":"YulIdentifier","src":"41251:3:81"},"nativeSrc":"41251:19:81","nodeType":"YulFunctionCall","src":"41251:19:81"},"variableNames":[{"name":"tail","nativeSrc":"41243:4:81","nodeType":"YulIdentifier","src":"41243:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40853:423:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41024:9:81","nodeType":"YulTypedName","src":"41024:9:81","type":""},{"name":"value0","nativeSrc":"41035:6:81","nodeType":"YulTypedName","src":"41035:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41046:4:81","nodeType":"YulTypedName","src":"41046:4:81","type":""}],"src":"40853:423:81"},{"body":{"nativeSrc":"41483:226:81","nodeType":"YulBlock","src":"41483:226:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41500:9:81","nodeType":"YulIdentifier","src":"41500:9:81"},{"name":"value0","nativeSrc":"41511:6:81","nodeType":"YulIdentifier","src":"41511:6:81"}],"functionName":{"name":"mstore","nativeSrc":"41493:6:81","nodeType":"YulIdentifier","src":"41493:6:81"},"nativeSrc":"41493:25:81","nodeType":"YulFunctionCall","src":"41493:25:81"},"nativeSrc":"41493:25:81","nodeType":"YulExpressionStatement","src":"41493:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41538:9:81","nodeType":"YulIdentifier","src":"41538:9:81"},{"kind":"number","nativeSrc":"41549:2:81","nodeType":"YulLiteral","src":"41549:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41534:3:81","nodeType":"YulIdentifier","src":"41534:3:81"},"nativeSrc":"41534:18:81","nodeType":"YulFunctionCall","src":"41534:18:81"},{"kind":"number","nativeSrc":"41554:2:81","nodeType":"YulLiteral","src":"41554:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"41527:6:81","nodeType":"YulIdentifier","src":"41527:6:81"},"nativeSrc":"41527:30:81","nodeType":"YulFunctionCall","src":"41527:30:81"},"nativeSrc":"41527:30:81","nodeType":"YulExpressionStatement","src":"41527:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41577:9:81","nodeType":"YulIdentifier","src":"41577:9:81"},{"kind":"number","nativeSrc":"41588:2:81","nodeType":"YulLiteral","src":"41588:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41573:3:81","nodeType":"YulIdentifier","src":"41573:3:81"},"nativeSrc":"41573:18:81","nodeType":"YulFunctionCall","src":"41573:18:81"},{"kind":"number","nativeSrc":"41593:2:81","nodeType":"YulLiteral","src":"41593:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41566:6:81","nodeType":"YulIdentifier","src":"41566:6:81"},"nativeSrc":"41566:30:81","nodeType":"YulFunctionCall","src":"41566:30:81"},"nativeSrc":"41566:30:81","nodeType":"YulExpressionStatement","src":"41566:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41616:9:81","nodeType":"YulIdentifier","src":"41616:9:81"},{"kind":"number","nativeSrc":"41627:2:81","nodeType":"YulLiteral","src":"41627:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41612:3:81","nodeType":"YulIdentifier","src":"41612:3:81"},"nativeSrc":"41612:18:81","nodeType":"YulFunctionCall","src":"41612:18:81"},{"hexValue":"4141313420696e6974436f6465206d7573742072657475726e2073656e646572","kind":"string","nativeSrc":"41632:34:81","nodeType":"YulLiteral","src":"41632:34:81","type":"","value":"AA14 initCode must return sender"}],"functionName":{"name":"mstore","nativeSrc":"41605:6:81","nodeType":"YulIdentifier","src":"41605:6:81"},"nativeSrc":"41605:62:81","nodeType":"YulFunctionCall","src":"41605:62:81"},"nativeSrc":"41605:62:81","nodeType":"YulExpressionStatement","src":"41605:62:81"},{"nativeSrc":"41676:27:81","nodeType":"YulAssignment","src":"41676:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"41688:9:81","nodeType":"YulIdentifier","src":"41688:9:81"},{"kind":"number","nativeSrc":"41699:3:81","nodeType":"YulLiteral","src":"41699:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"41684:3:81","nodeType":"YulIdentifier","src":"41684:3:81"},"nativeSrc":"41684:19:81","nodeType":"YulFunctionCall","src":"41684:19:81"},"variableNames":[{"name":"tail","nativeSrc":"41676:4:81","nodeType":"YulIdentifier","src":"41676:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41281:428:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41452:9:81","nodeType":"YulTypedName","src":"41452:9:81","type":""},{"name":"value0","nativeSrc":"41463:6:81","nodeType":"YulTypedName","src":"41463:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41474:4:81","nodeType":"YulTypedName","src":"41474:4:81","type":""}],"src":"41281:428:81"},{"body":{"nativeSrc":"41916:226:81","nodeType":"YulBlock","src":"41916:226:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41933:9:81","nodeType":"YulIdentifier","src":"41933:9:81"},{"name":"value0","nativeSrc":"41944:6:81","nodeType":"YulIdentifier","src":"41944:6:81"}],"functionName":{"name":"mstore","nativeSrc":"41926:6:81","nodeType":"YulIdentifier","src":"41926:6:81"},"nativeSrc":"41926:25:81","nodeType":"YulFunctionCall","src":"41926:25:81"},"nativeSrc":"41926:25:81","nodeType":"YulExpressionStatement","src":"41926:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41971:9:81","nodeType":"YulIdentifier","src":"41971:9:81"},{"kind":"number","nativeSrc":"41982:2:81","nodeType":"YulLiteral","src":"41982:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41967:3:81","nodeType":"YulIdentifier","src":"41967:3:81"},"nativeSrc":"41967:18:81","nodeType":"YulFunctionCall","src":"41967:18:81"},{"kind":"number","nativeSrc":"41987:2:81","nodeType":"YulLiteral","src":"41987:2:81","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"41960:6:81","nodeType":"YulIdentifier","src":"41960:6:81"},"nativeSrc":"41960:30:81","nodeType":"YulFunctionCall","src":"41960:30:81"},"nativeSrc":"41960:30:81","nodeType":"YulExpressionStatement","src":"41960:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42010:9:81","nodeType":"YulIdentifier","src":"42010:9:81"},{"kind":"number","nativeSrc":"42021:2:81","nodeType":"YulLiteral","src":"42021:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42006:3:81","nodeType":"YulIdentifier","src":"42006:3:81"},"nativeSrc":"42006:18:81","nodeType":"YulFunctionCall","src":"42006:18:81"},{"kind":"number","nativeSrc":"42026:2:81","nodeType":"YulLiteral","src":"42026:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41999:6:81","nodeType":"YulIdentifier","src":"41999:6:81"},"nativeSrc":"41999:30:81","nodeType":"YulFunctionCall","src":"41999:30:81"},"nativeSrc":"41999:30:81","nodeType":"YulExpressionStatement","src":"41999:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42049:9:81","nodeType":"YulIdentifier","src":"42049:9:81"},{"kind":"number","nativeSrc":"42060:2:81","nodeType":"YulLiteral","src":"42060:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"42045:3:81","nodeType":"YulIdentifier","src":"42045:3:81"},"nativeSrc":"42045:18:81","nodeType":"YulFunctionCall","src":"42045:18:81"},{"hexValue":"4141313520696e6974436f6465206d757374206372656174652073656e646572","kind":"string","nativeSrc":"42065:34:81","nodeType":"YulLiteral","src":"42065:34:81","type":"","value":"AA15 initCode must create sender"}],"functionName":{"name":"mstore","nativeSrc":"42038:6:81","nodeType":"YulIdentifier","src":"42038:6:81"},"nativeSrc":"42038:62:81","nodeType":"YulFunctionCall","src":"42038:62:81"},"nativeSrc":"42038:62:81","nodeType":"YulExpressionStatement","src":"42038:62:81"},{"nativeSrc":"42109:27:81","nodeType":"YulAssignment","src":"42109:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"42121:9:81","nodeType":"YulIdentifier","src":"42121:9:81"},{"kind":"number","nativeSrc":"42132:3:81","nodeType":"YulLiteral","src":"42132:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"42117:3:81","nodeType":"YulIdentifier","src":"42117:3:81"},"nativeSrc":"42117:19:81","nodeType":"YulFunctionCall","src":"42117:19:81"},"variableNames":[{"name":"tail","nativeSrc":"42109:4:81","nodeType":"YulIdentifier","src":"42109:4:81"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41714:428:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41885:9:81","nodeType":"YulTypedName","src":"41885:9:81","type":""},{"name":"value0","nativeSrc":"41896:6:81","nodeType":"YulTypedName","src":"41896:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41907:4:81","nodeType":"YulTypedName","src":"41907:4:81","type":""}],"src":"41714:428:81"},{"body":{"nativeSrc":"42276:171:81","nodeType":"YulBlock","src":"42276:171:81","statements":[{"nativeSrc":"42286:26:81","nodeType":"YulAssignment","src":"42286:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"42298:9:81","nodeType":"YulIdentifier","src":"42298:9:81"},{"kind":"number","nativeSrc":"42309:2:81","nodeType":"YulLiteral","src":"42309:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42294:3:81","nodeType":"YulIdentifier","src":"42294:3:81"},"nativeSrc":"42294:18:81","nodeType":"YulFunctionCall","src":"42294:18:81"},"variableNames":[{"name":"tail","nativeSrc":"42286:4:81","nodeType":"YulIdentifier","src":"42286:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42328:9:81","nodeType":"YulIdentifier","src":"42328:9:81"},{"arguments":[{"name":"value0","nativeSrc":"42343:6:81","nodeType":"YulIdentifier","src":"42343:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42359:3:81","nodeType":"YulLiteral","src":"42359:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"42364:1:81","nodeType":"YulLiteral","src":"42364:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42355:3:81","nodeType":"YulIdentifier","src":"42355:3:81"},"nativeSrc":"42355:11:81","nodeType":"YulFunctionCall","src":"42355:11:81"},{"kind":"number","nativeSrc":"42368:1:81","nodeType":"YulLiteral","src":"42368:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42351:3:81","nodeType":"YulIdentifier","src":"42351:3:81"},"nativeSrc":"42351:19:81","nodeType":"YulFunctionCall","src":"42351:19:81"}],"functionName":{"name":"and","nativeSrc":"42339:3:81","nodeType":"YulIdentifier","src":"42339:3:81"},"nativeSrc":"42339:32:81","nodeType":"YulFunctionCall","src":"42339:32:81"}],"functionName":{"name":"mstore","nativeSrc":"42321:6:81","nodeType":"YulIdentifier","src":"42321:6:81"},"nativeSrc":"42321:51:81","nodeType":"YulFunctionCall","src":"42321:51:81"},"nativeSrc":"42321:51:81","nodeType":"YulExpressionStatement","src":"42321:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42392:9:81","nodeType":"YulIdentifier","src":"42392:9:81"},{"kind":"number","nativeSrc":"42403:2:81","nodeType":"YulLiteral","src":"42403:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42388:3:81","nodeType":"YulIdentifier","src":"42388:3:81"},"nativeSrc":"42388:18:81","nodeType":"YulFunctionCall","src":"42388:18:81"},{"arguments":[{"name":"value1","nativeSrc":"42412:6:81","nodeType":"YulIdentifier","src":"42412:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42428:3:81","nodeType":"YulLiteral","src":"42428:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"42433:1:81","nodeType":"YulLiteral","src":"42433:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42424:3:81","nodeType":"YulIdentifier","src":"42424:3:81"},"nativeSrc":"42424:11:81","nodeType":"YulFunctionCall","src":"42424:11:81"},{"kind":"number","nativeSrc":"42437:1:81","nodeType":"YulLiteral","src":"42437:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42420:3:81","nodeType":"YulIdentifier","src":"42420:3:81"},"nativeSrc":"42420:19:81","nodeType":"YulFunctionCall","src":"42420:19:81"}],"functionName":{"name":"and","nativeSrc":"42408:3:81","nodeType":"YulIdentifier","src":"42408:3:81"},"nativeSrc":"42408:32:81","nodeType":"YulFunctionCall","src":"42408:32:81"}],"functionName":{"name":"mstore","nativeSrc":"42381:6:81","nodeType":"YulIdentifier","src":"42381:6:81"},"nativeSrc":"42381:60:81","nodeType":"YulFunctionCall","src":"42381:60:81"},"nativeSrc":"42381:60:81","nodeType":"YulExpressionStatement","src":"42381:60:81"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"42147:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42237:9:81","nodeType":"YulTypedName","src":"42237:9:81","type":""},{"name":"value1","nativeSrc":"42248:6:81","nodeType":"YulTypedName","src":"42248:6:81","type":""},{"name":"value0","nativeSrc":"42256:6:81","nodeType":"YulTypedName","src":"42256:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42267:4:81","nodeType":"YulTypedName","src":"42267:4:81","type":""}],"src":"42147:300:81"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_4710() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_4711() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0140)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_bytes(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(and(add(length, 31), not(31)), 0x20)\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_address(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_struct_UserOpInfo(headStart, end) -> value\n    {\n        let _1 := sub(end, headStart)\n        if slt(_1, 0x01c0) { revert(0, 0) }\n        value := allocate_memory_4710()\n        if slt(_1, 0x0140) { revert(0, 0) }\n        let value_1 := allocate_memory_4711()\n        mstore(value_1, abi_decode_address(headStart))\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value_1, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value_1, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value_1, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value_1, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 0xa0))\n        mstore(add(value_1, 0xa0), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value_1, 192), value_7)\n        mstore(add(value_1, 224), abi_decode_address(add(headStart, 224)))\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 256))\n        mstore(add(value_1, 256), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 288))\n        mstore(add(value_1, 288), value_9)\n        mstore(value, value_1)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 0x0140))\n        mstore(add(value, 32), value_10)\n        let value_11 := 0\n        value_11 := calldataload(add(headStart, 352))\n        mstore(add(value, 64), value_11)\n        let value_12 := 0\n        value_12 := calldataload(add(headStart, 384))\n        mstore(add(value, 96), value_12)\n        let value_13 := 0\n        value_13 := calldataload(add(headStart, 416))\n        mstore(add(value, 128), value_13)\n    }\n    function abi_decode_bytes_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, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes_memory_ptrt_struct$_UserOpInfo_$947_memory_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 512) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        let array := allocate_memory(array_allocation_size_bytes(length))\n        mstore(array, length)\n        if gt(add(add(_1, length), 0x20), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 0x20), add(_1, 0x20), length)\n        mstore(add(add(array, length), 0x20), 0)\n        value0 := array\n        value1 := abi_decode_struct_UserOpInfo(add(headStart, 0x20), dataEnd)\n        let offset_1 := calldataload(add(headStart, 480))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\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_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_uint192(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(192, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint192(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint192(headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint192(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        value1 := abi_decode_uint192(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_address_payablet_uint256(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 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 288) { revert(0, 0) }\n        value0 := _1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\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$_DepositInfo_$3673_memory_ptr__to_t_struct$_DepositInfo_$3673_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, mload(value0))\n        mstore(add(headStart, 0x20), iszero(iszero(mload(add(value0, 0x20)))))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffffff))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), 0xffffffffffff))\n    }\n    function abi_decode_array_struct_PackedUserOperation_calldata_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_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptrt_address_payable(headStart, dataEnd) -> value0, value1, value2\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_struct_PackedUserOperation_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\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 offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_decode_tuple_t_address_payable(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_decode_tuple_t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptrt_address_payable(headStart, dataEnd) -> value0, value1, value2\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_struct_PackedUserOperation_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__to_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), iszero(iszero(value1)))\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffffffff))\n        mstore(add(headStart, 96), and(value3, 0xffffffff))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"AA92 internal call only\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        tail := abi_encode_bytes(value1, add(headStart, 64))\n    }\n    function abi_encode_tuple_t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"must specify unstake delay\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"cannot decrease unstake time\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"no stake specified\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 14)\n        mstore(add(headStart, 64), \"stake overflow\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_uint32__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 25)\n        mstore(add(headStart, 64), \"Withdraw amount too large\")\n        tail := add(headStart, 96)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_address_payable_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n    { end := pos }\n    function abi_encode_tuple_t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"failed to withdraw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_address(value, pos)\n    {\n        mstore(pos, and(value, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_uint256__to_t_bytes32_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_struct$_PackedUserOperation_$3748_calldata_ptr(base_ref, ptr_to_tail) -> addr\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(286)))) { revert(0, 0) }\n        addr := add(base_ref, rel_offset_of_tail)\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), 64)\n        tail := abi_encode_bytes(value1, add(headStart, 64))\n    }\n    function abi_encode_bytes_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes_calldata(value0, value1, add(headStart, 32))\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_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_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 10)\n        mstore(add(headStart, 64), \"not staked\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"already unstaking\")\n        tail := add(headStart, 96)\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint48__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"No stake to withdraw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"must call unlockStake() first\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"Stake withdrawal is not due\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"failed to withdraw stake\")\n        tail := add(headStart, 96)\n    }\n    function access_calldata_tail_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr(base_ref, ptr_to_tail) -> addr\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(94)))) { revert(0, 0) }\n        addr := add(base_ref, rel_offset_of_tail)\n    }\n    function access_calldata_tail_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), shl(5, length))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IAggregator_$3382(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_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"AA96 invalid aggregator\")\n        tail := add(headStart, 96)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function calldata_access_bytes_calldata(base_ref, ptr) -> value, length\n    {\n        let rel_offset_of_tail := calldataload(ptr)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let value_1 := add(rel_offset_of_tail, base_ref)\n        length := calldataload(value_1)\n        value := add(value_1, 0x20)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if sgt(value, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_struct_PackedUserOperation_calldata(value, pos) -> end\n    {\n        abi_encode_address(abi_decode_address(value), pos)\n        let value_1 := 0\n        value_1 := calldataload(add(value, 0x20))\n        mstore(add(pos, 0x20), value_1)\n        let memberValue0, memberValue1 := calldata_access_bytes_calldata(value, add(value, 0x40))\n        mstore(add(pos, 0x40), 0x0120)\n        let tail := abi_encode_bytes_calldata(memberValue0, memberValue1, add(pos, 0x0120))\n        let memberValue0_1, memberValue1_1 := calldata_access_bytes_calldata(value, add(value, 0x60))\n        mstore(add(pos, 0x60), sub(tail, pos))\n        let tail_1 := abi_encode_bytes_calldata(memberValue0_1, memberValue1_1, tail)\n        let value_2 := 0\n        value_2 := calldataload(add(value, 0x80))\n        mstore(add(pos, 0x80), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(value, 0xa0))\n        mstore(add(pos, 0xa0), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(value, 0xc0))\n        mstore(add(pos, 0xc0), value_4)\n        let memberValue0_2, memberValue1_2 := calldata_access_bytes_calldata(value, add(value, 0xe0))\n        mstore(add(pos, 0xe0), sub(tail_1, pos))\n        let tail_2 := abi_encode_bytes_calldata(memberValue0_2, memberValue1_2, tail_1)\n        let memberValue0_3, memberValue1_3 := calldata_access_bytes_calldata(value, add(value, 0x0100))\n        mstore(add(pos, 0x0100), sub(tail_2, pos))\n        end := abi_encode_bytes_calldata(memberValue0_3, memberValue1_3, tail_2)\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 64)\n        mstore(headStart, 64)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 96)\n        let tail_2 := add(add(headStart, shl(5, value1)), 96)\n        let srcPtr := value0\n        let i := 0\n        let _1 := add(sub(calldatasize(), value0), not(286))\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(95)))\n            let rel_offset_of_tail := calldataload(srcPtr)\n            if iszero(slt(rel_offset_of_tail, _1)) { revert(0, 0) }\n            tail_2 := abi_encode_struct_PackedUserOperation_calldata(add(rel_offset_of_tail, value0), tail_2)\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        mstore(add(headStart, 0x20), sub(tail_2, headStart))\n        tail := abi_encode_bytes_calldata(value2, value3, tail_2)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_enum$_PostOpMode_$3593_t_bytes_memory_ptr_t_uint256_t_uint256__to_t_uint8_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        if iszero(lt(value0, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 128)\n        tail := abi_encode_bytes(value1, add(headStart, 128))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"AA94 gas values overflow\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 26)\n        mstore(add(headStart, 96), \"AA25 invalid account nonce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 30)\n        mstore(add(headStart, 96), \"AA26 over verificationGasLimit\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 20)\n        mstore(add(headStart, 96), \"AA24 signature error\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 23)\n        mstore(add(headStart, 96), \"AA22 expired or not due\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 20)\n        mstore(add(headStart, 96), \"AA34 signature error\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 33)\n        mstore(add(headStart, 96), \"AA32 paymaster expired or not du\")\n        mstore(add(headStart, 128), \"e\")\n        tail := add(headStart, 160)\n    }\n    function abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        tail := abi_encode_struct_PackedUserOperation_calldata(value0, add(headStart, 64))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_struct_UserOpInfo(value, pos)\n    {\n        let _1 := mload(value)\n        abi_encode_address(mload(_1), pos)\n        mstore(add(pos, 0x20), mload(add(_1, 0x20)))\n        mstore(add(pos, 0x40), mload(add(_1, 0x40)))\n        mstore(add(pos, 0x60), mload(add(_1, 0x60)))\n        mstore(add(pos, 0x80), mload(add(_1, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(_1, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(_1, 0xc0)))\n        let memberValue0 := mload(add(_1, 0xe0))\n        abi_encode_address(memberValue0, add(pos, 0xe0))\n        mstore(add(pos, 0x0100), mload(add(_1, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(_1, 0x0120)))\n        mstore(add(pos, 0x0140), mload(add(value, 0x20)))\n        mstore(add(pos, 0x0160), mload(add(value, 0x40)))\n        mstore(add(pos, 0x0180), mload(add(value, 0x60)))\n        mstore(add(pos, 0x01a0), mload(add(value, 0x80)))\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 512)\n        let tail_1 := abi_encode_bytes(value0, add(headStart, 512))\n        abi_encode_struct_UserOpInfo(value1, add(headStart, 32))\n        mstore(add(headStart, 480), sub(tail_1, headStart))\n        tail := abi_encode_bytes(value2, tail_1)\n    }\n    function abi_encode_tuple_t_bytes_calldata_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 512)\n        let tail_1 := abi_encode_bytes_calldata(value0, value1, add(headStart, 512))\n        abi_encode_struct_UserOpInfo(value2, add(headStart, 32))\n        mstore(add(headStart, 480), sub(tail_1, headStart))\n        tail := abi_encode_bytes(value3, tail_1)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 15)\n        mstore(add(headStart, 96), \"AA95 out of gas\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"AA90 invalid beneficiary\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"AA91 failed send to beneficiary\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_bool_t_uint256_t_uint256__to_t_uint256_t_bool_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), iszero(iszero(value1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__to_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__fromStack_reversed(headStart, value7, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 256)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n        mstore(add(headStart, 224), value7)\n    }\n    function abi_encode_tuple_t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"AA93 invalid paymasterAndData\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32_t_uint256__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        tail := abi_encode_struct_PackedUserOperation_calldata(value0, add(headStart, 96))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\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_t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 96)\n        mstore(add(headStart, 96), 13)\n        mstore(add(headStart, 128), \"AA23 reverted\")\n        mstore(add(headStart, 64), 160)\n        tail := abi_encode_bytes(value1, add(headStart, 160))\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 23)\n        mstore(add(headStart, 96), \"AA21 didn't pay prefund\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 30)\n        mstore(add(headStart, 96), \"AA31 paymaster deposit too low\")\n        tail := add(headStart, 128)\n    }\n    function abi_decode_tuple_t_bytes_memory_ptrt_uint256_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        let array := allocate_memory(array_allocation_size_bytes(length))\n        mstore(array, length)\n        if gt(add(add(_1, length), 0x20), dataEnd) { revert(0, 0) }\n        mcopy(add(array, 0x20), add(_1, 0x20), length)\n        mstore(add(add(array, length), 0x20), 0)\n        value0 := array\n        let value := 0\n        value := mload(add(headStart, 0x20))\n        value1 := value\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 96)\n        mstore(add(headStart, 96), 13)\n        mstore(add(headStart, 128), \"AA33 reverted\")\n        mstore(add(headStart, 64), 160)\n        tail := abi_encode_bytes(value1, add(headStart, 160))\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 39)\n        mstore(add(headStart, 96), \"AA36 over paymasterVerificationG\")\n        mstore(add(headStart, 128), \"asLimit\")\n        tail := add(headStart, 160)\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffff))\n        if lt(len, 20)\n        {\n            value := and(and(_1, shl(shl(3, sub(20, len)), not(0xffffffffffffffffffffffff))), not(0xffffffffffffffffffffffff))\n        }\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes16(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffffffffffff))\n        if lt(len, 16)\n        {\n            value := and(and(_1, shl(shl(3, sub(16, len)), not(0xffffffffffffffffffffffffffffffff))), not(0xffffffffffffffffffffffffffffffff))\n        }\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 31)\n        mstore(add(headStart, 96), \"AA10 sender already constructed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 27)\n        mstore(add(headStart, 96), \"AA13 initCode failed or OOG\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 32)\n        mstore(add(headStart, 96), \"AA14 initCode must return sender\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 32)\n        mstore(add(headStart, 96), \"AA15 initCode must create sender\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"174":[{"length":32,"start":3552},{"length":32,"start":10005}]},"linkReferences":{},"object":"608060405260043610610107575f3560e01c806370a0823111610092578063b760faf911610062578063b760faf914610425578063bb9fe6bf14610438578063c23a5cea1461044c578063dbed18e01461046b578063fc7e286d1461048a575f5ffd5b806370a0823114610394578063765e827f146103c8578063850aaf62146103e75780639b249f6914610406575f5ffd5b80631b2e01b8116100d85780631b2e01b8146101ae578063205c2878146101e457806322cdde4c1461020357806335567e1a146102225780635287ce1214610280575f5ffd5b806242dc531461011b57806301ffc9a71461014d5780630396cb601461017c5780630bd28e3b1461018f575f5ffd5b366101175761011533610530565b005b5f5ffd5b348015610126575f5ffd5b5061013a610135366004612c4c565b610584565b6040519081526020015b60405180910390f35b348015610158575f5ffd5b5061016c610167366004612d04565b610702565b6040519015158152602001610144565b61011561018a366004612d2b565b610789565b34801561019a575f5ffd5b506101156101a9366004612d64565b610a14565b3480156101b9575f5ffd5b5061013a6101c8366004612d7d565b600160209081525f928352604080842090915290825290205481565b3480156101ef575f5ffd5b506101156101fe366004612db0565b610a4a565b34801561020e575f5ffd5b5061013a61021d366004612dda565b610b96565b34801561022d575f5ffd5b5061013a61023c366004612d7d565b6001600160a01b0382165f9081526001602090815260408083206001600160c01b038516845290915290819020549082901b67ffffffffffffffff19161792915050565b34801561028b575f5ffd5b5061033a61029a366004612e11565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152506001600160a01b03165f9081526020818152604091829020825160a0810184528154815260019091015460ff811615159282019290925261010082046001600160701b031692810192909252600160781b810463ffffffff166060830152600160981b900465ffffffffffff16608082015290565b60405161014491905f60a082019050825182526020830151151560208301526001600160701b03604084015116604083015263ffffffff606084015116606083015265ffffffffffff608084015116608083015292915050565b34801561039f575f5ffd5b5061013a6103ae366004612e11565b6001600160a01b03165f9081526020819052604090205490565b3480156103d3575f5ffd5b506101156103e2366004612e6c565b610bd7565b3480156103f2575f5ffd5b50610115610401366004612ebe565b610d4c565b348015610411575f5ffd5b50610115610420366004612f0e565b610dc7565b610115610433366004612e11565b610530565b348015610443575f5ffd5b50610115610e7e565b348015610457575f5ffd5b50610115610466366004612e11565b610fa8565b348015610476575f5ffd5b50610115610485366004612e6c565b6111c7565b348015610495575f5ffd5b506104ed6104a4366004612e11565b5f602081905290815260409020805460019091015460ff81169061010081046001600160701b031690600160781b810463ffffffff1690600160981b900465ffffffffffff1685565b6040805195865293151560208601526001600160701b039092169284019290925263ffffffff909116606083015265ffffffffffff16608082015260a001610144565b5f61053b82346115ce565b9050816001600160a01b03167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c48260405161057891815260200190565b60405180910390a25050565b5f5f5a90503330146105dd5760405162461bcd60e51b815260206004820152601760248201527f4141393220696e7465726e616c2063616c6c206f6e6c7900000000000000000060448201526064015b60405180910390fd5b8451606081015160a082015181016127100160405a603f028161060257610602612f4c565b0410156106185763deaddead60e01b5f5260205ffd5b87515f90156106a6575f610631845f01515f8c86611600565b9050806106a4575f610644610800611616565b80519091501561069e57845f01516001600160a01b03168a602001517f1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a201876020015184604051610695929190612f8e565b60405180910390a35b60019250505b505b5f88608001515a86030190506106f4828a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250879250611641915050565b9a9950505050505050505050565b5f6001600160e01b0319821663307e35b760e11b148061073257506001600160e01b0319821663122a0e9b60e31b145b8061074d57506001600160e01b0319821663cf28ef9760e01b145b8061076857506001600160e01b03198216633e84f02160e01b145b8061078357506301ffc9a760e01b6001600160e01b03198316145b92915050565b335f90815260208190526040902063ffffffff82166107ea5760405162461bcd60e51b815260206004820152601a60248201527f6d757374207370656369667920756e7374616b652064656c617900000000000060448201526064016105d4565b600181015463ffffffff600160781b9091048116908316101561084f5760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420646563726561736520756e7374616b652074696d650000000060448201526064016105d4565b60018101545f9061086f90349061010090046001600160701b0316612fba565b90505f81116108b55760405162461bcd60e51b81526020600482015260126024820152711b9bc81cdd185ad9481cdc1958da599a595960721b60448201526064016105d4565b6001600160701b038111156108fd5760405162461bcd60e51b815260206004820152600e60248201526d7374616b65206f766572666c6f7760901b60448201526064016105d4565b6040805160a08101825283548152600160208083018281526001600160701b0386811685870190815263ffffffff8a8116606088018181525f60808a0181815233808352828a52918c90209a518b55965199909801805494519151965165ffffffffffff16600160981b0265ffffffffffff60981b1997909416600160781b029690961669ffffffffffffffffffff60781b1991909516610100026effffffffffffffffffffffffffff0019991515999099166effffffffffffffffffffffffffffff1990941693909317979097179190911691909117179055835185815290810192909252917fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01910160405180910390a2505050565b335f9081526001602090815260408083206001600160c01b03851684529091528120805491610a4283612fcd565b919050555050565b335f9081526020819052604090208054821115610aa95760405162461bcd60e51b815260206004820152601960248201527f576974686472617720616d6f756e7420746f6f206c617267650000000000000060448201526064016105d4565b8054610ab6908390612fe5565b8155604080516001600160a01b03851681526020810184905233917fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb910160405180910390a25f836001600160a01b0316836040515f6040518083038185875af1925050503d805f8114610b45576040519150601f19603f3d011682016040523d82523d5f602084013e610b4a565b606091505b5050905080610b905760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b60448201526064016105d4565b50505050565b5f610ba0826117f9565b6040805160208101929092523090820152466060820152608001604051602081830303815290604052805190602001209050919050565b610bdf611811565b815f816001600160401b03811115610bf957610bf9612a57565b604051908082528060200260200182016040528015610c3257816020015b610c1f6129d0565b815260200190600190039081610c175790505b5090505f5b82811015610ca7575f828281518110610c5257610c52612ff8565b602002602001015190505f5f610c8c848a8a87818110610c7457610c74612ff8565b9050602002810190610c86919061300c565b85611839565b91509150610c9c8483835f611a3b565b505050600101610c37565b506040515f907fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972908290a15f5b83811015610d2f57610d2381888884818110610cf257610cf2612ff8565b9050602002810190610d04919061300c565b858481518110610d1657610d16612ff8565b6020026020010151611bd5565b90910190600101610cd4565b50610d3a8482611e83565b505050610d476001600255565b505050565b5f5f846001600160a01b03168484604051610d6892919061302b565b5f60405180830381855af49150503d805f8114610da0576040519150601f19603f3d011682016040523d82523d5f602084013e610da5565b606091505b50915091508181604051632650415560e21b81526004016105d492919061303a565b604051632b870d1b60e11b81525f906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063570e1a3690610e17908690869060040161307c565b6020604051808303815f875af1158015610e33573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e57919061308f565b604051633653dc0360e11b81526001600160a01b03821660048201529091506024016105d4565b335f90815260208190526040812060018101549091600160781b90910463ffffffff169003610edc5760405162461bcd60e51b815260206004820152600a6024820152691b9bdd081cdd185ad95960b21b60448201526064016105d4565b600181015460ff16610f245760405162461bcd60e51b8152602060048201526011602482015270616c726561647920756e7374616b696e6760781b60448201526064016105d4565b60018101545f90610f4290600160781b900463ffffffff16426130aa565b60018301805460ff65ffffffffffff60981b011916600160981b65ffffffffffff841690810260ff19169190911790915560405190815290915033907ffa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a90602001610578565b335f908152602081905260409020600181015461010090046001600160701b03168061100d5760405162461bcd60e51b81526020600482015260146024820152734e6f207374616b6520746f20776974686472617760601b60448201526064016105d4565b6001820154600160981b900465ffffffffffff1661106d5760405162461bcd60e51b815260206004820152601d60248201527f6d7573742063616c6c20756e6c6f636b5374616b65282920666972737400000060448201526064016105d4565b600182015442600160981b90910465ffffffffffff1611156110d15760405162461bcd60e51b815260206004820152601b60248201527f5374616b65207769746864726177616c206973206e6f7420647565000000000060448201526064016105d4565b600182018054610100600160c81b0319169055604080516001600160a01b03851681526020810183905233917fb7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3910160405180910390a25f836001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611171576040519150601f19603f3d011682016040523d82523d5f602084013e611176565b606091505b5050905080610b905760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207769746864726177207374616b65000000000000000060448201526064016105d4565b6111cf611811565b815f805b8281101561133657368686838181106111ee576111ee612ff8565b905060200281019061120091906130c8565b9050365f61120e83806130dc565b90925090505f6112246040850160208601612e11565b90505f196001600160a01b0382160161127f5760405162461bcd60e51b815260206004820152601760248201527f4141393620696e76616c69642061676772656761746f7200000000000000000060448201526064016105d4565b6001600160a01b0381161561131a576001600160a01b038116632dd8113384846112ac6040890189613121565b6040518563ffffffff1660e01b81526004016112cb9493929190613283565b5f6040518083038186803b1580156112e1575f5ffd5b505afa9250505080156112f2575060015b61131a5760405163086a9f7560e41b81526001600160a01b03821660048201526024016105d4565b6113248287612fba565b955050600190930192506111d3915050565b505f816001600160401b0381111561135057611350612a57565b60405190808252806020026020018201604052801561138957816020015b6113766129d0565b81526020019060019003908161136e5790505b5090505f805b8481101561146057368888838181106113aa576113aa612ff8565b90506020028101906113bc91906130c8565b9050365f6113ca83806130dc565b90925090505f6113e06040850160208601612e11565b9050815f5b8181101561144e575f89898151811061140057611400612ff8565b602002602001015190505f5f6114228b898987818110610c7457610c74612ff8565b9150915061143284838389611a3b565b8a61143c81612fcd565b9b5050600190930192506113e5915050565b50506001909401935061138f92505050565b506040517fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972905f90a1505f80805b8581101561158a57368989838181106114a9576114a9612ff8565b90506020028101906114bb91906130c8565b90506114cd6040820160208301612e11565b6001600160a01b03167f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d60405160405180910390a2365f61150e83806130dc565b9092509050805f5b81811015611579576115588885858481811061153457611534612ff8565b9050602002810190611546919061300c565b8b8b81518110610d1657610d16612ff8565b6115629088612fba565b96508761156e81612fcd565b985050600101611516565b50506001909301925061148e915050565b506040515f907f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d908290a26115bf8682611e83565b5050505050610d476001600255565b6001600160a01b0382165f908152602081905260408120805482906115f4908590612fba565b91829055509392505050565b5f5f5f845160208601878987f195945050505050565b60603d828111156116245750815b604051602082018101604052818152815f602083013e9392505050565b5f5f5a85519091505f908161165582611f78565b60e08301519091506001600160a01b038116611674578251935061172b565b8093505f8851111561172b57868202955060028a60028111156116995761169961330e565b1461172b5760a0830151604051637c627b2160e01b81526001600160a01b03831691637c627b21916116d5908e908d908c908990600401613322565b5f604051808303815f88803b1580156116ec575f5ffd5b5087f1935050505080156116fe575060015b61172b575f61170e610800611616565b905080604051632b5e552f60e21b81526004016105d49190613369565b5a60a0840151606085015160808c01519288039990990198019088038082111561175e576064600a828403020498909801975b505060408901518783029650868110156117b75760028b60028111156117865761178661330e565b036117a8578096506117978a611fa9565b6117a38a5f898b611ff8565b6117eb565b63deadaa5160e01b5f5260205ffd5b8681036117c486826115ce565b505f808d60028111156117d9576117d961330e565b1490506117e88c828b8d611ff8565b50505b505050505050949350505050565b5f61180382612073565b805190602001209050919050565b600280540361183357604051633ee5aeb560e01b815260040160405180910390fd5b60028055565b5f5f5f5a845190915061184c8682612128565b61185586610b96565b6020860152604081015161012082015161010083015160a08401516080850151606086015160c0870151861717171717176effffffffffffffffffffffffffffff8111156118e55760405162461bcd60e51b815260206004820152601860248201527f41413934206761732076616c756573206f766572666c6f77000000000000000060448201526064016105d4565b5f6119138460c081015160a08201516080830151606084015160408501516101009095015194010101010290565b90506119228a8a8a8487612234565b9650611935845f015185602001516123c5565b61198b5789604051631101335b60e11b81526004016105d4918152604060208201819052601a908201527f4141323520696e76616c6964206163636f756e74206e6f6e6365000000000000606082015260800190565b825a860311156119e75789604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413236206f76657220766572696669636174696f6e4761734c696d69740000606082015260800190565b60e08401516060906001600160a01b031615611a0e57611a098b8b8b85612411565b975090505b604089018290528060608a015260a08a01355a870301896080018181525050505050505050935093915050565b5f5f611a46856125c8565b91509150816001600160a01b0316836001600160a01b031614611aac5785604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0991a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8015611b045785604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f414132322065787069726564206f72206e6f7420647565000000000000000000606082015260800190565b5f611b0e856125c8565b925090506001600160a01b03811615611b6a5786604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0999a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8115611bcc5786604051631101335b60e11b81526004016105d49181526040602082018190526021908201527f41413332207061796d61737465722065787069726564206f72206e6f742064756060820152606560f81b608082015260a00190565b50505050505050565b5f5f5a90505f611be6846060015190565b6040519091505f903682611bfd60608a018a613121565b9150915060605f826003811115611c1357843591505b506372288ed160e01b6001600160e01b0319821601611cc0575f8b8b60200151604051602401611c4492919061337b565b60408051601f198184030181529181526020820180516001600160e01b0316638dd7712f60e01b1790525190915030906242dc5390611c8b9084908f908d90602401613446565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050925050611d15565b306001600160a01b03166242dc5385858d8b604051602401611ce5949392919061347a565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505091505b60205f8351602085015f305af195505f51985084604052505050505080611e79575f3d80602003611d4a5760205f5f3e5f5191505b5063deaddead60e01b8103611d9d5787604051631101335b60e11b81526004016105d4918152604060208201819052600f908201526e41413935206f7574206f662067617360881b606082015260800190565b63deadaa5160e01b8103611dec575f86608001515a611dbc9087612fe5565b611dc69190612fba565b6040880151909150611dd788611fa9565b611de3885f8385611ff8565b9550611e779050565b855180516020808901519201516001600160a01b0390911691907ff62676f440ff169a3a9afdbf812e89e7f95975ee8e5c31214ffdef631c5f479290611e33610800611616565b604051611e41929190612f8e565b60405180910390a35f86608001515a611e5a9087612fe5565b611e649190612fba565b9050611e736002888684611641565b9550505b505b5050509392505050565b6001600160a01b038216611ed95760405162461bcd60e51b815260206004820152601860248201527f4141393020696e76616c69642062656e6566696369617279000000000000000060448201526064016105d4565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611f22576040519150601f19603f3d011682016040523d82523d5f602084013e611f27565b606091505b5050905080610d475760405162461bcd60e51b815260206004820152601f60248201527f41413931206661696c65642073656e6420746f2062656e65666963696172790060448201526064016105d4565b6101008101516101208201515f9190808203611f95575092915050565b611fa182488301612617565b949350505050565b80518051602080840151928101516040519081526001600160a01b0390921692917f67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e910160405180910390a350565b835160e081015181516020808801519301516040516001600160a01b039384169492909316927f49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f916120659189908990899093845291151560208401526040830152606082015260800190565b60405180910390a450505050565b6060813560208301355f61209261208d6040870187613121565b61262e565b90505f6120a561208d6060880188613121565b9050608086013560a087013560c08801355f6120c761208d60e08c018c613121565b604080516001600160a01b039a909a1660208b015289810198909852606089019690965250608087019390935260a086019190915260c085015260e08401526101008084019190915281518084039091018152610120909201905292915050565b6121356020830183612e11565b6001600160a01b03168152602082810135908201526001600160801b036080808401358281166060850152811c604084015260a084013560c0808501919091528401359182166101008401521c610120820152365f61219760e0850185613121565b9092509050801561221a5760348110156121f35760405162461bcd60e51b815260206004820152601d60248201527f4141393320696e76616c6964207061796d6173746572416e644461746100000060448201526064016105d4565b6121fd8282612640565b60a086015260808501526001600160a01b031660e0840152610b90565b5f60e084018190526080840181905260a084015250505050565b825180515f9190612252888761224d60408b018b613121565b6126a7565b60e08201515f6001600160a01b038216612293576001600160a01b0383165f9081526020819052604090205487811161228d5780880361228f565b5f5b9150505b60208801516040516306608bdf60e21b81526001600160a01b038516916319822f7c9189916122c9918e919087906004016134af565b6020604051808303815f8887f193505050508015612304575060408051601f3d908101601f19168201909252612301918101906134d3565b60015b61232f5789612314610800611616565b6040516365c8fd4d60e01b81526004016105d49291906134ea565b94506001600160a01b0382166123b8576001600160a01b0383165f9081526020819052604090208054808911156123b2578b604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f41413231206469646e2774207061792070726566756e64000000000000000000606082015260800190565b88900390555b5050505095945050505050565b6001600160a01b0382165f90815260016020908152604080832084821c80855292528220805484916001600160401b03831691908561240383612fcd565b909155501495945050505050565b60605f5f5a855160e08101516001600160a01b0381165f9081526020819052604090208054939450919290919087811015612498578a604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413331207061796d6173746572206465706f73697420746f6f206c6f770000606082015260800190565b878103825f01819055505f84608001519050836001600160a01b03166352b7512c828d8d602001518d6040518563ffffffff1660e01b81526004016124df939291906134af565b5f604051808303815f8887f19350505050801561251d57506040513d5f823e601f3d908101601f1916820160405261251a9190810190613526565b60015b612548578b61252d610800611616565b6040516365c8fd4d60e01b81526004016105d492919061359e565b9098509650805a870311156125b9578b604051631101335b60e11b81526004016105d49181526040602082018190526027908201527f41413336206f766572207061796d6173746572566572696669636174696f6e47606082015266185cd31a5b5a5d60ca1b608082015260a00190565b50505050505094509492505050565b5f5f825f036125db57505f928392509050565b5f6125e584612961565b9050806040015165ffffffffffff1642118061260c5750806020015165ffffffffffff1642105b905194909350915050565b5f8183106126255781612627565b825b9392505050565b5f604051828085833790209392505050565b5f808061265060148286886135da565b61265991613601565b60601c61266a6024601487896135da565b6126739161364e565b60801c61268460346024888a6135da565b61268d9161364e565b9194506001600160801b0316925060801c90509250925092565b8015610b90578251516001600160a01b0381163b156127125784604051631101335b60e11b81526004016105d4918152604060208201819052601f908201527f414131302073656e64657220616c726561647920636f6e737472756374656400606082015260800190565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663570e1a36865f01516040015186866040518463ffffffff1660e01b815260040161276992919061307c565b6020604051808303815f8887f1158015612785573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127aa919061308f565b90506001600160a01b03811661280c5785604051631101335b60e11b81526004016105d4918152604060208201819052601b908201527f4141313320696e6974436f6465206661696c6564206f72204f4f470000000000606082015260800190565b816001600160a01b0316816001600160a01b0316146128765785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313420696e6974436f6465206d7573742072657475726e2073656e646572606082015260800190565b806001600160a01b03163b5f036128d85785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313520696e6974436f6465206d757374206372656174652073656e646572606082015260800190565b5f6128e660148286886135da565b6128ef91613601565b60601c9050826001600160a01b031686602001517fd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d83895f015160e001516040516129509291906001600160a01b0392831681529116602082015260400190565b60405180910390a350505050505050565b604080516060810182525f80825260208201819052918101919091528160a081901c65ffffffffffff81165f0361299b575065ffffffffffff5b604080516060810182526001600160a01b03909316835260d09490941c602083015265ffffffffffff16928101929092525090565b6040518060a00160405280612a396040518061014001604052805f6001600160a01b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f6001600160a01b031681526020015f81526020015f81525090565b81526020015f81526020015f81526020015f81526020015f81525090565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715612a8d57612a8d612a57565b60405290565b60405161014081016001600160401b0381118282101715612a8d57612a8d612a57565b604051601f8201601f191681016001600160401b0381118282101715612ade57612ade612a57565b604052919050565b5f6001600160401b03821115612afe57612afe612a57565b50601f01601f191660200190565b6001600160a01b0381168114612b20575f5ffd5b50565b8035612b2e81612b0c565b919050565b5f8183036101c0811215612b45575f5ffd5b612b4d612a6b565b9150610140811215612b5d575f5ffd5b50612b66612a93565b612b6f83612b23565b81526020838101359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c08084013590820152612bb960e08401612b23565b60e08201526101008381013590820152610120808401359082015281526101408201356020820152610160820135604082015261018082013560608201526101a0909101356080820152919050565b5f5f83601f840112612c18575f5ffd5b5081356001600160401b03811115612c2e575f5ffd5b602083019150836020828501011115612c45575f5ffd5b9250929050565b5f5f5f5f6102008587031215612c60575f5ffd5b84356001600160401b03811115612c75575f5ffd5b8501601f81018713612c85575f5ffd5b8035612c98612c9382612ae6565b612ab6565b818152886020838501011115612cac575f5ffd5b816020840160208301375f60208383010152809650505050612cd18660208701612b33565b92506101e08501356001600160401b03811115612cec575f5ffd5b612cf887828801612c08565b95989497509550505050565b5f60208284031215612d14575f5ffd5b81356001600160e01b031981168114612627575f5ffd5b5f60208284031215612d3b575f5ffd5b813563ffffffff81168114612627575f5ffd5b80356001600160c01b0381168114612b2e575f5ffd5b5f60208284031215612d74575f5ffd5b61262782612d4e565b5f5f60408385031215612d8e575f5ffd5b8235612d9981612b0c565b9150612da760208401612d4e565b90509250929050565b5f5f60408385031215612dc1575f5ffd5b8235612dcc81612b0c565b946020939093013593505050565b5f60208284031215612dea575f5ffd5b81356001600160401b03811115612dff575f5ffd5b82016101208185031215612627575f5ffd5b5f60208284031215612e21575f5ffd5b813561262781612b0c565b5f5f83601f840112612e3c575f5ffd5b5081356001600160401b03811115612e52575f5ffd5b6020830191508360208260051b8501011115612c45575f5ffd5b5f5f5f60408486031215612e7e575f5ffd5b83356001600160401b03811115612e93575f5ffd5b612e9f86828701612e2c565b9094509250506020840135612eb381612b0c565b809150509250925092565b5f5f5f60408486031215612ed0575f5ffd5b8335612edb81612b0c565b925060208401356001600160401b03811115612ef5575f5ffd5b612f0186828701612c08565b9497909650939450505050565b5f5f60208385031215612f1f575f5ffd5b82356001600160401b03811115612f34575f5ffd5b612f4085828601612c08565b90969095509350505050565b634e487b7160e01b5f52601260045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b828152604060208201525f611fa16040830184612f60565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078357610783612fa6565b5f60018201612fde57612fde612fa6565b5060010190565b8181038181111561078357610783612fa6565b634e487b7160e01b5f52603260045260245ffd5b5f823561011e19833603018112613021575f5ffd5b9190910192915050565b818382375f9101908152919050565b8215158152604060208201525f611fa16040830184612f60565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f611fa1602083018486613054565b5f6020828403121561309f575f5ffd5b815161262781612b0c565b65ffffffffffff818116838216019081111561078357610783612fa6565b5f8235605e19833603018112613021575f5ffd5b5f5f8335601e198436030181126130f1575f5ffd5b8301803591506001600160401b0382111561310a575f5ffd5b6020019150600581901b3603821315612c45575f5ffd5b5f5f8335601e19843603018112613136575f5ffd5b8301803591506001600160401b0382111561314f575f5ffd5b602001915036819003821315612c45575f5ffd5b5f5f8335601e19843603018112613178575f5ffd5b83016020810192503590506001600160401b03811115613196575f5ffd5b803603821315612c45575f5ffd5b6131be826131b183612b23565b6001600160a01b03169052565b602081810135908301525f6131d66040830183613163565b61012060408601526131ed61012086018284613054565b9150506131fd6060840184613163565b8583036060870152613210838284613054565b6080868101359088015260a0808701359088015260c08087013590880152925061324091505060e0840184613163565b85830360e0870152613253838284613054565b92505050613265610100840184613163565b858303610100870152613279838284613054565b9695505050505050565b604080825281018490525f6060600586901b83018101908301878361011e1936839003015b898210156132ec57868503605f1901845282358181126132c6575f5ffd5b6132d2868d83016131a4565b9550506020830192506020840193506001820191506132a8565b505050508281036020840152613303818587613054565b979650505050505050565b634e487b7160e01b5f52602160045260245ffd5b5f6003861061333f57634e487b7160e01b5f52602160045260245ffd5b858252608060208301526133566080830186612f60565b6040830194909452506060015292915050565b602081525f6126276020830184612f60565b604081525f61338d60408301856131a4565b90508260208301529392505050565b805180516001600160a01b031683526020810151602084015260408101516040840152606081015160608401526080810151608084015260a081015160a084015260c081015160c084015260e081015161340160e08501826001600160a01b03169052565b5061010081810151908401526101209081015190830152602081015161014083015260408101516101608301526060810151610180830152608001516101a090910152565b61020081525f61345a610200830186612f60565b613467602084018661339c565b8281036101e08401526132798185612f60565b61020081525f61348f61020083018688613054565b61349c602084018661339c565b8281036101e08401526133038185612f60565b606081525f6134c160608301866131a4565b60208301949094525060400152919050565b5f602082840312156134e3575f5ffd5b5051919050565b82815260606020820152600d60608201526c10504c8cc81c995d995c9d1959609a1b608082015260a060408201525f611fa160a0830184612f60565b5f5f60408385031215613537575f5ffd5b82516001600160401b0381111561354c575f5ffd5b8301601f8101851361355c575f5ffd5b805161356a612c9382612ae6565b81815286602083850101111561357e575f5ffd5b8160208401602083015e5f60209282018301529401519395939450505050565b82815260606020820152600d60608201526c10504cccc81c995d995c9d1959609a1b608082015260a060408201525f611fa160a0830184612f60565b5f5f858511156135e8575f5ffd5b838611156135f4575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff198116906014841015613647576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b5092915050565b80356001600160801b03198116906010841015613647576001600160801b031960109490940360031b84901b169092169291505056fea2646970667358221220473e737b2e0f18cfeb65066ae9814ae1c88262a2bb3943ab31976f3ee902aabc64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x107 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB760FAF9 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB760FAF9 EQ PUSH2 0x425 JUMPI DUP1 PUSH4 0xBB9FE6BF EQ PUSH2 0x438 JUMPI DUP1 PUSH4 0xC23A5CEA EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDBED18E0 EQ PUSH2 0x46B JUMPI DUP1 PUSH4 0xFC7E286D EQ PUSH2 0x48A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x394 JUMPI DUP1 PUSH4 0x765E827F EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x850AAF62 EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0x9B249F69 EQ PUSH2 0x406 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1B2E01B8 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x1B2E01B8 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x205C2878 EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x22CDDE4C EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x35567E1A EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x5287CE12 EQ PUSH2 0x280 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH3 0x42DC53 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0x396CB60 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0xBD28E3B EQ PUSH2 0x18F JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x117 JUMPI PUSH2 0x115 CALLER PUSH2 0x530 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x126 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x135 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C4C JUMP JUMPDEST PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x158 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D04 JUMP JUMPDEST PUSH2 0x702 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x2D2B JUMP JUMPDEST PUSH2 0x789 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D64 JUMP JUMPDEST PUSH2 0xA14 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x1C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D7D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2DB0 JUMP JUMPDEST PUSH2 0xA4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x2DDA JUMP JUMPDEST PUSH2 0xB96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x23C CALLDATASIZE PUSH1 0x4 PUSH2 0x2D7D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 SLOAD SWAP1 DUP3 SWAP1 SHL PUSH8 0xFFFFFFFFFFFFFFFF NOT AND OR SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33A PUSH2 0x29A CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND ISZERO ISZERO SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x100 DUP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x3AE CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x3E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E6C JUMP JUMPDEST PUSH2 0xBD7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x401 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EBE JUMP JUMPDEST PUSH2 0xD4C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x411 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x420 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F0E JUMP JUMPDEST PUSH2 0xDC7 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x433 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH2 0x530 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x443 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0xE7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x457 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x466 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH2 0xFA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x476 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x485 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E6C JUMP JUMPDEST PUSH2 0x11C7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x495 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4ED PUSH2 0x4A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E11 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND SWAP1 PUSH2 0x100 DUP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP6 DUP7 MSTORE SWAP4 ISZERO ISZERO PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP3 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x144 JUMP JUMPDEST PUSH0 PUSH2 0x53B DUP3 CALLVALUE PUSH2 0x15CE JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x2DA466A7B24304F47E87FA2E1E5A81B9831CE54FEC19055CE277CA2F39BA42C4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x578 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP CALLER ADDRESS EQ PUSH2 0x5DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393220696E7465726E616C2063616C6C206F6E6C79000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD DUP2 ADD PUSH2 0x2710 ADD PUSH1 0x40 GAS PUSH1 0x3F MUL DUP2 PUSH2 0x602 JUMPI PUSH2 0x602 PUSH2 0x2F4C JUMP JUMPDEST DIV LT ISZERO PUSH2 0x618 JUMPI PUSH4 0xDEADDEAD PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP8 MLOAD PUSH0 SWAP1 ISZERO PUSH2 0x6A6 JUMPI PUSH0 PUSH2 0x631 DUP5 PUSH0 ADD MLOAD PUSH0 DUP13 DUP7 PUSH2 0x1600 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x6A4 JUMPI PUSH0 PUSH2 0x644 PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x69E JUMPI DUP5 PUSH0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP11 PUSH1 0x20 ADD MLOAD PUSH32 0x1C4FADA7374C0A9EE8841FC38AFE82932DC0F8E69012E927F061A8BAE611A201 DUP8 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x695 SWAP3 SWAP2 SWAP1 PUSH2 0x2F8E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x1 SWAP3 POP POP JUMPDEST POP JUMPDEST PUSH0 DUP9 PUSH1 0x80 ADD MLOAD GAS DUP7 SUB ADD SWAP1 POP PUSH2 0x6F4 DUP3 DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP8 SWAP3 POP PUSH2 0x1641 SWAP2 POP POP JUMP JUMPDEST SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x307E35B7 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x732 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x122A0E9B PUSH1 0xE3 SHL EQ JUMPDEST DUP1 PUSH2 0x74D JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCF28EF97 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x768 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3E84F021 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x783 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D757374207370656369667920756E7374616B652064656C6179000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV DUP2 AND SWAP1 DUP4 AND LT ISZERO PUSH2 0x84F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x63616E6E6F7420646563726561736520756E7374616B652074696D6500000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0x86F SWAP1 CALLVALUE SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x2FBA JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT PUSH2 0x8B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x1B9BC81CDD185AD9481CDC1958DA599A5959 PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP2 GT ISZERO PUSH2 0x8FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x7374616B65206F766572666C6F77 PUSH1 0x90 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP4 SLOAD DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP1 DUP4 ADD DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 DUP2 AND DUP6 DUP8 ADD SWAP1 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP11 DUP2 AND PUSH1 0x60 DUP9 ADD DUP2 DUP2 MSTORE PUSH0 PUSH1 0x80 DUP11 ADD DUP2 DUP2 MSTORE CALLER DUP1 DUP4 MSTORE DUP3 DUP11 MSTORE SWAP2 DUP13 SWAP1 KECCAK256 SWAP11 MLOAD DUP12 SSTORE SWAP7 MLOAD SWAP10 SWAP1 SWAP9 ADD DUP1 SLOAD SWAP5 MLOAD SWAP2 MLOAD SWAP7 MLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x98 SHL MUL PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL NOT SWAP8 SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x78 SHL MUL SWAP7 SWAP1 SWAP7 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x78 SHL NOT SWAP2 SWAP1 SWAP6 AND PUSH2 0x100 MUL PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 NOT SWAP10 ISZERO ISZERO SWAP10 SWAP1 SWAP10 AND PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP8 SWAP1 SWAP8 OR SWAP2 SWAP1 SWAP2 AND SWAP2 SWAP1 SWAP2 OR OR SWAP1 SSTORE DUP4 MLOAD DUP6 DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 PUSH32 0xA5AE833D0BB1DCD632D98A8B70973E8516812898E19BF27B70071EBC8DC52C01 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0xA42 DUP4 PUSH2 0x2FCD JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 GT ISZERO PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x576974686472617720616D6F756E7420746F6F206C6172676500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xAB6 SWAP1 DUP4 SWAP1 PUSH2 0x2FE5 JUMP JUMPDEST DUP2 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xD1C19FBCD4551A5EDFB66D43D2E337C04837AFDA3482B42BDF569A8FCCDAE5FB SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xB45 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB4A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x6661696C656420746F207769746864726177 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xBA0 DUP3 PUSH2 0x17F9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADDRESS SWAP1 DUP3 ADD MSTORE CHAINID PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBDF PUSH2 0x1811 JUMP JUMPDEST DUP2 PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBF9 JUMPI PUSH2 0xBF9 PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC32 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xC1F PUSH2 0x29D0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC17 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xCA7 JUMPI PUSH0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC52 JUMPI PUSH2 0xC52 PUSH2 0x2FF8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0xC8C DUP5 DUP11 DUP11 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC86 SWAP2 SWAP1 PUSH2 0x300C JUMP JUMPDEST DUP6 PUSH2 0x1839 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xC9C DUP5 DUP4 DUP4 PUSH0 PUSH2 0x1A3B JUMP JUMPDEST POP POP POP PUSH1 0x1 ADD PUSH2 0xC37 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 DUP3 SWAP1 LOG1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD2F JUMPI PUSH2 0xD23 DUP2 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xCF2 JUMPI PUSH2 0xCF2 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xD04 SWAP2 SWAP1 PUSH2 0x300C JUMP JUMPDEST DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x2FF8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1BD5 JUMP JUMPDEST SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xCD4 JUMP JUMPDEST POP PUSH2 0xD3A DUP5 DUP3 PUSH2 0x1E83 JUMP JUMPDEST POP POP POP PUSH2 0xD47 PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xD68 SWAP3 SWAP2 SWAP1 PUSH2 0x302B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xDA0 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xDA5 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 PUSH1 0x40 MLOAD PUSH4 0x26504155 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x303A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2B870D1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x570E1A36 SWAP1 PUSH2 0xE17 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x307C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE33 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xE57 SWAP2 SWAP1 PUSH2 0x308F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3653DC03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 SUB PUSH2 0xEDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xA PUSH1 0x24 DUP3 ADD MSTORE PUSH10 0x1B9BDD081CDD185AD959 PUSH1 0xB2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0xFF AND PUSH2 0xF24 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x616C726561647920756E7374616B696E67 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0xF42 SWAP1 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x30AA JUMP JUMPDEST PUSH1 0x1 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL ADD NOT AND PUSH1 0x1 PUSH1 0x98 SHL PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP1 DUP2 MUL PUSH1 0xFF NOT AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 SWAP2 POP CALLER SWAP1 PUSH32 0xFA9B3C14CC825C412C9ED81B3BA365A5B459439403F18829E572ED53A4180F0A SWAP1 PUSH1 0x20 ADD PUSH2 0x578 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP1 PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F207374616B6520746F207769746864726177 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x106D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D7573742063616C6C20756E6C6F636B5374616B652829206669727374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD TIMESTAMP PUSH1 0x1 PUSH1 0x98 SHL SWAP1 SWAP2 DIV PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x10D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5374616B65207769746864726177616C206973206E6F74206475650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x100 PUSH1 0x1 PUSH1 0xC8 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xB7C918E0E249F999E965CAFEB6C664271B3F4317D296461500E71DA39F0CBDA3 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1176 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6661696C656420746F207769746864726177207374616B650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x11CF PUSH2 0x1811 JUMP JUMPDEST DUP2 PUSH0 DUP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1336 JUMPI CALLDATASIZE DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x11EE JUMPI PUSH2 0x11EE PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1200 SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x120E DUP4 DUP1 PUSH2 0x30DC JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x1224 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E11 JUMP JUMPDEST SWAP1 POP PUSH0 NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ADD PUSH2 0x127F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393620696E76616C69642061676772656761746F72000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x131A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0x2DD81133 DUP5 DUP5 PUSH2 0x12AC PUSH1 0x40 DUP10 ADD DUP10 PUSH2 0x3121 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12CB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3283 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12F2 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x131A JUMPI PUSH1 0x40 MLOAD PUSH4 0x86A9F75 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x1324 DUP3 DUP8 PUSH2 0x2FBA JUMP JUMPDEST SWAP6 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x11D3 SWAP2 POP POP JUMP JUMPDEST POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1350 JUMPI PUSH2 0x1350 PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1389 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1376 PUSH2 0x29D0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x136E JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1460 JUMPI CALLDATASIZE DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x13AA JUMPI PUSH2 0x13AA PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x13BC SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x13CA DUP4 DUP1 PUSH2 0x30DC JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x13E0 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E11 JUMP JUMPDEST SWAP1 POP DUP2 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x144E JUMPI PUSH0 DUP10 DUP10 DUP2 MLOAD DUP2 LT PUSH2 0x1400 JUMPI PUSH2 0x1400 PUSH2 0x2FF8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0x1422 DUP12 DUP10 DUP10 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x2FF8 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1432 DUP5 DUP4 DUP4 DUP10 PUSH2 0x1A3B JUMP JUMPDEST DUP11 PUSH2 0x143C DUP2 PUSH2 0x2FCD JUMP JUMPDEST SWAP12 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x13E5 SWAP2 POP POP JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 POP PUSH2 0x138F SWAP3 POP POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 PUSH0 SWAP1 LOG1 POP PUSH0 DUP1 DUP1 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x158A JUMPI CALLDATASIZE DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x14A9 JUMPI PUSH2 0x14A9 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x14BB SWAP2 SWAP1 PUSH2 0x30C8 JUMP JUMPDEST SWAP1 POP PUSH2 0x14CD PUSH1 0x40 DUP3 ADD PUSH1 0x20 DUP4 ADD PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 CALLDATASIZE PUSH0 PUSH2 0x150E DUP4 DUP1 PUSH2 0x30DC JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1579 JUMPI PUSH2 0x1558 DUP9 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x1534 JUMPI PUSH2 0x1534 PUSH2 0x2FF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1546 SWAP2 SWAP1 PUSH2 0x300C JUMP JUMPDEST DUP12 DUP12 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x2FF8 JUMP JUMPDEST PUSH2 0x1562 SWAP1 DUP9 PUSH2 0x2FBA JUMP JUMPDEST SWAP7 POP DUP8 PUSH2 0x156E DUP2 PUSH2 0x2FCD JUMP JUMPDEST SWAP9 POP POP PUSH1 0x1 ADD PUSH2 0x1516 JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x148E SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D SWAP1 DUP3 SWAP1 LOG2 PUSH2 0x15BF DUP7 DUP3 PUSH2 0x1E83 JUMP JUMPDEST POP POP POP POP POP PUSH2 0xD47 PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH2 0x15F4 SWAP1 DUP6 SWAP1 PUSH2 0x2FBA JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD DUP8 DUP10 DUP8 CALL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 RETURNDATASIZE DUP3 DUP2 GT ISZERO PUSH2 0x1624 JUMPI POP DUP2 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP3 ADD DUP2 ADD PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP2 PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS DUP6 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 PUSH2 0x1655 DUP3 PUSH2 0x1F78 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1674 JUMPI DUP3 MLOAD SWAP4 POP PUSH2 0x172B JUMP JUMPDEST DUP1 SWAP4 POP PUSH0 DUP9 MLOAD GT ISZERO PUSH2 0x172B JUMPI DUP7 DUP3 MUL SWAP6 POP PUSH1 0x2 DUP11 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x1699 JUMPI PUSH2 0x1699 PUSH2 0x330E JUMP JUMPDEST EQ PUSH2 0x172B JUMPI PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x7C627B21 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP2 PUSH4 0x7C627B21 SWAP2 PUSH2 0x16D5 SWAP1 DUP15 SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x3322 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x16FE JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x172B JUMPI PUSH0 PUSH2 0x170E PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 MLOAD PUSH4 0x2B5E552F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 SWAP1 PUSH2 0x3369 JUMP JUMPDEST GAS PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0x80 DUP13 ADD MLOAD SWAP3 DUP9 SUB SWAP10 SWAP1 SWAP10 ADD SWAP9 ADD SWAP1 DUP9 SUB DUP1 DUP3 GT ISZERO PUSH2 0x175E JUMPI PUSH1 0x64 PUSH1 0xA DUP3 DUP5 SUB MUL DIV SWAP9 SWAP1 SWAP9 ADD SWAP8 JUMPDEST POP POP PUSH1 0x40 DUP10 ADD MLOAD DUP8 DUP4 MUL SWAP7 POP DUP7 DUP2 LT ISZERO PUSH2 0x17B7 JUMPI PUSH1 0x2 DUP12 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x1786 JUMPI PUSH2 0x1786 PUSH2 0x330E JUMP JUMPDEST SUB PUSH2 0x17A8 JUMPI DUP1 SWAP7 POP PUSH2 0x1797 DUP11 PUSH2 0x1FA9 JUMP JUMPDEST PUSH2 0x17A3 DUP11 PUSH0 DUP10 DUP12 PUSH2 0x1FF8 JUMP JUMPDEST PUSH2 0x17EB JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP7 DUP2 SUB PUSH2 0x17C4 DUP7 DUP3 PUSH2 0x15CE JUMP JUMPDEST POP PUSH0 DUP1 DUP14 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x17D9 JUMPI PUSH2 0x17D9 PUSH2 0x330E JUMP JUMPDEST EQ SWAP1 POP PUSH2 0x17E8 DUP13 DUP3 DUP12 DUP14 PUSH2 0x1FF8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1803 DUP3 PUSH2 0x2073 JUMP JUMPDEST DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD SUB PUSH2 0x1833 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP1 SSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 GAS DUP5 MLOAD SWAP1 SWAP2 POP PUSH2 0x184C DUP7 DUP3 PUSH2 0x2128 JUMP JUMPDEST PUSH2 0x1855 DUP7 PUSH2 0xB96 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x100 DUP4 ADD MLOAD PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x80 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0xC0 DUP8 ADD MLOAD DUP7 OR OR OR OR OR OR PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x18E5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413934206761732076616C756573206F766572666C6F770000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 PUSH2 0x1913 DUP5 PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x60 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH2 0x100 SWAP1 SWAP6 ADD MLOAD SWAP5 ADD ADD ADD ADD MUL SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x1922 DUP11 DUP11 DUP11 DUP5 DUP8 PUSH2 0x2234 JUMP JUMPDEST SWAP7 POP PUSH2 0x1935 DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x23C5 JUMP JUMPDEST PUSH2 0x198B JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1A SWAP1 DUP3 ADD MSTORE PUSH32 0x4141323520696E76616C6964206163636F756E74206E6F6E6365000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP3 GAS DUP7 SUB GT ISZERO PUSH2 0x19E7 JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413236206F76657220766572696669636174696F6E4761734C696D69740000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0xE0 DUP5 ADD MLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1A0E JUMPI PUSH2 0x1A09 DUP12 DUP12 DUP12 DUP6 PUSH2 0x2411 JUMP JUMPDEST SWAP8 POP SWAP1 POP JUMPDEST PUSH1 0x40 DUP10 ADD DUP3 SWAP1 MSTORE DUP1 PUSH1 0x60 DUP11 ADD MSTORE PUSH1 0xA0 DUP11 ADD CALLDATALOAD GAS DUP8 SUB ADD DUP10 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP POP POP POP POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A46 DUP6 PUSH2 0x25C8 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1AAC JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0991A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1B04 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x414132322065787069726564206F72206E6F7420647565000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1B0E DUP6 PUSH2 0x25C8 JUMP JUMPDEST SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1B6A JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0999A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 ISZERO PUSH2 0x1BCC JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413332207061796D61737465722065787069726564206F72206E6F74206475 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP PUSH0 PUSH2 0x1BE6 DUP5 PUSH1 0x60 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 CALLDATASIZE DUP3 PUSH2 0x1BFD PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x3121 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x60 PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C13 JUMPI DUP5 CALLDATALOAD SWAP2 POP JUMPDEST POP PUSH4 0x72288ED1 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x1CC0 JUMPI PUSH0 DUP12 DUP12 PUSH1 0x20 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1C44 SWAP3 SWAP2 SWAP1 PUSH2 0x337B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x8DD7712F PUSH1 0xE0 SHL OR SWAP1 MSTORE MLOAD SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH3 0x42DC53 SWAP1 PUSH2 0x1C8B SWAP1 DUP5 SWAP1 DUP16 SWAP1 DUP14 SWAP1 PUSH1 0x24 ADD PUSH2 0x3446 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP3 POP POP PUSH2 0x1D15 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH3 0x42DC53 DUP6 DUP6 DUP14 DUP12 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1CE5 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x347A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP2 POP JUMPDEST PUSH1 0x20 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD PUSH0 ADDRESS GAS CALL SWAP6 POP PUSH0 MLOAD SWAP9 POP DUP5 PUSH1 0x40 MSTORE POP POP POP POP POP DUP1 PUSH2 0x1E79 JUMPI PUSH0 RETURNDATASIZE DUP1 PUSH1 0x20 SUB PUSH2 0x1D4A JUMPI PUSH1 0x20 PUSH0 PUSH0 RETURNDATACOPY PUSH0 MLOAD SWAP2 POP JUMPDEST POP PUSH4 0xDEADDEAD PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1D9D JUMPI DUP8 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0xF SWAP1 DUP3 ADD MSTORE PUSH15 0x41413935206F7574206F6620676173 PUSH1 0x88 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1DEC JUMPI PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1DBC SWAP1 DUP8 PUSH2 0x2FE5 JUMP JUMPDEST PUSH2 0x1DC6 SWAP2 SWAP1 PUSH2 0x2FBA JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x1DD7 DUP9 PUSH2 0x1FA9 JUMP JUMPDEST PUSH2 0x1DE3 DUP9 PUSH0 DUP4 DUP6 PUSH2 0x1FF8 JUMP JUMPDEST SWAP6 POP PUSH2 0x1E77 SWAP1 POP JUMP JUMPDEST DUP6 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP10 ADD MLOAD SWAP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 PUSH32 0xF62676F440FF169A3A9AFDBF812E89E7F95975EE8E5C31214FFDEF631C5F4792 SWAP1 PUSH2 0x1E33 PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E41 SWAP3 SWAP2 SWAP1 PUSH2 0x2F8E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1E5A SWAP1 DUP8 PUSH2 0x2FE5 JUMP JUMPDEST PUSH2 0x1E64 SWAP2 SWAP1 PUSH2 0x2FBA JUMP JUMPDEST SWAP1 POP PUSH2 0x1E73 PUSH1 0x2 DUP9 DUP7 DUP5 PUSH2 0x1641 JUMP JUMPDEST SWAP6 POP POP JUMPDEST POP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1ED9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393020696E76616C69642062656E65666963696172790000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1F22 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1F27 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xD47 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413931206661696C65642073656E6420746F2062656E656669636961727900 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH0 SWAP2 SWAP1 DUP1 DUP3 SUB PUSH2 0x1F95 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1FA1 DUP3 BASEFEE DUP4 ADD PUSH2 0x2617 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP3 DUP2 ADD MLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP3 SWAP2 PUSH32 0x67B4FA9642F42120BF031F3051D1824B0FE25627945B27B8A6A65D5761D5482E SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST DUP4 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD DUP2 MLOAD PUSH1 0x20 DUP1 DUP9 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP5 SWAP3 SWAP1 SWAP4 AND SWAP3 PUSH32 0x49628FD1471006C1482DA88028E9CE4DBB080B815C9B0344D39E5A8E6EC1419F SWAP2 PUSH2 0x2065 SWAP2 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 SWAP4 DUP5 MSTORE SWAP2 ISZERO ISZERO PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH0 PUSH2 0x2092 PUSH2 0x208D PUSH1 0x40 DUP8 ADD DUP8 PUSH2 0x3121 JUMP JUMPDEST PUSH2 0x262E JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x20A5 PUSH2 0x208D PUSH1 0x60 DUP9 ADD DUP9 PUSH2 0x3121 JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH1 0xA0 DUP8 ADD CALLDATALOAD PUSH1 0xC0 DUP9 ADD CALLDATALOAD PUSH0 PUSH2 0x20C7 PUSH2 0x208D PUSH1 0xE0 DUP13 ADD DUP13 PUSH2 0x3121 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP11 SWAP1 SWAP11 AND PUSH1 0x20 DUP12 ADD MSTORE DUP10 DUP2 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP10 ADD SWAP7 SWAP1 SWAP7 MSTORE POP PUSH1 0x80 DUP8 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0xA0 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH2 0x120 SWAP1 SWAP3 ADD SWAP1 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2135 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x2E11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD DUP3 DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE DUP2 SHR PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0xA0 DUP5 ADD CALLDATALOAD PUSH1 0xC0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 ADD CALLDATALOAD SWAP2 DUP3 AND PUSH2 0x100 DUP5 ADD MSTORE SHR PUSH2 0x120 DUP3 ADD MSTORE CALLDATASIZE PUSH0 PUSH2 0x2197 PUSH1 0xE0 DUP6 ADD DUP6 PUSH2 0x3121 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x221A JUMPI PUSH1 0x34 DUP2 LT ISZERO PUSH2 0x21F3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393320696E76616C6964207061796D6173746572416E6444617461000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x21FD DUP3 DUP3 PUSH2 0x2640 JUMP JUMPDEST PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0xB90 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0xA0 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST DUP3 MLOAD DUP1 MLOAD PUSH0 SWAP2 SWAP1 PUSH2 0x2252 DUP9 DUP8 PUSH2 0x224D PUSH1 0x40 DUP12 ADD DUP12 PUSH2 0x3121 JUMP JUMPDEST PUSH2 0x26A7 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MLOAD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2293 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 DUP2 GT PUSH2 0x228D JUMPI DUP1 DUP9 SUB PUSH2 0x228F JUMP JUMPDEST PUSH0 JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x6608BDF PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH4 0x19822F7C SWAP2 DUP10 SWAP2 PUSH2 0x22C9 SWAP2 DUP15 SWAP2 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x34AF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x2304 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2301 SWAP2 DUP2 ADD SWAP1 PUSH2 0x34D3 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x232F JUMPI DUP10 PUSH2 0x2314 PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x34EA JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x23B8 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP1 DUP10 GT ISZERO PUSH2 0x23B2 JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413231206469646E2774207061792070726566756E64000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP9 SWAP1 SUB SWAP1 SSTORE JUMPDEST POP POP POP POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP3 SHR DUP1 DUP6 MSTORE SWAP3 MSTORE DUP3 KECCAK256 DUP1 SLOAD DUP5 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP2 SWAP1 DUP6 PUSH2 0x2403 DUP4 PUSH2 0x2FCD JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP EQ SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 GAS DUP6 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD SWAP4 SWAP5 POP SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 DUP8 DUP2 LT ISZERO PUSH2 0x2498 JUMPI DUP11 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413331207061796D6173746572206465706F73697420746F6F206C6F770000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP8 DUP2 SUB DUP3 PUSH0 ADD DUP2 SWAP1 SSTORE POP PUSH0 DUP5 PUSH1 0x80 ADD MLOAD SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52B7512C DUP3 DUP14 DUP14 PUSH1 0x20 ADD MLOAD DUP14 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x24DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x34AF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x251D JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x251A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x3526 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2548 JUMPI DUP12 PUSH2 0x252D PUSH2 0x800 PUSH2 0x1616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x359E JUMP JUMPDEST SWAP1 SWAP9 POP SWAP7 POP DUP1 GAS DUP8 SUB GT ISZERO PUSH2 0x25B9 JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x27 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413336206F766572207061796D6173746572566572696669636174696F6E47 PUSH1 0x60 DUP3 ADD MSTORE PUSH7 0x185CD31A5B5A5D PUSH1 0xCA SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH0 SUB PUSH2 0x25DB JUMPI POP PUSH0 SWAP3 DUP4 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x25E5 DUP5 PUSH2 0x2961 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP GT DUP1 PUSH2 0x260C JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP LT JUMPDEST SWAP1 MLOAD SWAP5 SWAP1 SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 DUP4 LT PUSH2 0x2625 JUMPI DUP2 PUSH2 0x2627 JUMP JUMPDEST DUP3 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP3 DUP1 DUP6 DUP4 CALLDATACOPY SWAP1 KECCAK256 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x2650 PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x2659 SWAP2 PUSH2 0x3601 JUMP JUMPDEST PUSH1 0x60 SHR PUSH2 0x266A PUSH1 0x24 PUSH1 0x14 DUP8 DUP10 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x2673 SWAP2 PUSH2 0x364E JUMP JUMPDEST PUSH1 0x80 SHR PUSH2 0x2684 PUSH1 0x34 PUSH1 0x24 DUP9 DUP11 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x268D SWAP2 PUSH2 0x364E JUMP JUMPDEST SWAP2 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP3 POP PUSH1 0x80 SHR SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB90 JUMPI DUP3 MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x2712 JUMPI DUP5 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1F SWAP1 DUP3 ADD MSTORE PUSH32 0x414131302073656E64657220616C726561647920636F6E737472756374656400 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x570E1A36 DUP7 PUSH0 ADD MLOAD PUSH1 0x40 ADD MLOAD DUP7 DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2769 SWAP3 SWAP2 SWAP1 PUSH2 0x307C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL ISZERO DUP1 ISZERO PUSH2 0x2785 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP 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 0x27AA SWAP2 SWAP1 PUSH2 0x308F JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x280C JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1B SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313320696E6974436F6465206661696C6564206F72204F4F470000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2876 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313420696E6974436F6465206D7573742072657475726E2073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x28D8 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313520696E6974436F6465206D757374206372656174652073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x28E6 PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x35DA JUMP JUMPDEST PUSH2 0x28EF SWAP2 PUSH2 0x3601 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x20 ADD MLOAD PUSH32 0xD51A9C61267AA6196961883ECF5FF2DA6619C37DAC0FA92122513FB32C032D2D DUP4 DUP10 PUSH0 ADD MLOAD PUSH1 0xE0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x2950 SWAP3 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 PUSH1 0xA0 DUP2 SWAP1 SHR PUSH6 0xFFFFFFFFFFFF DUP2 AND PUSH0 SUB PUSH2 0x299B JUMPI POP PUSH6 0xFFFFFFFFFFFF JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0xD0 SWAP5 SWAP1 SWAP5 SHR PUSH1 0x20 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2A39 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2A8D JUMPI PUSH2 0x2A8D PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x140 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2A8D JUMPI PUSH2 0x2A8D PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2ADE JUMPI PUSH2 0x2ADE PUSH2 0x2A57 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x2AFE JUMPI PUSH2 0x2AFE PUSH2 0x2A57 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2B2E DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 DUP4 SUB PUSH2 0x1C0 DUP2 SLT ISZERO PUSH2 0x2B45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2B4D PUSH2 0x2A6B JUMP JUMPDEST SWAP2 POP PUSH2 0x140 DUP2 SLT ISZERO PUSH2 0x2B5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B66 PUSH2 0x2A93 JUMP JUMPDEST PUSH2 0x2B6F DUP4 PUSH2 0x2B23 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x2BB9 PUSH1 0xE0 DUP5 ADD PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE DUP2 MSTORE PUSH2 0x140 DUP3 ADD CALLDATALOAD PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x160 DUP3 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x180 DUP3 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1A0 SWAP1 SWAP2 ADD CALLDATALOAD PUSH1 0x80 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C18 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2C60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C75 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x2C85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2C98 PUSH2 0x2C93 DUP3 PUSH2 0x2AE6 JUMP JUMPDEST PUSH2 0x2AB6 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP9 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x2CAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP7 POP POP POP POP PUSH2 0x2CD1 DUP7 PUSH1 0x20 DUP8 ADD PUSH2 0x2B33 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E0 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2CEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2CF8 DUP8 DUP3 DUP9 ADD PUSH2 0x2C08 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2627 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D3B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2627 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D74 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2627 DUP3 PUSH2 0x2D4E JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2D8E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2D99 DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP2 POP PUSH2 0x2DA7 PUSH1 0x20 DUP5 ADD PUSH2 0x2D4E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DCC DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2DEA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2DFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH2 0x120 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2627 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E21 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2627 DUP2 PUSH2 0x2B0C JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2E3C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E52 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2E7E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E93 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2E9F DUP7 DUP3 DUP8 ADD PUSH2 0x2E2C JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2EB3 DUP2 PUSH2 0x2B0C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2ED0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2EDB DUP2 PUSH2 0x2B0C JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2EF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F01 DUP7 DUP3 DUP8 ADD PUSH2 0x2C08 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F34 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F40 DUP6 DUP3 DUP7 ADD PUSH2 0x2C08 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FA6 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x2FDE JUMPI PUSH2 0x2FDE PUSH2 0x2FA6 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FA6 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH2 0x11E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3021 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP4 DUP3 CALLDATACOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x3054 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x309F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x2627 DUP2 PUSH2 0x2B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FA6 JUMP JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH1 0x5E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3021 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x30F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x310A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP PUSH1 0x5 DUP2 SWAP1 SHL CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3136 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x314F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x20 DUP2 ADD SWAP3 POP CALLDATALOAD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3196 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x31BE DUP3 PUSH2 0x31B1 DUP4 PUSH2 0x2B23 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 DUP2 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH0 PUSH2 0x31D6 PUSH1 0x40 DUP4 ADD DUP4 PUSH2 0x3163 JUMP JUMPDEST PUSH2 0x120 PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0x31ED PUSH2 0x120 DUP7 ADD DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x31FD PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x3163 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0x60 DUP8 ADD MSTORE PUSH2 0x3210 DUP4 DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST PUSH1 0x80 DUP7 DUP2 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xA0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xC0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE SWAP3 POP PUSH2 0x3240 SWAP2 POP POP PUSH1 0xE0 DUP5 ADD DUP5 PUSH2 0x3163 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xE0 DUP8 ADD MSTORE PUSH2 0x3253 DUP4 DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x3265 PUSH2 0x100 DUP5 ADD DUP5 PUSH2 0x3163 JUMP JUMPDEST DUP6 DUP4 SUB PUSH2 0x100 DUP8 ADD MSTORE PUSH2 0x3279 DUP4 DUP3 DUP5 PUSH2 0x3054 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP5 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP7 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP8 DUP4 PUSH2 0x11E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP10 DUP3 LT ISZERO PUSH2 0x32EC JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x32C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x32D2 DUP7 DUP14 DUP4 ADD PUSH2 0x31A4 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x32A8 JUMP JUMPDEST POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x3303 DUP2 DUP6 DUP8 PUSH2 0x3054 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x3 DUP7 LT PUSH2 0x333F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP6 DUP3 MSTORE PUSH1 0x80 PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3356 PUSH1 0x80 DUP4 ADD DUP7 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x60 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x2627 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x338D PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x31A4 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x3401 PUSH1 0xE0 DUP6 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x100 DUP2 DUP2 ADD MLOAD SWAP1 DUP5 ADD MSTORE PUSH2 0x120 SWAP1 DUP2 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH2 0x140 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x160 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x180 DUP4 ADD MSTORE PUSH1 0x80 ADD MLOAD PUSH2 0x1A0 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x345A PUSH2 0x200 DUP4 ADD DUP7 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0x3467 PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x339C JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x3279 DUP2 DUP6 PUSH2 0x2F60 JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x348F PUSH2 0x200 DUP4 ADD DUP7 DUP9 PUSH2 0x3054 JUMP JUMPDEST PUSH2 0x349C PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x339C JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x3303 DUP2 DUP6 PUSH2 0x2F60 JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH0 PUSH2 0x34C1 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x31A4 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x40 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34E3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504C8CC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3537 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x354C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x355C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x356A PUSH2 0x2C93 DUP3 PUSH2 0x2AE6 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x357E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE SWAP5 ADD MLOAD SWAP4 SWAP6 SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504CCCC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FA1 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F60 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x35E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x35F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x3647 JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x10 DUP5 LT ISZERO PUSH2 0x3647 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0x10 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFBALANCE RETURNDATACOPY PUSH20 0x7B2E0F18CFEB65066AE9814AE1C88262A2BB3943 0xAB BALANCE SWAP8 PUSH16 0x3EE902AABC64736F6C634300081C0033 ","sourceMap":"789:30345:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1316:21:5;1326:10;1316:9;:21::i;:::-;789:30345:1;;;;;11538:1682;;;;;;;;;;-1:-1:-1;11538:1682:1;;;;;:::i;:::-;;:::i;:::-;;;4947:25:81;;;4935:2;4920:18;11538:1682:1;;;;;;;;1633:584;;;;;;;;;;-1:-1:-1;1633:584:1;;;;;:::i;:::-;;:::i;:::-;;;5439:14:81;;5432:22;5414:41;;5402:2;5387:18;1633:584:1;5274:187:81;2325:706:5;;;;;;:::i;:::-;;:::i;830:108:3:-;;;;;;;;;;-1:-1:-1;830:108:3;;;;;:::i;:::-;;:::i;279:74::-;;;;;;;;;;-1:-1:-1;279:74:3;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4651:496:5;;;;;;;;;;-1:-1:-1;4651:496:5;;;;;:::i;:::-;;:::i;13258:206:1:-;;;;;;;;;;-1:-1:-1;13258:206:1;;;;;:::i;:::-;;:::i;394:175:3:-;;;;;;;;;;-1:-1:-1;394:175:3;;;;;:::i;:::-;-1:-1:-1;;;;;507:27:3;;475:13;507:27;;;:19;:27;;;;559:2;507:27;;;-1:-1:-1;;;;;543:12:3;;507:32;;;;;;;;;;543:18;;;;-1:-1:-1;;543:18:3;507:55;394:175;;;;;595:142:5;;;;;;;;;;-1:-1:-1;595:142:5;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713:17:5;:8;:17;;;;;;;;;;;;706:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;706:24:5;;;;;;;;-1:-1:-1;;;706:24:5;;;;;;;;-1:-1:-1;;;706:24:5;;;;;;;;;595:142;;;;;;;7810:4:81;7852:3;7841:9;7837:19;7829:27;;7889:6;7883:13;7872:9;7865:32;7967:4;7959:6;7955:17;7949:24;7942:32;7935:40;7928:4;7917:9;7913:20;7906:70;-1:-1:-1;;;;;8036:4:81;8028:6;8024:17;8018:24;8014:61;8007:4;7996:9;7992:20;7985:91;8144:10;8136:4;8128:6;8124:17;8118:24;8114:41;8107:4;8096:9;8092:20;8085:71;8224:14;8216:4;8208:6;8204:17;8198:24;8194:45;8187:4;8176:9;8172:20;8165:75;7660:586;;;;;1158:115:5;;;;;;;;;;-1:-1:-1;1158:115:5;;;;;:::i;:::-;-1:-1:-1;;;;;1241:17:5;1215:7;1241:17;;;;;;;;;;:25;;1158:115;6777:1015:1;;;;;;;;;;-1:-1:-1;6777:1015:1;;;;;:::i;:::-;;:::i;30934:198::-;;;;;;;;;;-1:-1:-1;30934:198:1;;;;;:::i;:::-;;:::i;16782:174::-;;;;;;;;;;-1:-1:-1;16782:174:1;;;;;:::i;:::-;;:::i;1935:179:5:-;;;;;;:::i;:::-;;:::i;3170:408::-;;;;;;;;;;;;;:::i;3786:684::-;;;;;;;;;;-1:-1:-1;3786:684:5;;;;;:::i;:::-;;:::i;7830:2610:1:-;;;;;;;;;;-1:-1:-1;7830:2610:1;;;;;:::i;:::-;;:::i;507:47:5:-;;;;;;;;;;-1:-1:-1;507:47:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;507:47:5;;-1:-1:-1;;;507:47:5;;;;;-1:-1:-1;;;507:47:5;;;;;;;;;;11428:25:81;;;11496:14;;11489:22;11484:2;11469:18;;11462:50;-1:-1:-1;;;;;11548:43:81;;;11528:18;;;11521:71;;;;11640:10;11628:23;;;11623:2;11608:18;;11601:51;11701:14;11689:27;11683:3;11668:19;;11661:56;11415:3;11400:19;507:47:5;11179:544:81;1935:179:5;2004:18;2025:37;2043:7;2052:9;2025:17;:37::i;:::-;2004:58;;2087:7;-1:-1:-1;;;;;2077:30:5;;2096:10;2077:30;;;;4947:25:81;;4935:2;4920:18;;4801:177;2077:30:5;;;;;;;;1994:120;1935:179;:::o;11538:1682:1:-;11682:21;11715:14;11732:9;11715:26;-1:-1:-1;11759:10:1;11781:4;11759:27;11751:63;;;;-1:-1:-1;;;11751:63:1;;11930:2:81;11751:63:1;;;11912:21:81;11969:2;11949:18;;;11942:30;12008:25;11988:18;;;11981:53;12051:18;;11751:63:1;;;;;;;;;11854:14;;11902:20;;;;12127:31;;;;12096:62;;1297:5;12096:99;12075:2;12058:9;12070:2;12058:14;:19;;;;;:::i;:::-;;:137;12037:331;;;-1:-1:-1;;;12282:1:1;12275:27;12333:2;12330:1;12323:13;12037:331;12464:15;;12388:26;;12464:19;12460:584;;12499:12;12514:52;12524:7;:14;;;12540:1;12543:8;12553:12;12514:9;:52::i;:::-;12499:67;;12585:7;12580:454;;12612:19;12634:41;1543:4;12634:18;:41::i;:::-;12697:13;;12612:63;;-1:-1:-1;12697:17:1;12693:270;;12837:7;:14;;;-1:-1:-1;;;;;12743:201:1;12794:6;:17;;;12743:201;12877:7;:13;;;12916:6;12743:201;;;;;;;:::i;:::-;;;;;;;;12693:270;12987:32;12980:39;;12594:440;12580:454;12485:559;12460:584;13078:17;13119:6;:15;;;13107:9;13098:6;:18;:36;13078:56;;13155:48;13170:4;13176:6;13184:7;;13155:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13193:9:1;;-1:-1:-1;13155:14:1;;-1:-1:-1;;13155:48:1:i;:::-;13148:55;11538:1682;-1:-1:-1;;;;;;;;;;11538:1682:1:o;1633:584::-;1718:4;-1:-1:-1;;;;;;1860:114:1;;-1:-1:-1;;;1860:114:1;;:174;;-1:-1:-1;;;;;;;1990:44:1;;-1:-1:-1;;;1990:44:1;1860:174;:236;;;-1:-1:-1;;;;;;;2050:46:1;;-1:-1:-1;;;2050:46:1;1860:236;:298;;;-1:-1:-1;;;;;;;2112:46:1;;-1:-1:-1;;;2112:46:1;1860:298;:350;;;-1:-1:-1;;;;;;;;;;862:40:65;;;2174:36:1;1853:357;1633:584;-1:-1:-1;;1633:584:1:o;2325:706:5:-;2428:10;2392:24;2419:20;;;;;;;;;;2457:19;;;2449:58;;;;-1:-1:-1;;;2449:58:5;;13000:2:81;2449:58:5;;;12982:21:81;13039:2;13019:18;;;13012:30;13078:28;13058:18;;;13051:56;13124:18;;2449:58:5;12798:350:81;2449:58:5;2557:20;;;;;-1:-1:-1;;;2557:20:5;;;;;2538:39;;;;;2517:114;;;;-1:-1:-1;;;2517:114:5;;13355:2:81;2517:114:5;;;13337:21:81;13394:2;13374:18;;;13367:30;13433;13413:18;;;13406:58;13481:18;;2517:114:5;13153:352:81;2517:114:5;2657:10;;;;2641:13;;2657:22;;2670:9;;2657:10;;;-1:-1:-1;;;;;2657:10:5;:22;:::i;:::-;2641:38;;2705:1;2697:5;:9;2689:40;;;;-1:-1:-1;;;2689:40:5;;13974:2:81;2689:40:5;;;13956:21:81;14013:2;13993:18;;;13986:30;-1:-1:-1;;;14032:18:81;;;14025:48;14090:18;;2689:40:5;13772:342:81;2689:40:5;-1:-1:-1;;;;;2747:26:5;;;2739:53;;;;-1:-1:-1;;;2739:53:5;;14321:2:81;2739:53:5;;;14303:21:81;14360:2;14340:18;;;14333:30;-1:-1:-1;;;14379:18:81;;;14372:44;14433:18;;2739:53:5;14119:338:81;2739:53:5;2825:137;;;;;;;;2850:12;;2825:137;;2876:4;2825:137;;;;;;;-1:-1:-1;;;;;2825:137:5;;;;;;;;;;;;;;;;;;;-1:-1:-1;2825:137:5;;;;;;2811:10;2802:20;;;;;;;;;;:160;;;;;;;;;;;;;;;;;;2825:137;2802:160;-1:-1:-1;;;2802:160:5;-1:-1:-1;;;;2802:160:5;;;;-1:-1:-1;;;2802:160:5;;;;;-1:-1:-1;;;;2802:160:5;;;;;;-1:-1:-1;;2802:160:5;;;;;;;-1:-1:-1;;2802:160:5;;;;;;;;;;;;;;;;;;;;;;2977:47;;14635:25:81;;;14676:18;;;14669:51;;;;2811:10:5;2977:47;;14608:18:81;2977:47:5;;;;;;;2382:649;;2325:706;:::o;830:108:3:-;913:10;893:31;;;;:19;:31;;;;;;;;-1:-1:-1;;;;;893:36:3;;;;;;;;;:38;;;;;;:::i;:::-;;;;;;830:108;:::o;4651:496:5:-;4805:10;4769:24;4796:20;;;;;;;;;;4852:12;;4834:30;;;4826:68;;;;-1:-1:-1;;;4826:68:5;;15073:2:81;4826:68:5;;;15055:21:81;15112:2;15092:18;;;15085:30;15151:27;15131:18;;;15124:55;15196:18;;4826:68:5;14871:349:81;4826:68:5;4919:12;;:29;;4934:14;;4919:29;:::i;:::-;4904:44;;4963:54;;;-1:-1:-1;;;;;15558:32:81;;15540:51;;15622:2;15607:18;;15600:34;;;4973:10:5;;4963:54;;15513:18:81;4963:54:5;;;;;;;5028:12;5045:15;-1:-1:-1;;;;;5045:20:5;5073:14;5045:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5027:65;;;5110:7;5102:38;;;;-1:-1:-1;;;5102:38:5;;16057:2:81;5102:38:5;;;16039:21:81;16096:2;16076:18;;;16069:30;-1:-1:-1;;;16115:18:81;;;16108:48;16173:18;;5102:38:5;15855:342:81;5102:38:5;4759:388;;4651:496;;:::o;13258:206:1:-;13353:7;13412:13;:6;:11;:13::i;:::-;13401:55;;;;;;16513:25:81;;;;13435:4:1;16554:18:81;;;16547:60;13442:13:1;16623:18:81;;;16616:34;16486:18;;13401:55:1;;;;;;;;;;;;13391:66;;;;;;13372:85;;13258:206;;;:::o;6777:1015::-;2500:21:60;:19;:21::i;:::-;6930:3:1;6913:14:::1;6930:3:::0;-1:-1:-1;;;;;6980:24:1;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;6950:54:1;-1:-1:-1;7044:9:1::1;7039:481;7063:6;7059:1;:10;7039:481;;;7094:24;7121:7;7129:1;7121:10;;;;;;;;:::i;:::-;;;;;;;7094:37;;7171:22;7215:24;7260:38;7280:1;7283:3;;7287:1;7283:6;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;7291;7260:19;:38::i;:::-;7149:149;;;;7316:189;7380:1;7403:14;7439:16;7485:1;7316:42;:189::i;:::-;-1:-1:-1::0;;;7071:3:1::1;;7039:481;;;-1:-1:-1::0;7574:17:1::1;::::0;7534::::1;::::0;7574::::1;::::0;7534;;7574::::1;7611:9;7606:120;7630:6;7626:1;:10;7606:120;;;7674:37;7689:1;7692:3;;7696:1;7692:6;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;7700:7;7708:1;7700:10;;;;;;;;:::i;:::-;;;;;;;7674:14;:37::i;:::-;7661:50:::0;;::::1;::::0;7638:3:::1;;7606:120;;;;7740:35;7752:11;7765:9;7740:11;:35::i;:::-;7015:771;6903:889;;2542:20:60::0;1857:1;3068:7;:21;2888:208;2542:20;6777:1015:1;;;:::o;30934:198::-;31018:12;31032:16;31052:6;-1:-1:-1;;;;;31052:19:1;31072:4;;31052:25;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31017:60;;;;31112:7;31121:3;31094:31;;-1:-1:-1;;;31094:31:1;;;;;;;;;:::i;16782:174::-;16867:38;;-1:-1:-1;;;16867:38:1;;16850:14;;-1:-1:-1;;;;;1100:14:1;16867:28;;;;:38;;16896:8;;;;16867:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16922:27;;-1:-1:-1;;;16922:27:1;;-1:-1:-1;;;;;18654:32:81;;16922:27:1;;;18636:51:81;16850:55:1;;-1:-1:-1;18609:18:81;;16922:27:1;18490:203:81;3170:408:5;3248:10;3212:24;3239:20;;;;;;;;;;3277;;;;3239;;-1:-1:-1;;;3277:20:5;;;;;:25;;3269:48;;;;-1:-1:-1;;;3269:48:5;;18900:2:81;3269:48:5;;;18882:21:81;18939:2;18919:18;;;18912:30;-1:-1:-1;;;18958:18:81;;;18951:40;19008:18;;3269:48:5;18698:334:81;3269:48:5;3335:11;;;;;;3327:41;;;;-1:-1:-1;;;3327:41:5;;19239:2:81;3327:41:5;;;19221:21:81;19278:2;19258:18;;;19251:30;-1:-1:-1;;;19297:18:81;;;19290:47;19354:18;;3327:41:5;19037:341:81;3327:41:5;3426:20;;;;3378:19;;3400:46;;-1:-1:-1;;;3426:20:5;;;;3407:15;3400:46;:::i;:::-;3456:17;;;:32;;-1:-1:-1;;;;;;3498:19:5;-1:-1:-1;;;3456:32:5;;;;;;-1:-1:-1;;3498:19:5;;;;;;;;3532:39;;19712:46:81;;;3456:32:5;;-1:-1:-1;3546:10:5;;3532:39;;19700:2:81;19685:18;3532:39:5;19567:197:81;3786:684:5;3897:10;3861:24;3888:20;;;;;;;;;;3934:10;;;;;;;-1:-1:-1;;;;;3934:10:5;;3954:42;;;;-1:-1:-1;;;3954:42:5;;19971:2:81;3954:42:5;;;19953:21:81;20010:2;19990:18;;;19983:30;-1:-1:-1;;;20029:18:81;;;20022:50;20089:18;;3954:42:5;19769:344:81;3954:42:5;4014:17;;;;-1:-1:-1;;;4014:17:5;;;;4006:63;;;;-1:-1:-1;;;4006:63:5;;20320:2:81;4006:63:5;;;20302:21:81;20359:2;20339:18;;;20332:30;20398:31;20378:18;;;20371:59;20447:18;;4006:63:5;20118:353:81;4006:63:5;4100:17;;;;4121:15;-1:-1:-1;;;4100:17:5;;;;;:36;;4079:110;;;;-1:-1:-1;;;4079:110:5;;20678:2:81;4079:110:5;;;20660:21:81;20717:2;20697:18;;;20690:30;20756:29;20736:18;;;20729:57;20803:18;;4079:110:5;20476:351:81;4079:110:5;4199:20;;;:24;;-1:-1:-1;;;;;;4264:14:5;;;4293:50;;;-1:-1:-1;;;;;15558:32:81;;15540:51;;15622:2;15607:18;;15600:34;;;4308:10:5;;4293:50;;15513:18:81;4293:50:5;;;;;;;4354:12;4371:15;-1:-1:-1;;;;;4371:20:5;4399:5;4371:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4353:56;;;4427:7;4419:44;;;;-1:-1:-1;;;4419:44:5;;21034:2:81;4419:44:5;;;21016:21:81;21073:2;21053:18;;;21046:30;21112:26;21092:18;;;21085:54;21156:18;;4419:44:5;20832:348:81;7830:2610:1;2500:21:60;:19;:21::i;:::-;8009:16:1;7991:15:::1;::::0;8072:767:::1;8096:7;8092:1;:11;8072:767;;;8124:33;8160:16;;8177:1;8160:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;8124:55:::0;-1:-1:-1;8193:34:1::1;;8230:11;8124:55:::0;;8230:11:::1;:::i;:::-;8193:48:::0;;-1:-1:-1;8193:48:1;-1:-1:-1;8255:22:1::1;8280:14;::::0;;;::::1;::::0;::::1;;:::i;:::-;8255:39:::0;-1:-1:-1;;;;;;;;8398:33:1;::::1;::::0;8373:115:::1;;;::::0;-1:-1:-1;;;8373:115:1;;22590:2:81;8373:115:1::1;::::0;::::1;22572:21:81::0;22629:2;22609:18;;;22602:30;22668:25;22648:18;;;22641:53;22711:18;;8373:115:1::1;22388:347:81::0;8373:115:1::1;-1:-1:-1::0;;;;;8507:33:1;::::1;::::0;8503:289:::1;;-1:-1:-1::0;;;;;8625:29:1;::::1;;8655:3:::0;;8660:13:::1;;::::0;::::1;:3:::0;:13:::1;:::i;:::-;8625:49;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621:157;;8713:46;::::0;-1:-1:-1;;;8713:46:1;;-1:-1:-1;;;;;18654:32:81;;8713:46:1::1;::::0;::::1;18636:51:81::0;18609:18;;8713:46:1::1;18490:203:81::0;8621:157:1::1;8806:22;8818:3:::0;8806:22;::::1;:::i;:::-;::::0;-1:-1:-1;;8105:3:1::1;::::0;;::::1;::::0;-1:-1:-1;8072:767:1::1;::::0;-1:-1:-1;;8072:767:1::1;;;8849:27;8896:8;-1:-1:-1::0;;;;;8879:26:1::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;8849:56:1;-1:-1:-1;8916:15:1::1;::::0;8945:831:::1;8969:7;8965:1;:11;8945:831;;;8997:33;9033:16;;9050:1;9033:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;8997:55:::0;-1:-1:-1;9066:34:1::1;;9103:11;8997:55:::0;;9103:11:::1;:::i;:::-;9066:48:::0;;-1:-1:-1;9066:48:1;-1:-1:-1;9128:22:1::1;9153:14;::::0;;;::::1;::::0;::::1;;:::i;:::-;9128:39:::0;-1:-1:-1;9199:3:1;9182:14:::1;9223:543;9247:6;9243:1;:10;9223:543;;;9278:24;9305:7;9313;9305:16;;;;;;;;:::i;:::-;;;;;;;9278:43;;9361:22;9405:31;9457:44;9477:7;9486:3;;9490:1;9486:6;;;;;;;:::i;9457:44::-;9339:162;;;;9519:205;9583:1;9606:14;9642:23;9695:10;9519:42;:205::i;:::-;9742:9:::0;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;;9255:3:1::1;::::0;;::::1;::::0;-1:-1:-1;9223:543:1::1;::::0;-1:-1:-1;;9223:543:1::1;;-1:-1:-1::0;;8978:3:1::1;::::0;;::::1;::::0;-1:-1:-1;8945:831:1::1;::::0;-1:-1:-1;;;8945:831:1::1;;-1:-1:-1::0;9791:17:1::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;9819:17:1::1;::::0;;9871:464:::1;9895:7;9891:1;:11;9871:464;;;9923:33;9959:16;;9976:1;9959:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;9923:55:::0;-1:-1:-1;10032:14:1::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;9997:51:1::1;;;;;;;;;;;10062:34;;10099:11;:3:::0;;:11:::1;:::i;:::-;10062:48:::0;;-1:-1:-1;10062:48:1;-1:-1:-1;10062:48:1;10124:14:::1;10166:159;10190:6;10186:1;:10;10166:159;;;10234:49;10249:7;10258:3;;10262:1;10258:6;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;10266:7;10274;10266:16;;;;;;;;:::i;10234:49::-;10221:62;::::0;;::::1;:::i;:::-;::::0;-1:-1:-1;10301:9:1;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;;10198:3:1::1;;10166:159;;;-1:-1:-1::0;;9904:3:1::1;::::0;;::::1;::::0;-1:-1:-1;9871:464:1::1;::::0;-1:-1:-1;;9871:464:1::1;;-1:-1:-1::0;10349:38:1::1;::::0;10384:1:::1;::::0;10349:38:::1;::::0;10384:1;;10349:38:::1;10398:35;10410:11;10423:9;10398:11;:35::i;:::-;7980:2460;;;;;2542:20:60::0;1857:1;3068:7;:21;2888:208;1559:259:5;-1:-1:-1;;;;;1683:17:5;;1637:7;1683:17;;;;;;;;;;1730:12;;1637:7;;1730:21;;1745:6;;1730:21;:::i;:::-;1761:24;;;;-1:-1:-1;1761:24:5;1559:259;-1:-1:-1;;;1559:259:5:o;223:279:15:-;354:12;484:1;481;474:4;468:11;461:4;455;451:15;444:5;440:2;433:5;428:58;417:69;223:279;-1:-1:-1;;;;;223:279:15:o;1107:452::-;1169:23;1254:16;1294:6;1289:3;1286:15;1283:64;;;-1:-1:-1;1327:6:15;1283:64;1377:4;1371:11;1426:4;1421:3;1417:14;1412:3;1408:24;1402:4;1395:38;1458:3;1453;1446:16;1509:3;1506:1;1499:4;1494:3;1490:14;1475:38;1540:3;1107:452;-1:-1:-1;;;1107:452:15:o;26575:2957:1:-;26749:21;26782:14;26799:9;26907:14;;26782:26;;-1:-1:-1;26842:21:1;;;26954:26;26907:14;26954:17;:26::i;:::-;27015:17;;;;26935:45;;-1:-1:-1;;;;;;27050:23:1;;27046:839;;27109:14;;;-1:-1:-1;27046:839:1;;;27178:9;27162:25;;27226:1;27209:7;:14;:18;27205:666;;;27267:20;;;;-1:-1:-1;27321:36:1;27313:4;:44;;;;;;;;:::i;:::-;;27309:544;;27452:31;;;;27389:160;;-1:-1:-1;;;27389:160:1;;-1:-1:-1;;;;;27389:28:1;;;;;:160;;27510:4;;27516:7;;27525:13;;27540:8;;27389:160;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27385:446;;27682:19;27704:41;1543:4;27704:18;:41::i;:::-;27682:63;;27797:6;27782:22;;-1:-1:-1;;;27782:22:1;;;;;;;;:::i;27385:446::-;27920:9;28075:31;;;;28052:20;;;;28163:15;;;;27911:18;;;27898:31;;;;;28052:54;;28151:27;;28316:36;;;28312:274;;;28513:3;1596:2;28396:36;;;28482:27;28481:35;28538:29;;;;;28312:274;-1:-1:-1;;28682:14:1;;;;28630:20;;;;-1:-1:-1;28714:23:1;;;28710:793;;;28769:36;28761:4;:44;;;;;;;;:::i;:::-;;28757:438;;28845:7;28829:23;;28874:25;28892:6;28874:17;:25::i;:::-;28921:63;28944:6;28952:5;28959:13;28974:9;28921:22;:63::i;:::-;28710:793;;28757:438;-1:-1:-1;;;29089:1:1;29082:35;29152:2;29149:1;29142:13;28710:793;29250:23;;;29291:40;29309:13;29250:23;29291:17;:40::i;:::-;-1:-1:-1;29349:12:1;;29364:4;:41;;;;;;;;:::i;:::-;;29349:56;;29423:65;29446:6;29454:7;29463:13;29478:9;29423:22;:65::i;:::-;29215:288;;28710:793;26818:2695;;;;;26772:2760;26575:2957;;;;;;:::o;4848:146:6:-;4936:7;4972:14;4979:6;4972;:14::i;:::-;4962:25;;;;;;4955:32;;4848:146;;;:::o;2575:307:60:-;1899:1;2702:7;;:18;2698:86;;2743:30;;-1:-1:-1;;;2743:30:60;;;;;;;;;;;2698:86;1899:1;2858:17;;2575:307::o;23805:2153:1:-;23981:22;24005:31;24052:14;24069:9;24118:17;;24052:26;;-1:-1:-1;24145:36:1;24165:6;24118:17;24145:19;:36::i;:::-;24214:21;24228:6;24214:13;:21::i;:::-;24191:20;;;:44;24430:28;;;;24735;;;;24700:20;;;;24654:31;;;;24602:37;;;;24567:20;;;;24491:26;;;;:61;;:96;:148;:194;:229;:272;24797:17;24781:33;;;24773:70;;;;-1:-1:-1;;;24773:70:1;;27686:2:81;24773:70:1;;;27668:21:81;27725:2;27705:18;;;27698:30;27764:26;27744:18;;;27737:54;27808:18;;24773:70:1;27484:348:81;24773:70:1;24854:23;24880:28;24900:7;15294:26;;;;15244:31;;;;15188:37;;;;15149:20;;;;15102:28;;;;15367:20;;;;;15102:67;;:123;:173;:218;15353:34;;14926:478;24880:28;24854:54;;24935:163;24975:7;24996:6;25016:9;25039:15;25068:20;24935:26;:163::i;:::-;24918:180;;25114:54;25138:7;:14;;;25154:7;:13;;;25114:23;:54::i;:::-;25109:140;;25200:7;25191:47;;-1:-1:-1;;;25191:47:1;;;;;;28049:25:81;;28110:2;28105;28090:18;;28083:30;;;28149:2;28129:18;;;28122:30;28188:28;28183:2;28168:18;;28161:56;28249:3;28234:19;;27837:422;25109:140:1;25308:20;25296:9;25287:6;:18;:41;25283:138;;;25364:7;25355:51;;-1:-1:-1;;;25355:51:1;;;;;;28476:25:81;;28537:2;28532;28517:18;;28510:30;;;28576:2;28556:18;;;28549:30;28615:32;28610:2;28595:18;;28588:60;28680:3;28665:19;;28264:426;25283:138:1;25475:17;;;;25441:20;;-1:-1:-1;;;;;25475:31:1;;25471:250;;25559:151;25605:7;25630:6;25654:9;25681:15;25559:28;:151::i;:::-;25522:188;-1:-1:-1;25522:188:1;-1:-1:-1;25471:250:1;25754:17;;;:35;;;25852:7;25803:23;;;:57;25916:25;;;;25904:9;25895:6;:18;:46;25874:9;:18;;:67;;;;;24042:1916;;;;;;23805:2153;;;;;;:::o;21476:1145::-;21693:18;21713:19;21736:56;21768:14;21736:18;:56::i;:::-;21692:100;;;;21828:10;-1:-1:-1;;;;;21806:32:1;:18;-1:-1:-1;;;;;21806:32:1;;21802:111;;21870:7;21861:41;;-1:-1:-1;;;21861:41:1;;;;;;28907:25:81;;28968:2;28963;28948:18;;28941:30;;;29007:2;28987:18;;;28980:30;-1:-1:-1;;;29041:2:81;29026:18;;29019:50;29101:3;29086:19;;28695:416;21802:111:1;21926:14;21922:96;;;21972:7;21963:44;;-1:-1:-1;;;21963:44:1;;;;;;29328:25:81;;29389:2;29384;29369:18;;29362:30;;;29428:2;29408:18;;;29401:30;29467:25;29462:2;29447:18;;29440:53;29525:3;29510:19;;29116:419;21922:96:1;22257:20;22320:65;22352:23;22320:18;:65::i;:::-;22287:98;-1:-1:-1;22287:98:1;-1:-1:-1;;;;;;22399:26:1;;;22395:105;;22457:7;22448:41;;-1:-1:-1;;;22448:41:1;;;;;;29752:25:81;;29813:2;29808;29793:18;;29786:30;;;29852:2;29832:18;;;29825:30;-1:-1:-1;;;29886:2:81;29871:18;;29864:50;29946:3;29931:19;;29540:416;22395:105:1;22513:14;22509:106;;;22559:7;22550:54;;-1:-1:-1;;;22550:54:1;;;;;;30173:25:81;;30234:2;30229;30214:18;;30207:30;;;30273:2;30253:18;;;30246:30;30312:34;30307:2;30292:18;;30285:62;-1:-1:-1;;;30378:3:81;30363:19;;30356:32;30420:3;30405:19;;29961:469;22509:106:1;21682:939;;;21476:1145;;;;:::o;3032:3077::-;3196:17;3225:14;3242:9;3225:26;;3261:20;3284:46;3309:6;:20;;;30874:6;30711:185;3284:46;3473:4;3467:11;3261:69;;-1:-1:-1;3340:12:1;;3505:23;3340:12;3531:15;;;;:6;:15;:::i;:::-;3505:41;;;;3560:22;3596:16;3664:15;3707:1;3702:3;3699:10;3696:96;;;3758:15;3745:29;3732:42;;3696:96;-1:-1:-1;;;;;;;;;;3823:51:1;;;3819:417;;3894:26;3970:6;3978;:17;;;3923:74;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3923:74:1;;;;;;;;;;;;;;-1:-1:-1;;;;;3923:74:1;-1:-1:-1;;;3923:74:1;;;4027:68;3923:74;;-1:-1:-1;4042:4:1;;:18;;4027:68;;3923:74;;4078:6;;4086:7;;4027:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4027:68:1;;;;;;;;;;;4015:80;;3876:234;3819:417;;;4173:4;-1:-1:-1;;;;;4173:18:1;;4194:8;;4204:6;4212:7;4158:63;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4158:63:1;;;;;;;;;;;4146:75;;3819:417;4372:2;4369:1;4357:9;4351:16;4344:4;4333:9;4329:20;4326:1;4315:9;4308:5;4303:72;4292:83;;4411:1;4405:8;4392:21;;4443:11;4437:4;4430:25;4274:195;;;;;4493:7;4488:1615;;4516:23;4607:16;4649:3;4646:2;4643:10;4640:126;;4697:2;4694:1;4691;4676:24;4746:1;4740:8;4721:27;;4640:126;;-1:-1:-1;;;4797:15:1;:35;4793:1300;;5041:7;5032:36;;-1:-1:-1;;;5032:36:1;;;;;;33029:25:81;;33090:2;33085;33070:18;;33063:30;;;33129:2;33109:18;;;33102:30;-1:-1:-1;;;33163:2:81;33148:18;;33141:45;33218:3;33203:19;;32817:411;4793:1300:1;-1:-1:-1;;;5093:15:1;:43;5089:1004;;5249:17;5290:6;:15;;;5278:9;5269:18;;:6;:18;:::i;:::-;:36;;;;:::i;:::-;5347:14;;;;5249:56;;-1:-1:-1;5379:25:1;5347:6;5379:17;:25::i;:::-;5422:63;5445:6;5453:5;5460:13;5475:9;5422:22;:63::i;:::-;5515:13;-1:-1:-1;5089:1004:1;;-1:-1:-1;5089:1004:1;;5651:14;;:21;;5612:17;;;;;5694:20;;;-1:-1:-1;;;;;5572:223:1;;;;5612:17;5572:223;;5736:41;1543:4;5736:18;:41::i;:::-;5572:223;;;;;;;:::i;:::-;;;;;;;;5814:17;5855:6;:15;;;5843:9;5834:18;;:6;:18;:::i;:::-;:36;;;;:::i;:::-;5814:56;;5900:178;5936:36;5994:6;6022:7;6051:9;5900:14;:178::i;:::-;5888:190;;5549:544;5089:1004;4502:1601;4488:1615;3215:2894;;;3032:3077;;;;;:::o;2446:279::-;-1:-1:-1;;;;;2539:25:1;;2531:62;;;;-1:-1:-1;;;2531:62:1;;33435:2:81;2531:62:1;;;33417:21:81;33474:2;33454:18;;;33447:30;33513:26;33493:18;;;33486:54;33557:18;;2531:62:1;33233:348:81;2531:62:1;2604:12;2622:11;-1:-1:-1;;;;;2622:16:1;2646:6;2622:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2603:54;;;2675:7;2667:51;;;;-1:-1:-1;;;2667:51:1;;33788:2:81;2667:51:1;;;33770:21:81;33827:2;33807:18;;;33800:30;33866:33;33846:18;;;33839:61;33917:18;;2667:51:1;33586:355:81;29763:531:1;29922:20;;;;29987:28;;;;29856:7;;29922:20;30033:36;;;30029:173;;-1:-1:-1;30175:12:1;29763:531;-1:-1:-1;;29763:531:1:o;30029:173::-;30222:55;30226:12;30263:13;30240:20;:36;30222:3;:55::i;:::-;30215:62;29763:531;-1:-1:-1;;;;29763:531:1:o;6511:228::-;6667:14;;:21;;6636:17;;;;;6702:20;;;;6596:136;;4947:25:81;;;-1:-1:-1;;;;;6596:136:1;;;;6636:17;6596:136;;4920:18:81;6596:136:1;;;;;;;6511:228;:::o;6115:390::-;6359:14;;:24;;;;6324:21;;6293:17;;;;;6397:20;;;6261:237;;-1:-1:-1;;;;;6261:237:1;;;;;;;;;;;;;6431:7;;6452:13;;6479:9;;34171:25:81;;;34239:14;;34232:22;34227:2;34212:18;;34205:50;34286:2;34271:18;;34264:34;34329:2;34314:18;;34307:34;34158:3;34143:19;;33946:401;6261:237:1;;;;;;;;6115:390;;;;:::o;1760:769:6:-;1850:16;854:20;;1938:12;;;;1878:14;1983:31;1998:15;;;;854:20;1998:15;:::i;:::-;1983:14;:31::i;:::-;1960:54;-1:-1:-1;2024:20:6;2047:31;2062:15;;;;:6;:15;:::i;2047:31::-;2024:54;-1:-1:-1;2115:23:6;;;;2177:25;;;;2230:14;;;;2088:24;2285:39;2300:23;;;;2115:6;2300:23;:::i;2285:39::-;2342:180;;;-1:-1:-1;;;;;34713:32:81;;;;2342:180:6;;;34695:51:81;34762:18;;;34755:34;;;;34805:18;;;34798:34;;;;-1:-1:-1;34848:18:81;;;34841:34;;;;34891:19;;;34884:35;;;;34935:19;;;34928:35;34979:19;;;34972:35;35023:19;;;;35016:35;;;;2342:180:6;;;;;;;;;;34667:19:81;;;;2342:180:6;;;1760:769;-1:-1:-1;;1760:769:6:o;13654:1129:1:-;13812:13;;;;:6;:13;:::i;:::-;-1:-1:-1;;;;;13795:30:1;;;13851:12;;;;;13835:13;;;:28;-1:-1:-1;;;;;13957:23:1;;;;;2652:59:6;;;13904:20:1;;;13873:108;2660:24:6;;13874:28:1;;;13873:108;14020:25;;;;13991:26;;;;:54;;;;14139:14;;;2652:59:6;;;14086:20:1;;;14055:99;2660:24:6;14056:28:1;;;14055:99;14164:31;-1:-1:-1;14198:23:1;;;;13851:12;14198:23;:::i;:::-;14164:57;;-1:-1:-1;14164:57:1;-1:-1:-1;14235:27:1;;14231:546;;490:2:6;14303:65:1;;;14278:153;;;;-1:-1:-1;;;14278:153:1;;35264:2:81;14278:153:1;;;35246:21:81;35303:2;35283:18;;;35276:30;35342:31;35322:18;;;35315:59;35391:18;;14278:153:1;35062:353:81;14278:153:1;14539:62;14584:16;;14539:44;:62::i;:::-;14504:31;;;14445:156;14465:37;;;14445:156;-1:-1:-1;;;;;14445:156:1;14446:17;;;14445:156;14231:546;;;14660:1;14632:17;;;:30;;;14676:37;;;:41;;;14731:31;;;:35;13785:998;;13654:1129;;:::o;17381:1634::-;17742:14;;17787;;17641:22;;17742:14;17815:51;17837:7;17742:6;17854:11;;;;:2;:11;:::i;:::-;17815:21;:51::i;:::-;17900:17;;;;17880;-1:-1:-1;;;;;17980:23:1;;17976:222;;-1:-1:-1;;;;;1241:17:5;;18023:11:1;1241:17:5;;;;;;;;;;:25;18094:21:1;;;:89;;18180:3;18162:15;:21;18094:89;;;18138:1;18094:89;18072:111;;18005:193;17976:222;18332:17;;;;18231:140;;-1:-1:-1;;;18231:140:1;;-1:-1:-1;;;;;18231:31:1;;;;;18289:20;;18231:140;;18328:2;;18332:17;18351:19;;18231:140;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18231:140:1;;;;;;;;-1:-1:-1;;18231:140:1;;;;;;;;;;;;:::i;:::-;;;18211:406;;18534:7;18560:41;1543:4;18560:18;:41::i;:::-;18515:87;;-1:-1:-1;;;18515:87:1;;;;;;;;;:::i;18211:406::-;18453:15;-1:-1:-1;;;;;;18634:23:1;;18630:369;;-1:-1:-1;;;;;18710:16:1;;18677:30;18710:16;;;;;;;;;;18762:18;;18802:25;;;18798:123;;;18867:7;18858:44;;-1:-1:-1;;;18858:44:1;;;;;;36846:25:81;;36907:2;36902;36887:18;;36880:30;;;36946:2;36926:18;;;36919:30;36985:25;36980:2;36965:18;;36958:53;37043:3;37028:19;;36634:419;18798:123:1;18959:25;;;18938:46;;18630:369;17688:1321;;;;17381:1634;;;;;;;:::o;1187:234:3:-;-1:-1:-1;;;;;1373:27:3;;1269:4;1373:27;;;:19;:27;;;;1317:2;1373:27;;;1308:11;;;1373:32;;;;;;;:34;;1308:5;;-1:-1:-1;;;;;1373:41:3;;;:34;1269:4;1373:34;;;:::i;:::-;;;;-1:-1:-1;1373:41:3;;1187:234;-1:-1:-1;;;;;1187:234:3:o;19580:1523:1:-;19775:20;19797:22;19855:14;19872:9;19925:14;;19973:17;;;;-1:-1:-1;;;;;20040:19:1;;19895:27;20040:19;;;;;;;;;;20091:21;;19855:26;;-1:-1:-1;19925:14:1;;19973:17;;20040:19;20130:25;;;20126:122;;;20191:7;20182:51;;-1:-1:-1;;;20182:51:1;;;;;;37270:25:81;;37331:2;37326;37311:18;;37304:30;;;37370:2;37350:18;;;37343:30;37409:32;37404:2;37389:18;;37382:60;37474:3;37459:19;;37058:426;20126:122:1;20295:15;20285:7;:25;20261:13;:21;;:49;;;;20324:30;20357:7;:37;;;20324:70;;20439:9;-1:-1:-1;;;;;20428:45:1;;20479:22;20524:2;20548:6;:17;;;20587:15;20428:192;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20428:192:1;;;;;;;;;;;;:::i;:::-;;;20408:517;;20842:7;20868:41;1543:4;20868:18;:41::i;:::-;20823:87;;-1:-1:-1;;;20823:87:1;;;;;;;;;:::i;20408:517::-;20718:8;;-1:-1:-1;20761:15:1;-1:-1:-1;20963:22:1;20951:9;20942:6;:18;:43;20938:149;;;21021:7;21012:60;;-1:-1:-1;;;21012:60:1;;;;;;39035:25:81;;39096:2;39091;39076:18;;39069:30;;;39135:2;39115:18;;;39108:30;39174:34;39169:2;39154:18;;39147:62;-1:-1:-1;;;39240:3:81;39225:19;;39218:38;39288:3;39273:19;;38823:475;20938:149:1;19831:1266;;;;;;19580:1523;;;;;;;:::o;22951:486::-;23040:18;23060:19;23095:14;23113:1;23095:19;23091:76;;-1:-1:-1;23146:1:1;;;;-1:-1:-1;22951:486:1;-1:-1:-1;22951:486:1:o;23091:76::-;23176:26;23205:36;23226:14;23205:20;:36::i;:::-;23176:65;;23340:4;:15;;;23322:33;;:15;:33;:70;;;;23377:4;:15;;;23359:33;;:15;:33;23322:70;23415:15;;;23305:87;;-1:-1:-1;22951:486:1;-1:-1:-1;;22951:486:1:o;3263:95:2:-;3312:7;3342:1;3338;:5;:13;;3350:1;3338:13;;;3346:1;3338:13;3331:20;3263:95;-1:-1:-1;;;3263:95:2:o;2879:281::-;2938:11;3017:4;3011:11;3046;3101:3;3088:11;3083:3;3070:35;3125:19;;;2879:281;-1:-1:-1;;;2879:281:2:o;4234:507:6:-;4341:17;;;4459:51;372:2;4341:17;4459:16;;:51;:::i;:::-;4451:60;;;:::i;:::-;4443:69;;4542:79;434:2;372;4542:16;;:79;:::i;:::-;4534:88;;;:::i;:::-;4526:97;;4653:69;490:2;434;4653:16;;:69;:::i;:::-;4645:78;;;:::i;:::-;4422:312;;-1:-1:-1;;;;;;4422:312:6;;-1:-1:-1;4637:87:6;;;-1:-1:-1;4234:507:6;;;;;:::o;15658:1086:1:-;15810:20;;15806:932;;15863:14;;:21;-1:-1:-1;;;;;15902:18:1;;;:23;15898:104;;15959:7;15950:52;;-1:-1:-1;;;15950:52:1;;;;;;40633:25:81;;40694:2;40689;40674:18;;40667:30;;;40733:2;40713:18;;;40706:30;40772:33;40767:2;40752:18;;40745:61;40838:3;40823:19;;40421:427;15898:104:1;16016:15;1100:14;-1:-1:-1;;;;;16034:28:1;;16085:6;:14;;;:35;;;16135:8;;16034:110;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16016:128;-1:-1:-1;;;;;;16162:21:1;;16158:98;;16217:7;16208:48;;-1:-1:-1;;;16208:48:1;;;;;;41065:25:81;;41126:2;41121;41106:18;;41099:30;;;41165:2;41145:18;;;41138:30;41204:29;41199:2;41184:18;;41177:57;41266:3;41251:19;;40853:423;16158:98:1;16285:6;-1:-1:-1;;;;;16274:17:1;:7;-1:-1:-1;;;;;16274:17:1;;16270:99;;16325:7;16316:53;;-1:-1:-1;;;16316:53:1;;;;;;41493:25:81;;41554:2;41549;41534:18;;;41527:30;;;41573:18;;;41566:30;41632:34;41627:2;41612:18;;41605:62;41699:3;41684:19;;41281:428;16270:99:1;16387:7;-1:-1:-1;;;;;16387:19:1;;16410:1;16387:24;16383:106;;16445:7;16436:53;;-1:-1:-1;;;16436:53:1;;;;;;41926:25:81;;41987:2;41982;41967:18;;;41960:30;;;42006:18;;;41999:30;42065:34;42060:2;42045:18;;42038:62;42132:3;42117:19;;41714:428;16383:106:1;16503:15;16537:14;16548:2;16503:15;16537:8;;:14;:::i;:::-;16529:23;;;:::i;:::-;16521:32;;16503:50;;16640:6;-1:-1:-1;;;;;16572:155:1;16605:6;:17;;;16572:155;16664:7;16689:6;:14;;;:24;;;16572:155;;;;;;-1:-1:-1;;;;;42339:32:81;;;42321:51;;42408:32;;42403:2;42388:18;;42381:60;42309:2;42294:18;;42147:300;16572:155:1;;;;;;;;15832:906;;;15658:1086;;;;:::o;1370:416:2:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1515:14:2;1582:3;1564:21;;;1596:15;;;1478:18;1596:15;1592:67;;-1:-1:-1;1636:16:2;1592:67;1733:50;;;;;;;;-1:-1:-1;;;;;1733:50:2;;;;;1710:8;1691:28;;;;1733:50;;;;;;;;;;;;;-1:-1:-1;1733:50:2;1370:416::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:127:81:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:253;218:2;212:9;260:4;248:17;;-1:-1:-1;;;;;280:34:81;;316:22;;;277:62;274:88;;;342:18;;:::i;:::-;378:2;371:22;146:253;:::o;404:255::-;476:2;470:9;518:6;506:19;;-1:-1:-1;;;;;540:34:81;;576:22;;;537:62;534:88;;;602:18;;:::i;664:275::-;735:2;729:9;800:2;781:13;;-1:-1:-1;;777:27:81;765:40;;-1:-1:-1;;;;;820:34:81;;856:22;;;817:62;814:88;;;882:18;;:::i;:::-;918:2;911:22;664:275;;-1:-1:-1;664:275:81:o;944:186::-;992:4;-1:-1:-1;;;;;1017:6:81;1014:30;1011:56;;;1047:18;;:::i;:::-;-1:-1:-1;1113:2:81;1092:15;-1:-1:-1;;1088:29:81;1119:4;1084:40;;944:186::o;1135:131::-;-1:-1:-1;;;;;1210:31:81;;1200:42;;1190:70;;1256:1;1253;1246:12;1190:70;1135:131;:::o;1271:134::-;1339:20;;1368:31;1339:20;1368:31;:::i;:::-;1271:134;;;:::o;1410:1899::-;1467:5;1506:9;1501:3;1497:19;1536:6;1532:2;1528:15;1525:35;;;1556:1;1553;1546:12;1525:35;1578:22;;:::i;:::-;1569:31;;1620:6;1616:2;1612:15;1609:35;;;1640:1;1637;1630:12;1609:35;;1668:22;;:::i;:::-;1715:29;1734:9;1715:29;:::i;:::-;1699:46;;1818:2;1803:18;;;1790:32;1838:16;;;1831:33;1937:2;1922:18;;;1909:32;1957:16;;;1950:33;2056:2;2041:18;;;2028:32;2076:16;;;2069:33;2175:3;2160:19;;;2147:33;2196:17;;;2189:34;2296:4;2281:20;;;2268:34;2318:18;;;2311:35;2419:3;2404:19;;;2391:33;2440:17;;;2433:34;2502:39;2536:3;2521:19;;2502:39;:::i;:::-;2496:3;2483:17;;2476:66;2615:3;2600:19;;;2587:33;2636:17;;;2629:34;2736:3;2721:19;;;2708:33;2757:17;;;2750:34;2793:22;;2890:6;2875:22;;2862:36;2925:2;2914:14;;2907:32;3014:3;2999:19;;2986:33;3046:2;3035:14;;3028:32;3135:3;3120:19;;3107:33;3167:2;3156:14;;3149:32;3256:3;3241:19;;;3228:33;3288:3;3277:15;;3270:33;2800:5;1410:1899;-1:-1:-1;1410:1899:81:o;3314:347::-;3365:8;3375:6;3429:3;3422:4;3414:6;3410:17;3406:27;3396:55;;3447:1;3444;3437:12;3396:55;-1:-1:-1;3470:20:81;;-1:-1:-1;;;;;3502:30:81;;3499:50;;;3545:1;3542;3535:12;3499:50;3582:4;3574:6;3570:17;3558:29;;3634:3;3627:4;3618:6;3610;3606:19;3602:30;3599:39;3596:59;;;3651:1;3648;3641:12;3596:59;3314:347;;;;;:::o;3666:1130::-;3790:6;3798;3806;3814;3867:3;3855:9;3846:7;3842:23;3838:33;3835:53;;;3884:1;3881;3874:12;3835:53;3924:9;3911:23;-1:-1:-1;;;;;3949:6:81;3946:30;3943:50;;;3989:1;3986;3979:12;3943:50;4012:22;;4065:4;4057:13;;4053:27;-1:-1:-1;4043:55:81;;4094:1;4091;4084:12;4043:55;4134:2;4121:16;4159:52;4175:35;4203:6;4175:35;:::i;:::-;4159:52;:::i;:::-;4234:6;4227:5;4220:21;4284:7;4277:4;4268:6;4264:2;4260:15;4256:26;4253:39;4250:59;;;4305:1;4302;4295:12;4250:59;4364:6;4357:4;4353:2;4349:13;4342:4;4335:5;4331:16;4318:53;4418:1;4411:4;4402:6;4395:5;4391:18;4387:29;4380:40;4439:5;4429:15;;;;;4463:59;4514:7;4507:4;4496:9;4492:20;4463:59;:::i;:::-;4453:69;;4575:3;4564:9;4560:19;4547:33;-1:-1:-1;;;;;4595:8:81;4592:32;4589:52;;;4637:1;4634;4627:12;4589:52;4676:60;4728:7;4717:8;4706:9;4702:24;4676:60;:::i;:::-;3666:1130;;;;-1:-1:-1;4755:8:81;-1:-1:-1;;;;3666:1130:81:o;4983:286::-;5041:6;5094:2;5082:9;5073:7;5069:23;5065:32;5062:52;;;5110:1;5107;5100:12;5062:52;5136:23;;-1:-1:-1;;;;;;5188:32:81;;5178:43;;5168:71;;5235:1;5232;5225:12;5466:276;5524:6;5577:2;5565:9;5556:7;5552:23;5548:32;5545:52;;;5593:1;5590;5583:12;5545:52;5632:9;5619:23;5682:10;5675:5;5671:22;5664:5;5661:33;5651:61;;5708:1;5705;5698:12;5747:173;5815:20;;-1:-1:-1;;;;;5864:31:81;;5854:42;;5844:70;;5910:1;5907;5900:12;5925:186;5984:6;6037:2;6025:9;6016:7;6012:23;6008:32;6005:52;;;6053:1;6050;6043:12;6005:52;6076:29;6095:9;6076:29;:::i;6116:321::-;6184:6;6192;6245:2;6233:9;6224:7;6220:23;6216:32;6213:52;;;6261:1;6258;6251:12;6213:52;6300:9;6287:23;6319:31;6344:5;6319:31;:::i;:::-;6369:5;-1:-1:-1;6393:38:81;6427:2;6412:18;;6393:38;:::i;:::-;6383:48;;6116:321;;;;;:::o;6442:375::-;6518:6;6526;6579:2;6567:9;6558:7;6554:23;6550:32;6547:52;;;6595:1;6592;6585:12;6547:52;6634:9;6621:23;6653:31;6678:5;6653:31;:::i;:::-;6703:5;6781:2;6766:18;;;;6753:32;;-1:-1:-1;;;6442:375:81:o;6822:399::-;6920:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:52;;;6989:1;6986;6979:12;6941:52;7029:9;7016:23;-1:-1:-1;;;;;7054:6:81;7051:30;7048:50;;;7094:1;7091;7084:12;7048:50;7117:22;;7173:3;7155:16;;;7151:26;7148:46;;;7190:1;7187;7180:12;7408:247;7467:6;7520:2;7508:9;7499:7;7495:23;7491:32;7488:52;;;7536:1;7533;7526:12;7488:52;7575:9;7562:23;7594:31;7619:5;7594:31;:::i;8251:395::-;8342:8;8352:6;8406:3;8399:4;8391:6;8387:17;8383:27;8373:55;;8424:1;8421;8414:12;8373:55;-1:-1:-1;8447:20:81;;-1:-1:-1;;;;;8479:30:81;;8476:50;;;8522:1;8519;8512:12;8476:50;8559:4;8551:6;8547:17;8535:29;;8619:3;8612:4;8602:6;8599:1;8595:14;8587:6;8583:27;8579:38;8576:47;8573:67;;;8636:1;8633;8626:12;8651:647;8793:6;8801;8809;8862:2;8850:9;8841:7;8837:23;8833:32;8830:52;;;8878:1;8875;8868:12;8830:52;8918:9;8905:23;-1:-1:-1;;;;;8943:6:81;8940:30;8937:50;;;8983:1;8980;8973:12;8937:50;9022:98;9112:7;9103:6;9092:9;9088:22;9022:98;:::i;:::-;9139:8;;-1:-1:-1;8996:124:81;-1:-1:-1;;9224:2:81;9209:18;;9196:32;9237:31;9196:32;9237:31;:::i;:::-;9287:5;9277:15;;;8651:647;;;;;:::o;9303:544::-;9382:6;9390;9398;9451:2;9439:9;9430:7;9426:23;9422:32;9419:52;;;9467:1;9464;9457:12;9419:52;9506:9;9493:23;9525:31;9550:5;9525:31;:::i;:::-;9575:5;-1:-1:-1;9631:2:81;9616:18;;9603:32;-1:-1:-1;;;;;9647:30:81;;9644:50;;;9690:1;9687;9680:12;9644:50;9729:58;9779:7;9770:6;9759:9;9755:22;9729:58;:::i;:::-;9303:544;;9806:8;;-1:-1:-1;9703:84:81;;-1:-1:-1;;;;9303:544:81:o;9852:409::-;9922:6;9930;9983:2;9971:9;9962:7;9958:23;9954:32;9951:52;;;9999:1;9996;9989:12;9951:52;10039:9;10026:23;-1:-1:-1;;;;;10064:6:81;10061:30;10058:50;;;10104:1;10101;10094:12;10058:50;10143:58;10193:7;10184:6;10173:9;10169:22;10143:58;:::i;:::-;10220:8;;10117:84;;-1:-1:-1;9852:409:81;-1:-1:-1;;;;9852:409:81:o;12080:127::-;12141:10;12136:3;12132:20;12129:1;12122:31;12172:4;12169:1;12162:15;12196:4;12193:1;12186:15;12212:288;12253:3;12291:5;12285:12;12318:6;12313:3;12306:19;12374:6;12367:4;12360:5;12356:16;12349:4;12344:3;12340:14;12334:47;12426:1;12419:4;12410:6;12405:3;12401:16;12397:27;12390:38;12489:4;12482:2;12478:7;12473:2;12465:6;12461:15;12457:29;12452:3;12448:39;12444:50;12437:57;;;12212:288;;;;:::o;12505:::-;12680:6;12669:9;12662:25;12723:2;12718;12707:9;12703:18;12696:30;12643:4;12743:44;12783:2;12772:9;12768:18;12760:6;12743:44;:::i;13510:127::-;13571:10;13566:3;13562:20;13559:1;13552:31;13602:4;13599:1;13592:15;13626:4;13623:1;13616:15;13642:125;13707:9;;;13728:10;;;13725:36;;;13741:18;;:::i;14731:135::-;14770:3;14791:17;;;14788:43;;14811:18;;:::i;:::-;-1:-1:-1;14858:1:81;14847:13;;14731:135::o;15225:128::-;15292:9;;;15313:11;;;15310:37;;;15327:18;;:::i;16661:127::-;16722:10;16717:3;16713:20;16710:1;16703:31;16753:4;16750:1;16743:15;16777:4;16774:1;16767:15;16793:337;16898:4;16956:11;16943:25;17050:3;17046:8;17035;17019:14;17015:29;17011:44;16991:18;16987:69;16977:97;;17070:1;17067;17060:12;16977:97;17091:33;;;;;16793:337;-1:-1:-1;;16793:337:81:o;17135:271::-;17318:6;17310;17305:3;17292:33;17274:3;17344:16;;17369:13;;;17344:16;17135:271;-1:-1:-1;17135:271:81:o;17411:298::-;17594:6;17587:14;17580:22;17569:9;17562:41;17639:2;17634;17623:9;17619:18;17612:30;17543:4;17659:44;17699:2;17688:9;17684:18;17676:6;17659:44;:::i;17714:266::-;17802:6;17797:3;17790:19;17854:6;17847:5;17840:4;17835:3;17831:14;17818:43;-1:-1:-1;17906:1:81;17881:16;;;17899:4;17877:27;;;17870:38;;;;17962:2;17941:15;;;-1:-1:-1;;17937:29:81;17928:39;;;17924:50;;17714:266::o;17985:244::-;18142:2;18131:9;18124:21;18105:4;18162:61;18219:2;18208:9;18204:18;18196:6;18188;18162:61;:::i;18234:251::-;18304:6;18357:2;18345:9;18336:7;18332:23;18328:32;18325:52;;;18373:1;18370;18363:12;18325:52;18405:9;18399:16;18424:31;18449:5;18424:31;:::i;19383:179::-;19482:14;19451:22;;;19475;;;19447:51;;19510:23;;19507:49;;;19536:18;;:::i;21185:337::-;21291:4;21349:11;21336:25;21443:2;21439:7;21428:8;21412:14;21408:29;21404:43;21384:18;21380:68;21370:96;;21462:1;21459;21452:12;21527:584;21659:4;21665:6;21725:11;21712:25;21819:2;21815:7;21804:8;21788:14;21784:29;21780:43;21760:18;21756:68;21746:96;;21838:1;21835;21828:12;21746:96;21865:33;;21917:20;;;-1:-1:-1;;;;;;21949:30:81;;21946:50;;;21992:1;21989;21982:12;21946:50;22025:4;22013:17;;-1:-1:-1;22076:1:81;22072:14;;;22056;22052:35;22042:46;;22039:66;;;22101:1;22098;22091:12;22740:521;22817:4;22823:6;22883:11;22870:25;22977:2;22973:7;22962:8;22946:14;22942:29;22938:43;22918:18;22914:68;22904:96;;22996:1;22993;22986:12;22904:96;23023:33;;23075:20;;;-1:-1:-1;;;;;;23107:30:81;;23104:50;;;23150:1;23147;23140:12;23104:50;23183:4;23171:17;;-1:-1:-1;23214:14:81;23210:27;;;23200:38;;23197:58;;;23251:1;23248;23241:12;23266:500;23324:5;23331:6;23391:3;23378:17;23477:2;23473:7;23462:8;23446:14;23442:29;23438:43;23418:18;23414:68;23404:96;;23496:1;23493;23486:12;23404:96;23524:33;;23628:4;23615:18;;;-1:-1:-1;23576:21:81;;-1:-1:-1;;;;;;23645:30:81;;23642:50;;;23688:1;23685;23678:12;23642:50;23735:6;23719:14;23715:27;23708:5;23704:39;23701:59;;;23756:1;23753;23746:12;23771:1544;23860:50;23906:3;23879:25;23898:5;23879:25;:::i;:::-;-1:-1:-1;;;;;16268:31:81;16256:44;;16202:104;23860:50;23979:4;23968:16;;;23955:30;24001:14;;;23994:31;23842:3;24068:55;24117:4;24106:16;;23972:5;24068:55;:::i;:::-;24155:6;24148:4;24143:3;24139:14;24132:30;24183:71;24246:6;24241:3;24237:16;24223:12;24209;24183:71;:::i;:::-;24171:83;;;24301:55;24350:4;24343:5;24339:16;24332:5;24301:55;:::i;:::-;24398:3;24392:4;24388:14;24381:4;24376:3;24372:14;24365:38;24426:63;24484:4;24468:14;24452;24426:63;:::i;:::-;24558:4;24547:16;;;24534:30;24580:14;;;24573:31;24673:4;24662:16;;;24649:30;24695:14;;;24688:31;24788:4;24777:16;;;24764:30;24810:14;;;24803:31;24412:77;-1:-1:-1;24881:55:81;;-1:-1:-1;;24930:4:81;24919:16;;24551:5;24881:55;:::i;:::-;24980:3;24972:6;24968:16;24961:4;24956:3;24952:14;24945:40;25008:65;25066:6;25050:14;25034;25008:65;:::i;:::-;24994:79;;;;25120:57;25169:6;25162:5;25158:18;25151:5;25120:57;:::i;:::-;25223:3;25215:6;25211:16;25202:6;25197:3;25193:16;25186:42;25244:65;25302:6;25286:14;25270;25244:65;:::i;:::-;25237:72;23771:1544;-1:-1:-1;;;;;;23771:1544:81:o;25320:1202::-;25652:2;25664:21;;;25637:18;;25720:22;;;-1:-1:-1;25773:2:81;25822:1;25818:14;;;25803:30;;25799:39;;;25758:18;;25861:6;-1:-1:-1;;;25913:14:81;25909:27;;;25905:42;25956:433;25970:6;25967:1;25964:13;25956:433;;;26035:22;;;-1:-1:-1;;26031:36:81;26019:49;;26107:20;;26150:27;;;26140:55;;26191:1;26188;26181:12;26140:55;26218:87;26298:6;26289;26269:18;26265:31;26218:87;:::i;:::-;26208:97;;;26340:4;26332:6;26328:17;26318:27;;26374:4;26369:3;26365:14;26358:21;;25992:1;25989;25985:9;25980:14;;25956:433;;;25960:3;;;;26439:9;26431:6;26427:22;26420:4;26409:9;26405:20;26398:52;26467:49;26509:6;26501;26493;26467:49;:::i;:::-;26459:57;25320:1202;-1:-1:-1;;;;;;;25320:1202:81:o;26527:127::-;26588:10;26583:3;26579:20;26576:1;26569:31;26619:4;26616:1;26609:15;26643:4;26640:1;26633:15;26659:598;26866:4;26906:1;26898:6;26895:13;26885:144;;26951:10;26946:3;26942:20;26939:1;26932:31;26986:4;26983:1;26976:15;27014:4;27011:1;27004:15;26885:144;27056:6;27045:9;27038:25;27099:3;27094:2;27083:9;27079:18;27072:31;27120:45;27160:3;27149:9;27145:19;27137:6;27120:45;:::i;:::-;27196:2;27181:18;;27174:34;;;;-1:-1:-1;27239:2:81;27224:18;27217:34;27112:53;26659:598;-1:-1:-1;;26659:598:81:o;27262:217::-;27409:2;27398:9;27391:21;27372:4;27429:44;27469:2;27458:9;27454:18;27446:6;27429:44;:::i;30435:376::-;30668:2;30657:9;30650:21;30631:4;30688:74;30758:2;30747:9;30743:18;30735:6;30688:74;:::i;:::-;30680:82;;30798:6;30793:2;30782:9;30778:18;30771:34;30435:376;;;;;:::o;30816:905::-;30890:12;;30930:9;;-1:-1:-1;;;;;16268:31:81;16256:44;;30991:4;30987:2;30983:13;30977:20;30970:4;30965:3;30961:14;30954:44;31044:4;31040:2;31036:13;31030:20;31023:4;31018:3;31014:14;31007:44;31097:4;31093:2;31089:13;31083:20;31076:4;31071:3;31067:14;31060:44;31150:4;31146:2;31142:13;31136:20;31129:4;31124:3;31120:14;31113:44;31203:4;31199:2;31195:13;31189:20;31182:4;31177:3;31173:14;31166:44;31256:4;31252:2;31248:13;31242:20;31235:4;31230:3;31226:14;31219:44;31306:4;31302:2;31298:13;31292:20;31321:48;31363:4;31358:3;31354:14;31340:12;-1:-1:-1;;;;;16268:31:81;16256:44;;16202:104;31321:48;-1:-1:-1;31417:6:81;31409:15;;;31403:22;31385:16;;;31378:48;31474:6;31466:15;;;31460:22;31442:16;;;31435:48;31534:4;31523:16;;31517:23;31508:6;31499:16;;31492:49;31592:4;31581:16;;31575:23;31566:6;31557:16;;31550:49;31650:4;31639:16;;31633:23;31624:6;31615:16;;31608:49;31708:4;31697:16;31691:23;31682:6;31673:16;;;31666:49;30816:905::o;31726:527::-;32001:3;31990:9;31983:22;31964:4;32028:45;32068:3;32057:9;32053:19;32045:6;32028:45;:::i;:::-;32082:56;32134:2;32123:9;32119:18;32111:6;32082:56;:::i;:::-;32187:9;32179:6;32175:22;32169:3;32158:9;32154:19;32147:51;32215:32;32240:6;32232;32215:32;:::i;32258:554::-;32543:3;32532:9;32525:22;32506:4;32570:62;32627:3;32616:9;32612:19;32604:6;32596;32570:62;:::i;:::-;32641:56;32693:2;32682:9;32678:18;32670:6;32641:56;:::i;:::-;32746:9;32738:6;32734:22;32728:3;32717:9;32713:19;32706:51;32774:32;32799:6;32791;32774:32;:::i;35420:447::-;35681:2;35670:9;35663:21;35644:4;35701:74;35771:2;35760:9;35756:18;35748:6;35701:74;:::i;:::-;35806:2;35791:18;;35784:34;;;;-1:-1:-1;35849:2:81;35834:18;35827:34;35693:82;35420:447;-1:-1:-1;35420:447:81:o;35872:230::-;35942:6;35995:2;35983:9;35974:7;35970:23;35966:32;35963:52;;;36011:1;36008;36001:12;35963:52;-1:-1:-1;36056:16:81;;35872:230;-1:-1:-1;35872:230:81:o;36107:522::-;36383:6;36372:9;36365:25;36426:2;36421;36410:9;36406:18;36399:30;36465:2;36460;36449:9;36445:18;36438:30;-1:-1:-1;;;36499:3:81;36488:9;36484:19;36477:44;36557:3;36552:2;36541:9;36537:18;36530:31;36346:4;36578:45;36618:3;36607:9;36603:19;36595:6;36578:45;:::i;37489:802::-;37577:6;37585;37638:2;37626:9;37617:7;37613:23;37609:32;37606:52;;;37654:1;37651;37644:12;37606:52;37687:9;37681:16;-1:-1:-1;;;;;37712:6:81;37709:30;37706:50;;;37752:1;37749;37742:12;37706:50;37775:22;;37828:4;37820:13;;37816:27;-1:-1:-1;37806:55:81;;37857:1;37854;37847:12;37806:55;37890:2;37884:9;37915:52;37931:35;37959:6;37931:35;:::i;37915:52::-;37990:6;37983:5;37976:21;38040:7;38033:4;38024:6;38020:2;38016:15;38012:26;38009:39;38006:59;;;38061:1;38058;38051:12;38006:59;38113:6;38106:4;38102:2;38098:13;38091:4;38084:5;38080:16;38074:46;38167:1;38160:4;38140:18;;;38136:29;;38129:40;38240:20;;38234:27;38140:18;;38234:27;;-1:-1:-1;;;;37489:802:81:o;38296:522::-;38572:6;38561:9;38554:25;38615:2;38610;38599:9;38595:18;38588:30;38654:2;38649;38638:9;38634:18;38627:30;-1:-1:-1;;;38688:3:81;38677:9;38673:19;38666:44;38746:3;38741:2;38730:9;38726:18;38719:31;38535:4;38767:45;38807:3;38796:9;38792:19;38784:6;38767:45;:::i;39303:331::-;39408:9;39419;39461:8;39449:10;39446:24;39443:44;;;39483:1;39480;39473:12;39443:44;39512:6;39502:8;39499:20;39496:40;;;39532:1;39529;39522:12;39496:40;-1:-1:-1;;39558:23:81;;;39603:25;;;;;-1:-1:-1;39303:331:81:o;39639:374::-;39760:19;;-1:-1:-1;;39797:40:81;;;39857:2;39849:11;;39846:161;;;39969:26;39965:31;39934:26;39930:31;39923:3;39919:2;39915:12;39912:1;39908:20;39904:58;39900:2;39896:67;39892:105;39883:114;;39846:161;;39639:374;;;;:::o;40018:398::-;40139:19;;-1:-1:-1;;;;;;40176:48:81;;;40244:2;40236:11;;40233:177;;;-1:-1:-1;;;;;;40306:2:81;40302:12;;;;40299:1;40295:20;40291:66;;;40283:75;40279:121;;;;40018:398;-1:-1:-1;;40018:398:81:o"},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","delegateAndRevert(address,bytes)":"850aaf62","depositTo(address)":"b760faf9","deposits(address)":"fc7e286d","getDepositInfo(address)":"5287ce12","getNonce(address,uint192)":"35567e1a","getSenderAddress(bytes)":"9b249f69","getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))":"22cdde4c","handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)":"dbed18e0","handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)":"765e827f","incrementNonce(uint192)":"0bd28e3b","innerHandleOp(bytes,((address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256),bytes32,uint256,uint256,uint256),bytes)":"0042dc53","nonceSequenceNumber(address,uint192)":"1b2e01b8","supportsInterface(bytes4)":"01ffc9a7","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"success\",\"type\":\"bool\"},{\"internalType\":\"bytes\",\"name\":\"ret\",\"type\":\"bytes\"}],\"name\":\"DelegateAndRevert\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"opIndex\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"FailedOp\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"opIndex\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"inner\",\"type\":\"bytes\"}],\"name\":\"FailedOpWithRevert\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"returnData\",\"type\":\"bytes\"}],\"name\":\"PostOpReverted\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"SenderAddressResult\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"aggregator\",\"type\":\"address\"}],\"name\":\"SignatureValidationFailed\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"factory\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"}],\"name\":\"AccountDeployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"BeforeExecution\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalDeposit\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"revertReason\",\"type\":\"bytes\"}],\"name\":\"PostOpRevertReason\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"aggregator\",\"type\":\"address\"}],\"name\":\"SignatureAggregatorChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unstakeDelaySec\",\"type\":\"uint256\"}],\"name\":\"StakeLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawTime\",\"type\":\"uint256\"}],\"name\":\"StakeUnlocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"success\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"actualGasUsed\",\"type\":\"uint256\"}],\"name\":\"UserOperationEvent\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"name\":\"UserOperationPrefundTooLow\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"revertReason\",\"type\":\"bytes\"}],\"name\":\"UserOperationRevertReason\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"}],\"name\":\"addStake\",\"outputs\":[],\"stateMutability\":\"payable\",\"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\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"delegateAndRevert\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"deposits\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getDepositInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"internalType\":\"struct IStakeManager.DepositInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"}],\"name\":\"getSenderAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"}],\"name\":\"getUserOpHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"},{\"internalType\":\"contract IAggregator\",\"name\":\"aggregator\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct IEntryPoint.UserOpsPerAggregator[]\",\"name\":\"opsPerAggregator\",\"type\":\"tuple[]\"},{\"internalType\":\"address payable\",\"name\":\"beneficiary\",\"type\":\"address\"}],\"name\":\"handleAggregatedOps\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"ops\",\"type\":\"tuple[]\"},{\"internalType\":\"address payable\",\"name\":\"beneficiary\",\"type\":\"address\"}],\"name\":\"handleOps\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"incrementNonce\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"verificationGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"callGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"paymasterVerificationGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"paymasterPostOpGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"maxFeePerGas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxPriorityFeePerGas\",\"type\":\"uint256\"}],\"internalType\":\"struct EntryPoint.MemoryUserOp\",\"name\":\"mUserOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"prefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"contextOffset\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"preOpGas\",\"type\":\"uint256\"}],\"internalType\":\"struct EntryPoint.UserOpInfo\",\"name\":\"opInfo\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"context\",\"type\":\"bytes\"}],\"name\":\"innerHandleOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"\",\"type\":\"uint192\"}],\"name\":\"nonceSequenceNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"withdrawAmount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"custom:security-contact\":\"https://bounty.ethereum.org\",\"errors\":{\"FailedOp(uint256,string)\":[{\"params\":{\"opIndex\":\"- Index into the array of ops to the failed one (in simulateValidation, this is always zero).\",\"reason\":\"- Revert reason. The string starts with a unique code \\\"AAmn\\\",                  where \\\"m\\\" is \\\"1\\\" for factory, \\\"2\\\" for account and \\\"3\\\" for paymaster issues,                  so a failure can be attributed to the correct entity.\"}}],\"FailedOpWithRevert(uint256,string,bytes)\":[{\"details\":\"note that inner is truncated to 2048 bytes\",\"params\":{\"inner\":\"- data from inner cought revert reason\",\"opIndex\":\"- Index into the array of ops to the failed one (in simulateValidation, this is always zero).\",\"reason\":\"- Revert reason. see FailedOp(uint256,string), above\"}}],\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}],\"SignatureValidationFailed(address)\":[{\"params\":{\"aggregator\":\"The aggregator that failed to verify the signature\"}}]},\"events\":{\"AccountDeployed(bytes32,address,address,address)\":{\"params\":{\"factory\":\"- The factory used to deploy this account (in the initCode)\",\"paymaster\":\"- The paymaster used by this UserOp\",\"sender\":\"- The account that is deployed\",\"userOpHash\":\"- The userOp that deployed this account. UserOperationEvent will follow.\"}},\"PostOpRevertReason(bytes32,address,uint256,bytes)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"revertReason\":\"- The return bytes from the (reverted) call to \\\"callData\\\".\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}},\"SignatureAggregatorChanged(address)\":{\"params\":{\"aggregator\":\"- The aggregator used for the following UserOperationEvents.\"}},\"UserOperationPrefundTooLow(bytes32,address,uint256)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}},\"UserOperationRevertReason(bytes32,address,uint256,bytes)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"revertReason\":\"- The return bytes from the (reverted) call to \\\"callData\\\".\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}}},\"kind\":\"dev\",\"methods\":{\"addStake(uint32)\":{\"params\":{\"unstakeDelaySec\":\"The new lock duration before the deposit can be withdrawn.\"}},\"balanceOf(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"_0\":\"- The deposit (for gas payment) of the account.\"}},\"delegateAndRevert(address,bytes)\":{\"details\":\"calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace  actual EntryPoint code is less convenient.\",\"params\":{\"data\":\"data to pass to target in a delegatecall\",\"target\":\"a target contract to make a delegatecall from entrypoint\"}},\"depositTo(address)\":{\"params\":{\"account\":\"- The account to add to.\"}},\"getDepositInfo(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"info\":\"  - Full deposit information of given account.\"}},\"getNonce(address,uint192)\":{\"params\":{\"key\":\"the high 192 bit of the nonce\",\"sender\":\"the account address\"},\"returns\":{\"nonce\":\"a full nonce to pass for next UserOp with this sender.\"}},\"getSenderAddress(bytes)\":{\"params\":{\"initCode\":\"- The constructor code to be passed into the UserOperation.\"}},\"getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"params\":{\"userOp\":\"- The user operation to generate the request ID for.\"},\"returns\":{\"_0\":\"hash the hash of this UserOperation\"}},\"handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)\":{\"params\":{\"beneficiary\":\"- The address to receive the fees.\",\"opsPerAggregator\":\"- The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\"}},\"handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)\":{\"params\":{\"beneficiary\":\"- The address to receive the fees.\",\"ops\":\"- The operations to execute.\"}},\"innerHandleOp(bytes,((address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256),bytes32,uint256,uint256,uint256),bytes)\":{\"params\":{\"callData\":\"- The callData to execute.\",\"context\":\"- The context bytes.\",\"opInfo\":\"- The UserOpInfo struct.\"},\"returns\":{\"actualGasCost\":\"- the actual cost in eth this UserOperation paid for gas\"}},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"withdrawStake(address)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\"}},\"withdrawTo(address,uint256)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\",\"withdrawAmount\":\"- The amount to withdraw.\"}}},\"version\":1},\"userdoc\":{\"errors\":{\"FailedOp(uint256,string)\":[{\"notice\":\"A custom revert error of handleOps, to identify the offending op. Should be caught in off-chain handleOps simulation and not happen on-chain. Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts. NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\"}],\"FailedOpWithRevert(uint256,string,bytes)\":[{\"notice\":\"A custom revert error of handleOps, to report a revert by account or paymaster.\"}],\"SignatureValidationFailed(address)\":[{\"notice\":\"Error case when a signature aggregator fails to verify the aggregated signature it had created.\"}]},\"events\":{\"AccountDeployed(bytes32,address,address,address)\":{\"notice\":\"Account \\\"sender\\\" was deployed.\"},\"BeforeExecution()\":{\"notice\":\"An event emitted by handleOps(), before starting the execution loop. Any event emitted before this event, is part of the validation.\"},\"PostOpRevertReason(bytes32,address,uint256,bytes)\":{\"notice\":\"An event emitted if the UserOperation Paymaster's \\\"postOp\\\" call reverted with non-zero length.\"},\"SignatureAggregatorChanged(address)\":{\"notice\":\"Signature aggregator used by the following UserOperationEvents within this bundle.\"},\"UserOperationPrefundTooLow(bytes32,address,uint256)\":{\"notice\":\"UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\"},\"UserOperationRevertReason(bytes32,address,uint256,bytes)\":{\"notice\":\"An event emitted if the UserOperation \\\"callData\\\" reverted with non-zero length.\"}},\"kind\":\"user\",\"methods\":{\"addStake(uint32)\":{\"notice\":\"Add to the account's stake - amount and delay any pending unstake is first cancelled.\"},\"balanceOf(address)\":{\"notice\":\"Get account balance.\"},\"delegateAndRevert(address,bytes)\":{\"notice\":\"Helper method for dry-run testing.\"},\"depositTo(address)\":{\"notice\":\"Add to the deposit of the given account.\"},\"deposits(address)\":{\"notice\":\"maps paymaster to their deposits and stakes\"},\"getDepositInfo(address)\":{\"notice\":\"Get deposit info.\"},\"getNonce(address,uint192)\":{\"notice\":\"Return the next nonce for this sender. Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop) But UserOp with different keys can come with arbitrary order.\"},\"getSenderAddress(bytes)\":{\"notice\":\"Get counterfactual sender address. Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation. This method always revert, and returns the address in SenderAddressResult error\"},\"getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"notice\":\"Generate a request Id - unique identifier for this request. The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\"},\"handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)\":{\"notice\":\"Execute a batch of UserOperation with Aggregators\"},\"handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)\":{\"notice\":\"Execute a batch of UserOperations. No signature aggregator is used. If any account requires an aggregator (that is, it returned an aggregator when performing simulateValidation), then handleAggregatedOps() must be used instead.\"},\"incrementNonce(uint192)\":{\"notice\":\"Manually increment the nonce of the sender. This method is exposed just for completeness.. Account does NOT need to call it, neither during validation, nor elsewhere, as the EntryPoint will update the nonce regardless. Possible use-case is call it with various keys to \\\"initialize\\\" their nonces to one, so that future UserOperations will not pay extra for the first transaction with a given key.\"},\"innerHandleOp(bytes,((address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256),bytes32,uint256,uint256,uint256),bytes)\":{\"notice\":\"Inner function to handle a UserOperation. Must be declared \\\"external\\\" to open a call context, but it can only be called by handleOps.\"},\"nonceSequenceNumber(address,uint192)\":{\"notice\":\"The next valid sequence number for a given nonce key.\"},\"unlockStake()\":{\"notice\":\"Attempt to unlock the stake. The value can be withdrawn (using withdrawStake) after the unstake delay.\"},\"withdrawStake(address)\":{\"notice\":\"Withdraw from the (unlocked) stake. Must first call unlockStake and wait for the unstakeDelay to pass.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Withdraw from the deposit.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/EntryPoint.sol\":\"EntryPoint\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/EntryPoint.sol\":{\"keccak256\":\"0x0eb1245b5541ff0fbc0f2a23c746e2b4eb9c46e801a4847f15d7d96d1cecc576\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b002e499336c8f6ec05230762cccd3b48d67a2ec547e2789cfb70132af0b430f\",\"dweb:/ipfs/QmfRGPNgBrfxmLt9PQUEjocVmC47Mx14Vie1tziTARRZfq\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/NonceManager.sol\":{\"keccak256\":\"0x1f951786ce6f171e7ed0242fee73ee4a205c7523404ee6cffca48b8c64ea5fe9\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://a602bf2274d478dae7a532cca31f8179131808c324cc26ece5c7e87c5a1015a6\",\"dweb:/ipfs/QmaaSyw5GGbAWzUhAPCtsb38P3MmaVr1ngp61PYHCU2a5a\"]},\"@account-abstraction/contracts/core/SenderCreator.sol\":{\"keccak256\":\"0xeb95afb6e4cf921c1ed105ecb9f549ca46bee57f68acd1d2f4f84607ac0db5c5\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://d2ac91562f1fcabe4809a1b4256895efebcf46f89e08336a6c09ee2d29733238\",\"dweb:/ipfs/QmPsQnPcCzioPwVtUhxkbnwKPC1bnhHSbAwK9GXVpjN3mH\"]},\"@account-abstraction/contracts/core/StakeManager.sol\":{\"keccak256\":\"0x673eb19600058d8642605ca409c9e1d4cab13735564b856270b92c330ffb1b8d\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://06599c57c7075ee8eb5f1710fccca3eb322876b968ec271e1fb34af41510ab2c\",\"dweb:/ipfs/QmVsDEjmZYtzgXa4AYKxbQEYQVh6NBq8GmFJCariBUqK4G\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAccountExecute.sol\":{\"keccak256\":\"0xd3dc32dde1add1fb6377f939ceff6be31c2e21343522311f7b88db666be9ee6c\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://5b8f065171bd32e23b306868189c730f849ce6147f753c59e396e7afcf384577\",\"dweb:/ipfs/QmZpDRNEZ9YNgGgyLQo5yM4bB1FNbtnfDABsChbgSQKXUh\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IPaymaster.sol\":{\"keccak256\":\"0x49d8dbf8a85b006bcd89bbc40e4e9e113997cc016007de85263bdae70572d07f\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://bc0d83804c1b795d5c216b3518cd176c48f90db28550f267cbd89746d6b476c8\",\"dweb:/ipfs/QmNdCm4c6hnt7f6Q8q21QjtCNZWWRUaMVEYnQHEv68VnKt\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]},\"@account-abstraction/contracts/utils/Exec.sol\":{\"keccak256\":\"0x86b1b1cd11158dddb9d381040c57fdc643c74b5e4eed3e7e036f32452672ad74\",\"license\":\"LGPL-3.0-only\",\"urls\":[\"bzz-raw://ad88663b6c76df73cf09a272cf333d038df7bb4c51281284b572bf9b46e1cd77\",\"dweb:/ipfs/QmVKxYF8avyPBtqejVhFCM2CuHsfpsCh7TsPqkBLtrgwJQ\"]},\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2565,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"deposits","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(DepositInfo)3673_storage)"},{"astId":2428,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"nonceSequenceNumber","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_uint192,t_uint256))"},{"astId":16368,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"_status","offset":0,"slot":"2","type":"t_uint256"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_mapping(t_uint192,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(uint192 => uint256))","numberOfBytes":"32","value":"t_mapping(t_uint192,t_uint256)"},"t_mapping(t_address,t_struct(DepositInfo)3673_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct IStakeManager.DepositInfo)","numberOfBytes":"32","value":"t_struct(DepositInfo)3673_storage"},"t_mapping(t_uint192,t_uint256)":{"encoding":"mapping","key":"t_uint192","label":"mapping(uint192 => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_struct(DepositInfo)3673_storage":{"encoding":"inplace","label":"struct IStakeManager.DepositInfo","members":[{"astId":3664,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"deposit","offset":0,"slot":"0","type":"t_uint256"},{"astId":3666,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"staked","offset":0,"slot":"1","type":"t_bool"},{"astId":3668,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"stake","offset":1,"slot":"1","type":"t_uint112"},{"astId":3670,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"unstakeDelaySec","offset":15,"slot":"1","type":"t_uint32"},{"astId":3672,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"withdrawTime","offset":19,"slot":"1","type":"t_uint48"}],"numberOfBytes":"64"},"t_uint112":{"encoding":"inplace","label":"uint112","numberOfBytes":"14"},"t_uint192":{"encoding":"inplace","label":"uint192","numberOfBytes":"24"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"}}}}},"@account-abstraction/contracts/core/NonceManager.sol":{"NonceManager":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint192","name":"key","type":"uint192"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint192","name":"key","type":"uint192"}],"name":"incrementNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint192","name":"","type":"uint192"}],"name":"nonceSequenceNumber","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":{"getNonce(address,uint192)":"35567e1a","incrementNonce(uint192)":"0bd28e3b","nonceSequenceNumber(address,uint192)":"1b2e01b8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"incrementNonce\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"\",\"type\":\"uint192\"}],\"name\":\"nonceSequenceNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getNonce(address,uint192)\":{\"params\":{\"key\":\"the high 192 bit of the nonce\",\"sender\":\"the account address\"},\"returns\":{\"nonce\":\"a full nonce to pass for next UserOp with this sender.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"getNonce(address,uint192)\":{\"notice\":\"Return the next nonce for this sender. Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop) But UserOp with different keys can come with arbitrary order.\"},\"incrementNonce(uint192)\":{\"notice\":\"Manually increment the nonce of the sender. This method is exposed just for completeness.. Account does NOT need to call it, neither during validation, nor elsewhere, as the EntryPoint will update the nonce regardless. Possible use-case is call it with various keys to \\\"initialize\\\" their nonces to one, so that future UserOperations will not pay extra for the first transaction with a given key.\"},\"nonceSequenceNumber(address,uint192)\":{\"notice\":\"The next valid sequence number for a given nonce key.\"}},\"notice\":\"nonce management functionality\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/NonceManager.sol\":\"NonceManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/NonceManager.sol\":{\"keccak256\":\"0x1f951786ce6f171e7ed0242fee73ee4a205c7523404ee6cffca48b8c64ea5fe9\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://a602bf2274d478dae7a532cca31f8179131808c324cc26ece5c7e87c5a1015a6\",\"dweb:/ipfs/QmaaSyw5GGbAWzUhAPCtsb38P3MmaVr1ngp61PYHCU2a5a\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2428,"contract":"@account-abstraction/contracts/core/NonceManager.sol:NonceManager","label":"nonceSequenceNumber","offset":0,"slot":"0","type":"t_mapping(t_address,t_mapping(t_uint192,t_uint256))"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_uint192,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(uint192 => uint256))","numberOfBytes":"32","value":"t_mapping(t_uint192,t_uint256)"},"t_mapping(t_uint192,t_uint256)":{"encoding":"mapping","key":"t_uint192","label":"mapping(uint192 => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_uint192":{"encoding":"inplace","label":"uint192","numberOfBytes":"24"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@account-abstraction/contracts/core/SenderCreator.sol":{"SenderCreator":{"abi":[{"inputs":[{"internalType":"bytes","name":"initCode","type":"bytes"}],"name":"createSender","outputs":[{"internalType":"address","name":"sender","type":"address"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506101fc8061001c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610029575f3560e01c8063570e1a361461002d575b5f5ffd5b61004061003b3660046100e4565b61005c565b6040516001600160a01b03909116815260200160405180910390f35b5f8061006b6014828587610152565b61007491610179565b60601c90505f6100878460148188610152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92018290525084519495509360209350849250905082850182875af190505f519350806100db575f93505b50505092915050565b5f5f602083850312156100f5575f5ffd5b823567ffffffffffffffff81111561010b575f5ffd5b8301601f8101851361011b575f5ffd5b803567ffffffffffffffff811115610131575f5ffd5b856020828401011115610142575f5ffd5b6020919091019590945092505050565b5f5f85851115610160575f5ffd5b8386111561016c575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff1981169060148410156101bf576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b509291505056fea264697066735822122030d5fffd4a3dd2ab69501a2f8fc7f9592e7a9dd8ff73291baa2fdf62374d0ac464736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FC DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x570E1A36 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x3B CALLDATASIZE PUSH1 0x4 PUSH2 0xE4 JUMP JUMPDEST PUSH2 0x5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH2 0x6B PUSH1 0x14 DUP3 DUP6 DUP8 PUSH2 0x152 JUMP JUMPDEST PUSH2 0x74 SWAP2 PUSH2 0x179 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP PUSH0 PUSH2 0x87 DUP5 PUSH1 0x14 DUP2 DUP9 PUSH2 0x152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD DUP3 SWAP1 MSTORE POP DUP5 MLOAD SWAP5 SWAP6 POP SWAP4 PUSH1 0x20 SWAP4 POP DUP5 SWAP3 POP SWAP1 POP DUP3 DUP6 ADD DUP3 DUP8 GAS CALL SWAP1 POP PUSH0 MLOAD SWAP4 POP DUP1 PUSH2 0xDB JUMPI PUSH0 SWAP4 POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x11B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x142 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x160 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x16C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x1BF JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS 0xD5 SELFDESTRUCT REVERT BLOBBASEFEE RETURNDATASIZE 0xD2 0xAB PUSH10 0x501A2F8FC7F9592E7A9D 0xD8 SELFDESTRUCT PUSH20 0x291BAA2FDF62374D0AC464736F6C634300081C00 CALLER ","sourceMap":"205:1026:4:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@createSender_2552":{"entryPoint":92,"id":2552,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_calldata_ptr":{"entryPoint":228,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":338,"id":null,"parameterSlots":4,"returnSlots":2},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":377,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:1525:81","nodeType":"YulBlock","src":"0:1525:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"103:497:81","nodeType":"YulBlock","src":"103:497:81","statements":[{"body":{"nativeSrc":"149:16:81","nodeType":"YulBlock","src":"149:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"158:1:81","nodeType":"YulLiteral","src":"158:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"161:1:81","nodeType":"YulLiteral","src":"161:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"151:6:81","nodeType":"YulIdentifier","src":"151:6:81"},"nativeSrc":"151:12:81","nodeType":"YulFunctionCall","src":"151:12:81"},"nativeSrc":"151:12:81","nodeType":"YulExpressionStatement","src":"151:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"124:7:81","nodeType":"YulIdentifier","src":"124:7:81"},{"name":"headStart","nativeSrc":"133:9:81","nodeType":"YulIdentifier","src":"133:9:81"}],"functionName":{"name":"sub","nativeSrc":"120:3:81","nodeType":"YulIdentifier","src":"120:3:81"},"nativeSrc":"120:23:81","nodeType":"YulFunctionCall","src":"120:23:81"},{"kind":"number","nativeSrc":"145:2:81","nodeType":"YulLiteral","src":"145:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"116:3:81","nodeType":"YulIdentifier","src":"116:3:81"},"nativeSrc":"116:32:81","nodeType":"YulFunctionCall","src":"116:32:81"},"nativeSrc":"113:52:81","nodeType":"YulIf","src":"113:52:81"},{"nativeSrc":"174:37:81","nodeType":"YulVariableDeclaration","src":"174:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"201:9:81","nodeType":"YulIdentifier","src":"201:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"188:12:81","nodeType":"YulIdentifier","src":"188:12:81"},"nativeSrc":"188:23:81","nodeType":"YulFunctionCall","src":"188:23:81"},"variables":[{"name":"offset","nativeSrc":"178:6:81","nodeType":"YulTypedName","src":"178:6:81","type":""}]},{"body":{"nativeSrc":"254:16:81","nodeType":"YulBlock","src":"254:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:81","nodeType":"YulLiteral","src":"263:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:81","nodeType":"YulLiteral","src":"266:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:81","nodeType":"YulIdentifier","src":"256:6:81"},"nativeSrc":"256:12:81","nodeType":"YulFunctionCall","src":"256:12:81"},"nativeSrc":"256:12:81","nodeType":"YulExpressionStatement","src":"256:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"226:6:81","nodeType":"YulIdentifier","src":"226:6:81"},{"kind":"number","nativeSrc":"234:18:81","nodeType":"YulLiteral","src":"234:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"223:2:81","nodeType":"YulIdentifier","src":"223:2:81"},"nativeSrc":"223:30:81","nodeType":"YulFunctionCall","src":"223:30:81"},"nativeSrc":"220:50:81","nodeType":"YulIf","src":"220:50:81"},{"nativeSrc":"279:32:81","nodeType":"YulVariableDeclaration","src":"279:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"293:9:81","nodeType":"YulIdentifier","src":"293:9:81"},{"name":"offset","nativeSrc":"304:6:81","nodeType":"YulIdentifier","src":"304:6:81"}],"functionName":{"name":"add","nativeSrc":"289:3:81","nodeType":"YulIdentifier","src":"289:3:81"},"nativeSrc":"289:22:81","nodeType":"YulFunctionCall","src":"289:22:81"},"variables":[{"name":"_1","nativeSrc":"283:2:81","nodeType":"YulTypedName","src":"283:2:81","type":""}]},{"body":{"nativeSrc":"359:16:81","nodeType":"YulBlock","src":"359:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:81","nodeType":"YulLiteral","src":"368:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"371:1:81","nodeType":"YulLiteral","src":"371:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"361:6:81","nodeType":"YulIdentifier","src":"361:6:81"},"nativeSrc":"361:12:81","nodeType":"YulFunctionCall","src":"361:12:81"},"nativeSrc":"361:12:81","nodeType":"YulExpressionStatement","src":"361:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"338:2:81","nodeType":"YulIdentifier","src":"338:2:81"},{"kind":"number","nativeSrc":"342:4:81","nodeType":"YulLiteral","src":"342:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"334:3:81","nodeType":"YulIdentifier","src":"334:3:81"},"nativeSrc":"334:13:81","nodeType":"YulFunctionCall","src":"334:13:81"},{"name":"dataEnd","nativeSrc":"349:7:81","nodeType":"YulIdentifier","src":"349:7:81"}],"functionName":{"name":"slt","nativeSrc":"330:3:81","nodeType":"YulIdentifier","src":"330:3:81"},"nativeSrc":"330:27:81","nodeType":"YulFunctionCall","src":"330:27:81"}],"functionName":{"name":"iszero","nativeSrc":"323:6:81","nodeType":"YulIdentifier","src":"323:6:81"},"nativeSrc":"323:35:81","nodeType":"YulFunctionCall","src":"323:35:81"},"nativeSrc":"320:55:81","nodeType":"YulIf","src":"320:55:81"},{"nativeSrc":"384:30:81","nodeType":"YulVariableDeclaration","src":"384:30:81","value":{"arguments":[{"name":"_1","nativeSrc":"411:2:81","nodeType":"YulIdentifier","src":"411:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"398:12:81","nodeType":"YulIdentifier","src":"398:12:81"},"nativeSrc":"398:16:81","nodeType":"YulFunctionCall","src":"398:16:81"},"variables":[{"name":"length","nativeSrc":"388:6:81","nodeType":"YulTypedName","src":"388:6:81","type":""}]},{"body":{"nativeSrc":"457:16:81","nodeType":"YulBlock","src":"457:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"466:1:81","nodeType":"YulLiteral","src":"466:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"469:1:81","nodeType":"YulLiteral","src":"469:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"459:6:81","nodeType":"YulIdentifier","src":"459:6:81"},"nativeSrc":"459:12:81","nodeType":"YulFunctionCall","src":"459:12:81"},"nativeSrc":"459:12:81","nodeType":"YulExpressionStatement","src":"459:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"429:6:81","nodeType":"YulIdentifier","src":"429:6:81"},{"kind":"number","nativeSrc":"437:18:81","nodeType":"YulLiteral","src":"437:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"426:2:81","nodeType":"YulIdentifier","src":"426:2:81"},"nativeSrc":"426:30:81","nodeType":"YulFunctionCall","src":"426:30:81"},"nativeSrc":"423:50:81","nodeType":"YulIf","src":"423:50:81"},{"body":{"nativeSrc":"523:16:81","nodeType":"YulBlock","src":"523:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"532:1:81","nodeType":"YulLiteral","src":"532:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"535:1:81","nodeType":"YulLiteral","src":"535:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"525:6:81","nodeType":"YulIdentifier","src":"525:6:81"},"nativeSrc":"525:12:81","nodeType":"YulFunctionCall","src":"525:12:81"},"nativeSrc":"525:12:81","nodeType":"YulExpressionStatement","src":"525:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"496:2:81","nodeType":"YulIdentifier","src":"496:2:81"},{"name":"length","nativeSrc":"500:6:81","nodeType":"YulIdentifier","src":"500:6:81"}],"functionName":{"name":"add","nativeSrc":"492:3:81","nodeType":"YulIdentifier","src":"492:3:81"},"nativeSrc":"492:15:81","nodeType":"YulFunctionCall","src":"492:15:81"},{"kind":"number","nativeSrc":"509:2:81","nodeType":"YulLiteral","src":"509:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"488:3:81","nodeType":"YulIdentifier","src":"488:3:81"},"nativeSrc":"488:24:81","nodeType":"YulFunctionCall","src":"488:24:81"},{"name":"dataEnd","nativeSrc":"514:7:81","nodeType":"YulIdentifier","src":"514:7:81"}],"functionName":{"name":"gt","nativeSrc":"485:2:81","nodeType":"YulIdentifier","src":"485:2:81"},"nativeSrc":"485:37:81","nodeType":"YulFunctionCall","src":"485:37:81"},"nativeSrc":"482:57:81","nodeType":"YulIf","src":"482:57:81"},{"nativeSrc":"548:21:81","nodeType":"YulAssignment","src":"548:21:81","value":{"arguments":[{"name":"_1","nativeSrc":"562:2:81","nodeType":"YulIdentifier","src":"562:2:81"},{"kind":"number","nativeSrc":"566:2:81","nodeType":"YulLiteral","src":"566:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"558:3:81","nodeType":"YulIdentifier","src":"558:3:81"},"nativeSrc":"558:11:81","nodeType":"YulFunctionCall","src":"558:11:81"},"variableNames":[{"name":"value0","nativeSrc":"548:6:81","nodeType":"YulIdentifier","src":"548:6:81"}]},{"nativeSrc":"578:16:81","nodeType":"YulAssignment","src":"578:16:81","value":{"name":"length","nativeSrc":"588:6:81","nodeType":"YulIdentifier","src":"588:6:81"},"variableNames":[{"name":"value1","nativeSrc":"578:6:81","nodeType":"YulIdentifier","src":"578:6:81"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptr","nativeSrc":"14:586:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:81","nodeType":"YulTypedName","src":"61:9:81","type":""},{"name":"dataEnd","nativeSrc":"72:7:81","nodeType":"YulTypedName","src":"72:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:81","nodeType":"YulTypedName","src":"84:6:81","type":""},{"name":"value1","nativeSrc":"92:6:81","nodeType":"YulTypedName","src":"92:6:81","type":""}],"src":"14:586:81"},{"body":{"nativeSrc":"706:102:81","nodeType":"YulBlock","src":"706:102:81","statements":[{"nativeSrc":"716:26:81","nodeType":"YulAssignment","src":"716:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"728:9:81","nodeType":"YulIdentifier","src":"728:9:81"},{"kind":"number","nativeSrc":"739:2:81","nodeType":"YulLiteral","src":"739:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"724:3:81","nodeType":"YulIdentifier","src":"724:3:81"},"nativeSrc":"724:18:81","nodeType":"YulFunctionCall","src":"724:18:81"},"variableNames":[{"name":"tail","nativeSrc":"716:4:81","nodeType":"YulIdentifier","src":"716:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"758:9:81","nodeType":"YulIdentifier","src":"758:9:81"},{"arguments":[{"name":"value0","nativeSrc":"773:6:81","nodeType":"YulIdentifier","src":"773:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"789:3:81","nodeType":"YulLiteral","src":"789:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"794:1:81","nodeType":"YulLiteral","src":"794:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"785:3:81","nodeType":"YulIdentifier","src":"785:3:81"},"nativeSrc":"785:11:81","nodeType":"YulFunctionCall","src":"785:11:81"},{"kind":"number","nativeSrc":"798:1:81","nodeType":"YulLiteral","src":"798:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"781:3:81","nodeType":"YulIdentifier","src":"781:3:81"},"nativeSrc":"781:19:81","nodeType":"YulFunctionCall","src":"781:19:81"}],"functionName":{"name":"and","nativeSrc":"769:3:81","nodeType":"YulIdentifier","src":"769:3:81"},"nativeSrc":"769:32:81","nodeType":"YulFunctionCall","src":"769:32:81"}],"functionName":{"name":"mstore","nativeSrc":"751:6:81","nodeType":"YulIdentifier","src":"751:6:81"},"nativeSrc":"751:51:81","nodeType":"YulFunctionCall","src":"751:51:81"},"nativeSrc":"751:51:81","nodeType":"YulExpressionStatement","src":"751:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"605:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"675:9:81","nodeType":"YulTypedName","src":"675:9:81","type":""},{"name":"value0","nativeSrc":"686:6:81","nodeType":"YulTypedName","src":"686:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"697:4:81","nodeType":"YulTypedName","src":"697:4:81","type":""}],"src":"605:203:81"},{"body":{"nativeSrc":"943:201:81","nodeType":"YulBlock","src":"943:201:81","statements":[{"body":{"nativeSrc":"981:16:81","nodeType":"YulBlock","src":"981:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"990:1:81","nodeType":"YulLiteral","src":"990:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"993:1:81","nodeType":"YulLiteral","src":"993:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"983:6:81","nodeType":"YulIdentifier","src":"983:6:81"},"nativeSrc":"983:12:81","nodeType":"YulFunctionCall","src":"983:12:81"},"nativeSrc":"983:12:81","nodeType":"YulExpressionStatement","src":"983:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"959:10:81","nodeType":"YulIdentifier","src":"959:10:81"},{"name":"endIndex","nativeSrc":"971:8:81","nodeType":"YulIdentifier","src":"971:8:81"}],"functionName":{"name":"gt","nativeSrc":"956:2:81","nodeType":"YulIdentifier","src":"956:2:81"},"nativeSrc":"956:24:81","nodeType":"YulFunctionCall","src":"956:24:81"},"nativeSrc":"953:44:81","nodeType":"YulIf","src":"953:44:81"},{"body":{"nativeSrc":"1030:16:81","nodeType":"YulBlock","src":"1030:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1039:1:81","nodeType":"YulLiteral","src":"1039:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1042:1:81","nodeType":"YulLiteral","src":"1042:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1032:6:81","nodeType":"YulIdentifier","src":"1032:6:81"},"nativeSrc":"1032:12:81","nodeType":"YulFunctionCall","src":"1032:12:81"},"nativeSrc":"1032:12:81","nodeType":"YulExpressionStatement","src":"1032:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"1012:8:81","nodeType":"YulIdentifier","src":"1012:8:81"},{"name":"length","nativeSrc":"1022:6:81","nodeType":"YulIdentifier","src":"1022:6:81"}],"functionName":{"name":"gt","nativeSrc":"1009:2:81","nodeType":"YulIdentifier","src":"1009:2:81"},"nativeSrc":"1009:20:81","nodeType":"YulFunctionCall","src":"1009:20:81"},"nativeSrc":"1006:40:81","nodeType":"YulIf","src":"1006:40:81"},{"nativeSrc":"1055:36:81","nodeType":"YulAssignment","src":"1055:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"1072:6:81","nodeType":"YulIdentifier","src":"1072:6:81"},{"name":"startIndex","nativeSrc":"1080:10:81","nodeType":"YulIdentifier","src":"1080:10:81"}],"functionName":{"name":"add","nativeSrc":"1068:3:81","nodeType":"YulIdentifier","src":"1068:3:81"},"nativeSrc":"1068:23:81","nodeType":"YulFunctionCall","src":"1068:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"1055:9:81","nodeType":"YulIdentifier","src":"1055:9:81"}]},{"nativeSrc":"1100:38:81","nodeType":"YulAssignment","src":"1100:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"1117:8:81","nodeType":"YulIdentifier","src":"1117:8:81"},{"name":"startIndex","nativeSrc":"1127:10:81","nodeType":"YulIdentifier","src":"1127:10:81"}],"functionName":{"name":"sub","nativeSrc":"1113:3:81","nodeType":"YulIdentifier","src":"1113:3:81"},"nativeSrc":"1113:25:81","nodeType":"YulFunctionCall","src":"1113:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"1100:9:81","nodeType":"YulIdentifier","src":"1100:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"813:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"877:6:81","nodeType":"YulTypedName","src":"877:6:81","type":""},{"name":"length","nativeSrc":"885:6:81","nodeType":"YulTypedName","src":"885:6:81","type":""},{"name":"startIndex","nativeSrc":"893:10:81","nodeType":"YulTypedName","src":"893:10:81","type":""},{"name":"endIndex","nativeSrc":"905:8:81","nodeType":"YulTypedName","src":"905:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"918:9:81","nodeType":"YulTypedName","src":"918:9:81","type":""},{"name":"lengthOut","nativeSrc":"929:9:81","nodeType":"YulTypedName","src":"929:9:81","type":""}],"src":"813:331:81"},{"body":{"nativeSrc":"1250:273:81","nodeType":"YulBlock","src":"1250:273:81","statements":[{"nativeSrc":"1260:29:81","nodeType":"YulVariableDeclaration","src":"1260:29:81","value":{"arguments":[{"name":"array","nativeSrc":"1283:5:81","nodeType":"YulIdentifier","src":"1283:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"1270:12:81","nodeType":"YulIdentifier","src":"1270:12:81"},"nativeSrc":"1270:19:81","nodeType":"YulFunctionCall","src":"1270:19:81"},"variables":[{"name":"_1","nativeSrc":"1264:2:81","nodeType":"YulTypedName","src":"1264:2:81","type":""}]},{"nativeSrc":"1298:49:81","nodeType":"YulAssignment","src":"1298:49:81","value":{"arguments":[{"name":"_1","nativeSrc":"1311:2:81","nodeType":"YulIdentifier","src":"1311:2:81"},{"arguments":[{"kind":"number","nativeSrc":"1319:26:81","nodeType":"YulLiteral","src":"1319:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"1315:3:81","nodeType":"YulIdentifier","src":"1315:3:81"},"nativeSrc":"1315:31:81","nodeType":"YulFunctionCall","src":"1315:31:81"}],"functionName":{"name":"and","nativeSrc":"1307:3:81","nodeType":"YulIdentifier","src":"1307:3:81"},"nativeSrc":"1307:40:81","nodeType":"YulFunctionCall","src":"1307:40:81"},"variableNames":[{"name":"value","nativeSrc":"1298:5:81","nodeType":"YulIdentifier","src":"1298:5:81"}]},{"body":{"nativeSrc":"1379:138:81","nodeType":"YulBlock","src":"1379:138:81","statements":[{"nativeSrc":"1393:114:81","nodeType":"YulAssignment","src":"1393:114:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1410:2:81","nodeType":"YulIdentifier","src":"1410:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1422:1:81","nodeType":"YulLiteral","src":"1422:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"1429:2:81","nodeType":"YulLiteral","src":"1429:2:81","type":"","value":"20"},{"name":"len","nativeSrc":"1433:3:81","nodeType":"YulIdentifier","src":"1433:3:81"}],"functionName":{"name":"sub","nativeSrc":"1425:3:81","nodeType":"YulIdentifier","src":"1425:3:81"},"nativeSrc":"1425:12:81","nodeType":"YulFunctionCall","src":"1425:12:81"}],"functionName":{"name":"shl","nativeSrc":"1418:3:81","nodeType":"YulIdentifier","src":"1418:3:81"},"nativeSrc":"1418:20:81","nodeType":"YulFunctionCall","src":"1418:20:81"},{"arguments":[{"kind":"number","nativeSrc":"1444:26:81","nodeType":"YulLiteral","src":"1444:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"1440:3:81","nodeType":"YulIdentifier","src":"1440:3:81"},"nativeSrc":"1440:31:81","nodeType":"YulFunctionCall","src":"1440:31:81"}],"functionName":{"name":"shl","nativeSrc":"1414:3:81","nodeType":"YulIdentifier","src":"1414:3:81"},"nativeSrc":"1414:58:81","nodeType":"YulFunctionCall","src":"1414:58:81"}],"functionName":{"name":"and","nativeSrc":"1406:3:81","nodeType":"YulIdentifier","src":"1406:3:81"},"nativeSrc":"1406:67:81","nodeType":"YulFunctionCall","src":"1406:67:81"},{"arguments":[{"kind":"number","nativeSrc":"1479:26:81","nodeType":"YulLiteral","src":"1479:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"1475:3:81","nodeType":"YulIdentifier","src":"1475:3:81"},"nativeSrc":"1475:31:81","nodeType":"YulFunctionCall","src":"1475:31:81"}],"functionName":{"name":"and","nativeSrc":"1402:3:81","nodeType":"YulIdentifier","src":"1402:3:81"},"nativeSrc":"1402:105:81","nodeType":"YulFunctionCall","src":"1402:105:81"},"variableNames":[{"name":"value","nativeSrc":"1393:5:81","nodeType":"YulIdentifier","src":"1393:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1362:3:81","nodeType":"YulIdentifier","src":"1362:3:81"},{"kind":"number","nativeSrc":"1367:2:81","nodeType":"YulLiteral","src":"1367:2:81","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"1359:2:81","nodeType":"YulIdentifier","src":"1359:2:81"},"nativeSrc":"1359:11:81","nodeType":"YulFunctionCall","src":"1359:11:81"},"nativeSrc":"1356:161:81","nodeType":"YulIf","src":"1356:161:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"1149:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"1225:5:81","nodeType":"YulTypedName","src":"1225:5:81","type":""},{"name":"len","nativeSrc":"1232:3:81","nodeType":"YulTypedName","src":"1232:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1240:5:81","nodeType":"YulTypedName","src":"1240:5:81","type":""}],"src":"1149:374:81"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 32)\n        value1 := length\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 calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffff))\n        if lt(len, 20)\n        {\n            value := and(and(_1, shl(shl(3, sub(20, len)), not(0xffffffffffffffffffffffff))), not(0xffffffffffffffffffffffff))\n        }\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b5060043610610029575f3560e01c8063570e1a361461002d575b5f5ffd5b61004061003b3660046100e4565b61005c565b6040516001600160a01b03909116815260200160405180910390f35b5f8061006b6014828587610152565b61007491610179565b60601c90505f6100878460148188610152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92018290525084519495509360209350849250905082850182875af190505f519350806100db575f93505b50505092915050565b5f5f602083850312156100f5575f5ffd5b823567ffffffffffffffff81111561010b575f5ffd5b8301601f8101851361011b575f5ffd5b803567ffffffffffffffff811115610131575f5ffd5b856020828401011115610142575f5ffd5b6020919091019590945092505050565b5f5f85851115610160575f5ffd5b8386111561016c575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff1981169060148410156101bf576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b509291505056fea264697066735822122030d5fffd4a3dd2ab69501a2f8fc7f9592e7a9dd8ff73291baa2fdf62374d0ac464736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x570E1A36 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x3B CALLDATASIZE PUSH1 0x4 PUSH2 0xE4 JUMP JUMPDEST PUSH2 0x5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH2 0x6B PUSH1 0x14 DUP3 DUP6 DUP8 PUSH2 0x152 JUMP JUMPDEST PUSH2 0x74 SWAP2 PUSH2 0x179 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP PUSH0 PUSH2 0x87 DUP5 PUSH1 0x14 DUP2 DUP9 PUSH2 0x152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD DUP3 SWAP1 MSTORE POP DUP5 MLOAD SWAP5 SWAP6 POP SWAP4 PUSH1 0x20 SWAP4 POP DUP5 SWAP3 POP SWAP1 POP DUP3 DUP6 ADD DUP3 DUP8 GAS CALL SWAP1 POP PUSH0 MLOAD SWAP4 POP DUP1 PUSH2 0xDB JUMPI PUSH0 SWAP4 POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x11B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x142 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x160 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x16C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x1BF JUMPI PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 PUSH1 0x14 SUB PUSH1 0x3 SHL SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDRESS 0xD5 SELFDESTRUCT REVERT BLOBBASEFEE RETURNDATASIZE 0xD2 0xAB PUSH10 0x501A2F8FC7F9592E7A9D 0xD8 SELFDESTRUCT PUSH20 0x291BAA2FDF62374D0AC464736F6C634300081C00 CALLER ","sourceMap":"205:1026:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576:653;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;769:32:81;;;751:51;;739:2;724:18;576:653:4;;;;;;;;655:14;;715;726:2;655:14;715:8;;:14;:::i;:::-;707:23;;;:::i;:::-;699:32;;;-1:-1:-1;741:25:4;769:13;:8;778:2;769:8;;:13;:::i;:::-;741:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1043:19:4;;741:41;;-1:-1:-1;741:41:4;1099:2;;-1:-1:-1;741:41:4;;-1:-1:-1;1043:19:4;-1:-1:-1;1002:23:4;;;741:41;958:7;935:5;913:202;902:213;;1144:1;1138:8;1128:18;;1170:7;1165:58;;1210:1;1193:19;;1165:58;671:558;;;576:653;;;;:::o;14:586:81:-;84:6;92;145:2;133:9;124:7;120:23;116:32;113:52;;;161:1;158;151:12;113:52;201:9;188:23;234:18;226:6;223:30;220:50;;;266:1;263;256:12;220:50;289:22;;342:4;334:13;;330:27;-1:-1:-1;320:55:81;;371:1;368;361:12;320:55;411:2;398:16;437:18;429:6;426:30;423:50;;;469:1;466;459:12;423:50;514:7;509:2;500:6;496:2;492:15;488:24;485:37;482:57;;;535:1;532;525:12;482:57;566:2;558:11;;;;;588:6;;-1:-1:-1;14:586:81;-1:-1:-1;;;14:586:81:o;813:331::-;918:9;929;971:8;959:10;956:24;953:44;;;993:1;990;983:12;953:44;1022:6;1012:8;1009:20;1006:40;;;1042:1;1039;1032:12;1006:40;-1:-1:-1;;1068:23:81;;;1113:25;;;;;-1:-1:-1;813:331:81:o;1149:374::-;1270:19;;-1:-1:-1;;1307:40:81;;;1367:2;1359:11;;1356:161;;;1479:26;1475:31;1444:26;1440:31;1433:3;1429:2;1425:12;1422:1;1418:20;1414:58;1410:2;1406:67;1402:105;1393:114;;1356:161;;1149:374;;;;:::o"},"methodIdentifiers":{"createSender(bytes)":"570e1a36"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"}],\"name\":\"createSender\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"createSender(bytes)\":{\"params\":{\"initCode\":\"- The initCode value from a UserOp. contains 20 bytes of factory address,                   followed by calldata.\"},\"returns\":{\"sender\":\" - The returned address of the created account, or zero address on failure.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createSender(bytes)\":{\"notice\":\"Call the \\\"initCode\\\" factory to create and return the sender account address.\"}},\"notice\":\"Helper contract for EntryPoint, to call userOp.initCode from a \\\"neutral\\\" address, which is explicitly not the entryPoint itself.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/SenderCreator.sol\":\"SenderCreator\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/SenderCreator.sol\":{\"keccak256\":\"0xeb95afb6e4cf921c1ed105ecb9f549ca46bee57f68acd1d2f4f84607ac0db5c5\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://d2ac91562f1fcabe4809a1b4256895efebcf46f89e08336a6c09ee2d29733238\",\"dweb:/ipfs/QmPsQnPcCzioPwVtUhxkbnwKPC1bnhHSbAwK9GXVpjN3mH\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/core/StakeManager.sol":{"StakeManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakeDelaySec","type":"uint256"}],"name":"StakeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"withdrawTime","type":"uint256"}],"name":"StakeUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"}],"name":"addStake","outputs":[],"stateMutability":"payable","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":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getDepositInfo","outputs":[{"components":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"internalType":"struct IStakeManager.DepositInfo","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","depositTo(address)":"b760faf9","deposits(address)":"fc7e286d","getDepositInfo(address)":"5287ce12","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalDeposit\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unstakeDelaySec\",\"type\":\"uint256\"}],\"name\":\"StakeLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawTime\",\"type\":\"uint256\"}],\"name\":\"StakeUnlocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"}],\"name\":\"addStake\",\"outputs\":[],\"stateMutability\":\"payable\",\"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\":\"account\",\"type\":\"address\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"deposits\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getDepositInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"internalType\":\"struct IStakeManager.DepositInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"withdrawAmount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"addStake(uint32)\":{\"params\":{\"unstakeDelaySec\":\"The new lock duration before the deposit can be withdrawn.\"}},\"balanceOf(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"_0\":\"- The deposit (for gas payment) of the account.\"}},\"depositTo(address)\":{\"params\":{\"account\":\"- The account to add to.\"}},\"getDepositInfo(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"info\":\"  - Full deposit information of given account.\"}},\"withdrawStake(address)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\"}},\"withdrawTo(address,uint256)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\",\"withdrawAmount\":\"- The amount to withdraw.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addStake(uint32)\":{\"notice\":\"Add to the account's stake - amount and delay any pending unstake is first cancelled.\"},\"balanceOf(address)\":{\"notice\":\"Get account balance.\"},\"depositTo(address)\":{\"notice\":\"Add to the deposit of the given account.\"},\"deposits(address)\":{\"notice\":\"maps paymaster to their deposits and stakes\"},\"getDepositInfo(address)\":{\"notice\":\"Get deposit info.\"},\"unlockStake()\":{\"notice\":\"Attempt to unlock the stake. The value can be withdrawn (using withdrawStake) after the unstake delay.\"},\"withdrawStake(address)\":{\"notice\":\"Withdraw from the (unlocked) stake. Must first call unlockStake and wait for the unstakeDelay to pass.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Withdraw from the deposit.\"}},\"notice\":\"Manage deposits and stakes. Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account). Stake is value locked for at least \\\"unstakeDelay\\\" by a paymaster.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/StakeManager.sol\":\"StakeManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/StakeManager.sol\":{\"keccak256\":\"0x673eb19600058d8642605ca409c9e1d4cab13735564b856270b92c330ffb1b8d\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://06599c57c7075ee8eb5f1710fccca3eb322876b968ec271e1fb34af41510ab2c\",\"dweb:/ipfs/QmVsDEjmZYtzgXa4AYKxbQEYQVh6NBq8GmFJCariBUqK4G\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2565,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"deposits","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(DepositInfo)3673_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_struct(DepositInfo)3673_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct IStakeManager.DepositInfo)","numberOfBytes":"32","value":"t_struct(DepositInfo)3673_storage"},"t_struct(DepositInfo)3673_storage":{"encoding":"inplace","label":"struct IStakeManager.DepositInfo","members":[{"astId":3664,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"deposit","offset":0,"slot":"0","type":"t_uint256"},{"astId":3666,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"staked","offset":0,"slot":"1","type":"t_bool"},{"astId":3668,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"stake","offset":1,"slot":"1","type":"t_uint112"},{"astId":3670,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"unstakeDelaySec","offset":15,"slot":"1","type":"t_uint32"},{"astId":3672,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"withdrawTime","offset":19,"slot":"1","type":"t_uint48"}],"numberOfBytes":"64"},"t_uint112":{"encoding":"inplace","label":"uint112","numberOfBytes":"14"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"}}}}},"@account-abstraction/contracts/core/UserOperationLib.sol":{"UserOperationLib":{"abi":[{"inputs":[],"name":"PAYMASTER_DATA_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMASTER_POSTOP_GAS_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMASTER_VALIDATION_GAS_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60a76032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106046575f3560e01c806325093e1b14604a578063b29a8ff4146063578063ede3150214606a575b5f5ffd5b6051602481565b60405190815260200160405180910390f35b6051601481565b605160348156fea26469706673582212205bde5ac34618b02218d2f871b854fe97e045cf0ddbd86c12a9fcbc459307e4ff64736f6c634300081c0033","opcodes":"PUSH1 0xA7 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x46 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x25093E1B EQ PUSH1 0x4A JUMPI DUP1 PUSH4 0xB29A8FF4 EQ PUSH1 0x63 JUMPI DUP1 PUSH4 0xEDE31502 EQ PUSH1 0x6A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x51 PUSH1 0x24 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x51 PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x51 PUSH1 0x34 DUP2 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0xDE GAS 0xC3 CHAINID XOR 0xB0 0x22 XOR 0xD2 0xF8 PUSH18 0xB854FE97E045CF0DDBD86C12A9FCBC459307 0xE4 SELFDESTRUCT PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"282:4714:6:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;282:4714:6;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@PAYMASTER_DATA_OFFSET_2977":{"entryPoint":null,"id":2977,"parameterSlots":0,"returnSlots":0},"@PAYMASTER_POSTOP_GAS_OFFSET_2974":{"entryPoint":null,"id":2974,"parameterSlots":0,"returnSlots":0},"@PAYMASTER_VALIDATION_GAS_OFFSET_2971":{"entryPoint":null,"id":2971,"parameterSlots":0,"returnSlots":0},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:201:81","nodeType":"YulBlock","src":"0:201:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"123:76:81","nodeType":"YulBlock","src":"123:76:81","statements":[{"nativeSrc":"133:26:81","nodeType":"YulAssignment","src":"133:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"145:9:81","nodeType":"YulIdentifier","src":"145:9:81"},{"kind":"number","nativeSrc":"156:2:81","nodeType":"YulLiteral","src":"156:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"141:3:81","nodeType":"YulIdentifier","src":"141:3:81"},"nativeSrc":"141:18:81","nodeType":"YulFunctionCall","src":"141:18:81"},"variableNames":[{"name":"tail","nativeSrc":"133:4:81","nodeType":"YulIdentifier","src":"133:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"175:9:81","nodeType":"YulIdentifier","src":"175:9:81"},{"name":"value0","nativeSrc":"186:6:81","nodeType":"YulIdentifier","src":"186:6:81"}],"functionName":{"name":"mstore","nativeSrc":"168:6:81","nodeType":"YulIdentifier","src":"168:6:81"},"nativeSrc":"168:25:81","nodeType":"YulFunctionCall","src":"168:25:81"},"nativeSrc":"168:25:81","nodeType":"YulExpressionStatement","src":"168:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed","nativeSrc":"14:185:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"92:9:81","nodeType":"YulTypedName","src":"92:9:81","type":""},{"name":"value0","nativeSrc":"103:6:81","nodeType":"YulTypedName","src":"103:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"114:4:81","nodeType":"YulTypedName","src":"114:4:81","type":""}],"src":"14:185:81"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600436106046575f3560e01c806325093e1b14604a578063b29a8ff4146063578063ede3150214606a575b5f5ffd5b6051602481565b60405190815260200160405180910390f35b6051601481565b605160348156fea26469706673582212205bde5ac34618b02218d2f871b854fe97e045cf0ddbd86c12a9fcbc459307e4ff64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x46 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x25093E1B EQ PUSH1 0x4A JUMPI DUP1 PUSH4 0xB29A8FF4 EQ PUSH1 0x63 JUMPI DUP1 PUSH4 0xEDE31502 EQ PUSH1 0x6A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x51 PUSH1 0x24 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x51 PUSH1 0x14 DUP2 JUMP JUMPDEST PUSH1 0x51 PUSH1 0x34 DUP2 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPDEST 0xDE GAS 0xC3 CHAINID XOR 0xB0 0x22 XOR 0xD2 0xF8 PUSH18 0xB854FE97E045CF0DDBD86C12A9FCBC459307 0xE4 SELFDESTRUCT PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"282:4714:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380:56;;434:2;380:56;;;;;168:25:81;;;156:2;141:18;380:56:6;;;;;;;314:60;;372:2;314:60;;442:50;;490:2;442:50;"},"methodIdentifiers":{"PAYMASTER_DATA_OFFSET()":"ede31502","PAYMASTER_POSTOP_GAS_OFFSET()":"25093e1b","PAYMASTER_VALIDATION_GAS_OFFSET()":"b29a8ff4"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"PAYMASTER_DATA_OFFSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PAYMASTER_POSTOP_GAS_OFFSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PAYMASTER_VALIDATION_GAS_OFFSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Utility functions helpful when working with UserOperation structs.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/UserOperationLib.sol\":\"UserOperationLib\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IAccount.sol":{"IAccount":{"abi":[{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IAccount.sol\":\"IAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IAccountExecute.sol":{"IAccountExecute":{"abi":[{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"}],"name":"executeUserOp","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"executeUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32)":"8dd7712f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"}],\"name\":\"executeUserOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"executeUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32)\":{\"params\":{\"userOp\":\"- The operation that was just validated.\",\"userOpHash\":\"- Hash of the user's request data.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"executeUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32)\":{\"notice\":\"Account may implement this execute method. passing this methodSig at the beginning of callData will cause the entryPoint to pass the full UserOp (and hash) to the account. The account should skip the methodSig, and use the callData (and optionally, other UserOp fields)\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IAccountExecute.sol\":\"IAccountExecute\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAccountExecute.sol\":{\"keccak256\":\"0xd3dc32dde1add1fb6377f939ceff6be31c2e21343522311f7b88db666be9ee6c\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://5b8f065171bd32e23b306868189c730f849ce6147f753c59e396e7afcf384577\",\"dweb:/ipfs/QmZpDRNEZ9YNgGgyLQo5yM4bB1FNbtnfDABsChbgSQKXUh\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"IAggregator":{"abi":[{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"}],"name":"aggregateSignatures","outputs":[{"internalType":"bytes","name":"aggregatedSignature","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateSignatures","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"}],"name":"validateUserOpSignature","outputs":[{"internalType":"bytes","name":"sigForUserOp","type":"bytes"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"aggregateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[])":"ae574a43","validateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],bytes)":"2dd81133","validateUserOpSignature((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))":"062a422b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"}],\"name\":\"aggregateSignatures\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"aggregatedSignature\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"name\":\"validateSignatures\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"}],\"name\":\"validateUserOpSignature\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"sigForUserOp\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"aggregateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[])\":{\"params\":{\"userOps\":\"- Array of UserOperations to collect the signatures from.\"},\"returns\":{\"aggregatedSignature\":\"- The aggregated signature.\"}},\"validateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],bytes)\":{\"params\":{\"signature\":\"- The aggregated signature.\",\"userOps\":\"- Array of UserOperations to validate the signature for.\"}},\"validateUserOpSignature((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"params\":{\"userOp\":\"- The userOperation received from the user.\"},\"returns\":{\"sigForUserOp\":\"- The value to put into the signature field of the userOp when calling handleOps.                        (usually empty, unless account and aggregator support some kind of \\\"multisig\\\".\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"aggregateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[])\":{\"notice\":\"Aggregate multiple signatures into a single value. This method is called off-chain to calculate the signature to pass with handleOps() bundler MAY use optimized custom code perform this aggregation.\"},\"validateSignatures((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],bytes)\":{\"notice\":\"Validate aggregated signature. Revert if the aggregated signature does not match the given list of operations.\"},\"validateUserOpSignature((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"notice\":\"Validate signature of a single userOp. This method should be called by bundler after EntryPointSimulation.simulateValidation() returns the aggregator this account uses. First it validates the signature over the userOp. Then it returns data to be used when creating the handleOps.\"}},\"notice\":\"Aggregated Signatures validator.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IAggregator.sol\":\"IAggregator\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"IEntryPoint":{"abi":[{"inputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"bytes","name":"ret","type":"bytes"}],"name":"DelegateAndRevert","type":"error"},{"inputs":[{"internalType":"uint256","name":"opIndex","type":"uint256"},{"internalType":"string","name":"reason","type":"string"}],"name":"FailedOp","type":"error"},{"inputs":[{"internalType":"uint256","name":"opIndex","type":"uint256"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bytes","name":"inner","type":"bytes"}],"name":"FailedOpWithRevert","type":"error"},{"inputs":[{"internalType":"bytes","name":"returnData","type":"bytes"}],"name":"PostOpReverted","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderAddressResult","type":"error"},{"inputs":[{"internalType":"address","name":"aggregator","type":"address"}],"name":"SignatureValidationFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"factory","type":"address"},{"indexed":false,"internalType":"address","name":"paymaster","type":"address"}],"name":"AccountDeployed","type":"event"},{"anonymous":false,"inputs":[],"name":"BeforeExecution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"revertReason","type":"bytes"}],"name":"PostOpRevertReason","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"aggregator","type":"address"}],"name":"SignatureAggregatorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakeDelaySec","type":"uint256"}],"name":"StakeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"withdrawTime","type":"uint256"}],"name":"StakeUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"paymaster","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bool","name":"success","type":"bool"},{"indexed":false,"internalType":"uint256","name":"actualGasCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"actualGasUsed","type":"uint256"}],"name":"UserOperationEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"UserOperationPrefundTooLow","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"revertReason","type":"bytes"}],"name":"UserOperationRevertReason","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint32","name":"_unstakeDelaySec","type":"uint32"}],"name":"addStake","outputs":[],"stateMutability":"payable","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":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateAndRevert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getDepositInfo","outputs":[{"components":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"internalType":"struct IStakeManager.DepositInfo","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint192","name":"key","type":"uint192"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"initCode","type":"bytes"}],"name":"getSenderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"}],"name":"getUserOpHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"userOps","type":"tuple[]"},{"internalType":"contract IAggregator","name":"aggregator","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct IEntryPoint.UserOpsPerAggregator[]","name":"opsPerAggregator","type":"tuple[]"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"handleAggregatedOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation[]","name":"ops","type":"tuple[]"},{"internalType":"address payable","name":"beneficiary","type":"address"}],"name":"handleOps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint192","name":"key","type":"uint192"}],"name":"incrementNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","delegateAndRevert(address,bytes)":"850aaf62","depositTo(address)":"b760faf9","getDepositInfo(address)":"5287ce12","getNonce(address,uint192)":"35567e1a","getSenderAddress(bytes)":"9b249f69","getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))":"22cdde4c","handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)":"dbed18e0","handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)":"765e827f","incrementNonce(uint192)":"0bd28e3b","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"success\",\"type\":\"bool\"},{\"internalType\":\"bytes\",\"name\":\"ret\",\"type\":\"bytes\"}],\"name\":\"DelegateAndRevert\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"opIndex\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"}],\"name\":\"FailedOp\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"opIndex\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"reason\",\"type\":\"string\"},{\"internalType\":\"bytes\",\"name\":\"inner\",\"type\":\"bytes\"}],\"name\":\"FailedOpWithRevert\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"returnData\",\"type\":\"bytes\"}],\"name\":\"PostOpReverted\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"SenderAddressResult\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"aggregator\",\"type\":\"address\"}],\"name\":\"SignatureValidationFailed\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"factory\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"}],\"name\":\"AccountDeployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"BeforeExecution\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalDeposit\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"revertReason\",\"type\":\"bytes\"}],\"name\":\"PostOpRevertReason\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"aggregator\",\"type\":\"address\"}],\"name\":\"SignatureAggregatorChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unstakeDelaySec\",\"type\":\"uint256\"}],\"name\":\"StakeLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawTime\",\"type\":\"uint256\"}],\"name\":\"StakeUnlocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"success\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"actualGasUsed\",\"type\":\"uint256\"}],\"name\":\"UserOperationEvent\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"name\":\"UserOperationPrefundTooLow\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"revertReason\",\"type\":\"bytes\"}],\"name\":\"UserOperationRevertReason\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_unstakeDelaySec\",\"type\":\"uint32\"}],\"name\":\"addStake\",\"outputs\":[],\"stateMutability\":\"payable\",\"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\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"delegateAndRevert\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getDepositInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"internalType\":\"struct IStakeManager.DepositInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"}],\"name\":\"getSenderAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"}],\"name\":\"getUserOpHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"userOps\",\"type\":\"tuple[]\"},{\"internalType\":\"contract IAggregator\",\"name\":\"aggregator\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct IEntryPoint.UserOpsPerAggregator[]\",\"name\":\"opsPerAggregator\",\"type\":\"tuple[]\"},{\"internalType\":\"address payable\",\"name\":\"beneficiary\",\"type\":\"address\"}],\"name\":\"handleAggregatedOps\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation[]\",\"name\":\"ops\",\"type\":\"tuple[]\"},{\"internalType\":\"address payable\",\"name\":\"beneficiary\",\"type\":\"address\"}],\"name\":\"handleOps\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"incrementNonce\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"withdrawAmount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"FailedOp(uint256,string)\":[{\"params\":{\"opIndex\":\"- Index into the array of ops to the failed one (in simulateValidation, this is always zero).\",\"reason\":\"- Revert reason. The string starts with a unique code \\\"AAmn\\\",                  where \\\"m\\\" is \\\"1\\\" for factory, \\\"2\\\" for account and \\\"3\\\" for paymaster issues,                  so a failure can be attributed to the correct entity.\"}}],\"FailedOpWithRevert(uint256,string,bytes)\":[{\"details\":\"note that inner is truncated to 2048 bytes\",\"params\":{\"inner\":\"- data from inner cought revert reason\",\"opIndex\":\"- Index into the array of ops to the failed one (in simulateValidation, this is always zero).\",\"reason\":\"- Revert reason. see FailedOp(uint256,string), above\"}}],\"SignatureValidationFailed(address)\":[{\"params\":{\"aggregator\":\"The aggregator that failed to verify the signature\"}}]},\"events\":{\"AccountDeployed(bytes32,address,address,address)\":{\"params\":{\"factory\":\"- The factory used to deploy this account (in the initCode)\",\"paymaster\":\"- The paymaster used by this UserOp\",\"sender\":\"- The account that is deployed\",\"userOpHash\":\"- The userOp that deployed this account. UserOperationEvent will follow.\"}},\"PostOpRevertReason(bytes32,address,uint256,bytes)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"revertReason\":\"- The return bytes from the (reverted) call to \\\"callData\\\".\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}},\"SignatureAggregatorChanged(address)\":{\"params\":{\"aggregator\":\"- The aggregator used for the following UserOperationEvents.\"}},\"UserOperationPrefundTooLow(bytes32,address,uint256)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}},\"UserOperationRevertReason(bytes32,address,uint256,bytes)\":{\"params\":{\"nonce\":\"- The nonce used in the request.\",\"revertReason\":\"- The return bytes from the (reverted) call to \\\"callData\\\".\",\"sender\":\"- The sender of this request.\",\"userOpHash\":\"- The request unique identifier.\"}}},\"kind\":\"dev\",\"methods\":{\"addStake(uint32)\":{\"params\":{\"_unstakeDelaySec\":\"- The new lock duration before the deposit can be withdrawn.\"}},\"balanceOf(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"_0\":\"- The deposit (for gas payment) of the account.\"}},\"delegateAndRevert(address,bytes)\":{\"details\":\"calling this method, the EntryPoint will make a delegatecall to the given data, and report (via revert) the result.  The method always revert, so is only useful off-chain for dry run calls, in cases where state-override to replace  actual EntryPoint code is less convenient.\",\"params\":{\"data\":\"data to pass to target in a delegatecall\",\"target\":\"a target contract to make a delegatecall from entrypoint\"}},\"depositTo(address)\":{\"params\":{\"account\":\"- The account to add to.\"}},\"getDepositInfo(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"info\":\"  - Full deposit information of given account.\"}},\"getNonce(address,uint192)\":{\"params\":{\"key\":\"the high 192 bit of the nonce\",\"sender\":\"the account address\"},\"returns\":{\"nonce\":\"a full nonce to pass for next UserOp with this sender.\"}},\"getSenderAddress(bytes)\":{\"params\":{\"initCode\":\"- The constructor code to be passed into the UserOperation.\"}},\"getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"params\":{\"userOp\":\"- The user operation to generate the request ID for.\"},\"returns\":{\"_0\":\"hash the hash of this UserOperation\"}},\"handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)\":{\"params\":{\"beneficiary\":\"- The address to receive the fees.\",\"opsPerAggregator\":\"- The operations to execute, grouped by aggregator (or address(0) for no-aggregator accounts).\"}},\"handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)\":{\"params\":{\"beneficiary\":\"- The address to receive the fees.\",\"ops\":\"- The operations to execute.\"}},\"withdrawStake(address)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\"}},\"withdrawTo(address,uint256)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\",\"withdrawAmount\":\"- The amount to withdraw.\"}}},\"version\":1},\"userdoc\":{\"errors\":{\"FailedOp(uint256,string)\":[{\"notice\":\"A custom revert error of handleOps, to identify the offending op. Should be caught in off-chain handleOps simulation and not happen on-chain. Useful for mitigating DoS attempts against batchers or for troubleshooting of factory/account/paymaster reverts. NOTE: If simulateValidation passes successfully, there should be no reason for handleOps to fail on it.\"}],\"FailedOpWithRevert(uint256,string,bytes)\":[{\"notice\":\"A custom revert error of handleOps, to report a revert by account or paymaster.\"}],\"SignatureValidationFailed(address)\":[{\"notice\":\"Error case when a signature aggregator fails to verify the aggregated signature it had created.\"}]},\"events\":{\"AccountDeployed(bytes32,address,address,address)\":{\"notice\":\"Account \\\"sender\\\" was deployed.\"},\"BeforeExecution()\":{\"notice\":\"An event emitted by handleOps(), before starting the execution loop. Any event emitted before this event, is part of the validation.\"},\"PostOpRevertReason(bytes32,address,uint256,bytes)\":{\"notice\":\"An event emitted if the UserOperation Paymaster's \\\"postOp\\\" call reverted with non-zero length.\"},\"SignatureAggregatorChanged(address)\":{\"notice\":\"Signature aggregator used by the following UserOperationEvents within this bundle.\"},\"UserOperationPrefundTooLow(bytes32,address,uint256)\":{\"notice\":\"UserOp consumed more than prefund. The UserOperation is reverted, and no refund is made.\"},\"UserOperationRevertReason(bytes32,address,uint256,bytes)\":{\"notice\":\"An event emitted if the UserOperation \\\"callData\\\" reverted with non-zero length.\"}},\"kind\":\"user\",\"methods\":{\"addStake(uint32)\":{\"notice\":\"Add to the account's stake - amount and delay any pending unstake is first cancelled.\"},\"balanceOf(address)\":{\"notice\":\"Get account balance.\"},\"delegateAndRevert(address,bytes)\":{\"notice\":\"Helper method for dry-run testing.\"},\"depositTo(address)\":{\"notice\":\"Add to the deposit of the given account.\"},\"getDepositInfo(address)\":{\"notice\":\"Get deposit info.\"},\"getNonce(address,uint192)\":{\"notice\":\"Return the next nonce for this sender. Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop) But UserOp with different keys can come with arbitrary order.\"},\"getSenderAddress(bytes)\":{\"notice\":\"Get counterfactual sender address. Calculate the sender contract address that will be generated by the initCode and salt in the UserOperation. This method always revert, and returns the address in SenderAddressResult error\"},\"getUserOpHash((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes))\":{\"notice\":\"Generate a request Id - unique identifier for this request. The request ID is a hash over the content of the userOp (except the signature), the entrypoint and the chainid.\"},\"handleAggregatedOps(((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address,bytes)[],address)\":{\"notice\":\"Execute a batch of UserOperation with Aggregators\"},\"handleOps((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes)[],address)\":{\"notice\":\"Execute a batch of UserOperations. No signature aggregator is used. If any account requires an aggregator (that is, it returned an aggregator when performing simulateValidation), then handleAggregatedOps() must be used instead.\"},\"incrementNonce(uint192)\":{\"notice\":\"Manually increment the nonce of the sender. This method is exposed just for completeness.. Account does NOT need to call it, neither during validation, nor elsewhere, as the EntryPoint will update the nonce regardless. Possible use-case is call it with various keys to \\\"initialize\\\" their nonces to one, so that future UserOperations will not pay extra for the first transaction with a given key.\"},\"unlockStake()\":{\"notice\":\"Attempt to unlock the stake. The value can be withdrawn (using withdrawStake) after the unstake delay.\"},\"withdrawStake(address)\":{\"notice\":\"Withdraw from the (unlocked) stake. Must first call unlockStake and wait for the unstakeDelay to pass.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Withdraw from the deposit.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":\"IEntryPoint\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"INonceManager":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint192","name":"key","type":"uint192"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint192","name":"key","type":"uint192"}],"name":"incrementNonce","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getNonce(address,uint192)":"35567e1a","incrementNonce(uint192)":"0bd28e3b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint192\",\"name\":\"key\",\"type\":\"uint192\"}],\"name\":\"incrementNonce\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getNonce(address,uint192)\":{\"params\":{\"key\":\"the high 192 bit of the nonce\",\"sender\":\"the account address\"},\"returns\":{\"nonce\":\"a full nonce to pass for next UserOp with this sender.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"getNonce(address,uint192)\":{\"notice\":\"Return the next nonce for this sender. Within a given key, the nonce values are sequenced (starting with zero, and incremented by one on each userop) But UserOp with different keys can come with arbitrary order.\"},\"incrementNonce(uint192)\":{\"notice\":\"Manually increment the nonce of the sender. This method is exposed just for completeness.. Account does NOT need to call it, neither during validation, nor elsewhere, as the EntryPoint will update the nonce regardless. Possible use-case is call it with various keys to \\\"initialize\\\" their nonces to one, so that future UserOperations will not pay extra for the first transaction with a given key.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/INonceManager.sol\":\"INonceManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IPaymaster.sol":{"IPaymaster":{"abi":[{"inputs":[{"internalType":"enum IPaymaster.PostOpMode","name":"mode","type":"uint8"},{"internalType":"bytes","name":"context","type":"bytes"},{"internalType":"uint256","name":"actualGasCost","type":"uint256"},{"internalType":"uint256","name":"actualUserOpFeePerGas","type":"uint256"}],"name":"postOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"maxCost","type":"uint256"}],"name":"validatePaymasterUserOp","outputs":[{"internalType":"bytes","name":"context","type":"bytes"},{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"postOp(uint8,bytes,uint256,uint256)":"7c627b21","validatePaymasterUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"52b7512c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"enum IPaymaster.PostOpMode\",\"name\":\"mode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"context\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"actualUserOpFeePerGas\",\"type\":\"uint256\"}],\"name\":\"postOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"maxCost\",\"type\":\"uint256\"}],\"name\":\"validatePaymasterUserOp\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"context\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"postOp(uint8,bytes,uint256,uint256)\":{\"params\":{\"actualGasCost\":\"- Actual gas used so far (without this postOp call).\",\"actualUserOpFeePerGas\":\"- the gas price this UserOp pays. This value is based on the UserOp's maxFeePerGas                        and maxPriorityFee (and basefee)                        It is not the same as tx.gasprice, which is what the bundler pays.\",\"context\":\"- The context value returned by validatePaymasterUserOp\",\"mode\":\"- Enum with the following options:                        opSucceeded - User operation succeeded.                        opReverted  - User op reverted. The paymaster still has to pay for gas.                        postOpReverted - never passed in a call to postOp().\"}},\"validatePaymasterUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"params\":{\"maxCost\":\"- The maximum cost of this transaction (based on maximum gas and gas price from userOp).\",\"userOp\":\"- The user operation.\",\"userOpHash\":\"- Hash of the user's request data.\"},\"returns\":{\"context\":\"       - Value to send to a postOp. Zero length to signify postOp is not required.\",\"validationData\":\"- Signature and time-range of this operation, encoded the same as the return                          value of validateUserOperation.                          <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                                    other values are invalid for paymaster.                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \\\"indefinite\\\"                          <6-byte> validAfter - first timestamp this operation is valid                          Note that the validation code cannot use block.timestamp (or block.number) directly.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"postOp(uint8,bytes,uint256,uint256)\":{\"notice\":\"Post-operation handler. Must verify sender is the entryPoint.\"},\"validatePaymasterUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Payment validation: check if paymaster agrees to pay. Must verify sender is the entryPoint. Revert to reject this request. Note that bundlers will reject this method if it changes the state, unless the paymaster is trusted (whitelisted). The paymaster pre-pays using its deposit, and receive back a refund after the postOp method returns.\"}},\"notice\":\"The interface exposed by a paymaster contract, who agrees to pay the gas for user's operations. A paymaster must hold a stake to cover the required entrypoint stake and also the gas for the transaction.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IPaymaster.sol\":\"IPaymaster\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IPaymaster.sol\":{\"keccak256\":\"0x49d8dbf8a85b006bcd89bbc40e4e9e113997cc016007de85263bdae70572d07f\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://bc0d83804c1b795d5c216b3518cd176c48f90db28550f267cbd89746d6b476c8\",\"dweb:/ipfs/QmNdCm4c6hnt7f6Q8q21QjtCNZWWRUaMVEYnQHEv68VnKt\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"IStakeManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalStaked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakeDelaySec","type":"uint256"}],"name":"StakeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"withdrawTime","type":"uint256"}],"name":"StakeUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"uint32","name":"_unstakeDelaySec","type":"uint32"}],"name":"addStake","outputs":[],"stateMutability":"payable","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":"account","type":"address"}],"name":"depositTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getDepositInfo","outputs":[{"components":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"uint112","name":"stake","type":"uint112"},{"internalType":"uint32","name":"unstakeDelaySec","type":"uint32"},{"internalType":"uint48","name":"withdrawTime","type":"uint48"}],"internalType":"struct IStakeManager.DepositInfo","name":"info","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","depositTo(address)":"b760faf9","getDepositInfo(address)":"5287ce12","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalDeposit\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unstakeDelaySec\",\"type\":\"uint256\"}],\"name\":\"StakeLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawTime\",\"type\":\"uint256\"}],\"name\":\"StakeUnlocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_unstakeDelaySec\",\"type\":\"uint32\"}],\"name\":\"addStake\",\"outputs\":[],\"stateMutability\":\"payable\",\"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\":\"account\",\"type\":\"address\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getDepositInfo\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deposit\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"staked\",\"type\":\"bool\"},{\"internalType\":\"uint112\",\"name\":\"stake\",\"type\":\"uint112\"},{\"internalType\":\"uint32\",\"name\":\"unstakeDelaySec\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"withdrawTime\",\"type\":\"uint48\"}],\"internalType\":\"struct IStakeManager.DepositInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"withdrawAmount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"addStake(uint32)\":{\"params\":{\"_unstakeDelaySec\":\"- The new lock duration before the deposit can be withdrawn.\"}},\"balanceOf(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"_0\":\"- The deposit (for gas payment) of the account.\"}},\"depositTo(address)\":{\"params\":{\"account\":\"- The account to add to.\"}},\"getDepositInfo(address)\":{\"params\":{\"account\":\"- The account to query.\"},\"returns\":{\"info\":\"  - Full deposit information of given account.\"}},\"withdrawStake(address)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\"}},\"withdrawTo(address,uint256)\":{\"params\":{\"withdrawAddress\":\"- The address to send withdrawn value.\",\"withdrawAmount\":\"- The amount to withdraw.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addStake(uint32)\":{\"notice\":\"Add to the account's stake - amount and delay any pending unstake is first cancelled.\"},\"balanceOf(address)\":{\"notice\":\"Get account balance.\"},\"depositTo(address)\":{\"notice\":\"Add to the deposit of the given account.\"},\"getDepositInfo(address)\":{\"notice\":\"Get deposit info.\"},\"unlockStake()\":{\"notice\":\"Attempt to unlock the stake. The value can be withdrawn (using withdrawStake) after the unstake delay.\"},\"withdrawStake(address)\":{\"notice\":\"Withdraw from the (unlocked) stake. Must first call unlockStake and wait for the unstakeDelay to pass.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Withdraw from the deposit.\"}},\"notice\":\"Manage deposits and stakes. Deposit is just a balance used to pay for UserOperations (either by a paymaster or an account). Stake is value locked for at least \\\"unstakeDelay\\\" by the staked entity.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":\"IStakeManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/utils/Exec.sol":{"Exec":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220647b6aa782cba4e753b036c51025e0f739951f80d1da50741fff5d1259799b0664736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x7B6AA782CB LOG4 0xE7 MSTORE8 0xB0 CALLDATASIZE 0xC5 LT 0x25 0xE0 0xF7 CODECOPY SWAP6 0x1F DUP1 0xD1 0xDA POP PUSH21 0x1FFF5D1259799B0664736F6C634300081C00330000 ","sourceMap":"203:1839:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;203:1839:15;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220647b6aa782cba4e753b036c51025e0f739951f80d1da50741fff5d1259799b0664736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x7B6AA782CB LOG4 0xE7 MSTORE8 0xB0 CALLDATASIZE 0xC5 LT 0x25 0xE0 0xF7 CODECOPY SWAP6 0x1F DUP1 0xD1 0xDA POP PUSH21 0x1FFF5D1259799B0664736F6C634300081C00330000 ","sourceMap":"203:1839:15:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Utility functions helpful when making different kinds of contract calls in Solidity.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/utils/Exec.sol\":\"Exec\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/utils/Exec.sol\":{\"keccak256\":\"0x86b1b1cd11158dddb9d381040c57fdc643c74b5e4eed3e7e036f32452672ad74\",\"license\":\"LGPL-3.0-only\",\"urls\":[\"bzz-raw://ad88663b6c76df73cf09a272cf333d038df7bb4c51281284b572bf9b46e1cd77\",\"dweb:/ipfs/QmVKxYF8avyPBtqejVhFCM2CuHsfpsCh7TsPqkBLtrgwJQ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"ERC2771ForwarderAccount":{"abi":[{"inputs":[{"internalType":"contract IEntryPoint","name":"anEntryPoint","type":"address"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address[]","name":"executors","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"CanCallOnlyIfTrustedForwarder","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"RequiredEntryPointOrExecutor","type":"error"},{"inputs":[],"name":"UserOpSignerNotSet","type":"error"},{"inputs":[],"name":"WrongArrayLength","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addDeposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"entryPoint","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"func","type":"bytes"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"dest","type":"address[]"},{"internalType":"uint256[]","name":"value","type":"uint256[]"},{"internalType":"bytes[]","name":"func","type":"bytes[]"}],"name":"executeBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"initCode","type":"bytes"},{"internalType":"bytes","name":"callData","type":"bytes"},{"internalType":"bytes32","name":"accountGasLimits","type":"bytes32"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"bytes32","name":"gasFees","type":"bytes32"},{"internalType":"bytes","name":"paymasterAndData","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct PackedUserOperation","name":"userOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"missingAccountFunds","type":"uint256"}],"name":"validateUserOp","outputs":[{"internalType":"uint256","name":"validationData","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawDepositTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_3947":{"entryPoint":null,"id":3947,"parameterSlots":3,"returnSlots":0},"@_grantRole_7028":{"entryPoint":172,"id":7028,"parameterSlots":2,"returnSlots":1},"@_msgSender_12592":{"entryPoint":null,"id":12592,"parameterSlots":0,"returnSlots":1},"@hasRole_6852":{"entryPoint":null,"id":6852,"parameterSlots":2,"returnSlots":1},"abi_decode_address_fromMemory":{"entryPoint":364,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_contract$_IEntryPoint_$3566t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory":{"entryPoint":400,"id":null,"parameterSlots":2,"returnSlots":3},"panic_error_0x32":{"entryPoint":642,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":380,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IEntryPoint":{"entryPoint":341,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:2028:81","nodeType":"YulBlock","src":"0:2028:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"72:86:81","nodeType":"YulBlock","src":"72:86:81","statements":[{"body":{"nativeSrc":"136:16:81","nodeType":"YulBlock","src":"136:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:81","nodeType":"YulLiteral","src":"145:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:81","nodeType":"YulLiteral","src":"148:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:81","nodeType":"YulIdentifier","src":"138:6:81"},"nativeSrc":"138:12:81","nodeType":"YulFunctionCall","src":"138:12:81"},"nativeSrc":"138:12:81","nodeType":"YulExpressionStatement","src":"138:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:81","nodeType":"YulIdentifier","src":"95:5:81"},{"arguments":[{"name":"value","nativeSrc":"106:5:81","nodeType":"YulIdentifier","src":"106:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:81","nodeType":"YulLiteral","src":"121:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:81","nodeType":"YulLiteral","src":"126:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:81","nodeType":"YulIdentifier","src":"117:3:81"},"nativeSrc":"117:11:81","nodeType":"YulFunctionCall","src":"117:11:81"},{"kind":"number","nativeSrc":"130:1:81","nodeType":"YulLiteral","src":"130:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:81","nodeType":"YulIdentifier","src":"113:3:81"},"nativeSrc":"113:19:81","nodeType":"YulFunctionCall","src":"113:19:81"}],"functionName":{"name":"and","nativeSrc":"102:3:81","nodeType":"YulIdentifier","src":"102:3:81"},"nativeSrc":"102:31:81","nodeType":"YulFunctionCall","src":"102:31:81"}],"functionName":{"name":"eq","nativeSrc":"92:2:81","nodeType":"YulIdentifier","src":"92:2:81"},"nativeSrc":"92:42:81","nodeType":"YulFunctionCall","src":"92:42:81"}],"functionName":{"name":"iszero","nativeSrc":"85:6:81","nodeType":"YulIdentifier","src":"85:6:81"},"nativeSrc":"85:50:81","nodeType":"YulFunctionCall","src":"85:50:81"},"nativeSrc":"82:70:81","nodeType":"YulIf","src":"82:70:81"}]},"name":"validator_revert_contract_IEntryPoint","nativeSrc":"14:144:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:81","nodeType":"YulTypedName","src":"61:5:81","type":""}],"src":"14:144:81"},{"body":{"nativeSrc":"223:91:81","nodeType":"YulBlock","src":"223:91:81","statements":[{"nativeSrc":"233:22:81","nodeType":"YulAssignment","src":"233:22:81","value":{"arguments":[{"name":"offset","nativeSrc":"248:6:81","nodeType":"YulIdentifier","src":"248:6:81"}],"functionName":{"name":"mload","nativeSrc":"242:5:81","nodeType":"YulIdentifier","src":"242:5:81"},"nativeSrc":"242:13:81","nodeType":"YulFunctionCall","src":"242:13:81"},"variableNames":[{"name":"value","nativeSrc":"233:5:81","nodeType":"YulIdentifier","src":"233:5:81"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"302:5:81","nodeType":"YulIdentifier","src":"302:5:81"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"264:37:81","nodeType":"YulIdentifier","src":"264:37:81"},"nativeSrc":"264:44:81","nodeType":"YulFunctionCall","src":"264:44:81"},"nativeSrc":"264:44:81","nodeType":"YulExpressionStatement","src":"264:44:81"}]},"name":"abi_decode_address_fromMemory","nativeSrc":"163:151:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"202:6:81","nodeType":"YulTypedName","src":"202:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"213:5:81","nodeType":"YulTypedName","src":"213:5:81","type":""}],"src":"163:151:81"},{"body":{"nativeSrc":"351:95:81","nodeType":"YulBlock","src":"351:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:81","nodeType":"YulLiteral","src":"368:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"375:3:81","nodeType":"YulLiteral","src":"375:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"380:10:81","nodeType":"YulLiteral","src":"380:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"371:3:81","nodeType":"YulIdentifier","src":"371:3:81"},"nativeSrc":"371:20:81","nodeType":"YulFunctionCall","src":"371:20:81"}],"functionName":{"name":"mstore","nativeSrc":"361:6:81","nodeType":"YulIdentifier","src":"361:6:81"},"nativeSrc":"361:31:81","nodeType":"YulFunctionCall","src":"361:31:81"},"nativeSrc":"361:31:81","nodeType":"YulExpressionStatement","src":"361:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"408:1:81","nodeType":"YulLiteral","src":"408:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"411:4:81","nodeType":"YulLiteral","src":"411:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"401:6:81","nodeType":"YulIdentifier","src":"401:6:81"},"nativeSrc":"401:15:81","nodeType":"YulFunctionCall","src":"401:15:81"},"nativeSrc":"401:15:81","nodeType":"YulExpressionStatement","src":"401:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"432:1:81","nodeType":"YulLiteral","src":"432:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"435:4:81","nodeType":"YulLiteral","src":"435:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"425:6:81","nodeType":"YulIdentifier","src":"425:6:81"},"nativeSrc":"425:15:81","nodeType":"YulFunctionCall","src":"425:15:81"},"nativeSrc":"425:15:81","nodeType":"YulExpressionStatement","src":"425:15:81"}]},"name":"panic_error_0x41","nativeSrc":"319:127:81","nodeType":"YulFunctionDefinition","src":"319:127:81"},{"body":{"nativeSrc":"611:1283:81","nodeType":"YulBlock","src":"611:1283:81","statements":[{"body":{"nativeSrc":"657:16:81","nodeType":"YulBlock","src":"657:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"666:1:81","nodeType":"YulLiteral","src":"666:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"669:1:81","nodeType":"YulLiteral","src":"669:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"659:6:81","nodeType":"YulIdentifier","src":"659:6:81"},"nativeSrc":"659:12:81","nodeType":"YulFunctionCall","src":"659:12:81"},"nativeSrc":"659:12:81","nodeType":"YulExpressionStatement","src":"659:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"632:7:81","nodeType":"YulIdentifier","src":"632:7:81"},{"name":"headStart","nativeSrc":"641:9:81","nodeType":"YulIdentifier","src":"641:9:81"}],"functionName":{"name":"sub","nativeSrc":"628:3:81","nodeType":"YulIdentifier","src":"628:3:81"},"nativeSrc":"628:23:81","nodeType":"YulFunctionCall","src":"628:23:81"},{"kind":"number","nativeSrc":"653:2:81","nodeType":"YulLiteral","src":"653:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"624:3:81","nodeType":"YulIdentifier","src":"624:3:81"},"nativeSrc":"624:32:81","nodeType":"YulFunctionCall","src":"624:32:81"},"nativeSrc":"621:52:81","nodeType":"YulIf","src":"621:52:81"},{"nativeSrc":"682:29:81","nodeType":"YulVariableDeclaration","src":"682:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"701:9:81","nodeType":"YulIdentifier","src":"701:9:81"}],"functionName":{"name":"mload","nativeSrc":"695:5:81","nodeType":"YulIdentifier","src":"695:5:81"},"nativeSrc":"695:16:81","nodeType":"YulFunctionCall","src":"695:16:81"},"variables":[{"name":"value","nativeSrc":"686:5:81","nodeType":"YulTypedName","src":"686:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"758:5:81","nodeType":"YulIdentifier","src":"758:5:81"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"720:37:81","nodeType":"YulIdentifier","src":"720:37:81"},"nativeSrc":"720:44:81","nodeType":"YulFunctionCall","src":"720:44:81"},"nativeSrc":"720:44:81","nodeType":"YulExpressionStatement","src":"720:44:81"},{"nativeSrc":"773:15:81","nodeType":"YulAssignment","src":"773:15:81","value":{"name":"value","nativeSrc":"783:5:81","nodeType":"YulIdentifier","src":"783:5:81"},"variableNames":[{"name":"value0","nativeSrc":"773:6:81","nodeType":"YulIdentifier","src":"773:6:81"}]},{"nativeSrc":"797:40:81","nodeType":"YulVariableDeclaration","src":"797:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"822:9:81","nodeType":"YulIdentifier","src":"822:9:81"},{"kind":"number","nativeSrc":"833:2:81","nodeType":"YulLiteral","src":"833:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"818:3:81","nodeType":"YulIdentifier","src":"818:3:81"},"nativeSrc":"818:18:81","nodeType":"YulFunctionCall","src":"818:18:81"}],"functionName":{"name":"mload","nativeSrc":"812:5:81","nodeType":"YulIdentifier","src":"812:5:81"},"nativeSrc":"812:25:81","nodeType":"YulFunctionCall","src":"812:25:81"},"variables":[{"name":"value_1","nativeSrc":"801:7:81","nodeType":"YulTypedName","src":"801:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"884:7:81","nodeType":"YulIdentifier","src":"884:7:81"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"846:37:81","nodeType":"YulIdentifier","src":"846:37:81"},"nativeSrc":"846:46:81","nodeType":"YulFunctionCall","src":"846:46:81"},"nativeSrc":"846:46:81","nodeType":"YulExpressionStatement","src":"846:46:81"},{"nativeSrc":"901:17:81","nodeType":"YulAssignment","src":"901:17:81","value":{"name":"value_1","nativeSrc":"911:7:81","nodeType":"YulIdentifier","src":"911:7:81"},"variableNames":[{"name":"value1","nativeSrc":"901:6:81","nodeType":"YulIdentifier","src":"901:6:81"}]},{"nativeSrc":"927:39:81","nodeType":"YulVariableDeclaration","src":"927:39:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"951:9:81","nodeType":"YulIdentifier","src":"951:9:81"},{"kind":"number","nativeSrc":"962:2:81","nodeType":"YulLiteral","src":"962:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"947:3:81","nodeType":"YulIdentifier","src":"947:3:81"},"nativeSrc":"947:18:81","nodeType":"YulFunctionCall","src":"947:18:81"}],"functionName":{"name":"mload","nativeSrc":"941:5:81","nodeType":"YulIdentifier","src":"941:5:81"},"nativeSrc":"941:25:81","nodeType":"YulFunctionCall","src":"941:25:81"},"variables":[{"name":"offset","nativeSrc":"931:6:81","nodeType":"YulTypedName","src":"931:6:81","type":""}]},{"body":{"nativeSrc":"1009:16:81","nodeType":"YulBlock","src":"1009:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1018:1:81","nodeType":"YulLiteral","src":"1018:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1021:1:81","nodeType":"YulLiteral","src":"1021:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1011:6:81","nodeType":"YulIdentifier","src":"1011:6:81"},"nativeSrc":"1011:12:81","nodeType":"YulFunctionCall","src":"1011:12:81"},"nativeSrc":"1011:12:81","nodeType":"YulExpressionStatement","src":"1011:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"981:6:81","nodeType":"YulIdentifier","src":"981:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"997:2:81","nodeType":"YulLiteral","src":"997:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1001:1:81","nodeType":"YulLiteral","src":"1001:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"993:3:81","nodeType":"YulIdentifier","src":"993:3:81"},"nativeSrc":"993:10:81","nodeType":"YulFunctionCall","src":"993:10:81"},{"kind":"number","nativeSrc":"1005:1:81","nodeType":"YulLiteral","src":"1005:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"989:3:81","nodeType":"YulIdentifier","src":"989:3:81"},"nativeSrc":"989:18:81","nodeType":"YulFunctionCall","src":"989:18:81"}],"functionName":{"name":"gt","nativeSrc":"978:2:81","nodeType":"YulIdentifier","src":"978:2:81"},"nativeSrc":"978:30:81","nodeType":"YulFunctionCall","src":"978:30:81"},"nativeSrc":"975:50:81","nodeType":"YulIf","src":"975:50:81"},{"nativeSrc":"1034:32:81","nodeType":"YulVariableDeclaration","src":"1034:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1048:9:81","nodeType":"YulIdentifier","src":"1048:9:81"},{"name":"offset","nativeSrc":"1059:6:81","nodeType":"YulIdentifier","src":"1059:6:81"}],"functionName":{"name":"add","nativeSrc":"1044:3:81","nodeType":"YulIdentifier","src":"1044:3:81"},"nativeSrc":"1044:22:81","nodeType":"YulFunctionCall","src":"1044:22:81"},"variables":[{"name":"_1","nativeSrc":"1038:2:81","nodeType":"YulTypedName","src":"1038:2:81","type":""}]},{"body":{"nativeSrc":"1114:16:81","nodeType":"YulBlock","src":"1114:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1123:1:81","nodeType":"YulLiteral","src":"1123:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1126:1:81","nodeType":"YulLiteral","src":"1126:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1116:6:81","nodeType":"YulIdentifier","src":"1116:6:81"},"nativeSrc":"1116:12:81","nodeType":"YulFunctionCall","src":"1116:12:81"},"nativeSrc":"1116:12:81","nodeType":"YulExpressionStatement","src":"1116:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1093:2:81","nodeType":"YulIdentifier","src":"1093:2:81"},{"kind":"number","nativeSrc":"1097:4:81","nodeType":"YulLiteral","src":"1097:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1089:3:81","nodeType":"YulIdentifier","src":"1089:3:81"},"nativeSrc":"1089:13:81","nodeType":"YulFunctionCall","src":"1089:13:81"},{"name":"dataEnd","nativeSrc":"1104:7:81","nodeType":"YulIdentifier","src":"1104:7:81"}],"functionName":{"name":"slt","nativeSrc":"1085:3:81","nodeType":"YulIdentifier","src":"1085:3:81"},"nativeSrc":"1085:27:81","nodeType":"YulFunctionCall","src":"1085:27:81"}],"functionName":{"name":"iszero","nativeSrc":"1078:6:81","nodeType":"YulIdentifier","src":"1078:6:81"},"nativeSrc":"1078:35:81","nodeType":"YulFunctionCall","src":"1078:35:81"},"nativeSrc":"1075:55:81","nodeType":"YulIf","src":"1075:55:81"},{"nativeSrc":"1139:23:81","nodeType":"YulVariableDeclaration","src":"1139:23:81","value":{"arguments":[{"name":"_1","nativeSrc":"1159:2:81","nodeType":"YulIdentifier","src":"1159:2:81"}],"functionName":{"name":"mload","nativeSrc":"1153:5:81","nodeType":"YulIdentifier","src":"1153:5:81"},"nativeSrc":"1153:9:81","nodeType":"YulFunctionCall","src":"1153:9:81"},"variables":[{"name":"length","nativeSrc":"1143:6:81","nodeType":"YulTypedName","src":"1143:6:81","type":""}]},{"body":{"nativeSrc":"1205:22:81","nodeType":"YulBlock","src":"1205:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1207:16:81","nodeType":"YulIdentifier","src":"1207:16:81"},"nativeSrc":"1207:18:81","nodeType":"YulFunctionCall","src":"1207:18:81"},"nativeSrc":"1207:18:81","nodeType":"YulExpressionStatement","src":"1207:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1177:6:81","nodeType":"YulIdentifier","src":"1177:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1193:2:81","nodeType":"YulLiteral","src":"1193:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1197:1:81","nodeType":"YulLiteral","src":"1197:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1189:3:81","nodeType":"YulIdentifier","src":"1189:3:81"},"nativeSrc":"1189:10:81","nodeType":"YulFunctionCall","src":"1189:10:81"},{"kind":"number","nativeSrc":"1201:1:81","nodeType":"YulLiteral","src":"1201:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1185:3:81","nodeType":"YulIdentifier","src":"1185:3:81"},"nativeSrc":"1185:18:81","nodeType":"YulFunctionCall","src":"1185:18:81"}],"functionName":{"name":"gt","nativeSrc":"1174:2:81","nodeType":"YulIdentifier","src":"1174:2:81"},"nativeSrc":"1174:30:81","nodeType":"YulFunctionCall","src":"1174:30:81"},"nativeSrc":"1171:56:81","nodeType":"YulIf","src":"1171:56:81"},{"nativeSrc":"1236:24:81","nodeType":"YulVariableDeclaration","src":"1236:24:81","value":{"arguments":[{"kind":"number","nativeSrc":"1250:1:81","nodeType":"YulLiteral","src":"1250:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"1253:6:81","nodeType":"YulIdentifier","src":"1253:6:81"}],"functionName":{"name":"shl","nativeSrc":"1246:3:81","nodeType":"YulIdentifier","src":"1246:3:81"},"nativeSrc":"1246:14:81","nodeType":"YulFunctionCall","src":"1246:14:81"},"variables":[{"name":"_2","nativeSrc":"1240:2:81","nodeType":"YulTypedName","src":"1240:2:81","type":""}]},{"nativeSrc":"1269:23:81","nodeType":"YulVariableDeclaration","src":"1269:23:81","value":{"arguments":[{"kind":"number","nativeSrc":"1289:2:81","nodeType":"YulLiteral","src":"1289:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1283:5:81","nodeType":"YulIdentifier","src":"1283:5:81"},"nativeSrc":"1283:9:81","nodeType":"YulFunctionCall","src":"1283:9:81"},"variables":[{"name":"memPtr","nativeSrc":"1273:6:81","nodeType":"YulTypedName","src":"1273:6:81","type":""}]},{"nativeSrc":"1301:56:81","nodeType":"YulVariableDeclaration","src":"1301:56:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"1323:6:81","nodeType":"YulIdentifier","src":"1323:6:81"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"1339:2:81","nodeType":"YulIdentifier","src":"1339:2:81"},{"kind":"number","nativeSrc":"1343:2:81","nodeType":"YulLiteral","src":"1343:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1335:3:81","nodeType":"YulIdentifier","src":"1335:3:81"},"nativeSrc":"1335:11:81","nodeType":"YulFunctionCall","src":"1335:11:81"},{"arguments":[{"kind":"number","nativeSrc":"1352:2:81","nodeType":"YulLiteral","src":"1352:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1348:3:81","nodeType":"YulIdentifier","src":"1348:3:81"},"nativeSrc":"1348:7:81","nodeType":"YulFunctionCall","src":"1348:7:81"}],"functionName":{"name":"and","nativeSrc":"1331:3:81","nodeType":"YulIdentifier","src":"1331:3:81"},"nativeSrc":"1331:25:81","nodeType":"YulFunctionCall","src":"1331:25:81"}],"functionName":{"name":"add","nativeSrc":"1319:3:81","nodeType":"YulIdentifier","src":"1319:3:81"},"nativeSrc":"1319:38:81","nodeType":"YulFunctionCall","src":"1319:38:81"},"variables":[{"name":"newFreePtr","nativeSrc":"1305:10:81","nodeType":"YulTypedName","src":"1305:10:81","type":""}]},{"body":{"nativeSrc":"1432:22:81","nodeType":"YulBlock","src":"1432:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1434:16:81","nodeType":"YulIdentifier","src":"1434:16:81"},"nativeSrc":"1434:18:81","nodeType":"YulFunctionCall","src":"1434:18:81"},"nativeSrc":"1434:18:81","nodeType":"YulExpressionStatement","src":"1434:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1375:10:81","nodeType":"YulIdentifier","src":"1375:10:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1395:2:81","nodeType":"YulLiteral","src":"1395:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1399:1:81","nodeType":"YulLiteral","src":"1399:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1391:3:81","nodeType":"YulIdentifier","src":"1391:3:81"},"nativeSrc":"1391:10:81","nodeType":"YulFunctionCall","src":"1391:10:81"},{"kind":"number","nativeSrc":"1403:1:81","nodeType":"YulLiteral","src":"1403:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1387:3:81","nodeType":"YulIdentifier","src":"1387:3:81"},"nativeSrc":"1387:18:81","nodeType":"YulFunctionCall","src":"1387:18:81"}],"functionName":{"name":"gt","nativeSrc":"1372:2:81","nodeType":"YulIdentifier","src":"1372:2:81"},"nativeSrc":"1372:34:81","nodeType":"YulFunctionCall","src":"1372:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1411:10:81","nodeType":"YulIdentifier","src":"1411:10:81"},{"name":"memPtr","nativeSrc":"1423:6:81","nodeType":"YulIdentifier","src":"1423:6:81"}],"functionName":{"name":"lt","nativeSrc":"1408:2:81","nodeType":"YulIdentifier","src":"1408:2:81"},"nativeSrc":"1408:22:81","nodeType":"YulFunctionCall","src":"1408:22:81"}],"functionName":{"name":"or","nativeSrc":"1369:2:81","nodeType":"YulIdentifier","src":"1369:2:81"},"nativeSrc":"1369:62:81","nodeType":"YulFunctionCall","src":"1369:62:81"},"nativeSrc":"1366:88:81","nodeType":"YulIf","src":"1366:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1470:2:81","nodeType":"YulLiteral","src":"1470:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1474:10:81","nodeType":"YulIdentifier","src":"1474:10:81"}],"functionName":{"name":"mstore","nativeSrc":"1463:6:81","nodeType":"YulIdentifier","src":"1463:6:81"},"nativeSrc":"1463:22:81","nodeType":"YulFunctionCall","src":"1463:22:81"},"nativeSrc":"1463:22:81","nodeType":"YulExpressionStatement","src":"1463:22:81"},{"nativeSrc":"1494:17:81","nodeType":"YulVariableDeclaration","src":"1494:17:81","value":{"name":"memPtr","nativeSrc":"1505:6:81","nodeType":"YulIdentifier","src":"1505:6:81"},"variables":[{"name":"dst","nativeSrc":"1498:3:81","nodeType":"YulTypedName","src":"1498:3:81","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1527:6:81","nodeType":"YulIdentifier","src":"1527:6:81"},{"name":"length","nativeSrc":"1535:6:81","nodeType":"YulIdentifier","src":"1535:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1520:6:81","nodeType":"YulIdentifier","src":"1520:6:81"},"nativeSrc":"1520:22:81","nodeType":"YulFunctionCall","src":"1520:22:81"},"nativeSrc":"1520:22:81","nodeType":"YulExpressionStatement","src":"1520:22:81"},{"nativeSrc":"1551:22:81","nodeType":"YulAssignment","src":"1551:22:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"1562:6:81","nodeType":"YulIdentifier","src":"1562:6:81"},{"kind":"number","nativeSrc":"1570:2:81","nodeType":"YulLiteral","src":"1570:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1558:3:81","nodeType":"YulIdentifier","src":"1558:3:81"},"nativeSrc":"1558:15:81","nodeType":"YulFunctionCall","src":"1558:15:81"},"variableNames":[{"name":"dst","nativeSrc":"1551:3:81","nodeType":"YulIdentifier","src":"1551:3:81"}]},{"nativeSrc":"1582:34:81","nodeType":"YulVariableDeclaration","src":"1582:34:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1604:2:81","nodeType":"YulIdentifier","src":"1604:2:81"},{"name":"_2","nativeSrc":"1608:2:81","nodeType":"YulIdentifier","src":"1608:2:81"}],"functionName":{"name":"add","nativeSrc":"1600:3:81","nodeType":"YulIdentifier","src":"1600:3:81"},"nativeSrc":"1600:11:81","nodeType":"YulFunctionCall","src":"1600:11:81"},{"kind":"number","nativeSrc":"1613:2:81","nodeType":"YulLiteral","src":"1613:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1596:3:81","nodeType":"YulIdentifier","src":"1596:3:81"},"nativeSrc":"1596:20:81","nodeType":"YulFunctionCall","src":"1596:20:81"},"variables":[{"name":"srcEnd","nativeSrc":"1586:6:81","nodeType":"YulTypedName","src":"1586:6:81","type":""}]},{"body":{"nativeSrc":"1648:16:81","nodeType":"YulBlock","src":"1648:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1657:1:81","nodeType":"YulLiteral","src":"1657:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1660:1:81","nodeType":"YulLiteral","src":"1660:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1650:6:81","nodeType":"YulIdentifier","src":"1650:6:81"},"nativeSrc":"1650:12:81","nodeType":"YulFunctionCall","src":"1650:12:81"},"nativeSrc":"1650:12:81","nodeType":"YulExpressionStatement","src":"1650:12:81"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"1631:6:81","nodeType":"YulIdentifier","src":"1631:6:81"},{"name":"dataEnd","nativeSrc":"1639:7:81","nodeType":"YulIdentifier","src":"1639:7:81"}],"functionName":{"name":"gt","nativeSrc":"1628:2:81","nodeType":"YulIdentifier","src":"1628:2:81"},"nativeSrc":"1628:19:81","nodeType":"YulFunctionCall","src":"1628:19:81"},"nativeSrc":"1625:39:81","nodeType":"YulIf","src":"1625:39:81"},{"nativeSrc":"1673:22:81","nodeType":"YulVariableDeclaration","src":"1673:22:81","value":{"arguments":[{"name":"_1","nativeSrc":"1688:2:81","nodeType":"YulIdentifier","src":"1688:2:81"},{"kind":"number","nativeSrc":"1692:2:81","nodeType":"YulLiteral","src":"1692:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1684:3:81","nodeType":"YulIdentifier","src":"1684:3:81"},"nativeSrc":"1684:11:81","nodeType":"YulFunctionCall","src":"1684:11:81"},"variables":[{"name":"src","nativeSrc":"1677:3:81","nodeType":"YulTypedName","src":"1677:3:81","type":""}]},{"body":{"nativeSrc":"1760:103:81","nodeType":"YulBlock","src":"1760:103:81","statements":[{"expression":{"arguments":[{"name":"dst","nativeSrc":"1781:3:81","nodeType":"YulIdentifier","src":"1781:3:81"},{"arguments":[{"name":"src","nativeSrc":"1816:3:81","nodeType":"YulIdentifier","src":"1816:3:81"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"1786:29:81","nodeType":"YulIdentifier","src":"1786:29:81"},"nativeSrc":"1786:34:81","nodeType":"YulFunctionCall","src":"1786:34:81"}],"functionName":{"name":"mstore","nativeSrc":"1774:6:81","nodeType":"YulIdentifier","src":"1774:6:81"},"nativeSrc":"1774:47:81","nodeType":"YulFunctionCall","src":"1774:47:81"},"nativeSrc":"1774:47:81","nodeType":"YulExpressionStatement","src":"1774:47:81"},{"nativeSrc":"1834:19:81","nodeType":"YulAssignment","src":"1834:19:81","value":{"arguments":[{"name":"dst","nativeSrc":"1845:3:81","nodeType":"YulIdentifier","src":"1845:3:81"},{"kind":"number","nativeSrc":"1850:2:81","nodeType":"YulLiteral","src":"1850:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1841:3:81","nodeType":"YulIdentifier","src":"1841:3:81"},"nativeSrc":"1841:12:81","nodeType":"YulFunctionCall","src":"1841:12:81"},"variableNames":[{"name":"dst","nativeSrc":"1834:3:81","nodeType":"YulIdentifier","src":"1834:3:81"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"1715:3:81","nodeType":"YulIdentifier","src":"1715:3:81"},{"name":"srcEnd","nativeSrc":"1720:6:81","nodeType":"YulIdentifier","src":"1720:6:81"}],"functionName":{"name":"lt","nativeSrc":"1712:2:81","nodeType":"YulIdentifier","src":"1712:2:81"},"nativeSrc":"1712:15:81","nodeType":"YulFunctionCall","src":"1712:15:81"},"nativeSrc":"1704:159:81","nodeType":"YulForLoop","post":{"nativeSrc":"1728:23:81","nodeType":"YulBlock","src":"1728:23:81","statements":[{"nativeSrc":"1730:19:81","nodeType":"YulAssignment","src":"1730:19:81","value":{"arguments":[{"name":"src","nativeSrc":"1741:3:81","nodeType":"YulIdentifier","src":"1741:3:81"},{"kind":"number","nativeSrc":"1746:2:81","nodeType":"YulLiteral","src":"1746:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1737:3:81","nodeType":"YulIdentifier","src":"1737:3:81"},"nativeSrc":"1737:12:81","nodeType":"YulFunctionCall","src":"1737:12:81"},"variableNames":[{"name":"src","nativeSrc":"1730:3:81","nodeType":"YulIdentifier","src":"1730:3:81"}]}]},"pre":{"nativeSrc":"1708:3:81","nodeType":"YulBlock","src":"1708:3:81","statements":[]},"src":"1704:159:81"},{"nativeSrc":"1872:16:81","nodeType":"YulAssignment","src":"1872:16:81","value":{"name":"memPtr","nativeSrc":"1882:6:81","nodeType":"YulIdentifier","src":"1882:6:81"},"variableNames":[{"name":"value2","nativeSrc":"1872:6:81","nodeType":"YulIdentifier","src":"1872:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IEntryPoint_$3566t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory","nativeSrc":"451:1443:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"561:9:81","nodeType":"YulTypedName","src":"561:9:81","type":""},{"name":"dataEnd","nativeSrc":"572:7:81","nodeType":"YulTypedName","src":"572:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"584:6:81","nodeType":"YulTypedName","src":"584:6:81","type":""},{"name":"value1","nativeSrc":"592:6:81","nodeType":"YulTypedName","src":"592:6:81","type":""},{"name":"value2","nativeSrc":"600:6:81","nodeType":"YulTypedName","src":"600:6:81","type":""}],"src":"451:1443:81"},{"body":{"nativeSrc":"1931:95:81","nodeType":"YulBlock","src":"1931:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1948:1:81","nodeType":"YulLiteral","src":"1948:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1955:3:81","nodeType":"YulLiteral","src":"1955:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1960:10:81","nodeType":"YulLiteral","src":"1960:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1951:3:81","nodeType":"YulIdentifier","src":"1951:3:81"},"nativeSrc":"1951:20:81","nodeType":"YulFunctionCall","src":"1951:20:81"}],"functionName":{"name":"mstore","nativeSrc":"1941:6:81","nodeType":"YulIdentifier","src":"1941:6:81"},"nativeSrc":"1941:31:81","nodeType":"YulFunctionCall","src":"1941:31:81"},"nativeSrc":"1941:31:81","nodeType":"YulExpressionStatement","src":"1941:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1988:1:81","nodeType":"YulLiteral","src":"1988:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"1991:4:81","nodeType":"YulLiteral","src":"1991:4:81","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"1981:6:81","nodeType":"YulIdentifier","src":"1981:6:81"},"nativeSrc":"1981:15:81","nodeType":"YulFunctionCall","src":"1981:15:81"},"nativeSrc":"1981:15:81","nodeType":"YulExpressionStatement","src":"1981:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2012:1:81","nodeType":"YulLiteral","src":"2012:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2015:4:81","nodeType":"YulLiteral","src":"2015:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2005:6:81","nodeType":"YulIdentifier","src":"2005:6:81"},"nativeSrc":"2005:15:81","nodeType":"YulFunctionCall","src":"2005:15:81"},"nativeSrc":"2005:15:81","nodeType":"YulExpressionStatement","src":"2005:15:81"}]},"name":"panic_error_0x32","nativeSrc":"1899:127:81","nodeType":"YulFunctionDefinition","src":"1899:127:81"}]},"contents":"{\n    { }\n    function validator_revert_contract_IEntryPoint(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_contract_IEntryPoint(value)\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_contract$_IEntryPoint_$3566t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IEntryPoint(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IEntryPoint(value_1)\n        value1 := value_1\n        let offset := mload(add(headStart, 64))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let _2 := shl(5, length)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(_2, 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        mstore(memPtr, length)\n        dst := add(memPtr, 32)\n        let srcEnd := add(add(_1, _2), 32)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_1, 32)\n        for { } lt(src, srcEnd) { src := add(src, 32) }\n        {\n            mstore(dst, abi_decode_address_fromMemory(src))\n            dst := add(dst, 32)\n        }\n        value2 := memPtr\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b506040516116a13803806116a183398101604081905261002e91610190565b6001600160a01b0383166080526100455f836100ac565b505f5b81518110156100a35761009a7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6383838151811061008757610087610282565b60200260200101516100ac60201b60201c565b50600101610048565b50505050610296565b5f828152602081815260408083206001600160a01b038516845290915281205460ff1661014c575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556101043390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161014f565b505f5b92915050565b6001600160a01b0381168114610169575f5ffd5b50565b805161017781610155565b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5f5f606084860312156101a2575f5ffd5b83516101ad81610155565b60208501519093506101be81610155565b60408501519092506001600160401b038111156101d9575f5ffd5b8401601f810186136101e9575f5ffd5b80516001600160401b038111156102025761020261017c565b604051600582901b90603f8201601f191681016001600160401b03811182821017156102305761023061017c565b60405291825260208184018101929081018984111561024d575f5ffd5b6020850194505b83851015610273576102658561016c565b815260209485019401610254565b50809450505050509250925092565b634e487b7160e01b5f52603260045260245ffd5b6080516113c96102d85f395f818161029b0152818161062e015281816106d401528181610814015281816108a9015281816109070152610ba201526113c95ff3fe6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004611036565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f61019736600461105d565b610394565b3480156101a7575f5ffd5b5061016f6101b63660046110ac565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e43660046110d7565b6103b9565b005b3480156101f6575f5ffd5b506101e96102053660046110d7565b6103e3565b348015610215575f5ffd5b506101e961022436600461114d565b61041b565b6101e961062c565b34801561023c575f5ffd5b506101e961024b3660046111ec565b6106a8565b34801561025b575f5ffd5b5061012761026a3660046110d7565b610757565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df366004611216565b61077f565b3480156102ef575f5ffd5b5061016f6107f5565b348015610303575f5ffd5b5061016f610883565b348015610317575f5ffd5b506101e96103263660046110d7565b6108d8565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d6108fc565b6103a78484610976565b90506103b282610a54565b9392505050565b5f828152602081905260409020600101546103d381610a9d565b6103dd8383610aa7565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610b36565b505050565b5f610424610b9f565b9050858214158061043f5750831580159061043f5750838214155b1561045d5760405163150072e360e11b815260040160405180910390fd5b5f5b868110156106225780156105125787878281811061047f5761047f61129b565b905060200201602081019061049491906112af565b6001600160a01b031688886104aa6001856112ca565b8181106104b9576104b961129b565b90506020020160208101906104ce91906112af565b6001600160a01b0316148061050d575061050d8888838181106104f3576104f361129b565b905060200201602081019061050891906112af565b610c74565b610527565b61052788885f8181106104f3576104f361129b565b8888838181106105395761053961129b565b905060200201602081019061054e91906112af565b9061057d57604051636d4e141560e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b506106198888838181106105935761059361129b565b90506020020160208101906105a891906112af565b8585848181106105ba576105ba61129b565b90506020028101906105cc91906112e9565b856040516020016105df9392919061132c565b60408051601f198184030181529190528715610613578888858181106106075761060761129b565b90506020020135610ced565b5f610ced565b5060010161045f565b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b15801561068f575f5ffd5b505af11580156106a1573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6106d281610a9d565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b15801561073c575f5ffd5b505af115801561074e573d5f5f3e3d5ffd5b50505050505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f610788610b9f565b905061079385610c74565b85906107be57604051636d4e141560e01b81526001600160a01b039091166004820152602401610574565b506107ed858484846040516020016107d89392919061132c565b60405160208183030381529060405286610ced565b505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa15801561085a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e9190611352565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161083f565b5f828152602081905260409020600101546108f281610a9d565b6103dd8383610b36565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109745760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e74000000006044820152606401610574565b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109f0826109b76101008801886112e9565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610d8392505050565b9050610a1c7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6382610757565b610a2b5760019250505061038e565b805f805c6001600160a01b0319166001600160a01b03831617905d505f95945050505050565b50565b8015610a51576040515f9033905f1990849084818181858888f193505050503d805f81146106a1576040519150601f19603f3d011682016040523d82523d5f602084013e6106a1565b610a518133610dab565b5f610ab28383610757565b610b2f575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ae73390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610b418383610757565b15610b2f575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303610c18575f5c6001600160a01b0316610bf857604051636ca7ff7d60e01b815260040160405180910390fd5b506001600160a01b035f805c918216916001600160a01b031916815d5090565b610c427fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610757565b3390610c6d57604051633c687f6b60e21b81526001600160a01b039091166004820152602401610574565b5033905090565b6040513060248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b031663572b6c0560e01b17815282519293505f928392839290918391895afa92503d91505f519050828015610cd8575060208210155b8015610ce357505f81115b9695505050505050565b606081471015610d195760405163cf47918160e01b815247600482015260248101839052604401610574565b5f5f856001600160a01b03168486604051610d349190611369565b5f6040518083038185875af1925050503d805f8114610d6e576040519150601f19603f3d011682016040523d82523d5f602084013e610d73565b606091505b5091509150610ce3868383610de8565b5f5f5f5f610d918686610e44565b925092509250610da18282610e8d565b5090949350505050565b610db58282610757565b610de45760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610574565b5050565b606082610dfd57610df882610f45565b6103b2565b8151158015610e1457506001600160a01b0384163b155b15610e3d57604051639996b31560e01b81526001600160a01b0385166004820152602401610574565b50806103b2565b5f5f5f8351604103610e7b576020840151604085015160608601515f1a610e6d88828585610f6e565b955095509550505050610e86565b505081515f91506002905b9250925092565b5f826003811115610ea057610ea061137f565b03610ea9575050565b6001826003811115610ebd57610ebd61137f565b03610edb5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610eef57610eef61137f565b03610f105760405163fce698f760e01b815260048101829052602401610574565b6003826003811115610f2457610f2461137f565b03610de4576040516335e2f38360e21b815260048101829052602401610574565b805115610f555780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610fa757505f9150600390508261102c565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610ff8573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661102357505f92506001915082905061102c565b92505f91508190505b9450945094915050565b5f60208284031215611046575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f6060848603121561106f575f5ffd5b833567ffffffffffffffff811115611085575f5ffd5b84016101208187031215611097575f5ffd5b95602085013595506040909401359392505050565b5f602082840312156110bc575f5ffd5b5035919050565b6001600160a01b0381168114610a51575f5ffd5b5f5f604083850312156110e8575f5ffd5b8235915060208301356110fa816110c3565b809150509250929050565b5f5f83601f840112611115575f5ffd5b50813567ffffffffffffffff81111561112c575f5ffd5b6020830191508360208260051b8501011115611146575f5ffd5b9250929050565b5f5f5f5f5f5f60608789031215611162575f5ffd5b863567ffffffffffffffff811115611178575f5ffd5b61118489828a01611105565b909750955050602087013567ffffffffffffffff8111156111a3575f5ffd5b6111af89828a01611105565b909550935050604087013567ffffffffffffffff8111156111ce575f5ffd5b6111da89828a01611105565b979a9699509497509295939492505050565b5f5f604083850312156111fd575f5ffd5b8235611208816110c3565b946020939093013593505050565b5f5f5f5f60608587031215611229575f5ffd5b8435611234816110c3565b935060208501359250604085013567ffffffffffffffff811115611256575f5ffd5b8501601f81018713611266575f5ffd5b803567ffffffffffffffff81111561127c575f5ffd5b87602082840101111561128d575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156112bf575f5ffd5b81356103b2816110c3565b8181038181111561038e57634e487b7160e01b5f52601160045260245ffd5b5f5f8335601e198436030181126112fe575f5ffd5b83018035915067ffffffffffffffff821115611318575f5ffd5b602001915036819003821315611146575f5ffd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b5f60208284031215611362575f5ffd5b5051919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52602160045260245ffdfea26469706673582212202229e100ac5fd5a52adde5054ce4e502b712dfaa795b66c98037e0a7bbc1cb7e64736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x16A1 CODESIZE SUB DUP1 PUSH2 0x16A1 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x190 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x80 MSTORE PUSH2 0x45 PUSH0 DUP4 PUSH2 0xAC JUMP JUMPDEST POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xA3 JUMPI PUSH2 0x9A PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x87 JUMPI PUSH2 0x87 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xAC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x48 JUMP JUMPDEST POP POP POP POP PUSH2 0x296 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14C JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x104 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x14F JUMP JUMPDEST POP PUSH0 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x177 DUP2 PUSH2 0x155 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x1AD DUP2 PUSH2 0x155 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x1BE DUP2 PUSH2 0x155 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x202 JUMPI PUSH2 0x202 PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x5 DUP3 SWAP1 SHL SWAP1 PUSH1 0x3F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x230 JUMPI PUSH2 0x230 PUSH2 0x17C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP10 DUP5 GT ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x273 JUMPI PUSH2 0x265 DUP6 PUSH2 0x16C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 ADD PUSH2 0x254 JUMP JUMPDEST POP DUP1 SWAP5 POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x13C9 PUSH2 0x2D8 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x29B ADD MSTORE DUP2 DUP2 PUSH2 0x62E ADD MSTORE DUP2 DUP2 PUSH2 0x6D4 ADD MSTORE DUP2 DUP2 PUSH2 0x814 ADD MSTORE DUP2 DUP2 PUSH2 0x8A9 ADD MSTORE DUP2 DUP2 PUSH2 0x907 ADD MSTORE PUSH2 0xBA2 ADD MSTORE PUSH2 0x13C9 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4D44560D GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB61D27F6 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x30C JUMPI DUP1 PUSH4 0xE02023A1 EQ PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D44560D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x282 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0xCD JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x47E1DA2A EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7BD0265 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x104 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x113 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x147 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x105D JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10AC JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3B9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x224 CALLDATASIZE PUSH1 0x4 PUSH2 0x114D JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x62C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x11EC JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1216 JUMP JUMPDEST PUSH2 0x77F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x7F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x883 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x326 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x8D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x38E JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x8FC JUMP JUMPDEST PUSH2 0x3A7 DUP5 DUP5 PUSH2 0x976 JUMP JUMPDEST SWAP1 POP PUSH2 0x3B2 DUP3 PUSH2 0xA54 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x3D3 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xAA7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x40C JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x416 DUP3 DUP3 PUSH2 0xB36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x424 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP DUP6 DUP3 EQ ISZERO DUP1 PUSH2 0x43F JUMPI POP DUP4 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x43F JUMPI POP DUP4 DUP3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x45D JUMPI PUSH1 0x40 MLOAD PUSH4 0x150072E3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x622 JUMPI DUP1 ISZERO PUSH2 0x512 JUMPI DUP8 DUP8 DUP3 DUP2 DUP2 LT PUSH2 0x47F JUMPI PUSH2 0x47F PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x494 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP9 PUSH2 0x4AA PUSH1 0x1 DUP6 PUSH2 0x12CA JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x4B9 JUMPI PUSH2 0x4B9 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4CE SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x50D JUMPI POP PUSH2 0x50D DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x508 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x527 JUMP JUMPDEST PUSH2 0x527 DUP9 DUP9 PUSH0 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x539 JUMPI PUSH2 0x539 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x54E SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST SWAP1 PUSH2 0x57D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x619 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x593 JUMPI PUSH2 0x593 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x5A8 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x12E9 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP8 ISZERO PUSH2 0x613 JUMPI DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x607 JUMPI PUSH2 0x607 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0xCED JUMP JUMPDEST PUSH0 PUSH2 0xCED JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x45F JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x68F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6A1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC PUSH2 0x6D2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x73C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x74E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x788 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP PUSH2 0x793 DUP6 PUSH2 0xC74 JUMP JUMPDEST DUP6 SWAP1 PUSH2 0x7BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP PUSH2 0x7ED DUP6 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x7D8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP7 PUSH2 0xCED JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x85A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x87E SWAP2 SWAP1 PUSH2 0x1352 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x83F JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x8F2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xB36 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x974 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x574 JUMP JUMPDEST JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP3 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 PUSH0 PUSH2 0x9F0 DUP3 PUSH2 0x9B7 PUSH2 0x100 DUP9 ADD DUP9 PUSH2 0x12E9 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xD83 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0xA1C PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xA2B JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x38E JUMP JUMPDEST DUP1 PUSH0 DUP1 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 TSTORE POP PUSH0 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x6A1 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x6A1 JUMP JUMPDEST PUSH2 0xA51 DUP2 CALLER PUSH2 0xDAB JUMP JUMPDEST PUSH0 PUSH2 0xAB2 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0xAE7 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST POP PUSH0 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH2 0xB41 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST ISZERO PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0xC18 JUMPI PUSH0 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6CA7FF7D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH0 DUP1 TLOAD SWAP2 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 TSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0xC42 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 CALLER PUSH2 0x757 JUMP JUMPDEST CALLER SWAP1 PUSH2 0xC6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x3C687F6B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x44 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x572B6C05 PUSH1 0xE0 SHL OR DUP2 MSTORE DUP3 MLOAD SWAP3 SWAP4 POP PUSH0 SWAP3 DUP4 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP4 SWAP2 DUP10 GAS STATICCALL SWAP3 POP RETURNDATASIZE SWAP2 POP PUSH0 MLOAD SWAP1 POP DUP3 DUP1 ISZERO PUSH2 0xCD8 JUMPI POP PUSH1 0x20 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xCE3 JUMPI POP PUSH0 DUP2 GT JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0xD19 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0xD34 SWAP2 SWAP1 PUSH2 0x1369 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xD6E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xD73 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCE3 DUP7 DUP4 DUP4 PUSH2 0xDE8 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xD91 DUP7 DUP7 PUSH2 0xE44 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xDA1 DUP3 DUP3 PUSH2 0xE8D JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xDB5 DUP3 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xDFD JUMPI PUSH2 0xDF8 DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0xE14 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xE3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP DUP1 PUSH2 0x3B2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xE7B JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xE6D DUP9 DUP3 DUP6 DUP6 PUSH2 0xF6E JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xE86 JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEA0 JUMPI PUSH2 0xEA0 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEA9 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBD PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEDB JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEEF JUMPI PUSH2 0xEEF PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xF10 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF24 JUMPI PUSH2 0xF24 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0xF55 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xFA7 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFF8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1023 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x102C JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1085 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x1097 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x10FA DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1115 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x112C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1162 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1184 DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11AF DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11DA DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP4 SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1208 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1234 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1256 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x127C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x128D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x38E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x12FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1318 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP2 ADD SWAP1 DUP2 MSTORE PUSH1 0x14 ADD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1362 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 0x29 0xE1 STOP 0xAC PUSH0 0xD5 0xA5 0x2A 0xDD 0xE5 SDIV 0x4C 0xE4 0xE5 MUL 0xB7 SLT 0xDF 0xAA PUSH26 0x5B66C98037E0A7BBC1CB7E64736F6C634300081C003300000000 ","sourceMap":"1158:5897:16:-:0;;;1840:263;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:26:16;;;;1959:37;2232:4:27;1990:5:16;1959:10;:37::i;:::-;;2007:9;2002:97;2022:9;:16;2018:1;:20;2002:97;;;2053:39;1335:26;2079:9;2089:1;2079:12;;;;;;;;:::i;:::-;;;;;;;2053:10;;;:39;;:::i;:::-;-1:-1:-1;2040:3:16;;2002:97;;;;1840:263;;;1158:5897;;6179:316:27;6256:4;2954:12;;;;;;;;;;;-1:-1:-1;;;;;2954:29:27;;;;;;;;;;;;6272:217;;6315:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6315:29:27;;;;;;;;;:36;;-1:-1:-1;;6315:36:27;6347:4;6315:36;;;6397:12;735:10:55;;656:96;6397:12:27;-1:-1:-1;;;;;6370:40:27;6388:7;-1:-1:-1;;;;;6370:40:27;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:27;6424:11;;6272:217;-1:-1:-1;6473:5:27;6272:217;6179:316;;;;:::o;14:144:81:-;-1:-1:-1;;;;;102:31:81;;92:42;;82:70;;148:1;145;138:12;82:70;14:144;:::o;163:151::-;242:13;;264:44;242:13;264:44;:::i;:::-;163:151;;;:::o;319:127::-;380:10;375:3;371:20;368:1;361:31;411:4;408:1;401:15;435:4;432:1;425:15;451:1443;584:6;592;600;653:2;641:9;632:7;628:23;624:32;621:52;;;669:1;666;659:12;621:52;701:9;695:16;720:44;758:5;720:44;:::i;:::-;833:2;818:18;;812:25;783:5;;-1:-1:-1;846:46:81;812:25;846:46;:::i;:::-;962:2;947:18;;941:25;911:7;;-1:-1:-1;;;;;;978:30:81;;975:50;;;1021:1;1018;1011:12;975:50;1044:22;;1097:4;1089:13;;1085:27;-1:-1:-1;1075:55:81;;1126:1;1123;1116:12;1075:55;1153:9;;-1:-1:-1;;;;;1174:30:81;;1171:56;;;1207:18;;:::i;:::-;1289:2;1283:9;1250:1;1246:14;;;;1343:2;1335:11;;-1:-1:-1;;1331:25:81;1319:38;;-1:-1:-1;;;;;1372:34:81;;1408:22;;;1369:62;1366:88;;;1434:18;;:::i;:::-;1470:2;1463:22;1520;;;1570:2;1600:11;;;1596:20;;;1520:22;1558:15;;1628:19;;;1625:39;;;1660:1;1657;1650:12;1625:39;1692:2;1688;1684:11;1673:22;;1704:159;1720:6;1715:3;1712:15;1704:159;;;1786:34;1816:3;1786:34;:::i;:::-;1774:47;;1850:2;1737:12;;;;1841;1704:159;;;1708:3;1882:6;1872:16;;;;;;451:1443;;;;;:::o;1899:127::-;1960:10;1955:3;1951:20;1948:1;1941:31;1991:4;1988:1;1981:15;2015:4;2012:1;2005:15;1899:127;1158:5897:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DEFAULT_ADMIN_ROLE_6801":{"entryPoint":null,"id":6801,"parameterSlots":0,"returnSlots":0},"@EXECUTOR_ROLE_3875":{"entryPoint":null,"id":3875,"parameterSlots":0,"returnSlots":0},"@WITHDRAW_ROLE_3870":{"entryPoint":null,"id":3870,"parameterSlots":0,"returnSlots":0},"@_3907":{"entryPoint":null,"id":3907,"parameterSlots":0,"returnSlots":0},"@_checkRole_6865":{"entryPoint":2717,"id":6865,"parameterSlots":1,"returnSlots":0},"@_checkRole_6886":{"entryPoint":3499,"id":6886,"parameterSlots":2,"returnSlots":0},"@_grantRole_7028":{"entryPoint":2727,"id":7028,"parameterSlots":2,"returnSlots":1},"@_isTrustedByTarget_4234":{"entryPoint":3188,"id":4234,"parameterSlots":1,"returnSlots":1},"@_msgSender_12592":{"entryPoint":null,"id":12592,"parameterSlots":0,"returnSlots":1},"@_payPrefund_137":{"entryPoint":2644,"id":137,"parameterSlots":1,"returnSlots":0},"@_requireFromEntryPointOrExecutor_4002":{"entryPoint":2975,"id":4002,"parameterSlots":0,"returnSlots":1},"@_requireFromEntryPoint_86":{"entryPoint":2300,"id":86,"parameterSlots":0,"returnSlots":0},"@_revert_12579":{"entryPoint":3909,"id":12579,"parameterSlots":1,"returnSlots":0},"@_revokeRole_7066":{"entryPoint":2870,"id":7066,"parameterSlots":2,"returnSlots":1},"@_throwError_18097":{"entryPoint":3725,"id":18097,"parameterSlots":2,"returnSlots":0},"@_validateNonce_104":{"entryPoint":2641,"id":104,"parameterSlots":1,"returnSlots":0},"@_validateSignature_4192":{"entryPoint":2422,"id":4192,"parameterSlots":2,"returnSlots":1},"@addDeposit_4267":{"entryPoint":1580,"id":4267,"parameterSlots":0,"returnSlots":0},"@entryPoint_3903":{"entryPoint":null,"id":3903,"parameterSlots":0,"returnSlots":1},"@executeBatch_4149":{"entryPoint":1051,"id":4149,"parameterSlots":6,"returnSlots":0},"@execute_4039":{"entryPoint":1919,"id":4039,"parameterSlots":4,"returnSlots":0},"@functionCallWithValue_12445":{"entryPoint":3309,"id":12445,"parameterSlots":3,"returnSlots":1},"@getDeposit_4250":{"entryPoint":2037,"id":4250,"parameterSlots":0,"returnSlots":1},"@getNonce_28":{"entryPoint":2179,"id":28,"parameterSlots":0,"returnSlots":1},"@getRoleAdmin_6900":{"entryPoint":null,"id":6900,"parameterSlots":1,"returnSlots":1},"@grantRole_6919":{"entryPoint":953,"id":6919,"parameterSlots":2,"returnSlots":0},"@hasRole_6852":{"entryPoint":1879,"id":6852,"parameterSlots":2,"returnSlots":1},"@recover_17854":{"entryPoint":3459,"id":17854,"parameterSlots":2,"returnSlots":1},"@renounceRole_6961":{"entryPoint":995,"id":6961,"parameterSlots":2,"returnSlots":0},"@revokeRole_6938":{"entryPoint":2264,"id":6938,"parameterSlots":2,"returnSlots":0},"@supportsInterface_18195":{"entryPoint":null,"id":18195,"parameterSlots":1,"returnSlots":1},"@supportsInterface_6834":{"entryPoint":862,"id":6834,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_18113":{"entryPoint":null,"id":18113,"parameterSlots":1,"returnSlots":1},"@tryRecover_17824":{"entryPoint":3652,"id":17824,"parameterSlots":2,"returnSlots":3},"@tryRecover_18012":{"entryPoint":3950,"id":18012,"parameterSlots":4,"returnSlots":3},"@validateUserOp_69":{"entryPoint":916,"id":69,"parameterSlots":3,"returnSlots":1},"@verifyCallResultFromTarget_12537":{"entryPoint":3560,"id":12537,"parameterSlots":3,"returnSlots":1},"@withdrawDepositTo_4286":{"entryPoint":1704,"id":4286,"parameterSlots":2,"returnSlots":0},"abi_decode_array_address_dyn_calldata":{"entryPoint":4357,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":4783,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_uint256":{"entryPoint":4588,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":4630,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":4429,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_bytes32":{"entryPoint":4268,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":4311,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":4150,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptrt_bytes32t_uint256":{"entryPoint":4189,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":4946,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed":{"entryPoint":4908,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":4969,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_IEntryPoint_$3566__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":4841,"id":null,"parameterSlots":2,"returnSlots":2},"checked_sub_t_uint256":{"entryPoint":4810,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x21":{"entryPoint":4991,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4763,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":4291,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9626:81","nodeType":"YulBlock","src":"0:9626:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"83:217:81","nodeType":"YulBlock","src":"83:217:81","statements":[{"body":{"nativeSrc":"129:16:81","nodeType":"YulBlock","src":"129:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:81","nodeType":"YulLiteral","src":"138:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:81","nodeType":"YulLiteral","src":"141:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:81","nodeType":"YulIdentifier","src":"131:6:81"},"nativeSrc":"131:12:81","nodeType":"YulFunctionCall","src":"131:12:81"},"nativeSrc":"131:12:81","nodeType":"YulExpressionStatement","src":"131:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:81","nodeType":"YulIdentifier","src":"104:7:81"},{"name":"headStart","nativeSrc":"113:9:81","nodeType":"YulIdentifier","src":"113:9:81"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:23:81","nodeType":"YulFunctionCall","src":"100:23:81"},{"kind":"number","nativeSrc":"125:2:81","nodeType":"YulLiteral","src":"125:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:81","nodeType":"YulIdentifier","src":"96:3:81"},"nativeSrc":"96:32:81","nodeType":"YulFunctionCall","src":"96:32:81"},"nativeSrc":"93:52:81","nodeType":"YulIf","src":"93:52:81"},{"nativeSrc":"154:36:81","nodeType":"YulVariableDeclaration","src":"154:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:81","nodeType":"YulIdentifier","src":"180:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:81","nodeType":"YulIdentifier","src":"167:12:81"},"nativeSrc":"167:23:81","nodeType":"YulFunctionCall","src":"167:23:81"},"variables":[{"name":"value","nativeSrc":"158:5:81","nodeType":"YulTypedName","src":"158:5:81","type":""}]},{"body":{"nativeSrc":"254:16:81","nodeType":"YulBlock","src":"254:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:81","nodeType":"YulLiteral","src":"263:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:81","nodeType":"YulLiteral","src":"266:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:81","nodeType":"YulIdentifier","src":"256:6:81"},"nativeSrc":"256:12:81","nodeType":"YulFunctionCall","src":"256:12:81"},"nativeSrc":"256:12:81","nodeType":"YulExpressionStatement","src":"256:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:81","nodeType":"YulIdentifier","src":"212:5:81"},{"arguments":[{"name":"value","nativeSrc":"223:5:81","nodeType":"YulIdentifier","src":"223:5:81"},{"arguments":[{"kind":"number","nativeSrc":"234:3:81","nodeType":"YulLiteral","src":"234:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:81","nodeType":"YulLiteral","src":"239:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:81","nodeType":"YulIdentifier","src":"230:3:81"},"nativeSrc":"230:20:81","nodeType":"YulFunctionCall","src":"230:20:81"}],"functionName":{"name":"and","nativeSrc":"219:3:81","nodeType":"YulIdentifier","src":"219:3:81"},"nativeSrc":"219:32:81","nodeType":"YulFunctionCall","src":"219:32:81"}],"functionName":{"name":"eq","nativeSrc":"209:2:81","nodeType":"YulIdentifier","src":"209:2:81"},"nativeSrc":"209:43:81","nodeType":"YulFunctionCall","src":"209:43:81"}],"functionName":{"name":"iszero","nativeSrc":"202:6:81","nodeType":"YulIdentifier","src":"202:6:81"},"nativeSrc":"202:51:81","nodeType":"YulFunctionCall","src":"202:51:81"},"nativeSrc":"199:71:81","nodeType":"YulIf","src":"199:71:81"},{"nativeSrc":"279:15:81","nodeType":"YulAssignment","src":"279:15:81","value":{"name":"value","nativeSrc":"289:5:81","nodeType":"YulIdentifier","src":"289:5:81"},"variableNames":[{"name":"value0","nativeSrc":"279:6:81","nodeType":"YulIdentifier","src":"279:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:81","nodeType":"YulTypedName","src":"49:9:81","type":""},{"name":"dataEnd","nativeSrc":"60:7:81","nodeType":"YulTypedName","src":"60:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:81","nodeType":"YulTypedName","src":"72:6:81","type":""}],"src":"14:286:81"},{"body":{"nativeSrc":"400:92:81","nodeType":"YulBlock","src":"400:92:81","statements":[{"nativeSrc":"410:26:81","nodeType":"YulAssignment","src":"410:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:81","nodeType":"YulIdentifier","src":"422:9:81"},{"kind":"number","nativeSrc":"433:2:81","nodeType":"YulLiteral","src":"433:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:81","nodeType":"YulIdentifier","src":"418:3:81"},"nativeSrc":"418:18:81","nodeType":"YulFunctionCall","src":"418:18:81"},"variableNames":[{"name":"tail","nativeSrc":"410:4:81","nodeType":"YulIdentifier","src":"410:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:81","nodeType":"YulIdentifier","src":"452:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:81","nodeType":"YulIdentifier","src":"477:6:81"}],"functionName":{"name":"iszero","nativeSrc":"470:6:81","nodeType":"YulIdentifier","src":"470:6:81"},"nativeSrc":"470:14:81","nodeType":"YulFunctionCall","src":"470:14:81"}],"functionName":{"name":"iszero","nativeSrc":"463:6:81","nodeType":"YulIdentifier","src":"463:6:81"},"nativeSrc":"463:22:81","nodeType":"YulFunctionCall","src":"463:22:81"}],"functionName":{"name":"mstore","nativeSrc":"445:6:81","nodeType":"YulIdentifier","src":"445:6:81"},"nativeSrc":"445:41:81","nodeType":"YulFunctionCall","src":"445:41:81"},"nativeSrc":"445:41:81","nodeType":"YulExpressionStatement","src":"445:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:81","nodeType":"YulTypedName","src":"369:9:81","type":""},{"name":"value0","nativeSrc":"380:6:81","nodeType":"YulTypedName","src":"380:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:81","nodeType":"YulTypedName","src":"391:4:81","type":""}],"src":"305:187:81"},{"body":{"nativeSrc":"598:76:81","nodeType":"YulBlock","src":"598:76:81","statements":[{"nativeSrc":"608:26:81","nodeType":"YulAssignment","src":"608:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:81","nodeType":"YulIdentifier","src":"620:9:81"},{"kind":"number","nativeSrc":"631:2:81","nodeType":"YulLiteral","src":"631:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:81","nodeType":"YulIdentifier","src":"616:3:81"},"nativeSrc":"616:18:81","nodeType":"YulFunctionCall","src":"616:18:81"},"variableNames":[{"name":"tail","nativeSrc":"608:4:81","nodeType":"YulIdentifier","src":"608:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:81","nodeType":"YulIdentifier","src":"650:9:81"},{"name":"value0","nativeSrc":"661:6:81","nodeType":"YulIdentifier","src":"661:6:81"}],"functionName":{"name":"mstore","nativeSrc":"643:6:81","nodeType":"YulIdentifier","src":"643:6:81"},"nativeSrc":"643:25:81","nodeType":"YulFunctionCall","src":"643:25:81"},"nativeSrc":"643:25:81","nodeType":"YulExpressionStatement","src":"643:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"497:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:81","nodeType":"YulTypedName","src":"567:9:81","type":""},{"name":"value0","nativeSrc":"578:6:81","nodeType":"YulTypedName","src":"578:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:81","nodeType":"YulTypedName","src":"589:4:81","type":""}],"src":"497:177:81"},{"body":{"nativeSrc":"822:490:81","nodeType":"YulBlock","src":"822:490:81","statements":[{"body":{"nativeSrc":"868:16:81","nodeType":"YulBlock","src":"868:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"877:1:81","nodeType":"YulLiteral","src":"877:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"880:1:81","nodeType":"YulLiteral","src":"880:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"870:6:81","nodeType":"YulIdentifier","src":"870:6:81"},"nativeSrc":"870:12:81","nodeType":"YulFunctionCall","src":"870:12:81"},"nativeSrc":"870:12:81","nodeType":"YulExpressionStatement","src":"870:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"843:7:81","nodeType":"YulIdentifier","src":"843:7:81"},{"name":"headStart","nativeSrc":"852:9:81","nodeType":"YulIdentifier","src":"852:9:81"}],"functionName":{"name":"sub","nativeSrc":"839:3:81","nodeType":"YulIdentifier","src":"839:3:81"},"nativeSrc":"839:23:81","nodeType":"YulFunctionCall","src":"839:23:81"},{"kind":"number","nativeSrc":"864:2:81","nodeType":"YulLiteral","src":"864:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"835:3:81","nodeType":"YulIdentifier","src":"835:3:81"},"nativeSrc":"835:32:81","nodeType":"YulFunctionCall","src":"835:32:81"},"nativeSrc":"832:52:81","nodeType":"YulIf","src":"832:52:81"},{"nativeSrc":"893:37:81","nodeType":"YulVariableDeclaration","src":"893:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"920:9:81","nodeType":"YulIdentifier","src":"920:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"907:12:81","nodeType":"YulIdentifier","src":"907:12:81"},"nativeSrc":"907:23:81","nodeType":"YulFunctionCall","src":"907:23:81"},"variables":[{"name":"offset","nativeSrc":"897:6:81","nodeType":"YulTypedName","src":"897:6:81","type":""}]},{"body":{"nativeSrc":"973:16:81","nodeType":"YulBlock","src":"973:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"982:1:81","nodeType":"YulLiteral","src":"982:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"985:1:81","nodeType":"YulLiteral","src":"985:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"975:6:81","nodeType":"YulIdentifier","src":"975:6:81"},"nativeSrc":"975:12:81","nodeType":"YulFunctionCall","src":"975:12:81"},"nativeSrc":"975:12:81","nodeType":"YulExpressionStatement","src":"975:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"945:6:81","nodeType":"YulIdentifier","src":"945:6:81"},{"kind":"number","nativeSrc":"953:18:81","nodeType":"YulLiteral","src":"953:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"942:2:81","nodeType":"YulIdentifier","src":"942:2:81"},"nativeSrc":"942:30:81","nodeType":"YulFunctionCall","src":"942:30:81"},"nativeSrc":"939:50:81","nodeType":"YulIf","src":"939:50:81"},{"nativeSrc":"998:32:81","nodeType":"YulVariableDeclaration","src":"998:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1012:9:81","nodeType":"YulIdentifier","src":"1012:9:81"},{"name":"offset","nativeSrc":"1023:6:81","nodeType":"YulIdentifier","src":"1023:6:81"}],"functionName":{"name":"add","nativeSrc":"1008:3:81","nodeType":"YulIdentifier","src":"1008:3:81"},"nativeSrc":"1008:22:81","nodeType":"YulFunctionCall","src":"1008:22:81"},"variables":[{"name":"_1","nativeSrc":"1002:2:81","nodeType":"YulTypedName","src":"1002:2:81","type":""}]},{"body":{"nativeSrc":"1069:16:81","nodeType":"YulBlock","src":"1069:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1078:1:81","nodeType":"YulLiteral","src":"1078:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1081:1:81","nodeType":"YulLiteral","src":"1081:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1071:6:81","nodeType":"YulIdentifier","src":"1071:6:81"},"nativeSrc":"1071:12:81","nodeType":"YulFunctionCall","src":"1071:12:81"},"nativeSrc":"1071:12:81","nodeType":"YulExpressionStatement","src":"1071:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1050:7:81","nodeType":"YulIdentifier","src":"1050:7:81"},{"name":"_1","nativeSrc":"1059:2:81","nodeType":"YulIdentifier","src":"1059:2:81"}],"functionName":{"name":"sub","nativeSrc":"1046:3:81","nodeType":"YulIdentifier","src":"1046:3:81"},"nativeSrc":"1046:16:81","nodeType":"YulFunctionCall","src":"1046:16:81"},{"kind":"number","nativeSrc":"1064:3:81","nodeType":"YulLiteral","src":"1064:3:81","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"1042:3:81","nodeType":"YulIdentifier","src":"1042:3:81"},"nativeSrc":"1042:26:81","nodeType":"YulFunctionCall","src":"1042:26:81"},"nativeSrc":"1039:46:81","nodeType":"YulIf","src":"1039:46:81"},{"nativeSrc":"1094:12:81","nodeType":"YulAssignment","src":"1094:12:81","value":{"name":"_1","nativeSrc":"1104:2:81","nodeType":"YulIdentifier","src":"1104:2:81"},"variableNames":[{"name":"value0","nativeSrc":"1094:6:81","nodeType":"YulIdentifier","src":"1094:6:81"}]},{"nativeSrc":"1115:14:81","nodeType":"YulVariableDeclaration","src":"1115:14:81","value":{"kind":"number","nativeSrc":"1128:1:81","nodeType":"YulLiteral","src":"1128:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1119:5:81","nodeType":"YulTypedName","src":"1119:5:81","type":""}]},{"nativeSrc":"1138:41:81","nodeType":"YulAssignment","src":"1138:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1164:9:81","nodeType":"YulIdentifier","src":"1164:9:81"},{"kind":"number","nativeSrc":"1175:2:81","nodeType":"YulLiteral","src":"1175:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1160:3:81","nodeType":"YulIdentifier","src":"1160:3:81"},"nativeSrc":"1160:18:81","nodeType":"YulFunctionCall","src":"1160:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1147:12:81","nodeType":"YulIdentifier","src":"1147:12:81"},"nativeSrc":"1147:32:81","nodeType":"YulFunctionCall","src":"1147:32:81"},"variableNames":[{"name":"value","nativeSrc":"1138:5:81","nodeType":"YulIdentifier","src":"1138:5:81"}]},{"nativeSrc":"1188:15:81","nodeType":"YulAssignment","src":"1188:15:81","value":{"name":"value","nativeSrc":"1198:5:81","nodeType":"YulIdentifier","src":"1198:5:81"},"variableNames":[{"name":"value1","nativeSrc":"1188:6:81","nodeType":"YulIdentifier","src":"1188:6:81"}]},{"nativeSrc":"1212:16:81","nodeType":"YulVariableDeclaration","src":"1212:16:81","value":{"kind":"number","nativeSrc":"1227:1:81","nodeType":"YulLiteral","src":"1227:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1216:7:81","nodeType":"YulTypedName","src":"1216:7:81","type":""}]},{"nativeSrc":"1237:43:81","nodeType":"YulAssignment","src":"1237:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1265:9:81","nodeType":"YulIdentifier","src":"1265:9:81"},{"kind":"number","nativeSrc":"1276:2:81","nodeType":"YulLiteral","src":"1276:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1261:3:81","nodeType":"YulIdentifier","src":"1261:3:81"},"nativeSrc":"1261:18:81","nodeType":"YulFunctionCall","src":"1261:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1248:12:81","nodeType":"YulIdentifier","src":"1248:12:81"},"nativeSrc":"1248:32:81","nodeType":"YulFunctionCall","src":"1248:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"1237:7:81","nodeType":"YulIdentifier","src":"1237:7:81"}]},{"nativeSrc":"1289:17:81","nodeType":"YulAssignment","src":"1289:17:81","value":{"name":"value_1","nativeSrc":"1299:7:81","nodeType":"YulIdentifier","src":"1299:7:81"},"variableNames":[{"name":"value2","nativeSrc":"1289:6:81","nodeType":"YulIdentifier","src":"1289:6:81"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptrt_bytes32t_uint256","nativeSrc":"679:633:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"772:9:81","nodeType":"YulTypedName","src":"772:9:81","type":""},{"name":"dataEnd","nativeSrc":"783:7:81","nodeType":"YulTypedName","src":"783:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"795:6:81","nodeType":"YulTypedName","src":"795:6:81","type":""},{"name":"value1","nativeSrc":"803:6:81","nodeType":"YulTypedName","src":"803:6:81","type":""},{"name":"value2","nativeSrc":"811:6:81","nodeType":"YulTypedName","src":"811:6:81","type":""}],"src":"679:633:81"},{"body":{"nativeSrc":"1418:76:81","nodeType":"YulBlock","src":"1418:76:81","statements":[{"nativeSrc":"1428:26:81","nodeType":"YulAssignment","src":"1428:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1440:9:81","nodeType":"YulIdentifier","src":"1440:9:81"},{"kind":"number","nativeSrc":"1451:2:81","nodeType":"YulLiteral","src":"1451:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1436:3:81","nodeType":"YulIdentifier","src":"1436:3:81"},"nativeSrc":"1436:18:81","nodeType":"YulFunctionCall","src":"1436:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1428:4:81","nodeType":"YulIdentifier","src":"1428:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1470:9:81","nodeType":"YulIdentifier","src":"1470:9:81"},{"name":"value0","nativeSrc":"1481:6:81","nodeType":"YulIdentifier","src":"1481:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1463:6:81","nodeType":"YulIdentifier","src":"1463:6:81"},"nativeSrc":"1463:25:81","nodeType":"YulFunctionCall","src":"1463:25:81"},"nativeSrc":"1463:25:81","nodeType":"YulExpressionStatement","src":"1463:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1317:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1387:9:81","nodeType":"YulTypedName","src":"1387:9:81","type":""},{"name":"value0","nativeSrc":"1398:6:81","nodeType":"YulTypedName","src":"1398:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1409:4:81","nodeType":"YulTypedName","src":"1409:4:81","type":""}],"src":"1317:177:81"},{"body":{"nativeSrc":"1569:156:81","nodeType":"YulBlock","src":"1569:156:81","statements":[{"body":{"nativeSrc":"1615:16:81","nodeType":"YulBlock","src":"1615:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1624:1:81","nodeType":"YulLiteral","src":"1624:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1627:1:81","nodeType":"YulLiteral","src":"1627:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1617:6:81","nodeType":"YulIdentifier","src":"1617:6:81"},"nativeSrc":"1617:12:81","nodeType":"YulFunctionCall","src":"1617:12:81"},"nativeSrc":"1617:12:81","nodeType":"YulExpressionStatement","src":"1617:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1590:7:81","nodeType":"YulIdentifier","src":"1590:7:81"},{"name":"headStart","nativeSrc":"1599:9:81","nodeType":"YulIdentifier","src":"1599:9:81"}],"functionName":{"name":"sub","nativeSrc":"1586:3:81","nodeType":"YulIdentifier","src":"1586:3:81"},"nativeSrc":"1586:23:81","nodeType":"YulFunctionCall","src":"1586:23:81"},{"kind":"number","nativeSrc":"1611:2:81","nodeType":"YulLiteral","src":"1611:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1582:3:81","nodeType":"YulIdentifier","src":"1582:3:81"},"nativeSrc":"1582:32:81","nodeType":"YulFunctionCall","src":"1582:32:81"},"nativeSrc":"1579:52:81","nodeType":"YulIf","src":"1579:52:81"},{"nativeSrc":"1640:14:81","nodeType":"YulVariableDeclaration","src":"1640:14:81","value":{"kind":"number","nativeSrc":"1653:1:81","nodeType":"YulLiteral","src":"1653:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1644:5:81","nodeType":"YulTypedName","src":"1644:5:81","type":""}]},{"nativeSrc":"1663:32:81","nodeType":"YulAssignment","src":"1663:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1685:9:81","nodeType":"YulIdentifier","src":"1685:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"1672:12:81","nodeType":"YulIdentifier","src":"1672:12:81"},"nativeSrc":"1672:23:81","nodeType":"YulFunctionCall","src":"1672:23:81"},"variableNames":[{"name":"value","nativeSrc":"1663:5:81","nodeType":"YulIdentifier","src":"1663:5:81"}]},{"nativeSrc":"1704:15:81","nodeType":"YulAssignment","src":"1704:15:81","value":{"name":"value","nativeSrc":"1714:5:81","nodeType":"YulIdentifier","src":"1714:5:81"},"variableNames":[{"name":"value0","nativeSrc":"1704:6:81","nodeType":"YulIdentifier","src":"1704:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"1499:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1535:9:81","nodeType":"YulTypedName","src":"1535:9:81","type":""},{"name":"dataEnd","nativeSrc":"1546:7:81","nodeType":"YulTypedName","src":"1546:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1558:6:81","nodeType":"YulTypedName","src":"1558:6:81","type":""}],"src":"1499:226:81"},{"body":{"nativeSrc":"1775:86:81","nodeType":"YulBlock","src":"1775:86:81","statements":[{"body":{"nativeSrc":"1839:16:81","nodeType":"YulBlock","src":"1839:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1848:1:81","nodeType":"YulLiteral","src":"1848:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1851:1:81","nodeType":"YulLiteral","src":"1851:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1841:6:81","nodeType":"YulIdentifier","src":"1841:6:81"},"nativeSrc":"1841:12:81","nodeType":"YulFunctionCall","src":"1841:12:81"},"nativeSrc":"1841:12:81","nodeType":"YulExpressionStatement","src":"1841:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1798:5:81","nodeType":"YulIdentifier","src":"1798:5:81"},{"arguments":[{"name":"value","nativeSrc":"1809:5:81","nodeType":"YulIdentifier","src":"1809:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1824:3:81","nodeType":"YulLiteral","src":"1824:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1829:1:81","nodeType":"YulLiteral","src":"1829:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1820:3:81","nodeType":"YulIdentifier","src":"1820:3:81"},"nativeSrc":"1820:11:81","nodeType":"YulFunctionCall","src":"1820:11:81"},{"kind":"number","nativeSrc":"1833:1:81","nodeType":"YulLiteral","src":"1833:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1816:3:81","nodeType":"YulIdentifier","src":"1816:3:81"},"nativeSrc":"1816:19:81","nodeType":"YulFunctionCall","src":"1816:19:81"}],"functionName":{"name":"and","nativeSrc":"1805:3:81","nodeType":"YulIdentifier","src":"1805:3:81"},"nativeSrc":"1805:31:81","nodeType":"YulFunctionCall","src":"1805:31:81"}],"functionName":{"name":"eq","nativeSrc":"1795:2:81","nodeType":"YulIdentifier","src":"1795:2:81"},"nativeSrc":"1795:42:81","nodeType":"YulFunctionCall","src":"1795:42:81"}],"functionName":{"name":"iszero","nativeSrc":"1788:6:81","nodeType":"YulIdentifier","src":"1788:6:81"},"nativeSrc":"1788:50:81","nodeType":"YulFunctionCall","src":"1788:50:81"},"nativeSrc":"1785:70:81","nodeType":"YulIf","src":"1785:70:81"}]},"name":"validator_revert_address","nativeSrc":"1730:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1764:5:81","nodeType":"YulTypedName","src":"1764:5:81","type":""}],"src":"1730:131:81"},{"body":{"nativeSrc":"1953:280:81","nodeType":"YulBlock","src":"1953:280:81","statements":[{"body":{"nativeSrc":"1999:16:81","nodeType":"YulBlock","src":"1999:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2008:1:81","nodeType":"YulLiteral","src":"2008:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2011:1:81","nodeType":"YulLiteral","src":"2011:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2001:6:81","nodeType":"YulIdentifier","src":"2001:6:81"},"nativeSrc":"2001:12:81","nodeType":"YulFunctionCall","src":"2001:12:81"},"nativeSrc":"2001:12:81","nodeType":"YulExpressionStatement","src":"2001:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1974:7:81","nodeType":"YulIdentifier","src":"1974:7:81"},{"name":"headStart","nativeSrc":"1983:9:81","nodeType":"YulIdentifier","src":"1983:9:81"}],"functionName":{"name":"sub","nativeSrc":"1970:3:81","nodeType":"YulIdentifier","src":"1970:3:81"},"nativeSrc":"1970:23:81","nodeType":"YulFunctionCall","src":"1970:23:81"},{"kind":"number","nativeSrc":"1995:2:81","nodeType":"YulLiteral","src":"1995:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1966:3:81","nodeType":"YulIdentifier","src":"1966:3:81"},"nativeSrc":"1966:32:81","nodeType":"YulFunctionCall","src":"1966:32:81"},"nativeSrc":"1963:52:81","nodeType":"YulIf","src":"1963:52:81"},{"nativeSrc":"2024:14:81","nodeType":"YulVariableDeclaration","src":"2024:14:81","value":{"kind":"number","nativeSrc":"2037:1:81","nodeType":"YulLiteral","src":"2037:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2028:5:81","nodeType":"YulTypedName","src":"2028:5:81","type":""}]},{"nativeSrc":"2047:32:81","nodeType":"YulAssignment","src":"2047:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2069:9:81","nodeType":"YulIdentifier","src":"2069:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2056:12:81","nodeType":"YulIdentifier","src":"2056:12:81"},"nativeSrc":"2056:23:81","nodeType":"YulFunctionCall","src":"2056:23:81"},"variableNames":[{"name":"value","nativeSrc":"2047:5:81","nodeType":"YulIdentifier","src":"2047:5:81"}]},{"nativeSrc":"2088:15:81","nodeType":"YulAssignment","src":"2088:15:81","value":{"name":"value","nativeSrc":"2098:5:81","nodeType":"YulIdentifier","src":"2098:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2088:6:81","nodeType":"YulIdentifier","src":"2088:6:81"}]},{"nativeSrc":"2112:47:81","nodeType":"YulVariableDeclaration","src":"2112:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2144:9:81","nodeType":"YulIdentifier","src":"2144:9:81"},{"kind":"number","nativeSrc":"2155:2:81","nodeType":"YulLiteral","src":"2155:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2140:3:81","nodeType":"YulIdentifier","src":"2140:3:81"},"nativeSrc":"2140:18:81","nodeType":"YulFunctionCall","src":"2140:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"2127:12:81","nodeType":"YulIdentifier","src":"2127:12:81"},"nativeSrc":"2127:32:81","nodeType":"YulFunctionCall","src":"2127:32:81"},"variables":[{"name":"value_1","nativeSrc":"2116:7:81","nodeType":"YulTypedName","src":"2116:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2193:7:81","nodeType":"YulIdentifier","src":"2193:7:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2168:24:81","nodeType":"YulIdentifier","src":"2168:24:81"},"nativeSrc":"2168:33:81","nodeType":"YulFunctionCall","src":"2168:33:81"},"nativeSrc":"2168:33:81","nodeType":"YulExpressionStatement","src":"2168:33:81"},{"nativeSrc":"2210:17:81","nodeType":"YulAssignment","src":"2210:17:81","value":{"name":"value_1","nativeSrc":"2220:7:81","nodeType":"YulIdentifier","src":"2220:7:81"},"variableNames":[{"name":"value1","nativeSrc":"2210:6:81","nodeType":"YulIdentifier","src":"2210:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nativeSrc":"1866:367:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1911:9:81","nodeType":"YulTypedName","src":"1911:9:81","type":""},{"name":"dataEnd","nativeSrc":"1922:7:81","nodeType":"YulTypedName","src":"1922:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1934:6:81","nodeType":"YulTypedName","src":"1934:6:81","type":""},{"name":"value1","nativeSrc":"1942:6:81","nodeType":"YulTypedName","src":"1942:6:81","type":""}],"src":"1866:367:81"},{"body":{"nativeSrc":"2322:283:81","nodeType":"YulBlock","src":"2322:283:81","statements":[{"body":{"nativeSrc":"2371:16:81","nodeType":"YulBlock","src":"2371:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2380:1:81","nodeType":"YulLiteral","src":"2380:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2383:1:81","nodeType":"YulLiteral","src":"2383:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2373:6:81","nodeType":"YulIdentifier","src":"2373:6:81"},"nativeSrc":"2373:12:81","nodeType":"YulFunctionCall","src":"2373:12:81"},"nativeSrc":"2373:12:81","nodeType":"YulExpressionStatement","src":"2373:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2350:6:81","nodeType":"YulIdentifier","src":"2350:6:81"},{"kind":"number","nativeSrc":"2358:4:81","nodeType":"YulLiteral","src":"2358:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2346:3:81","nodeType":"YulIdentifier","src":"2346:3:81"},"nativeSrc":"2346:17:81","nodeType":"YulFunctionCall","src":"2346:17:81"},{"name":"end","nativeSrc":"2365:3:81","nodeType":"YulIdentifier","src":"2365:3:81"}],"functionName":{"name":"slt","nativeSrc":"2342:3:81","nodeType":"YulIdentifier","src":"2342:3:81"},"nativeSrc":"2342:27:81","nodeType":"YulFunctionCall","src":"2342:27:81"}],"functionName":{"name":"iszero","nativeSrc":"2335:6:81","nodeType":"YulIdentifier","src":"2335:6:81"},"nativeSrc":"2335:35:81","nodeType":"YulFunctionCall","src":"2335:35:81"},"nativeSrc":"2332:55:81","nodeType":"YulIf","src":"2332:55:81"},{"nativeSrc":"2396:30:81","nodeType":"YulAssignment","src":"2396:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"2419:6:81","nodeType":"YulIdentifier","src":"2419:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"2406:12:81","nodeType":"YulIdentifier","src":"2406:12:81"},"nativeSrc":"2406:20:81","nodeType":"YulFunctionCall","src":"2406:20:81"},"variableNames":[{"name":"length","nativeSrc":"2396:6:81","nodeType":"YulIdentifier","src":"2396:6:81"}]},{"body":{"nativeSrc":"2469:16:81","nodeType":"YulBlock","src":"2469:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2478:1:81","nodeType":"YulLiteral","src":"2478:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2481:1:81","nodeType":"YulLiteral","src":"2481:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2471:6:81","nodeType":"YulIdentifier","src":"2471:6:81"},"nativeSrc":"2471:12:81","nodeType":"YulFunctionCall","src":"2471:12:81"},"nativeSrc":"2471:12:81","nodeType":"YulExpressionStatement","src":"2471:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2441:6:81","nodeType":"YulIdentifier","src":"2441:6:81"},{"kind":"number","nativeSrc":"2449:18:81","nodeType":"YulLiteral","src":"2449:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2438:2:81","nodeType":"YulIdentifier","src":"2438:2:81"},"nativeSrc":"2438:30:81","nodeType":"YulFunctionCall","src":"2438:30:81"},"nativeSrc":"2435:50:81","nodeType":"YulIf","src":"2435:50:81"},{"nativeSrc":"2494:29:81","nodeType":"YulAssignment","src":"2494:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"2510:6:81","nodeType":"YulIdentifier","src":"2510:6:81"},{"kind":"number","nativeSrc":"2518:4:81","nodeType":"YulLiteral","src":"2518:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2506:3:81","nodeType":"YulIdentifier","src":"2506:3:81"},"nativeSrc":"2506:17:81","nodeType":"YulFunctionCall","src":"2506:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"2494:8:81","nodeType":"YulIdentifier","src":"2494:8:81"}]},{"body":{"nativeSrc":"2583:16:81","nodeType":"YulBlock","src":"2583:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2592:1:81","nodeType":"YulLiteral","src":"2592:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2595:1:81","nodeType":"YulLiteral","src":"2595:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2585:6:81","nodeType":"YulIdentifier","src":"2585:6:81"},"nativeSrc":"2585:12:81","nodeType":"YulFunctionCall","src":"2585:12:81"},"nativeSrc":"2585:12:81","nodeType":"YulExpressionStatement","src":"2585:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2546:6:81","nodeType":"YulIdentifier","src":"2546:6:81"},{"arguments":[{"kind":"number","nativeSrc":"2558:1:81","nodeType":"YulLiteral","src":"2558:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"2561:6:81","nodeType":"YulIdentifier","src":"2561:6:81"}],"functionName":{"name":"shl","nativeSrc":"2554:3:81","nodeType":"YulIdentifier","src":"2554:3:81"},"nativeSrc":"2554:14:81","nodeType":"YulFunctionCall","src":"2554:14:81"}],"functionName":{"name":"add","nativeSrc":"2542:3:81","nodeType":"YulIdentifier","src":"2542:3:81"},"nativeSrc":"2542:27:81","nodeType":"YulFunctionCall","src":"2542:27:81"},{"kind":"number","nativeSrc":"2571:4:81","nodeType":"YulLiteral","src":"2571:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2538:3:81","nodeType":"YulIdentifier","src":"2538:3:81"},"nativeSrc":"2538:38:81","nodeType":"YulFunctionCall","src":"2538:38:81"},{"name":"end","nativeSrc":"2578:3:81","nodeType":"YulIdentifier","src":"2578:3:81"}],"functionName":{"name":"gt","nativeSrc":"2535:2:81","nodeType":"YulIdentifier","src":"2535:2:81"},"nativeSrc":"2535:47:81","nodeType":"YulFunctionCall","src":"2535:47:81"},"nativeSrc":"2532:67:81","nodeType":"YulIf","src":"2532:67:81"}]},"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"2238:367:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2285:6:81","nodeType":"YulTypedName","src":"2285:6:81","type":""},{"name":"end","nativeSrc":"2293:3:81","nodeType":"YulTypedName","src":"2293:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2301:8:81","nodeType":"YulTypedName","src":"2301:8:81","type":""},{"name":"length","nativeSrc":"2311:6:81","nodeType":"YulTypedName","src":"2311:6:81","type":""}],"src":"2238:367:81"},{"body":{"nativeSrc":"2830:890:81","nodeType":"YulBlock","src":"2830:890:81","statements":[{"body":{"nativeSrc":"2876:16:81","nodeType":"YulBlock","src":"2876:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2885:1:81","nodeType":"YulLiteral","src":"2885:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2888:1:81","nodeType":"YulLiteral","src":"2888:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2878:6:81","nodeType":"YulIdentifier","src":"2878:6:81"},"nativeSrc":"2878:12:81","nodeType":"YulFunctionCall","src":"2878:12:81"},"nativeSrc":"2878:12:81","nodeType":"YulExpressionStatement","src":"2878:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2851:7:81","nodeType":"YulIdentifier","src":"2851:7:81"},{"name":"headStart","nativeSrc":"2860:9:81","nodeType":"YulIdentifier","src":"2860:9:81"}],"functionName":{"name":"sub","nativeSrc":"2847:3:81","nodeType":"YulIdentifier","src":"2847:3:81"},"nativeSrc":"2847:23:81","nodeType":"YulFunctionCall","src":"2847:23:81"},{"kind":"number","nativeSrc":"2872:2:81","nodeType":"YulLiteral","src":"2872:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2843:3:81","nodeType":"YulIdentifier","src":"2843:3:81"},"nativeSrc":"2843:32:81","nodeType":"YulFunctionCall","src":"2843:32:81"},"nativeSrc":"2840:52:81","nodeType":"YulIf","src":"2840:52:81"},{"nativeSrc":"2901:37:81","nodeType":"YulVariableDeclaration","src":"2901:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2928:9:81","nodeType":"YulIdentifier","src":"2928:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2915:12:81","nodeType":"YulIdentifier","src":"2915:12:81"},"nativeSrc":"2915:23:81","nodeType":"YulFunctionCall","src":"2915:23:81"},"variables":[{"name":"offset","nativeSrc":"2905:6:81","nodeType":"YulTypedName","src":"2905:6:81","type":""}]},{"body":{"nativeSrc":"2981:16:81","nodeType":"YulBlock","src":"2981:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2990:1:81","nodeType":"YulLiteral","src":"2990:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2993:1:81","nodeType":"YulLiteral","src":"2993:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2983:6:81","nodeType":"YulIdentifier","src":"2983:6:81"},"nativeSrc":"2983:12:81","nodeType":"YulFunctionCall","src":"2983:12:81"},"nativeSrc":"2983:12:81","nodeType":"YulExpressionStatement","src":"2983:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2953:6:81","nodeType":"YulIdentifier","src":"2953:6:81"},{"kind":"number","nativeSrc":"2961:18:81","nodeType":"YulLiteral","src":"2961:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2950:2:81","nodeType":"YulIdentifier","src":"2950:2:81"},"nativeSrc":"2950:30:81","nodeType":"YulFunctionCall","src":"2950:30:81"},"nativeSrc":"2947:50:81","nodeType":"YulIf","src":"2947:50:81"},{"nativeSrc":"3006:96:81","nodeType":"YulVariableDeclaration","src":"3006:96:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3074:9:81","nodeType":"YulIdentifier","src":"3074:9:81"},{"name":"offset","nativeSrc":"3085:6:81","nodeType":"YulIdentifier","src":"3085:6:81"}],"functionName":{"name":"add","nativeSrc":"3070:3:81","nodeType":"YulIdentifier","src":"3070:3:81"},"nativeSrc":"3070:22:81","nodeType":"YulFunctionCall","src":"3070:22:81"},{"name":"dataEnd","nativeSrc":"3094:7:81","nodeType":"YulIdentifier","src":"3094:7:81"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3032:37:81","nodeType":"YulIdentifier","src":"3032:37:81"},"nativeSrc":"3032:70:81","nodeType":"YulFunctionCall","src":"3032:70:81"},"variables":[{"name":"value0_1","nativeSrc":"3010:8:81","nodeType":"YulTypedName","src":"3010:8:81","type":""},{"name":"value1_1","nativeSrc":"3020:8:81","nodeType":"YulTypedName","src":"3020:8:81","type":""}]},{"nativeSrc":"3111:18:81","nodeType":"YulAssignment","src":"3111:18:81","value":{"name":"value0_1","nativeSrc":"3121:8:81","nodeType":"YulIdentifier","src":"3121:8:81"},"variableNames":[{"name":"value0","nativeSrc":"3111:6:81","nodeType":"YulIdentifier","src":"3111:6:81"}]},{"nativeSrc":"3138:18:81","nodeType":"YulAssignment","src":"3138:18:81","value":{"name":"value1_1","nativeSrc":"3148:8:81","nodeType":"YulIdentifier","src":"3148:8:81"},"variableNames":[{"name":"value1","nativeSrc":"3138:6:81","nodeType":"YulIdentifier","src":"3138:6:81"}]},{"nativeSrc":"3165:48:81","nodeType":"YulVariableDeclaration","src":"3165:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3198:9:81","nodeType":"YulIdentifier","src":"3198:9:81"},{"kind":"number","nativeSrc":"3209:2:81","nodeType":"YulLiteral","src":"3209:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3194:3:81","nodeType":"YulIdentifier","src":"3194:3:81"},"nativeSrc":"3194:18:81","nodeType":"YulFunctionCall","src":"3194:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3181:12:81","nodeType":"YulIdentifier","src":"3181:12:81"},"nativeSrc":"3181:32:81","nodeType":"YulFunctionCall","src":"3181:32:81"},"variables":[{"name":"offset_1","nativeSrc":"3169:8:81","nodeType":"YulTypedName","src":"3169:8:81","type":""}]},{"body":{"nativeSrc":"3258:16:81","nodeType":"YulBlock","src":"3258:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3267:1:81","nodeType":"YulLiteral","src":"3267:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3270:1:81","nodeType":"YulLiteral","src":"3270:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3260:6:81","nodeType":"YulIdentifier","src":"3260:6:81"},"nativeSrc":"3260:12:81","nodeType":"YulFunctionCall","src":"3260:12:81"},"nativeSrc":"3260:12:81","nodeType":"YulExpressionStatement","src":"3260:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3228:8:81","nodeType":"YulIdentifier","src":"3228:8:81"},{"kind":"number","nativeSrc":"3238:18:81","nodeType":"YulLiteral","src":"3238:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3225:2:81","nodeType":"YulIdentifier","src":"3225:2:81"},"nativeSrc":"3225:32:81","nodeType":"YulFunctionCall","src":"3225:32:81"},"nativeSrc":"3222:52:81","nodeType":"YulIf","src":"3222:52:81"},{"nativeSrc":"3283:98:81","nodeType":"YulVariableDeclaration","src":"3283:98:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3351:9:81","nodeType":"YulIdentifier","src":"3351:9:81"},{"name":"offset_1","nativeSrc":"3362:8:81","nodeType":"YulIdentifier","src":"3362:8:81"}],"functionName":{"name":"add","nativeSrc":"3347:3:81","nodeType":"YulIdentifier","src":"3347:3:81"},"nativeSrc":"3347:24:81","nodeType":"YulFunctionCall","src":"3347:24:81"},{"name":"dataEnd","nativeSrc":"3373:7:81","nodeType":"YulIdentifier","src":"3373:7:81"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3309:37:81","nodeType":"YulIdentifier","src":"3309:37:81"},"nativeSrc":"3309:72:81","nodeType":"YulFunctionCall","src":"3309:72:81"},"variables":[{"name":"value2_1","nativeSrc":"3287:8:81","nodeType":"YulTypedName","src":"3287:8:81","type":""},{"name":"value3_1","nativeSrc":"3297:8:81","nodeType":"YulTypedName","src":"3297:8:81","type":""}]},{"nativeSrc":"3390:18:81","nodeType":"YulAssignment","src":"3390:18:81","value":{"name":"value2_1","nativeSrc":"3400:8:81","nodeType":"YulIdentifier","src":"3400:8:81"},"variableNames":[{"name":"value2","nativeSrc":"3390:6:81","nodeType":"YulIdentifier","src":"3390:6:81"}]},{"nativeSrc":"3417:18:81","nodeType":"YulAssignment","src":"3417:18:81","value":{"name":"value3_1","nativeSrc":"3427:8:81","nodeType":"YulIdentifier","src":"3427:8:81"},"variableNames":[{"name":"value3","nativeSrc":"3417:6:81","nodeType":"YulIdentifier","src":"3417:6:81"}]},{"nativeSrc":"3444:48:81","nodeType":"YulVariableDeclaration","src":"3444:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3477:9:81","nodeType":"YulIdentifier","src":"3477:9:81"},{"kind":"number","nativeSrc":"3488:2:81","nodeType":"YulLiteral","src":"3488:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3473:3:81","nodeType":"YulIdentifier","src":"3473:3:81"},"nativeSrc":"3473:18:81","nodeType":"YulFunctionCall","src":"3473:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3460:12:81","nodeType":"YulIdentifier","src":"3460:12:81"},"nativeSrc":"3460:32:81","nodeType":"YulFunctionCall","src":"3460:32:81"},"variables":[{"name":"offset_2","nativeSrc":"3448:8:81","nodeType":"YulTypedName","src":"3448:8:81","type":""}]},{"body":{"nativeSrc":"3537:16:81","nodeType":"YulBlock","src":"3537:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3546:1:81","nodeType":"YulLiteral","src":"3546:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3549:1:81","nodeType":"YulLiteral","src":"3549:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3539:6:81","nodeType":"YulIdentifier","src":"3539:6:81"},"nativeSrc":"3539:12:81","nodeType":"YulFunctionCall","src":"3539:12:81"},"nativeSrc":"3539:12:81","nodeType":"YulExpressionStatement","src":"3539:12:81"}]},"condition":{"arguments":[{"name":"offset_2","nativeSrc":"3507:8:81","nodeType":"YulIdentifier","src":"3507:8:81"},{"kind":"number","nativeSrc":"3517:18:81","nodeType":"YulLiteral","src":"3517:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3504:2:81","nodeType":"YulIdentifier","src":"3504:2:81"},"nativeSrc":"3504:32:81","nodeType":"YulFunctionCall","src":"3504:32:81"},"nativeSrc":"3501:52:81","nodeType":"YulIf","src":"3501:52:81"},{"nativeSrc":"3562:98:81","nodeType":"YulVariableDeclaration","src":"3562:98:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3630:9:81","nodeType":"YulIdentifier","src":"3630:9:81"},{"name":"offset_2","nativeSrc":"3641:8:81","nodeType":"YulIdentifier","src":"3641:8:81"}],"functionName":{"name":"add","nativeSrc":"3626:3:81","nodeType":"YulIdentifier","src":"3626:3:81"},"nativeSrc":"3626:24:81","nodeType":"YulFunctionCall","src":"3626:24:81"},{"name":"dataEnd","nativeSrc":"3652:7:81","nodeType":"YulIdentifier","src":"3652:7:81"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3588:37:81","nodeType":"YulIdentifier","src":"3588:37:81"},"nativeSrc":"3588:72:81","nodeType":"YulFunctionCall","src":"3588:72:81"},"variables":[{"name":"value4_1","nativeSrc":"3566:8:81","nodeType":"YulTypedName","src":"3566:8:81","type":""},{"name":"value5_1","nativeSrc":"3576:8:81","nodeType":"YulTypedName","src":"3576:8:81","type":""}]},{"nativeSrc":"3669:18:81","nodeType":"YulAssignment","src":"3669:18:81","value":{"name":"value4_1","nativeSrc":"3679:8:81","nodeType":"YulIdentifier","src":"3679:8:81"},"variableNames":[{"name":"value4","nativeSrc":"3669:6:81","nodeType":"YulIdentifier","src":"3669:6:81"}]},{"nativeSrc":"3696:18:81","nodeType":"YulAssignment","src":"3696:18:81","value":{"name":"value5_1","nativeSrc":"3706:8:81","nodeType":"YulIdentifier","src":"3706:8:81"},"variableNames":[{"name":"value5","nativeSrc":"3696:6:81","nodeType":"YulIdentifier","src":"3696:6:81"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"2610:1110:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2756:9:81","nodeType":"YulTypedName","src":"2756:9:81","type":""},{"name":"dataEnd","nativeSrc":"2767:7:81","nodeType":"YulTypedName","src":"2767:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2779:6:81","nodeType":"YulTypedName","src":"2779:6:81","type":""},{"name":"value1","nativeSrc":"2787:6:81","nodeType":"YulTypedName","src":"2787:6:81","type":""},{"name":"value2","nativeSrc":"2795:6:81","nodeType":"YulTypedName","src":"2795:6:81","type":""},{"name":"value3","nativeSrc":"2803:6:81","nodeType":"YulTypedName","src":"2803:6:81","type":""},{"name":"value4","nativeSrc":"2811:6:81","nodeType":"YulTypedName","src":"2811:6:81","type":""},{"name":"value5","nativeSrc":"2819:6:81","nodeType":"YulTypedName","src":"2819:6:81","type":""}],"src":"2610:1110:81"},{"body":{"nativeSrc":"3820:280:81","nodeType":"YulBlock","src":"3820:280:81","statements":[{"body":{"nativeSrc":"3866:16:81","nodeType":"YulBlock","src":"3866:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3875:1:81","nodeType":"YulLiteral","src":"3875:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3878:1:81","nodeType":"YulLiteral","src":"3878:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3868:6:81","nodeType":"YulIdentifier","src":"3868:6:81"},"nativeSrc":"3868:12:81","nodeType":"YulFunctionCall","src":"3868:12:81"},"nativeSrc":"3868:12:81","nodeType":"YulExpressionStatement","src":"3868:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3841:7:81","nodeType":"YulIdentifier","src":"3841:7:81"},{"name":"headStart","nativeSrc":"3850:9:81","nodeType":"YulIdentifier","src":"3850:9:81"}],"functionName":{"name":"sub","nativeSrc":"3837:3:81","nodeType":"YulIdentifier","src":"3837:3:81"},"nativeSrc":"3837:23:81","nodeType":"YulFunctionCall","src":"3837:23:81"},{"kind":"number","nativeSrc":"3862:2:81","nodeType":"YulLiteral","src":"3862:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3833:3:81","nodeType":"YulIdentifier","src":"3833:3:81"},"nativeSrc":"3833:32:81","nodeType":"YulFunctionCall","src":"3833:32:81"},"nativeSrc":"3830:52:81","nodeType":"YulIf","src":"3830:52:81"},{"nativeSrc":"3891:36:81","nodeType":"YulVariableDeclaration","src":"3891:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3917:9:81","nodeType":"YulIdentifier","src":"3917:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3904:12:81","nodeType":"YulIdentifier","src":"3904:12:81"},"nativeSrc":"3904:23:81","nodeType":"YulFunctionCall","src":"3904:23:81"},"variables":[{"name":"value","nativeSrc":"3895:5:81","nodeType":"YulTypedName","src":"3895:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3961:5:81","nodeType":"YulIdentifier","src":"3961:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3936:24:81","nodeType":"YulIdentifier","src":"3936:24:81"},"nativeSrc":"3936:31:81","nodeType":"YulFunctionCall","src":"3936:31:81"},"nativeSrc":"3936:31:81","nodeType":"YulExpressionStatement","src":"3936:31:81"},{"nativeSrc":"3976:15:81","nodeType":"YulAssignment","src":"3976:15:81","value":{"name":"value","nativeSrc":"3986:5:81","nodeType":"YulIdentifier","src":"3986:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3976:6:81","nodeType":"YulIdentifier","src":"3976:6:81"}]},{"nativeSrc":"4000:16:81","nodeType":"YulVariableDeclaration","src":"4000:16:81","value":{"kind":"number","nativeSrc":"4015:1:81","nodeType":"YulLiteral","src":"4015:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4004:7:81","nodeType":"YulTypedName","src":"4004:7:81","type":""}]},{"nativeSrc":"4025:43:81","nodeType":"YulAssignment","src":"4025:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4053:9:81","nodeType":"YulIdentifier","src":"4053:9:81"},{"kind":"number","nativeSrc":"4064:2:81","nodeType":"YulLiteral","src":"4064:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4049:3:81","nodeType":"YulIdentifier","src":"4049:3:81"},"nativeSrc":"4049:18:81","nodeType":"YulFunctionCall","src":"4049:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"4036:12:81","nodeType":"YulIdentifier","src":"4036:12:81"},"nativeSrc":"4036:32:81","nodeType":"YulFunctionCall","src":"4036:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"4025:7:81","nodeType":"YulIdentifier","src":"4025:7:81"}]},{"nativeSrc":"4077:17:81","nodeType":"YulAssignment","src":"4077:17:81","value":{"name":"value_1","nativeSrc":"4087:7:81","nodeType":"YulIdentifier","src":"4087:7:81"},"variableNames":[{"name":"value1","nativeSrc":"4077:6:81","nodeType":"YulIdentifier","src":"4077:6:81"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"3725:375:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3778:9:81","nodeType":"YulTypedName","src":"3778:9:81","type":""},{"name":"dataEnd","nativeSrc":"3789:7:81","nodeType":"YulTypedName","src":"3789:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3801:6:81","nodeType":"YulTypedName","src":"3801:6:81","type":""},{"name":"value1","nativeSrc":"3809:6:81","nodeType":"YulTypedName","src":"3809:6:81","type":""}],"src":"3725:375:81"},{"body":{"nativeSrc":"4226:102:81","nodeType":"YulBlock","src":"4226:102:81","statements":[{"nativeSrc":"4236:26:81","nodeType":"YulAssignment","src":"4236:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4248:9:81","nodeType":"YulIdentifier","src":"4248:9:81"},{"kind":"number","nativeSrc":"4259:2:81","nodeType":"YulLiteral","src":"4259:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4244:3:81","nodeType":"YulIdentifier","src":"4244:3:81"},"nativeSrc":"4244:18:81","nodeType":"YulFunctionCall","src":"4244:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4236:4:81","nodeType":"YulIdentifier","src":"4236:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4278:9:81","nodeType":"YulIdentifier","src":"4278:9:81"},{"arguments":[{"name":"value0","nativeSrc":"4293:6:81","nodeType":"YulIdentifier","src":"4293:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4309:3:81","nodeType":"YulLiteral","src":"4309:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"4314:1:81","nodeType":"YulLiteral","src":"4314:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4305:3:81","nodeType":"YulIdentifier","src":"4305:3:81"},"nativeSrc":"4305:11:81","nodeType":"YulFunctionCall","src":"4305:11:81"},{"kind":"number","nativeSrc":"4318:1:81","nodeType":"YulLiteral","src":"4318:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4301:3:81","nodeType":"YulIdentifier","src":"4301:3:81"},"nativeSrc":"4301:19:81","nodeType":"YulFunctionCall","src":"4301:19:81"}],"functionName":{"name":"and","nativeSrc":"4289:3:81","nodeType":"YulIdentifier","src":"4289:3:81"},"nativeSrc":"4289:32:81","nodeType":"YulFunctionCall","src":"4289:32:81"}],"functionName":{"name":"mstore","nativeSrc":"4271:6:81","nodeType":"YulIdentifier","src":"4271:6:81"},"nativeSrc":"4271:51:81","nodeType":"YulFunctionCall","src":"4271:51:81"},"nativeSrc":"4271:51:81","nodeType":"YulExpressionStatement","src":"4271:51:81"}]},"name":"abi_encode_tuple_t_contract$_IEntryPoint_$3566__to_t_address__fromStack_reversed","nativeSrc":"4105:223:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4195:9:81","nodeType":"YulTypedName","src":"4195:9:81","type":""},{"name":"value0","nativeSrc":"4206:6:81","nodeType":"YulTypedName","src":"4206:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4217:4:81","nodeType":"YulTypedName","src":"4217:4:81","type":""}],"src":"4105:223:81"},{"body":{"nativeSrc":"4456:718:81","nodeType":"YulBlock","src":"4456:718:81","statements":[{"body":{"nativeSrc":"4502:16:81","nodeType":"YulBlock","src":"4502:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4511:1:81","nodeType":"YulLiteral","src":"4511:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4514:1:81","nodeType":"YulLiteral","src":"4514:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4504:6:81","nodeType":"YulIdentifier","src":"4504:6:81"},"nativeSrc":"4504:12:81","nodeType":"YulFunctionCall","src":"4504:12:81"},"nativeSrc":"4504:12:81","nodeType":"YulExpressionStatement","src":"4504:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4477:7:81","nodeType":"YulIdentifier","src":"4477:7:81"},{"name":"headStart","nativeSrc":"4486:9:81","nodeType":"YulIdentifier","src":"4486:9:81"}],"functionName":{"name":"sub","nativeSrc":"4473:3:81","nodeType":"YulIdentifier","src":"4473:3:81"},"nativeSrc":"4473:23:81","nodeType":"YulFunctionCall","src":"4473:23:81"},{"kind":"number","nativeSrc":"4498:2:81","nodeType":"YulLiteral","src":"4498:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4469:3:81","nodeType":"YulIdentifier","src":"4469:3:81"},"nativeSrc":"4469:32:81","nodeType":"YulFunctionCall","src":"4469:32:81"},"nativeSrc":"4466:52:81","nodeType":"YulIf","src":"4466:52:81"},{"nativeSrc":"4527:36:81","nodeType":"YulVariableDeclaration","src":"4527:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4553:9:81","nodeType":"YulIdentifier","src":"4553:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"4540:12:81","nodeType":"YulIdentifier","src":"4540:12:81"},"nativeSrc":"4540:23:81","nodeType":"YulFunctionCall","src":"4540:23:81"},"variables":[{"name":"value","nativeSrc":"4531:5:81","nodeType":"YulTypedName","src":"4531:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4597:5:81","nodeType":"YulIdentifier","src":"4597:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4572:24:81","nodeType":"YulIdentifier","src":"4572:24:81"},"nativeSrc":"4572:31:81","nodeType":"YulFunctionCall","src":"4572:31:81"},"nativeSrc":"4572:31:81","nodeType":"YulExpressionStatement","src":"4572:31:81"},{"nativeSrc":"4612:15:81","nodeType":"YulAssignment","src":"4612:15:81","value":{"name":"value","nativeSrc":"4622:5:81","nodeType":"YulIdentifier","src":"4622:5:81"},"variableNames":[{"name":"value0","nativeSrc":"4612:6:81","nodeType":"YulIdentifier","src":"4612:6:81"}]},{"nativeSrc":"4636:16:81","nodeType":"YulVariableDeclaration","src":"4636:16:81","value":{"kind":"number","nativeSrc":"4651:1:81","nodeType":"YulLiteral","src":"4651:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4640:7:81","nodeType":"YulTypedName","src":"4640:7:81","type":""}]},{"nativeSrc":"4661:43:81","nodeType":"YulAssignment","src":"4661:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4689:9:81","nodeType":"YulIdentifier","src":"4689:9:81"},{"kind":"number","nativeSrc":"4700:2:81","nodeType":"YulLiteral","src":"4700:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4685:3:81","nodeType":"YulIdentifier","src":"4685:3:81"},"nativeSrc":"4685:18:81","nodeType":"YulFunctionCall","src":"4685:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"4672:12:81","nodeType":"YulIdentifier","src":"4672:12:81"},"nativeSrc":"4672:32:81","nodeType":"YulFunctionCall","src":"4672:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"4661:7:81","nodeType":"YulIdentifier","src":"4661:7:81"}]},{"nativeSrc":"4713:17:81","nodeType":"YulAssignment","src":"4713:17:81","value":{"name":"value_1","nativeSrc":"4723:7:81","nodeType":"YulIdentifier","src":"4723:7:81"},"variableNames":[{"name":"value1","nativeSrc":"4713:6:81","nodeType":"YulIdentifier","src":"4713:6:81"}]},{"nativeSrc":"4739:46:81","nodeType":"YulVariableDeclaration","src":"4739:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4770:9:81","nodeType":"YulIdentifier","src":"4770:9:81"},{"kind":"number","nativeSrc":"4781:2:81","nodeType":"YulLiteral","src":"4781:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4766:3:81","nodeType":"YulIdentifier","src":"4766:3:81"},"nativeSrc":"4766:18:81","nodeType":"YulFunctionCall","src":"4766:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"4753:12:81","nodeType":"YulIdentifier","src":"4753:12:81"},"nativeSrc":"4753:32:81","nodeType":"YulFunctionCall","src":"4753:32:81"},"variables":[{"name":"offset","nativeSrc":"4743:6:81","nodeType":"YulTypedName","src":"4743:6:81","type":""}]},{"body":{"nativeSrc":"4828:16:81","nodeType":"YulBlock","src":"4828:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4837:1:81","nodeType":"YulLiteral","src":"4837:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4840:1:81","nodeType":"YulLiteral","src":"4840:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4830:6:81","nodeType":"YulIdentifier","src":"4830:6:81"},"nativeSrc":"4830:12:81","nodeType":"YulFunctionCall","src":"4830:12:81"},"nativeSrc":"4830:12:81","nodeType":"YulExpressionStatement","src":"4830:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4800:6:81","nodeType":"YulIdentifier","src":"4800:6:81"},{"kind":"number","nativeSrc":"4808:18:81","nodeType":"YulLiteral","src":"4808:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4797:2:81","nodeType":"YulIdentifier","src":"4797:2:81"},"nativeSrc":"4797:30:81","nodeType":"YulFunctionCall","src":"4797:30:81"},"nativeSrc":"4794:50:81","nodeType":"YulIf","src":"4794:50:81"},{"nativeSrc":"4853:32:81","nodeType":"YulVariableDeclaration","src":"4853:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4867:9:81","nodeType":"YulIdentifier","src":"4867:9:81"},{"name":"offset","nativeSrc":"4878:6:81","nodeType":"YulIdentifier","src":"4878:6:81"}],"functionName":{"name":"add","nativeSrc":"4863:3:81","nodeType":"YulIdentifier","src":"4863:3:81"},"nativeSrc":"4863:22:81","nodeType":"YulFunctionCall","src":"4863:22:81"},"variables":[{"name":"_1","nativeSrc":"4857:2:81","nodeType":"YulTypedName","src":"4857:2:81","type":""}]},{"body":{"nativeSrc":"4933:16:81","nodeType":"YulBlock","src":"4933:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4942:1:81","nodeType":"YulLiteral","src":"4942:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4945:1:81","nodeType":"YulLiteral","src":"4945:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4935:6:81","nodeType":"YulIdentifier","src":"4935:6:81"},"nativeSrc":"4935:12:81","nodeType":"YulFunctionCall","src":"4935:12:81"},"nativeSrc":"4935:12:81","nodeType":"YulExpressionStatement","src":"4935:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4912:2:81","nodeType":"YulIdentifier","src":"4912:2:81"},{"kind":"number","nativeSrc":"4916:4:81","nodeType":"YulLiteral","src":"4916:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4908:3:81","nodeType":"YulIdentifier","src":"4908:3:81"},"nativeSrc":"4908:13:81","nodeType":"YulFunctionCall","src":"4908:13:81"},{"name":"dataEnd","nativeSrc":"4923:7:81","nodeType":"YulIdentifier","src":"4923:7:81"}],"functionName":{"name":"slt","nativeSrc":"4904:3:81","nodeType":"YulIdentifier","src":"4904:3:81"},"nativeSrc":"4904:27:81","nodeType":"YulFunctionCall","src":"4904:27:81"}],"functionName":{"name":"iszero","nativeSrc":"4897:6:81","nodeType":"YulIdentifier","src":"4897:6:81"},"nativeSrc":"4897:35:81","nodeType":"YulFunctionCall","src":"4897:35:81"},"nativeSrc":"4894:55:81","nodeType":"YulIf","src":"4894:55:81"},{"nativeSrc":"4958:30:81","nodeType":"YulVariableDeclaration","src":"4958:30:81","value":{"arguments":[{"name":"_1","nativeSrc":"4985:2:81","nodeType":"YulIdentifier","src":"4985:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"4972:12:81","nodeType":"YulIdentifier","src":"4972:12:81"},"nativeSrc":"4972:16:81","nodeType":"YulFunctionCall","src":"4972:16:81"},"variables":[{"name":"length","nativeSrc":"4962:6:81","nodeType":"YulTypedName","src":"4962:6:81","type":""}]},{"body":{"nativeSrc":"5031:16:81","nodeType":"YulBlock","src":"5031:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5040:1:81","nodeType":"YulLiteral","src":"5040:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5043:1:81","nodeType":"YulLiteral","src":"5043:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5033:6:81","nodeType":"YulIdentifier","src":"5033:6:81"},"nativeSrc":"5033:12:81","nodeType":"YulFunctionCall","src":"5033:12:81"},"nativeSrc":"5033:12:81","nodeType":"YulExpressionStatement","src":"5033:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5003:6:81","nodeType":"YulIdentifier","src":"5003:6:81"},{"kind":"number","nativeSrc":"5011:18:81","nodeType":"YulLiteral","src":"5011:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5000:2:81","nodeType":"YulIdentifier","src":"5000:2:81"},"nativeSrc":"5000:30:81","nodeType":"YulFunctionCall","src":"5000:30:81"},"nativeSrc":"4997:50:81","nodeType":"YulIf","src":"4997:50:81"},{"body":{"nativeSrc":"5097:16:81","nodeType":"YulBlock","src":"5097:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5106:1:81","nodeType":"YulLiteral","src":"5106:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5109:1:81","nodeType":"YulLiteral","src":"5109:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5099:6:81","nodeType":"YulIdentifier","src":"5099:6:81"},"nativeSrc":"5099:12:81","nodeType":"YulFunctionCall","src":"5099:12:81"},"nativeSrc":"5099:12:81","nodeType":"YulExpressionStatement","src":"5099:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5070:2:81","nodeType":"YulIdentifier","src":"5070:2:81"},{"name":"length","nativeSrc":"5074:6:81","nodeType":"YulIdentifier","src":"5074:6:81"}],"functionName":{"name":"add","nativeSrc":"5066:3:81","nodeType":"YulIdentifier","src":"5066:3:81"},"nativeSrc":"5066:15:81","nodeType":"YulFunctionCall","src":"5066:15:81"},{"kind":"number","nativeSrc":"5083:2:81","nodeType":"YulLiteral","src":"5083:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5062:3:81","nodeType":"YulIdentifier","src":"5062:3:81"},"nativeSrc":"5062:24:81","nodeType":"YulFunctionCall","src":"5062:24:81"},{"name":"dataEnd","nativeSrc":"5088:7:81","nodeType":"YulIdentifier","src":"5088:7:81"}],"functionName":{"name":"gt","nativeSrc":"5059:2:81","nodeType":"YulIdentifier","src":"5059:2:81"},"nativeSrc":"5059:37:81","nodeType":"YulFunctionCall","src":"5059:37:81"},"nativeSrc":"5056:57:81","nodeType":"YulIf","src":"5056:57:81"},{"nativeSrc":"5122:21:81","nodeType":"YulAssignment","src":"5122:21:81","value":{"arguments":[{"name":"_1","nativeSrc":"5136:2:81","nodeType":"YulIdentifier","src":"5136:2:81"},{"kind":"number","nativeSrc":"5140:2:81","nodeType":"YulLiteral","src":"5140:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5132:3:81","nodeType":"YulIdentifier","src":"5132:3:81"},"nativeSrc":"5132:11:81","nodeType":"YulFunctionCall","src":"5132:11:81"},"variableNames":[{"name":"value2","nativeSrc":"5122:6:81","nodeType":"YulIdentifier","src":"5122:6:81"}]},{"nativeSrc":"5152:16:81","nodeType":"YulAssignment","src":"5152:16:81","value":{"name":"length","nativeSrc":"5162:6:81","nodeType":"YulIdentifier","src":"5162:6:81"},"variableNames":[{"name":"value3","nativeSrc":"5152:6:81","nodeType":"YulIdentifier","src":"5152:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"4333:841:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4398:9:81","nodeType":"YulTypedName","src":"4398:9:81","type":""},{"name":"dataEnd","nativeSrc":"4409:7:81","nodeType":"YulTypedName","src":"4409:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4421:6:81","nodeType":"YulTypedName","src":"4421:6:81","type":""},{"name":"value1","nativeSrc":"4429:6:81","nodeType":"YulTypedName","src":"4429:6:81","type":""},{"name":"value2","nativeSrc":"4437:6:81","nodeType":"YulTypedName","src":"4437:6:81","type":""},{"name":"value3","nativeSrc":"4445:6:81","nodeType":"YulTypedName","src":"4445:6:81","type":""}],"src":"4333:841:81"},{"body":{"nativeSrc":"5211:95:81","nodeType":"YulBlock","src":"5211:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5228:1:81","nodeType":"YulLiteral","src":"5228:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5235:3:81","nodeType":"YulLiteral","src":"5235:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"5240:10:81","nodeType":"YulLiteral","src":"5240:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5231:3:81","nodeType":"YulIdentifier","src":"5231:3:81"},"nativeSrc":"5231:20:81","nodeType":"YulFunctionCall","src":"5231:20:81"}],"functionName":{"name":"mstore","nativeSrc":"5221:6:81","nodeType":"YulIdentifier","src":"5221:6:81"},"nativeSrc":"5221:31:81","nodeType":"YulFunctionCall","src":"5221:31:81"},"nativeSrc":"5221:31:81","nodeType":"YulExpressionStatement","src":"5221:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5268:1:81","nodeType":"YulLiteral","src":"5268:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"5271:4:81","nodeType":"YulLiteral","src":"5271:4:81","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"5261:6:81","nodeType":"YulIdentifier","src":"5261:6:81"},"nativeSrc":"5261:15:81","nodeType":"YulFunctionCall","src":"5261:15:81"},"nativeSrc":"5261:15:81","nodeType":"YulExpressionStatement","src":"5261:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5292:1:81","nodeType":"YulLiteral","src":"5292:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5295:4:81","nodeType":"YulLiteral","src":"5295:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5285:6:81","nodeType":"YulIdentifier","src":"5285:6:81"},"nativeSrc":"5285:15:81","nodeType":"YulFunctionCall","src":"5285:15:81"},"nativeSrc":"5285:15:81","nodeType":"YulExpressionStatement","src":"5285:15:81"}]},"name":"panic_error_0x32","nativeSrc":"5179:127:81","nodeType":"YulFunctionDefinition","src":"5179:127:81"},{"body":{"nativeSrc":"5381:177:81","nodeType":"YulBlock","src":"5381:177:81","statements":[{"body":{"nativeSrc":"5427:16:81","nodeType":"YulBlock","src":"5427:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5436:1:81","nodeType":"YulLiteral","src":"5436:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5439:1:81","nodeType":"YulLiteral","src":"5439:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5429:6:81","nodeType":"YulIdentifier","src":"5429:6:81"},"nativeSrc":"5429:12:81","nodeType":"YulFunctionCall","src":"5429:12:81"},"nativeSrc":"5429:12:81","nodeType":"YulExpressionStatement","src":"5429:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5402:7:81","nodeType":"YulIdentifier","src":"5402:7:81"},{"name":"headStart","nativeSrc":"5411:9:81","nodeType":"YulIdentifier","src":"5411:9:81"}],"functionName":{"name":"sub","nativeSrc":"5398:3:81","nodeType":"YulIdentifier","src":"5398:3:81"},"nativeSrc":"5398:23:81","nodeType":"YulFunctionCall","src":"5398:23:81"},{"kind":"number","nativeSrc":"5423:2:81","nodeType":"YulLiteral","src":"5423:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5394:3:81","nodeType":"YulIdentifier","src":"5394:3:81"},"nativeSrc":"5394:32:81","nodeType":"YulFunctionCall","src":"5394:32:81"},"nativeSrc":"5391:52:81","nodeType":"YulIf","src":"5391:52:81"},{"nativeSrc":"5452:36:81","nodeType":"YulVariableDeclaration","src":"5452:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5478:9:81","nodeType":"YulIdentifier","src":"5478:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5465:12:81","nodeType":"YulIdentifier","src":"5465:12:81"},"nativeSrc":"5465:23:81","nodeType":"YulFunctionCall","src":"5465:23:81"},"variables":[{"name":"value","nativeSrc":"5456:5:81","nodeType":"YulTypedName","src":"5456:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5522:5:81","nodeType":"YulIdentifier","src":"5522:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5497:24:81","nodeType":"YulIdentifier","src":"5497:24:81"},"nativeSrc":"5497:31:81","nodeType":"YulFunctionCall","src":"5497:31:81"},"nativeSrc":"5497:31:81","nodeType":"YulExpressionStatement","src":"5497:31:81"},{"nativeSrc":"5537:15:81","nodeType":"YulAssignment","src":"5537:15:81","value":{"name":"value","nativeSrc":"5547:5:81","nodeType":"YulIdentifier","src":"5547:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5537:6:81","nodeType":"YulIdentifier","src":"5537:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5311:247:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5347:9:81","nodeType":"YulTypedName","src":"5347:9:81","type":""},{"name":"dataEnd","nativeSrc":"5358:7:81","nodeType":"YulTypedName","src":"5358:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5370:6:81","nodeType":"YulTypedName","src":"5370:6:81","type":""}],"src":"5311:247:81"},{"body":{"nativeSrc":"5612:176:81","nodeType":"YulBlock","src":"5612:176:81","statements":[{"nativeSrc":"5622:17:81","nodeType":"YulAssignment","src":"5622:17:81","value":{"arguments":[{"name":"x","nativeSrc":"5634:1:81","nodeType":"YulIdentifier","src":"5634:1:81"},{"name":"y","nativeSrc":"5637:1:81","nodeType":"YulIdentifier","src":"5637:1:81"}],"functionName":{"name":"sub","nativeSrc":"5630:3:81","nodeType":"YulIdentifier","src":"5630:3:81"},"nativeSrc":"5630:9:81","nodeType":"YulFunctionCall","src":"5630:9:81"},"variableNames":[{"name":"diff","nativeSrc":"5622:4:81","nodeType":"YulIdentifier","src":"5622:4:81"}]},{"body":{"nativeSrc":"5671:111:81","nodeType":"YulBlock","src":"5671:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5692:1:81","nodeType":"YulLiteral","src":"5692:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5699:3:81","nodeType":"YulLiteral","src":"5699:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"5704:10:81","nodeType":"YulLiteral","src":"5704:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5695:3:81","nodeType":"YulIdentifier","src":"5695:3:81"},"nativeSrc":"5695:20:81","nodeType":"YulFunctionCall","src":"5695:20:81"}],"functionName":{"name":"mstore","nativeSrc":"5685:6:81","nodeType":"YulIdentifier","src":"5685:6:81"},"nativeSrc":"5685:31:81","nodeType":"YulFunctionCall","src":"5685:31:81"},"nativeSrc":"5685:31:81","nodeType":"YulExpressionStatement","src":"5685:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5736:1:81","nodeType":"YulLiteral","src":"5736:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"5739:4:81","nodeType":"YulLiteral","src":"5739:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"5729:6:81","nodeType":"YulIdentifier","src":"5729:6:81"},"nativeSrc":"5729:15:81","nodeType":"YulFunctionCall","src":"5729:15:81"},"nativeSrc":"5729:15:81","nodeType":"YulExpressionStatement","src":"5729:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5764:1:81","nodeType":"YulLiteral","src":"5764:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5767:4:81","nodeType":"YulLiteral","src":"5767:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5757:6:81","nodeType":"YulIdentifier","src":"5757:6:81"},"nativeSrc":"5757:15:81","nodeType":"YulFunctionCall","src":"5757:15:81"},"nativeSrc":"5757:15:81","nodeType":"YulExpressionStatement","src":"5757:15:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"5654:4:81","nodeType":"YulIdentifier","src":"5654:4:81"},{"name":"x","nativeSrc":"5660:1:81","nodeType":"YulIdentifier","src":"5660:1:81"}],"functionName":{"name":"gt","nativeSrc":"5651:2:81","nodeType":"YulIdentifier","src":"5651:2:81"},"nativeSrc":"5651:11:81","nodeType":"YulFunctionCall","src":"5651:11:81"},"nativeSrc":"5648:134:81","nodeType":"YulIf","src":"5648:134:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"5563:225:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5594:1:81","nodeType":"YulTypedName","src":"5594:1:81","type":""},{"name":"y","nativeSrc":"5597:1:81","nodeType":"YulTypedName","src":"5597:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5603:4:81","nodeType":"YulTypedName","src":"5603:4:81","type":""}],"src":"5563:225:81"},{"body":{"nativeSrc":"5894:102:81","nodeType":"YulBlock","src":"5894:102:81","statements":[{"nativeSrc":"5904:26:81","nodeType":"YulAssignment","src":"5904:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5916:9:81","nodeType":"YulIdentifier","src":"5916:9:81"},{"kind":"number","nativeSrc":"5927:2:81","nodeType":"YulLiteral","src":"5927:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5912:3:81","nodeType":"YulIdentifier","src":"5912:3:81"},"nativeSrc":"5912:18:81","nodeType":"YulFunctionCall","src":"5912:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5904:4:81","nodeType":"YulIdentifier","src":"5904:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5946:9:81","nodeType":"YulIdentifier","src":"5946:9:81"},{"arguments":[{"name":"value0","nativeSrc":"5961:6:81","nodeType":"YulIdentifier","src":"5961:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5977:3:81","nodeType":"YulLiteral","src":"5977:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"5982:1:81","nodeType":"YulLiteral","src":"5982:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5973:3:81","nodeType":"YulIdentifier","src":"5973:3:81"},"nativeSrc":"5973:11:81","nodeType":"YulFunctionCall","src":"5973:11:81"},{"kind":"number","nativeSrc":"5986:1:81","nodeType":"YulLiteral","src":"5986:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5969:3:81","nodeType":"YulIdentifier","src":"5969:3:81"},"nativeSrc":"5969:19:81","nodeType":"YulFunctionCall","src":"5969:19:81"}],"functionName":{"name":"and","nativeSrc":"5957:3:81","nodeType":"YulIdentifier","src":"5957:3:81"},"nativeSrc":"5957:32:81","nodeType":"YulFunctionCall","src":"5957:32:81"}],"functionName":{"name":"mstore","nativeSrc":"5939:6:81","nodeType":"YulIdentifier","src":"5939:6:81"},"nativeSrc":"5939:51:81","nodeType":"YulFunctionCall","src":"5939:51:81"},"nativeSrc":"5939:51:81","nodeType":"YulExpressionStatement","src":"5939:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"5793:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5863:9:81","nodeType":"YulTypedName","src":"5863:9:81","type":""},{"name":"value0","nativeSrc":"5874:6:81","nodeType":"YulTypedName","src":"5874:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5885:4:81","nodeType":"YulTypedName","src":"5885:4:81","type":""}],"src":"5793:203:81"},{"body":{"nativeSrc":"6095:427:81","nodeType":"YulBlock","src":"6095:427:81","statements":[{"nativeSrc":"6105:51:81","nodeType":"YulVariableDeclaration","src":"6105:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"6144:11:81","nodeType":"YulIdentifier","src":"6144:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"6131:12:81","nodeType":"YulIdentifier","src":"6131:12:81"},"nativeSrc":"6131:25:81","nodeType":"YulFunctionCall","src":"6131:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"6109:18:81","nodeType":"YulTypedName","src":"6109:18:81","type":""}]},{"body":{"nativeSrc":"6245:16:81","nodeType":"YulBlock","src":"6245:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6254:1:81","nodeType":"YulLiteral","src":"6254:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6257:1:81","nodeType":"YulLiteral","src":"6257:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6247:6:81","nodeType":"YulIdentifier","src":"6247:6:81"},"nativeSrc":"6247:12:81","nodeType":"YulFunctionCall","src":"6247:12:81"},"nativeSrc":"6247:12:81","nodeType":"YulExpressionStatement","src":"6247:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"6179:18:81","nodeType":"YulIdentifier","src":"6179:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6207:12:81","nodeType":"YulIdentifier","src":"6207:12:81"},"nativeSrc":"6207:14:81","nodeType":"YulFunctionCall","src":"6207:14:81"},{"name":"base_ref","nativeSrc":"6223:8:81","nodeType":"YulIdentifier","src":"6223:8:81"}],"functionName":{"name":"sub","nativeSrc":"6203:3:81","nodeType":"YulIdentifier","src":"6203:3:81"},"nativeSrc":"6203:29:81","nodeType":"YulFunctionCall","src":"6203:29:81"},{"arguments":[{"kind":"number","nativeSrc":"6238:2:81","nodeType":"YulLiteral","src":"6238:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"6234:3:81","nodeType":"YulIdentifier","src":"6234:3:81"},"nativeSrc":"6234:7:81","nodeType":"YulFunctionCall","src":"6234:7:81"}],"functionName":{"name":"add","nativeSrc":"6199:3:81","nodeType":"YulIdentifier","src":"6199:3:81"},"nativeSrc":"6199:43:81","nodeType":"YulFunctionCall","src":"6199:43:81"}],"functionName":{"name":"slt","nativeSrc":"6175:3:81","nodeType":"YulIdentifier","src":"6175:3:81"},"nativeSrc":"6175:68:81","nodeType":"YulFunctionCall","src":"6175:68:81"}],"functionName":{"name":"iszero","nativeSrc":"6168:6:81","nodeType":"YulIdentifier","src":"6168:6:81"},"nativeSrc":"6168:76:81","nodeType":"YulFunctionCall","src":"6168:76:81"},"nativeSrc":"6165:96:81","nodeType":"YulIf","src":"6165:96:81"},{"nativeSrc":"6270:47:81","nodeType":"YulVariableDeclaration","src":"6270:47:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"6288:8:81","nodeType":"YulIdentifier","src":"6288:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"6298:18:81","nodeType":"YulIdentifier","src":"6298:18:81"}],"functionName":{"name":"add","nativeSrc":"6284:3:81","nodeType":"YulIdentifier","src":"6284:3:81"},"nativeSrc":"6284:33:81","nodeType":"YulFunctionCall","src":"6284:33:81"},"variables":[{"name":"addr_1","nativeSrc":"6274:6:81","nodeType":"YulTypedName","src":"6274:6:81","type":""}]},{"nativeSrc":"6326:30:81","nodeType":"YulAssignment","src":"6326:30:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"6349:6:81","nodeType":"YulIdentifier","src":"6349:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"6336:12:81","nodeType":"YulIdentifier","src":"6336:12:81"},"nativeSrc":"6336:20:81","nodeType":"YulFunctionCall","src":"6336:20:81"},"variableNames":[{"name":"length","nativeSrc":"6326:6:81","nodeType":"YulIdentifier","src":"6326:6:81"}]},{"body":{"nativeSrc":"6399:16:81","nodeType":"YulBlock","src":"6399:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6408:1:81","nodeType":"YulLiteral","src":"6408:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6411:1:81","nodeType":"YulLiteral","src":"6411:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6401:6:81","nodeType":"YulIdentifier","src":"6401:6:81"},"nativeSrc":"6401:12:81","nodeType":"YulFunctionCall","src":"6401:12:81"},"nativeSrc":"6401:12:81","nodeType":"YulExpressionStatement","src":"6401:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6371:6:81","nodeType":"YulIdentifier","src":"6371:6:81"},{"kind":"number","nativeSrc":"6379:18:81","nodeType":"YulLiteral","src":"6379:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6368:2:81","nodeType":"YulIdentifier","src":"6368:2:81"},"nativeSrc":"6368:30:81","nodeType":"YulFunctionCall","src":"6368:30:81"},"nativeSrc":"6365:50:81","nodeType":"YulIf","src":"6365:50:81"},{"nativeSrc":"6424:25:81","nodeType":"YulAssignment","src":"6424:25:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"6436:6:81","nodeType":"YulIdentifier","src":"6436:6:81"},{"kind":"number","nativeSrc":"6444:4:81","nodeType":"YulLiteral","src":"6444:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6432:3:81","nodeType":"YulIdentifier","src":"6432:3:81"},"nativeSrc":"6432:17:81","nodeType":"YulFunctionCall","src":"6432:17:81"},"variableNames":[{"name":"addr","nativeSrc":"6424:4:81","nodeType":"YulIdentifier","src":"6424:4:81"}]},{"body":{"nativeSrc":"6500:16:81","nodeType":"YulBlock","src":"6500:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6509:1:81","nodeType":"YulLiteral","src":"6509:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6512:1:81","nodeType":"YulLiteral","src":"6512:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6502:6:81","nodeType":"YulIdentifier","src":"6502:6:81"},"nativeSrc":"6502:12:81","nodeType":"YulFunctionCall","src":"6502:12:81"},"nativeSrc":"6502:12:81","nodeType":"YulExpressionStatement","src":"6502:12:81"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"6465:4:81","nodeType":"YulIdentifier","src":"6465:4:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6475:12:81","nodeType":"YulIdentifier","src":"6475:12:81"},"nativeSrc":"6475:14:81","nodeType":"YulFunctionCall","src":"6475:14:81"},{"name":"length","nativeSrc":"6491:6:81","nodeType":"YulIdentifier","src":"6491:6:81"}],"functionName":{"name":"sub","nativeSrc":"6471:3:81","nodeType":"YulIdentifier","src":"6471:3:81"},"nativeSrc":"6471:27:81","nodeType":"YulFunctionCall","src":"6471:27:81"}],"functionName":{"name":"sgt","nativeSrc":"6461:3:81","nodeType":"YulIdentifier","src":"6461:3:81"},"nativeSrc":"6461:38:81","nodeType":"YulFunctionCall","src":"6461:38:81"},"nativeSrc":"6458:58:81","nodeType":"YulIf","src":"6458:58:81"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"6001:521:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"6052:8:81","nodeType":"YulTypedName","src":"6052:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"6062:11:81","nodeType":"YulTypedName","src":"6062:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"6078:4:81","nodeType":"YulTypedName","src":"6078:4:81","type":""},{"name":"length","nativeSrc":"6084:6:81","nodeType":"YulTypedName","src":"6084:6:81","type":""}],"src":"6001:521:81"},{"body":{"nativeSrc":"6702:185:81","nodeType":"YulBlock","src":"6702:185:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6725:3:81","nodeType":"YulIdentifier","src":"6725:3:81"},{"name":"value0","nativeSrc":"6730:6:81","nodeType":"YulIdentifier","src":"6730:6:81"},{"name":"value1","nativeSrc":"6738:6:81","nodeType":"YulIdentifier","src":"6738:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"6712:12:81","nodeType":"YulIdentifier","src":"6712:12:81"},"nativeSrc":"6712:33:81","nodeType":"YulFunctionCall","src":"6712:33:81"},"nativeSrc":"6712:33:81","nodeType":"YulExpressionStatement","src":"6712:33:81"},{"nativeSrc":"6754:26:81","nodeType":"YulVariableDeclaration","src":"6754:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"6768:3:81","nodeType":"YulIdentifier","src":"6768:3:81"},{"name":"value1","nativeSrc":"6773:6:81","nodeType":"YulIdentifier","src":"6773:6:81"}],"functionName":{"name":"add","nativeSrc":"6764:3:81","nodeType":"YulIdentifier","src":"6764:3:81"},"nativeSrc":"6764:16:81","nodeType":"YulFunctionCall","src":"6764:16:81"},"variables":[{"name":"_1","nativeSrc":"6758:2:81","nodeType":"YulTypedName","src":"6758:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"6796:2:81","nodeType":"YulIdentifier","src":"6796:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6808:2:81","nodeType":"YulLiteral","src":"6808:2:81","type":"","value":"96"},{"name":"value2","nativeSrc":"6812:6:81","nodeType":"YulIdentifier","src":"6812:6:81"}],"functionName":{"name":"shl","nativeSrc":"6804:3:81","nodeType":"YulIdentifier","src":"6804:3:81"},"nativeSrc":"6804:15:81","nodeType":"YulFunctionCall","src":"6804:15:81"},{"arguments":[{"kind":"number","nativeSrc":"6825:26:81","nodeType":"YulLiteral","src":"6825:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"6821:3:81","nodeType":"YulIdentifier","src":"6821:3:81"},"nativeSrc":"6821:31:81","nodeType":"YulFunctionCall","src":"6821:31:81"}],"functionName":{"name":"and","nativeSrc":"6800:3:81","nodeType":"YulIdentifier","src":"6800:3:81"},"nativeSrc":"6800:53:81","nodeType":"YulFunctionCall","src":"6800:53:81"}],"functionName":{"name":"mstore","nativeSrc":"6789:6:81","nodeType":"YulIdentifier","src":"6789:6:81"},"nativeSrc":"6789:65:81","nodeType":"YulFunctionCall","src":"6789:65:81"},"nativeSrc":"6789:65:81","nodeType":"YulExpressionStatement","src":"6789:65:81"},{"nativeSrc":"6863:18:81","nodeType":"YulAssignment","src":"6863:18:81","value":{"arguments":[{"name":"_1","nativeSrc":"6874:2:81","nodeType":"YulIdentifier","src":"6874:2:81"},{"kind":"number","nativeSrc":"6878:2:81","nodeType":"YulLiteral","src":"6878:2:81","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"6870:3:81","nodeType":"YulIdentifier","src":"6870:3:81"},"nativeSrc":"6870:11:81","nodeType":"YulFunctionCall","src":"6870:11:81"},"variableNames":[{"name":"end","nativeSrc":"6863:3:81","nodeType":"YulIdentifier","src":"6863:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed","nativeSrc":"6527:360:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"6662:3:81","nodeType":"YulTypedName","src":"6662:3:81","type":""},{"name":"value2","nativeSrc":"6667:6:81","nodeType":"YulTypedName","src":"6667:6:81","type":""},{"name":"value1","nativeSrc":"6675:6:81","nodeType":"YulTypedName","src":"6675:6:81","type":""},{"name":"value0","nativeSrc":"6683:6:81","nodeType":"YulTypedName","src":"6683:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"6694:3:81","nodeType":"YulTypedName","src":"6694:3:81","type":""}],"src":"6527:360:81"},{"body":{"nativeSrc":"7037:145:81","nodeType":"YulBlock","src":"7037:145:81","statements":[{"nativeSrc":"7047:26:81","nodeType":"YulAssignment","src":"7047:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7059:9:81","nodeType":"YulIdentifier","src":"7059:9:81"},{"kind":"number","nativeSrc":"7070:2:81","nodeType":"YulLiteral","src":"7070:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7055:3:81","nodeType":"YulIdentifier","src":"7055:3:81"},"nativeSrc":"7055:18:81","nodeType":"YulFunctionCall","src":"7055:18:81"},"variableNames":[{"name":"tail","nativeSrc":"7047:4:81","nodeType":"YulIdentifier","src":"7047:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7089:9:81","nodeType":"YulIdentifier","src":"7089:9:81"},{"arguments":[{"name":"value0","nativeSrc":"7104:6:81","nodeType":"YulIdentifier","src":"7104:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7120:3:81","nodeType":"YulLiteral","src":"7120:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"7125:1:81","nodeType":"YulLiteral","src":"7125:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7116:3:81","nodeType":"YulIdentifier","src":"7116:3:81"},"nativeSrc":"7116:11:81","nodeType":"YulFunctionCall","src":"7116:11:81"},{"kind":"number","nativeSrc":"7129:1:81","nodeType":"YulLiteral","src":"7129:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7112:3:81","nodeType":"YulIdentifier","src":"7112:3:81"},"nativeSrc":"7112:19:81","nodeType":"YulFunctionCall","src":"7112:19:81"}],"functionName":{"name":"and","nativeSrc":"7100:3:81","nodeType":"YulIdentifier","src":"7100:3:81"},"nativeSrc":"7100:32:81","nodeType":"YulFunctionCall","src":"7100:32:81"}],"functionName":{"name":"mstore","nativeSrc":"7082:6:81","nodeType":"YulIdentifier","src":"7082:6:81"},"nativeSrc":"7082:51:81","nodeType":"YulFunctionCall","src":"7082:51:81"},"nativeSrc":"7082:51:81","nodeType":"YulExpressionStatement","src":"7082:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7153:9:81","nodeType":"YulIdentifier","src":"7153:9:81"},{"kind":"number","nativeSrc":"7164:2:81","nodeType":"YulLiteral","src":"7164:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7149:3:81","nodeType":"YulIdentifier","src":"7149:3:81"},"nativeSrc":"7149:18:81","nodeType":"YulFunctionCall","src":"7149:18:81"},{"name":"value1","nativeSrc":"7169:6:81","nodeType":"YulIdentifier","src":"7169:6:81"}],"functionName":{"name":"mstore","nativeSrc":"7142:6:81","nodeType":"YulIdentifier","src":"7142:6:81"},"nativeSrc":"7142:34:81","nodeType":"YulFunctionCall","src":"7142:34:81"},"nativeSrc":"7142:34:81","nodeType":"YulExpressionStatement","src":"7142:34:81"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed","nativeSrc":"6892:290:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6998:9:81","nodeType":"YulTypedName","src":"6998:9:81","type":""},{"name":"value1","nativeSrc":"7009:6:81","nodeType":"YulTypedName","src":"7009:6:81","type":""},{"name":"value0","nativeSrc":"7017:6:81","nodeType":"YulTypedName","src":"7017:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7028:4:81","nodeType":"YulTypedName","src":"7028:4:81","type":""}],"src":"6892:290:81"},{"body":{"nativeSrc":"7268:103:81","nodeType":"YulBlock","src":"7268:103:81","statements":[{"body":{"nativeSrc":"7314:16:81","nodeType":"YulBlock","src":"7314:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7323:1:81","nodeType":"YulLiteral","src":"7323:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7326:1:81","nodeType":"YulLiteral","src":"7326:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7316:6:81","nodeType":"YulIdentifier","src":"7316:6:81"},"nativeSrc":"7316:12:81","nodeType":"YulFunctionCall","src":"7316:12:81"},"nativeSrc":"7316:12:81","nodeType":"YulExpressionStatement","src":"7316:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7289:7:81","nodeType":"YulIdentifier","src":"7289:7:81"},{"name":"headStart","nativeSrc":"7298:9:81","nodeType":"YulIdentifier","src":"7298:9:81"}],"functionName":{"name":"sub","nativeSrc":"7285:3:81","nodeType":"YulIdentifier","src":"7285:3:81"},"nativeSrc":"7285:23:81","nodeType":"YulFunctionCall","src":"7285:23:81"},{"kind":"number","nativeSrc":"7310:2:81","nodeType":"YulLiteral","src":"7310:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7281:3:81","nodeType":"YulIdentifier","src":"7281:3:81"},"nativeSrc":"7281:32:81","nodeType":"YulFunctionCall","src":"7281:32:81"},"nativeSrc":"7278:52:81","nodeType":"YulIf","src":"7278:52:81"},{"nativeSrc":"7339:26:81","nodeType":"YulAssignment","src":"7339:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7355:9:81","nodeType":"YulIdentifier","src":"7355:9:81"}],"functionName":{"name":"mload","nativeSrc":"7349:5:81","nodeType":"YulIdentifier","src":"7349:5:81"},"nativeSrc":"7349:16:81","nodeType":"YulFunctionCall","src":"7349:16:81"},"variableNames":[{"name":"value0","nativeSrc":"7339:6:81","nodeType":"YulIdentifier","src":"7339:6:81"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"7187:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7234:9:81","nodeType":"YulTypedName","src":"7234:9:81","type":""},{"name":"dataEnd","nativeSrc":"7245:7:81","nodeType":"YulTypedName","src":"7245:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7257:6:81","nodeType":"YulTypedName","src":"7257:6:81","type":""}],"src":"7187:184:81"},{"body":{"nativeSrc":"7513:171:81","nodeType":"YulBlock","src":"7513:171:81","statements":[{"nativeSrc":"7523:26:81","nodeType":"YulAssignment","src":"7523:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7535:9:81","nodeType":"YulIdentifier","src":"7535:9:81"},{"kind":"number","nativeSrc":"7546:2:81","nodeType":"YulLiteral","src":"7546:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7531:3:81","nodeType":"YulIdentifier","src":"7531:3:81"},"nativeSrc":"7531:18:81","nodeType":"YulFunctionCall","src":"7531:18:81"},"variableNames":[{"name":"tail","nativeSrc":"7523:4:81","nodeType":"YulIdentifier","src":"7523:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7565:9:81","nodeType":"YulIdentifier","src":"7565:9:81"},{"arguments":[{"name":"value0","nativeSrc":"7580:6:81","nodeType":"YulIdentifier","src":"7580:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7596:3:81","nodeType":"YulLiteral","src":"7596:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"7601:1:81","nodeType":"YulLiteral","src":"7601:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7592:3:81","nodeType":"YulIdentifier","src":"7592:3:81"},"nativeSrc":"7592:11:81","nodeType":"YulFunctionCall","src":"7592:11:81"},{"kind":"number","nativeSrc":"7605:1:81","nodeType":"YulLiteral","src":"7605:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7588:3:81","nodeType":"YulIdentifier","src":"7588:3:81"},"nativeSrc":"7588:19:81","nodeType":"YulFunctionCall","src":"7588:19:81"}],"functionName":{"name":"and","nativeSrc":"7576:3:81","nodeType":"YulIdentifier","src":"7576:3:81"},"nativeSrc":"7576:32:81","nodeType":"YulFunctionCall","src":"7576:32:81"}],"functionName":{"name":"mstore","nativeSrc":"7558:6:81","nodeType":"YulIdentifier","src":"7558:6:81"},"nativeSrc":"7558:51:81","nodeType":"YulFunctionCall","src":"7558:51:81"},"nativeSrc":"7558:51:81","nodeType":"YulExpressionStatement","src":"7558:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7629:9:81","nodeType":"YulIdentifier","src":"7629:9:81"},{"kind":"number","nativeSrc":"7640:2:81","nodeType":"YulLiteral","src":"7640:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7625:3:81","nodeType":"YulIdentifier","src":"7625:3:81"},"nativeSrc":"7625:18:81","nodeType":"YulFunctionCall","src":"7625:18:81"},{"arguments":[{"name":"value1","nativeSrc":"7649:6:81","nodeType":"YulIdentifier","src":"7649:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7665:3:81","nodeType":"YulLiteral","src":"7665:3:81","type":"","value":"192"},{"kind":"number","nativeSrc":"7670:1:81","nodeType":"YulLiteral","src":"7670:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7661:3:81","nodeType":"YulIdentifier","src":"7661:3:81"},"nativeSrc":"7661:11:81","nodeType":"YulFunctionCall","src":"7661:11:81"},{"kind":"number","nativeSrc":"7674:1:81","nodeType":"YulLiteral","src":"7674:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7657:3:81","nodeType":"YulIdentifier","src":"7657:3:81"},"nativeSrc":"7657:19:81","nodeType":"YulFunctionCall","src":"7657:19:81"}],"functionName":{"name":"and","nativeSrc":"7645:3:81","nodeType":"YulIdentifier","src":"7645:3:81"},"nativeSrc":"7645:32:81","nodeType":"YulFunctionCall","src":"7645:32:81"}],"functionName":{"name":"mstore","nativeSrc":"7618:6:81","nodeType":"YulIdentifier","src":"7618:6:81"},"nativeSrc":"7618:60:81","nodeType":"YulFunctionCall","src":"7618:60:81"},"nativeSrc":"7618:60:81","nodeType":"YulExpressionStatement","src":"7618:60:81"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed","nativeSrc":"7376:308:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7474:9:81","nodeType":"YulTypedName","src":"7474:9:81","type":""},{"name":"value1","nativeSrc":"7485:6:81","nodeType":"YulTypedName","src":"7485:6:81","type":""},{"name":"value0","nativeSrc":"7493:6:81","nodeType":"YulTypedName","src":"7493:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7504:4:81","nodeType":"YulTypedName","src":"7504:4:81","type":""}],"src":"7376:308:81"},{"body":{"nativeSrc":"7863:178:81","nodeType":"YulBlock","src":"7863:178:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7880:9:81","nodeType":"YulIdentifier","src":"7880:9:81"},{"kind":"number","nativeSrc":"7891:2:81","nodeType":"YulLiteral","src":"7891:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7873:6:81","nodeType":"YulIdentifier","src":"7873:6:81"},"nativeSrc":"7873:21:81","nodeType":"YulFunctionCall","src":"7873:21:81"},"nativeSrc":"7873:21:81","nodeType":"YulExpressionStatement","src":"7873:21:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7914:9:81","nodeType":"YulIdentifier","src":"7914:9:81"},{"kind":"number","nativeSrc":"7925:2:81","nodeType":"YulLiteral","src":"7925:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7910:3:81","nodeType":"YulIdentifier","src":"7910:3:81"},"nativeSrc":"7910:18:81","nodeType":"YulFunctionCall","src":"7910:18:81"},{"kind":"number","nativeSrc":"7930:2:81","nodeType":"YulLiteral","src":"7930:2:81","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"7903:6:81","nodeType":"YulIdentifier","src":"7903:6:81"},"nativeSrc":"7903:30:81","nodeType":"YulFunctionCall","src":"7903:30:81"},"nativeSrc":"7903:30:81","nodeType":"YulExpressionStatement","src":"7903:30:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7953:9:81","nodeType":"YulIdentifier","src":"7953:9:81"},{"kind":"number","nativeSrc":"7964:2:81","nodeType":"YulLiteral","src":"7964:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7949:3:81","nodeType":"YulIdentifier","src":"7949:3:81"},"nativeSrc":"7949:18:81","nodeType":"YulFunctionCall","src":"7949:18:81"},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","kind":"string","nativeSrc":"7969:30:81","nodeType":"YulLiteral","src":"7969:30:81","type":"","value":"account: not from EntryPoint"}],"functionName":{"name":"mstore","nativeSrc":"7942:6:81","nodeType":"YulIdentifier","src":"7942:6:81"},"nativeSrc":"7942:58:81","nodeType":"YulFunctionCall","src":"7942:58:81"},"nativeSrc":"7942:58:81","nodeType":"YulExpressionStatement","src":"7942:58:81"},{"nativeSrc":"8009:26:81","nodeType":"YulAssignment","src":"8009:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8021:9:81","nodeType":"YulIdentifier","src":"8021:9:81"},{"kind":"number","nativeSrc":"8032:2:81","nodeType":"YulLiteral","src":"8032:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8017:3:81","nodeType":"YulIdentifier","src":"8017:3:81"},"nativeSrc":"8017:18:81","nodeType":"YulFunctionCall","src":"8017:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8009:4:81","nodeType":"YulIdentifier","src":"8009:4:81"}]}]},"name":"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"7689:352:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7840:9:81","nodeType":"YulTypedName","src":"7840:9:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7854:4:81","nodeType":"YulTypedName","src":"7854:4:81","type":""}],"src":"7689:352:81"},{"body":{"nativeSrc":"8237:14:81","nodeType":"YulBlock","src":"8237:14:81","statements":[{"nativeSrc":"8239:10:81","nodeType":"YulAssignment","src":"8239:10:81","value":{"name":"pos","nativeSrc":"8246:3:81","nodeType":"YulIdentifier","src":"8246:3:81"},"variableNames":[{"name":"end","nativeSrc":"8239:3:81","nodeType":"YulIdentifier","src":"8239:3:81"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"8046:205:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"8221:3:81","nodeType":"YulTypedName","src":"8221:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"8229:3:81","nodeType":"YulTypedName","src":"8229:3:81","type":""}],"src":"8046:205:81"},{"body":{"nativeSrc":"8385:119:81","nodeType":"YulBlock","src":"8385:119:81","statements":[{"nativeSrc":"8395:26:81","nodeType":"YulAssignment","src":"8395:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8407:9:81","nodeType":"YulIdentifier","src":"8407:9:81"},{"kind":"number","nativeSrc":"8418:2:81","nodeType":"YulLiteral","src":"8418:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8403:3:81","nodeType":"YulIdentifier","src":"8403:3:81"},"nativeSrc":"8403:18:81","nodeType":"YulFunctionCall","src":"8403:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8395:4:81","nodeType":"YulIdentifier","src":"8395:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8437:9:81","nodeType":"YulIdentifier","src":"8437:9:81"},{"name":"value0","nativeSrc":"8448:6:81","nodeType":"YulIdentifier","src":"8448:6:81"}],"functionName":{"name":"mstore","nativeSrc":"8430:6:81","nodeType":"YulIdentifier","src":"8430:6:81"},"nativeSrc":"8430:25:81","nodeType":"YulFunctionCall","src":"8430:25:81"},"nativeSrc":"8430:25:81","nodeType":"YulExpressionStatement","src":"8430:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8475:9:81","nodeType":"YulIdentifier","src":"8475:9:81"},{"kind":"number","nativeSrc":"8486:2:81","nodeType":"YulLiteral","src":"8486:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8471:3:81","nodeType":"YulIdentifier","src":"8471:3:81"},"nativeSrc":"8471:18:81","nodeType":"YulFunctionCall","src":"8471:18:81"},{"name":"value1","nativeSrc":"8491:6:81","nodeType":"YulIdentifier","src":"8491:6:81"}],"functionName":{"name":"mstore","nativeSrc":"8464:6:81","nodeType":"YulIdentifier","src":"8464:6:81"},"nativeSrc":"8464:34:81","nodeType":"YulFunctionCall","src":"8464:34:81"},"nativeSrc":"8464:34:81","nodeType":"YulExpressionStatement","src":"8464:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"8256:248:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8346:9:81","nodeType":"YulTypedName","src":"8346:9:81","type":""},{"name":"value1","nativeSrc":"8357:6:81","nodeType":"YulTypedName","src":"8357:6:81","type":""},{"name":"value0","nativeSrc":"8365:6:81","nodeType":"YulTypedName","src":"8365:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8376:4:81","nodeType":"YulTypedName","src":"8376:4:81","type":""}],"src":"8256:248:81"},{"body":{"nativeSrc":"8646:164:81","nodeType":"YulBlock","src":"8646:164:81","statements":[{"nativeSrc":"8656:27:81","nodeType":"YulVariableDeclaration","src":"8656:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"8676:6:81","nodeType":"YulIdentifier","src":"8676:6:81"}],"functionName":{"name":"mload","nativeSrc":"8670:5:81","nodeType":"YulIdentifier","src":"8670:5:81"},"nativeSrc":"8670:13:81","nodeType":"YulFunctionCall","src":"8670:13:81"},"variables":[{"name":"length","nativeSrc":"8660:6:81","nodeType":"YulTypedName","src":"8660:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"8698:3:81","nodeType":"YulIdentifier","src":"8698:3:81"},{"arguments":[{"name":"value0","nativeSrc":"8707:6:81","nodeType":"YulIdentifier","src":"8707:6:81"},{"kind":"number","nativeSrc":"8715:4:81","nodeType":"YulLiteral","src":"8715:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8703:3:81","nodeType":"YulIdentifier","src":"8703:3:81"},"nativeSrc":"8703:17:81","nodeType":"YulFunctionCall","src":"8703:17:81"},{"name":"length","nativeSrc":"8722:6:81","nodeType":"YulIdentifier","src":"8722:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"8692:5:81","nodeType":"YulIdentifier","src":"8692:5:81"},"nativeSrc":"8692:37:81","nodeType":"YulFunctionCall","src":"8692:37:81"},"nativeSrc":"8692:37:81","nodeType":"YulExpressionStatement","src":"8692:37:81"},{"nativeSrc":"8738:26:81","nodeType":"YulVariableDeclaration","src":"8738:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"8752:3:81","nodeType":"YulIdentifier","src":"8752:3:81"},{"name":"length","nativeSrc":"8757:6:81","nodeType":"YulIdentifier","src":"8757:6:81"}],"functionName":{"name":"add","nativeSrc":"8748:3:81","nodeType":"YulIdentifier","src":"8748:3:81"},"nativeSrc":"8748:16:81","nodeType":"YulFunctionCall","src":"8748:16:81"},"variables":[{"name":"_1","nativeSrc":"8742:2:81","nodeType":"YulTypedName","src":"8742:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"8780:2:81","nodeType":"YulIdentifier","src":"8780:2:81"},{"kind":"number","nativeSrc":"8784:1:81","nodeType":"YulLiteral","src":"8784:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"8773:6:81","nodeType":"YulIdentifier","src":"8773:6:81"},"nativeSrc":"8773:13:81","nodeType":"YulFunctionCall","src":"8773:13:81"},"nativeSrc":"8773:13:81","nodeType":"YulExpressionStatement","src":"8773:13:81"},{"nativeSrc":"8795:9:81","nodeType":"YulAssignment","src":"8795:9:81","value":{"name":"_1","nativeSrc":"8802:2:81","nodeType":"YulIdentifier","src":"8802:2:81"},"variableNames":[{"name":"end","nativeSrc":"8795:3:81","nodeType":"YulIdentifier","src":"8795:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"8509:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"8622:3:81","nodeType":"YulTypedName","src":"8622:3:81","type":""},{"name":"value0","nativeSrc":"8627:6:81","nodeType":"YulTypedName","src":"8627:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"8638:3:81","nodeType":"YulTypedName","src":"8638:3:81","type":""}],"src":"8509:301:81"},{"body":{"nativeSrc":"8944:145:81","nodeType":"YulBlock","src":"8944:145:81","statements":[{"nativeSrc":"8954:26:81","nodeType":"YulAssignment","src":"8954:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8966:9:81","nodeType":"YulIdentifier","src":"8966:9:81"},{"kind":"number","nativeSrc":"8977:2:81","nodeType":"YulLiteral","src":"8977:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8962:3:81","nodeType":"YulIdentifier","src":"8962:3:81"},"nativeSrc":"8962:18:81","nodeType":"YulFunctionCall","src":"8962:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8954:4:81","nodeType":"YulIdentifier","src":"8954:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8996:9:81","nodeType":"YulIdentifier","src":"8996:9:81"},{"arguments":[{"name":"value0","nativeSrc":"9011:6:81","nodeType":"YulIdentifier","src":"9011:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9027:3:81","nodeType":"YulLiteral","src":"9027:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"9032:1:81","nodeType":"YulLiteral","src":"9032:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9023:3:81","nodeType":"YulIdentifier","src":"9023:3:81"},"nativeSrc":"9023:11:81","nodeType":"YulFunctionCall","src":"9023:11:81"},{"kind":"number","nativeSrc":"9036:1:81","nodeType":"YulLiteral","src":"9036:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9019:3:81","nodeType":"YulIdentifier","src":"9019:3:81"},"nativeSrc":"9019:19:81","nodeType":"YulFunctionCall","src":"9019:19:81"}],"functionName":{"name":"and","nativeSrc":"9007:3:81","nodeType":"YulIdentifier","src":"9007:3:81"},"nativeSrc":"9007:32:81","nodeType":"YulFunctionCall","src":"9007:32:81"}],"functionName":{"name":"mstore","nativeSrc":"8989:6:81","nodeType":"YulIdentifier","src":"8989:6:81"},"nativeSrc":"8989:51:81","nodeType":"YulFunctionCall","src":"8989:51:81"},"nativeSrc":"8989:51:81","nodeType":"YulExpressionStatement","src":"8989:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9060:9:81","nodeType":"YulIdentifier","src":"9060:9:81"},{"kind":"number","nativeSrc":"9071:2:81","nodeType":"YulLiteral","src":"9071:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9056:3:81","nodeType":"YulIdentifier","src":"9056:3:81"},"nativeSrc":"9056:18:81","nodeType":"YulFunctionCall","src":"9056:18:81"},{"name":"value1","nativeSrc":"9076:6:81","nodeType":"YulIdentifier","src":"9076:6:81"}],"functionName":{"name":"mstore","nativeSrc":"9049:6:81","nodeType":"YulIdentifier","src":"9049:6:81"},"nativeSrc":"9049:34:81","nodeType":"YulFunctionCall","src":"9049:34:81"},"nativeSrc":"9049:34:81","nodeType":"YulExpressionStatement","src":"9049:34:81"}]},"name":"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed","nativeSrc":"8815:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8905:9:81","nodeType":"YulTypedName","src":"8905:9:81","type":""},{"name":"value1","nativeSrc":"8916:6:81","nodeType":"YulTypedName","src":"8916:6:81","type":""},{"name":"value0","nativeSrc":"8924:6:81","nodeType":"YulTypedName","src":"8924:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8935:4:81","nodeType":"YulTypedName","src":"8935:4:81","type":""}],"src":"8815:274:81"},{"body":{"nativeSrc":"9126:95:81","nodeType":"YulBlock","src":"9126:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9143:1:81","nodeType":"YulLiteral","src":"9143:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9150:3:81","nodeType":"YulLiteral","src":"9150:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"9155:10:81","nodeType":"YulLiteral","src":"9155:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9146:3:81","nodeType":"YulIdentifier","src":"9146:3:81"},"nativeSrc":"9146:20:81","nodeType":"YulFunctionCall","src":"9146:20:81"}],"functionName":{"name":"mstore","nativeSrc":"9136:6:81","nodeType":"YulIdentifier","src":"9136:6:81"},"nativeSrc":"9136:31:81","nodeType":"YulFunctionCall","src":"9136:31:81"},"nativeSrc":"9136:31:81","nodeType":"YulExpressionStatement","src":"9136:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9183:1:81","nodeType":"YulLiteral","src":"9183:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"9186:4:81","nodeType":"YulLiteral","src":"9186:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"9176:6:81","nodeType":"YulIdentifier","src":"9176:6:81"},"nativeSrc":"9176:15:81","nodeType":"YulFunctionCall","src":"9176:15:81"},"nativeSrc":"9176:15:81","nodeType":"YulExpressionStatement","src":"9176:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9207:1:81","nodeType":"YulLiteral","src":"9207:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9210:4:81","nodeType":"YulLiteral","src":"9210:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9200:6:81","nodeType":"YulIdentifier","src":"9200:6:81"},"nativeSrc":"9200:15:81","nodeType":"YulFunctionCall","src":"9200:15:81"},"nativeSrc":"9200:15:81","nodeType":"YulExpressionStatement","src":"9200:15:81"}]},"name":"panic_error_0x21","nativeSrc":"9094:127:81","nodeType":"YulFunctionDefinition","src":"9094:127:81"},{"body":{"nativeSrc":"9407:217:81","nodeType":"YulBlock","src":"9407:217:81","statements":[{"nativeSrc":"9417:27:81","nodeType":"YulAssignment","src":"9417:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9429:9:81","nodeType":"YulIdentifier","src":"9429:9:81"},{"kind":"number","nativeSrc":"9440:3:81","nodeType":"YulLiteral","src":"9440:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9425:3:81","nodeType":"YulIdentifier","src":"9425:3:81"},"nativeSrc":"9425:19:81","nodeType":"YulFunctionCall","src":"9425:19:81"},"variableNames":[{"name":"tail","nativeSrc":"9417:4:81","nodeType":"YulIdentifier","src":"9417:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9460:9:81","nodeType":"YulIdentifier","src":"9460:9:81"},{"name":"value0","nativeSrc":"9471:6:81","nodeType":"YulIdentifier","src":"9471:6:81"}],"functionName":{"name":"mstore","nativeSrc":"9453:6:81","nodeType":"YulIdentifier","src":"9453:6:81"},"nativeSrc":"9453:25:81","nodeType":"YulFunctionCall","src":"9453:25:81"},"nativeSrc":"9453:25:81","nodeType":"YulExpressionStatement","src":"9453:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9498:9:81","nodeType":"YulIdentifier","src":"9498:9:81"},{"kind":"number","nativeSrc":"9509:2:81","nodeType":"YulLiteral","src":"9509:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9494:3:81","nodeType":"YulIdentifier","src":"9494:3:81"},"nativeSrc":"9494:18:81","nodeType":"YulFunctionCall","src":"9494:18:81"},{"arguments":[{"name":"value1","nativeSrc":"9518:6:81","nodeType":"YulIdentifier","src":"9518:6:81"},{"kind":"number","nativeSrc":"9526:4:81","nodeType":"YulLiteral","src":"9526:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9514:3:81","nodeType":"YulIdentifier","src":"9514:3:81"},"nativeSrc":"9514:17:81","nodeType":"YulFunctionCall","src":"9514:17:81"}],"functionName":{"name":"mstore","nativeSrc":"9487:6:81","nodeType":"YulIdentifier","src":"9487:6:81"},"nativeSrc":"9487:45:81","nodeType":"YulFunctionCall","src":"9487:45:81"},"nativeSrc":"9487:45:81","nodeType":"YulExpressionStatement","src":"9487:45:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9552:9:81","nodeType":"YulIdentifier","src":"9552:9:81"},{"kind":"number","nativeSrc":"9563:2:81","nodeType":"YulLiteral","src":"9563:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9548:3:81","nodeType":"YulIdentifier","src":"9548:3:81"},"nativeSrc":"9548:18:81","nodeType":"YulFunctionCall","src":"9548:18:81"},{"name":"value2","nativeSrc":"9568:6:81","nodeType":"YulIdentifier","src":"9568:6:81"}],"functionName":{"name":"mstore","nativeSrc":"9541:6:81","nodeType":"YulIdentifier","src":"9541:6:81"},"nativeSrc":"9541:34:81","nodeType":"YulFunctionCall","src":"9541:34:81"},"nativeSrc":"9541:34:81","nodeType":"YulExpressionStatement","src":"9541:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9595:9:81","nodeType":"YulIdentifier","src":"9595:9:81"},{"kind":"number","nativeSrc":"9606:2:81","nodeType":"YulLiteral","src":"9606:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9591:3:81","nodeType":"YulIdentifier","src":"9591:3:81"},"nativeSrc":"9591:18:81","nodeType":"YulFunctionCall","src":"9591:18:81"},{"name":"value3","nativeSrc":"9611:6:81","nodeType":"YulIdentifier","src":"9611:6:81"}],"functionName":{"name":"mstore","nativeSrc":"9584:6:81","nodeType":"YulIdentifier","src":"9584:6:81"},"nativeSrc":"9584:34:81","nodeType":"YulFunctionCall","src":"9584:34:81"},"nativeSrc":"9584:34:81","nodeType":"YulExpressionStatement","src":"9584:34:81"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"9226:398:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9352:9:81","nodeType":"YulTypedName","src":"9352:9:81","type":""},{"name":"value3","nativeSrc":"9363:6:81","nodeType":"YulTypedName","src":"9363:6:81","type":""},{"name":"value2","nativeSrc":"9371:6:81","nodeType":"YulTypedName","src":"9371:6:81","type":""},{"name":"value1","nativeSrc":"9379:6:81","nodeType":"YulTypedName","src":"9379:6:81","type":""},{"name":"value0","nativeSrc":"9387:6:81","nodeType":"YulTypedName","src":"9387:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9398:4:81","nodeType":"YulTypedName","src":"9398:4:81","type":""}],"src":"9226:398:81"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptrt_bytes32t_uint256(headStart, dataEnd) -> value0, value1, value2\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 _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 288) { revert(0, 0) }\n        value0 := _1\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\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_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\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_bytes32t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\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_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_uint256_$dyn_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\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 offset_2 := calldataload(add(headStart, 64))\n        if gt(offset_2, 0xffffffffffffffff) { revert(0, 0) }\n        let value4_1, value5_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_2), dataEnd)\n        value4 := value4_1\n        value5 := value5_1\n    }\n    function abi_decode_tuple_t_address_payablet_uint256(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 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IEntryPoint_$3566__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_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\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 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_1, 32)\n        value3 := length\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_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 checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\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 access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, and(shl(96, value2), not(0xffffffffffffffffffffffff)))\n        end := add(_1, 20)\n    }\n    function abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(192, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"account: not from EntryPoint\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n    { end := pos }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"3878":[{"length":32,"start":667},{"length":32,"start":1582},{"length":32,"start":1748},{"length":32,"start":2068},{"length":32,"start":2217},{"length":32,"start":2311},{"length":32,"start":2978}]},"linkReferences":{},"object":"6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004611036565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f61019736600461105d565b610394565b3480156101a7575f5ffd5b5061016f6101b63660046110ac565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e43660046110d7565b6103b9565b005b3480156101f6575f5ffd5b506101e96102053660046110d7565b6103e3565b348015610215575f5ffd5b506101e961022436600461114d565b61041b565b6101e961062c565b34801561023c575f5ffd5b506101e961024b3660046111ec565b6106a8565b34801561025b575f5ffd5b5061012761026a3660046110d7565b610757565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df366004611216565b61077f565b3480156102ef575f5ffd5b5061016f6107f5565b348015610303575f5ffd5b5061016f610883565b348015610317575f5ffd5b506101e96103263660046110d7565b6108d8565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d6108fc565b6103a78484610976565b90506103b282610a54565b9392505050565b5f828152602081905260409020600101546103d381610a9d565b6103dd8383610aa7565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610b36565b505050565b5f610424610b9f565b9050858214158061043f5750831580159061043f5750838214155b1561045d5760405163150072e360e11b815260040160405180910390fd5b5f5b868110156106225780156105125787878281811061047f5761047f61129b565b905060200201602081019061049491906112af565b6001600160a01b031688886104aa6001856112ca565b8181106104b9576104b961129b565b90506020020160208101906104ce91906112af565b6001600160a01b0316148061050d575061050d8888838181106104f3576104f361129b565b905060200201602081019061050891906112af565b610c74565b610527565b61052788885f8181106104f3576104f361129b565b8888838181106105395761053961129b565b905060200201602081019061054e91906112af565b9061057d57604051636d4e141560e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b506106198888838181106105935761059361129b565b90506020020160208101906105a891906112af565b8585848181106105ba576105ba61129b565b90506020028101906105cc91906112e9565b856040516020016105df9392919061132c565b60408051601f198184030181529190528715610613578888858181106106075761060761129b565b90506020020135610ced565b5f610ced565b5060010161045f565b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b15801561068f575f5ffd5b505af11580156106a1573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6106d281610a9d565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b15801561073c575f5ffd5b505af115801561074e573d5f5f3e3d5ffd5b50505050505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f610788610b9f565b905061079385610c74565b85906107be57604051636d4e141560e01b81526001600160a01b039091166004820152602401610574565b506107ed858484846040516020016107d89392919061132c565b60405160208183030381529060405286610ced565b505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa15801561085a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e9190611352565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161083f565b5f828152602081905260409020600101546108f281610a9d565b6103dd8383610b36565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109745760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e74000000006044820152606401610574565b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109f0826109b76101008801886112e9565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610d8392505050565b9050610a1c7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6382610757565b610a2b5760019250505061038e565b805f805c6001600160a01b0319166001600160a01b03831617905d505f95945050505050565b50565b8015610a51576040515f9033905f1990849084818181858888f193505050503d805f81146106a1576040519150601f19603f3d011682016040523d82523d5f602084013e6106a1565b610a518133610dab565b5f610ab28383610757565b610b2f575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ae73390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610b418383610757565b15610b2f575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303610c18575f5c6001600160a01b0316610bf857604051636ca7ff7d60e01b815260040160405180910390fd5b506001600160a01b035f805c918216916001600160a01b031916815d5090565b610c427fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610757565b3390610c6d57604051633c687f6b60e21b81526001600160a01b039091166004820152602401610574565b5033905090565b6040513060248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b031663572b6c0560e01b17815282519293505f928392839290918391895afa92503d91505f519050828015610cd8575060208210155b8015610ce357505f81115b9695505050505050565b606081471015610d195760405163cf47918160e01b815247600482015260248101839052604401610574565b5f5f856001600160a01b03168486604051610d349190611369565b5f6040518083038185875af1925050503d805f8114610d6e576040519150601f19603f3d011682016040523d82523d5f602084013e610d73565b606091505b5091509150610ce3868383610de8565b5f5f5f5f610d918686610e44565b925092509250610da18282610e8d565b5090949350505050565b610db58282610757565b610de45760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610574565b5050565b606082610dfd57610df882610f45565b6103b2565b8151158015610e1457506001600160a01b0384163b155b15610e3d57604051639996b31560e01b81526001600160a01b0385166004820152602401610574565b50806103b2565b5f5f5f8351604103610e7b576020840151604085015160608601515f1a610e6d88828585610f6e565b955095509550505050610e86565b505081515f91506002905b9250925092565b5f826003811115610ea057610ea061137f565b03610ea9575050565b6001826003811115610ebd57610ebd61137f565b03610edb5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610eef57610eef61137f565b03610f105760405163fce698f760e01b815260048101829052602401610574565b6003826003811115610f2457610f2461137f565b03610de4576040516335e2f38360e21b815260048101829052602401610574565b805115610f555780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610fa757505f9150600390508261102c565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610ff8573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661102357505f92506001915082905061102c565b92505f91508190505b9450945094915050565b5f60208284031215611046575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f6060848603121561106f575f5ffd5b833567ffffffffffffffff811115611085575f5ffd5b84016101208187031215611097575f5ffd5b95602085013595506040909401359392505050565b5f602082840312156110bc575f5ffd5b5035919050565b6001600160a01b0381168114610a51575f5ffd5b5f5f604083850312156110e8575f5ffd5b8235915060208301356110fa816110c3565b809150509250929050565b5f5f83601f840112611115575f5ffd5b50813567ffffffffffffffff81111561112c575f5ffd5b6020830191508360208260051b8501011115611146575f5ffd5b9250929050565b5f5f5f5f5f5f60608789031215611162575f5ffd5b863567ffffffffffffffff811115611178575f5ffd5b61118489828a01611105565b909750955050602087013567ffffffffffffffff8111156111a3575f5ffd5b6111af89828a01611105565b909550935050604087013567ffffffffffffffff8111156111ce575f5ffd5b6111da89828a01611105565b979a9699509497509295939492505050565b5f5f604083850312156111fd575f5ffd5b8235611208816110c3565b946020939093013593505050565b5f5f5f5f60608587031215611229575f5ffd5b8435611234816110c3565b935060208501359250604085013567ffffffffffffffff811115611256575f5ffd5b8501601f81018713611266575f5ffd5b803567ffffffffffffffff81111561127c575f5ffd5b87602082840101111561128d575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156112bf575f5ffd5b81356103b2816110c3565b8181038181111561038e57634e487b7160e01b5f52601160045260245ffd5b5f5f8335601e198436030181126112fe575f5ffd5b83018035915067ffffffffffffffff821115611318575f5ffd5b602001915036819003821315611146575f5ffd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b5f60208284031215611362575f5ffd5b5051919050565b5f82518060208501845e5f920191825250919050565b634e487b7160e01b5f52602160045260245ffdfea26469706673582212202229e100ac5fd5a52adde5054ce4e502b712dfaa795b66c98037e0a7bbc1cb7e64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4D44560D GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB61D27F6 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB61D27F6 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xC399EC88 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xD087D288 EQ PUSH2 0x2F8 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x30C JUMPI DUP1 PUSH4 0xE02023A1 EQ PUSH2 0x32B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D44560D EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB0D691FE EQ PUSH2 0x282 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2F2FF15D GT PUSH2 0xCD JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x1EB JUMPI DUP1 PUSH4 0x47E1DA2A EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x4A58DB19 EQ PUSH2 0x229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x108 JUMPI DUP1 PUSH4 0x7BD0265 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x19822F7C EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x104 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x113 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x122 CALLDATASIZE PUSH1 0x4 PUSH2 0x1036 JUMP JUMPDEST PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x147 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x105D JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10AC JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3B9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x224 CALLDATASIZE PUSH1 0x4 PUSH2 0x114D JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x62C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x23C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x11EC JUMP JUMPDEST PUSH2 0x6A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127 PUSH2 0x26A CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1216 JUMP JUMPDEST PUSH2 0x77F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x7F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH2 0x883 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1E9 PUSH2 0x326 CALLDATASIZE PUSH1 0x4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0x8D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x336 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16F PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x38E JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x39D PUSH2 0x8FC JUMP JUMPDEST PUSH2 0x3A7 DUP5 DUP5 PUSH2 0x976 JUMP JUMPDEST SWAP1 POP PUSH2 0x3B2 DUP3 PUSH2 0xA54 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x3D3 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xAA7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x40C JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x416 DUP3 DUP3 PUSH2 0xB36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x424 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP DUP6 DUP3 EQ ISZERO DUP1 PUSH2 0x43F JUMPI POP DUP4 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x43F JUMPI POP DUP4 DUP3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x45D JUMPI PUSH1 0x40 MLOAD PUSH4 0x150072E3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x622 JUMPI DUP1 ISZERO PUSH2 0x512 JUMPI DUP8 DUP8 DUP3 DUP2 DUP2 LT PUSH2 0x47F JUMPI PUSH2 0x47F PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x494 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP9 PUSH2 0x4AA PUSH1 0x1 DUP6 PUSH2 0x12CA JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x4B9 JUMPI PUSH2 0x4B9 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4CE SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x50D JUMPI POP PUSH2 0x50D DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x508 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x527 JUMP JUMPDEST PUSH2 0x527 DUP9 DUP9 PUSH0 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x129B JUMP JUMPDEST DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x539 JUMPI PUSH2 0x539 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x54E SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST SWAP1 PUSH2 0x57D JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0x619 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x593 JUMPI PUSH2 0x593 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x5A8 SWAP2 SWAP1 PUSH2 0x12AF JUMP JUMPDEST DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x12E9 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP8 ISZERO PUSH2 0x613 JUMPI DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x607 JUMPI PUSH2 0x607 PUSH2 0x129B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0xCED JUMP JUMPDEST PUSH0 PUSH2 0xCED JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x45F JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0xB760FAF9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB760FAF9 SWAP1 CALLVALUE SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x68F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6A1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x5D8E12C39142FF96D79D04D15D1BA1269E4FE57BB9D26F43523628B34BA108EC PUSH2 0x6D2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x40B850F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x73C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x74E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x788 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP PUSH2 0x793 DUP6 PUSH2 0xC74 JUMP JUMPDEST DUP6 SWAP1 PUSH2 0x7BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D4E1415 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP PUSH2 0x7ED DUP6 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x7D8 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x132C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP7 PUSH2 0xCED JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x85A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x87E SWAP2 SWAP1 PUSH2 0x1352 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1AAB3F0D PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x35567E1A SWAP1 PUSH1 0x44 ADD PUSH2 0x83F JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x8F2 DUP2 PUSH2 0xA9D JUMP JUMPDEST PUSH2 0x3DD DUP4 DUP4 PUSH2 0xB36 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x974 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6163636F756E743A206E6F742066726F6D20456E747279506F696E7400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x574 JUMP JUMPDEST JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A333200000000 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1C DUP3 SWAP1 MSTORE PUSH1 0x3C DUP2 KECCAK256 PUSH0 PUSH2 0x9F0 DUP3 PUSH2 0x9B7 PUSH2 0x100 DUP9 ADD DUP9 PUSH2 0x12E9 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0xD83 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH2 0xA1C PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xA2B JUMPI PUSH1 0x1 SWAP3 POP POP POP PUSH2 0x38E JUMP JUMPDEST DUP1 PUSH0 DUP1 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND OR SWAP1 TSTORE POP PUSH0 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST POP JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA51 JUMPI PUSH1 0x40 MLOAD PUSH0 SWAP1 CALLER SWAP1 PUSH0 NOT SWAP1 DUP5 SWAP1 DUP5 DUP2 DUP2 DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x6A1 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x6A1 JUMP JUMPDEST PUSH2 0xA51 DUP2 CALLER PUSH2 0xDAB JUMP JUMPDEST PUSH0 PUSH2 0xAB2 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0xAE7 CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST POP PUSH0 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH2 0xB41 DUP4 DUP4 PUSH2 0x757 JUMP JUMPDEST ISZERO PUSH2 0xB2F JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x38E JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER SUB PUSH2 0xC18 JUMPI PUSH0 TLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xBF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6CA7FF7D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH0 DUP1 TLOAD SWAP2 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 TSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0xC42 PUSH32 0xD8AA0F3194971A2A116679F7C2090F6939C8D4E01A2A8D7E41D55E5351469E63 CALLER PUSH2 0x757 JUMP JUMPDEST CALLER SWAP1 PUSH2 0xC6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x3C687F6B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x44 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x572B6C05 PUSH1 0xE0 SHL OR DUP2 MSTORE DUP3 MLOAD SWAP3 SWAP4 POP PUSH0 SWAP3 DUP4 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP4 SWAP2 DUP10 GAS STATICCALL SWAP3 POP RETURNDATASIZE SWAP2 POP PUSH0 MLOAD SWAP1 POP DUP3 DUP1 ISZERO PUSH2 0xCD8 JUMPI POP PUSH1 0x20 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xCE3 JUMPI POP PUSH0 DUP2 GT JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0xD19 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0xD34 SWAP2 SWAP1 PUSH2 0x1369 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xD6E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xD73 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCE3 DUP7 DUP4 DUP4 PUSH2 0xDE8 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xD91 DUP7 DUP7 PUSH2 0xE44 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xDA1 DUP3 DUP3 PUSH2 0xE8D JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xDB5 DUP3 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x574 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xDFD JUMPI PUSH2 0xDF8 DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0xE14 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xE3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST POP DUP1 PUSH2 0x3B2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xE7B JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xE6D DUP9 DUP3 DUP6 DUP6 PUSH2 0xF6E JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xE86 JUMP JUMPDEST POP POP DUP2 MLOAD PUSH0 SWAP2 POP PUSH1 0x2 SWAP1 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEA0 JUMPI PUSH2 0xEA0 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEA9 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEBD JUMPI PUSH2 0xEBD PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xEDB JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xEEF JUMPI PUSH2 0xEEF PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xF10 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF24 JUMPI PUSH2 0xF24 PUSH2 0x137F JUMP JUMPDEST SUB PUSH2 0xDE4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0xF55 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xFA7 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFF8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1023 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x102C JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1085 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x1097 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x10FA DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1115 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x112C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1162 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1178 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1184 DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11AF DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11DA DUP10 DUP3 DUP11 ADD PUSH2 0x1105 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP4 SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x1208 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1229 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1234 DUP2 PUSH2 0x10C3 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1256 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x127C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x128D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0x10C3 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x38E JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x12FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1318 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x1146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP2 ADD SWAP1 DUP2 MSTORE PUSH1 0x14 ADD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1362 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 0x29 0xE1 STOP 0xAC PUSH0 0xD5 0xA5 0x2A 0xDD 0xE5 SDIV 0x4C 0xE4 0xE5 MUL 0xB7 SLT 0xDF 0xAA PUSH26 0x5B66C98037E0A7BBC1CB7E64736F6C634300081C003300000000 ","sourceMap":"1158:5897:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565:202:27;;;;;;;;;;-1:-1:-1;2565:202:27;;;;;:::i;:::-;;:::i;:::-;;;470:14:81;;463:22;445:41;;433:2;418:18;2565:202:27;;;;;;;;1295:66:16;;;;;;;;;;;;1335:26;1295:66;;;;;643:25:81;;;631:2;616:18;1295:66:16;497:177:81;1139:385:0;;;;;;;;;;-1:-1:-1;1139:385:0;;;;;:::i;:::-;;:::i;3810:120:27:-;;;;;;;;;;-1:-1:-1;3810:120:27;;;;;:::i;:::-;3875:7;3901:12;;;;;;;;;;:22;;;;3810:120;4226:136;;;;;;;;;;-1:-1:-1;4226:136:27;;;;;:::i;:::-;;:::i;:::-;;5328:245;;;;;;;;;;-1:-1:-1;5328:245:27;;;;;:::i;:::-;;:::i;3868:628:16:-;;;;;;;;;;-1:-1:-1;3868:628:16;;;;;:::i;:::-;;:::i;6644:103::-;;;:::i;6887:166::-;;;;;;;;;;-1:-1:-1;6887:166:16;;;;;:::i;:::-;;:::i;2854:136:27:-;;;;;;;;;;-1:-1:-1;2854:136:27;;;;;:::i;:::-;;:::i;2187:49::-;;;;;;;;;;-1:-1:-1;2187:49:27;2232:4;2187:49;;1654:102:16;;;;;;;;;;-1:-1:-1;1654:102:16;;-1:-1:-1;;;;;1740:11:16;4289:32:81;4271:51;;4259:2;4244:18;1654:102:16;4105:223:81;3203:294:16;;;;;;;;;;-1:-1:-1;3203:294:16;;;;;:::i;:::-;;:::i;6462:107::-;;;;;;;;;;;;;:::i;771:121:0:-;;;;;;;;;;;;;:::i;4642:138:27:-;;;;;;;;;;-1:-1:-1;4642:138:27;;;;;:::i;:::-;;:::i;1225:66:16:-;;;;;;;;;;;;1265:26;1225:66;;2565:202:27;2650:4;-1:-1:-1;;;;;;2673:47:27;;-1:-1:-1;;;2673:47:27;;:87;;-1:-1:-1;;;;;;;;;;862:40:65;;;2724:36:27;2666:94;2565:202;-1:-1:-1;;2565:202:27:o;1139:385:0:-;1314:22;1348:24;:22;:24::i;:::-;1399:38;1418:6;1426:10;1399:18;:38::i;:::-;1382:55;;1485:32;1497:19;1485:11;:32::i;:::-;1139:385;;;;;:::o;4226:136:27:-;3875:7;3901:12;;;;;;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4330:25:::1;4341:4;4347:7;4330:10;:25::i;:::-;;4226:136:::0;;;:::o;5328:245::-;-1:-1:-1;;;;;5421:34:27;;735:10:55;5421:34:27;5417:102;;5478:30;;-1:-1:-1;;;5478:30:27;;;;;;;;;;;5417:102;5529:37;5541:4;5547:18;5529:11;:37::i;:::-;;5328:245;;:::o;3868:628:16:-;3979:14;3996:34;:32;:34::i;:::-;3979:51;-1:-1:-1;4040:26:16;;;;;:80;;-1:-1:-1;4071:17:16;;;;;:48;;-1:-1:-1;4092:27:16;;;;4071:48;4036:111;;;4129:18;;-1:-1:-1;;;4129:18:16;;;;;;;;;;;4036:111;4158:9;4153:339;4173:15;;;4153:339;;;4220:6;;:94;;4275:4;;4280:1;4275:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4260:22:16;:4;;4265:5;4269:1;4265;:5;:::i;:::-;4260:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4260:22:16;;:53;;;;4286:27;4305:4;;4310:1;4305:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4286:18;:27::i;:::-;4220:94;;;4229:27;4248:4;;4253:1;4248:7;;;;;;;:::i;4229:27::-;4354:4;;4359:1;4354:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4203:167;;;;;-1:-1:-1;;;4203:167:16;;-1:-1:-1;;;;;4289:32:81;;;4203:167:16;;;4271:51:81;4244:18;;4203:167:16;;;;;;;;;;4378:107;4408:4;;4413:1;4408:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4434:4;;4439:1;4434:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;4443:6;4417:33;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4417:33:16;;;;;;;;;4452:17;;:32;;4476:5;;4482:1;4476:8;;;;;;;:::i;:::-;;;;;;;4378:29;:107::i;4452:32::-;4472:1;4378:29;:107::i;:::-;-1:-1:-1;4190:3:16;;4153:339;;;;3973:523;3868:628;;;;;;:::o;6644:103::-;1740:11;6687:55;;-1:-1:-1;;;6687:55:16;;6736:4;6687:55;;;4271:51:81;-1:-1:-1;;;;;6687:22:16;;;;;;;6717:9;;4244:18:81;;6687:55:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6644:103::o;6887:166::-;1265:26;2464:16:27;2475:4;2464:10;:16::i;:::-;1740:11:16;7000:48:::1;::::0;-1:-1:-1;;;7000:48:16;;-1:-1:-1;;;;;7100:32:81;;;7000:48:16::1;::::0;::::1;7082:51:81::0;7149:18;;;7142:34;;;7000:23:16;;;::::1;::::0;::::1;::::0;7055:18:81;;7000:48:16::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6887:166:::0;;;:::o;2854:136:27:-;2931:4;2954:12;;;;;;;;;;;-1:-1:-1;;;;;2954:29:27;;;;;;;;;;;;;;;2854:136::o;3203:294:16:-;3285:14;3302:34;:32;:34::i;:::-;3285:51;;3350:24;3369:4;3350:18;:24::i;:::-;3406:4;3342:70;;;;;-1:-1:-1;;;3342:70:16;;-1:-1:-1;;;;;4289:32:81;;;3342:70:16;;;4271:51:81;4244:18;;3342:70:16;4105:223:81;3342:70:16;;3418:74;3448:4;3471;;3477:6;3454:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3486:5;3418:29;:74::i;:::-;;3279:218;3203:294;;;;:::o;6462:107::-;6527:37;;-1:-1:-1;;;6527:37:16;;6558:4;6527:37;;;4271:51:81;6505:7:16;;-1:-1:-1;;;;;1740:11:16;6527:22;;;;4244:18:81;;6527:37:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6520:44;;6462:107;:::o;771:121:0:-;846:39;;-1:-1:-1;;;846:39:0;;876:4;846:39;;;7558:51:81;820:7:0;7625:18:81;;;7618:60;;;820:7:0;-1:-1:-1;;;;;1740:11:16;846:21:0;;;;7531:18:81;;846:39:0;7376:308:81;4642:138:27;3875:7;3901:12;;;;;;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4747:26:::1;4759:4;4765:7;4747:11;:26::i;1605:183:0:-:0;1692:10;-1:-1:-1;;;;;1740:11:16;1692:35:0;;1671:110;;;;-1:-1:-1;;;1671:110:0;;7891:2:81;1671:110:0;;;7873:21:81;7930:2;7910:18;;;7903:30;7969;7949:18;;;7942:58;8017:18;;1671:110:0;7689:352:81;1671:110:0;1605:183::o;4547:527:16:-;1376:34:64;4679:22:16;1363:48:64;;;1472:4;1465:25;;;1570:4;1554:21;;4781:17:16;4801:37;4709:66;4821:16;;;;:6;:16;:::i;:::-;4801:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4801:13:16;;-1:-1:-1;;;4801:37:16:i;:::-;4781:57;;4849:33;1335:26;4872:9;4849:7;:33::i;:::-;4844:68;;305:1:2;4884:28:16;;;;;;4844:68;5025:9;5009:13;:25;;-1:-1:-1;;;;;;5009:25:16;-1:-1:-1;;;;;5009:25:16;;;;;-1:-1:-1;465:1:2;;4547:527:16;-1:-1:-1;;;;;4547:527:16:o;3713:68:0:-;;:::o;4356:382::-;4437:24;;4433:299;;4496:126;;4478:12;;4504:10;;-1:-1:-1;;4587:17:0;4545:19;;4478:12;4496:126;4478:12;4496:126;4545:19;4504:10;4587:17;4496:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3199:103:27;3265:30;3276:4;735:10:55;3265::27;:30::i;6179:316::-;6256:4;6277:22;6285:4;6291:7;6277;:22::i;:::-;6272:217;;6315:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6315:29:27;;;;;;;;;:36;;-1:-1:-1;;6315:36:27;6347:4;6315:36;;;6397:12;735:10:55;;656:96;6397:12:27;-1:-1:-1;;;;;6370:40:27;6388:7;-1:-1:-1;;;;;6370:40:27;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:27;6424:11;;6272:217;-1:-1:-1;6473:5:27;6466:12;;6730:317;6808:4;6828:22;6836:4;6842:7;6828;:22::i;:::-;6824:217;;;6898:5;6866:12;;;;;;;;;;;-1:-1:-1;;;;;6866:29:27;;;;;;;;;;:37;;-1:-1:-1;;6866:37:27;;;6922:40;735:10:55;;6866:12:27;;6922:40;;6898:5;6922:40;-1:-1:-1;6983:4:27;6976:11;;2185:783:16;2247:14;1740:11;-1:-1:-1;;;;;2273:35:16;:10;:35;2269:581;;2351:1;2326:13;-1:-1:-1;;;;;2326:13:16;2318:58;;;;-1:-1:-1;;;2318:58:16;;;;;;;;;;;;-1:-1:-1;;;;;;2393:13:16;;;;;;;-1:-1:-1;;;;;;2796:26:16;2393:13;2796:26;;2185:783;:::o;2269:581::-;2863:34;1335:26;2886:10;2863:7;:34::i;:::-;2928:10;2855:85;;;;;-1:-1:-1;;;2855:85:16;;-1:-1:-1;;;;;4289:32:81;;;2855:85:16;;;4271:51:81;4244:18;;2855:85:16;4105:223:81;2855:85:16;;2953:10;2946:17;;2185:783;:::o;5341:1052::-;5448:66;;5507:4;5448:66;;;4271:51:81;5407:4:16;;;;4244:18:81;;5448:66:16;;;-1:-1:-1;;5448:66:16;;;;;;;;;;;;;;;-1:-1:-1;;;;;5448:66:16;-1:-1:-1;;;5448:66:16;;;6224:20;;5448:66;;-1:-1:-1;;;;;;;5448:66:16;;-1:-1:-1;;6190:6:16;6183:5;6172:82;6161:93;;6275:16;6261:30;;6319:1;6313:8;6298:23;;6340:7;:29;;;;;6365:4;6351:10;:18;;6340:29;:48;;;;;6387:1;6373:11;:15;6340:48;6333:55;5341:1052;-1:-1:-1;;;;;;5341:1052:16:o;2975:407:54:-;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:54;;3181:21;3154:56;;;8430:25:81;8471:18;;;8464:34;;;8403:18;;3154:56:54;8256:248:81;3098:123:54;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:54;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;3714:255:63:-;3792:7;3812:17;3831:18;3851:16;3871:27;3882:4;3888:9;3871:10;:27::i;:::-;3811:87;;;;;;3908:28;3920:5;3927:8;3908:11;:28::i;:::-;-1:-1:-1;3953:9:63;;3714:255;-1:-1:-1;;;;3714:255:63:o;3432:197:27:-;3520:22;3528:4;3534:7;3520;:22::i;:::-;3515:108;;3565:47;;-1:-1:-1;;;3565:47:27;;-1:-1:-1;;;;;7100:32:81;;3565:47:27;;;7082:51:81;7149:18;;;7142:34;;;7055:18;;3565:47:27;6892:290:81;3515:108:27;3432:197;;:::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;4289:32:81;;4933:24:54;;;4271:51:81;4244:18;;4933:24:54;4105:223:81;4853:119:54;-1:-1:-1;4992:10:54;4985:17;;2129:778:63;2232:17;2251:16;2269:14;2299:9;:16;2319:2;2299:22;2295:606;;2604:4;2589:20;;2583:27;2653:4;2638:20;;2632:27;2710:4;2695:20;;2689:27;2337:9;2681:36;2751:25;2762:4;2681:36;2583:27;2632;2751:10;:25::i;:::-;2744:32;;;;;;;;;;;2295:606;-1:-1:-1;;2872:16:63;;2823:1;;-1:-1:-1;2827:35:63;;2295:606;2129:778;;;;;:::o;7280:532::-;7375:20;7366:5;:29;;;;;;;;:::i;:::-;;7362:444;;7280:532;;:::o;7362:444::-;7471:29;7462:5;:38;;;;;;;;:::i;:::-;;7458:348;;7523:23;;-1:-1:-1;;;7523:23:63;;;;;;;;;;;7458:348;7576:35;7567:5;:44;;;;;;;;:::i;:::-;;7563:243;;7634:46;;-1:-1:-1;;;7634:46:63;;;;;643:25:81;;;616:18;;7634:46:63;497:177:81;7563:243:63;7710:30;7701:5;:39;;;;;;;;:::i;:::-;;7697:109;;7763:32;;-1:-1:-1;;;7763:32:63;;;;;643:25:81;;;616:18;;7763:32:63;497:177:81;5559:487:54;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;5203:1551:63;5329:17;;;6283:66;6270:79;;6266:164;;;-1:-1:-1;6381:1:63;;-1:-1:-1;6385:30:63;;-1:-1:-1;6417:1:63;6365:54;;6266:164;6541:24;;;6524:14;6541:24;;;;;;;;;9453:25:81;;;9526:4;9514:17;;9494:18;;;9487:45;;;;9548:18;;;9541:34;;;9591:18;;;9584:34;;;6541:24:63;;9425:19:81;;6541:24:63;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6541:24:63;;-1:-1:-1;;6541:24:63;;;-1:-1:-1;;;;;;;6579:20:63;;6575:113;;-1:-1:-1;6631:1:63;;-1:-1:-1;6635:29:63;;-1:-1:-1;6631:1:63;;-1:-1:-1;6615:62:63;;6575:113;6706:6;-1:-1:-1;6714:20:63;;-1:-1:-1;6714:20:63;;-1:-1:-1;5203:1551:63;;;;;;;;;:::o;14:286:81:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:81;;209:43;;199:71;;266:1;263;256:12;679:633;795:6;803;811;864:2;852:9;843:7;839:23;835:32;832:52;;;880:1;877;870:12;832:52;920:9;907:23;953:18;945:6;942:30;939:50;;;985:1;982;975:12;939:50;1008:22;;1064:3;1046:16;;;1042:26;1039:46;;;1081:1;1078;1071:12;1039:46;1104:2;1175;1160:18;;1147:32;;-1:-1:-1;1276:2:81;1261:18;;;1248:32;;679:633;-1:-1:-1;;;679:633:81:o;1499:226::-;1558:6;1611:2;1599:9;1590:7;1586:23;1582:32;1579:52;;;1627:1;1624;1617:12;1579:52;-1:-1:-1;1672:23:81;;1499:226;-1:-1:-1;1499:226:81:o;1730:131::-;-1:-1:-1;;;;;1805:31:81;;1795:42;;1785:70;;1851:1;1848;1841:12;1866:367;1934:6;1942;1995:2;1983:9;1974:7;1970:23;1966:32;1963:52;;;2011:1;2008;2001:12;1963:52;2056:23;;;-1:-1:-1;2155:2:81;2140:18;;2127:32;2168:33;2127:32;2168:33;:::i;:::-;2220:7;2210:17;;;1866:367;;;;;:::o;2238:::-;2301:8;2311:6;2365:3;2358:4;2350:6;2346:17;2342:27;2332:55;;2383:1;2380;2373:12;2332:55;-1:-1:-1;2406:20:81;;2449:18;2438:30;;2435:50;;;2481:1;2478;2471:12;2435:50;2518:4;2510:6;2506:17;2494:29;;2578:3;2571:4;2561:6;2558:1;2554:14;2546:6;2542:27;2538:38;2535:47;2532:67;;;2595:1;2592;2585:12;2532:67;2238:367;;;;;:::o;2610:1110::-;2779:6;2787;2795;2803;2811;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:52;;;2888:1;2885;2878:12;2840:52;2928:9;2915:23;2961:18;2953:6;2950:30;2947:50;;;2993:1;2990;2983:12;2947:50;3032:70;3094:7;3085:6;3074:9;3070:22;3032:70;:::i;:::-;3121:8;;-1:-1:-1;3006:96:81;-1:-1:-1;;3209:2:81;3194:18;;3181:32;3238:18;3225:32;;3222:52;;;3270:1;3267;3260:12;3222:52;3309:72;3373:7;3362:8;3351:9;3347:24;3309:72;:::i;:::-;3400:8;;-1:-1:-1;3283:98:81;-1:-1:-1;;3488:2:81;3473:18;;3460:32;3517:18;3504:32;;3501:52;;;3549:1;3546;3539:12;3501:52;3588:72;3652:7;3641:8;3630:9;3626:24;3588:72;:::i;:::-;2610:1110;;;;-1:-1:-1;2610:1110:81;;-1:-1:-1;2610:1110:81;;3679:8;;2610:1110;-1:-1:-1;;;2610:1110:81:o;3725:375::-;3801:6;3809;3862:2;3850:9;3841:7;3837:23;3833:32;3830:52;;;3878:1;3875;3868:12;3830:52;3917:9;3904:23;3936:31;3961:5;3936:31;:::i;:::-;3986:5;4064:2;4049:18;;;;4036:32;;-1:-1:-1;;;3725:375:81:o;4333:841::-;4421:6;4429;4437;4445;4498:2;4486:9;4477:7;4473:23;4469:32;4466:52;;;4514:1;4511;4504:12;4466:52;4553:9;4540:23;4572:31;4597:5;4572:31;:::i;:::-;4622:5;-1:-1:-1;4700:2:81;4685:18;;4672:32;;-1:-1:-1;4781:2:81;4766:18;;4753:32;4808:18;4797:30;;4794:50;;;4840:1;4837;4830:12;4794:50;4863:22;;4916:4;4908:13;;4904:27;-1:-1:-1;4894:55:81;;4945:1;4942;4935:12;4894:55;4985:2;4972:16;5011:18;5003:6;5000:30;4997:50;;;5043:1;5040;5033:12;4997:50;5088:7;5083:2;5074:6;5070:2;5066:15;5062:24;5059:37;5056:57;;;5109:1;5106;5099:12;5056:57;4333:841;;;;-1:-1:-1;5140:2:81;5132:11;;-1:-1:-1;;;4333:841:81:o;5179:127::-;5240:10;5235:3;5231:20;5228:1;5221:31;5271:4;5268:1;5261:15;5295:4;5292:1;5285:15;5311:247;5370:6;5423:2;5411:9;5402:7;5398:23;5394:32;5391:52;;;5439:1;5436;5429:12;5391:52;5478:9;5465:23;5497:31;5522:5;5497:31;:::i;5563:225::-;5630:9;;;5651:11;;;5648:134;;;5704:10;5699:3;5695:20;5692:1;5685:31;5739:4;5736:1;5729:15;5767:4;5764:1;5757:15;6001:521;6078:4;6084:6;6144:11;6131:25;6238:2;6234:7;6223:8;6207:14;6203:29;6199:43;6179:18;6175:68;6165:96;;6257:1;6254;6247:12;6165:96;6284:33;;6336:20;;;-1:-1:-1;6379:18:81;6368:30;;6365:50;;;6411:1;6408;6401:12;6365:50;6444:4;6432:17;;-1:-1:-1;6475:14:81;6471:27;;;6461:38;;6458:58;;;6512:1;6509;6502:12;6527:360;6738:6;6730;6725:3;6712:33;6808:2;6804:15;;;;-1:-1:-1;;6800:53:81;6764:16;;6789:65;;;6878:2;6870:11;;6527:360;-1:-1:-1;6527:360:81:o;7187:184::-;7257:6;7310:2;7298:9;7289:7;7285:23;7281:32;7278:52;;;7326:1;7323;7316:12;7278:52;-1:-1:-1;7349:16:81;;7187:184;-1:-1:-1;7187:184:81:o;8509:301::-;8638:3;8676:6;8670:13;8722:6;8715:4;8707:6;8703:17;8698:3;8692:37;8784:1;8748:16;;8773:13;;;-1:-1:-1;8748:16:81;8509:301;-1:-1:-1;8509:301:81:o;9094:127::-;9155:10;9150:3;9146:20;9143:1;9136:31;9186:4;9183:1;9176:15;9210:4;9207:1;9200:15"},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","EXECUTOR_ROLE()":"07bd0265","WITHDRAW_ROLE()":"e02023a1","addDeposit()":"4a58db19","entryPoint()":"b0d691fe","execute(address,uint256,bytes)":"b61d27f6","executeBatch(address[],uint256[],bytes[])":"47e1da2a","getDeposit()":"c399ec88","getNonce()":"d087d288","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7","validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"19822f7c","withdrawDepositTo(address,uint256)":"4d44560d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"anEntryPoint\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"executors\",\"type\":\"address[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"CanCallOnlyIfTrustedForwarder\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RequiredEntryPointOrExecutor\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UserOpSignerNotSet\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"WrongArrayLength\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXECUTOR_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"WITHDRAW_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"addDeposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"entryPoint\",\"outputs\":[{\"internalType\":\"contract IEntryPoint\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"dest\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"func\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"dest\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"value\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes[]\",\"name\":\"func\",\"type\":\"bytes[]\"}],\"name\":\"executeBatch\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"internalType\":\"bytes32\",\"name\":\"accountGasLimits\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"gasFees\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"paymasterAndData\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"}],\"internalType\":\"struct PackedUserOperation\",\"name\":\"userOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"missingAccountFunds\",\"type\":\"uint256\"}],\"name\":\"validateUserOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"withdrawAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawDepositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Smart Account that acts as an ERC2771 Trusted Forwarder, forwarding calls to other contract(s) where      the account is the trusted forwarder, on behalf of the signer of the userOp.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"execute(address,uint256,bytes)\":{\"params\":{\"dest\":\"destination address to call\",\"func\":\"the calldata to pass in this call\",\"value\":\"the value to pass in this call\"}},\"executeBatch(address[],uint256[],bytes[])\":{\"details\":\"to reduce gas consumption for trivial case (no value), use a zero-length array to mean zero value\",\"params\":{\"dest\":\"an array of destination addresses\",\"func\":\"an array of calldata to pass to each call\",\"value\":\"an array of values to pass to each call. can be zero-length for no-value calls\"}},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"details\":\"Must validate caller is the entryPoint.      Must validate the signature and nonce\",\"params\":{\"missingAccountFunds\":\"- Missing funds on the account's deposit in the entrypoint.                              This is the minimum amount to transfer to the sender(entryPoint) to be                              able to make the call. The excess is left as a deposit in the entrypoint                              for future calls. Can be withdrawn anytime using \\\"entryPoint.withdrawTo()\\\".                              In case there is a paymaster in the request (or the current deposit is high                              enough), this value will be zero.\",\"userOp\":\"- The operation that is about to be executed.\",\"userOpHash\":\"- Hash of the user's request data. can be used as the basis for signature.\"},\"returns\":{\"validationData\":\"      - Packaged ValidationData structure. use `_packValidationData` and                              `_unpackValidationData` to encode and decode.                              <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                 otherwise, an address of an \\\"authorizer\\\" contract.                              <6-byte> validUntil - Last timestamp this operation is valid. 0 for \\\"indefinite\\\"                              <6-byte> validAfter - First timestamp this operation is valid                                                    If an account doesn't use time-range, it is enough to                                                    return SIG_VALIDATION_FAILED value (1) for signature failure.                              Note that the validation code cannot use block.timestamp (or block.number) directly.\"}},\"withdrawDepositTo(address,uint256)\":{\"params\":{\"amount\":\"to withdraw\",\"withdrawAddress\":\"target to send to\"}}},\"title\":\"ERC2771ForwarderAccount\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addDeposit()\":{\"notice\":\"deposit more funds for this account in the entryPoint\"},\"entryPoint()\":{\"notice\":\"Return the entryPoint used by this account. Subclass should return the current entryPoint used by this account.\"},\"execute(address,uint256,bytes)\":{\"notice\":\"execute a transaction (called directly from owner, or by entryPoint)\"},\"executeBatch(address[],uint256[],bytes[])\":{\"notice\":\"execute a sequence of transactions\"},\"getDeposit()\":{\"notice\":\"check current account deposit in the entryPoint\"},\"getNonce()\":{\"notice\":\"Return the account nonce. This method returns the next sequential nonce. For a nonce of a specific key, use `entrypoint.getNonce(account, key)`\"},\"validateUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Validate user's signature and nonce the entryPoint will make the call to the recipient only if this validation call returns successfully. signature failure should be reported by returning SIG_VALIDATION_FAILED (1). This allows making a \\\"simulation call\\\" without a valid signature Other failures (e.g. nonce mismatch, or invalid signature format) should still revert to signal failure.\"},\"withdrawDepositTo(address,uint256)\":{\"notice\":\"withdraw value from the account's deposit\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol\":\"ERC2771ForwarderAccount\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/BaseAccount.sol\":{\"keccak256\":\"0x2736272f077d1699b8b8bf8be18d1c20e506668fc52b3293da70d17e63794358\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://35744475cf48405d7fd6edf6a96c84ef9da3ce844d8dfe3e2e1ffc30edf21d07\",\"dweb:/ipfs/QmUdau9VjVQ7iuRbdTmFSrXP7Hcasd9Cc57LP9thK78bwj\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/UserOperationLib.sol\":{\"keccak256\":\"0x9d50ece985d35f82e33e5da417595c86fac10449e3d10895d08363d33aad454b\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b1d11cc364c8bf7ed5388268c895b5ffed16e87dfbcb320ddeeba5e7974315dc\",\"dweb:/ipfs/QmYSpvjxEjweietQrYZagwQ52ipy7eXx4rwvnTzXKeGeMS\"]},\"@account-abstraction/contracts/interfaces/IAccount.sol\":{\"keccak256\":\"0x38710bec0cb20ff4ceef46a80475b5bdabc27b7efd2687fd473db68332f61b78\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://dea7a723e1ef852e8764e69914a345d2e8bc5e13facfc9d5c29d791cb4ab0020\",\"dweb:/ipfs/QmU8dYgyF4DBJXFqjwLAtnE3q8q259ChfoEk9a6wyhHzEP\"]},\"@account-abstraction/contracts/interfaces/IAggregator.sol\":{\"keccak256\":\"0xf100d6fcc0c3b450b13e979b6a42c628c292a1bc340eccc2e7796b80e3975588\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://192938b5b27234d35c8098a319e879363c79f750eea4d0e409dc889a8ce5b155\",\"dweb:/ipfs/QmURpaJFPqEtkKP2ngBsgZhAGN8wAWh5XQpYmCkiz4Urz5\"]},\"@account-abstraction/contracts/interfaces/IEntryPoint.sol\":{\"keccak256\":\"0x1972a5fcb3a808b58c85af5741949ef6af11ab0debd3ae8c708171ae1ae0d0c4\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://baa9837ae73b9e2362a47d42d081d7c0f3d8e878e5edb381117d94a6968949c9\",\"dweb:/ipfs/QmUmo6FUE7fv5z1WzW1YFjxp8PqaeN2JrEee9au59w3Xhe\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]},\"@account-abstraction/contracts/interfaces/PackedUserOperation.sol\":{\"keccak256\":\"0x1129b46381db68eddbc5cb49e50664667b66b03c480453858e7b25eabe444359\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://499a948aba60480dba6e25c763b8d918f1c246eb7a3302e04f493e080f3295be\",\"dweb:/ipfs/QmeRhhswf4NACcBKam2PyjpTP2ddSm648kah5kkQJsvwz3\"]},\"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol\":{\"keccak256\":\"0x3bec3493a4264d9719dae3e8860f27588a1392093df08bb9c78dd6129423776b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://90e8da7c925379074bb90a1082e77fde950409cad62d31ace9704cf7cf0e8da2\",\"dweb:/ipfs/QmVYeHEeMYAYn25mg2ZHucausePwHpPsxjZDVsxp5HYssC\"]},\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x0b030a33274bde015419d99e54c9164f876a7d10eb590317b79b1d5e4ab23d99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://68e5f96988198e8efd25ddef0d89750b4daebb7fd1204fa7f5eaccdfcb3398c8\",\"dweb:/ipfs/QmaM6nNkf9UmEtQraopuZamEWCdTWp7GvuN3pjMQrNCHxm\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":6798,"contract":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)6793_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_bytes32,t_struct(RoleData)6793_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)6793_storage"},"t_struct(RoleData)6793_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":6790,"contract":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":6792,"contract":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"}}}}},"@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"IPolicyHolder":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyExpired(address,address,uint256)":"e8e617b7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"}},\"title\":\"Policy holder interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":\"IPolicyHolder\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xddf0d346e5ee68e7ae051048112384409797d7e094a47ab404c6fb6bdf8827c1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://98a041a857a99cda900188969283dbf941ec034b641c7abea399c3e4ee94cb64\",\"dweb:/ipfs/QmdjuJipt2jAapKAk2APC1BTcsgajnbkQTthd4LiwA8F7r\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol":{"IPolicyHolderV2":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to be a holder of Ensuro Policies and receive notification of payouts and      replacements.      Implementors of this interface MUST return true on supportsInterface for both IPolicyHolder and IPolicyHolderV2.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolderV2.onPolicyReplaced.selector`.\"}},\"title\":\"Policy holder interface - V2 of the interface that adds onPolicyReplaced endpoint\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol\":\"IPolicyHolderV2\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xddf0d346e5ee68e7ae051048112384409797d7e094a47ab404c6fb6bdf8827c1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://98a041a857a99cda900188969283dbf941ec034b641c7abea399c3e4ee94cb64\",\"dweb:/ipfs/QmdjuJipt2jAapKAk2APC1BTcsgajnbkQTthd4LiwA8F7r\"]},\"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol\":{\"keccak256\":\"0x978c37bf3a9dfa2942a53ff10d0b6a4ac16510b6f3231ee2415ea6ea5349512f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://9b777c52b8697624c3504156f409b5238de8ebc778ccdadb5dafb42d6293a559\",\"dweb:/ipfs/QmVgGMPkpCL3ompGN4tHG5jdopkTuGaHQvK7eZUcxCDvh6\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/utils/contracts/TestCurrency.sol":{"TestCurrency":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"value","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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_10524":{"entryPoint":null,"id":10524,"parameterSlots":2,"returnSlots":0},"@_4398":{"entryPoint":null,"id":4398,"parameterSlots":5,"returnSlots":0},"@_grantRole_7028":{"entryPoint":175,"id":7028,"parameterSlots":2,"returnSlots":1},"@_mint_10827":{"entryPoint":114,"id":10827,"parameterSlots":2,"returnSlots":0},"@_msgSender_12592":{"entryPoint":null,"id":12592,"parameterSlots":0,"returnSlots":1},"@_update_10794":{"entryPoint":348,"id":10794,"parameterSlots":3,"returnSlots":0},"@hasRole_6852":{"entryPoint":null,"id":6852,"parameterSlots":2,"returnSlots":1},"abi_decode_string_fromMemory":{"entryPoint":662,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8t_address_fromMemory":{"entryPoint":799,"id":null,"parameterSlots":2,"returnSlots":5},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1282,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":1020,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":1096,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":964,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":642,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:5318:81","nodeType":"YulBlock","src":"0:5318:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"46:95:81","nodeType":"YulBlock","src":"46:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:81","nodeType":"YulLiteral","src":"63:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:81","nodeType":"YulLiteral","src":"70:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:81","nodeType":"YulLiteral","src":"75:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:81","nodeType":"YulIdentifier","src":"66:3:81"},"nativeSrc":"66:20:81","nodeType":"YulFunctionCall","src":"66:20:81"}],"functionName":{"name":"mstore","nativeSrc":"56:6:81","nodeType":"YulIdentifier","src":"56:6:81"},"nativeSrc":"56:31:81","nodeType":"YulFunctionCall","src":"56:31:81"},"nativeSrc":"56:31:81","nodeType":"YulExpressionStatement","src":"56:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:81","nodeType":"YulLiteral","src":"103:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:81","nodeType":"YulLiteral","src":"106:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:81","nodeType":"YulIdentifier","src":"96:6:81"},"nativeSrc":"96:15:81","nodeType":"YulFunctionCall","src":"96:15:81"},"nativeSrc":"96:15:81","nodeType":"YulExpressionStatement","src":"96:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:81","nodeType":"YulLiteral","src":"127:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:81","nodeType":"YulLiteral","src":"130:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:81","nodeType":"YulIdentifier","src":"120:6:81"},"nativeSrc":"120:15:81","nodeType":"YulFunctionCall","src":"120:15:81"},"nativeSrc":"120:15:81","nodeType":"YulExpressionStatement","src":"120:15:81"}]},"name":"panic_error_0x41","nativeSrc":"14:127:81","nodeType":"YulFunctionDefinition","src":"14:127:81"},{"body":{"nativeSrc":"210:659:81","nodeType":"YulBlock","src":"210:659:81","statements":[{"body":{"nativeSrc":"259:16:81","nodeType":"YulBlock","src":"259:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:81","nodeType":"YulLiteral","src":"268:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:81","nodeType":"YulLiteral","src":"271:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:81","nodeType":"YulIdentifier","src":"261:6:81"},"nativeSrc":"261:12:81","nodeType":"YulFunctionCall","src":"261:12:81"},"nativeSrc":"261:12:81","nodeType":"YulExpressionStatement","src":"261:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:81","nodeType":"YulIdentifier","src":"238:6:81"},{"kind":"number","nativeSrc":"246:4:81","nodeType":"YulLiteral","src":"246:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:81","nodeType":"YulIdentifier","src":"234:3:81"},"nativeSrc":"234:17:81","nodeType":"YulFunctionCall","src":"234:17:81"},{"name":"end","nativeSrc":"253:3:81","nodeType":"YulIdentifier","src":"253:3:81"}],"functionName":{"name":"slt","nativeSrc":"230:3:81","nodeType":"YulIdentifier","src":"230:3:81"},"nativeSrc":"230:27:81","nodeType":"YulFunctionCall","src":"230:27:81"}],"functionName":{"name":"iszero","nativeSrc":"223:6:81","nodeType":"YulIdentifier","src":"223:6:81"},"nativeSrc":"223:35:81","nodeType":"YulFunctionCall","src":"223:35:81"},"nativeSrc":"220:55:81","nodeType":"YulIf","src":"220:55:81"},{"nativeSrc":"284:27:81","nodeType":"YulVariableDeclaration","src":"284:27:81","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:81","nodeType":"YulIdentifier","src":"304:6:81"}],"functionName":{"name":"mload","nativeSrc":"298:5:81","nodeType":"YulIdentifier","src":"298:5:81"},"nativeSrc":"298:13:81","nodeType":"YulFunctionCall","src":"298:13:81"},"variables":[{"name":"length","nativeSrc":"288:6:81","nodeType":"YulTypedName","src":"288:6:81","type":""}]},{"body":{"nativeSrc":"354:22:81","nodeType":"YulBlock","src":"354:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:81","nodeType":"YulIdentifier","src":"356:16:81"},"nativeSrc":"356:18:81","nodeType":"YulFunctionCall","src":"356:18:81"},"nativeSrc":"356:18:81","nodeType":"YulExpressionStatement","src":"356:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:81","nodeType":"YulIdentifier","src":"326:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:81","nodeType":"YulLiteral","src":"342:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:81","nodeType":"YulLiteral","src":"346:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:81","nodeType":"YulIdentifier","src":"338:3:81"},"nativeSrc":"338:10:81","nodeType":"YulFunctionCall","src":"338:10:81"},{"kind":"number","nativeSrc":"350:1:81","nodeType":"YulLiteral","src":"350:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:81","nodeType":"YulIdentifier","src":"334:3:81"},"nativeSrc":"334:18:81","nodeType":"YulFunctionCall","src":"334:18:81"}],"functionName":{"name":"gt","nativeSrc":"323:2:81","nodeType":"YulIdentifier","src":"323:2:81"},"nativeSrc":"323:30:81","nodeType":"YulFunctionCall","src":"323:30:81"},"nativeSrc":"320:56:81","nodeType":"YulIf","src":"320:56:81"},{"nativeSrc":"385:23:81","nodeType":"YulVariableDeclaration","src":"385:23:81","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:81","nodeType":"YulLiteral","src":"405:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:81","nodeType":"YulIdentifier","src":"399:5:81"},"nativeSrc":"399:9:81","nodeType":"YulFunctionCall","src":"399:9:81"},"variables":[{"name":"memPtr","nativeSrc":"389:6:81","nodeType":"YulTypedName","src":"389:6:81","type":""}]},{"nativeSrc":"417:85:81","nodeType":"YulVariableDeclaration","src":"417:85:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:81","nodeType":"YulIdentifier","src":"439:6:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:81","nodeType":"YulIdentifier","src":"463:6:81"},{"kind":"number","nativeSrc":"471:4:81","nodeType":"YulLiteral","src":"471:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:81","nodeType":"YulIdentifier","src":"459:3:81"},"nativeSrc":"459:17:81","nodeType":"YulFunctionCall","src":"459:17:81"},{"arguments":[{"kind":"number","nativeSrc":"482:2:81","nodeType":"YulLiteral","src":"482:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:81","nodeType":"YulIdentifier","src":"478:3:81"},"nativeSrc":"478:7:81","nodeType":"YulFunctionCall","src":"478:7:81"}],"functionName":{"name":"and","nativeSrc":"455:3:81","nodeType":"YulIdentifier","src":"455:3:81"},"nativeSrc":"455:31:81","nodeType":"YulFunctionCall","src":"455:31:81"},{"kind":"number","nativeSrc":"488:2:81","nodeType":"YulLiteral","src":"488:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:81","nodeType":"YulIdentifier","src":"451:3:81"},"nativeSrc":"451:40:81","nodeType":"YulFunctionCall","src":"451:40:81"},{"arguments":[{"kind":"number","nativeSrc":"497:2:81","nodeType":"YulLiteral","src":"497:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:81","nodeType":"YulIdentifier","src":"493:3:81"},"nativeSrc":"493:7:81","nodeType":"YulFunctionCall","src":"493:7:81"}],"functionName":{"name":"and","nativeSrc":"447:3:81","nodeType":"YulIdentifier","src":"447:3:81"},"nativeSrc":"447:54:81","nodeType":"YulFunctionCall","src":"447:54:81"}],"functionName":{"name":"add","nativeSrc":"435:3:81","nodeType":"YulIdentifier","src":"435:3:81"},"nativeSrc":"435:67:81","nodeType":"YulFunctionCall","src":"435:67:81"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:81","nodeType":"YulTypedName","src":"421:10:81","type":""}]},{"body":{"nativeSrc":"577:22:81","nodeType":"YulBlock","src":"577:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:81","nodeType":"YulIdentifier","src":"579:16:81"},"nativeSrc":"579:18:81","nodeType":"YulFunctionCall","src":"579:18:81"},"nativeSrc":"579:18:81","nodeType":"YulExpressionStatement","src":"579:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:81","nodeType":"YulIdentifier","src":"520:10:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:81","nodeType":"YulLiteral","src":"540:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:81","nodeType":"YulLiteral","src":"544:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:81","nodeType":"YulIdentifier","src":"536:3:81"},"nativeSrc":"536:10:81","nodeType":"YulFunctionCall","src":"536:10:81"},{"kind":"number","nativeSrc":"548:1:81","nodeType":"YulLiteral","src":"548:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:81","nodeType":"YulIdentifier","src":"532:3:81"},"nativeSrc":"532:18:81","nodeType":"YulFunctionCall","src":"532:18:81"}],"functionName":{"name":"gt","nativeSrc":"517:2:81","nodeType":"YulIdentifier","src":"517:2:81"},"nativeSrc":"517:34:81","nodeType":"YulFunctionCall","src":"517:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:81","nodeType":"YulIdentifier","src":"556:10:81"},{"name":"memPtr","nativeSrc":"568:6:81","nodeType":"YulIdentifier","src":"568:6:81"}],"functionName":{"name":"lt","nativeSrc":"553:2:81","nodeType":"YulIdentifier","src":"553:2:81"},"nativeSrc":"553:22:81","nodeType":"YulFunctionCall","src":"553:22:81"}],"functionName":{"name":"or","nativeSrc":"514:2:81","nodeType":"YulIdentifier","src":"514:2:81"},"nativeSrc":"514:62:81","nodeType":"YulFunctionCall","src":"514:62:81"},"nativeSrc":"511:88:81","nodeType":"YulIf","src":"511:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:81","nodeType":"YulLiteral","src":"615:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:81","nodeType":"YulIdentifier","src":"619:10:81"}],"functionName":{"name":"mstore","nativeSrc":"608:6:81","nodeType":"YulIdentifier","src":"608:6:81"},"nativeSrc":"608:22:81","nodeType":"YulFunctionCall","src":"608:22:81"},"nativeSrc":"608:22:81","nodeType":"YulExpressionStatement","src":"608:22:81"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:81","nodeType":"YulIdentifier","src":"646:6:81"},{"name":"length","nativeSrc":"654:6:81","nodeType":"YulIdentifier","src":"654:6:81"}],"functionName":{"name":"mstore","nativeSrc":"639:6:81","nodeType":"YulIdentifier","src":"639:6:81"},"nativeSrc":"639:22:81","nodeType":"YulFunctionCall","src":"639:22:81"},"nativeSrc":"639:22:81","nodeType":"YulExpressionStatement","src":"639:22:81"},{"body":{"nativeSrc":"713:16:81","nodeType":"YulBlock","src":"713:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:81","nodeType":"YulLiteral","src":"722:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:81","nodeType":"YulLiteral","src":"725:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:81","nodeType":"YulIdentifier","src":"715:6:81"},"nativeSrc":"715:12:81","nodeType":"YulFunctionCall","src":"715:12:81"},"nativeSrc":"715:12:81","nodeType":"YulExpressionStatement","src":"715:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:81","nodeType":"YulIdentifier","src":"684:6:81"},{"name":"length","nativeSrc":"692:6:81","nodeType":"YulIdentifier","src":"692:6:81"}],"functionName":{"name":"add","nativeSrc":"680:3:81","nodeType":"YulIdentifier","src":"680:3:81"},"nativeSrc":"680:19:81","nodeType":"YulFunctionCall","src":"680:19:81"},{"kind":"number","nativeSrc":"701:4:81","nodeType":"YulLiteral","src":"701:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:81","nodeType":"YulIdentifier","src":"676:3:81"},"nativeSrc":"676:30:81","nodeType":"YulFunctionCall","src":"676:30:81"},{"name":"end","nativeSrc":"708:3:81","nodeType":"YulIdentifier","src":"708:3:81"}],"functionName":{"name":"gt","nativeSrc":"673:2:81","nodeType":"YulIdentifier","src":"673:2:81"},"nativeSrc":"673:39:81","nodeType":"YulFunctionCall","src":"673:39:81"},"nativeSrc":"670:59:81","nodeType":"YulIf","src":"670:59:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:81","nodeType":"YulIdentifier","src":"748:6:81"},{"kind":"number","nativeSrc":"756:4:81","nodeType":"YulLiteral","src":"756:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:81","nodeType":"YulIdentifier","src":"744:3:81"},"nativeSrc":"744:17:81","nodeType":"YulFunctionCall","src":"744:17:81"},{"arguments":[{"name":"offset","nativeSrc":"767:6:81","nodeType":"YulIdentifier","src":"767:6:81"},{"kind":"number","nativeSrc":"775:4:81","nodeType":"YulLiteral","src":"775:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:81","nodeType":"YulIdentifier","src":"763:3:81"},"nativeSrc":"763:17:81","nodeType":"YulFunctionCall","src":"763:17:81"},{"name":"length","nativeSrc":"782:6:81","nodeType":"YulIdentifier","src":"782:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:81","nodeType":"YulIdentifier","src":"738:5:81"},"nativeSrc":"738:51:81","nodeType":"YulFunctionCall","src":"738:51:81"},"nativeSrc":"738:51:81","nodeType":"YulExpressionStatement","src":"738:51:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:81","nodeType":"YulIdentifier","src":"813:6:81"},{"name":"length","nativeSrc":"821:6:81","nodeType":"YulIdentifier","src":"821:6:81"}],"functionName":{"name":"add","nativeSrc":"809:3:81","nodeType":"YulIdentifier","src":"809:3:81"},"nativeSrc":"809:19:81","nodeType":"YulFunctionCall","src":"809:19:81"},{"kind":"number","nativeSrc":"830:4:81","nodeType":"YulLiteral","src":"830:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:81","nodeType":"YulIdentifier","src":"805:3:81"},"nativeSrc":"805:30:81","nodeType":"YulFunctionCall","src":"805:30:81"},{"kind":"number","nativeSrc":"837:1:81","nodeType":"YulLiteral","src":"837:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:81","nodeType":"YulIdentifier","src":"798:6:81"},"nativeSrc":"798:41:81","nodeType":"YulFunctionCall","src":"798:41:81"},"nativeSrc":"798:41:81","nodeType":"YulExpressionStatement","src":"798:41:81"},{"nativeSrc":"848:15:81","nodeType":"YulAssignment","src":"848:15:81","value":{"name":"memPtr","nativeSrc":"857:6:81","nodeType":"YulIdentifier","src":"857:6:81"},"variableNames":[{"name":"array","nativeSrc":"848:5:81","nodeType":"YulIdentifier","src":"848:5:81"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:81","nodeType":"YulTypedName","src":"184:6:81","type":""},{"name":"end","nativeSrc":"192:3:81","nodeType":"YulTypedName","src":"192:3:81","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:81","nodeType":"YulTypedName","src":"200:5:81","type":""}],"src":"146:723:81"},{"body":{"nativeSrc":"1041:799:81","nodeType":"YulBlock","src":"1041:799:81","statements":[{"body":{"nativeSrc":"1088:16:81","nodeType":"YulBlock","src":"1088:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1097:1:81","nodeType":"YulLiteral","src":"1097:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1100:1:81","nodeType":"YulLiteral","src":"1100:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1090:6:81","nodeType":"YulIdentifier","src":"1090:6:81"},"nativeSrc":"1090:12:81","nodeType":"YulFunctionCall","src":"1090:12:81"},"nativeSrc":"1090:12:81","nodeType":"YulExpressionStatement","src":"1090:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1062:7:81","nodeType":"YulIdentifier","src":"1062:7:81"},{"name":"headStart","nativeSrc":"1071:9:81","nodeType":"YulIdentifier","src":"1071:9:81"}],"functionName":{"name":"sub","nativeSrc":"1058:3:81","nodeType":"YulIdentifier","src":"1058:3:81"},"nativeSrc":"1058:23:81","nodeType":"YulFunctionCall","src":"1058:23:81"},{"kind":"number","nativeSrc":"1083:3:81","nodeType":"YulLiteral","src":"1083:3:81","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"1054:3:81","nodeType":"YulIdentifier","src":"1054:3:81"},"nativeSrc":"1054:33:81","nodeType":"YulFunctionCall","src":"1054:33:81"},"nativeSrc":"1051:53:81","nodeType":"YulIf","src":"1051:53:81"},{"nativeSrc":"1113:30:81","nodeType":"YulVariableDeclaration","src":"1113:30:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1133:9:81","nodeType":"YulIdentifier","src":"1133:9:81"}],"functionName":{"name":"mload","nativeSrc":"1127:5:81","nodeType":"YulIdentifier","src":"1127:5:81"},"nativeSrc":"1127:16:81","nodeType":"YulFunctionCall","src":"1127:16:81"},"variables":[{"name":"offset","nativeSrc":"1117:6:81","nodeType":"YulTypedName","src":"1117:6:81","type":""}]},{"body":{"nativeSrc":"1186:16:81","nodeType":"YulBlock","src":"1186:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1195:1:81","nodeType":"YulLiteral","src":"1195:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1198:1:81","nodeType":"YulLiteral","src":"1198:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1188:6:81","nodeType":"YulIdentifier","src":"1188:6:81"},"nativeSrc":"1188:12:81","nodeType":"YulFunctionCall","src":"1188:12:81"},"nativeSrc":"1188:12:81","nodeType":"YulExpressionStatement","src":"1188:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1158:6:81","nodeType":"YulIdentifier","src":"1158:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1174:2:81","nodeType":"YulLiteral","src":"1174:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1178:1:81","nodeType":"YulLiteral","src":"1178:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1170:3:81","nodeType":"YulIdentifier","src":"1170:3:81"},"nativeSrc":"1170:10:81","nodeType":"YulFunctionCall","src":"1170:10:81"},{"kind":"number","nativeSrc":"1182:1:81","nodeType":"YulLiteral","src":"1182:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1166:3:81","nodeType":"YulIdentifier","src":"1166:3:81"},"nativeSrc":"1166:18:81","nodeType":"YulFunctionCall","src":"1166:18:81"}],"functionName":{"name":"gt","nativeSrc":"1155:2:81","nodeType":"YulIdentifier","src":"1155:2:81"},"nativeSrc":"1155:30:81","nodeType":"YulFunctionCall","src":"1155:30:81"},"nativeSrc":"1152:50:81","nodeType":"YulIf","src":"1152:50:81"},{"nativeSrc":"1211:71:81","nodeType":"YulAssignment","src":"1211:71:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1254:9:81","nodeType":"YulIdentifier","src":"1254:9:81"},{"name":"offset","nativeSrc":"1265:6:81","nodeType":"YulIdentifier","src":"1265:6:81"}],"functionName":{"name":"add","nativeSrc":"1250:3:81","nodeType":"YulIdentifier","src":"1250:3:81"},"nativeSrc":"1250:22:81","nodeType":"YulFunctionCall","src":"1250:22:81"},{"name":"dataEnd","nativeSrc":"1274:7:81","nodeType":"YulIdentifier","src":"1274:7:81"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1221:28:81","nodeType":"YulIdentifier","src":"1221:28:81"},"nativeSrc":"1221:61:81","nodeType":"YulFunctionCall","src":"1221:61:81"},"variableNames":[{"name":"value0","nativeSrc":"1211:6:81","nodeType":"YulIdentifier","src":"1211:6:81"}]},{"nativeSrc":"1291:41:81","nodeType":"YulVariableDeclaration","src":"1291:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1317:9:81","nodeType":"YulIdentifier","src":"1317:9:81"},{"kind":"number","nativeSrc":"1328:2:81","nodeType":"YulLiteral","src":"1328:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1313:3:81","nodeType":"YulIdentifier","src":"1313:3:81"},"nativeSrc":"1313:18:81","nodeType":"YulFunctionCall","src":"1313:18:81"}],"functionName":{"name":"mload","nativeSrc":"1307:5:81","nodeType":"YulIdentifier","src":"1307:5:81"},"nativeSrc":"1307:25:81","nodeType":"YulFunctionCall","src":"1307:25:81"},"variables":[{"name":"offset_1","nativeSrc":"1295:8:81","nodeType":"YulTypedName","src":"1295:8:81","type":""}]},{"body":{"nativeSrc":"1377:16:81","nodeType":"YulBlock","src":"1377:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1386:1:81","nodeType":"YulLiteral","src":"1386:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1389:1:81","nodeType":"YulLiteral","src":"1389:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1379:6:81","nodeType":"YulIdentifier","src":"1379:6:81"},"nativeSrc":"1379:12:81","nodeType":"YulFunctionCall","src":"1379:12:81"},"nativeSrc":"1379:12:81","nodeType":"YulExpressionStatement","src":"1379:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1347:8:81","nodeType":"YulIdentifier","src":"1347:8:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1365:2:81","nodeType":"YulLiteral","src":"1365:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1369:1:81","nodeType":"YulLiteral","src":"1369:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1361:3:81","nodeType":"YulIdentifier","src":"1361:3:81"},"nativeSrc":"1361:10:81","nodeType":"YulFunctionCall","src":"1361:10:81"},{"kind":"number","nativeSrc":"1373:1:81","nodeType":"YulLiteral","src":"1373:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1357:3:81","nodeType":"YulIdentifier","src":"1357:3:81"},"nativeSrc":"1357:18:81","nodeType":"YulFunctionCall","src":"1357:18:81"}],"functionName":{"name":"gt","nativeSrc":"1344:2:81","nodeType":"YulIdentifier","src":"1344:2:81"},"nativeSrc":"1344:32:81","nodeType":"YulFunctionCall","src":"1344:32:81"},"nativeSrc":"1341:52:81","nodeType":"YulIf","src":"1341:52:81"},{"nativeSrc":"1402:73:81","nodeType":"YulAssignment","src":"1402:73:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1445:9:81","nodeType":"YulIdentifier","src":"1445:9:81"},{"name":"offset_1","nativeSrc":"1456:8:81","nodeType":"YulIdentifier","src":"1456:8:81"}],"functionName":{"name":"add","nativeSrc":"1441:3:81","nodeType":"YulIdentifier","src":"1441:3:81"},"nativeSrc":"1441:24:81","nodeType":"YulFunctionCall","src":"1441:24:81"},{"name":"dataEnd","nativeSrc":"1467:7:81","nodeType":"YulIdentifier","src":"1467:7:81"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1412:28:81","nodeType":"YulIdentifier","src":"1412:28:81"},"nativeSrc":"1412:63:81","nodeType":"YulFunctionCall","src":"1412:63:81"},"variableNames":[{"name":"value1","nativeSrc":"1402:6:81","nodeType":"YulIdentifier","src":"1402:6:81"}]},{"nativeSrc":"1484:35:81","nodeType":"YulAssignment","src":"1484:35:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1504:9:81","nodeType":"YulIdentifier","src":"1504:9:81"},{"kind":"number","nativeSrc":"1515:2:81","nodeType":"YulLiteral","src":"1515:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1500:3:81","nodeType":"YulIdentifier","src":"1500:3:81"},"nativeSrc":"1500:18:81","nodeType":"YulFunctionCall","src":"1500:18:81"}],"functionName":{"name":"mload","nativeSrc":"1494:5:81","nodeType":"YulIdentifier","src":"1494:5:81"},"nativeSrc":"1494:25:81","nodeType":"YulFunctionCall","src":"1494:25:81"},"variableNames":[{"name":"value2","nativeSrc":"1484:6:81","nodeType":"YulIdentifier","src":"1484:6:81"}]},{"nativeSrc":"1528:38:81","nodeType":"YulVariableDeclaration","src":"1528:38:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1551:9:81","nodeType":"YulIdentifier","src":"1551:9:81"},{"kind":"number","nativeSrc":"1562:2:81","nodeType":"YulLiteral","src":"1562:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1547:3:81","nodeType":"YulIdentifier","src":"1547:3:81"},"nativeSrc":"1547:18:81","nodeType":"YulFunctionCall","src":"1547:18:81"}],"functionName":{"name":"mload","nativeSrc":"1541:5:81","nodeType":"YulIdentifier","src":"1541:5:81"},"nativeSrc":"1541:25:81","nodeType":"YulFunctionCall","src":"1541:25:81"},"variables":[{"name":"value","nativeSrc":"1532:5:81","nodeType":"YulTypedName","src":"1532:5:81","type":""}]},{"body":{"nativeSrc":"1614:16:81","nodeType":"YulBlock","src":"1614:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1623:1:81","nodeType":"YulLiteral","src":"1623:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1626:1:81","nodeType":"YulLiteral","src":"1626:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1616:6:81","nodeType":"YulIdentifier","src":"1616:6:81"},"nativeSrc":"1616:12:81","nodeType":"YulFunctionCall","src":"1616:12:81"},"nativeSrc":"1616:12:81","nodeType":"YulExpressionStatement","src":"1616:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1588:5:81","nodeType":"YulIdentifier","src":"1588:5:81"},{"arguments":[{"name":"value","nativeSrc":"1599:5:81","nodeType":"YulIdentifier","src":"1599:5:81"},{"kind":"number","nativeSrc":"1606:4:81","nodeType":"YulLiteral","src":"1606:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1595:3:81","nodeType":"YulIdentifier","src":"1595:3:81"},"nativeSrc":"1595:16:81","nodeType":"YulFunctionCall","src":"1595:16:81"}],"functionName":{"name":"eq","nativeSrc":"1585:2:81","nodeType":"YulIdentifier","src":"1585:2:81"},"nativeSrc":"1585:27:81","nodeType":"YulFunctionCall","src":"1585:27:81"}],"functionName":{"name":"iszero","nativeSrc":"1578:6:81","nodeType":"YulIdentifier","src":"1578:6:81"},"nativeSrc":"1578:35:81","nodeType":"YulFunctionCall","src":"1578:35:81"},"nativeSrc":"1575:55:81","nodeType":"YulIf","src":"1575:55:81"},{"nativeSrc":"1639:15:81","nodeType":"YulAssignment","src":"1639:15:81","value":{"name":"value","nativeSrc":"1649:5:81","nodeType":"YulIdentifier","src":"1649:5:81"},"variableNames":[{"name":"value3","nativeSrc":"1639:6:81","nodeType":"YulIdentifier","src":"1639:6:81"}]},{"nativeSrc":"1663:16:81","nodeType":"YulVariableDeclaration","src":"1663:16:81","value":{"kind":"number","nativeSrc":"1678:1:81","nodeType":"YulLiteral","src":"1678:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1667:7:81","nodeType":"YulTypedName","src":"1667:7:81","type":""}]},{"nativeSrc":"1688:37:81","nodeType":"YulAssignment","src":"1688:37:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1709:9:81","nodeType":"YulIdentifier","src":"1709:9:81"},{"kind":"number","nativeSrc":"1720:3:81","nodeType":"YulLiteral","src":"1720:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"1705:3:81","nodeType":"YulIdentifier","src":"1705:3:81"},"nativeSrc":"1705:19:81","nodeType":"YulFunctionCall","src":"1705:19:81"}],"functionName":{"name":"mload","nativeSrc":"1699:5:81","nodeType":"YulIdentifier","src":"1699:5:81"},"nativeSrc":"1699:26:81","nodeType":"YulFunctionCall","src":"1699:26:81"},"variableNames":[{"name":"value_1","nativeSrc":"1688:7:81","nodeType":"YulIdentifier","src":"1688:7:81"}]},{"body":{"nativeSrc":"1792:16:81","nodeType":"YulBlock","src":"1792:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1801:1:81","nodeType":"YulLiteral","src":"1801:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1804:1:81","nodeType":"YulLiteral","src":"1804:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1794:6:81","nodeType":"YulIdentifier","src":"1794:6:81"},"nativeSrc":"1794:12:81","nodeType":"YulFunctionCall","src":"1794:12:81"},"nativeSrc":"1794:12:81","nodeType":"YulExpressionStatement","src":"1794:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1747:7:81","nodeType":"YulIdentifier","src":"1747:7:81"},{"arguments":[{"name":"value_1","nativeSrc":"1760:7:81","nodeType":"YulIdentifier","src":"1760:7:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1777:3:81","nodeType":"YulLiteral","src":"1777:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1782:1:81","nodeType":"YulLiteral","src":"1782:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1773:3:81","nodeType":"YulIdentifier","src":"1773:3:81"},"nativeSrc":"1773:11:81","nodeType":"YulFunctionCall","src":"1773:11:81"},{"kind":"number","nativeSrc":"1786:1:81","nodeType":"YulLiteral","src":"1786:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1769:3:81","nodeType":"YulIdentifier","src":"1769:3:81"},"nativeSrc":"1769:19:81","nodeType":"YulFunctionCall","src":"1769:19:81"}],"functionName":{"name":"and","nativeSrc":"1756:3:81","nodeType":"YulIdentifier","src":"1756:3:81"},"nativeSrc":"1756:33:81","nodeType":"YulFunctionCall","src":"1756:33:81"}],"functionName":{"name":"eq","nativeSrc":"1744:2:81","nodeType":"YulIdentifier","src":"1744:2:81"},"nativeSrc":"1744:46:81","nodeType":"YulFunctionCall","src":"1744:46:81"}],"functionName":{"name":"iszero","nativeSrc":"1737:6:81","nodeType":"YulIdentifier","src":"1737:6:81"},"nativeSrc":"1737:54:81","nodeType":"YulFunctionCall","src":"1737:54:81"},"nativeSrc":"1734:74:81","nodeType":"YulIf","src":"1734:74:81"},{"nativeSrc":"1817:17:81","nodeType":"YulAssignment","src":"1817:17:81","value":{"name":"value_1","nativeSrc":"1827:7:81","nodeType":"YulIdentifier","src":"1827:7:81"},"variableNames":[{"name":"value4","nativeSrc":"1817:6:81","nodeType":"YulIdentifier","src":"1817:6:81"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8t_address_fromMemory","nativeSrc":"874:966:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"975:9:81","nodeType":"YulTypedName","src":"975:9:81","type":""},{"name":"dataEnd","nativeSrc":"986:7:81","nodeType":"YulTypedName","src":"986:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"998:6:81","nodeType":"YulTypedName","src":"998:6:81","type":""},{"name":"value1","nativeSrc":"1006:6:81","nodeType":"YulTypedName","src":"1006:6:81","type":""},{"name":"value2","nativeSrc":"1014:6:81","nodeType":"YulTypedName","src":"1014:6:81","type":""},{"name":"value3","nativeSrc":"1022:6:81","nodeType":"YulTypedName","src":"1022:6:81","type":""},{"name":"value4","nativeSrc":"1030:6:81","nodeType":"YulTypedName","src":"1030:6:81","type":""}],"src":"874:966:81"},{"body":{"nativeSrc":"1900:325:81","nodeType":"YulBlock","src":"1900:325:81","statements":[{"nativeSrc":"1910:22:81","nodeType":"YulAssignment","src":"1910:22:81","value":{"arguments":[{"kind":"number","nativeSrc":"1924:1:81","nodeType":"YulLiteral","src":"1924:1:81","type":"","value":"1"},{"name":"data","nativeSrc":"1927:4:81","nodeType":"YulIdentifier","src":"1927:4:81"}],"functionName":{"name":"shr","nativeSrc":"1920:3:81","nodeType":"YulIdentifier","src":"1920:3:81"},"nativeSrc":"1920:12:81","nodeType":"YulFunctionCall","src":"1920:12:81"},"variableNames":[{"name":"length","nativeSrc":"1910:6:81","nodeType":"YulIdentifier","src":"1910:6:81"}]},{"nativeSrc":"1941:38:81","nodeType":"YulVariableDeclaration","src":"1941:38:81","value":{"arguments":[{"name":"data","nativeSrc":"1971:4:81","nodeType":"YulIdentifier","src":"1971:4:81"},{"kind":"number","nativeSrc":"1977:1:81","nodeType":"YulLiteral","src":"1977:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1967:3:81","nodeType":"YulIdentifier","src":"1967:3:81"},"nativeSrc":"1967:12:81","nodeType":"YulFunctionCall","src":"1967:12:81"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1945:18:81","nodeType":"YulTypedName","src":"1945:18:81","type":""}]},{"body":{"nativeSrc":"2018:31:81","nodeType":"YulBlock","src":"2018:31:81","statements":[{"nativeSrc":"2020:27:81","nodeType":"YulAssignment","src":"2020:27:81","value":{"arguments":[{"name":"length","nativeSrc":"2034:6:81","nodeType":"YulIdentifier","src":"2034:6:81"},{"kind":"number","nativeSrc":"2042:4:81","nodeType":"YulLiteral","src":"2042:4:81","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"2030:3:81","nodeType":"YulIdentifier","src":"2030:3:81"},"nativeSrc":"2030:17:81","nodeType":"YulFunctionCall","src":"2030:17:81"},"variableNames":[{"name":"length","nativeSrc":"2020:6:81","nodeType":"YulIdentifier","src":"2020:6:81"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1998:18:81","nodeType":"YulIdentifier","src":"1998:18:81"}],"functionName":{"name":"iszero","nativeSrc":"1991:6:81","nodeType":"YulIdentifier","src":"1991:6:81"},"nativeSrc":"1991:26:81","nodeType":"YulFunctionCall","src":"1991:26:81"},"nativeSrc":"1988:61:81","nodeType":"YulIf","src":"1988:61:81"},{"body":{"nativeSrc":"2108:111:81","nodeType":"YulBlock","src":"2108:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2129:1:81","nodeType":"YulLiteral","src":"2129:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2136:3:81","nodeType":"YulLiteral","src":"2136:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"2141:10:81","nodeType":"YulLiteral","src":"2141:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2132:3:81","nodeType":"YulIdentifier","src":"2132:3:81"},"nativeSrc":"2132:20:81","nodeType":"YulFunctionCall","src":"2132:20:81"}],"functionName":{"name":"mstore","nativeSrc":"2122:6:81","nodeType":"YulIdentifier","src":"2122:6:81"},"nativeSrc":"2122:31:81","nodeType":"YulFunctionCall","src":"2122:31:81"},"nativeSrc":"2122:31:81","nodeType":"YulExpressionStatement","src":"2122:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2173:1:81","nodeType":"YulLiteral","src":"2173:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"2176:4:81","nodeType":"YulLiteral","src":"2176:4:81","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2166:6:81","nodeType":"YulIdentifier","src":"2166:6:81"},"nativeSrc":"2166:15:81","nodeType":"YulFunctionCall","src":"2166:15:81"},"nativeSrc":"2166:15:81","nodeType":"YulExpressionStatement","src":"2166:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2201:1:81","nodeType":"YulLiteral","src":"2201:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2204:4:81","nodeType":"YulLiteral","src":"2204:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2194:6:81","nodeType":"YulIdentifier","src":"2194:6:81"},"nativeSrc":"2194:15:81","nodeType":"YulFunctionCall","src":"2194:15:81"},"nativeSrc":"2194:15:81","nodeType":"YulExpressionStatement","src":"2194:15:81"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2064:18:81","nodeType":"YulIdentifier","src":"2064:18:81"},{"arguments":[{"name":"length","nativeSrc":"2087:6:81","nodeType":"YulIdentifier","src":"2087:6:81"},{"kind":"number","nativeSrc":"2095:2:81","nodeType":"YulLiteral","src":"2095:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2084:2:81","nodeType":"YulIdentifier","src":"2084:2:81"},"nativeSrc":"2084:14:81","nodeType":"YulFunctionCall","src":"2084:14:81"}],"functionName":{"name":"eq","nativeSrc":"2061:2:81","nodeType":"YulIdentifier","src":"2061:2:81"},"nativeSrc":"2061:38:81","nodeType":"YulFunctionCall","src":"2061:38:81"},"nativeSrc":"2058:161:81","nodeType":"YulIf","src":"2058:161:81"}]},"name":"extract_byte_array_length","nativeSrc":"1845:380:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1880:4:81","nodeType":"YulTypedName","src":"1880:4:81","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1889:6:81","nodeType":"YulTypedName","src":"1889:6:81","type":""}],"src":"1845:380:81"},{"body":{"nativeSrc":"2286:65:81","nodeType":"YulBlock","src":"2286:65:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2303:1:81","nodeType":"YulLiteral","src":"2303:1:81","type":"","value":"0"},{"name":"ptr","nativeSrc":"2306:3:81","nodeType":"YulIdentifier","src":"2306:3:81"}],"functionName":{"name":"mstore","nativeSrc":"2296:6:81","nodeType":"YulIdentifier","src":"2296:6:81"},"nativeSrc":"2296:14:81","nodeType":"YulFunctionCall","src":"2296:14:81"},"nativeSrc":"2296:14:81","nodeType":"YulExpressionStatement","src":"2296:14:81"},{"nativeSrc":"2319:26:81","nodeType":"YulAssignment","src":"2319:26:81","value":{"arguments":[{"kind":"number","nativeSrc":"2337:1:81","nodeType":"YulLiteral","src":"2337:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2340:4:81","nodeType":"YulLiteral","src":"2340:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2327:9:81","nodeType":"YulIdentifier","src":"2327:9:81"},"nativeSrc":"2327:18:81","nodeType":"YulFunctionCall","src":"2327:18:81"},"variableNames":[{"name":"data","nativeSrc":"2319:4:81","nodeType":"YulIdentifier","src":"2319:4:81"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2230:121:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2269:3:81","nodeType":"YulTypedName","src":"2269:3:81","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2277:4:81","nodeType":"YulTypedName","src":"2277:4:81","type":""}],"src":"2230:121:81"},{"body":{"nativeSrc":"2437:437:81","nodeType":"YulBlock","src":"2437:437:81","statements":[{"body":{"nativeSrc":"2470:398:81","nodeType":"YulBlock","src":"2470:398:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2491:1:81","nodeType":"YulLiteral","src":"2491:1:81","type":"","value":"0"},{"name":"array","nativeSrc":"2494:5:81","nodeType":"YulIdentifier","src":"2494:5:81"}],"functionName":{"name":"mstore","nativeSrc":"2484:6:81","nodeType":"YulIdentifier","src":"2484:6:81"},"nativeSrc":"2484:16:81","nodeType":"YulFunctionCall","src":"2484:16:81"},"nativeSrc":"2484:16:81","nodeType":"YulExpressionStatement","src":"2484:16:81"},{"nativeSrc":"2513:30:81","nodeType":"YulVariableDeclaration","src":"2513:30:81","value":{"arguments":[{"kind":"number","nativeSrc":"2535:1:81","nodeType":"YulLiteral","src":"2535:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2538:4:81","nodeType":"YulLiteral","src":"2538:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2525:9:81","nodeType":"YulIdentifier","src":"2525:9:81"},"nativeSrc":"2525:18:81","nodeType":"YulFunctionCall","src":"2525:18:81"},"variables":[{"name":"data","nativeSrc":"2517:4:81","nodeType":"YulTypedName","src":"2517:4:81","type":""}]},{"nativeSrc":"2556:57:81","nodeType":"YulVariableDeclaration","src":"2556:57:81","value":{"arguments":[{"name":"data","nativeSrc":"2579:4:81","nodeType":"YulIdentifier","src":"2579:4:81"},{"arguments":[{"kind":"number","nativeSrc":"2589:1:81","nodeType":"YulLiteral","src":"2589:1:81","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2596:10:81","nodeType":"YulIdentifier","src":"2596:10:81"},{"kind":"number","nativeSrc":"2608:2:81","nodeType":"YulLiteral","src":"2608:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2592:3:81","nodeType":"YulIdentifier","src":"2592:3:81"},"nativeSrc":"2592:19:81","nodeType":"YulFunctionCall","src":"2592:19:81"}],"functionName":{"name":"shr","nativeSrc":"2585:3:81","nodeType":"YulIdentifier","src":"2585:3:81"},"nativeSrc":"2585:27:81","nodeType":"YulFunctionCall","src":"2585:27:81"}],"functionName":{"name":"add","nativeSrc":"2575:3:81","nodeType":"YulIdentifier","src":"2575:3:81"},"nativeSrc":"2575:38:81","nodeType":"YulFunctionCall","src":"2575:38:81"},"variables":[{"name":"deleteStart","nativeSrc":"2560:11:81","nodeType":"YulTypedName","src":"2560:11:81","type":""}]},{"body":{"nativeSrc":"2650:23:81","nodeType":"YulBlock","src":"2650:23:81","statements":[{"nativeSrc":"2652:19:81","nodeType":"YulAssignment","src":"2652:19:81","value":{"name":"data","nativeSrc":"2667:4:81","nodeType":"YulIdentifier","src":"2667:4:81"},"variableNames":[{"name":"deleteStart","nativeSrc":"2652:11:81","nodeType":"YulIdentifier","src":"2652:11:81"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2632:10:81","nodeType":"YulIdentifier","src":"2632:10:81"},{"kind":"number","nativeSrc":"2644:4:81","nodeType":"YulLiteral","src":"2644:4:81","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2629:2:81","nodeType":"YulIdentifier","src":"2629:2:81"},"nativeSrc":"2629:20:81","nodeType":"YulFunctionCall","src":"2629:20:81"},"nativeSrc":"2626:47:81","nodeType":"YulIf","src":"2626:47:81"},{"nativeSrc":"2686:41:81","nodeType":"YulVariableDeclaration","src":"2686:41:81","value":{"arguments":[{"name":"data","nativeSrc":"2700:4:81","nodeType":"YulIdentifier","src":"2700:4:81"},{"arguments":[{"kind":"number","nativeSrc":"2710:1:81","nodeType":"YulLiteral","src":"2710:1:81","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2717:3:81","nodeType":"YulIdentifier","src":"2717:3:81"},{"kind":"number","nativeSrc":"2722:2:81","nodeType":"YulLiteral","src":"2722:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2713:3:81","nodeType":"YulIdentifier","src":"2713:3:81"},"nativeSrc":"2713:12:81","nodeType":"YulFunctionCall","src":"2713:12:81"}],"functionName":{"name":"shr","nativeSrc":"2706:3:81","nodeType":"YulIdentifier","src":"2706:3:81"},"nativeSrc":"2706:20:81","nodeType":"YulFunctionCall","src":"2706:20:81"}],"functionName":{"name":"add","nativeSrc":"2696:3:81","nodeType":"YulIdentifier","src":"2696:3:81"},"nativeSrc":"2696:31:81","nodeType":"YulFunctionCall","src":"2696:31:81"},"variables":[{"name":"_1","nativeSrc":"2690:2:81","nodeType":"YulTypedName","src":"2690:2:81","type":""}]},{"nativeSrc":"2740:24:81","nodeType":"YulVariableDeclaration","src":"2740:24:81","value":{"name":"deleteStart","nativeSrc":"2753:11:81","nodeType":"YulIdentifier","src":"2753:11:81"},"variables":[{"name":"start","nativeSrc":"2744:5:81","nodeType":"YulTypedName","src":"2744:5:81","type":""}]},{"body":{"nativeSrc":"2838:20:81","nodeType":"YulBlock","src":"2838:20:81","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2847:5:81","nodeType":"YulIdentifier","src":"2847:5:81"},{"kind":"number","nativeSrc":"2854:1:81","nodeType":"YulLiteral","src":"2854:1:81","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2840:6:81","nodeType":"YulIdentifier","src":"2840:6:81"},"nativeSrc":"2840:16:81","nodeType":"YulFunctionCall","src":"2840:16:81"},"nativeSrc":"2840:16:81","nodeType":"YulExpressionStatement","src":"2840:16:81"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2788:5:81","nodeType":"YulIdentifier","src":"2788:5:81"},{"name":"_1","nativeSrc":"2795:2:81","nodeType":"YulIdentifier","src":"2795:2:81"}],"functionName":{"name":"lt","nativeSrc":"2785:2:81","nodeType":"YulIdentifier","src":"2785:2:81"},"nativeSrc":"2785:13:81","nodeType":"YulFunctionCall","src":"2785:13:81"},"nativeSrc":"2777:81:81","nodeType":"YulForLoop","post":{"nativeSrc":"2799:26:81","nodeType":"YulBlock","src":"2799:26:81","statements":[{"nativeSrc":"2801:22:81","nodeType":"YulAssignment","src":"2801:22:81","value":{"arguments":[{"name":"start","nativeSrc":"2814:5:81","nodeType":"YulIdentifier","src":"2814:5:81"},{"kind":"number","nativeSrc":"2821:1:81","nodeType":"YulLiteral","src":"2821:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2810:3:81","nodeType":"YulIdentifier","src":"2810:3:81"},"nativeSrc":"2810:13:81","nodeType":"YulFunctionCall","src":"2810:13:81"},"variableNames":[{"name":"start","nativeSrc":"2801:5:81","nodeType":"YulIdentifier","src":"2801:5:81"}]}]},"pre":{"nativeSrc":"2781:3:81","nodeType":"YulBlock","src":"2781:3:81","statements":[]},"src":"2777:81:81"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2453:3:81","nodeType":"YulIdentifier","src":"2453:3:81"},{"kind":"number","nativeSrc":"2458:2:81","nodeType":"YulLiteral","src":"2458:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2450:2:81","nodeType":"YulIdentifier","src":"2450:2:81"},"nativeSrc":"2450:11:81","nodeType":"YulFunctionCall","src":"2450:11:81"},"nativeSrc":"2447:421:81","nodeType":"YulIf","src":"2447:421:81"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2356:518:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2409:5:81","nodeType":"YulTypedName","src":"2409:5:81","type":""},{"name":"len","nativeSrc":"2416:3:81","nodeType":"YulTypedName","src":"2416:3:81","type":""},{"name":"startIndex","nativeSrc":"2421:10:81","nodeType":"YulTypedName","src":"2421:10:81","type":""}],"src":"2356:518:81"},{"body":{"nativeSrc":"2964:81:81","nodeType":"YulBlock","src":"2964:81:81","statements":[{"nativeSrc":"2974:65:81","nodeType":"YulAssignment","src":"2974:65:81","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2989:4:81","nodeType":"YulIdentifier","src":"2989:4:81"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3007:1:81","nodeType":"YulLiteral","src":"3007:1:81","type":"","value":"3"},{"name":"len","nativeSrc":"3010:3:81","nodeType":"YulIdentifier","src":"3010:3:81"}],"functionName":{"name":"shl","nativeSrc":"3003:3:81","nodeType":"YulIdentifier","src":"3003:3:81"},"nativeSrc":"3003:11:81","nodeType":"YulFunctionCall","src":"3003:11:81"},{"arguments":[{"kind":"number","nativeSrc":"3020:1:81","nodeType":"YulLiteral","src":"3020:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3016:3:81","nodeType":"YulIdentifier","src":"3016:3:81"},"nativeSrc":"3016:6:81","nodeType":"YulFunctionCall","src":"3016:6:81"}],"functionName":{"name":"shr","nativeSrc":"2999:3:81","nodeType":"YulIdentifier","src":"2999:3:81"},"nativeSrc":"2999:24:81","nodeType":"YulFunctionCall","src":"2999:24:81"}],"functionName":{"name":"not","nativeSrc":"2995:3:81","nodeType":"YulIdentifier","src":"2995:3:81"},"nativeSrc":"2995:29:81","nodeType":"YulFunctionCall","src":"2995:29:81"}],"functionName":{"name":"and","nativeSrc":"2985:3:81","nodeType":"YulIdentifier","src":"2985:3:81"},"nativeSrc":"2985:40:81","nodeType":"YulFunctionCall","src":"2985:40:81"},{"arguments":[{"kind":"number","nativeSrc":"3031:1:81","nodeType":"YulLiteral","src":"3031:1:81","type":"","value":"1"},{"name":"len","nativeSrc":"3034:3:81","nodeType":"YulIdentifier","src":"3034:3:81"}],"functionName":{"name":"shl","nativeSrc":"3027:3:81","nodeType":"YulIdentifier","src":"3027:3:81"},"nativeSrc":"3027:11:81","nodeType":"YulFunctionCall","src":"3027:11:81"}],"functionName":{"name":"or","nativeSrc":"2982:2:81","nodeType":"YulIdentifier","src":"2982:2:81"},"nativeSrc":"2982:57:81","nodeType":"YulFunctionCall","src":"2982:57:81"},"variableNames":[{"name":"used","nativeSrc":"2974:4:81","nodeType":"YulIdentifier","src":"2974:4:81"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2879:166:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2941:4:81","nodeType":"YulTypedName","src":"2941:4:81","type":""},{"name":"len","nativeSrc":"2947:3:81","nodeType":"YulTypedName","src":"2947:3:81","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2955:4:81","nodeType":"YulTypedName","src":"2955:4:81","type":""}],"src":"2879:166:81"},{"body":{"nativeSrc":"3146:1203:81","nodeType":"YulBlock","src":"3146:1203:81","statements":[{"nativeSrc":"3156:24:81","nodeType":"YulVariableDeclaration","src":"3156:24:81","value":{"arguments":[{"name":"src","nativeSrc":"3176:3:81","nodeType":"YulIdentifier","src":"3176:3:81"}],"functionName":{"name":"mload","nativeSrc":"3170:5:81","nodeType":"YulIdentifier","src":"3170:5:81"},"nativeSrc":"3170:10:81","nodeType":"YulFunctionCall","src":"3170:10:81"},"variables":[{"name":"newLen","nativeSrc":"3160:6:81","nodeType":"YulTypedName","src":"3160:6:81","type":""}]},{"body":{"nativeSrc":"3223:22:81","nodeType":"YulBlock","src":"3223:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3225:16:81","nodeType":"YulIdentifier","src":"3225:16:81"},"nativeSrc":"3225:18:81","nodeType":"YulFunctionCall","src":"3225:18:81"},"nativeSrc":"3225:18:81","nodeType":"YulExpressionStatement","src":"3225:18:81"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"3195:6:81","nodeType":"YulIdentifier","src":"3195:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3211:2:81","nodeType":"YulLiteral","src":"3211:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"3215:1:81","nodeType":"YulLiteral","src":"3215:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3207:3:81","nodeType":"YulIdentifier","src":"3207:3:81"},"nativeSrc":"3207:10:81","nodeType":"YulFunctionCall","src":"3207:10:81"},{"kind":"number","nativeSrc":"3219:1:81","nodeType":"YulLiteral","src":"3219:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3203:3:81","nodeType":"YulIdentifier","src":"3203:3:81"},"nativeSrc":"3203:18:81","nodeType":"YulFunctionCall","src":"3203:18:81"}],"functionName":{"name":"gt","nativeSrc":"3192:2:81","nodeType":"YulIdentifier","src":"3192:2:81"},"nativeSrc":"3192:30:81","nodeType":"YulFunctionCall","src":"3192:30:81"},"nativeSrc":"3189:56:81","nodeType":"YulIf","src":"3189:56:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3298:4:81","nodeType":"YulIdentifier","src":"3298:4:81"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3336:4:81","nodeType":"YulIdentifier","src":"3336:4:81"}],"functionName":{"name":"sload","nativeSrc":"3330:5:81","nodeType":"YulIdentifier","src":"3330:5:81"},"nativeSrc":"3330:11:81","nodeType":"YulFunctionCall","src":"3330:11:81"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3304:25:81","nodeType":"YulIdentifier","src":"3304:25:81"},"nativeSrc":"3304:38:81","nodeType":"YulFunctionCall","src":"3304:38:81"},{"name":"newLen","nativeSrc":"3344:6:81","nodeType":"YulIdentifier","src":"3344:6:81"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3254:43:81","nodeType":"YulIdentifier","src":"3254:43:81"},"nativeSrc":"3254:97:81","nodeType":"YulFunctionCall","src":"3254:97:81"},"nativeSrc":"3254:97:81","nodeType":"YulExpressionStatement","src":"3254:97:81"},{"nativeSrc":"3360:18:81","nodeType":"YulVariableDeclaration","src":"3360:18:81","value":{"kind":"number","nativeSrc":"3377:1:81","nodeType":"YulLiteral","src":"3377:1:81","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3364:9:81","nodeType":"YulTypedName","src":"3364:9:81","type":""}]},{"nativeSrc":"3387:17:81","nodeType":"YulAssignment","src":"3387:17:81","value":{"kind":"number","nativeSrc":"3400:4:81","nodeType":"YulLiteral","src":"3400:4:81","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3387:9:81","nodeType":"YulIdentifier","src":"3387:9:81"}]},{"cases":[{"body":{"nativeSrc":"3450:642:81","nodeType":"YulBlock","src":"3450:642:81","statements":[{"nativeSrc":"3464:35:81","nodeType":"YulVariableDeclaration","src":"3464:35:81","value":{"arguments":[{"name":"newLen","nativeSrc":"3483:6:81","nodeType":"YulIdentifier","src":"3483:6:81"},{"arguments":[{"kind":"number","nativeSrc":"3495:2:81","nodeType":"YulLiteral","src":"3495:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3491:3:81","nodeType":"YulIdentifier","src":"3491:3:81"},"nativeSrc":"3491:7:81","nodeType":"YulFunctionCall","src":"3491:7:81"}],"functionName":{"name":"and","nativeSrc":"3479:3:81","nodeType":"YulIdentifier","src":"3479:3:81"},"nativeSrc":"3479:20:81","nodeType":"YulFunctionCall","src":"3479:20:81"},"variables":[{"name":"loopEnd","nativeSrc":"3468:7:81","nodeType":"YulTypedName","src":"3468:7:81","type":""}]},{"nativeSrc":"3512:49:81","nodeType":"YulVariableDeclaration","src":"3512:49:81","value":{"arguments":[{"name":"slot","nativeSrc":"3556:4:81","nodeType":"YulIdentifier","src":"3556:4:81"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3526:29:81","nodeType":"YulIdentifier","src":"3526:29:81"},"nativeSrc":"3526:35:81","nodeType":"YulFunctionCall","src":"3526:35:81"},"variables":[{"name":"dstPtr","nativeSrc":"3516:6:81","nodeType":"YulTypedName","src":"3516:6:81","type":""}]},{"nativeSrc":"3574:10:81","nodeType":"YulVariableDeclaration","src":"3574:10:81","value":{"kind":"number","nativeSrc":"3583:1:81","nodeType":"YulLiteral","src":"3583:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3578:1:81","nodeType":"YulTypedName","src":"3578:1:81","type":""}]},{"body":{"nativeSrc":"3654:165:81","nodeType":"YulBlock","src":"3654:165:81","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3679:6:81","nodeType":"YulIdentifier","src":"3679:6:81"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3697:3:81","nodeType":"YulIdentifier","src":"3697:3:81"},{"name":"srcOffset","nativeSrc":"3702:9:81","nodeType":"YulIdentifier","src":"3702:9:81"}],"functionName":{"name":"add","nativeSrc":"3693:3:81","nodeType":"YulIdentifier","src":"3693:3:81"},"nativeSrc":"3693:19:81","nodeType":"YulFunctionCall","src":"3693:19:81"}],"functionName":{"name":"mload","nativeSrc":"3687:5:81","nodeType":"YulIdentifier","src":"3687:5:81"},"nativeSrc":"3687:26:81","nodeType":"YulFunctionCall","src":"3687:26:81"}],"functionName":{"name":"sstore","nativeSrc":"3672:6:81","nodeType":"YulIdentifier","src":"3672:6:81"},"nativeSrc":"3672:42:81","nodeType":"YulFunctionCall","src":"3672:42:81"},"nativeSrc":"3672:42:81","nodeType":"YulExpressionStatement","src":"3672:42:81"},{"nativeSrc":"3731:24:81","nodeType":"YulAssignment","src":"3731:24:81","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3745:6:81","nodeType":"YulIdentifier","src":"3745:6:81"},{"kind":"number","nativeSrc":"3753:1:81","nodeType":"YulLiteral","src":"3753:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3741:3:81","nodeType":"YulIdentifier","src":"3741:3:81"},"nativeSrc":"3741:14:81","nodeType":"YulFunctionCall","src":"3741:14:81"},"variableNames":[{"name":"dstPtr","nativeSrc":"3731:6:81","nodeType":"YulIdentifier","src":"3731:6:81"}]},{"nativeSrc":"3772:33:81","nodeType":"YulAssignment","src":"3772:33:81","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3789:9:81","nodeType":"YulIdentifier","src":"3789:9:81"},{"kind":"number","nativeSrc":"3800:4:81","nodeType":"YulLiteral","src":"3800:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3785:3:81","nodeType":"YulIdentifier","src":"3785:3:81"},"nativeSrc":"3785:20:81","nodeType":"YulFunctionCall","src":"3785:20:81"},"variableNames":[{"name":"srcOffset","nativeSrc":"3772:9:81","nodeType":"YulIdentifier","src":"3772:9:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3608:1:81","nodeType":"YulIdentifier","src":"3608:1:81"},{"name":"loopEnd","nativeSrc":"3611:7:81","nodeType":"YulIdentifier","src":"3611:7:81"}],"functionName":{"name":"lt","nativeSrc":"3605:2:81","nodeType":"YulIdentifier","src":"3605:2:81"},"nativeSrc":"3605:14:81","nodeType":"YulFunctionCall","src":"3605:14:81"},"nativeSrc":"3597:222:81","nodeType":"YulForLoop","post":{"nativeSrc":"3620:21:81","nodeType":"YulBlock","src":"3620:21:81","statements":[{"nativeSrc":"3622:17:81","nodeType":"YulAssignment","src":"3622:17:81","value":{"arguments":[{"name":"i","nativeSrc":"3631:1:81","nodeType":"YulIdentifier","src":"3631:1:81"},{"kind":"number","nativeSrc":"3634:4:81","nodeType":"YulLiteral","src":"3634:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3627:3:81","nodeType":"YulIdentifier","src":"3627:3:81"},"nativeSrc":"3627:12:81","nodeType":"YulFunctionCall","src":"3627:12:81"},"variableNames":[{"name":"i","nativeSrc":"3622:1:81","nodeType":"YulIdentifier","src":"3622:1:81"}]}]},"pre":{"nativeSrc":"3601:3:81","nodeType":"YulBlock","src":"3601:3:81","statements":[]},"src":"3597:222:81"},{"body":{"nativeSrc":"3867:166:81","nodeType":"YulBlock","src":"3867:166:81","statements":[{"nativeSrc":"3885:43:81","nodeType":"YulVariableDeclaration","src":"3885:43:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3912:3:81","nodeType":"YulIdentifier","src":"3912:3:81"},{"name":"srcOffset","nativeSrc":"3917:9:81","nodeType":"YulIdentifier","src":"3917:9:81"}],"functionName":{"name":"add","nativeSrc":"3908:3:81","nodeType":"YulIdentifier","src":"3908:3:81"},"nativeSrc":"3908:19:81","nodeType":"YulFunctionCall","src":"3908:19:81"}],"functionName":{"name":"mload","nativeSrc":"3902:5:81","nodeType":"YulIdentifier","src":"3902:5:81"},"nativeSrc":"3902:26:81","nodeType":"YulFunctionCall","src":"3902:26:81"},"variables":[{"name":"lastValue","nativeSrc":"3889:9:81","nodeType":"YulTypedName","src":"3889:9:81","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3952:6:81","nodeType":"YulIdentifier","src":"3952:6:81"},{"arguments":[{"name":"lastValue","nativeSrc":"3964:9:81","nodeType":"YulIdentifier","src":"3964:9:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3991:1:81","nodeType":"YulLiteral","src":"3991:1:81","type":"","value":"3"},{"name":"newLen","nativeSrc":"3994:6:81","nodeType":"YulIdentifier","src":"3994:6:81"}],"functionName":{"name":"shl","nativeSrc":"3987:3:81","nodeType":"YulIdentifier","src":"3987:3:81"},"nativeSrc":"3987:14:81","nodeType":"YulFunctionCall","src":"3987:14:81"},{"kind":"number","nativeSrc":"4003:3:81","nodeType":"YulLiteral","src":"4003:3:81","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3983:3:81","nodeType":"YulIdentifier","src":"3983:3:81"},"nativeSrc":"3983:24:81","nodeType":"YulFunctionCall","src":"3983:24:81"},{"arguments":[{"kind":"number","nativeSrc":"4013:1:81","nodeType":"YulLiteral","src":"4013:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4009:3:81","nodeType":"YulIdentifier","src":"4009:3:81"},"nativeSrc":"4009:6:81","nodeType":"YulFunctionCall","src":"4009:6:81"}],"functionName":{"name":"shr","nativeSrc":"3979:3:81","nodeType":"YulIdentifier","src":"3979:3:81"},"nativeSrc":"3979:37:81","nodeType":"YulFunctionCall","src":"3979:37:81"}],"functionName":{"name":"not","nativeSrc":"3975:3:81","nodeType":"YulIdentifier","src":"3975:3:81"},"nativeSrc":"3975:42:81","nodeType":"YulFunctionCall","src":"3975:42:81"}],"functionName":{"name":"and","nativeSrc":"3960:3:81","nodeType":"YulIdentifier","src":"3960:3:81"},"nativeSrc":"3960:58:81","nodeType":"YulFunctionCall","src":"3960:58:81"}],"functionName":{"name":"sstore","nativeSrc":"3945:6:81","nodeType":"YulIdentifier","src":"3945:6:81"},"nativeSrc":"3945:74:81","nodeType":"YulFunctionCall","src":"3945:74:81"},"nativeSrc":"3945:74:81","nodeType":"YulExpressionStatement","src":"3945:74:81"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3838:7:81","nodeType":"YulIdentifier","src":"3838:7:81"},{"name":"newLen","nativeSrc":"3847:6:81","nodeType":"YulIdentifier","src":"3847:6:81"}],"functionName":{"name":"lt","nativeSrc":"3835:2:81","nodeType":"YulIdentifier","src":"3835:2:81"},"nativeSrc":"3835:19:81","nodeType":"YulFunctionCall","src":"3835:19:81"},"nativeSrc":"3832:201:81","nodeType":"YulIf","src":"3832:201:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4053:4:81","nodeType":"YulIdentifier","src":"4053:4:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4067:1:81","nodeType":"YulLiteral","src":"4067:1:81","type":"","value":"1"},{"name":"newLen","nativeSrc":"4070:6:81","nodeType":"YulIdentifier","src":"4070:6:81"}],"functionName":{"name":"shl","nativeSrc":"4063:3:81","nodeType":"YulIdentifier","src":"4063:3:81"},"nativeSrc":"4063:14:81","nodeType":"YulFunctionCall","src":"4063:14:81"},{"kind":"number","nativeSrc":"4079:1:81","nodeType":"YulLiteral","src":"4079:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"4059:3:81","nodeType":"YulIdentifier","src":"4059:3:81"},"nativeSrc":"4059:22:81","nodeType":"YulFunctionCall","src":"4059:22:81"}],"functionName":{"name":"sstore","nativeSrc":"4046:6:81","nodeType":"YulIdentifier","src":"4046:6:81"},"nativeSrc":"4046:36:81","nodeType":"YulFunctionCall","src":"4046:36:81"},"nativeSrc":"4046:36:81","nodeType":"YulExpressionStatement","src":"4046:36:81"}]},"nativeSrc":"3443:649:81","nodeType":"YulCase","src":"3443:649:81","value":{"kind":"number","nativeSrc":"3448:1:81","nodeType":"YulLiteral","src":"3448:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"4109:234:81","nodeType":"YulBlock","src":"4109:234:81","statements":[{"nativeSrc":"4123:14:81","nodeType":"YulVariableDeclaration","src":"4123:14:81","value":{"kind":"number","nativeSrc":"4136:1:81","nodeType":"YulLiteral","src":"4136:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4127:5:81","nodeType":"YulTypedName","src":"4127:5:81","type":""}]},{"body":{"nativeSrc":"4172:67:81","nodeType":"YulBlock","src":"4172:67:81","statements":[{"nativeSrc":"4190:35:81","nodeType":"YulAssignment","src":"4190:35:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"4209:3:81","nodeType":"YulIdentifier","src":"4209:3:81"},{"name":"srcOffset","nativeSrc":"4214:9:81","nodeType":"YulIdentifier","src":"4214:9:81"}],"functionName":{"name":"add","nativeSrc":"4205:3:81","nodeType":"YulIdentifier","src":"4205:3:81"},"nativeSrc":"4205:19:81","nodeType":"YulFunctionCall","src":"4205:19:81"}],"functionName":{"name":"mload","nativeSrc":"4199:5:81","nodeType":"YulIdentifier","src":"4199:5:81"},"nativeSrc":"4199:26:81","nodeType":"YulFunctionCall","src":"4199:26:81"},"variableNames":[{"name":"value","nativeSrc":"4190:5:81","nodeType":"YulIdentifier","src":"4190:5:81"}]}]},"condition":{"name":"newLen","nativeSrc":"4153:6:81","nodeType":"YulIdentifier","src":"4153:6:81"},"nativeSrc":"4150:89:81","nodeType":"YulIf","src":"4150:89:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4259:4:81","nodeType":"YulIdentifier","src":"4259:4:81"},{"arguments":[{"name":"value","nativeSrc":"4318:5:81","nodeType":"YulIdentifier","src":"4318:5:81"},{"name":"newLen","nativeSrc":"4325:6:81","nodeType":"YulIdentifier","src":"4325:6:81"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4265:52:81","nodeType":"YulIdentifier","src":"4265:52:81"},"nativeSrc":"4265:67:81","nodeType":"YulFunctionCall","src":"4265:67:81"}],"functionName":{"name":"sstore","nativeSrc":"4252:6:81","nodeType":"YulIdentifier","src":"4252:6:81"},"nativeSrc":"4252:81:81","nodeType":"YulFunctionCall","src":"4252:81:81"},"nativeSrc":"4252:81:81","nodeType":"YulExpressionStatement","src":"4252:81:81"}]},"nativeSrc":"4101:242:81","nodeType":"YulCase","src":"4101:242:81","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3423:6:81","nodeType":"YulIdentifier","src":"3423:6:81"},{"kind":"number","nativeSrc":"3431:2:81","nodeType":"YulLiteral","src":"3431:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3420:2:81","nodeType":"YulIdentifier","src":"3420:2:81"},"nativeSrc":"3420:14:81","nodeType":"YulFunctionCall","src":"3420:14:81"},"nativeSrc":"3413:930:81","nodeType":"YulSwitch","src":"3413:930:81"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"3050:1299:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"3131:4:81","nodeType":"YulTypedName","src":"3131:4:81","type":""},{"name":"src","nativeSrc":"3137:3:81","nodeType":"YulTypedName","src":"3137:3:81","type":""}],"src":"3050:1299:81"},{"body":{"nativeSrc":"4455:102:81","nodeType":"YulBlock","src":"4455:102:81","statements":[{"nativeSrc":"4465:26:81","nodeType":"YulAssignment","src":"4465:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4477:9:81","nodeType":"YulIdentifier","src":"4477:9:81"},{"kind":"number","nativeSrc":"4488:2:81","nodeType":"YulLiteral","src":"4488:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4473:3:81","nodeType":"YulIdentifier","src":"4473:3:81"},"nativeSrc":"4473:18:81","nodeType":"YulFunctionCall","src":"4473:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4465:4:81","nodeType":"YulIdentifier","src":"4465:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4507:9:81","nodeType":"YulIdentifier","src":"4507:9:81"},{"arguments":[{"name":"value0","nativeSrc":"4522:6:81","nodeType":"YulIdentifier","src":"4522:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4538:3:81","nodeType":"YulLiteral","src":"4538:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"4543:1:81","nodeType":"YulLiteral","src":"4543:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4534:3:81","nodeType":"YulIdentifier","src":"4534:3:81"},"nativeSrc":"4534:11:81","nodeType":"YulFunctionCall","src":"4534:11:81"},{"kind":"number","nativeSrc":"4547:1:81","nodeType":"YulLiteral","src":"4547:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4530:3:81","nodeType":"YulIdentifier","src":"4530:3:81"},"nativeSrc":"4530:19:81","nodeType":"YulFunctionCall","src":"4530:19:81"}],"functionName":{"name":"and","nativeSrc":"4518:3:81","nodeType":"YulIdentifier","src":"4518:3:81"},"nativeSrc":"4518:32:81","nodeType":"YulFunctionCall","src":"4518:32:81"}],"functionName":{"name":"mstore","nativeSrc":"4500:6:81","nodeType":"YulIdentifier","src":"4500:6:81"},"nativeSrc":"4500:51:81","nodeType":"YulFunctionCall","src":"4500:51:81"},"nativeSrc":"4500:51:81","nodeType":"YulExpressionStatement","src":"4500:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4354:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4424:9:81","nodeType":"YulTypedName","src":"4424:9:81","type":""},{"name":"value0","nativeSrc":"4435:6:81","nodeType":"YulTypedName","src":"4435:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4446:4:81","nodeType":"YulTypedName","src":"4446:4:81","type":""}],"src":"4354:203:81"},{"body":{"nativeSrc":"4610:174:81","nodeType":"YulBlock","src":"4610:174:81","statements":[{"nativeSrc":"4620:16:81","nodeType":"YulAssignment","src":"4620:16:81","value":{"arguments":[{"name":"x","nativeSrc":"4631:1:81","nodeType":"YulIdentifier","src":"4631:1:81"},{"name":"y","nativeSrc":"4634:1:81","nodeType":"YulIdentifier","src":"4634:1:81"}],"functionName":{"name":"add","nativeSrc":"4627:3:81","nodeType":"YulIdentifier","src":"4627:3:81"},"nativeSrc":"4627:9:81","nodeType":"YulFunctionCall","src":"4627:9:81"},"variableNames":[{"name":"sum","nativeSrc":"4620:3:81","nodeType":"YulIdentifier","src":"4620:3:81"}]},{"body":{"nativeSrc":"4667:111:81","nodeType":"YulBlock","src":"4667:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4688:1:81","nodeType":"YulLiteral","src":"4688:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4695:3:81","nodeType":"YulLiteral","src":"4695:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4700:10:81","nodeType":"YulLiteral","src":"4700:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4691:3:81","nodeType":"YulIdentifier","src":"4691:3:81"},"nativeSrc":"4691:20:81","nodeType":"YulFunctionCall","src":"4691:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4681:6:81","nodeType":"YulIdentifier","src":"4681:6:81"},"nativeSrc":"4681:31:81","nodeType":"YulFunctionCall","src":"4681:31:81"},"nativeSrc":"4681:31:81","nodeType":"YulExpressionStatement","src":"4681:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4732:1:81","nodeType":"YulLiteral","src":"4732:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4735:4:81","nodeType":"YulLiteral","src":"4735:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4725:6:81","nodeType":"YulIdentifier","src":"4725:6:81"},"nativeSrc":"4725:15:81","nodeType":"YulFunctionCall","src":"4725:15:81"},"nativeSrc":"4725:15:81","nodeType":"YulExpressionStatement","src":"4725:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4760:1:81","nodeType":"YulLiteral","src":"4760:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4763:4:81","nodeType":"YulLiteral","src":"4763:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4753:6:81","nodeType":"YulIdentifier","src":"4753:6:81"},"nativeSrc":"4753:15:81","nodeType":"YulFunctionCall","src":"4753:15:81"},"nativeSrc":"4753:15:81","nodeType":"YulExpressionStatement","src":"4753:15:81"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"4651:1:81","nodeType":"YulIdentifier","src":"4651:1:81"},{"name":"sum","nativeSrc":"4654:3:81","nodeType":"YulIdentifier","src":"4654:3:81"}],"functionName":{"name":"gt","nativeSrc":"4648:2:81","nodeType":"YulIdentifier","src":"4648:2:81"},"nativeSrc":"4648:10:81","nodeType":"YulFunctionCall","src":"4648:10:81"},"nativeSrc":"4645:133:81","nodeType":"YulIf","src":"4645:133:81"}]},"name":"checked_add_t_uint256","nativeSrc":"4562:222:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4593:1:81","nodeType":"YulTypedName","src":"4593:1:81","type":""},{"name":"y","nativeSrc":"4596:1:81","nodeType":"YulTypedName","src":"4596:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"4602:3:81","nodeType":"YulTypedName","src":"4602:3:81","type":""}],"src":"4562:222:81"},{"body":{"nativeSrc":"4946:188:81","nodeType":"YulBlock","src":"4946:188:81","statements":[{"nativeSrc":"4956:26:81","nodeType":"YulAssignment","src":"4956:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4968:9:81","nodeType":"YulIdentifier","src":"4968:9:81"},{"kind":"number","nativeSrc":"4979:2:81","nodeType":"YulLiteral","src":"4979:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4964:3:81","nodeType":"YulIdentifier","src":"4964:3:81"},"nativeSrc":"4964:18:81","nodeType":"YulFunctionCall","src":"4964:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4956:4:81","nodeType":"YulIdentifier","src":"4956:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4998:9:81","nodeType":"YulIdentifier","src":"4998:9:81"},{"arguments":[{"name":"value0","nativeSrc":"5013:6:81","nodeType":"YulIdentifier","src":"5013:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5029:3:81","nodeType":"YulLiteral","src":"5029:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"5034:1:81","nodeType":"YulLiteral","src":"5034:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5025:3:81","nodeType":"YulIdentifier","src":"5025:3:81"},"nativeSrc":"5025:11:81","nodeType":"YulFunctionCall","src":"5025:11:81"},{"kind":"number","nativeSrc":"5038:1:81","nodeType":"YulLiteral","src":"5038:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5021:3:81","nodeType":"YulIdentifier","src":"5021:3:81"},"nativeSrc":"5021:19:81","nodeType":"YulFunctionCall","src":"5021:19:81"}],"functionName":{"name":"and","nativeSrc":"5009:3:81","nodeType":"YulIdentifier","src":"5009:3:81"},"nativeSrc":"5009:32:81","nodeType":"YulFunctionCall","src":"5009:32:81"}],"functionName":{"name":"mstore","nativeSrc":"4991:6:81","nodeType":"YulIdentifier","src":"4991:6:81"},"nativeSrc":"4991:51:81","nodeType":"YulFunctionCall","src":"4991:51:81"},"nativeSrc":"4991:51:81","nodeType":"YulExpressionStatement","src":"4991:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5062:9:81","nodeType":"YulIdentifier","src":"5062:9:81"},{"kind":"number","nativeSrc":"5073:2:81","nodeType":"YulLiteral","src":"5073:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5058:3:81","nodeType":"YulIdentifier","src":"5058:3:81"},"nativeSrc":"5058:18:81","nodeType":"YulFunctionCall","src":"5058:18:81"},{"name":"value1","nativeSrc":"5078:6:81","nodeType":"YulIdentifier","src":"5078:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5051:6:81","nodeType":"YulIdentifier","src":"5051:6:81"},"nativeSrc":"5051:34:81","nodeType":"YulFunctionCall","src":"5051:34:81"},"nativeSrc":"5051:34:81","nodeType":"YulExpressionStatement","src":"5051:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5105:9:81","nodeType":"YulIdentifier","src":"5105:9:81"},{"kind":"number","nativeSrc":"5116:2:81","nodeType":"YulLiteral","src":"5116:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5101:3:81","nodeType":"YulIdentifier","src":"5101:3:81"},"nativeSrc":"5101:18:81","nodeType":"YulFunctionCall","src":"5101:18:81"},{"name":"value2","nativeSrc":"5121:6:81","nodeType":"YulIdentifier","src":"5121:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5094:6:81","nodeType":"YulIdentifier","src":"5094:6:81"},"nativeSrc":"5094:34:81","nodeType":"YulFunctionCall","src":"5094:34:81"},"nativeSrc":"5094:34:81","nodeType":"YulExpressionStatement","src":"5094:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"4789:345:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4899:9:81","nodeType":"YulTypedName","src":"4899:9:81","type":""},{"name":"value2","nativeSrc":"4910:6:81","nodeType":"YulTypedName","src":"4910:6:81","type":""},{"name":"value1","nativeSrc":"4918:6:81","nodeType":"YulTypedName","src":"4918:6:81","type":""},{"name":"value0","nativeSrc":"4926:6:81","nodeType":"YulTypedName","src":"4926:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4937:4:81","nodeType":"YulTypedName","src":"4937:4:81","type":""}],"src":"4789:345:81"},{"body":{"nativeSrc":"5240:76:81","nodeType":"YulBlock","src":"5240:76:81","statements":[{"nativeSrc":"5250:26:81","nodeType":"YulAssignment","src":"5250:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5262:9:81","nodeType":"YulIdentifier","src":"5262:9:81"},{"kind":"number","nativeSrc":"5273:2:81","nodeType":"YulLiteral","src":"5273:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5258:3:81","nodeType":"YulIdentifier","src":"5258:3:81"},"nativeSrc":"5258:18:81","nodeType":"YulFunctionCall","src":"5258:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5250:4:81","nodeType":"YulIdentifier","src":"5250:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5292:9:81","nodeType":"YulIdentifier","src":"5292:9:81"},{"name":"value0","nativeSrc":"5303:6:81","nodeType":"YulIdentifier","src":"5303:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5285:6:81","nodeType":"YulIdentifier","src":"5285:6:81"},"nativeSrc":"5285:25:81","nodeType":"YulFunctionCall","src":"5285:25:81"},"nativeSrc":"5285:25:81","nodeType":"YulExpressionStatement","src":"5285:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"5139:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5209:9:81","nodeType":"YulTypedName","src":"5209:9:81","type":""},{"name":"value0","nativeSrc":"5220:6:81","nodeType":"YulTypedName","src":"5220:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5231:4:81","nodeType":"YulTypedName","src":"5231:4:81","type":""}],"src":"5139:177:81"}]},"contents":"{\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_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        mcopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        value2 := mload(add(headStart, 64))\n        let value := mload(add(headStart, 96))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value3 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 128))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value4 := value_1\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\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 checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\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}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b5060405161111e38038061111e83398101604081905261002e9161031f565b8484600361003c8382610448565b5060046100498282610448565b50505060ff821660805261005d3384610072565b6100675f826100af565b505050505050610521565b6001600160a01b0382166100a05760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b6100ab5f838361015c565b5050565b5f8281526005602090815260408083206001600160a01b038516845290915281205460ff16610153575f8381526005602090815260408083206001600160a01b03861684529091529020805460ff1916600117905561010b3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610156565b505f5b92915050565b6001600160a01b038316610186578060025f82825461017b9190610502565b909155506101f69050565b6001600160a01b0383165f90815260208190526040902054818110156101d85760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610097565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661021257600280548290039055610230565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161027591815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126102a5575f5ffd5b81516001600160401b038111156102be576102be610282565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102ec576102ec610282565b604052818152838201602001851015610303575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f5f5f60a08688031215610333575f5ffd5b85516001600160401b03811115610348575f5ffd5b61035488828901610296565b602088015190965090506001600160401b03811115610371575f5ffd5b61037d88828901610296565b94505060408601519250606086015160ff8116811461039a575f5ffd5b60808701519092506001600160a01b03811681146103b6575f5ffd5b809150509295509295909350565b600181811c908216806103d857607f821691505b6020821081036103f657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561044357805f5260205f20601f840160051c810160208510156104215750805b601f840160051c820191505b81811015610440575f815560010161042d565b50505b505050565b81516001600160401b0381111561046157610461610282565b6104758161046f84546103c4565b846103fc565b6020601f8211600181146104a7575f83156104905750848201515b5f19600385901b1c1916600184901b178455610440565b5f84815260208120601f198516915b828110156104d657878501518255602094850194600190920191016104b6565b50848210156104f357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561015657634e487b7160e01b5f52601160045260245ffd5b608051610be56105395f395f6102050152610be55ff3fe608060405234801561000f575f5ffd5b5060043610610127575f3560e01c806340c10f19116100a9578063a217fddf1161006e578063a217fddf146102ab578063a9059cbb146102b2578063d5391393146102c5578063d547741f146102ec578063dd62ed3e146102ff575f5ffd5b806340c10f191461024257806370a082311461025557806391d148541461027d57806395d89b41146102905780639dc29fac14610298575f5ffd5b8063248a9ca3116100ef578063248a9ca3146101a0578063282c51f3146101c25780632f2ff15d146101e9578063313ce567146101fe57806336568abe1461022f575f5ffd5b806301ffc9a71461012b57806306fdde0314610153578063095ea7b31461016857806318160ddd1461017b57806323b872dd1461018d575b5f5ffd5b61013e6101393660046109f6565b610337565b60405190151581526020015b60405180910390f35b61015b61036d565b60405161014a9190610a24565b61013e610176366004610a74565b6103fd565b6002545b60405190815260200161014a565b61013e61019b366004610a9c565b610414565b61017f6101ae366004610ad6565b5f9081526005602052604090206001015490565b61017f7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6101fc6101f7366004610aed565b610437565b005b60405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161014a565b6101fc61023d366004610aed565b610461565b6101fc610250366004610a74565b610499565b61017f610263366004610b17565b6001600160a01b03165f9081526020819052604090205490565b61013e61028b366004610aed565b6104cd565b61015b6104f7565b6101fc6102a6366004610a74565b610506565b61017f5f81565b61013e6102c0366004610a74565b61053a565b61017f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101fc6102fa366004610aed565b610547565b61017f61030d366004610b30565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6001600160e01b03198216637965db0b60e01b148061036757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461037c90610b58565b80601f01602080910402602001604051908101604052809291908181526020018280546103a890610b58565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f3361040a81858561056b565b5060019392505050565b5f33610421858285610578565b61042c8585856105f3565b506001949350505050565b5f8281526005602052604090206001015461045181610650565b61045b838361065d565b50505050565b6001600160a01b038116331461048a5760405163334bd91960e11b815260040160405180910390fd5b61049482826106ee565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66104c381610650565b6104948383610759565b5f9182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461037c90610b58565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861053081610650565b6104948383610791565b5f3361040a8185856105f3565b5f8281526005602052604090206001015461056181610650565b61045b83836106ee565b61049483838360016107c5565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981101561045b57818110156105e557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61045b84848484035f6107c5565b6001600160a01b03831661061c57604051634b637e8f60e11b81525f60048201526024016105dc565b6001600160a01b0382166106455760405163ec442f0560e01b81525f60048201526024016105dc565b610494838383610897565b61065a81336109bd565b50565b5f61066883836104cd565b6106e7575f8381526005602090815260408083206001600160a01b03861684529091529020805460ff1916600117905561069f3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610367565b505f610367565b5f6106f983836104cd565b156106e7575f8381526005602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610367565b6001600160a01b0382166107825760405163ec442f0560e01b81525f60048201526024016105dc565b61078d5f8383610897565b5050565b6001600160a01b0382166107ba57604051634b637e8f60e11b81525f60048201526024016105dc565b61078d825f83610897565b6001600160a01b0384166107ee5760405163e602df0560e01b81525f60048201526024016105dc565b6001600160a01b03831661081757604051634a1406b160e11b81525f60048201526024016105dc565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561045b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161088991815260200190565b60405180910390a350505050565b6001600160a01b0383166108c1578060025f8282546108b69190610b90565b909155506109319050565b6001600160a01b0383165f90815260208190526040902054818110156109135760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105dc565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661094d5760028054829003905561096b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109b091815260200190565b60405180910390a3505050565b6109c782826104cd565b61078d5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016105dc565b5f60208284031215610a06575f5ffd5b81356001600160e01b031981168114610a1d575f5ffd5b9392505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a6f575f5ffd5b919050565b5f5f60408385031215610a85575f5ffd5b610a8e83610a59565b946020939093013593505050565b5f5f5f60608486031215610aae575f5ffd5b610ab784610a59565b9250610ac560208501610a59565b929592945050506040919091013590565b5f60208284031215610ae6575f5ffd5b5035919050565b5f5f60408385031215610afe575f5ffd5b82359150610b0e60208401610a59565b90509250929050565b5f60208284031215610b27575f5ffd5b610a1d82610a59565b5f5f60408385031215610b41575f5ffd5b610b4a83610a59565b9150610b0e60208401610a59565b600181811c90821680610b6c57607f821691505b602082108103610b8a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561036757634e487b7160e01b5f52601160045260245ffdfea2646970667358221220b27e525ecc8b88e4d9ed6137734504996ee2468468f226b1515d5c2d4d6c01c264736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x111E CODESIZE SUB DUP1 PUSH2 0x111E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x31F JUMP JUMPDEST DUP5 DUP5 PUSH1 0x3 PUSH2 0x3C DUP4 DUP3 PUSH2 0x448 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x49 DUP3 DUP3 PUSH2 0x448 JUMP JUMPDEST POP POP POP PUSH1 0xFF DUP3 AND PUSH1 0x80 MSTORE PUSH2 0x5D CALLER DUP5 PUSH2 0x72 JUMP JUMPDEST PUSH2 0x67 PUSH0 DUP3 PUSH2 0xAF JUMP JUMPDEST POP POP POP POP POP POP PUSH2 0x521 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xA0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAB PUSH0 DUP4 DUP4 PUSH2 0x15C JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x153 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x10B CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x156 JUMP JUMPDEST POP PUSH0 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x186 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x502 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x1F6 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x1D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x212 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x230 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x275 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2A5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2BE JUMPI PUSH2 0x2BE PUSH2 0x282 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2EC JUMPI PUSH2 0x2EC PUSH2 0x282 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x354 DUP9 DUP3 DUP10 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD SWAP1 SWAP7 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x371 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x37D DUP9 DUP3 DUP10 ADD PUSH2 0x296 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD SWAP3 POP PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x39A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x80 DUP8 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x3B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x3D8 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x3F6 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x443 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x421 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x440 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x42D JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x461 JUMPI PUSH2 0x461 PUSH2 0x282 JUMP JUMPDEST PUSH2 0x475 DUP2 PUSH2 0x46F DUP5 SLOAD PUSH2 0x3C4 JUMP JUMPDEST DUP5 PUSH2 0x3FC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4A7 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x490 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x440 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4D6 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4B6 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x4F3 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x156 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH2 0xBE5 PUSH2 0x539 PUSH0 CODECOPY PUSH0 PUSH2 0x205 ADD MSTORE PUSH2 0xBE5 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x127 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x6E JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x2EC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x255 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x290 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x248A9CA3 GT PUSH2 0xEF JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0x282C51F3 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1FE JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x22F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x12B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17B JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x9F6 JUMP JUMPDEST PUSH2 0x337 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15B PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0xA24 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x176 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x3FD JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x13E PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0xA9C JUMP JUMPDEST PUSH2 0x414 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x1AE CALLDATASIZE PUSH1 0x4 PUSH2 0xAD6 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x17F PUSH32 0x3C11D16CBAFFD01DF69CE1C404F6340EE057498F5F00246190EA54220576A848 DUP2 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x437 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x23D CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x461 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x499 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x263 CALLDATASIZE PUSH1 0x4 PUSH2 0xB17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x28B CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x15B PUSH2 0x4F7 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x2A6 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x506 JUMP JUMPDEST PUSH2 0x17F PUSH0 DUP2 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x2C0 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x53A JUMP JUMPDEST PUSH2 0x17F PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x2FA CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x547 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x30D CALLDATASIZE PUSH1 0x4 PUSH2 0xB30 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x367 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0xB58 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0xB58 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3F3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3F3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3D6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x56B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x421 DUP6 DUP3 DUP6 PUSH2 0x578 JUMP JUMPDEST PUSH2 0x42C DUP6 DUP6 DUP6 PUSH2 0x5F3 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x451 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x45B DUP4 DUP4 PUSH2 0x65D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x48A JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x494 DUP3 DUP3 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0x4C3 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 PUSH2 0x759 JUMP JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0xB58 JUMP JUMPDEST PUSH32 0x3C11D16CBAFFD01DF69CE1C404F6340EE057498F5F00246190EA54220576A848 PUSH2 0x530 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 PUSH2 0x791 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x5F3 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x561 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x45B DUP4 DUP4 PUSH2 0x6EE JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x7C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x45B JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x5E5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x45B DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x7C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x61C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x645 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 DUP4 PUSH2 0x897 JUMP JUMPDEST PUSH2 0x65A DUP2 CALLER PUSH2 0x9BD JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x668 DUP4 DUP4 PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x6E7 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x69F CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x367 JUMP JUMPDEST POP PUSH0 PUSH2 0x367 JUMP JUMPDEST PUSH0 PUSH2 0x6F9 DUP4 DUP4 PUSH2 0x4CD JUMP JUMPDEST ISZERO PUSH2 0x6E7 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x367 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x782 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH2 0x78D PUSH0 DUP4 DUP4 PUSH2 0x897 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH2 0x78D DUP3 PUSH0 DUP4 PUSH2 0x897 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x7EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x817 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x45B JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x889 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x8C1 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x8B6 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x931 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x913 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x94D JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x96B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x9B0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x9C7 DUP3 DUP3 PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x78D JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xA1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA8E DUP4 PUSH2 0xA59 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xAAE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xAB7 DUP5 PUSH2 0xA59 JUMP JUMPDEST SWAP3 POP PUSH2 0xAC5 PUSH1 0x20 DUP6 ADD PUSH2 0xA59 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0xB0E PUSH1 0x20 DUP5 ADD PUSH2 0xA59 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB27 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA1D DUP3 PUSH2 0xA59 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB4A DUP4 PUSH2 0xA59 JUMP JUMPDEST SWAP2 POP PUSH2 0xB0E PUSH1 0x20 DUP5 ADD PUSH2 0xA59 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xB6C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xB8A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x367 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB2 PUSH31 0x525ECC8B88E4D9ED6137734504996EE2468468F226B1515D5C2D4D6C01C264 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"213:964:19:-:0;;;435:270;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;576:5;583:7;1667:5:47;:13;576:5:19;1667::47;:13;:::i;:::-;-1:-1:-1;1690:7:47;:17;1700:7;1690;:17;:::i;:::-;-1:-1:-1;;;598:21:19::1;::::0;::::1;;::::0;625:32:::1;631:10;643:13:::0;625:5:::1;:32::i;:::-;663:37;2232:4:27;694:5:19::0;663:10:::1;:37::i;:::-;;435:270:::0;;;;;213:964;;7458:208:47;-1:-1:-1;;;;;7528:21:47;;7524:91;;7572:32;;-1:-1:-1;;;7572:32:47;;7601:1;7572:32;;;4500:51:81;4473:18;;7572:32:47;;;;;;;;7524:91;7624:35;7640:1;7644:7;7653:5;7624:7;:35::i;:::-;7458:208;;:::o;6179:316:27:-;6256:4;2954:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;2954:29:27;;;;;;;;;;;;6272:217;;6315:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6315:29:27;;;;;;;;;:36;;-1:-1:-1;;6315:36:27;6347:4;6315:36;;;6397:12;735:10:55;;656:96;6397:12:27;-1:-1:-1;;;;;6370:40:27;6388:7;-1:-1:-1;;;;;6370:40:27;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:27;6424:11;;6272:217;-1:-1:-1;6473:5:27;6272:217;6179:316;;;;:::o;6008:1107:47:-;-1:-1:-1;;;;;6097:18:47;;6093:540;;6249:5;6233:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6093:540:47;;-1:-1:-1;6093:540:47;;-1:-1:-1;;;;;6307:15:47;;6285:19;6307:15;;;;;;;;;;;6340:19;;;6336:115;;;6386:50;;-1:-1:-1;;;6386:50:47;;-1:-1:-1;;;;;5009:32:81;;6386:50:47;;;4991:51:81;5058:18;;;5051:34;;;5101:18;;;5094:34;;;4964:18;;6386:50:47;4789:345:81;6336:115:47;-1:-1:-1;;;;;6571:15:47;;:9;:15;;;;;;;;;;6589:19;;;;6571:37;;6093:540;-1:-1:-1;;;;;6647:16:47;;6643:425;;6810:12;:21;;;;;;;6643:425;;;-1:-1:-1;;;;;7021:13:47;;:9;:13;;;;;;;;;;:22;;;;;;6643:425;7098:2;-1:-1:-1;;;;;7083:25:47;7092:4;-1:-1:-1;;;;;7083:25:47;;7102:5;7083:25;;;;5285::81;;5273:2;5258:18;;5139:177;7083:25:47;;;;;;;;6008:1107;;;:::o;14:127:81:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:723;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;298:13;;-1:-1:-1;;;;;323:30:81;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:81;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:81;;553:22;;;514:62;511:88;;;579:18;;:::i;:::-;615:2;608:22;639;;;680:19;;;701:4;676:30;673:39;-1:-1:-1;670:59:81;;;725:1;722;715:12;670:59;782:6;775:4;767:6;763:17;756:4;748:6;744:17;738:51;837:1;809:19;;;830:4;805:30;798:41;;;;813:6;146:723;-1:-1:-1;;;146:723:81:o;874:966::-;998:6;1006;1014;1022;1030;1083:3;1071:9;1062:7;1058:23;1054:33;1051:53;;;1100:1;1097;1090:12;1051:53;1127:16;;-1:-1:-1;;;;;1155:30:81;;1152:50;;;1198:1;1195;1188:12;1152:50;1221:61;1274:7;1265:6;1254:9;1250:22;1221:61;:::i;:::-;1328:2;1313:18;;1307:25;1211:71;;-1:-1:-1;1307:25:81;-1:-1:-1;;;;;;1344:32:81;;1341:52;;;1389:1;1386;1379:12;1341:52;1412:63;1467:7;1456:8;1445:9;1441:24;1412:63;:::i;:::-;1402:73;;;1515:2;1504:9;1500:18;1494:25;1484:35;;1562:2;1551:9;1547:18;1541:25;1606:4;1599:5;1595:16;1588:5;1585:27;1575:55;;1626:1;1623;1616:12;1575:55;1720:3;1705:19;;1699:26;1649:5;;-1:-1:-1;;;;;;1756:33:81;;1744:46;;1734:74;;1804:1;1801;1794:12;1734:74;1827:7;1817:17;;;874:966;;;;;;;;:::o;1845:380::-;1924:1;1920:12;;;;1967;;;1988:61;;2042:4;2034:6;2030:17;2020:27;;1988:61;2095:2;2087:6;2084:14;2064:18;2061:38;2058:161;;2141:10;2136:3;2132:20;2129:1;2122:31;2176:4;2173:1;2166:15;2204:4;2201:1;2194:15;2058:161;;1845:380;;;:::o;2356:518::-;2458:2;2453:3;2450:11;2447:421;;;2494:5;2491:1;2484:16;2538:4;2535:1;2525:18;2608:2;2596:10;2592:19;2589:1;2585:27;2579:4;2575:38;2644:4;2632:10;2629:20;2626:47;;;-1:-1:-1;2667:4:81;2626:47;2722:2;2717:3;2713:12;2710:1;2706:20;2700:4;2696:31;2686:41;;2777:81;2795:2;2788:5;2785:13;2777:81;;;2854:1;2840:16;;2821:1;2810:13;2777:81;;;2781:3;;2447:421;2356:518;;;:::o;3050:1299::-;3170:10;;-1:-1:-1;;;;;3192:30:81;;3189:56;;;3225:18;;:::i;:::-;3254:97;3344:6;3304:38;3336:4;3330:11;3304:38;:::i;:::-;3298:4;3254:97;:::i;:::-;3400:4;3431:2;3420:14;;3448:1;3443:649;;;;4136:1;4153:6;4150:89;;;-1:-1:-1;4205:19:81;;;4199:26;4150:89;-1:-1:-1;;3007:1:81;3003:11;;;2999:24;2995:29;2985:40;3031:1;3027:11;;;2982:57;4252:81;;3413:930;;3443:649;2303:1;2296:14;;;2340:4;2327:18;;-1:-1:-1;;3479:20:81;;;3597:222;3611:7;3608:1;3605:14;3597:222;;;3693:19;;;3687:26;3672:42;;3800:4;3785:20;;;;3753:1;3741:14;;;;3627:12;3597:222;;;3601:3;3847:6;3838:7;3835:19;3832:201;;;3908:19;;;3902:26;-1:-1:-1;;3991:1:81;3987:14;;;4003:3;3983:24;3979:37;3975:42;3960:58;3945:74;;3832:201;-1:-1:-1;;;;4079:1:81;4063:14;;;4059:22;4046:36;;-1:-1:-1;3050:1299:81:o;4562:222::-;4627:9;;;4648:10;;;4645:133;;;4700:10;4695:3;4691:20;4688:1;4681:31;4735:4;4732:1;4725:15;4763:4;4760:1;4753:15;5139:177;213:964:19;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@BURNER_ROLE_4363":{"entryPoint":null,"id":4363,"parameterSlots":0,"returnSlots":0},"@DEFAULT_ADMIN_ROLE_6801":{"entryPoint":null,"id":6801,"parameterSlots":0,"returnSlots":0},"@MINTER_ROLE_4358":{"entryPoint":null,"id":4358,"parameterSlots":0,"returnSlots":0},"@_approve_10878":{"entryPoint":1387,"id":10878,"parameterSlots":3,"returnSlots":0},"@_approve_10938":{"entryPoint":1989,"id":10938,"parameterSlots":4,"returnSlots":0},"@_burn_10860":{"entryPoint":1937,"id":10860,"parameterSlots":2,"returnSlots":0},"@_checkRole_6865":{"entryPoint":1616,"id":6865,"parameterSlots":1,"returnSlots":0},"@_checkRole_6886":{"entryPoint":2493,"id":6886,"parameterSlots":2,"returnSlots":0},"@_grantRole_7028":{"entryPoint":1629,"id":7028,"parameterSlots":2,"returnSlots":1},"@_mint_10827":{"entryPoint":1881,"id":10827,"parameterSlots":2,"returnSlots":0},"@_msgSender_12592":{"entryPoint":null,"id":12592,"parameterSlots":0,"returnSlots":1},"@_revokeRole_7066":{"entryPoint":1774,"id":7066,"parameterSlots":2,"returnSlots":1},"@_spendAllowance_10986":{"entryPoint":1400,"id":10986,"parameterSlots":3,"returnSlots":0},"@_transfer_10717":{"entryPoint":1523,"id":10717,"parameterSlots":3,"returnSlots":0},"@_update_10794":{"entryPoint":2199,"id":10794,"parameterSlots":3,"returnSlots":0},"@allowance_10614":{"entryPoint":null,"id":10614,"parameterSlots":2,"returnSlots":1},"@approve_10638":{"entryPoint":1021,"id":10638,"parameterSlots":2,"returnSlots":1},"@balanceOf_10573":{"entryPoint":null,"id":10573,"parameterSlots":1,"returnSlots":1},"@burn_4439":{"entryPoint":1286,"id":4439,"parameterSlots":2,"returnSlots":0},"@decimals_4407":{"entryPoint":null,"id":4407,"parameterSlots":0,"returnSlots":1},"@getRoleAdmin_6900":{"entryPoint":null,"id":6900,"parameterSlots":1,"returnSlots":1},"@grantRole_6919":{"entryPoint":1079,"id":6919,"parameterSlots":2,"returnSlots":0},"@hasRole_6852":{"entryPoint":1229,"id":6852,"parameterSlots":2,"returnSlots":1},"@mint_4423":{"entryPoint":1177,"id":4423,"parameterSlots":2,"returnSlots":0},"@name_10533":{"entryPoint":877,"id":10533,"parameterSlots":0,"returnSlots":1},"@renounceRole_6961":{"entryPoint":1121,"id":6961,"parameterSlots":2,"returnSlots":0},"@revokeRole_6938":{"entryPoint":1351,"id":6938,"parameterSlots":2,"returnSlots":0},"@supportsInterface_18195":{"entryPoint":null,"id":18195,"parameterSlots":1,"returnSlots":1},"@supportsInterface_6834":{"entryPoint":823,"id":6834,"parameterSlots":1,"returnSlots":1},"@symbol_10542":{"entryPoint":1271,"id":10542,"parameterSlots":0,"returnSlots":1},"@totalSupply_10560":{"entryPoint":null,"id":10560,"parameterSlots":0,"returnSlots":1},"@transferFrom_10670":{"entryPoint":1044,"id":10670,"parameterSlots":3,"returnSlots":1},"@transfer_10597":{"entryPoint":1338,"id":10597,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":2649,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":2839,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":2864,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":2716,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":2676,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32":{"entryPoint":2774,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":2797,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":2550,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2596,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":2960,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":2904,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:4773:81","nodeType":"YulBlock","src":"0:4773:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"83:217:81","nodeType":"YulBlock","src":"83:217:81","statements":[{"body":{"nativeSrc":"129:16:81","nodeType":"YulBlock","src":"129:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:81","nodeType":"YulLiteral","src":"138:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:81","nodeType":"YulLiteral","src":"141:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:81","nodeType":"YulIdentifier","src":"131:6:81"},"nativeSrc":"131:12:81","nodeType":"YulFunctionCall","src":"131:12:81"},"nativeSrc":"131:12:81","nodeType":"YulExpressionStatement","src":"131:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:81","nodeType":"YulIdentifier","src":"104:7:81"},{"name":"headStart","nativeSrc":"113:9:81","nodeType":"YulIdentifier","src":"113:9:81"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:23:81","nodeType":"YulFunctionCall","src":"100:23:81"},{"kind":"number","nativeSrc":"125:2:81","nodeType":"YulLiteral","src":"125:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:81","nodeType":"YulIdentifier","src":"96:3:81"},"nativeSrc":"96:32:81","nodeType":"YulFunctionCall","src":"96:32:81"},"nativeSrc":"93:52:81","nodeType":"YulIf","src":"93:52:81"},{"nativeSrc":"154:36:81","nodeType":"YulVariableDeclaration","src":"154:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:81","nodeType":"YulIdentifier","src":"180:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:81","nodeType":"YulIdentifier","src":"167:12:81"},"nativeSrc":"167:23:81","nodeType":"YulFunctionCall","src":"167:23:81"},"variables":[{"name":"value","nativeSrc":"158:5:81","nodeType":"YulTypedName","src":"158:5:81","type":""}]},{"body":{"nativeSrc":"254:16:81","nodeType":"YulBlock","src":"254:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:81","nodeType":"YulLiteral","src":"263:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:81","nodeType":"YulLiteral","src":"266:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:81","nodeType":"YulIdentifier","src":"256:6:81"},"nativeSrc":"256:12:81","nodeType":"YulFunctionCall","src":"256:12:81"},"nativeSrc":"256:12:81","nodeType":"YulExpressionStatement","src":"256:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:81","nodeType":"YulIdentifier","src":"212:5:81"},{"arguments":[{"name":"value","nativeSrc":"223:5:81","nodeType":"YulIdentifier","src":"223:5:81"},{"arguments":[{"kind":"number","nativeSrc":"234:3:81","nodeType":"YulLiteral","src":"234:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:81","nodeType":"YulLiteral","src":"239:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:81","nodeType":"YulIdentifier","src":"230:3:81"},"nativeSrc":"230:20:81","nodeType":"YulFunctionCall","src":"230:20:81"}],"functionName":{"name":"and","nativeSrc":"219:3:81","nodeType":"YulIdentifier","src":"219:3:81"},"nativeSrc":"219:32:81","nodeType":"YulFunctionCall","src":"219:32:81"}],"functionName":{"name":"eq","nativeSrc":"209:2:81","nodeType":"YulIdentifier","src":"209:2:81"},"nativeSrc":"209:43:81","nodeType":"YulFunctionCall","src":"209:43:81"}],"functionName":{"name":"iszero","nativeSrc":"202:6:81","nodeType":"YulIdentifier","src":"202:6:81"},"nativeSrc":"202:51:81","nodeType":"YulFunctionCall","src":"202:51:81"},"nativeSrc":"199:71:81","nodeType":"YulIf","src":"199:71:81"},{"nativeSrc":"279:15:81","nodeType":"YulAssignment","src":"279:15:81","value":{"name":"value","nativeSrc":"289:5:81","nodeType":"YulIdentifier","src":"289:5:81"},"variableNames":[{"name":"value0","nativeSrc":"279:6:81","nodeType":"YulIdentifier","src":"279:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:81","nodeType":"YulTypedName","src":"49:9:81","type":""},{"name":"dataEnd","nativeSrc":"60:7:81","nodeType":"YulTypedName","src":"60:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:81","nodeType":"YulTypedName","src":"72:6:81","type":""}],"src":"14:286:81"},{"body":{"nativeSrc":"400:92:81","nodeType":"YulBlock","src":"400:92:81","statements":[{"nativeSrc":"410:26:81","nodeType":"YulAssignment","src":"410:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:81","nodeType":"YulIdentifier","src":"422:9:81"},{"kind":"number","nativeSrc":"433:2:81","nodeType":"YulLiteral","src":"433:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:81","nodeType":"YulIdentifier","src":"418:3:81"},"nativeSrc":"418:18:81","nodeType":"YulFunctionCall","src":"418:18:81"},"variableNames":[{"name":"tail","nativeSrc":"410:4:81","nodeType":"YulIdentifier","src":"410:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:81","nodeType":"YulIdentifier","src":"452:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:81","nodeType":"YulIdentifier","src":"477:6:81"}],"functionName":{"name":"iszero","nativeSrc":"470:6:81","nodeType":"YulIdentifier","src":"470:6:81"},"nativeSrc":"470:14:81","nodeType":"YulFunctionCall","src":"470:14:81"}],"functionName":{"name":"iszero","nativeSrc":"463:6:81","nodeType":"YulIdentifier","src":"463:6:81"},"nativeSrc":"463:22:81","nodeType":"YulFunctionCall","src":"463:22:81"}],"functionName":{"name":"mstore","nativeSrc":"445:6:81","nodeType":"YulIdentifier","src":"445:6:81"},"nativeSrc":"445:41:81","nodeType":"YulFunctionCall","src":"445:41:81"},"nativeSrc":"445:41:81","nodeType":"YulExpressionStatement","src":"445:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:81","nodeType":"YulTypedName","src":"369:9:81","type":""},{"name":"value0","nativeSrc":"380:6:81","nodeType":"YulTypedName","src":"380:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:81","nodeType":"YulTypedName","src":"391:4:81","type":""}],"src":"305:187:81"},{"body":{"nativeSrc":"618:297:81","nodeType":"YulBlock","src":"618:297:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"635:9:81","nodeType":"YulIdentifier","src":"635:9:81"},{"kind":"number","nativeSrc":"646:2:81","nodeType":"YulLiteral","src":"646:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"628:6:81","nodeType":"YulIdentifier","src":"628:6:81"},"nativeSrc":"628:21:81","nodeType":"YulFunctionCall","src":"628:21:81"},"nativeSrc":"628:21:81","nodeType":"YulExpressionStatement","src":"628:21:81"},{"nativeSrc":"658:27:81","nodeType":"YulVariableDeclaration","src":"658:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"678:6:81","nodeType":"YulIdentifier","src":"678:6:81"}],"functionName":{"name":"mload","nativeSrc":"672:5:81","nodeType":"YulIdentifier","src":"672:5:81"},"nativeSrc":"672:13:81","nodeType":"YulFunctionCall","src":"672:13:81"},"variables":[{"name":"length","nativeSrc":"662:6:81","nodeType":"YulTypedName","src":"662:6:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"705:9:81","nodeType":"YulIdentifier","src":"705:9:81"},{"kind":"number","nativeSrc":"716:2:81","nodeType":"YulLiteral","src":"716:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"701:3:81","nodeType":"YulIdentifier","src":"701:3:81"},"nativeSrc":"701:18:81","nodeType":"YulFunctionCall","src":"701:18:81"},{"name":"length","nativeSrc":"721:6:81","nodeType":"YulIdentifier","src":"721:6:81"}],"functionName":{"name":"mstore","nativeSrc":"694:6:81","nodeType":"YulIdentifier","src":"694:6:81"},"nativeSrc":"694:34:81","nodeType":"YulFunctionCall","src":"694:34:81"},"nativeSrc":"694:34:81","nodeType":"YulExpressionStatement","src":"694:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"747:9:81","nodeType":"YulIdentifier","src":"747:9:81"},{"kind":"number","nativeSrc":"758:2:81","nodeType":"YulLiteral","src":"758:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"743:3:81","nodeType":"YulIdentifier","src":"743:3:81"},"nativeSrc":"743:18:81","nodeType":"YulFunctionCall","src":"743:18:81"},{"arguments":[{"name":"value0","nativeSrc":"767:6:81","nodeType":"YulIdentifier","src":"767:6:81"},{"kind":"number","nativeSrc":"775:2:81","nodeType":"YulLiteral","src":"775:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"763:3:81","nodeType":"YulIdentifier","src":"763:3:81"},"nativeSrc":"763:15:81","nodeType":"YulFunctionCall","src":"763:15:81"},{"name":"length","nativeSrc":"780:6:81","nodeType":"YulIdentifier","src":"780:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"737:5:81","nodeType":"YulIdentifier","src":"737:5:81"},"nativeSrc":"737:50:81","nodeType":"YulFunctionCall","src":"737:50:81"},"nativeSrc":"737:50:81","nodeType":"YulExpressionStatement","src":"737:50:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"811:9:81","nodeType":"YulIdentifier","src":"811:9:81"},{"name":"length","nativeSrc":"822:6:81","nodeType":"YulIdentifier","src":"822:6:81"}],"functionName":{"name":"add","nativeSrc":"807:3:81","nodeType":"YulIdentifier","src":"807:3:81"},"nativeSrc":"807:22:81","nodeType":"YulFunctionCall","src":"807:22:81"},{"kind":"number","nativeSrc":"831:2:81","nodeType":"YulLiteral","src":"831:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"803:3:81","nodeType":"YulIdentifier","src":"803:3:81"},"nativeSrc":"803:31:81","nodeType":"YulFunctionCall","src":"803:31:81"},{"kind":"number","nativeSrc":"836:1:81","nodeType":"YulLiteral","src":"836:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"796:6:81","nodeType":"YulIdentifier","src":"796:6:81"},"nativeSrc":"796:42:81","nodeType":"YulFunctionCall","src":"796:42:81"},"nativeSrc":"796:42:81","nodeType":"YulExpressionStatement","src":"796:42:81"},{"nativeSrc":"847:62:81","nodeType":"YulAssignment","src":"847:62:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"863:9:81","nodeType":"YulIdentifier","src":"863:9:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"882:6:81","nodeType":"YulIdentifier","src":"882:6:81"},{"kind":"number","nativeSrc":"890:2:81","nodeType":"YulLiteral","src":"890:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"878:3:81","nodeType":"YulIdentifier","src":"878:3:81"},"nativeSrc":"878:15:81","nodeType":"YulFunctionCall","src":"878:15:81"},{"arguments":[{"kind":"number","nativeSrc":"899:2:81","nodeType":"YulLiteral","src":"899:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"895:3:81","nodeType":"YulIdentifier","src":"895:3:81"},"nativeSrc":"895:7:81","nodeType":"YulFunctionCall","src":"895:7:81"}],"functionName":{"name":"and","nativeSrc":"874:3:81","nodeType":"YulIdentifier","src":"874:3:81"},"nativeSrc":"874:29:81","nodeType":"YulFunctionCall","src":"874:29:81"}],"functionName":{"name":"add","nativeSrc":"859:3:81","nodeType":"YulIdentifier","src":"859:3:81"},"nativeSrc":"859:45:81","nodeType":"YulFunctionCall","src":"859:45:81"},{"kind":"number","nativeSrc":"906:2:81","nodeType":"YulLiteral","src":"906:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"855:3:81","nodeType":"YulIdentifier","src":"855:3:81"},"nativeSrc":"855:54:81","nodeType":"YulFunctionCall","src":"855:54:81"},"variableNames":[{"name":"tail","nativeSrc":"847:4:81","nodeType":"YulIdentifier","src":"847:4:81"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"497:418:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"587:9:81","nodeType":"YulTypedName","src":"587:9:81","type":""},{"name":"value0","nativeSrc":"598:6:81","nodeType":"YulTypedName","src":"598:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"609:4:81","nodeType":"YulTypedName","src":"609:4:81","type":""}],"src":"497:418:81"},{"body":{"nativeSrc":"969:124:81","nodeType":"YulBlock","src":"969:124:81","statements":[{"nativeSrc":"979:29:81","nodeType":"YulAssignment","src":"979:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"1001:6:81","nodeType":"YulIdentifier","src":"1001:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"988:12:81","nodeType":"YulIdentifier","src":"988:12:81"},"nativeSrc":"988:20:81","nodeType":"YulFunctionCall","src":"988:20:81"},"variableNames":[{"name":"value","nativeSrc":"979:5:81","nodeType":"YulIdentifier","src":"979:5:81"}]},{"body":{"nativeSrc":"1071:16:81","nodeType":"YulBlock","src":"1071:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1080:1:81","nodeType":"YulLiteral","src":"1080:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1083:1:81","nodeType":"YulLiteral","src":"1083:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1073:6:81","nodeType":"YulIdentifier","src":"1073:6:81"},"nativeSrc":"1073:12:81","nodeType":"YulFunctionCall","src":"1073:12:81"},"nativeSrc":"1073:12:81","nodeType":"YulExpressionStatement","src":"1073:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1030:5:81","nodeType":"YulIdentifier","src":"1030:5:81"},{"arguments":[{"name":"value","nativeSrc":"1041:5:81","nodeType":"YulIdentifier","src":"1041:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1056:3:81","nodeType":"YulLiteral","src":"1056:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1061:1:81","nodeType":"YulLiteral","src":"1061:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1052:3:81","nodeType":"YulIdentifier","src":"1052:3:81"},"nativeSrc":"1052:11:81","nodeType":"YulFunctionCall","src":"1052:11:81"},{"kind":"number","nativeSrc":"1065:1:81","nodeType":"YulLiteral","src":"1065:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1048:3:81","nodeType":"YulIdentifier","src":"1048:3:81"},"nativeSrc":"1048:19:81","nodeType":"YulFunctionCall","src":"1048:19:81"}],"functionName":{"name":"and","nativeSrc":"1037:3:81","nodeType":"YulIdentifier","src":"1037:3:81"},"nativeSrc":"1037:31:81","nodeType":"YulFunctionCall","src":"1037:31:81"}],"functionName":{"name":"eq","nativeSrc":"1027:2:81","nodeType":"YulIdentifier","src":"1027:2:81"},"nativeSrc":"1027:42:81","nodeType":"YulFunctionCall","src":"1027:42:81"}],"functionName":{"name":"iszero","nativeSrc":"1020:6:81","nodeType":"YulIdentifier","src":"1020:6:81"},"nativeSrc":"1020:50:81","nodeType":"YulFunctionCall","src":"1020:50:81"},"nativeSrc":"1017:70:81","nodeType":"YulIf","src":"1017:70:81"}]},"name":"abi_decode_address","nativeSrc":"920:173:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"948:6:81","nodeType":"YulTypedName","src":"948:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"959:5:81","nodeType":"YulTypedName","src":"959:5:81","type":""}],"src":"920:173:81"},{"body":{"nativeSrc":"1185:213:81","nodeType":"YulBlock","src":"1185:213:81","statements":[{"body":{"nativeSrc":"1231:16:81","nodeType":"YulBlock","src":"1231:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1240:1:81","nodeType":"YulLiteral","src":"1240:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1243:1:81","nodeType":"YulLiteral","src":"1243:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1233:6:81","nodeType":"YulIdentifier","src":"1233:6:81"},"nativeSrc":"1233:12:81","nodeType":"YulFunctionCall","src":"1233:12:81"},"nativeSrc":"1233:12:81","nodeType":"YulExpressionStatement","src":"1233:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1206:7:81","nodeType":"YulIdentifier","src":"1206:7:81"},{"name":"headStart","nativeSrc":"1215:9:81","nodeType":"YulIdentifier","src":"1215:9:81"}],"functionName":{"name":"sub","nativeSrc":"1202:3:81","nodeType":"YulIdentifier","src":"1202:3:81"},"nativeSrc":"1202:23:81","nodeType":"YulFunctionCall","src":"1202:23:81"},{"kind":"number","nativeSrc":"1227:2:81","nodeType":"YulLiteral","src":"1227:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1198:3:81","nodeType":"YulIdentifier","src":"1198:3:81"},"nativeSrc":"1198:32:81","nodeType":"YulFunctionCall","src":"1198:32:81"},"nativeSrc":"1195:52:81","nodeType":"YulIf","src":"1195:52:81"},{"nativeSrc":"1256:39:81","nodeType":"YulAssignment","src":"1256:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1285:9:81","nodeType":"YulIdentifier","src":"1285:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1266:18:81","nodeType":"YulIdentifier","src":"1266:18:81"},"nativeSrc":"1266:29:81","nodeType":"YulFunctionCall","src":"1266:29:81"},"variableNames":[{"name":"value0","nativeSrc":"1256:6:81","nodeType":"YulIdentifier","src":"1256:6:81"}]},{"nativeSrc":"1304:14:81","nodeType":"YulVariableDeclaration","src":"1304:14:81","value":{"kind":"number","nativeSrc":"1317:1:81","nodeType":"YulLiteral","src":"1317:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1308:5:81","nodeType":"YulTypedName","src":"1308:5:81","type":""}]},{"nativeSrc":"1327:41:81","nodeType":"YulAssignment","src":"1327:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1353:9:81","nodeType":"YulIdentifier","src":"1353:9:81"},{"kind":"number","nativeSrc":"1364:2:81","nodeType":"YulLiteral","src":"1364:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1349:3:81","nodeType":"YulIdentifier","src":"1349:3:81"},"nativeSrc":"1349:18:81","nodeType":"YulFunctionCall","src":"1349:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1336:12:81","nodeType":"YulIdentifier","src":"1336:12:81"},"nativeSrc":"1336:32:81","nodeType":"YulFunctionCall","src":"1336:32:81"},"variableNames":[{"name":"value","nativeSrc":"1327:5:81","nodeType":"YulIdentifier","src":"1327:5:81"}]},{"nativeSrc":"1377:15:81","nodeType":"YulAssignment","src":"1377:15:81","value":{"name":"value","nativeSrc":"1387:5:81","nodeType":"YulIdentifier","src":"1387:5:81"},"variableNames":[{"name":"value1","nativeSrc":"1377:6:81","nodeType":"YulIdentifier","src":"1377:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1098:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1143:9:81","nodeType":"YulTypedName","src":"1143:9:81","type":""},{"name":"dataEnd","nativeSrc":"1154:7:81","nodeType":"YulTypedName","src":"1154:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1166:6:81","nodeType":"YulTypedName","src":"1166:6:81","type":""},{"name":"value1","nativeSrc":"1174:6:81","nodeType":"YulTypedName","src":"1174:6:81","type":""}],"src":"1098:300:81"},{"body":{"nativeSrc":"1504:76:81","nodeType":"YulBlock","src":"1504:76:81","statements":[{"nativeSrc":"1514:26:81","nodeType":"YulAssignment","src":"1514:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1526:9:81","nodeType":"YulIdentifier","src":"1526:9:81"},{"kind":"number","nativeSrc":"1537:2:81","nodeType":"YulLiteral","src":"1537:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1522:3:81","nodeType":"YulIdentifier","src":"1522:3:81"},"nativeSrc":"1522:18:81","nodeType":"YulFunctionCall","src":"1522:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1514:4:81","nodeType":"YulIdentifier","src":"1514:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1556:9:81","nodeType":"YulIdentifier","src":"1556:9:81"},{"name":"value0","nativeSrc":"1567:6:81","nodeType":"YulIdentifier","src":"1567:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1549:6:81","nodeType":"YulIdentifier","src":"1549:6:81"},"nativeSrc":"1549:25:81","nodeType":"YulFunctionCall","src":"1549:25:81"},"nativeSrc":"1549:25:81","nodeType":"YulExpressionStatement","src":"1549:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1403:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1473:9:81","nodeType":"YulTypedName","src":"1473:9:81","type":""},{"name":"value0","nativeSrc":"1484:6:81","nodeType":"YulTypedName","src":"1484:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1495:4:81","nodeType":"YulTypedName","src":"1495:4:81","type":""}],"src":"1403:177:81"},{"body":{"nativeSrc":"1689:270:81","nodeType":"YulBlock","src":"1689:270:81","statements":[{"body":{"nativeSrc":"1735:16:81","nodeType":"YulBlock","src":"1735:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1744:1:81","nodeType":"YulLiteral","src":"1744:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1747:1:81","nodeType":"YulLiteral","src":"1747:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1737:6:81","nodeType":"YulIdentifier","src":"1737:6:81"},"nativeSrc":"1737:12:81","nodeType":"YulFunctionCall","src":"1737:12:81"},"nativeSrc":"1737:12:81","nodeType":"YulExpressionStatement","src":"1737:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1710:7:81","nodeType":"YulIdentifier","src":"1710:7:81"},{"name":"headStart","nativeSrc":"1719:9:81","nodeType":"YulIdentifier","src":"1719:9:81"}],"functionName":{"name":"sub","nativeSrc":"1706:3:81","nodeType":"YulIdentifier","src":"1706:3:81"},"nativeSrc":"1706:23:81","nodeType":"YulFunctionCall","src":"1706:23:81"},{"kind":"number","nativeSrc":"1731:2:81","nodeType":"YulLiteral","src":"1731:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1702:3:81","nodeType":"YulIdentifier","src":"1702:3:81"},"nativeSrc":"1702:32:81","nodeType":"YulFunctionCall","src":"1702:32:81"},"nativeSrc":"1699:52:81","nodeType":"YulIf","src":"1699:52:81"},{"nativeSrc":"1760:39:81","nodeType":"YulAssignment","src":"1760:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1789:9:81","nodeType":"YulIdentifier","src":"1789:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1770:18:81","nodeType":"YulIdentifier","src":"1770:18:81"},"nativeSrc":"1770:29:81","nodeType":"YulFunctionCall","src":"1770:29:81"},"variableNames":[{"name":"value0","nativeSrc":"1760:6:81","nodeType":"YulIdentifier","src":"1760:6:81"}]},{"nativeSrc":"1808:48:81","nodeType":"YulAssignment","src":"1808:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1841:9:81","nodeType":"YulIdentifier","src":"1841:9:81"},{"kind":"number","nativeSrc":"1852:2:81","nodeType":"YulLiteral","src":"1852:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1837:3:81","nodeType":"YulIdentifier","src":"1837:3:81"},"nativeSrc":"1837:18:81","nodeType":"YulFunctionCall","src":"1837:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1818:18:81","nodeType":"YulIdentifier","src":"1818:18:81"},"nativeSrc":"1818:38:81","nodeType":"YulFunctionCall","src":"1818:38:81"},"variableNames":[{"name":"value1","nativeSrc":"1808:6:81","nodeType":"YulIdentifier","src":"1808:6:81"}]},{"nativeSrc":"1865:14:81","nodeType":"YulVariableDeclaration","src":"1865:14:81","value":{"kind":"number","nativeSrc":"1878:1:81","nodeType":"YulLiteral","src":"1878:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1869:5:81","nodeType":"YulTypedName","src":"1869:5:81","type":""}]},{"nativeSrc":"1888:41:81","nodeType":"YulAssignment","src":"1888:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1914:9:81","nodeType":"YulIdentifier","src":"1914:9:81"},{"kind":"number","nativeSrc":"1925:2:81","nodeType":"YulLiteral","src":"1925:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1910:3:81","nodeType":"YulIdentifier","src":"1910:3:81"},"nativeSrc":"1910:18:81","nodeType":"YulFunctionCall","src":"1910:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1897:12:81","nodeType":"YulIdentifier","src":"1897:12:81"},"nativeSrc":"1897:32:81","nodeType":"YulFunctionCall","src":"1897:32:81"},"variableNames":[{"name":"value","nativeSrc":"1888:5:81","nodeType":"YulIdentifier","src":"1888:5:81"}]},{"nativeSrc":"1938:15:81","nodeType":"YulAssignment","src":"1938:15:81","value":{"name":"value","nativeSrc":"1948:5:81","nodeType":"YulIdentifier","src":"1948:5:81"},"variableNames":[{"name":"value2","nativeSrc":"1938:6:81","nodeType":"YulIdentifier","src":"1938:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1585:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1639:9:81","nodeType":"YulTypedName","src":"1639:9:81","type":""},{"name":"dataEnd","nativeSrc":"1650:7:81","nodeType":"YulTypedName","src":"1650:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1662:6:81","nodeType":"YulTypedName","src":"1662:6:81","type":""},{"name":"value1","nativeSrc":"1670:6:81","nodeType":"YulTypedName","src":"1670:6:81","type":""},{"name":"value2","nativeSrc":"1678:6:81","nodeType":"YulTypedName","src":"1678:6:81","type":""}],"src":"1585:374:81"},{"body":{"nativeSrc":"2034:156:81","nodeType":"YulBlock","src":"2034:156:81","statements":[{"body":{"nativeSrc":"2080:16:81","nodeType":"YulBlock","src":"2080:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2089:1:81","nodeType":"YulLiteral","src":"2089:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2092:1:81","nodeType":"YulLiteral","src":"2092:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2082:6:81","nodeType":"YulIdentifier","src":"2082:6:81"},"nativeSrc":"2082:12:81","nodeType":"YulFunctionCall","src":"2082:12:81"},"nativeSrc":"2082:12:81","nodeType":"YulExpressionStatement","src":"2082:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2055:7:81","nodeType":"YulIdentifier","src":"2055:7:81"},{"name":"headStart","nativeSrc":"2064:9:81","nodeType":"YulIdentifier","src":"2064:9:81"}],"functionName":{"name":"sub","nativeSrc":"2051:3:81","nodeType":"YulIdentifier","src":"2051:3:81"},"nativeSrc":"2051:23:81","nodeType":"YulFunctionCall","src":"2051:23:81"},{"kind":"number","nativeSrc":"2076:2:81","nodeType":"YulLiteral","src":"2076:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2047:3:81","nodeType":"YulIdentifier","src":"2047:3:81"},"nativeSrc":"2047:32:81","nodeType":"YulFunctionCall","src":"2047:32:81"},"nativeSrc":"2044:52:81","nodeType":"YulIf","src":"2044:52:81"},{"nativeSrc":"2105:14:81","nodeType":"YulVariableDeclaration","src":"2105:14:81","value":{"kind":"number","nativeSrc":"2118:1:81","nodeType":"YulLiteral","src":"2118:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2109:5:81","nodeType":"YulTypedName","src":"2109:5:81","type":""}]},{"nativeSrc":"2128:32:81","nodeType":"YulAssignment","src":"2128:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2150:9:81","nodeType":"YulIdentifier","src":"2150:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2137:12:81","nodeType":"YulIdentifier","src":"2137:12:81"},"nativeSrc":"2137:23:81","nodeType":"YulFunctionCall","src":"2137:23:81"},"variableNames":[{"name":"value","nativeSrc":"2128:5:81","nodeType":"YulIdentifier","src":"2128:5:81"}]},{"nativeSrc":"2169:15:81","nodeType":"YulAssignment","src":"2169:15:81","value":{"name":"value","nativeSrc":"2179:5:81","nodeType":"YulIdentifier","src":"2179:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2169:6:81","nodeType":"YulIdentifier","src":"2169:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"1964:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2000:9:81","nodeType":"YulTypedName","src":"2000:9:81","type":""},{"name":"dataEnd","nativeSrc":"2011:7:81","nodeType":"YulTypedName","src":"2011:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2023:6:81","nodeType":"YulTypedName","src":"2023:6:81","type":""}],"src":"1964:226:81"},{"body":{"nativeSrc":"2296:76:81","nodeType":"YulBlock","src":"2296:76:81","statements":[{"nativeSrc":"2306:26:81","nodeType":"YulAssignment","src":"2306:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2318:9:81","nodeType":"YulIdentifier","src":"2318:9:81"},{"kind":"number","nativeSrc":"2329:2:81","nodeType":"YulLiteral","src":"2329:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2314:3:81","nodeType":"YulIdentifier","src":"2314:3:81"},"nativeSrc":"2314:18:81","nodeType":"YulFunctionCall","src":"2314:18:81"},"variableNames":[{"name":"tail","nativeSrc":"2306:4:81","nodeType":"YulIdentifier","src":"2306:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2348:9:81","nodeType":"YulIdentifier","src":"2348:9:81"},{"name":"value0","nativeSrc":"2359:6:81","nodeType":"YulIdentifier","src":"2359:6:81"}],"functionName":{"name":"mstore","nativeSrc":"2341:6:81","nodeType":"YulIdentifier","src":"2341:6:81"},"nativeSrc":"2341:25:81","nodeType":"YulFunctionCall","src":"2341:25:81"},"nativeSrc":"2341:25:81","nodeType":"YulExpressionStatement","src":"2341:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"2195:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2265:9:81","nodeType":"YulTypedName","src":"2265:9:81","type":""},{"name":"value0","nativeSrc":"2276:6:81","nodeType":"YulTypedName","src":"2276:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2287:4:81","nodeType":"YulTypedName","src":"2287:4:81","type":""}],"src":"2195:177:81"},{"body":{"nativeSrc":"2464:213:81","nodeType":"YulBlock","src":"2464:213:81","statements":[{"body":{"nativeSrc":"2510:16:81","nodeType":"YulBlock","src":"2510:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2519:1:81","nodeType":"YulLiteral","src":"2519:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2522:1:81","nodeType":"YulLiteral","src":"2522:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2512:6:81","nodeType":"YulIdentifier","src":"2512:6:81"},"nativeSrc":"2512:12:81","nodeType":"YulFunctionCall","src":"2512:12:81"},"nativeSrc":"2512:12:81","nodeType":"YulExpressionStatement","src":"2512:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2485:7:81","nodeType":"YulIdentifier","src":"2485:7:81"},{"name":"headStart","nativeSrc":"2494:9:81","nodeType":"YulIdentifier","src":"2494:9:81"}],"functionName":{"name":"sub","nativeSrc":"2481:3:81","nodeType":"YulIdentifier","src":"2481:3:81"},"nativeSrc":"2481:23:81","nodeType":"YulFunctionCall","src":"2481:23:81"},{"kind":"number","nativeSrc":"2506:2:81","nodeType":"YulLiteral","src":"2506:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2477:3:81","nodeType":"YulIdentifier","src":"2477:3:81"},"nativeSrc":"2477:32:81","nodeType":"YulFunctionCall","src":"2477:32:81"},"nativeSrc":"2474:52:81","nodeType":"YulIf","src":"2474:52:81"},{"nativeSrc":"2535:14:81","nodeType":"YulVariableDeclaration","src":"2535:14:81","value":{"kind":"number","nativeSrc":"2548:1:81","nodeType":"YulLiteral","src":"2548:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2539:5:81","nodeType":"YulTypedName","src":"2539:5:81","type":""}]},{"nativeSrc":"2558:32:81","nodeType":"YulAssignment","src":"2558:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2580:9:81","nodeType":"YulIdentifier","src":"2580:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2567:12:81","nodeType":"YulIdentifier","src":"2567:12:81"},"nativeSrc":"2567:23:81","nodeType":"YulFunctionCall","src":"2567:23:81"},"variableNames":[{"name":"value","nativeSrc":"2558:5:81","nodeType":"YulIdentifier","src":"2558:5:81"}]},{"nativeSrc":"2599:15:81","nodeType":"YulAssignment","src":"2599:15:81","value":{"name":"value","nativeSrc":"2609:5:81","nodeType":"YulIdentifier","src":"2609:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2599:6:81","nodeType":"YulIdentifier","src":"2599:6:81"}]},{"nativeSrc":"2623:48:81","nodeType":"YulAssignment","src":"2623:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2656:9:81","nodeType":"YulIdentifier","src":"2656:9:81"},{"kind":"number","nativeSrc":"2667:2:81","nodeType":"YulLiteral","src":"2667:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2652:3:81","nodeType":"YulIdentifier","src":"2652:3:81"},"nativeSrc":"2652:18:81","nodeType":"YulFunctionCall","src":"2652:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2633:18:81","nodeType":"YulIdentifier","src":"2633:18:81"},"nativeSrc":"2633:38:81","nodeType":"YulFunctionCall","src":"2633:38:81"},"variableNames":[{"name":"value1","nativeSrc":"2623:6:81","nodeType":"YulIdentifier","src":"2623:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nativeSrc":"2377:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2422:9:81","nodeType":"YulTypedName","src":"2422:9:81","type":""},{"name":"dataEnd","nativeSrc":"2433:7:81","nodeType":"YulTypedName","src":"2433:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2445:6:81","nodeType":"YulTypedName","src":"2445:6:81","type":""},{"name":"value1","nativeSrc":"2453:6:81","nodeType":"YulTypedName","src":"2453:6:81","type":""}],"src":"2377:300:81"},{"body":{"nativeSrc":"2779:87:81","nodeType":"YulBlock","src":"2779:87:81","statements":[{"nativeSrc":"2789:26:81","nodeType":"YulAssignment","src":"2789:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2801:9:81","nodeType":"YulIdentifier","src":"2801:9:81"},{"kind":"number","nativeSrc":"2812:2:81","nodeType":"YulLiteral","src":"2812:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2797:3:81","nodeType":"YulIdentifier","src":"2797:3:81"},"nativeSrc":"2797:18:81","nodeType":"YulFunctionCall","src":"2797:18:81"},"variableNames":[{"name":"tail","nativeSrc":"2789:4:81","nodeType":"YulIdentifier","src":"2789:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2831:9:81","nodeType":"YulIdentifier","src":"2831:9:81"},{"arguments":[{"name":"value0","nativeSrc":"2846:6:81","nodeType":"YulIdentifier","src":"2846:6:81"},{"kind":"number","nativeSrc":"2854:4:81","nodeType":"YulLiteral","src":"2854:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"2842:3:81","nodeType":"YulIdentifier","src":"2842:3:81"},"nativeSrc":"2842:17:81","nodeType":"YulFunctionCall","src":"2842:17:81"}],"functionName":{"name":"mstore","nativeSrc":"2824:6:81","nodeType":"YulIdentifier","src":"2824:6:81"},"nativeSrc":"2824:36:81","nodeType":"YulFunctionCall","src":"2824:36:81"},"nativeSrc":"2824:36:81","nodeType":"YulExpressionStatement","src":"2824:36:81"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"2682:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2748:9:81","nodeType":"YulTypedName","src":"2748:9:81","type":""},{"name":"value0","nativeSrc":"2759:6:81","nodeType":"YulTypedName","src":"2759:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2770:4:81","nodeType":"YulTypedName","src":"2770:4:81","type":""}],"src":"2682:184:81"},{"body":{"nativeSrc":"2941:116:81","nodeType":"YulBlock","src":"2941:116:81","statements":[{"body":{"nativeSrc":"2987:16:81","nodeType":"YulBlock","src":"2987:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2996:1:81","nodeType":"YulLiteral","src":"2996:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2999:1:81","nodeType":"YulLiteral","src":"2999:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2989:6:81","nodeType":"YulIdentifier","src":"2989:6:81"},"nativeSrc":"2989:12:81","nodeType":"YulFunctionCall","src":"2989:12:81"},"nativeSrc":"2989:12:81","nodeType":"YulExpressionStatement","src":"2989:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2962:7:81","nodeType":"YulIdentifier","src":"2962:7:81"},{"name":"headStart","nativeSrc":"2971:9:81","nodeType":"YulIdentifier","src":"2971:9:81"}],"functionName":{"name":"sub","nativeSrc":"2958:3:81","nodeType":"YulIdentifier","src":"2958:3:81"},"nativeSrc":"2958:23:81","nodeType":"YulFunctionCall","src":"2958:23:81"},{"kind":"number","nativeSrc":"2983:2:81","nodeType":"YulLiteral","src":"2983:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2954:3:81","nodeType":"YulIdentifier","src":"2954:3:81"},"nativeSrc":"2954:32:81","nodeType":"YulFunctionCall","src":"2954:32:81"},"nativeSrc":"2951:52:81","nodeType":"YulIf","src":"2951:52:81"},{"nativeSrc":"3012:39:81","nodeType":"YulAssignment","src":"3012:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3041:9:81","nodeType":"YulIdentifier","src":"3041:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3022:18:81","nodeType":"YulIdentifier","src":"3022:18:81"},"nativeSrc":"3022:29:81","nodeType":"YulFunctionCall","src":"3022:29:81"},"variableNames":[{"name":"value0","nativeSrc":"3012:6:81","nodeType":"YulIdentifier","src":"3012:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"2871:186:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2907:9:81","nodeType":"YulTypedName","src":"2907:9:81","type":""},{"name":"dataEnd","nativeSrc":"2918:7:81","nodeType":"YulTypedName","src":"2918:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2930:6:81","nodeType":"YulTypedName","src":"2930:6:81","type":""}],"src":"2871:186:81"},{"body":{"nativeSrc":"3149:173:81","nodeType":"YulBlock","src":"3149:173:81","statements":[{"body":{"nativeSrc":"3195:16:81","nodeType":"YulBlock","src":"3195:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3204:1:81","nodeType":"YulLiteral","src":"3204:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3207:1:81","nodeType":"YulLiteral","src":"3207:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3197:6:81","nodeType":"YulIdentifier","src":"3197:6:81"},"nativeSrc":"3197:12:81","nodeType":"YulFunctionCall","src":"3197:12:81"},"nativeSrc":"3197:12:81","nodeType":"YulExpressionStatement","src":"3197:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3170:7:81","nodeType":"YulIdentifier","src":"3170:7:81"},{"name":"headStart","nativeSrc":"3179:9:81","nodeType":"YulIdentifier","src":"3179:9:81"}],"functionName":{"name":"sub","nativeSrc":"3166:3:81","nodeType":"YulIdentifier","src":"3166:3:81"},"nativeSrc":"3166:23:81","nodeType":"YulFunctionCall","src":"3166:23:81"},{"kind":"number","nativeSrc":"3191:2:81","nodeType":"YulLiteral","src":"3191:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3162:3:81","nodeType":"YulIdentifier","src":"3162:3:81"},"nativeSrc":"3162:32:81","nodeType":"YulFunctionCall","src":"3162:32:81"},"nativeSrc":"3159:52:81","nodeType":"YulIf","src":"3159:52:81"},{"nativeSrc":"3220:39:81","nodeType":"YulAssignment","src":"3220:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3249:9:81","nodeType":"YulIdentifier","src":"3249:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3230:18:81","nodeType":"YulIdentifier","src":"3230:18:81"},"nativeSrc":"3230:29:81","nodeType":"YulFunctionCall","src":"3230:29:81"},"variableNames":[{"name":"value0","nativeSrc":"3220:6:81","nodeType":"YulIdentifier","src":"3220:6:81"}]},{"nativeSrc":"3268:48:81","nodeType":"YulAssignment","src":"3268:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3301:9:81","nodeType":"YulIdentifier","src":"3301:9:81"},{"kind":"number","nativeSrc":"3312:2:81","nodeType":"YulLiteral","src":"3312:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3297:3:81","nodeType":"YulIdentifier","src":"3297:3:81"},"nativeSrc":"3297:18:81","nodeType":"YulFunctionCall","src":"3297:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3278:18:81","nodeType":"YulIdentifier","src":"3278:18:81"},"nativeSrc":"3278:38:81","nodeType":"YulFunctionCall","src":"3278:38:81"},"variableNames":[{"name":"value1","nativeSrc":"3268:6:81","nodeType":"YulIdentifier","src":"3268:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"3062:260:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3107:9:81","nodeType":"YulTypedName","src":"3107:9:81","type":""},{"name":"dataEnd","nativeSrc":"3118:7:81","nodeType":"YulTypedName","src":"3118:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3130:6:81","nodeType":"YulTypedName","src":"3130:6:81","type":""},{"name":"value1","nativeSrc":"3138:6:81","nodeType":"YulTypedName","src":"3138:6:81","type":""}],"src":"3062:260:81"},{"body":{"nativeSrc":"3382:325:81","nodeType":"YulBlock","src":"3382:325:81","statements":[{"nativeSrc":"3392:22:81","nodeType":"YulAssignment","src":"3392:22:81","value":{"arguments":[{"kind":"number","nativeSrc":"3406:1:81","nodeType":"YulLiteral","src":"3406:1:81","type":"","value":"1"},{"name":"data","nativeSrc":"3409:4:81","nodeType":"YulIdentifier","src":"3409:4:81"}],"functionName":{"name":"shr","nativeSrc":"3402:3:81","nodeType":"YulIdentifier","src":"3402:3:81"},"nativeSrc":"3402:12:81","nodeType":"YulFunctionCall","src":"3402:12:81"},"variableNames":[{"name":"length","nativeSrc":"3392:6:81","nodeType":"YulIdentifier","src":"3392:6:81"}]},{"nativeSrc":"3423:38:81","nodeType":"YulVariableDeclaration","src":"3423:38:81","value":{"arguments":[{"name":"data","nativeSrc":"3453:4:81","nodeType":"YulIdentifier","src":"3453:4:81"},{"kind":"number","nativeSrc":"3459:1:81","nodeType":"YulLiteral","src":"3459:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"3449:3:81","nodeType":"YulIdentifier","src":"3449:3:81"},"nativeSrc":"3449:12:81","nodeType":"YulFunctionCall","src":"3449:12:81"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"3427:18:81","nodeType":"YulTypedName","src":"3427:18:81","type":""}]},{"body":{"nativeSrc":"3500:31:81","nodeType":"YulBlock","src":"3500:31:81","statements":[{"nativeSrc":"3502:27:81","nodeType":"YulAssignment","src":"3502:27:81","value":{"arguments":[{"name":"length","nativeSrc":"3516:6:81","nodeType":"YulIdentifier","src":"3516:6:81"},{"kind":"number","nativeSrc":"3524:4:81","nodeType":"YulLiteral","src":"3524:4:81","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"3512:3:81","nodeType":"YulIdentifier","src":"3512:3:81"},"nativeSrc":"3512:17:81","nodeType":"YulFunctionCall","src":"3512:17:81"},"variableNames":[{"name":"length","nativeSrc":"3502:6:81","nodeType":"YulIdentifier","src":"3502:6:81"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"3480:18:81","nodeType":"YulIdentifier","src":"3480:18:81"}],"functionName":{"name":"iszero","nativeSrc":"3473:6:81","nodeType":"YulIdentifier","src":"3473:6:81"},"nativeSrc":"3473:26:81","nodeType":"YulFunctionCall","src":"3473:26:81"},"nativeSrc":"3470:61:81","nodeType":"YulIf","src":"3470:61:81"},{"body":{"nativeSrc":"3590:111:81","nodeType":"YulBlock","src":"3590:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3611:1:81","nodeType":"YulLiteral","src":"3611:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3618:3:81","nodeType":"YulLiteral","src":"3618:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"3623:10:81","nodeType":"YulLiteral","src":"3623:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3614:3:81","nodeType":"YulIdentifier","src":"3614:3:81"},"nativeSrc":"3614:20:81","nodeType":"YulFunctionCall","src":"3614:20:81"}],"functionName":{"name":"mstore","nativeSrc":"3604:6:81","nodeType":"YulIdentifier","src":"3604:6:81"},"nativeSrc":"3604:31:81","nodeType":"YulFunctionCall","src":"3604:31:81"},"nativeSrc":"3604:31:81","nodeType":"YulExpressionStatement","src":"3604:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3655:1:81","nodeType":"YulLiteral","src":"3655:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"3658:4:81","nodeType":"YulLiteral","src":"3658:4:81","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"3648:6:81","nodeType":"YulIdentifier","src":"3648:6:81"},"nativeSrc":"3648:15:81","nodeType":"YulFunctionCall","src":"3648:15:81"},"nativeSrc":"3648:15:81","nodeType":"YulExpressionStatement","src":"3648:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3683:1:81","nodeType":"YulLiteral","src":"3683:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3686:4:81","nodeType":"YulLiteral","src":"3686:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3676:6:81","nodeType":"YulIdentifier","src":"3676:6:81"},"nativeSrc":"3676:15:81","nodeType":"YulFunctionCall","src":"3676:15:81"},"nativeSrc":"3676:15:81","nodeType":"YulExpressionStatement","src":"3676:15:81"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"3546:18:81","nodeType":"YulIdentifier","src":"3546:18:81"},{"arguments":[{"name":"length","nativeSrc":"3569:6:81","nodeType":"YulIdentifier","src":"3569:6:81"},{"kind":"number","nativeSrc":"3577:2:81","nodeType":"YulLiteral","src":"3577:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"3566:2:81","nodeType":"YulIdentifier","src":"3566:2:81"},"nativeSrc":"3566:14:81","nodeType":"YulFunctionCall","src":"3566:14:81"}],"functionName":{"name":"eq","nativeSrc":"3543:2:81","nodeType":"YulIdentifier","src":"3543:2:81"},"nativeSrc":"3543:38:81","nodeType":"YulFunctionCall","src":"3543:38:81"},"nativeSrc":"3540:161:81","nodeType":"YulIf","src":"3540:161:81"}]},"name":"extract_byte_array_length","nativeSrc":"3327:380:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"3362:4:81","nodeType":"YulTypedName","src":"3362:4:81","type":""}],"returnVariables":[{"name":"length","nativeSrc":"3371:6:81","nodeType":"YulTypedName","src":"3371:6:81","type":""}],"src":"3327:380:81"},{"body":{"nativeSrc":"3869:188:81","nodeType":"YulBlock","src":"3869:188:81","statements":[{"nativeSrc":"3879:26:81","nodeType":"YulAssignment","src":"3879:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3891:9:81","nodeType":"YulIdentifier","src":"3891:9:81"},{"kind":"number","nativeSrc":"3902:2:81","nodeType":"YulLiteral","src":"3902:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3887:3:81","nodeType":"YulIdentifier","src":"3887:3:81"},"nativeSrc":"3887:18:81","nodeType":"YulFunctionCall","src":"3887:18:81"},"variableNames":[{"name":"tail","nativeSrc":"3879:4:81","nodeType":"YulIdentifier","src":"3879:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3921:9:81","nodeType":"YulIdentifier","src":"3921:9:81"},{"arguments":[{"name":"value0","nativeSrc":"3936:6:81","nodeType":"YulIdentifier","src":"3936:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3952:3:81","nodeType":"YulLiteral","src":"3952:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"3957:1:81","nodeType":"YulLiteral","src":"3957:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3948:3:81","nodeType":"YulIdentifier","src":"3948:3:81"},"nativeSrc":"3948:11:81","nodeType":"YulFunctionCall","src":"3948:11:81"},{"kind":"number","nativeSrc":"3961:1:81","nodeType":"YulLiteral","src":"3961:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3944:3:81","nodeType":"YulIdentifier","src":"3944:3:81"},"nativeSrc":"3944:19:81","nodeType":"YulFunctionCall","src":"3944:19:81"}],"functionName":{"name":"and","nativeSrc":"3932:3:81","nodeType":"YulIdentifier","src":"3932:3:81"},"nativeSrc":"3932:32:81","nodeType":"YulFunctionCall","src":"3932:32:81"}],"functionName":{"name":"mstore","nativeSrc":"3914:6:81","nodeType":"YulIdentifier","src":"3914:6:81"},"nativeSrc":"3914:51:81","nodeType":"YulFunctionCall","src":"3914:51:81"},"nativeSrc":"3914:51:81","nodeType":"YulExpressionStatement","src":"3914:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3985:9:81","nodeType":"YulIdentifier","src":"3985:9:81"},{"kind":"number","nativeSrc":"3996:2:81","nodeType":"YulLiteral","src":"3996:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3981:3:81","nodeType":"YulIdentifier","src":"3981:3:81"},"nativeSrc":"3981:18:81","nodeType":"YulFunctionCall","src":"3981:18:81"},{"name":"value1","nativeSrc":"4001:6:81","nodeType":"YulIdentifier","src":"4001:6:81"}],"functionName":{"name":"mstore","nativeSrc":"3974:6:81","nodeType":"YulIdentifier","src":"3974:6:81"},"nativeSrc":"3974:34:81","nodeType":"YulFunctionCall","src":"3974:34:81"},"nativeSrc":"3974:34:81","nodeType":"YulExpressionStatement","src":"3974:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4028:9:81","nodeType":"YulIdentifier","src":"4028:9:81"},{"kind":"number","nativeSrc":"4039:2:81","nodeType":"YulLiteral","src":"4039:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4024:3:81","nodeType":"YulIdentifier","src":"4024:3:81"},"nativeSrc":"4024:18:81","nodeType":"YulFunctionCall","src":"4024:18:81"},{"name":"value2","nativeSrc":"4044:6:81","nodeType":"YulIdentifier","src":"4044:6:81"}],"functionName":{"name":"mstore","nativeSrc":"4017:6:81","nodeType":"YulIdentifier","src":"4017:6:81"},"nativeSrc":"4017:34:81","nodeType":"YulFunctionCall","src":"4017:34:81"},"nativeSrc":"4017:34:81","nodeType":"YulExpressionStatement","src":"4017:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"3712:345:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3822:9:81","nodeType":"YulTypedName","src":"3822:9:81","type":""},{"name":"value2","nativeSrc":"3833:6:81","nodeType":"YulTypedName","src":"3833:6:81","type":""},{"name":"value1","nativeSrc":"3841:6:81","nodeType":"YulTypedName","src":"3841:6:81","type":""},{"name":"value0","nativeSrc":"3849:6:81","nodeType":"YulTypedName","src":"3849:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3860:4:81","nodeType":"YulTypedName","src":"3860:4:81","type":""}],"src":"3712:345:81"},{"body":{"nativeSrc":"4163:102:81","nodeType":"YulBlock","src":"4163:102:81","statements":[{"nativeSrc":"4173:26:81","nodeType":"YulAssignment","src":"4173:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4185:9:81","nodeType":"YulIdentifier","src":"4185:9:81"},{"kind":"number","nativeSrc":"4196:2:81","nodeType":"YulLiteral","src":"4196:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4181:3:81","nodeType":"YulIdentifier","src":"4181:3:81"},"nativeSrc":"4181:18:81","nodeType":"YulFunctionCall","src":"4181:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4173:4:81","nodeType":"YulIdentifier","src":"4173:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4215:9:81","nodeType":"YulIdentifier","src":"4215:9:81"},{"arguments":[{"name":"value0","nativeSrc":"4230:6:81","nodeType":"YulIdentifier","src":"4230:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4246:3:81","nodeType":"YulLiteral","src":"4246:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"4251:1:81","nodeType":"YulLiteral","src":"4251:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4242:3:81","nodeType":"YulIdentifier","src":"4242:3:81"},"nativeSrc":"4242:11:81","nodeType":"YulFunctionCall","src":"4242:11:81"},{"kind":"number","nativeSrc":"4255:1:81","nodeType":"YulLiteral","src":"4255:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4238:3:81","nodeType":"YulIdentifier","src":"4238:3:81"},"nativeSrc":"4238:19:81","nodeType":"YulFunctionCall","src":"4238:19:81"}],"functionName":{"name":"and","nativeSrc":"4226:3:81","nodeType":"YulIdentifier","src":"4226:3:81"},"nativeSrc":"4226:32:81","nodeType":"YulFunctionCall","src":"4226:32:81"}],"functionName":{"name":"mstore","nativeSrc":"4208:6:81","nodeType":"YulIdentifier","src":"4208:6:81"},"nativeSrc":"4208:51:81","nodeType":"YulFunctionCall","src":"4208:51:81"},"nativeSrc":"4208:51:81","nodeType":"YulExpressionStatement","src":"4208:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4062:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4132:9:81","nodeType":"YulTypedName","src":"4132:9:81","type":""},{"name":"value0","nativeSrc":"4143:6:81","nodeType":"YulTypedName","src":"4143:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4154:4:81","nodeType":"YulTypedName","src":"4154:4:81","type":""}],"src":"4062:203:81"},{"body":{"nativeSrc":"4318:174:81","nodeType":"YulBlock","src":"4318:174:81","statements":[{"nativeSrc":"4328:16:81","nodeType":"YulAssignment","src":"4328:16:81","value":{"arguments":[{"name":"x","nativeSrc":"4339:1:81","nodeType":"YulIdentifier","src":"4339:1:81"},{"name":"y","nativeSrc":"4342:1:81","nodeType":"YulIdentifier","src":"4342:1:81"}],"functionName":{"name":"add","nativeSrc":"4335:3:81","nodeType":"YulIdentifier","src":"4335:3:81"},"nativeSrc":"4335:9:81","nodeType":"YulFunctionCall","src":"4335:9:81"},"variableNames":[{"name":"sum","nativeSrc":"4328:3:81","nodeType":"YulIdentifier","src":"4328:3:81"}]},{"body":{"nativeSrc":"4375:111:81","nodeType":"YulBlock","src":"4375:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4396:1:81","nodeType":"YulLiteral","src":"4396:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4403:3:81","nodeType":"YulLiteral","src":"4403:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4408:10:81","nodeType":"YulLiteral","src":"4408:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4399:3:81","nodeType":"YulIdentifier","src":"4399:3:81"},"nativeSrc":"4399:20:81","nodeType":"YulFunctionCall","src":"4399:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4389:6:81","nodeType":"YulIdentifier","src":"4389:6:81"},"nativeSrc":"4389:31:81","nodeType":"YulFunctionCall","src":"4389:31:81"},"nativeSrc":"4389:31:81","nodeType":"YulExpressionStatement","src":"4389:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4440:1:81","nodeType":"YulLiteral","src":"4440:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4443:4:81","nodeType":"YulLiteral","src":"4443:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4433:6:81","nodeType":"YulIdentifier","src":"4433:6:81"},"nativeSrc":"4433:15:81","nodeType":"YulFunctionCall","src":"4433:15:81"},"nativeSrc":"4433:15:81","nodeType":"YulExpressionStatement","src":"4433:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4468:1:81","nodeType":"YulLiteral","src":"4468:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4471:4:81","nodeType":"YulLiteral","src":"4471:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4461:6:81","nodeType":"YulIdentifier","src":"4461:6:81"},"nativeSrc":"4461:15:81","nodeType":"YulFunctionCall","src":"4461:15:81"},"nativeSrc":"4461:15:81","nodeType":"YulExpressionStatement","src":"4461:15:81"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"4359:1:81","nodeType":"YulIdentifier","src":"4359:1:81"},{"name":"sum","nativeSrc":"4362:3:81","nodeType":"YulIdentifier","src":"4362:3:81"}],"functionName":{"name":"gt","nativeSrc":"4356:2:81","nodeType":"YulIdentifier","src":"4356:2:81"},"nativeSrc":"4356:10:81","nodeType":"YulFunctionCall","src":"4356:10:81"},"nativeSrc":"4353:133:81","nodeType":"YulIf","src":"4353:133:81"}]},"name":"checked_add_t_uint256","nativeSrc":"4270:222:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4301:1:81","nodeType":"YulTypedName","src":"4301:1:81","type":""},{"name":"y","nativeSrc":"4304:1:81","nodeType":"YulTypedName","src":"4304:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"4310:3:81","nodeType":"YulTypedName","src":"4310:3:81","type":""}],"src":"4270:222:81"},{"body":{"nativeSrc":"4626:145:81","nodeType":"YulBlock","src":"4626:145:81","statements":[{"nativeSrc":"4636:26:81","nodeType":"YulAssignment","src":"4636:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4648:9:81","nodeType":"YulIdentifier","src":"4648:9:81"},{"kind":"number","nativeSrc":"4659:2:81","nodeType":"YulLiteral","src":"4659:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4644:3:81","nodeType":"YulIdentifier","src":"4644:3:81"},"nativeSrc":"4644:18:81","nodeType":"YulFunctionCall","src":"4644:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4636:4:81","nodeType":"YulIdentifier","src":"4636:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4678:9:81","nodeType":"YulIdentifier","src":"4678:9:81"},{"arguments":[{"name":"value0","nativeSrc":"4693:6:81","nodeType":"YulIdentifier","src":"4693:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4709:3:81","nodeType":"YulLiteral","src":"4709:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"4714:1:81","nodeType":"YulLiteral","src":"4714:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4705:3:81","nodeType":"YulIdentifier","src":"4705:3:81"},"nativeSrc":"4705:11:81","nodeType":"YulFunctionCall","src":"4705:11:81"},{"kind":"number","nativeSrc":"4718:1:81","nodeType":"YulLiteral","src":"4718:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4701:3:81","nodeType":"YulIdentifier","src":"4701:3:81"},"nativeSrc":"4701:19:81","nodeType":"YulFunctionCall","src":"4701:19:81"}],"functionName":{"name":"and","nativeSrc":"4689:3:81","nodeType":"YulIdentifier","src":"4689:3:81"},"nativeSrc":"4689:32:81","nodeType":"YulFunctionCall","src":"4689:32:81"}],"functionName":{"name":"mstore","nativeSrc":"4671:6:81","nodeType":"YulIdentifier","src":"4671:6:81"},"nativeSrc":"4671:51:81","nodeType":"YulFunctionCall","src":"4671:51:81"},"nativeSrc":"4671:51:81","nodeType":"YulExpressionStatement","src":"4671:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4742:9:81","nodeType":"YulIdentifier","src":"4742:9:81"},{"kind":"number","nativeSrc":"4753:2:81","nodeType":"YulLiteral","src":"4753:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4738:3:81","nodeType":"YulIdentifier","src":"4738:3:81"},"nativeSrc":"4738:18:81","nodeType":"YulFunctionCall","src":"4738:18:81"},{"name":"value1","nativeSrc":"4758:6:81","nodeType":"YulIdentifier","src":"4758:6:81"}],"functionName":{"name":"mstore","nativeSrc":"4731:6:81","nodeType":"YulIdentifier","src":"4731:6:81"},"nativeSrc":"4731:34:81","nodeType":"YulFunctionCall","src":"4731:34:81"},"nativeSrc":"4731:34:81","nodeType":"YulExpressionStatement","src":"4731:34:81"}]},"name":"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed","nativeSrc":"4497:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4587:9:81","nodeType":"YulTypedName","src":"4587:9:81","type":""},{"name":"value1","nativeSrc":"4598:6:81","nodeType":"YulTypedName","src":"4598:6:81","type":""},{"name":"value0","nativeSrc":"4606:6:81","nodeType":"YulTypedName","src":"4606:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4617:4:81","nodeType":"YulTypedName","src":"4617:4:81","type":""}],"src":"4497:274:81"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := 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_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\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        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\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 checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"4365":[{"length":32,"start":517}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b5060043610610127575f3560e01c806340c10f19116100a9578063a217fddf1161006e578063a217fddf146102ab578063a9059cbb146102b2578063d5391393146102c5578063d547741f146102ec578063dd62ed3e146102ff575f5ffd5b806340c10f191461024257806370a082311461025557806391d148541461027d57806395d89b41146102905780639dc29fac14610298575f5ffd5b8063248a9ca3116100ef578063248a9ca3146101a0578063282c51f3146101c25780632f2ff15d146101e9578063313ce567146101fe57806336568abe1461022f575f5ffd5b806301ffc9a71461012b57806306fdde0314610153578063095ea7b31461016857806318160ddd1461017b57806323b872dd1461018d575b5f5ffd5b61013e6101393660046109f6565b610337565b60405190151581526020015b60405180910390f35b61015b61036d565b60405161014a9190610a24565b61013e610176366004610a74565b6103fd565b6002545b60405190815260200161014a565b61013e61019b366004610a9c565b610414565b61017f6101ae366004610ad6565b5f9081526005602052604090206001015490565b61017f7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6101fc6101f7366004610aed565b610437565b005b60405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161014a565b6101fc61023d366004610aed565b610461565b6101fc610250366004610a74565b610499565b61017f610263366004610b17565b6001600160a01b03165f9081526020819052604090205490565b61013e61028b366004610aed565b6104cd565b61015b6104f7565b6101fc6102a6366004610a74565b610506565b61017f5f81565b61013e6102c0366004610a74565b61053a565b61017f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6101fc6102fa366004610aed565b610547565b61017f61030d366004610b30565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6001600160e01b03198216637965db0b60e01b148061036757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461037c90610b58565b80601f01602080910402602001604051908101604052809291908181526020018280546103a890610b58565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f3361040a81858561056b565b5060019392505050565b5f33610421858285610578565b61042c8585856105f3565b506001949350505050565b5f8281526005602052604090206001015461045181610650565b61045b838361065d565b50505050565b6001600160a01b038116331461048a5760405163334bd91960e11b815260040160405180910390fd5b61049482826106ee565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66104c381610650565b6104948383610759565b5f9182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461037c90610b58565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84861053081610650565b6104948383610791565b5f3361040a8185856105f3565b5f8281526005602052604090206001015461056181610650565b61045b83836106ee565b61049483838360016107c5565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981101561045b57818110156105e557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61045b84848484035f6107c5565b6001600160a01b03831661061c57604051634b637e8f60e11b81525f60048201526024016105dc565b6001600160a01b0382166106455760405163ec442f0560e01b81525f60048201526024016105dc565b610494838383610897565b61065a81336109bd565b50565b5f61066883836104cd565b6106e7575f8381526005602090815260408083206001600160a01b03861684529091529020805460ff1916600117905561069f3390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610367565b505f610367565b5f6106f983836104cd565b156106e7575f8381526005602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610367565b6001600160a01b0382166107825760405163ec442f0560e01b81525f60048201526024016105dc565b61078d5f8383610897565b5050565b6001600160a01b0382166107ba57604051634b637e8f60e11b81525f60048201526024016105dc565b61078d825f83610897565b6001600160a01b0384166107ee5760405163e602df0560e01b81525f60048201526024016105dc565b6001600160a01b03831661081757604051634a1406b160e11b81525f60048201526024016105dc565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561045b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161088991815260200190565b60405180910390a350505050565b6001600160a01b0383166108c1578060025f8282546108b69190610b90565b909155506109319050565b6001600160a01b0383165f90815260208190526040902054818110156109135760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105dc565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661094d5760028054829003905561096b565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109b091815260200190565b60405180910390a3505050565b6109c782826104cd565b61078d5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016105dc565b5f60208284031215610a06575f5ffd5b81356001600160e01b031981168114610a1d575f5ffd5b9392505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610a6f575f5ffd5b919050565b5f5f60408385031215610a85575f5ffd5b610a8e83610a59565b946020939093013593505050565b5f5f5f60608486031215610aae575f5ffd5b610ab784610a59565b9250610ac560208501610a59565b929592945050506040919091013590565b5f60208284031215610ae6575f5ffd5b5035919050565b5f5f60408385031215610afe575f5ffd5b82359150610b0e60208401610a59565b90509250929050565b5f60208284031215610b27575f5ffd5b610a1d82610a59565b5f5f60408385031215610b41575f5ffd5b610b4a83610a59565b9150610b0e60208401610a59565b600181811c90821680610b6c57607f821691505b602082108103610b8a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561036757634e487b7160e01b5f52601160045260245ffdfea2646970667358221220b27e525ecc8b88e4d9ed6137734504996ee2468468f226b1515d5c2d4d6c01c264736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x127 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x6E JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x2AB JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x2C5 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x2EC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x255 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x290 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x248A9CA3 GT PUSH2 0xEF JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0x282C51F3 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1FE JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x22F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x12B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17B JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x9F6 JUMP JUMPDEST PUSH2 0x337 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15B PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0xA24 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x176 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x3FD JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x13E PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0xA9C JUMP JUMPDEST PUSH2 0x414 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x1AE CALLDATASIZE PUSH1 0x4 PUSH2 0xAD6 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x17F PUSH32 0x3C11D16CBAFFD01DF69CE1C404F6340EE057498F5F00246190EA54220576A848 DUP2 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x437 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x14A JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x23D CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x461 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x250 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x499 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x263 CALLDATASIZE PUSH1 0x4 PUSH2 0xB17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x28B CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x15B PUSH2 0x4F7 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x2A6 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x506 JUMP JUMPDEST PUSH2 0x17F PUSH0 DUP2 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x2C0 CALLDATASIZE PUSH1 0x4 PUSH2 0xA74 JUMP JUMPDEST PUSH2 0x53A JUMP JUMPDEST PUSH2 0x17F PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x2FA CALLDATASIZE PUSH1 0x4 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x547 JUMP JUMPDEST PUSH2 0x17F PUSH2 0x30D CALLDATASIZE PUSH1 0x4 PUSH2 0xB30 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x7965DB0B PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x367 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0xB58 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0xB58 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3F3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3F3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3D6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x56B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x421 DUP6 DUP3 DUP6 PUSH2 0x578 JUMP JUMPDEST PUSH2 0x42C DUP6 DUP6 DUP6 PUSH2 0x5F3 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x451 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x45B DUP4 DUP4 PUSH2 0x65D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0x48A JUMPI PUSH1 0x40 MLOAD PUSH4 0x334BD919 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x494 DUP3 DUP3 PUSH2 0x6EE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0x4C3 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 PUSH2 0x759 JUMP JUMPDEST PUSH0 SWAP2 DUP3 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP5 MSTORE SWAP2 SWAP1 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0xB58 JUMP JUMPDEST PUSH32 0x3C11D16CBAFFD01DF69CE1C404F6340EE057498F5F00246190EA54220576A848 PUSH2 0x530 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 PUSH2 0x791 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x5F3 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x561 DUP2 PUSH2 0x650 JUMP JUMPDEST PUSH2 0x45B DUP4 DUP4 PUSH2 0x6EE JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x7C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0x45B JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x5E5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x45B DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x7C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x61C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x645 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH2 0x494 DUP4 DUP4 DUP4 PUSH2 0x897 JUMP JUMPDEST PUSH2 0x65A DUP2 CALLER PUSH2 0x9BD JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x668 DUP4 DUP4 PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x6E7 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE PUSH2 0x69F CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x367 JUMP JUMPDEST POP PUSH0 PUSH2 0x367 JUMP JUMPDEST PUSH0 PUSH2 0x6F9 DUP4 DUP4 PUSH2 0x4CD JUMP JUMPDEST ISZERO PUSH2 0x6E7 JUMPI PUSH0 DUP4 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE MLOAD CALLER SWAP3 DUP7 SWAP2 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B SWAP2 SWAP1 LOG4 POP PUSH1 0x1 PUSH2 0x367 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x782 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH2 0x78D PUSH0 DUP4 DUP4 PUSH2 0x897 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x7BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH2 0x78D DUP3 PUSH0 DUP4 PUSH2 0x897 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x7EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x817 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x45B JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x889 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x8C1 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x8B6 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x931 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x913 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x94D JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x96B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x9B0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x9C7 DUP3 DUP3 PUSH2 0x4CD JUMP JUMPDEST PUSH2 0x78D JUMPI PUSH1 0x40 MLOAD PUSH4 0xE2517D3F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x5DC JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xA1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA8E DUP4 PUSH2 0xA59 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xAAE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xAB7 DUP5 PUSH2 0xA59 JUMP JUMPDEST SWAP3 POP PUSH2 0xAC5 PUSH1 0x20 DUP6 ADD PUSH2 0xA59 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0xB0E PUSH1 0x20 DUP5 ADD PUSH2 0xA59 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB27 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xA1D DUP3 PUSH2 0xA59 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xB4A DUP4 PUSH2 0xA59 JUMP JUMPDEST SWAP2 POP PUSH2 0xB0E PUSH1 0x20 DUP5 ADD PUSH2 0xA59 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xB6C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xB8A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x367 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB2 PUSH31 0x525ECC8B88E4D9ED6137734504996EE2468468F226B1515D5C2D4D6C01C264 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"213:964:19:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565:202:27;;;;;;:::i;:::-;;:::i;:::-;;;470:14:81;;463:22;445:41;;433:2;418:18;2565:202:27;;;;;;;;1779:89:47;;;:::i;:::-;;;;;;;:::i;3998:186::-;;;;;;:::i;:::-;;:::i;2849:97::-;2927:12;;2849:97;;;1549:25:81;;;1537:2;1522:18;2849:97:47;1403:177:81;4776:244:47;;;;;;:::i;:::-;;:::i;3810:120:27:-;;;;;;:::i;:::-;3875:7;3901:12;;;:6;:12;;;;;:22;;;;3810:120;329:62:19;;367:24;329:62;;4226:136:27;;;;;;:::i;:::-;;:::i;:::-;;709:92:19;;;2854:4:81;787:9:19;2842:17:81;2824:36;;2812:2;2797:18;709:92:19;2682:184:81;5328:245:27;;;;;;:::i;:::-;;:::i;805:183:19:-;;;;;;:::i;:::-;;:::i;3004:116:47:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3095:18:47;3069:7;3095:18;;;;;;;;;;;;3004:116;2854:136:27;;;;;;:::i;:::-;;:::i;1981:93:47:-;;;:::i;992:183:19:-;;;;;;:::i;:::-;;:::i;2187:49:27:-;;2232:4;2187:49;;3315:178:47;;;;;;:::i;:::-;;:::i;263:62:19:-;;301:24;263:62;;4642:138:27;;;;;;:::i;:::-;;:::i;3551:140:47:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3657:18:47;;;3631:7;3657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3551:140;2565:202:27;2650:4;-1:-1:-1;;;;;;2673:47:27;;-1:-1:-1;;;2673:47:27;;:87;;-1:-1:-1;;;;;;;;;;862:40:65;;;2724:36:27;2666:94;2565:202;-1:-1:-1;;2565:202:27:o;1779:89:47:-;1824:13;1856:5;1849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1779:89;:::o;3998:186::-;4071:4;735:10:55;4125:31:47;735:10:55;4141:7:47;4150:5;4125:8;:31::i;:::-;-1:-1:-1;4173:4:47;;3998:186;-1:-1:-1;;;3998:186:47:o;4776:244::-;4863:4;735:10:55;4919:37:47;4935:4;735:10:55;4950:5:47;4919:15;:37::i;:::-;4966:26;4976:4;4982:2;4986:5;4966:9;:26::i;:::-;-1:-1:-1;5009:4:47;;4776:244;-1:-1:-1;;;;4776:244:47:o;4226:136:27:-;3875:7;3901:12;;;:6;:12;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4330:25:::1;4341:4;4347:7;4330:10;:25::i;:::-;;4226:136:::0;;;:::o;5328:245::-;-1:-1:-1;;;;;5421:34:27;;735:10:55;5421:34:27;5417:102;;5478:30;;-1:-1:-1;;;5478:30:27;;;;;;;;;;;5417:102;5529:37;5541:4;5547:18;5529:11;:37::i;:::-;;5328:245;;:::o;805:183:19:-;301:24;2464:16:27;2475:4;2464:10;:16::i;:::-;959:24:19::1;965:9;976:6;959:5;:24::i;2854:136:27:-:0;2931:4;2954:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;2954:29:27;;;;;;;;;;;;;;;2854:136::o;1981:93:47:-;2028:13;2060:7;2053:14;;;;;:::i;992:183:19:-;367:24;2464:16:27;2475:4;2464:10;:16::i;:::-;1146:24:19::1;1152:9;1163:6;1146:5;:24::i;3315:178:47:-:0;3384:4;735:10:55;3438:27:47;735:10:55;3455:2:47;3459:5;3438:9;:27::i;4642:138:27:-;3875:7;3901:12;;;:6;:12;;;;;:22;;;2464:16;2475:4;2464:10;:16::i;:::-;4747:26:::1;4759:4;4765:7;4747:11;:26::i;8726:128:47:-:0;8810:37;8819:5;8826:7;8835:5;8842:4;8810:8;:37::i;10415:476::-;-1:-1:-1;;;;;3657:18:47;;;10514:24;3657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10580:36:47;;10576:309;;;10655:5;10636:16;:24;10632:130;;;10687:60;;-1:-1:-1;;;10687:60:47;;-1:-1:-1;;;;;3932:32:81;;10687:60:47;;;3914:51:81;3981:18;;;3974:34;;;4024:18;;;4017:34;;;3887:18;;10687:60:47;;;;;;;;10632:130;10803:57;10812:5;10819:7;10847:5;10828:16;:24;10854:5;10803:8;:57::i;5393:300::-;-1:-1:-1;;;;;5476:18:47;;5472:86;;5517:30;;-1:-1:-1;;;5517:30:47;;5544:1;5517:30;;;4208:51:81;4181:18;;5517:30:47;4062:203:81;5472:86:47;-1:-1:-1;;;;;5571:16:47;;5567:86;;5610:32;;-1:-1:-1;;;5610:32:47;;5639:1;5610:32;;;4208:51:81;4181:18;;5610:32:47;4062:203:81;5567:86:47;5662:24;5670:4;5676:2;5680:5;5662:7;:24::i;3199:103:27:-;3265:30;3276:4;735:10:55;3265::27;:30::i;:::-;3199:103;:::o;6179:316::-;6256:4;6277:22;6285:4;6291:7;6277;:22::i;:::-;6272:217;;6315:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6315:29:27;;;;;;;;;:36;;-1:-1:-1;;6315:36:27;6347:4;6315:36;;;6397:12;735:10:55;;656:96;6397:12:27;-1:-1:-1;;;;;6370:40:27;6388:7;-1:-1:-1;;;;;6370:40:27;6382:4;6370:40;;;;;;;;;;-1:-1:-1;6431:4:27;6424:11;;6272:217;-1:-1:-1;6473:5:27;6466:12;;6730:317;6808:4;6828:22;6836:4;6842:7;6828;:22::i;:::-;6824:217;;;6898:5;6866:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6866:29:27;;;;;;;;;;:37;;-1:-1:-1;;6866:37:27;;;6922:40;735:10:55;;6866:12:27;;6922:40;;6898:5;6922:40;-1:-1:-1;6983:4:27;6976:11;;7458:208:47;-1:-1:-1;;;;;7528:21:47;;7524:91;;7572:32;;-1:-1:-1;;;7572:32:47;;7601:1;7572:32;;;4208:51:81;4181:18;;7572:32:47;4062:203:81;7524:91:47;7624:35;7640:1;7644:7;7653:5;7624:7;:35::i;:::-;7458:208;;:::o;7984:206::-;-1:-1:-1;;;;;8054:21:47;;8050:89;;8098:30;;-1:-1:-1;;;8098:30:47;;8125:1;8098:30;;;4208:51:81;4181:18;;8098:30:47;4062:203:81;8050:89:47;8148:35;8156:7;8173:1;8177:5;8148:7;:35::i;9701:432::-;-1:-1:-1;;;;;9813:19:47;;9809:89;;9855:32;;-1:-1:-1;;;9855:32:47;;9884:1;9855:32;;;4208:51:81;4181:18;;9855:32:47;4062:203:81;9809:89:47;-1:-1:-1;;;;;9911:21:47;;9907:90;;9955:31;;-1:-1:-1;;;9955:31:47;;9983:1;9955:31;;;4208:51:81;4181:18;;9955:31:47;4062:203:81;9907:90:47;-1:-1:-1;;;;;10006:18:47;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10051:76;;;;10101:7;-1:-1:-1;;;;;10085:31:47;10094:5;-1:-1:-1;;;;;10085:31:47;;10110:5;10085:31;;;;1549:25:81;;1537:2;1522:18;;1403:177;10085:31:47;;;;;;;;9701:432;;;;:::o;6008:1107::-;-1:-1:-1;;;;;6097:18:47;;6093:540;;6249:5;6233:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6093:540:47;;-1:-1:-1;6093:540:47;;-1:-1:-1;;;;;6307:15:47;;6285:19;6307:15;;;;;;;;;;;6340:19;;;6336:115;;;6386:50;;-1:-1:-1;;;6386:50:47;;-1:-1:-1;;;;;3932:32:81;;6386:50:47;;;3914:51:81;3981:18;;;3974:34;;;4024:18;;;4017:34;;;3887:18;;6386:50:47;3712:345:81;6336:115:47;-1:-1:-1;;;;;6571:15:47;;:9;:15;;;;;;;;;;6589:19;;;;6571:37;;6093:540;-1:-1:-1;;;;;6647:16:47;;6643:425;;6810:12;:21;;;;;;;6643:425;;;-1:-1:-1;;;;;7021:13:47;;:9;:13;;;;;;;;;;:22;;;;;;6643:425;7098:2;-1:-1:-1;;;;;7083:25:47;7092:4;-1:-1:-1;;;;;7083:25:47;;7102:5;7083:25;;;;1549::81;;1537:2;1522:18;;1403:177;7083:25:47;;;;;;;;6008:1107;;;:::o;3432:197:27:-;3520:22;3528:4;3534:7;3520;:22::i;:::-;3515:108;;3565:47;;-1:-1:-1;;;3565:47:27;;-1:-1:-1;;;;;4689:32:81;;3565:47:27;;;4671:51:81;4738:18;;;4731:34;;;4644:18;;3565:47:27;4497:274:81;14:286;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:81;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:81:o;497:418::-;646:2;635:9;628:21;609:4;678:6;672:13;721:6;716:2;705:9;701:18;694:34;780:6;775:2;767:6;763:15;758:2;747:9;743:18;737:50;836:1;831:2;822:6;811:9;807:22;803:31;796:42;906:2;899;895:7;890:2;882:6;878:15;874:29;863:9;859:45;855:54;847:62;;;497:418;;;;:::o;920:173::-;988:20;;-1:-1:-1;;;;;1037:31:81;;1027:42;;1017:70;;1083:1;1080;1073:12;1017:70;920:173;;;:::o;1098:300::-;1166:6;1174;1227:2;1215:9;1206:7;1202:23;1198:32;1195:52;;;1243:1;1240;1233:12;1195:52;1266:29;1285:9;1266:29;:::i;:::-;1256:39;1364:2;1349:18;;;;1336:32;;-1:-1:-1;;;1098:300:81:o;1585:374::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:52;;;1747:1;1744;1737:12;1699:52;1770:29;1789:9;1770:29;:::i;:::-;1760:39;;1818:38;1852:2;1841:9;1837:18;1818:38;:::i;:::-;1585:374;;1808:48;;-1:-1:-1;;;1925:2:81;1910:18;;;;1897:32;;1585:374::o;1964:226::-;2023:6;2076:2;2064:9;2055:7;2051:23;2047:32;2044:52;;;2092:1;2089;2082:12;2044:52;-1:-1:-1;2137:23:81;;1964:226;-1:-1:-1;1964:226:81:o;2377:300::-;2445:6;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2567:23;;;-1:-1:-1;2633:38:81;2667:2;2652:18;;2633:38;:::i;:::-;2623:48;;2377:300;;;;;:::o;2871:186::-;2930:6;2983:2;2971:9;2962:7;2958:23;2954:32;2951:52;;;2999:1;2996;2989:12;2951:52;3022:29;3041:9;3022:29;:::i;3062:260::-;3130:6;3138;3191:2;3179:9;3170:7;3166:23;3162:32;3159:52;;;3207:1;3204;3197:12;3159:52;3230:29;3249:9;3230:29;:::i;:::-;3220:39;;3278:38;3312:2;3301:9;3297:18;3278:38;:::i;3327:380::-;3406:1;3402:12;;;;3449;;;3470:61;;3524:4;3516:6;3512:17;3502:27;;3470:61;3577:2;3569:6;3566:14;3546:18;3543:38;3540:161;;3623:10;3618:3;3614:20;3611:1;3604:31;3658:4;3655:1;3648:15;3686:4;3683:1;3676:15;3540:161;;3327:380;;;:::o;4270:222::-;4335:9;;;4356:10;;;4353:133;;;4408:10;4403:3;4399:20;4396:1;4389:31;4443:4;4440:1;4433:15;4471:4;4468:1;4461:15"},"methodIdentifiers":{"BURNER_ROLE()":"282c51f3","DEFAULT_ADMIN_ROLE()":"a217fddf","MINTER_ROLE()":"d5391393","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(address,uint256)":"9dc29fac","decimals()":"313ce567","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","mint(address,uint256)":"40c10f19","name()":"06fdde03","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"initialSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"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\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"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\":[],\"name\":\"BURNER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"MINTER_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"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\":\"value\",\"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\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"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.\"},\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"},\"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\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/utils/contracts/TestCurrency.sol\":\"TestCurrency\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestCurrency.sol\":{\"keccak256\":\"0x896e72fd6b8b3e3996a01dac23d24d6f127531eb779aa30f4d94f37dc4a44165\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4f3236e39041de8f04ae4b5cee689b839a2f97f676c49d090e6d73b904ecac5a\",\"dweb:/ipfs/QmWtZDBDjRogsPmbDxnQnreRwtDC7FPZ2VExZWdxmFhrT9\"]},\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":10495,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":10501,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":10503,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":10505,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":10507,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"},{"astId":6798,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_roles","offset":0,"slot":"5","type":"t_mapping(t_bytes32,t_struct(RoleData)6793_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_bytes32,t_struct(RoleData)6793_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)6793_storage"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_struct(RoleData)6793_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":6790,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":6792,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/utils/contracts/TestERC4626.sol":{"TestERC4626":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC20Metadata","name":"asset_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"VaultIsBroken","type":"error"},{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"OVERRIDE_UNSET","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"broken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"assets","type":"int256"}],"name":"discreteEarning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"broken_","type":"bool"}],"name":"setBroken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TestERC4626.OverrideOption","name":"option","type":"uint8"},{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_10524":{"entryPoint":null,"id":10524,"parameterSlots":2,"returnSlots":0},"@_11153":{"entryPoint":null,"id":11153,"parameterSlots":1,"returnSlots":0},"@_4527":{"entryPoint":null,"id":4527,"parameterSlots":3,"returnSlots":0},"@_tryGetAssetDecimals_11220":{"entryPoint":171,"id":11220,"parameterSlots":1,"returnSlots":2},"abi_decode_string_fromMemory":{"entryPoint":405,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$11776_fromMemory":{"entryPoint":542,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":1052,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":1030,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":993,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":731,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":807,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":675,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":385,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:4858:81","nodeType":"YulBlock","src":"0:4858:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"46:95:81","nodeType":"YulBlock","src":"46:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:81","nodeType":"YulLiteral","src":"63:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:81","nodeType":"YulLiteral","src":"70:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:81","nodeType":"YulLiteral","src":"75:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:81","nodeType":"YulIdentifier","src":"66:3:81"},"nativeSrc":"66:20:81","nodeType":"YulFunctionCall","src":"66:20:81"}],"functionName":{"name":"mstore","nativeSrc":"56:6:81","nodeType":"YulIdentifier","src":"56:6:81"},"nativeSrc":"56:31:81","nodeType":"YulFunctionCall","src":"56:31:81"},"nativeSrc":"56:31:81","nodeType":"YulExpressionStatement","src":"56:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:81","nodeType":"YulLiteral","src":"103:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:81","nodeType":"YulLiteral","src":"106:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:81","nodeType":"YulIdentifier","src":"96:6:81"},"nativeSrc":"96:15:81","nodeType":"YulFunctionCall","src":"96:15:81"},"nativeSrc":"96:15:81","nodeType":"YulExpressionStatement","src":"96:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:81","nodeType":"YulLiteral","src":"127:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:81","nodeType":"YulLiteral","src":"130:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:81","nodeType":"YulIdentifier","src":"120:6:81"},"nativeSrc":"120:15:81","nodeType":"YulFunctionCall","src":"120:15:81"},"nativeSrc":"120:15:81","nodeType":"YulExpressionStatement","src":"120:15:81"}]},"name":"panic_error_0x41","nativeSrc":"14:127:81","nodeType":"YulFunctionDefinition","src":"14:127:81"},{"body":{"nativeSrc":"210:659:81","nodeType":"YulBlock","src":"210:659:81","statements":[{"body":{"nativeSrc":"259:16:81","nodeType":"YulBlock","src":"259:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:81","nodeType":"YulLiteral","src":"268:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:81","nodeType":"YulLiteral","src":"271:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:81","nodeType":"YulIdentifier","src":"261:6:81"},"nativeSrc":"261:12:81","nodeType":"YulFunctionCall","src":"261:12:81"},"nativeSrc":"261:12:81","nodeType":"YulExpressionStatement","src":"261:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:81","nodeType":"YulIdentifier","src":"238:6:81"},{"kind":"number","nativeSrc":"246:4:81","nodeType":"YulLiteral","src":"246:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:81","nodeType":"YulIdentifier","src":"234:3:81"},"nativeSrc":"234:17:81","nodeType":"YulFunctionCall","src":"234:17:81"},{"name":"end","nativeSrc":"253:3:81","nodeType":"YulIdentifier","src":"253:3:81"}],"functionName":{"name":"slt","nativeSrc":"230:3:81","nodeType":"YulIdentifier","src":"230:3:81"},"nativeSrc":"230:27:81","nodeType":"YulFunctionCall","src":"230:27:81"}],"functionName":{"name":"iszero","nativeSrc":"223:6:81","nodeType":"YulIdentifier","src":"223:6:81"},"nativeSrc":"223:35:81","nodeType":"YulFunctionCall","src":"223:35:81"},"nativeSrc":"220:55:81","nodeType":"YulIf","src":"220:55:81"},{"nativeSrc":"284:27:81","nodeType":"YulVariableDeclaration","src":"284:27:81","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:81","nodeType":"YulIdentifier","src":"304:6:81"}],"functionName":{"name":"mload","nativeSrc":"298:5:81","nodeType":"YulIdentifier","src":"298:5:81"},"nativeSrc":"298:13:81","nodeType":"YulFunctionCall","src":"298:13:81"},"variables":[{"name":"length","nativeSrc":"288:6:81","nodeType":"YulTypedName","src":"288:6:81","type":""}]},{"body":{"nativeSrc":"354:22:81","nodeType":"YulBlock","src":"354:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:81","nodeType":"YulIdentifier","src":"356:16:81"},"nativeSrc":"356:18:81","nodeType":"YulFunctionCall","src":"356:18:81"},"nativeSrc":"356:18:81","nodeType":"YulExpressionStatement","src":"356:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:81","nodeType":"YulIdentifier","src":"326:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:81","nodeType":"YulLiteral","src":"342:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:81","nodeType":"YulLiteral","src":"346:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:81","nodeType":"YulIdentifier","src":"338:3:81"},"nativeSrc":"338:10:81","nodeType":"YulFunctionCall","src":"338:10:81"},{"kind":"number","nativeSrc":"350:1:81","nodeType":"YulLiteral","src":"350:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:81","nodeType":"YulIdentifier","src":"334:3:81"},"nativeSrc":"334:18:81","nodeType":"YulFunctionCall","src":"334:18:81"}],"functionName":{"name":"gt","nativeSrc":"323:2:81","nodeType":"YulIdentifier","src":"323:2:81"},"nativeSrc":"323:30:81","nodeType":"YulFunctionCall","src":"323:30:81"},"nativeSrc":"320:56:81","nodeType":"YulIf","src":"320:56:81"},{"nativeSrc":"385:23:81","nodeType":"YulVariableDeclaration","src":"385:23:81","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:81","nodeType":"YulLiteral","src":"405:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:81","nodeType":"YulIdentifier","src":"399:5:81"},"nativeSrc":"399:9:81","nodeType":"YulFunctionCall","src":"399:9:81"},"variables":[{"name":"memPtr","nativeSrc":"389:6:81","nodeType":"YulTypedName","src":"389:6:81","type":""}]},{"nativeSrc":"417:85:81","nodeType":"YulVariableDeclaration","src":"417:85:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:81","nodeType":"YulIdentifier","src":"439:6:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:81","nodeType":"YulIdentifier","src":"463:6:81"},{"kind":"number","nativeSrc":"471:4:81","nodeType":"YulLiteral","src":"471:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:81","nodeType":"YulIdentifier","src":"459:3:81"},"nativeSrc":"459:17:81","nodeType":"YulFunctionCall","src":"459:17:81"},{"arguments":[{"kind":"number","nativeSrc":"482:2:81","nodeType":"YulLiteral","src":"482:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:81","nodeType":"YulIdentifier","src":"478:3:81"},"nativeSrc":"478:7:81","nodeType":"YulFunctionCall","src":"478:7:81"}],"functionName":{"name":"and","nativeSrc":"455:3:81","nodeType":"YulIdentifier","src":"455:3:81"},"nativeSrc":"455:31:81","nodeType":"YulFunctionCall","src":"455:31:81"},{"kind":"number","nativeSrc":"488:2:81","nodeType":"YulLiteral","src":"488:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:81","nodeType":"YulIdentifier","src":"451:3:81"},"nativeSrc":"451:40:81","nodeType":"YulFunctionCall","src":"451:40:81"},{"arguments":[{"kind":"number","nativeSrc":"497:2:81","nodeType":"YulLiteral","src":"497:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:81","nodeType":"YulIdentifier","src":"493:3:81"},"nativeSrc":"493:7:81","nodeType":"YulFunctionCall","src":"493:7:81"}],"functionName":{"name":"and","nativeSrc":"447:3:81","nodeType":"YulIdentifier","src":"447:3:81"},"nativeSrc":"447:54:81","nodeType":"YulFunctionCall","src":"447:54:81"}],"functionName":{"name":"add","nativeSrc":"435:3:81","nodeType":"YulIdentifier","src":"435:3:81"},"nativeSrc":"435:67:81","nodeType":"YulFunctionCall","src":"435:67:81"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:81","nodeType":"YulTypedName","src":"421:10:81","type":""}]},{"body":{"nativeSrc":"577:22:81","nodeType":"YulBlock","src":"577:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:81","nodeType":"YulIdentifier","src":"579:16:81"},"nativeSrc":"579:18:81","nodeType":"YulFunctionCall","src":"579:18:81"},"nativeSrc":"579:18:81","nodeType":"YulExpressionStatement","src":"579:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:81","nodeType":"YulIdentifier","src":"520:10:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:81","nodeType":"YulLiteral","src":"540:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:81","nodeType":"YulLiteral","src":"544:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:81","nodeType":"YulIdentifier","src":"536:3:81"},"nativeSrc":"536:10:81","nodeType":"YulFunctionCall","src":"536:10:81"},{"kind":"number","nativeSrc":"548:1:81","nodeType":"YulLiteral","src":"548:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:81","nodeType":"YulIdentifier","src":"532:3:81"},"nativeSrc":"532:18:81","nodeType":"YulFunctionCall","src":"532:18:81"}],"functionName":{"name":"gt","nativeSrc":"517:2:81","nodeType":"YulIdentifier","src":"517:2:81"},"nativeSrc":"517:34:81","nodeType":"YulFunctionCall","src":"517:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:81","nodeType":"YulIdentifier","src":"556:10:81"},{"name":"memPtr","nativeSrc":"568:6:81","nodeType":"YulIdentifier","src":"568:6:81"}],"functionName":{"name":"lt","nativeSrc":"553:2:81","nodeType":"YulIdentifier","src":"553:2:81"},"nativeSrc":"553:22:81","nodeType":"YulFunctionCall","src":"553:22:81"}],"functionName":{"name":"or","nativeSrc":"514:2:81","nodeType":"YulIdentifier","src":"514:2:81"},"nativeSrc":"514:62:81","nodeType":"YulFunctionCall","src":"514:62:81"},"nativeSrc":"511:88:81","nodeType":"YulIf","src":"511:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:81","nodeType":"YulLiteral","src":"615:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:81","nodeType":"YulIdentifier","src":"619:10:81"}],"functionName":{"name":"mstore","nativeSrc":"608:6:81","nodeType":"YulIdentifier","src":"608:6:81"},"nativeSrc":"608:22:81","nodeType":"YulFunctionCall","src":"608:22:81"},"nativeSrc":"608:22:81","nodeType":"YulExpressionStatement","src":"608:22:81"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:81","nodeType":"YulIdentifier","src":"646:6:81"},{"name":"length","nativeSrc":"654:6:81","nodeType":"YulIdentifier","src":"654:6:81"}],"functionName":{"name":"mstore","nativeSrc":"639:6:81","nodeType":"YulIdentifier","src":"639:6:81"},"nativeSrc":"639:22:81","nodeType":"YulFunctionCall","src":"639:22:81"},"nativeSrc":"639:22:81","nodeType":"YulExpressionStatement","src":"639:22:81"},{"body":{"nativeSrc":"713:16:81","nodeType":"YulBlock","src":"713:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:81","nodeType":"YulLiteral","src":"722:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:81","nodeType":"YulLiteral","src":"725:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:81","nodeType":"YulIdentifier","src":"715:6:81"},"nativeSrc":"715:12:81","nodeType":"YulFunctionCall","src":"715:12:81"},"nativeSrc":"715:12:81","nodeType":"YulExpressionStatement","src":"715:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:81","nodeType":"YulIdentifier","src":"684:6:81"},{"name":"length","nativeSrc":"692:6:81","nodeType":"YulIdentifier","src":"692:6:81"}],"functionName":{"name":"add","nativeSrc":"680:3:81","nodeType":"YulIdentifier","src":"680:3:81"},"nativeSrc":"680:19:81","nodeType":"YulFunctionCall","src":"680:19:81"},{"kind":"number","nativeSrc":"701:4:81","nodeType":"YulLiteral","src":"701:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:81","nodeType":"YulIdentifier","src":"676:3:81"},"nativeSrc":"676:30:81","nodeType":"YulFunctionCall","src":"676:30:81"},{"name":"end","nativeSrc":"708:3:81","nodeType":"YulIdentifier","src":"708:3:81"}],"functionName":{"name":"gt","nativeSrc":"673:2:81","nodeType":"YulIdentifier","src":"673:2:81"},"nativeSrc":"673:39:81","nodeType":"YulFunctionCall","src":"673:39:81"},"nativeSrc":"670:59:81","nodeType":"YulIf","src":"670:59:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:81","nodeType":"YulIdentifier","src":"748:6:81"},{"kind":"number","nativeSrc":"756:4:81","nodeType":"YulLiteral","src":"756:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:81","nodeType":"YulIdentifier","src":"744:3:81"},"nativeSrc":"744:17:81","nodeType":"YulFunctionCall","src":"744:17:81"},{"arguments":[{"name":"offset","nativeSrc":"767:6:81","nodeType":"YulIdentifier","src":"767:6:81"},{"kind":"number","nativeSrc":"775:4:81","nodeType":"YulLiteral","src":"775:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:81","nodeType":"YulIdentifier","src":"763:3:81"},"nativeSrc":"763:17:81","nodeType":"YulFunctionCall","src":"763:17:81"},{"name":"length","nativeSrc":"782:6:81","nodeType":"YulIdentifier","src":"782:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:81","nodeType":"YulIdentifier","src":"738:5:81"},"nativeSrc":"738:51:81","nodeType":"YulFunctionCall","src":"738:51:81"},"nativeSrc":"738:51:81","nodeType":"YulExpressionStatement","src":"738:51:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:81","nodeType":"YulIdentifier","src":"813:6:81"},{"name":"length","nativeSrc":"821:6:81","nodeType":"YulIdentifier","src":"821:6:81"}],"functionName":{"name":"add","nativeSrc":"809:3:81","nodeType":"YulIdentifier","src":"809:3:81"},"nativeSrc":"809:19:81","nodeType":"YulFunctionCall","src":"809:19:81"},{"kind":"number","nativeSrc":"830:4:81","nodeType":"YulLiteral","src":"830:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:81","nodeType":"YulIdentifier","src":"805:3:81"},"nativeSrc":"805:30:81","nodeType":"YulFunctionCall","src":"805:30:81"},{"kind":"number","nativeSrc":"837:1:81","nodeType":"YulLiteral","src":"837:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:81","nodeType":"YulIdentifier","src":"798:6:81"},"nativeSrc":"798:41:81","nodeType":"YulFunctionCall","src":"798:41:81"},"nativeSrc":"798:41:81","nodeType":"YulExpressionStatement","src":"798:41:81"},{"nativeSrc":"848:15:81","nodeType":"YulAssignment","src":"848:15:81","value":{"name":"memPtr","nativeSrc":"857:6:81","nodeType":"YulIdentifier","src":"857:6:81"},"variableNames":[{"name":"array","nativeSrc":"848:5:81","nodeType":"YulIdentifier","src":"848:5:81"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:81","nodeType":"YulTypedName","src":"184:6:81","type":""},{"name":"end","nativeSrc":"192:3:81","nodeType":"YulTypedName","src":"192:3:81","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:81","nodeType":"YulTypedName","src":"200:5:81","type":""}],"src":"146:723:81"},{"body":{"nativeSrc":"1033:589:81","nodeType":"YulBlock","src":"1033:589:81","statements":[{"body":{"nativeSrc":"1079:16:81","nodeType":"YulBlock","src":"1079:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1088:1:81","nodeType":"YulLiteral","src":"1088:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1091:1:81","nodeType":"YulLiteral","src":"1091:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1081:6:81","nodeType":"YulIdentifier","src":"1081:6:81"},"nativeSrc":"1081:12:81","nodeType":"YulFunctionCall","src":"1081:12:81"},"nativeSrc":"1081:12:81","nodeType":"YulExpressionStatement","src":"1081:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1054:7:81","nodeType":"YulIdentifier","src":"1054:7:81"},{"name":"headStart","nativeSrc":"1063:9:81","nodeType":"YulIdentifier","src":"1063:9:81"}],"functionName":{"name":"sub","nativeSrc":"1050:3:81","nodeType":"YulIdentifier","src":"1050:3:81"},"nativeSrc":"1050:23:81","nodeType":"YulFunctionCall","src":"1050:23:81"},{"kind":"number","nativeSrc":"1075:2:81","nodeType":"YulLiteral","src":"1075:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1046:3:81","nodeType":"YulIdentifier","src":"1046:3:81"},"nativeSrc":"1046:32:81","nodeType":"YulFunctionCall","src":"1046:32:81"},"nativeSrc":"1043:52:81","nodeType":"YulIf","src":"1043:52:81"},{"nativeSrc":"1104:30:81","nodeType":"YulVariableDeclaration","src":"1104:30:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1124:9:81","nodeType":"YulIdentifier","src":"1124:9:81"}],"functionName":{"name":"mload","nativeSrc":"1118:5:81","nodeType":"YulIdentifier","src":"1118:5:81"},"nativeSrc":"1118:16:81","nodeType":"YulFunctionCall","src":"1118:16:81"},"variables":[{"name":"offset","nativeSrc":"1108:6:81","nodeType":"YulTypedName","src":"1108:6:81","type":""}]},{"body":{"nativeSrc":"1177:16:81","nodeType":"YulBlock","src":"1177:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1186:1:81","nodeType":"YulLiteral","src":"1186:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1189:1:81","nodeType":"YulLiteral","src":"1189:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1179:6:81","nodeType":"YulIdentifier","src":"1179:6:81"},"nativeSrc":"1179:12:81","nodeType":"YulFunctionCall","src":"1179:12:81"},"nativeSrc":"1179:12:81","nodeType":"YulExpressionStatement","src":"1179:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1149:6:81","nodeType":"YulIdentifier","src":"1149:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1165:2:81","nodeType":"YulLiteral","src":"1165:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1169:1:81","nodeType":"YulLiteral","src":"1169:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1161:3:81","nodeType":"YulIdentifier","src":"1161:3:81"},"nativeSrc":"1161:10:81","nodeType":"YulFunctionCall","src":"1161:10:81"},{"kind":"number","nativeSrc":"1173:1:81","nodeType":"YulLiteral","src":"1173:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1157:3:81","nodeType":"YulIdentifier","src":"1157:3:81"},"nativeSrc":"1157:18:81","nodeType":"YulFunctionCall","src":"1157:18:81"}],"functionName":{"name":"gt","nativeSrc":"1146:2:81","nodeType":"YulIdentifier","src":"1146:2:81"},"nativeSrc":"1146:30:81","nodeType":"YulFunctionCall","src":"1146:30:81"},"nativeSrc":"1143:50:81","nodeType":"YulIf","src":"1143:50:81"},{"nativeSrc":"1202:71:81","nodeType":"YulAssignment","src":"1202:71:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1245:9:81","nodeType":"YulIdentifier","src":"1245:9:81"},{"name":"offset","nativeSrc":"1256:6:81","nodeType":"YulIdentifier","src":"1256:6:81"}],"functionName":{"name":"add","nativeSrc":"1241:3:81","nodeType":"YulIdentifier","src":"1241:3:81"},"nativeSrc":"1241:22:81","nodeType":"YulFunctionCall","src":"1241:22:81"},{"name":"dataEnd","nativeSrc":"1265:7:81","nodeType":"YulIdentifier","src":"1265:7:81"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1212:28:81","nodeType":"YulIdentifier","src":"1212:28:81"},"nativeSrc":"1212:61:81","nodeType":"YulFunctionCall","src":"1212:61:81"},"variableNames":[{"name":"value0","nativeSrc":"1202:6:81","nodeType":"YulIdentifier","src":"1202:6:81"}]},{"nativeSrc":"1282:41:81","nodeType":"YulVariableDeclaration","src":"1282:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1308:9:81","nodeType":"YulIdentifier","src":"1308:9:81"},{"kind":"number","nativeSrc":"1319:2:81","nodeType":"YulLiteral","src":"1319:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1304:3:81","nodeType":"YulIdentifier","src":"1304:3:81"},"nativeSrc":"1304:18:81","nodeType":"YulFunctionCall","src":"1304:18:81"}],"functionName":{"name":"mload","nativeSrc":"1298:5:81","nodeType":"YulIdentifier","src":"1298:5:81"},"nativeSrc":"1298:25:81","nodeType":"YulFunctionCall","src":"1298:25:81"},"variables":[{"name":"offset_1","nativeSrc":"1286:8:81","nodeType":"YulTypedName","src":"1286:8:81","type":""}]},{"body":{"nativeSrc":"1368:16:81","nodeType":"YulBlock","src":"1368:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1377:1:81","nodeType":"YulLiteral","src":"1377:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1380:1:81","nodeType":"YulLiteral","src":"1380:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1370:6:81","nodeType":"YulIdentifier","src":"1370:6:81"},"nativeSrc":"1370:12:81","nodeType":"YulFunctionCall","src":"1370:12:81"},"nativeSrc":"1370:12:81","nodeType":"YulExpressionStatement","src":"1370:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1338:8:81","nodeType":"YulIdentifier","src":"1338:8:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1356:2:81","nodeType":"YulLiteral","src":"1356:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1360:1:81","nodeType":"YulLiteral","src":"1360:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1352:3:81","nodeType":"YulIdentifier","src":"1352:3:81"},"nativeSrc":"1352:10:81","nodeType":"YulFunctionCall","src":"1352:10:81"},{"kind":"number","nativeSrc":"1364:1:81","nodeType":"YulLiteral","src":"1364:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1348:3:81","nodeType":"YulIdentifier","src":"1348:3:81"},"nativeSrc":"1348:18:81","nodeType":"YulFunctionCall","src":"1348:18:81"}],"functionName":{"name":"gt","nativeSrc":"1335:2:81","nodeType":"YulIdentifier","src":"1335:2:81"},"nativeSrc":"1335:32:81","nodeType":"YulFunctionCall","src":"1335:32:81"},"nativeSrc":"1332:52:81","nodeType":"YulIf","src":"1332:52:81"},{"nativeSrc":"1393:73:81","nodeType":"YulAssignment","src":"1393:73:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1436:9:81","nodeType":"YulIdentifier","src":"1436:9:81"},{"name":"offset_1","nativeSrc":"1447:8:81","nodeType":"YulIdentifier","src":"1447:8:81"}],"functionName":{"name":"add","nativeSrc":"1432:3:81","nodeType":"YulIdentifier","src":"1432:3:81"},"nativeSrc":"1432:24:81","nodeType":"YulFunctionCall","src":"1432:24:81"},{"name":"dataEnd","nativeSrc":"1458:7:81","nodeType":"YulIdentifier","src":"1458:7:81"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1403:28:81","nodeType":"YulIdentifier","src":"1403:28:81"},"nativeSrc":"1403:63:81","nodeType":"YulFunctionCall","src":"1403:63:81"},"variableNames":[{"name":"value1","nativeSrc":"1393:6:81","nodeType":"YulIdentifier","src":"1393:6:81"}]},{"nativeSrc":"1475:38:81","nodeType":"YulVariableDeclaration","src":"1475:38:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1498:9:81","nodeType":"YulIdentifier","src":"1498:9:81"},{"kind":"number","nativeSrc":"1509:2:81","nodeType":"YulLiteral","src":"1509:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1494:3:81","nodeType":"YulIdentifier","src":"1494:3:81"},"nativeSrc":"1494:18:81","nodeType":"YulFunctionCall","src":"1494:18:81"}],"functionName":{"name":"mload","nativeSrc":"1488:5:81","nodeType":"YulIdentifier","src":"1488:5:81"},"nativeSrc":"1488:25:81","nodeType":"YulFunctionCall","src":"1488:25:81"},"variables":[{"name":"value","nativeSrc":"1479:5:81","nodeType":"YulTypedName","src":"1479:5:81","type":""}]},{"body":{"nativeSrc":"1576:16:81","nodeType":"YulBlock","src":"1576:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1585:1:81","nodeType":"YulLiteral","src":"1585:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1588:1:81","nodeType":"YulLiteral","src":"1588:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1578:6:81","nodeType":"YulIdentifier","src":"1578:6:81"},"nativeSrc":"1578:12:81","nodeType":"YulFunctionCall","src":"1578:12:81"},"nativeSrc":"1578:12:81","nodeType":"YulExpressionStatement","src":"1578:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1535:5:81","nodeType":"YulIdentifier","src":"1535:5:81"},{"arguments":[{"name":"value","nativeSrc":"1546:5:81","nodeType":"YulIdentifier","src":"1546:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1561:3:81","nodeType":"YulLiteral","src":"1561:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1566:1:81","nodeType":"YulLiteral","src":"1566:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1557:3:81","nodeType":"YulIdentifier","src":"1557:3:81"},"nativeSrc":"1557:11:81","nodeType":"YulFunctionCall","src":"1557:11:81"},{"kind":"number","nativeSrc":"1570:1:81","nodeType":"YulLiteral","src":"1570:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1553:3:81","nodeType":"YulIdentifier","src":"1553:3:81"},"nativeSrc":"1553:19:81","nodeType":"YulFunctionCall","src":"1553:19:81"}],"functionName":{"name":"and","nativeSrc":"1542:3:81","nodeType":"YulIdentifier","src":"1542:3:81"},"nativeSrc":"1542:31:81","nodeType":"YulFunctionCall","src":"1542:31:81"}],"functionName":{"name":"eq","nativeSrc":"1532:2:81","nodeType":"YulIdentifier","src":"1532:2:81"},"nativeSrc":"1532:42:81","nodeType":"YulFunctionCall","src":"1532:42:81"}],"functionName":{"name":"iszero","nativeSrc":"1525:6:81","nodeType":"YulIdentifier","src":"1525:6:81"},"nativeSrc":"1525:50:81","nodeType":"YulFunctionCall","src":"1525:50:81"},"nativeSrc":"1522:70:81","nodeType":"YulIf","src":"1522:70:81"},{"nativeSrc":"1601:15:81","nodeType":"YulAssignment","src":"1601:15:81","value":{"name":"value","nativeSrc":"1611:5:81","nodeType":"YulIdentifier","src":"1611:5:81"},"variableNames":[{"name":"value2","nativeSrc":"1601:6:81","nodeType":"YulIdentifier","src":"1601:6:81"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$11776_fromMemory","nativeSrc":"874:748:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"983:9:81","nodeType":"YulTypedName","src":"983:9:81","type":""},{"name":"dataEnd","nativeSrc":"994:7:81","nodeType":"YulTypedName","src":"994:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1006:6:81","nodeType":"YulTypedName","src":"1006:6:81","type":""},{"name":"value1","nativeSrc":"1014:6:81","nodeType":"YulTypedName","src":"1014:6:81","type":""},{"name":"value2","nativeSrc":"1022:6:81","nodeType":"YulTypedName","src":"1022:6:81","type":""}],"src":"874:748:81"},{"body":{"nativeSrc":"1682:325:81","nodeType":"YulBlock","src":"1682:325:81","statements":[{"nativeSrc":"1692:22:81","nodeType":"YulAssignment","src":"1692:22:81","value":{"arguments":[{"kind":"number","nativeSrc":"1706:1:81","nodeType":"YulLiteral","src":"1706:1:81","type":"","value":"1"},{"name":"data","nativeSrc":"1709:4:81","nodeType":"YulIdentifier","src":"1709:4:81"}],"functionName":{"name":"shr","nativeSrc":"1702:3:81","nodeType":"YulIdentifier","src":"1702:3:81"},"nativeSrc":"1702:12:81","nodeType":"YulFunctionCall","src":"1702:12:81"},"variableNames":[{"name":"length","nativeSrc":"1692:6:81","nodeType":"YulIdentifier","src":"1692:6:81"}]},{"nativeSrc":"1723:38:81","nodeType":"YulVariableDeclaration","src":"1723:38:81","value":{"arguments":[{"name":"data","nativeSrc":"1753:4:81","nodeType":"YulIdentifier","src":"1753:4:81"},{"kind":"number","nativeSrc":"1759:1:81","nodeType":"YulLiteral","src":"1759:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1749:3:81","nodeType":"YulIdentifier","src":"1749:3:81"},"nativeSrc":"1749:12:81","nodeType":"YulFunctionCall","src":"1749:12:81"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1727:18:81","nodeType":"YulTypedName","src":"1727:18:81","type":""}]},{"body":{"nativeSrc":"1800:31:81","nodeType":"YulBlock","src":"1800:31:81","statements":[{"nativeSrc":"1802:27:81","nodeType":"YulAssignment","src":"1802:27:81","value":{"arguments":[{"name":"length","nativeSrc":"1816:6:81","nodeType":"YulIdentifier","src":"1816:6:81"},{"kind":"number","nativeSrc":"1824:4:81","nodeType":"YulLiteral","src":"1824:4:81","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1812:3:81","nodeType":"YulIdentifier","src":"1812:3:81"},"nativeSrc":"1812:17:81","nodeType":"YulFunctionCall","src":"1812:17:81"},"variableNames":[{"name":"length","nativeSrc":"1802:6:81","nodeType":"YulIdentifier","src":"1802:6:81"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1780:18:81","nodeType":"YulIdentifier","src":"1780:18:81"}],"functionName":{"name":"iszero","nativeSrc":"1773:6:81","nodeType":"YulIdentifier","src":"1773:6:81"},"nativeSrc":"1773:26:81","nodeType":"YulFunctionCall","src":"1773:26:81"},"nativeSrc":"1770:61:81","nodeType":"YulIf","src":"1770:61:81"},{"body":{"nativeSrc":"1890:111:81","nodeType":"YulBlock","src":"1890:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1911:1:81","nodeType":"YulLiteral","src":"1911:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1918:3:81","nodeType":"YulLiteral","src":"1918:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1923:10:81","nodeType":"YulLiteral","src":"1923:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1914:3:81","nodeType":"YulIdentifier","src":"1914:3:81"},"nativeSrc":"1914:20:81","nodeType":"YulFunctionCall","src":"1914:20:81"}],"functionName":{"name":"mstore","nativeSrc":"1904:6:81","nodeType":"YulIdentifier","src":"1904:6:81"},"nativeSrc":"1904:31:81","nodeType":"YulFunctionCall","src":"1904:31:81"},"nativeSrc":"1904:31:81","nodeType":"YulExpressionStatement","src":"1904:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1955:1:81","nodeType":"YulLiteral","src":"1955:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"1958:4:81","nodeType":"YulLiteral","src":"1958:4:81","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"1948:6:81","nodeType":"YulIdentifier","src":"1948:6:81"},"nativeSrc":"1948:15:81","nodeType":"YulFunctionCall","src":"1948:15:81"},"nativeSrc":"1948:15:81","nodeType":"YulExpressionStatement","src":"1948:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1983:1:81","nodeType":"YulLiteral","src":"1983:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1986:4:81","nodeType":"YulLiteral","src":"1986:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1976:6:81","nodeType":"YulIdentifier","src":"1976:6:81"},"nativeSrc":"1976:15:81","nodeType":"YulFunctionCall","src":"1976:15:81"},"nativeSrc":"1976:15:81","nodeType":"YulExpressionStatement","src":"1976:15:81"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1846:18:81","nodeType":"YulIdentifier","src":"1846:18:81"},{"arguments":[{"name":"length","nativeSrc":"1869:6:81","nodeType":"YulIdentifier","src":"1869:6:81"},{"kind":"number","nativeSrc":"1877:2:81","nodeType":"YulLiteral","src":"1877:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1866:2:81","nodeType":"YulIdentifier","src":"1866:2:81"},"nativeSrc":"1866:14:81","nodeType":"YulFunctionCall","src":"1866:14:81"}],"functionName":{"name":"eq","nativeSrc":"1843:2:81","nodeType":"YulIdentifier","src":"1843:2:81"},"nativeSrc":"1843:38:81","nodeType":"YulFunctionCall","src":"1843:38:81"},"nativeSrc":"1840:161:81","nodeType":"YulIf","src":"1840:161:81"}]},"name":"extract_byte_array_length","nativeSrc":"1627:380:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1662:4:81","nodeType":"YulTypedName","src":"1662:4:81","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1671:6:81","nodeType":"YulTypedName","src":"1671:6:81","type":""}],"src":"1627:380:81"},{"body":{"nativeSrc":"2068:65:81","nodeType":"YulBlock","src":"2068:65:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2085:1:81","nodeType":"YulLiteral","src":"2085:1:81","type":"","value":"0"},{"name":"ptr","nativeSrc":"2088:3:81","nodeType":"YulIdentifier","src":"2088:3:81"}],"functionName":{"name":"mstore","nativeSrc":"2078:6:81","nodeType":"YulIdentifier","src":"2078:6:81"},"nativeSrc":"2078:14:81","nodeType":"YulFunctionCall","src":"2078:14:81"},"nativeSrc":"2078:14:81","nodeType":"YulExpressionStatement","src":"2078:14:81"},{"nativeSrc":"2101:26:81","nodeType":"YulAssignment","src":"2101:26:81","value":{"arguments":[{"kind":"number","nativeSrc":"2119:1:81","nodeType":"YulLiteral","src":"2119:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2122:4:81","nodeType":"YulLiteral","src":"2122:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2109:9:81","nodeType":"YulIdentifier","src":"2109:9:81"},"nativeSrc":"2109:18:81","nodeType":"YulFunctionCall","src":"2109:18:81"},"variableNames":[{"name":"data","nativeSrc":"2101:4:81","nodeType":"YulIdentifier","src":"2101:4:81"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2012:121:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2051:3:81","nodeType":"YulTypedName","src":"2051:3:81","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2059:4:81","nodeType":"YulTypedName","src":"2059:4:81","type":""}],"src":"2012:121:81"},{"body":{"nativeSrc":"2219:437:81","nodeType":"YulBlock","src":"2219:437:81","statements":[{"body":{"nativeSrc":"2252:398:81","nodeType":"YulBlock","src":"2252:398:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2273:1:81","nodeType":"YulLiteral","src":"2273:1:81","type":"","value":"0"},{"name":"array","nativeSrc":"2276:5:81","nodeType":"YulIdentifier","src":"2276:5:81"}],"functionName":{"name":"mstore","nativeSrc":"2266:6:81","nodeType":"YulIdentifier","src":"2266:6:81"},"nativeSrc":"2266:16:81","nodeType":"YulFunctionCall","src":"2266:16:81"},"nativeSrc":"2266:16:81","nodeType":"YulExpressionStatement","src":"2266:16:81"},{"nativeSrc":"2295:30:81","nodeType":"YulVariableDeclaration","src":"2295:30:81","value":{"arguments":[{"kind":"number","nativeSrc":"2317:1:81","nodeType":"YulLiteral","src":"2317:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2320:4:81","nodeType":"YulLiteral","src":"2320:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2307:9:81","nodeType":"YulIdentifier","src":"2307:9:81"},"nativeSrc":"2307:18:81","nodeType":"YulFunctionCall","src":"2307:18:81"},"variables":[{"name":"data","nativeSrc":"2299:4:81","nodeType":"YulTypedName","src":"2299:4:81","type":""}]},{"nativeSrc":"2338:57:81","nodeType":"YulVariableDeclaration","src":"2338:57:81","value":{"arguments":[{"name":"data","nativeSrc":"2361:4:81","nodeType":"YulIdentifier","src":"2361:4:81"},{"arguments":[{"kind":"number","nativeSrc":"2371:1:81","nodeType":"YulLiteral","src":"2371:1:81","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2378:10:81","nodeType":"YulIdentifier","src":"2378:10:81"},{"kind":"number","nativeSrc":"2390:2:81","nodeType":"YulLiteral","src":"2390:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2374:3:81","nodeType":"YulIdentifier","src":"2374:3:81"},"nativeSrc":"2374:19:81","nodeType":"YulFunctionCall","src":"2374:19:81"}],"functionName":{"name":"shr","nativeSrc":"2367:3:81","nodeType":"YulIdentifier","src":"2367:3:81"},"nativeSrc":"2367:27:81","nodeType":"YulFunctionCall","src":"2367:27:81"}],"functionName":{"name":"add","nativeSrc":"2357:3:81","nodeType":"YulIdentifier","src":"2357:3:81"},"nativeSrc":"2357:38:81","nodeType":"YulFunctionCall","src":"2357:38:81"},"variables":[{"name":"deleteStart","nativeSrc":"2342:11:81","nodeType":"YulTypedName","src":"2342:11:81","type":""}]},{"body":{"nativeSrc":"2432:23:81","nodeType":"YulBlock","src":"2432:23:81","statements":[{"nativeSrc":"2434:19:81","nodeType":"YulAssignment","src":"2434:19:81","value":{"name":"data","nativeSrc":"2449:4:81","nodeType":"YulIdentifier","src":"2449:4:81"},"variableNames":[{"name":"deleteStart","nativeSrc":"2434:11:81","nodeType":"YulIdentifier","src":"2434:11:81"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2414:10:81","nodeType":"YulIdentifier","src":"2414:10:81"},{"kind":"number","nativeSrc":"2426:4:81","nodeType":"YulLiteral","src":"2426:4:81","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2411:2:81","nodeType":"YulIdentifier","src":"2411:2:81"},"nativeSrc":"2411:20:81","nodeType":"YulFunctionCall","src":"2411:20:81"},"nativeSrc":"2408:47:81","nodeType":"YulIf","src":"2408:47:81"},{"nativeSrc":"2468:41:81","nodeType":"YulVariableDeclaration","src":"2468:41:81","value":{"arguments":[{"name":"data","nativeSrc":"2482:4:81","nodeType":"YulIdentifier","src":"2482:4:81"},{"arguments":[{"kind":"number","nativeSrc":"2492:1:81","nodeType":"YulLiteral","src":"2492:1:81","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2499:3:81","nodeType":"YulIdentifier","src":"2499:3:81"},{"kind":"number","nativeSrc":"2504:2:81","nodeType":"YulLiteral","src":"2504:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2495:3:81","nodeType":"YulIdentifier","src":"2495:3:81"},"nativeSrc":"2495:12:81","nodeType":"YulFunctionCall","src":"2495:12:81"}],"functionName":{"name":"shr","nativeSrc":"2488:3:81","nodeType":"YulIdentifier","src":"2488:3:81"},"nativeSrc":"2488:20:81","nodeType":"YulFunctionCall","src":"2488:20:81"}],"functionName":{"name":"add","nativeSrc":"2478:3:81","nodeType":"YulIdentifier","src":"2478:3:81"},"nativeSrc":"2478:31:81","nodeType":"YulFunctionCall","src":"2478:31:81"},"variables":[{"name":"_1","nativeSrc":"2472:2:81","nodeType":"YulTypedName","src":"2472:2:81","type":""}]},{"nativeSrc":"2522:24:81","nodeType":"YulVariableDeclaration","src":"2522:24:81","value":{"name":"deleteStart","nativeSrc":"2535:11:81","nodeType":"YulIdentifier","src":"2535:11:81"},"variables":[{"name":"start","nativeSrc":"2526:5:81","nodeType":"YulTypedName","src":"2526:5:81","type":""}]},{"body":{"nativeSrc":"2620:20:81","nodeType":"YulBlock","src":"2620:20:81","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2629:5:81","nodeType":"YulIdentifier","src":"2629:5:81"},{"kind":"number","nativeSrc":"2636:1:81","nodeType":"YulLiteral","src":"2636:1:81","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2622:6:81","nodeType":"YulIdentifier","src":"2622:6:81"},"nativeSrc":"2622:16:81","nodeType":"YulFunctionCall","src":"2622:16:81"},"nativeSrc":"2622:16:81","nodeType":"YulExpressionStatement","src":"2622:16:81"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2570:5:81","nodeType":"YulIdentifier","src":"2570:5:81"},{"name":"_1","nativeSrc":"2577:2:81","nodeType":"YulIdentifier","src":"2577:2:81"}],"functionName":{"name":"lt","nativeSrc":"2567:2:81","nodeType":"YulIdentifier","src":"2567:2:81"},"nativeSrc":"2567:13:81","nodeType":"YulFunctionCall","src":"2567:13:81"},"nativeSrc":"2559:81:81","nodeType":"YulForLoop","post":{"nativeSrc":"2581:26:81","nodeType":"YulBlock","src":"2581:26:81","statements":[{"nativeSrc":"2583:22:81","nodeType":"YulAssignment","src":"2583:22:81","value":{"arguments":[{"name":"start","nativeSrc":"2596:5:81","nodeType":"YulIdentifier","src":"2596:5:81"},{"kind":"number","nativeSrc":"2603:1:81","nodeType":"YulLiteral","src":"2603:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2592:3:81","nodeType":"YulIdentifier","src":"2592:3:81"},"nativeSrc":"2592:13:81","nodeType":"YulFunctionCall","src":"2592:13:81"},"variableNames":[{"name":"start","nativeSrc":"2583:5:81","nodeType":"YulIdentifier","src":"2583:5:81"}]}]},"pre":{"nativeSrc":"2563:3:81","nodeType":"YulBlock","src":"2563:3:81","statements":[]},"src":"2559:81:81"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2235:3:81","nodeType":"YulIdentifier","src":"2235:3:81"},{"kind":"number","nativeSrc":"2240:2:81","nodeType":"YulLiteral","src":"2240:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2232:2:81","nodeType":"YulIdentifier","src":"2232:2:81"},"nativeSrc":"2232:11:81","nodeType":"YulFunctionCall","src":"2232:11:81"},"nativeSrc":"2229:421:81","nodeType":"YulIf","src":"2229:421:81"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2138:518:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2191:5:81","nodeType":"YulTypedName","src":"2191:5:81","type":""},{"name":"len","nativeSrc":"2198:3:81","nodeType":"YulTypedName","src":"2198:3:81","type":""},{"name":"startIndex","nativeSrc":"2203:10:81","nodeType":"YulTypedName","src":"2203:10:81","type":""}],"src":"2138:518:81"},{"body":{"nativeSrc":"2746:81:81","nodeType":"YulBlock","src":"2746:81:81","statements":[{"nativeSrc":"2756:65:81","nodeType":"YulAssignment","src":"2756:65:81","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2771:4:81","nodeType":"YulIdentifier","src":"2771:4:81"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2789:1:81","nodeType":"YulLiteral","src":"2789:1:81","type":"","value":"3"},{"name":"len","nativeSrc":"2792:3:81","nodeType":"YulIdentifier","src":"2792:3:81"}],"functionName":{"name":"shl","nativeSrc":"2785:3:81","nodeType":"YulIdentifier","src":"2785:3:81"},"nativeSrc":"2785:11:81","nodeType":"YulFunctionCall","src":"2785:11:81"},{"arguments":[{"kind":"number","nativeSrc":"2802:1:81","nodeType":"YulLiteral","src":"2802:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2798:3:81","nodeType":"YulIdentifier","src":"2798:3:81"},"nativeSrc":"2798:6:81","nodeType":"YulFunctionCall","src":"2798:6:81"}],"functionName":{"name":"shr","nativeSrc":"2781:3:81","nodeType":"YulIdentifier","src":"2781:3:81"},"nativeSrc":"2781:24:81","nodeType":"YulFunctionCall","src":"2781:24:81"}],"functionName":{"name":"not","nativeSrc":"2777:3:81","nodeType":"YulIdentifier","src":"2777:3:81"},"nativeSrc":"2777:29:81","nodeType":"YulFunctionCall","src":"2777:29:81"}],"functionName":{"name":"and","nativeSrc":"2767:3:81","nodeType":"YulIdentifier","src":"2767:3:81"},"nativeSrc":"2767:40:81","nodeType":"YulFunctionCall","src":"2767:40:81"},{"arguments":[{"kind":"number","nativeSrc":"2813:1:81","nodeType":"YulLiteral","src":"2813:1:81","type":"","value":"1"},{"name":"len","nativeSrc":"2816:3:81","nodeType":"YulIdentifier","src":"2816:3:81"}],"functionName":{"name":"shl","nativeSrc":"2809:3:81","nodeType":"YulIdentifier","src":"2809:3:81"},"nativeSrc":"2809:11:81","nodeType":"YulFunctionCall","src":"2809:11:81"}],"functionName":{"name":"or","nativeSrc":"2764:2:81","nodeType":"YulIdentifier","src":"2764:2:81"},"nativeSrc":"2764:57:81","nodeType":"YulFunctionCall","src":"2764:57:81"},"variableNames":[{"name":"used","nativeSrc":"2756:4:81","nodeType":"YulIdentifier","src":"2756:4:81"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2661:166:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2723:4:81","nodeType":"YulTypedName","src":"2723:4:81","type":""},{"name":"len","nativeSrc":"2729:3:81","nodeType":"YulTypedName","src":"2729:3:81","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2737:4:81","nodeType":"YulTypedName","src":"2737:4:81","type":""}],"src":"2661:166:81"},{"body":{"nativeSrc":"2928:1203:81","nodeType":"YulBlock","src":"2928:1203:81","statements":[{"nativeSrc":"2938:24:81","nodeType":"YulVariableDeclaration","src":"2938:24:81","value":{"arguments":[{"name":"src","nativeSrc":"2958:3:81","nodeType":"YulIdentifier","src":"2958:3:81"}],"functionName":{"name":"mload","nativeSrc":"2952:5:81","nodeType":"YulIdentifier","src":"2952:5:81"},"nativeSrc":"2952:10:81","nodeType":"YulFunctionCall","src":"2952:10:81"},"variables":[{"name":"newLen","nativeSrc":"2942:6:81","nodeType":"YulTypedName","src":"2942:6:81","type":""}]},{"body":{"nativeSrc":"3005:22:81","nodeType":"YulBlock","src":"3005:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3007:16:81","nodeType":"YulIdentifier","src":"3007:16:81"},"nativeSrc":"3007:18:81","nodeType":"YulFunctionCall","src":"3007:18:81"},"nativeSrc":"3007:18:81","nodeType":"YulExpressionStatement","src":"3007:18:81"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"2977:6:81","nodeType":"YulIdentifier","src":"2977:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2993:2:81","nodeType":"YulLiteral","src":"2993:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"2997:1:81","nodeType":"YulLiteral","src":"2997:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2989:3:81","nodeType":"YulIdentifier","src":"2989:3:81"},"nativeSrc":"2989:10:81","nodeType":"YulFunctionCall","src":"2989:10:81"},{"kind":"number","nativeSrc":"3001:1:81","nodeType":"YulLiteral","src":"3001:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2985:3:81","nodeType":"YulIdentifier","src":"2985:3:81"},"nativeSrc":"2985:18:81","nodeType":"YulFunctionCall","src":"2985:18:81"}],"functionName":{"name":"gt","nativeSrc":"2974:2:81","nodeType":"YulIdentifier","src":"2974:2:81"},"nativeSrc":"2974:30:81","nodeType":"YulFunctionCall","src":"2974:30:81"},"nativeSrc":"2971:56:81","nodeType":"YulIf","src":"2971:56:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3080:4:81","nodeType":"YulIdentifier","src":"3080:4:81"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3118:4:81","nodeType":"YulIdentifier","src":"3118:4:81"}],"functionName":{"name":"sload","nativeSrc":"3112:5:81","nodeType":"YulIdentifier","src":"3112:5:81"},"nativeSrc":"3112:11:81","nodeType":"YulFunctionCall","src":"3112:11:81"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3086:25:81","nodeType":"YulIdentifier","src":"3086:25:81"},"nativeSrc":"3086:38:81","nodeType":"YulFunctionCall","src":"3086:38:81"},{"name":"newLen","nativeSrc":"3126:6:81","nodeType":"YulIdentifier","src":"3126:6:81"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3036:43:81","nodeType":"YulIdentifier","src":"3036:43:81"},"nativeSrc":"3036:97:81","nodeType":"YulFunctionCall","src":"3036:97:81"},"nativeSrc":"3036:97:81","nodeType":"YulExpressionStatement","src":"3036:97:81"},{"nativeSrc":"3142:18:81","nodeType":"YulVariableDeclaration","src":"3142:18:81","value":{"kind":"number","nativeSrc":"3159:1:81","nodeType":"YulLiteral","src":"3159:1:81","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3146:9:81","nodeType":"YulTypedName","src":"3146:9:81","type":""}]},{"nativeSrc":"3169:17:81","nodeType":"YulAssignment","src":"3169:17:81","value":{"kind":"number","nativeSrc":"3182:4:81","nodeType":"YulLiteral","src":"3182:4:81","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3169:9:81","nodeType":"YulIdentifier","src":"3169:9:81"}]},{"cases":[{"body":{"nativeSrc":"3232:642:81","nodeType":"YulBlock","src":"3232:642:81","statements":[{"nativeSrc":"3246:35:81","nodeType":"YulVariableDeclaration","src":"3246:35:81","value":{"arguments":[{"name":"newLen","nativeSrc":"3265:6:81","nodeType":"YulIdentifier","src":"3265:6:81"},{"arguments":[{"kind":"number","nativeSrc":"3277:2:81","nodeType":"YulLiteral","src":"3277:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3273:3:81","nodeType":"YulIdentifier","src":"3273:3:81"},"nativeSrc":"3273:7:81","nodeType":"YulFunctionCall","src":"3273:7:81"}],"functionName":{"name":"and","nativeSrc":"3261:3:81","nodeType":"YulIdentifier","src":"3261:3:81"},"nativeSrc":"3261:20:81","nodeType":"YulFunctionCall","src":"3261:20:81"},"variables":[{"name":"loopEnd","nativeSrc":"3250:7:81","nodeType":"YulTypedName","src":"3250:7:81","type":""}]},{"nativeSrc":"3294:49:81","nodeType":"YulVariableDeclaration","src":"3294:49:81","value":{"arguments":[{"name":"slot","nativeSrc":"3338:4:81","nodeType":"YulIdentifier","src":"3338:4:81"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3308:29:81","nodeType":"YulIdentifier","src":"3308:29:81"},"nativeSrc":"3308:35:81","nodeType":"YulFunctionCall","src":"3308:35:81"},"variables":[{"name":"dstPtr","nativeSrc":"3298:6:81","nodeType":"YulTypedName","src":"3298:6:81","type":""}]},{"nativeSrc":"3356:10:81","nodeType":"YulVariableDeclaration","src":"3356:10:81","value":{"kind":"number","nativeSrc":"3365:1:81","nodeType":"YulLiteral","src":"3365:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3360:1:81","nodeType":"YulTypedName","src":"3360:1:81","type":""}]},{"body":{"nativeSrc":"3436:165:81","nodeType":"YulBlock","src":"3436:165:81","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3461:6:81","nodeType":"YulIdentifier","src":"3461:6:81"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3479:3:81","nodeType":"YulIdentifier","src":"3479:3:81"},{"name":"srcOffset","nativeSrc":"3484:9:81","nodeType":"YulIdentifier","src":"3484:9:81"}],"functionName":{"name":"add","nativeSrc":"3475:3:81","nodeType":"YulIdentifier","src":"3475:3:81"},"nativeSrc":"3475:19:81","nodeType":"YulFunctionCall","src":"3475:19:81"}],"functionName":{"name":"mload","nativeSrc":"3469:5:81","nodeType":"YulIdentifier","src":"3469:5:81"},"nativeSrc":"3469:26:81","nodeType":"YulFunctionCall","src":"3469:26:81"}],"functionName":{"name":"sstore","nativeSrc":"3454:6:81","nodeType":"YulIdentifier","src":"3454:6:81"},"nativeSrc":"3454:42:81","nodeType":"YulFunctionCall","src":"3454:42:81"},"nativeSrc":"3454:42:81","nodeType":"YulExpressionStatement","src":"3454:42:81"},{"nativeSrc":"3513:24:81","nodeType":"YulAssignment","src":"3513:24:81","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3527:6:81","nodeType":"YulIdentifier","src":"3527:6:81"},{"kind":"number","nativeSrc":"3535:1:81","nodeType":"YulLiteral","src":"3535:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3523:3:81","nodeType":"YulIdentifier","src":"3523:3:81"},"nativeSrc":"3523:14:81","nodeType":"YulFunctionCall","src":"3523:14:81"},"variableNames":[{"name":"dstPtr","nativeSrc":"3513:6:81","nodeType":"YulIdentifier","src":"3513:6:81"}]},{"nativeSrc":"3554:33:81","nodeType":"YulAssignment","src":"3554:33:81","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3571:9:81","nodeType":"YulIdentifier","src":"3571:9:81"},{"kind":"number","nativeSrc":"3582:4:81","nodeType":"YulLiteral","src":"3582:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3567:3:81","nodeType":"YulIdentifier","src":"3567:3:81"},"nativeSrc":"3567:20:81","nodeType":"YulFunctionCall","src":"3567:20:81"},"variableNames":[{"name":"srcOffset","nativeSrc":"3554:9:81","nodeType":"YulIdentifier","src":"3554:9:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3390:1:81","nodeType":"YulIdentifier","src":"3390:1:81"},{"name":"loopEnd","nativeSrc":"3393:7:81","nodeType":"YulIdentifier","src":"3393:7:81"}],"functionName":{"name":"lt","nativeSrc":"3387:2:81","nodeType":"YulIdentifier","src":"3387:2:81"},"nativeSrc":"3387:14:81","nodeType":"YulFunctionCall","src":"3387:14:81"},"nativeSrc":"3379:222:81","nodeType":"YulForLoop","post":{"nativeSrc":"3402:21:81","nodeType":"YulBlock","src":"3402:21:81","statements":[{"nativeSrc":"3404:17:81","nodeType":"YulAssignment","src":"3404:17:81","value":{"arguments":[{"name":"i","nativeSrc":"3413:1:81","nodeType":"YulIdentifier","src":"3413:1:81"},{"kind":"number","nativeSrc":"3416:4:81","nodeType":"YulLiteral","src":"3416:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3409:3:81","nodeType":"YulIdentifier","src":"3409:3:81"},"nativeSrc":"3409:12:81","nodeType":"YulFunctionCall","src":"3409:12:81"},"variableNames":[{"name":"i","nativeSrc":"3404:1:81","nodeType":"YulIdentifier","src":"3404:1:81"}]}]},"pre":{"nativeSrc":"3383:3:81","nodeType":"YulBlock","src":"3383:3:81","statements":[]},"src":"3379:222:81"},{"body":{"nativeSrc":"3649:166:81","nodeType":"YulBlock","src":"3649:166:81","statements":[{"nativeSrc":"3667:43:81","nodeType":"YulVariableDeclaration","src":"3667:43:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3694:3:81","nodeType":"YulIdentifier","src":"3694:3:81"},{"name":"srcOffset","nativeSrc":"3699:9:81","nodeType":"YulIdentifier","src":"3699:9:81"}],"functionName":{"name":"add","nativeSrc":"3690:3:81","nodeType":"YulIdentifier","src":"3690:3:81"},"nativeSrc":"3690:19:81","nodeType":"YulFunctionCall","src":"3690:19:81"}],"functionName":{"name":"mload","nativeSrc":"3684:5:81","nodeType":"YulIdentifier","src":"3684:5:81"},"nativeSrc":"3684:26:81","nodeType":"YulFunctionCall","src":"3684:26:81"},"variables":[{"name":"lastValue","nativeSrc":"3671:9:81","nodeType":"YulTypedName","src":"3671:9:81","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3734:6:81","nodeType":"YulIdentifier","src":"3734:6:81"},{"arguments":[{"name":"lastValue","nativeSrc":"3746:9:81","nodeType":"YulIdentifier","src":"3746:9:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3773:1:81","nodeType":"YulLiteral","src":"3773:1:81","type":"","value":"3"},{"name":"newLen","nativeSrc":"3776:6:81","nodeType":"YulIdentifier","src":"3776:6:81"}],"functionName":{"name":"shl","nativeSrc":"3769:3:81","nodeType":"YulIdentifier","src":"3769:3:81"},"nativeSrc":"3769:14:81","nodeType":"YulFunctionCall","src":"3769:14:81"},{"kind":"number","nativeSrc":"3785:3:81","nodeType":"YulLiteral","src":"3785:3:81","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3765:3:81","nodeType":"YulIdentifier","src":"3765:3:81"},"nativeSrc":"3765:24:81","nodeType":"YulFunctionCall","src":"3765:24:81"},{"arguments":[{"kind":"number","nativeSrc":"3795:1:81","nodeType":"YulLiteral","src":"3795:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3791:3:81","nodeType":"YulIdentifier","src":"3791:3:81"},"nativeSrc":"3791:6:81","nodeType":"YulFunctionCall","src":"3791:6:81"}],"functionName":{"name":"shr","nativeSrc":"3761:3:81","nodeType":"YulIdentifier","src":"3761:3:81"},"nativeSrc":"3761:37:81","nodeType":"YulFunctionCall","src":"3761:37:81"}],"functionName":{"name":"not","nativeSrc":"3757:3:81","nodeType":"YulIdentifier","src":"3757:3:81"},"nativeSrc":"3757:42:81","nodeType":"YulFunctionCall","src":"3757:42:81"}],"functionName":{"name":"and","nativeSrc":"3742:3:81","nodeType":"YulIdentifier","src":"3742:3:81"},"nativeSrc":"3742:58:81","nodeType":"YulFunctionCall","src":"3742:58:81"}],"functionName":{"name":"sstore","nativeSrc":"3727:6:81","nodeType":"YulIdentifier","src":"3727:6:81"},"nativeSrc":"3727:74:81","nodeType":"YulFunctionCall","src":"3727:74:81"},"nativeSrc":"3727:74:81","nodeType":"YulExpressionStatement","src":"3727:74:81"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3620:7:81","nodeType":"YulIdentifier","src":"3620:7:81"},{"name":"newLen","nativeSrc":"3629:6:81","nodeType":"YulIdentifier","src":"3629:6:81"}],"functionName":{"name":"lt","nativeSrc":"3617:2:81","nodeType":"YulIdentifier","src":"3617:2:81"},"nativeSrc":"3617:19:81","nodeType":"YulFunctionCall","src":"3617:19:81"},"nativeSrc":"3614:201:81","nodeType":"YulIf","src":"3614:201:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3835:4:81","nodeType":"YulIdentifier","src":"3835:4:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3849:1:81","nodeType":"YulLiteral","src":"3849:1:81","type":"","value":"1"},{"name":"newLen","nativeSrc":"3852:6:81","nodeType":"YulIdentifier","src":"3852:6:81"}],"functionName":{"name":"shl","nativeSrc":"3845:3:81","nodeType":"YulIdentifier","src":"3845:3:81"},"nativeSrc":"3845:14:81","nodeType":"YulFunctionCall","src":"3845:14:81"},{"kind":"number","nativeSrc":"3861:1:81","nodeType":"YulLiteral","src":"3861:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3841:3:81","nodeType":"YulIdentifier","src":"3841:3:81"},"nativeSrc":"3841:22:81","nodeType":"YulFunctionCall","src":"3841:22:81"}],"functionName":{"name":"sstore","nativeSrc":"3828:6:81","nodeType":"YulIdentifier","src":"3828:6:81"},"nativeSrc":"3828:36:81","nodeType":"YulFunctionCall","src":"3828:36:81"},"nativeSrc":"3828:36:81","nodeType":"YulExpressionStatement","src":"3828:36:81"}]},"nativeSrc":"3225:649:81","nodeType":"YulCase","src":"3225:649:81","value":{"kind":"number","nativeSrc":"3230:1:81","nodeType":"YulLiteral","src":"3230:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"3891:234:81","nodeType":"YulBlock","src":"3891:234:81","statements":[{"nativeSrc":"3905:14:81","nodeType":"YulVariableDeclaration","src":"3905:14:81","value":{"kind":"number","nativeSrc":"3918:1:81","nodeType":"YulLiteral","src":"3918:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3909:5:81","nodeType":"YulTypedName","src":"3909:5:81","type":""}]},{"body":{"nativeSrc":"3954:67:81","nodeType":"YulBlock","src":"3954:67:81","statements":[{"nativeSrc":"3972:35:81","nodeType":"YulAssignment","src":"3972:35:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3991:3:81","nodeType":"YulIdentifier","src":"3991:3:81"},{"name":"srcOffset","nativeSrc":"3996:9:81","nodeType":"YulIdentifier","src":"3996:9:81"}],"functionName":{"name":"add","nativeSrc":"3987:3:81","nodeType":"YulIdentifier","src":"3987:3:81"},"nativeSrc":"3987:19:81","nodeType":"YulFunctionCall","src":"3987:19:81"}],"functionName":{"name":"mload","nativeSrc":"3981:5:81","nodeType":"YulIdentifier","src":"3981:5:81"},"nativeSrc":"3981:26:81","nodeType":"YulFunctionCall","src":"3981:26:81"},"variableNames":[{"name":"value","nativeSrc":"3972:5:81","nodeType":"YulIdentifier","src":"3972:5:81"}]}]},"condition":{"name":"newLen","nativeSrc":"3935:6:81","nodeType":"YulIdentifier","src":"3935:6:81"},"nativeSrc":"3932:89:81","nodeType":"YulIf","src":"3932:89:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4041:4:81","nodeType":"YulIdentifier","src":"4041:4:81"},{"arguments":[{"name":"value","nativeSrc":"4100:5:81","nodeType":"YulIdentifier","src":"4100:5:81"},{"name":"newLen","nativeSrc":"4107:6:81","nodeType":"YulIdentifier","src":"4107:6:81"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4047:52:81","nodeType":"YulIdentifier","src":"4047:52:81"},"nativeSrc":"4047:67:81","nodeType":"YulFunctionCall","src":"4047:67:81"}],"functionName":{"name":"sstore","nativeSrc":"4034:6:81","nodeType":"YulIdentifier","src":"4034:6:81"},"nativeSrc":"4034:81:81","nodeType":"YulFunctionCall","src":"4034:81:81"},"nativeSrc":"4034:81:81","nodeType":"YulExpressionStatement","src":"4034:81:81"}]},"nativeSrc":"3883:242:81","nodeType":"YulCase","src":"3883:242:81","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3205:6:81","nodeType":"YulIdentifier","src":"3205:6:81"},{"kind":"number","nativeSrc":"3213:2:81","nodeType":"YulLiteral","src":"3213:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3202:2:81","nodeType":"YulIdentifier","src":"3202:2:81"},"nativeSrc":"3202:14:81","nodeType":"YulFunctionCall","src":"3202:14:81"},"nativeSrc":"3195:930:81","nodeType":"YulSwitch","src":"3195:930:81"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2832:1299:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2913:4:81","nodeType":"YulTypedName","src":"2913:4:81","type":""},{"name":"src","nativeSrc":"2919:3:81","nodeType":"YulTypedName","src":"2919:3:81","type":""}],"src":"2832:1299:81"},{"body":{"nativeSrc":"4185:176:81","nodeType":"YulBlock","src":"4185:176:81","statements":[{"nativeSrc":"4195:17:81","nodeType":"YulAssignment","src":"4195:17:81","value":{"arguments":[{"name":"x","nativeSrc":"4207:1:81","nodeType":"YulIdentifier","src":"4207:1:81"},{"name":"y","nativeSrc":"4210:1:81","nodeType":"YulIdentifier","src":"4210:1:81"}],"functionName":{"name":"sub","nativeSrc":"4203:3:81","nodeType":"YulIdentifier","src":"4203:3:81"},"nativeSrc":"4203:9:81","nodeType":"YulFunctionCall","src":"4203:9:81"},"variableNames":[{"name":"diff","nativeSrc":"4195:4:81","nodeType":"YulIdentifier","src":"4195:4:81"}]},{"body":{"nativeSrc":"4244:111:81","nodeType":"YulBlock","src":"4244:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4265:1:81","nodeType":"YulLiteral","src":"4265:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4272:3:81","nodeType":"YulLiteral","src":"4272:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4277:10:81","nodeType":"YulLiteral","src":"4277:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4268:3:81","nodeType":"YulIdentifier","src":"4268:3:81"},"nativeSrc":"4268:20:81","nodeType":"YulFunctionCall","src":"4268:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4258:6:81","nodeType":"YulIdentifier","src":"4258:6:81"},"nativeSrc":"4258:31:81","nodeType":"YulFunctionCall","src":"4258:31:81"},"nativeSrc":"4258:31:81","nodeType":"YulExpressionStatement","src":"4258:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4309:1:81","nodeType":"YulLiteral","src":"4309:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4312:4:81","nodeType":"YulLiteral","src":"4312:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4302:6:81","nodeType":"YulIdentifier","src":"4302:6:81"},"nativeSrc":"4302:15:81","nodeType":"YulFunctionCall","src":"4302:15:81"},"nativeSrc":"4302:15:81","nodeType":"YulExpressionStatement","src":"4302:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4337:1:81","nodeType":"YulLiteral","src":"4337:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4340:4:81","nodeType":"YulLiteral","src":"4340:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4330:6:81","nodeType":"YulIdentifier","src":"4330:6:81"},"nativeSrc":"4330:15:81","nodeType":"YulFunctionCall","src":"4330:15:81"},"nativeSrc":"4330:15:81","nodeType":"YulExpressionStatement","src":"4330:15:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"4227:4:81","nodeType":"YulIdentifier","src":"4227:4:81"},{"name":"x","nativeSrc":"4233:1:81","nodeType":"YulIdentifier","src":"4233:1:81"}],"functionName":{"name":"gt","nativeSrc":"4224:2:81","nodeType":"YulIdentifier","src":"4224:2:81"},"nativeSrc":"4224:11:81","nodeType":"YulFunctionCall","src":"4224:11:81"},"nativeSrc":"4221:134:81","nodeType":"YulIf","src":"4221:134:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"4136:225:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4167:1:81","nodeType":"YulTypedName","src":"4167:1:81","type":""},{"name":"y","nativeSrc":"4170:1:81","nodeType":"YulTypedName","src":"4170:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"4176:4:81","nodeType":"YulTypedName","src":"4176:4:81","type":""}],"src":"4136:225:81"},{"body":{"nativeSrc":"4503:164:81","nodeType":"YulBlock","src":"4503:164:81","statements":[{"nativeSrc":"4513:27:81","nodeType":"YulVariableDeclaration","src":"4513:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"4533:6:81","nodeType":"YulIdentifier","src":"4533:6:81"}],"functionName":{"name":"mload","nativeSrc":"4527:5:81","nodeType":"YulIdentifier","src":"4527:5:81"},"nativeSrc":"4527:13:81","nodeType":"YulFunctionCall","src":"4527:13:81"},"variables":[{"name":"length","nativeSrc":"4517:6:81","nodeType":"YulTypedName","src":"4517:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"4555:3:81","nodeType":"YulIdentifier","src":"4555:3:81"},{"arguments":[{"name":"value0","nativeSrc":"4564:6:81","nodeType":"YulIdentifier","src":"4564:6:81"},{"kind":"number","nativeSrc":"4572:4:81","nodeType":"YulLiteral","src":"4572:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4560:3:81","nodeType":"YulIdentifier","src":"4560:3:81"},"nativeSrc":"4560:17:81","nodeType":"YulFunctionCall","src":"4560:17:81"},{"name":"length","nativeSrc":"4579:6:81","nodeType":"YulIdentifier","src":"4579:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"4549:5:81","nodeType":"YulIdentifier","src":"4549:5:81"},"nativeSrc":"4549:37:81","nodeType":"YulFunctionCall","src":"4549:37:81"},"nativeSrc":"4549:37:81","nodeType":"YulExpressionStatement","src":"4549:37:81"},{"nativeSrc":"4595:26:81","nodeType":"YulVariableDeclaration","src":"4595:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"4609:3:81","nodeType":"YulIdentifier","src":"4609:3:81"},{"name":"length","nativeSrc":"4614:6:81","nodeType":"YulIdentifier","src":"4614:6:81"}],"functionName":{"name":"add","nativeSrc":"4605:3:81","nodeType":"YulIdentifier","src":"4605:3:81"},"nativeSrc":"4605:16:81","nodeType":"YulFunctionCall","src":"4605:16:81"},"variables":[{"name":"_1","nativeSrc":"4599:2:81","nodeType":"YulTypedName","src":"4599:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"4637:2:81","nodeType":"YulIdentifier","src":"4637:2:81"},{"kind":"number","nativeSrc":"4641:1:81","nodeType":"YulLiteral","src":"4641:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"4630:6:81","nodeType":"YulIdentifier","src":"4630:6:81"},"nativeSrc":"4630:13:81","nodeType":"YulFunctionCall","src":"4630:13:81"},"nativeSrc":"4630:13:81","nodeType":"YulExpressionStatement","src":"4630:13:81"},{"nativeSrc":"4652:9:81","nodeType":"YulAssignment","src":"4652:9:81","value":{"name":"_1","nativeSrc":"4659:2:81","nodeType":"YulIdentifier","src":"4659:2:81"},"variableNames":[{"name":"end","nativeSrc":"4652:3:81","nodeType":"YulIdentifier","src":"4652:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"4366:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"4479:3:81","nodeType":"YulTypedName","src":"4479:3:81","type":""},{"name":"value0","nativeSrc":"4484:6:81","nodeType":"YulTypedName","src":"4484:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"4495:3:81","nodeType":"YulTypedName","src":"4495:3:81","type":""}],"src":"4366:301:81"},{"body":{"nativeSrc":"4753:103:81","nodeType":"YulBlock","src":"4753:103:81","statements":[{"body":{"nativeSrc":"4799:16:81","nodeType":"YulBlock","src":"4799:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4808:1:81","nodeType":"YulLiteral","src":"4808:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4811:1:81","nodeType":"YulLiteral","src":"4811:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4801:6:81","nodeType":"YulIdentifier","src":"4801:6:81"},"nativeSrc":"4801:12:81","nodeType":"YulFunctionCall","src":"4801:12:81"},"nativeSrc":"4801:12:81","nodeType":"YulExpressionStatement","src":"4801:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4774:7:81","nodeType":"YulIdentifier","src":"4774:7:81"},{"name":"headStart","nativeSrc":"4783:9:81","nodeType":"YulIdentifier","src":"4783:9:81"}],"functionName":{"name":"sub","nativeSrc":"4770:3:81","nodeType":"YulIdentifier","src":"4770:3:81"},"nativeSrc":"4770:23:81","nodeType":"YulFunctionCall","src":"4770:23:81"},{"kind":"number","nativeSrc":"4795:2:81","nodeType":"YulLiteral","src":"4795:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4766:3:81","nodeType":"YulIdentifier","src":"4766:3:81"},"nativeSrc":"4766:32:81","nodeType":"YulFunctionCall","src":"4766:32:81"},"nativeSrc":"4763:52:81","nodeType":"YulIf","src":"4763:52:81"},{"nativeSrc":"4824:26:81","nodeType":"YulAssignment","src":"4824:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4840:9:81","nodeType":"YulIdentifier","src":"4840:9:81"}],"functionName":{"name":"mload","nativeSrc":"4834:5:81","nodeType":"YulIdentifier","src":"4834:5:81"},"nativeSrc":"4834:16:81","nodeType":"YulFunctionCall","src":"4834:16:81"},"variableNames":[{"name":"value0","nativeSrc":"4824:6:81","nodeType":"YulIdentifier","src":"4824:6:81"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"4672:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4719:9:81","nodeType":"YulTypedName","src":"4719:9:81","type":""},{"name":"dataEnd","nativeSrc":"4730:7:81","nodeType":"YulTypedName","src":"4730:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4742:6:81","nodeType":"YulTypedName","src":"4742:6:81","type":""}],"src":"4672:184:81"}]},"contents":"{\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_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        mcopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$11776_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value2 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405234801561000f575f5ffd5b50604051611a98380380611a9883398101604081905261002e9161021e565b808383600361003d8382610327565b50600461004a8282610327565b5050505f5f61005e836100ab60201b60201c565b915091508161006e576012610070565b805b60ff1660a05250506001600160a01b031660805261009060635f196103e1565b60068190556007819055600881905560095550610433915050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b17905290515f918291829182916001600160a01b038716916100f191610406565b5f60405180830381855afa9150503d805f8114610129576040519150601f19603f3d011682016040523d82523d5f602084013e61012e565b606091505b509150915081801561014257506020815110155b15610175575f8180602001905181019061015c919061041c565b905060ff8111610173576001969095509350505050565b505b505f9485945092505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126101a4575f5ffd5b81516001600160401b038111156101bd576101bd610181565b604051601f8201601f19908116603f011681016001600160401b03811182821017156101eb576101eb610181565b604052818152838201602001851015610202575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f60608486031215610230575f5ffd5b83516001600160401b03811115610245575f5ffd5b61025186828701610195565b602086015190945090506001600160401b0381111561026e575f5ffd5b61027a86828701610195565b604086015190935090506001600160a01b0381168114610298575f5ffd5b809150509250925092565b600181811c908216806102b757607f821691505b6020821081036102d557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561032257805f5260205f20601f840160051c810160208510156103005750805b601f840160051c820191505b8181101561031f575f815560010161030c565b50505b505050565b81516001600160401b0381111561034057610340610181565b6103548161034e84546102a3565b846102db565b6020601f821160018114610386575f831561036f5750848201515b5f19600385901b1c1916600184901b17845561031f565b5f84815260208120601f198516915b828110156103b55787850151825560209485019460019092019101610395565b50848210156103d257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8181038181111561040057634e487b7160e01b5f52601160045260245ffd5b92915050565b5f82518060208501845e5f920191825250919050565b5f6020828403121561042c575f5ffd5b5051919050565b60805160a0516116216104775f395f61061c01525f81816102ce015281816104b60152818161082c0152818161088901528181610e200152610ed201526116215ff3fe608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c806386de9e4f11610114578063c6e6f592116100a9578063d6dd023411610079578063d6dd023414610439578063d905777e1461044c578063dd62ed3e1461045f578063ef8b30f7146103f7578063f3c0b89214610497575f5ffd5b8063c6e6f592146103f7578063c7361ed21461040a578063cc7fcc601461041d578063ce96cb7714610426575f5ffd5b8063b3d7f6b9116100e4578063b3d7f6b9146103ab578063b460af94146103be578063ba087652146103d1578063c63d75b6146103e4575f5ffd5b806386de9e4f1461035a57806394bf804d1461037d57806395d89b4114610390578063a9059cbb14610398575f5ffd5b8063313ce56711610195578063402d267d11610165578063402d267d146103015780634cdad5061461023a5780636e553f651461031457806370a08231146103275780637fb1ad621461034f575f5ffd5b8063313ce5671461029e57806338359018146102b857806338d52e0f146102c157806339d88aff146102f8575f5ffd5b8063095ea7b3116101d0578063095ea7b31461024d5780630a28a4771461027057806318160ddd1461028357806323b872dd1461028b575f5ffd5b806301e1d11414610201578063034548cd1461021c57806306fdde031461022557806307a2d13a1461023a575b5f5ffd5b61020961049f565b6040519081526020015b60405180910390f35b61020960075481565b61022d61052c565b60405161021391906111be565b6102096102483660046111f3565b6105bc565b61026061025b366004611225565b6105cd565b6040519015158152602001610213565b61020961027e3660046111f3565b6105e4565b600254610209565b61026061029936600461124d565b6105f0565b6102a6610615565b60405160ff9091168152602001610213565b61020960085481565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610213565b61020960065481565b61020961030f366004611287565b610640565b6102096103223660046112a0565b610664565b610209610335366004611287565b6001600160a01b03165f9081526020819052604090205490565b60055460ff16610260565b61037b6103683660046112ca565b6005805460ff1916911515919091179055565b005b61020961038b3660046112a0565b6106c1565b61022d61070d565b6102606103a6366004611225565b61071c565b6102096103b93660046111f3565b610729565b6102096103cc3660046112e9565b610735565b6102096103df3660046112e9565b61078b565b6102096103f2366004611287565b6107d8565b6102096104053660046111f3565b6107f5565b61037b6104183660046111f3565b610800565b61020960095481565b610209610434366004611287565b6108f1565b61037b610447366004611322565b610917565b61020961045a366004611287565b610996565b61020961046d366004611341565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102096109bc565b6040516370a0823160e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610503573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105279190611369565b905090565b60606003805461053b90611380565b80601f016020809104026020016040519081016040528092919081815260200182805461056790611380565b80156105b25780601f10610589576101008083540402835291602001916105b2565b820191905f5260205f20905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b5f6105c7825f6109cb565b92915050565b5f336105da818585610a03565b5060019392505050565b5f6105c7826001610a15565b5f336105fd858285610a44565b610608858585610aad565b60019150505b9392505050565b5f610527817f00000000000000000000000000000000000000000000000000000000000000006113cc565b5f61064d60635f196113e5565b6006541461065d576006546105c7565b5f196105c7565b5f5f61066f83610640565b9050808411156106a157828482604051633c8097d960e11b8152600401610698939291906113f8565b60405180910390fd5b5f6106ab856107f5565b90506106b933858784610b0a565b949350505050565b5f5f6106cc836107d8565b9050808411156106f55782848260405163284ff66760e01b8152600401610698939291906113f8565b5f6106ff85610729565b90506106b933858388610b0a565b60606004805461053b90611380565b5f336105da818585610aad565b5f6105c78260016109cb565b5f5f610740836108f1565b90508085111561076957828582604051633fa733bb60e21b8152600401610698939291906113f8565b5f610773866105e4565b90506107823386868985610b5f565b95945050505050565b5f5f61079683610996565b9050808511156107bf57828582604051632e52afbb60e21b8152600401610698939291906113f8565b5f6107c9866105bc565b9050610782338686848a610b5f565b5f6107e560635f196113e5565b6007541461065d576007546105c7565b5f6105c7825f610a15565b5f811315610887576040516340c10f1960e01b8152306004820152602481018290526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015b5f604051808303815f87803b15801561086e575f5ffd5b505af1158015610880573d5f5f3e3d5ffd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639dc29fac306108c084611419565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610857565b5f6108fe60635f196113e5565b6008541461090e576008546105c7565b6105c782610bb5565b5f82600381111561092a5761092a611433565b036109355760068190555b600182600381111561094957610949611433565b036109545760078190555b600282600381111561096857610968611433565b036109735760088190555b600382600381111561098757610987611433565b036109925760098190555b5050565b5f6109a360635f196113e5565b600954146109b3576009546105c7565b6105c782610bd7565b6109c860635f196113e5565b81565b5f61060e6109d761049f565b6109e2906001611447565b6109ed5f600a61153d565b6002546109fa9190611447565b85919085610bf4565b610a108383836001610c36565b505050565b5f61060e610a2482600a61153d565b600254610a319190611447565b610a3961049f565b6109fa906001611447565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610aa75781811015610a9957828183604051637dc7a0d960e11b8152600401610698939291906113f8565b610aa784848484035f610c36565b50505050565b6001600160a01b038316610ad657604051634b637e8f60e11b81525f6004820152602401610698565b6001600160a01b038216610aff5760405163ec442f0560e01b81525f6004820152602401610698565b610a10838383610d08565b60055460ff1615610b1e60045f368161154b565b610b2791611572565b90610b52576040516340c2fd5360e11b81526001600160e01b03199091166004820152602401610698565b50610aa784848484610e1b565b60055460ff1615610b7360045f368161154b565b610b7c91611572565b90610ba7576040516340c2fd5360e11b81526001600160e01b03199091166004820152602401610698565b506108808585858585610e9f565b6001600160a01b0381165f908152602081905260408120546105c7905f6109cb565b6001600160a01b0381165f908152602081905260408120546105c7565b5f610c21610c0183610f5f565b8015610c1c57505f8480610c1757610c176115aa565b868809115b151590565b610c2c868686610f8b565b6107829190611447565b6001600160a01b038416610c5f5760405163e602df0560e01b81525f6004820152602401610698565b6001600160a01b038316610c8857604051634a1406b160e11b81525f6004820152602401610698565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610aa757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cfa91815260200190565b60405180910390a350505050565b6001600160a01b038316610d32578060025f828254610d279190611447565b90915550610d8f9050565b6001600160a01b0383165f9081526020819052604090205481811015610d715783818360405163391434e360e21b8152600401610698939291906113f8565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610dab57600280548290039055610dc9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0e91815260200190565b60405180910390a3505050565b610e477f0000000000000000000000000000000000000000000000000000000000000000853085611041565b610e5183826110a8565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051610cfa929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614610ec357610ec3838683610a44565b610ecd83826110dc565b610ef87f00000000000000000000000000000000000000000000000000000000000000008584611110565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051610f50929190918252602082015260400190565b60405180910390a45050505050565b5f6002826003811115610f7457610f74611433565b610f7e91906115be565b60ff166001149050919050565b5f838302815f1985870982811083820303915050805f03610fbf57838281610fb557610fb56115aa565b049250505061060e565b808411610fd657610fd66003851502601118611141565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610aa79186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611152565b6001600160a01b0382166110d15760405163ec442f0560e01b81525f6004820152602401610698565b6109925f8383610d08565b6001600160a01b03821661110557604051634b637e8f60e11b81525f6004820152602401610698565b610992825f83610d08565b6040516001600160a01b03838116602483015260448201839052610a1091859182169063a9059cbb90606401611076565b634e487b715f52806020526024601cfd5b5f5f60205f8451602086015f885af180611171576040513d5f823e3d81fd5b50505f513d91508115611188578060011415611195565b6001600160a01b0384163b155b15610aa757604051635274afe760e01b81526001600160a01b0385166004820152602401610698565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215611203575f5ffd5b5035919050565b80356001600160a01b0381168114611220575f5ffd5b919050565b5f5f60408385031215611236575f5ffd5b61123f8361120a565b946020939093013593505050565b5f5f5f6060848603121561125f575f5ffd5b6112688461120a565b92506112766020850161120a565b929592945050506040919091013590565b5f60208284031215611297575f5ffd5b61060e8261120a565b5f5f604083850312156112b1575f5ffd5b823591506112c16020840161120a565b90509250929050565b5f602082840312156112da575f5ffd5b8135801515811461060e575f5ffd5b5f5f5f606084860312156112fb575f5ffd5b8335925061130b6020850161120a565b91506113196040850161120a565b90509250925092565b5f5f60408385031215611333575f5ffd5b82356004811061123f575f5ffd5b5f5f60408385031215611352575f5ffd5b61135b8361120a565b91506112c16020840161120a565b5f60208284031215611379575f5ffd5b5051919050565b600181811c9082168061139457607f821691505b6020821081036113b257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156105c7576105c76113b8565b818103818111156105c7576105c76113b8565b6001600160a01b039390931683526020830191909152604082015260600190565b5f600160ff1b820161142d5761142d6113b8565b505f0390565b634e487b7160e01b5f52602160045260245ffd5b808201808211156105c7576105c76113b8565b6001815b600184111561149557808504811115611479576114796113b8565b600184161561148757908102905b60019390931c92800261145e565b935093915050565b5f826114ab575060016105c7565b816114b757505f6105c7565b81600181146114cd57600281146114d7576114f3565b60019150506105c7565b60ff8411156114e8576114e86113b8565b50506001821b6105c7565b5060208310610133831016604e8410600b8410161715611516575081810a6105c7565b6115225f19848461145a565b805f1904821115611535576115356113b8565b029392505050565b5f61060e60ff84168361149d565b5f5f85851115611559575f5ffd5b83861115611565575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156115a3576001600160e01b0319600485900360031b81901b82161691505b5092915050565b634e487b7160e01b5f52601260045260245ffd5b5f60ff8316806115dc57634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122021e2d03590eb3bdc20e098c2a02bd3f08c838e5b17f2ba8046d8ff1778f1f35b64736f6c634300081c0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1A98 CODESIZE SUB DUP1 PUSH2 0x1A98 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x21E JUMP JUMPDEST DUP1 DUP4 DUP4 PUSH1 0x3 PUSH2 0x3D DUP4 DUP3 PUSH2 0x327 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x4A DUP3 DUP3 PUSH2 0x327 JUMP JUMPDEST POP POP POP PUSH0 PUSH0 PUSH2 0x5E DUP4 PUSH2 0xAB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x6E JUMPI PUSH1 0x12 PUSH2 0x70 JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0xFF AND PUSH1 0xA0 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE PUSH2 0x90 PUSH1 0x63 PUSH0 NOT PUSH2 0x3E1 JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x7 DUP2 SWAP1 SSTORE PUSH1 0x8 DUP2 SWAP1 SSTORE PUSH1 0x9 SSTORE POP PUSH2 0x433 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD DUP3 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 MLOAD PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 PUSH2 0xF1 SWAP2 PUSH2 0x406 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x129 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x12E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x142 JUMPI POP PUSH1 0x20 DUP2 MLOAD LT ISZERO JUMPDEST ISZERO PUSH2 0x175 JUMPI PUSH0 DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x15C SWAP2 SWAP1 PUSH2 0x41C JUMP JUMPDEST SWAP1 POP PUSH1 0xFF DUP2 GT PUSH2 0x173 JUMPI PUSH1 0x1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMPDEST POP PUSH0 SWAP5 DUP6 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1A4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1BD JUMPI PUSH2 0x1BD PUSH2 0x181 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1EB JUMPI PUSH2 0x1EB PUSH2 0x181 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x202 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x245 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x251 DUP7 DUP3 DUP8 ADD PUSH2 0x195 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x26E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x27A DUP7 DUP3 DUP8 ADD PUSH2 0x195 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2B7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2D5 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x322 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x300 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x31F JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x30C JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x340 JUMPI PUSH2 0x340 PUSH2 0x181 JUMP JUMPDEST PUSH2 0x354 DUP2 PUSH2 0x34E DUP5 SLOAD PUSH2 0x2A3 JUMP JUMPDEST DUP5 PUSH2 0x2DB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x386 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x36F JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x31F JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x3B5 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x395 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x3D2 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x400 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x42C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x1621 PUSH2 0x477 PUSH0 CODECOPY PUSH0 PUSH2 0x61C ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2CE ADD MSTORE DUP2 DUP2 PUSH2 0x4B6 ADD MSTORE DUP2 DUP2 PUSH2 0x82C ADD MSTORE DUP2 DUP2 PUSH2 0x889 ADD MSTORE DUP2 DUP2 PUSH2 0xE20 ADD MSTORE PUSH2 0xED2 ADD MSTORE PUSH2 0x1621 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x86DE9E4F GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xC6E6F592 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xD6DD0234 GT PUSH2 0x79 JUMPI DUP1 PUSH4 0xD6DD0234 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF3C0B892 EQ PUSH2 0x497 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xC7361ED2 EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0xCC7FCC60 EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x426 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0xE4 JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x86DE9E4F EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x402D267D GT PUSH2 0x165 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x7FB1AD62 EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x38359018 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x39D88AFF EQ PUSH2 0x2F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x34548CD EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x23A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x209 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x52C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x213 SWAP2 SWAP1 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x209 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH2 0x260 PUSH2 0x25B CALLDATASIZE PUSH1 0x4 PUSH2 0x1225 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x27E CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x5E4 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x209 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x299 CALLDATASIZE PUSH1 0x4 PUSH2 0x124D JUMP JUMPDEST PUSH2 0x5F0 JUMP JUMPDEST PUSH2 0x2A6 PUSH2 0x615 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x640 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x12A0 JUMP JUMPDEST PUSH2 0x664 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x260 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x12CA JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x209 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x12A0 JUMP JUMPDEST PUSH2 0x6C1 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x70D JUMP JUMPDEST PUSH2 0x260 PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x1225 JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x729 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x12E9 JUMP JUMPDEST PUSH2 0x735 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x12E9 JUMP JUMPDEST PUSH2 0x78B JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x7D8 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x405 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x418 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x800 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x434 CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x8F1 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x917 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x45A CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x996 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46D CALLDATASIZE PUSH1 0x4 PUSH2 0x1341 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x9BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x503 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x527 SWAP2 SWAP1 PUSH2 0x1369 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x53B SWAP1 PUSH2 0x1380 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x567 SWAP1 PUSH2 0x1380 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x589 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x595 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH0 PUSH2 0x9CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DA DUP2 DUP6 DUP6 PUSH2 0xA03 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH1 0x1 PUSH2 0xA15 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5FD DUP6 DUP3 DUP6 PUSH2 0xA44 JUMP JUMPDEST PUSH2 0x608 DUP6 DUP6 DUP6 PUSH2 0xAAD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x527 DUP2 PUSH32 0x0 PUSH2 0x13CC JUMP JUMPDEST PUSH0 PUSH2 0x64D PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x6 SLOAD EQ PUSH2 0x65D JUMPI PUSH1 0x6 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH0 NOT PUSH2 0x5C7 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x66F DUP4 PUSH2 0x640 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6A1 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3C8097D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x6AB DUP6 PUSH2 0x7F5 JUMP JUMPDEST SWAP1 POP PUSH2 0x6B9 CALLER DUP6 DUP8 DUP5 PUSH2 0xB0A JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x6CC DUP4 PUSH2 0x7D8 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6F5 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x284FF667 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH0 PUSH2 0x6FF DUP6 PUSH2 0x729 JUMP JUMPDEST SWAP1 POP PUSH2 0x6B9 CALLER DUP6 DUP4 DUP9 PUSH2 0xB0A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53B SWAP1 PUSH2 0x1380 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DA DUP2 DUP6 DUP6 PUSH2 0xAAD JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH1 0x1 PUSH2 0x9CB JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x740 DUP4 PUSH2 0x8F1 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x769 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH0 PUSH2 0x773 DUP7 PUSH2 0x5E4 JUMP JUMPDEST SWAP1 POP PUSH2 0x782 CALLER DUP7 DUP7 DUP10 DUP6 PUSH2 0xB5F JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x796 DUP4 PUSH2 0x996 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x7BF JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH0 PUSH2 0x7C9 DUP7 PUSH2 0x5BC JUMP JUMPDEST SWAP1 POP PUSH2 0x782 CALLER DUP7 DUP7 DUP5 DUP11 PUSH2 0xB5F JUMP JUMPDEST PUSH0 PUSH2 0x7E5 PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x7 SLOAD EQ PUSH2 0x65D JUMPI PUSH1 0x7 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH0 PUSH2 0xA15 JUMP JUMPDEST PUSH0 DUP2 SGT ISZERO PUSH2 0x887 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x86E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x880 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x9DC29FAC ADDRESS PUSH2 0x8C0 DUP5 PUSH2 0x1419 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x857 JUMP JUMPDEST PUSH0 PUSH2 0x8FE PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x8 SLOAD EQ PUSH2 0x90E JUMPI PUSH1 0x8 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH2 0x5C7 DUP3 PUSH2 0xBB5 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x92A JUMPI PUSH2 0x92A PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x935 JUMPI PUSH1 0x6 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x949 JUMPI PUSH2 0x949 PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x954 JUMPI PUSH1 0x7 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x968 JUMPI PUSH2 0x968 PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x973 JUMPI PUSH1 0x8 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x987 JUMPI PUSH2 0x987 PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x992 JUMPI PUSH1 0x9 DUP2 SWAP1 SSTORE JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x9A3 PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x9 SLOAD EQ PUSH2 0x9B3 JUMPI PUSH1 0x9 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH2 0x5C7 DUP3 PUSH2 0xBD7 JUMP JUMPDEST PUSH2 0x9C8 PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x60E PUSH2 0x9D7 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9E2 SWAP1 PUSH1 0x1 PUSH2 0x1447 JUMP JUMPDEST PUSH2 0x9ED PUSH0 PUSH1 0xA PUSH2 0x153D JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x9FA SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0xBF4 JUMP JUMPDEST PUSH2 0xA10 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x60E PUSH2 0xA24 DUP3 PUSH1 0xA PUSH2 0x153D JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0xA31 SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST PUSH2 0xA39 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9FA SWAP1 PUSH1 0x1 PUSH2 0x1447 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0xAA7 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA99 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH2 0xAA7 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xC36 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xAD6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xAFF JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH2 0xA10 DUP4 DUP4 DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB1E PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x154B JUMP JUMPDEST PUSH2 0xB27 SWAP2 PUSH2 0x1572 JUMP JUMPDEST SWAP1 PUSH2 0xB52 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST POP PUSH2 0xAA7 DUP5 DUP5 DUP5 DUP5 PUSH2 0xE1B JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB73 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x154B JUMP JUMPDEST PUSH2 0xB7C SWAP2 PUSH2 0x1572 JUMP JUMPDEST SWAP1 PUSH2 0xBA7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST POP PUSH2 0x880 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xE9F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x5C7 SWAP1 PUSH0 PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0xC01 DUP4 PUSH2 0xF5F JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC1C JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0xC17 JUMPI PUSH2 0xC17 PUSH2 0x15AA JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC2C DUP7 DUP7 DUP7 PUSH2 0xF8B JUMP JUMPDEST PUSH2 0x782 SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC5F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xC88 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0xAA7 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCFA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD32 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD27 SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xD8F SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xD71 JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDAB JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xDC9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE0E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE47 PUSH32 0x0 DUP6 ADDRESS DUP6 PUSH2 0x1041 JUMP JUMPDEST PUSH2 0xE51 DUP4 DUP3 PUSH2 0x10A8 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCFA SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEC3 JUMPI PUSH2 0xEC3 DUP4 DUP7 DUP4 PUSH2 0xA44 JUMP JUMPDEST PUSH2 0xECD DUP4 DUP3 PUSH2 0x10DC JUMP JUMPDEST PUSH2 0xEF8 PUSH32 0x0 DUP6 DUP5 PUSH2 0x1110 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF50 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF74 JUMPI PUSH2 0xF74 PUSH2 0x1433 JUMP JUMPDEST PUSH2 0xF7E SWAP2 SWAP1 PUSH2 0x15BE JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP4 DUP4 MUL DUP2 PUSH0 NOT DUP6 DUP8 MULMOD DUP3 DUP2 LT DUP4 DUP3 SUB SUB SWAP2 POP POP DUP1 PUSH0 SUB PUSH2 0xFBF JUMPI DUP4 DUP3 DUP2 PUSH2 0xFB5 JUMPI PUSH2 0xFB5 PUSH2 0x15AA JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x60E JUMP JUMPDEST DUP1 DUP5 GT PUSH2 0xFD6 JUMPI PUSH2 0xFD6 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x1141 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP7 DUP5 GT SWAP1 SWAP6 SUB SWAP5 SWAP1 SWAP5 MUL SWAP2 SWAP1 SWAP5 SUB SWAP3 SWAP1 SWAP3 DIV SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0xAA7 SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x1152 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10D1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH2 0x992 PUSH0 DUP4 DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1105 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH2 0x992 DUP3 PUSH0 DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0xA10 SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD PUSH2 0x1076 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x20 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH0 DUP9 GAS CALL DUP1 PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x1188 JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xAA7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1203 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1220 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1236 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x123F DUP4 PUSH2 0x120A JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x125F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1268 DUP5 PUSH2 0x120A JUMP JUMPDEST SWAP3 POP PUSH2 0x1276 PUSH1 0x20 DUP6 ADD PUSH2 0x120A JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x60E DUP3 PUSH2 0x120A JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x12C1 PUSH1 0x20 DUP5 ADD PUSH2 0x120A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x60E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x12FB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x130B PUSH1 0x20 DUP6 ADD PUSH2 0x120A JUMP JUMPDEST SWAP2 POP PUSH2 0x1319 PUSH1 0x40 DUP6 ADD PUSH2 0x120A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x123F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1352 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x135B DUP4 PUSH2 0x120A JUMP JUMPDEST SWAP2 POP PUSH2 0x12C1 PUSH1 0x20 DUP5 ADD PUSH2 0x120A JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1379 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1394 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x13B2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C7 PUSH2 0x13B8 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C7 PUSH2 0x13B8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x142D JUMPI PUSH2 0x142D PUSH2 0x13B8 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C7 PUSH2 0x13B8 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x1495 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x1479 JUMPI PUSH2 0x1479 PUSH2 0x13B8 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x1487 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x145E JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x14AB JUMPI POP PUSH1 0x1 PUSH2 0x5C7 JUMP JUMPDEST DUP2 PUSH2 0x14B7 JUMPI POP PUSH0 PUSH2 0x5C7 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x14CD JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x14D7 JUMPI PUSH2 0x14F3 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x5C7 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x14E8 JUMPI PUSH2 0x14E8 PUSH2 0x13B8 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x5C7 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1516 JUMPI POP DUP2 DUP2 EXP PUSH2 0x5C7 JUMP JUMPDEST PUSH2 0x1522 PUSH0 NOT DUP5 DUP5 PUSH2 0x145A JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x1535 JUMPI PUSH2 0x1535 PUSH2 0x13B8 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x60E PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x149D JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1559 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x1565 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x15A3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x15DC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x21 0xE2 0xD0 CALLDATALOAD SWAP1 0xEB EXTCODESIZE 0xDC KECCAK256 0xE0 SWAP9 0xC2 LOG0 0x2B 0xD3 CREATE DUP13 DUP4 DUP15 JUMPDEST OR CALLCODE 0xBA DUP1 CHAINID 0xD8 SELFDESTRUCT OR PUSH25 0xF1F35B64736F6C634300081C00330000000000000000000000 ","sourceMap":"364:2717:20:-:0;;;855:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;964:6;940:5;947:7;1667:5:47;:13;940:5:20;1667::47;:13;:::i;:::-;-1:-1:-1;1690:7:47;:17;1700:7;1690;:17;:::i;:::-;;1601:113;;4316:12:49;4330:19;4353:28;4374:6;4353:20;;;:28;;:::i;:::-;4315:66;;;;4413:7;:28;;4439:2;4413:28;;;4423:13;4413:28;4391:50;;;;-1:-1:-1;;;;;;;4451:15:49;;;613:22:20::2;633:2;-1:-1:-1::0;;613:22:20::2;:::i;:::-;1038:18;:35:::0;;;1020:15:::2;:53:::0;;;998:19:::2;:75:::0;;;978:17:::2;:95:::0;-1:-1:-1;364:2717:20;;-1:-1:-1;;364:2717:20;4616:550:49;4810:43;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4810:43:49;-1:-1:-1;;;4810:43:49;;;4770:93;;4683:7;;;;;;;;-1:-1:-1;;;;;4770:26:49;;;:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4723:140;;;;4877:7;:39;;;;;4914:2;4888:15;:22;:28;;4877:39;4873:260;;;4932:24;4970:15;4959:38;;;;;;;;;;;;:::i;:::-;4932:65;-1:-1:-1;5035:15:49;5015:35;;5011:112;;5078:4;;5090:16;;-1:-1:-1;4616:550:49;-1:-1:-1;;;;4616:550:49:o;5011:112::-;4918:215;4873:260;-1:-1:-1;5150:5:49;;;;-1:-1:-1;4616:550:49;-1:-1:-1;;;4616:550:49:o;14:127:81:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:723;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;298:13;;-1:-1:-1;;;;;323:30:81;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:81;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:81;;553:22;;;514:62;511:88;;;579:18;;:::i;:::-;615:2;608:22;639;;;680:19;;;701:4;676:30;673:39;-1:-1:-1;670:59:81;;;725:1;722;715:12;670:59;782:6;775:4;767:6;763:17;756:4;748:6;744:17;738:51;837:1;809:19;;;830:4;805:30;798:41;;;;813:6;146:723;-1:-1:-1;;;146:723:81:o;874:748::-;1006:6;1014;1022;1075:2;1063:9;1054:7;1050:23;1046:32;1043:52;;;1091:1;1088;1081:12;1043:52;1118:16;;-1:-1:-1;;;;;1146:30:81;;1143:50;;;1189:1;1186;1179:12;1143:50;1212:61;1265:7;1256:6;1245:9;1241:22;1212:61;:::i;:::-;1319:2;1304:18;;1298:25;1202:71;;-1:-1:-1;1298:25:81;-1:-1:-1;;;;;;1335:32:81;;1332:52;;;1380:1;1377;1370:12;1332:52;1403:63;1458:7;1447:8;1436:9;1432:24;1403:63;:::i;:::-;1509:2;1494:18;;1488:25;1393:73;;-1:-1:-1;1488:25:81;-1:-1:-1;;;;;;1542:31:81;;1532:42;;1522:70;;1588:1;1585;1578:12;1522:70;1611:5;1601:15;;;874:748;;;;;:::o;1627:380::-;1706:1;1702:12;;;;1749;;;1770:61;;1824:4;1816:6;1812:17;1802:27;;1770:61;1877:2;1869:6;1866:14;1846:18;1843:38;1840:161;;1923:10;1918:3;1914:20;1911:1;1904:31;1958:4;1955:1;1948:15;1986:4;1983:1;1976:15;1840:161;;1627:380;;;:::o;2138:518::-;2240:2;2235:3;2232:11;2229:421;;;2276:5;2273:1;2266:16;2320:4;2317:1;2307:18;2390:2;2378:10;2374:19;2371:1;2367:27;2361:4;2357:38;2426:4;2414:10;2411:20;2408:47;;;-1:-1:-1;2449:4:81;2408:47;2504:2;2499:3;2495:12;2492:1;2488:20;2482:4;2478:31;2468:41;;2559:81;2577:2;2570:5;2567:13;2559:81;;;2636:1;2622:16;;2603:1;2592:13;2559:81;;;2563:3;;2229:421;2138:518;;;:::o;2832:1299::-;2952:10;;-1:-1:-1;;;;;2974:30:81;;2971:56;;;3007:18;;:::i;:::-;3036:97;3126:6;3086:38;3118:4;3112:11;3086:38;:::i;:::-;3080:4;3036:97;:::i;:::-;3182:4;3213:2;3202:14;;3230:1;3225:649;;;;3918:1;3935:6;3932:89;;;-1:-1:-1;3987:19:81;;;3981:26;3932:89;-1:-1:-1;;2789:1:81;2785:11;;;2781:24;2777:29;2767:40;2813:1;2809:11;;;2764:57;4034:81;;3195:930;;3225:649;2085:1;2078:14;;;2122:4;2109:18;;-1:-1:-1;;3261:20:81;;;3379:222;3393:7;3390:1;3387:14;3379:222;;;3475:19;;;3469:26;3454:42;;3582:4;3567:20;;;;3535:1;3523:14;;;;3409:12;3379:222;;;3383:3;3629:6;3620:7;3617:19;3614:201;;;3690:19;;;3684:26;-1:-1:-1;;3773:1:81;3769:14;;;3785:3;3765:24;3761:37;3757:42;3742:58;3727:74;;3614:201;-1:-1:-1;;;;3861:1:81;3845:14;;;3841:22;3828:36;;-1:-1:-1;2832:1299:81:o;4136:225::-;4203:9;;;4224:11;;;4221:134;;;4277:10;4272:3;4268:20;4265:1;4258:31;4312:4;4309:1;4302:15;4340:4;4337:1;4330:15;4221:134;4136:225;;;;:::o;4366:301::-;4495:3;4533:6;4527:13;4579:6;4572:4;4564:6;4560:17;4555:3;4549:37;4641:1;4605:16;;4630:13;;;-1:-1:-1;4605:16:81;4366:301;-1:-1:-1;4366:301:81:o;4672:184::-;4742:6;4795:2;4783:9;4774:7;4770:23;4766:32;4763:52;;;4811:1;4808;4801:12;4763:52;-1:-1:-1;4834:16:81;;4672:184;-1:-1:-1;4672:184:81:o;:::-;364:2717:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@OVERRIDE_UNSET_4471":{"entryPoint":2492,"id":4471,"parameterSlots":0,"returnSlots":0},"@_approve_10878":{"entryPoint":2563,"id":10878,"parameterSlots":3,"returnSlots":0},"@_approve_10938":{"entryPoint":3126,"id":10938,"parameterSlots":4,"returnSlots":0},"@_burn_10860":{"entryPoint":4316,"id":10860,"parameterSlots":2,"returnSlots":0},"@_callOptionalReturn_12143":{"entryPoint":4434,"id":12143,"parameterSlots":2,"returnSlots":0},"@_convertToAssets_11657":{"entryPoint":2507,"id":11657,"parameterSlots":2,"returnSlots":1},"@_convertToShares_11629":{"entryPoint":2581,"id":11629,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_11749":{"entryPoint":null,"id":11749,"parameterSlots":0,"returnSlots":1},"@_deposit_11694":{"entryPoint":3611,"id":11694,"parameterSlots":4,"returnSlots":0},"@_deposit_4551":{"entryPoint":2826,"id":4551,"parameterSlots":4,"returnSlots":0},"@_mint_10827":{"entryPoint":4264,"id":10827,"parameterSlots":2,"returnSlots":0},"@_msgSender_12592":{"entryPoint":null,"id":12592,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_10986":{"entryPoint":2628,"id":10986,"parameterSlots":3,"returnSlots":0},"@_transfer_10717":{"entryPoint":2733,"id":10717,"parameterSlots":3,"returnSlots":0},"@_update_10794":{"entryPoint":3336,"id":10794,"parameterSlots":3,"returnSlots":0},"@_withdraw_11741":{"entryPoint":3743,"id":11741,"parameterSlots":5,"returnSlots":0},"@_withdraw_4578":{"entryPoint":2911,"id":4578,"parameterSlots":5,"returnSlots":0},"@allowance_10614":{"entryPoint":null,"id":10614,"parameterSlots":2,"returnSlots":1},"@approve_10638":{"entryPoint":1485,"id":10638,"parameterSlots":2,"returnSlots":1},"@asset_11247":{"entryPoint":null,"id":11247,"parameterSlots":0,"returnSlots":1},"@balanceOf_10573":{"entryPoint":null,"id":10573,"parameterSlots":1,"returnSlots":1},"@broken_4639":{"entryPoint":null,"id":4639,"parameterSlots":0,"returnSlots":1},"@convertToAssets_11294":{"entryPoint":1468,"id":11294,"parameterSlots":1,"returnSlots":1},"@convertToShares_11278":{"entryPoint":2037,"id":11278,"parameterSlots":1,"returnSlots":1},"@decimals_11235":{"entryPoint":1557,"id":11235,"parameterSlots":0,"returnSlots":1},"@deposit_11463":{"entryPoint":1636,"id":11463,"parameterSlots":2,"returnSlots":1},"@discreteEarning_4621":{"entryPoint":2048,"id":4621,"parameterSlots":1,"returnSlots":0},"@maxDeposit_11309":{"entryPoint":null,"id":11309,"parameterSlots":1,"returnSlots":1},"@maxDeposit_4658":{"entryPoint":1600,"id":4658,"parameterSlots":1,"returnSlots":1},"@maxMint_11324":{"entryPoint":null,"id":11324,"parameterSlots":1,"returnSlots":1},"@maxMint_4677":{"entryPoint":2008,"id":4677,"parameterSlots":1,"returnSlots":1},"@maxRedeem_11355":{"entryPoint":3031,"id":11355,"parameterSlots":1,"returnSlots":1},"@maxRedeem_4715":{"entryPoint":2454,"id":4715,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_11342":{"entryPoint":2997,"id":11342,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_4696":{"entryPoint":2289,"id":4696,"parameterSlots":1,"returnSlots":1},"@mint_11507":{"entryPoint":1729,"id":11507,"parameterSlots":2,"returnSlots":1},"@mulDiv_18644":{"entryPoint":3979,"id":18644,"parameterSlots":3,"returnSlots":1},"@mulDiv_18681":{"entryPoint":3060,"id":18681,"parameterSlots":4,"returnSlots":1},"@name_10533":{"entryPoint":1324,"id":10533,"parameterSlots":0,"returnSlots":1},"@overrideMaxDeposit_4456":{"entryPoint":null,"id":4456,"parameterSlots":0,"returnSlots":0},"@overrideMaxMint_4458":{"entryPoint":null,"id":4458,"parameterSlots":0,"returnSlots":0},"@overrideMaxRedeem_4462":{"entryPoint":null,"id":4462,"parameterSlots":0,"returnSlots":0},"@overrideMaxWithdraw_4460":{"entryPoint":null,"id":4460,"parameterSlots":0,"returnSlots":0},"@panic_16356":{"entryPoint":4417,"id":16356,"parameterSlots":1,"returnSlots":0},"@previewDeposit_11371":{"entryPoint":null,"id":11371,"parameterSlots":1,"returnSlots":1},"@previewMint_11387":{"entryPoint":1833,"id":11387,"parameterSlots":1,"returnSlots":1},"@previewRedeem_11419":{"entryPoint":null,"id":11419,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_11403":{"entryPoint":1508,"id":11403,"parameterSlots":1,"returnSlots":1},"@redeem_11601":{"entryPoint":1931,"id":11601,"parameterSlots":3,"returnSlots":1},"@safeTransferFrom_11848":{"entryPoint":4161,"id":11848,"parameterSlots":4,"returnSlots":0},"@safeTransfer_11821":{"entryPoint":4368,"id":11821,"parameterSlots":3,"returnSlots":0},"@setBroken_4631":{"entryPoint":null,"id":4631,"parameterSlots":1,"returnSlots":0},"@setOverride_4760":{"entryPoint":2327,"id":4760,"parameterSlots":2,"returnSlots":0},"@symbol_10542":{"entryPoint":1805,"id":10542,"parameterSlots":0,"returnSlots":1},"@ternary_18405":{"entryPoint":null,"id":18405,"parameterSlots":3,"returnSlots":1},"@toUint_21578":{"entryPoint":null,"id":21578,"parameterSlots":1,"returnSlots":1},"@totalAssets_11262":{"entryPoint":1183,"id":11262,"parameterSlots":0,"returnSlots":1},"@totalSupply_10560":{"entryPoint":null,"id":10560,"parameterSlots":0,"returnSlots":1},"@transferFrom_10670":{"entryPoint":1520,"id":10670,"parameterSlots":3,"returnSlots":1},"@transfer_10597":{"entryPoint":1820,"id":10597,"parameterSlots":2,"returnSlots":1},"@unsignedRoundsUp_19813":{"entryPoint":3935,"id":19813,"parameterSlots":1,"returnSlots":1},"@withdraw_11554":{"entryPoint":1845,"id":11554,"parameterSlots":3,"returnSlots":1},"abi_decode_address":{"entryPoint":4618,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":4743,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4929,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":4685,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":4645,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool":{"entryPoint":4810,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_OverrideOption_$4476t_uint256":{"entryPoint":4898,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_int256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":4595,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":4969,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":4768,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":4841,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":5112,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":4542,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":5451,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":5191,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":5068,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":5210,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":5437,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":5277,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":5093,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":5490,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":4992,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint8":{"entryPoint":5566,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":5145,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":5048,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":5546,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":5171,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9662:81","nodeType":"YulBlock","src":"0:9662:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"115:76:81","nodeType":"YulBlock","src":"115:76:81","statements":[{"nativeSrc":"125:26:81","nodeType":"YulAssignment","src":"125:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:81","nodeType":"YulIdentifier","src":"137:9:81"},{"kind":"number","nativeSrc":"148:2:81","nodeType":"YulLiteral","src":"148:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:81","nodeType":"YulIdentifier","src":"133:3:81"},"nativeSrc":"133:18:81","nodeType":"YulFunctionCall","src":"133:18:81"},"variableNames":[{"name":"tail","nativeSrc":"125:4:81","nodeType":"YulIdentifier","src":"125:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:81","nodeType":"YulIdentifier","src":"167:9:81"},{"name":"value0","nativeSrc":"178:6:81","nodeType":"YulIdentifier","src":"178:6:81"}],"functionName":{"name":"mstore","nativeSrc":"160:6:81","nodeType":"YulIdentifier","src":"160:6:81"},"nativeSrc":"160:25:81","nodeType":"YulFunctionCall","src":"160:25:81"},"nativeSrc":"160:25:81","nodeType":"YulExpressionStatement","src":"160:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:81","nodeType":"YulTypedName","src":"84:9:81","type":""},{"name":"value0","nativeSrc":"95:6:81","nodeType":"YulTypedName","src":"95:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:81","nodeType":"YulTypedName","src":"106:4:81","type":""}],"src":"14:177:81"},{"body":{"nativeSrc":"317:297:81","nodeType":"YulBlock","src":"317:297:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"334:9:81","nodeType":"YulIdentifier","src":"334:9:81"},{"kind":"number","nativeSrc":"345:2:81","nodeType":"YulLiteral","src":"345:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"327:6:81","nodeType":"YulIdentifier","src":"327:6:81"},"nativeSrc":"327:21:81","nodeType":"YulFunctionCall","src":"327:21:81"},"nativeSrc":"327:21:81","nodeType":"YulExpressionStatement","src":"327:21:81"},{"nativeSrc":"357:27:81","nodeType":"YulVariableDeclaration","src":"357:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"377:6:81","nodeType":"YulIdentifier","src":"377:6:81"}],"functionName":{"name":"mload","nativeSrc":"371:5:81","nodeType":"YulIdentifier","src":"371:5:81"},"nativeSrc":"371:13:81","nodeType":"YulFunctionCall","src":"371:13:81"},"variables":[{"name":"length","nativeSrc":"361:6:81","nodeType":"YulTypedName","src":"361:6:81","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"404:9:81","nodeType":"YulIdentifier","src":"404:9:81"},{"kind":"number","nativeSrc":"415:2:81","nodeType":"YulLiteral","src":"415:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"400:3:81","nodeType":"YulIdentifier","src":"400:3:81"},"nativeSrc":"400:18:81","nodeType":"YulFunctionCall","src":"400:18:81"},{"name":"length","nativeSrc":"420:6:81","nodeType":"YulIdentifier","src":"420:6:81"}],"functionName":{"name":"mstore","nativeSrc":"393:6:81","nodeType":"YulIdentifier","src":"393:6:81"},"nativeSrc":"393:34:81","nodeType":"YulFunctionCall","src":"393:34:81"},"nativeSrc":"393:34:81","nodeType":"YulExpressionStatement","src":"393:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"446:9:81","nodeType":"YulIdentifier","src":"446:9:81"},{"kind":"number","nativeSrc":"457:2:81","nodeType":"YulLiteral","src":"457:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"442:3:81","nodeType":"YulIdentifier","src":"442:3:81"},"nativeSrc":"442:18:81","nodeType":"YulFunctionCall","src":"442:18:81"},{"arguments":[{"name":"value0","nativeSrc":"466:6:81","nodeType":"YulIdentifier","src":"466:6:81"},{"kind":"number","nativeSrc":"474:2:81","nodeType":"YulLiteral","src":"474:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"462:3:81","nodeType":"YulIdentifier","src":"462:3:81"},"nativeSrc":"462:15:81","nodeType":"YulFunctionCall","src":"462:15:81"},{"name":"length","nativeSrc":"479:6:81","nodeType":"YulIdentifier","src":"479:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"436:5:81","nodeType":"YulIdentifier","src":"436:5:81"},"nativeSrc":"436:50:81","nodeType":"YulFunctionCall","src":"436:50:81"},"nativeSrc":"436:50:81","nodeType":"YulExpressionStatement","src":"436:50:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"510:9:81","nodeType":"YulIdentifier","src":"510:9:81"},{"name":"length","nativeSrc":"521:6:81","nodeType":"YulIdentifier","src":"521:6:81"}],"functionName":{"name":"add","nativeSrc":"506:3:81","nodeType":"YulIdentifier","src":"506:3:81"},"nativeSrc":"506:22:81","nodeType":"YulFunctionCall","src":"506:22:81"},{"kind":"number","nativeSrc":"530:2:81","nodeType":"YulLiteral","src":"530:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"502:3:81","nodeType":"YulIdentifier","src":"502:3:81"},"nativeSrc":"502:31:81","nodeType":"YulFunctionCall","src":"502:31:81"},{"kind":"number","nativeSrc":"535:1:81","nodeType":"YulLiteral","src":"535:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"495:6:81","nodeType":"YulIdentifier","src":"495:6:81"},"nativeSrc":"495:42:81","nodeType":"YulFunctionCall","src":"495:42:81"},"nativeSrc":"495:42:81","nodeType":"YulExpressionStatement","src":"495:42:81"},{"nativeSrc":"546:62:81","nodeType":"YulAssignment","src":"546:62:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"562:9:81","nodeType":"YulIdentifier","src":"562:9:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"581:6:81","nodeType":"YulIdentifier","src":"581:6:81"},{"kind":"number","nativeSrc":"589:2:81","nodeType":"YulLiteral","src":"589:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"577:3:81","nodeType":"YulIdentifier","src":"577:3:81"},"nativeSrc":"577:15:81","nodeType":"YulFunctionCall","src":"577:15:81"},{"arguments":[{"kind":"number","nativeSrc":"598:2:81","nodeType":"YulLiteral","src":"598:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"594:3:81","nodeType":"YulIdentifier","src":"594:3:81"},"nativeSrc":"594:7:81","nodeType":"YulFunctionCall","src":"594:7:81"}],"functionName":{"name":"and","nativeSrc":"573:3:81","nodeType":"YulIdentifier","src":"573:3:81"},"nativeSrc":"573:29:81","nodeType":"YulFunctionCall","src":"573:29:81"}],"functionName":{"name":"add","nativeSrc":"558:3:81","nodeType":"YulIdentifier","src":"558:3:81"},"nativeSrc":"558:45:81","nodeType":"YulFunctionCall","src":"558:45:81"},{"kind":"number","nativeSrc":"605:2:81","nodeType":"YulLiteral","src":"605:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"554:3:81","nodeType":"YulIdentifier","src":"554:3:81"},"nativeSrc":"554:54:81","nodeType":"YulFunctionCall","src":"554:54:81"},"variableNames":[{"name":"tail","nativeSrc":"546:4:81","nodeType":"YulIdentifier","src":"546:4:81"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"196:418:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"286:9:81","nodeType":"YulTypedName","src":"286:9:81","type":""},{"name":"value0","nativeSrc":"297:6:81","nodeType":"YulTypedName","src":"297:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"308:4:81","nodeType":"YulTypedName","src":"308:4:81","type":""}],"src":"196:418:81"},{"body":{"nativeSrc":"689:156:81","nodeType":"YulBlock","src":"689:156:81","statements":[{"body":{"nativeSrc":"735:16:81","nodeType":"YulBlock","src":"735:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"744:1:81","nodeType":"YulLiteral","src":"744:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"747:1:81","nodeType":"YulLiteral","src":"747:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"737:6:81","nodeType":"YulIdentifier","src":"737:6:81"},"nativeSrc":"737:12:81","nodeType":"YulFunctionCall","src":"737:12:81"},"nativeSrc":"737:12:81","nodeType":"YulExpressionStatement","src":"737:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"710:7:81","nodeType":"YulIdentifier","src":"710:7:81"},{"name":"headStart","nativeSrc":"719:9:81","nodeType":"YulIdentifier","src":"719:9:81"}],"functionName":{"name":"sub","nativeSrc":"706:3:81","nodeType":"YulIdentifier","src":"706:3:81"},"nativeSrc":"706:23:81","nodeType":"YulFunctionCall","src":"706:23:81"},{"kind":"number","nativeSrc":"731:2:81","nodeType":"YulLiteral","src":"731:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"702:3:81","nodeType":"YulIdentifier","src":"702:3:81"},"nativeSrc":"702:32:81","nodeType":"YulFunctionCall","src":"702:32:81"},"nativeSrc":"699:52:81","nodeType":"YulIf","src":"699:52:81"},{"nativeSrc":"760:14:81","nodeType":"YulVariableDeclaration","src":"760:14:81","value":{"kind":"number","nativeSrc":"773:1:81","nodeType":"YulLiteral","src":"773:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"764:5:81","nodeType":"YulTypedName","src":"764:5:81","type":""}]},{"nativeSrc":"783:32:81","nodeType":"YulAssignment","src":"783:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"805:9:81","nodeType":"YulIdentifier","src":"805:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"792:12:81","nodeType":"YulIdentifier","src":"792:12:81"},"nativeSrc":"792:23:81","nodeType":"YulFunctionCall","src":"792:23:81"},"variableNames":[{"name":"value","nativeSrc":"783:5:81","nodeType":"YulIdentifier","src":"783:5:81"}]},{"nativeSrc":"824:15:81","nodeType":"YulAssignment","src":"824:15:81","value":{"name":"value","nativeSrc":"834:5:81","nodeType":"YulIdentifier","src":"834:5:81"},"variableNames":[{"name":"value0","nativeSrc":"824:6:81","nodeType":"YulIdentifier","src":"824:6:81"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"619:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"655:9:81","nodeType":"YulTypedName","src":"655:9:81","type":""},{"name":"dataEnd","nativeSrc":"666:7:81","nodeType":"YulTypedName","src":"666:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"678:6:81","nodeType":"YulTypedName","src":"678:6:81","type":""}],"src":"619:226:81"},{"body":{"nativeSrc":"899:124:81","nodeType":"YulBlock","src":"899:124:81","statements":[{"nativeSrc":"909:29:81","nodeType":"YulAssignment","src":"909:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"931:6:81","nodeType":"YulIdentifier","src":"931:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:81","nodeType":"YulIdentifier","src":"918:12:81"},"nativeSrc":"918:20:81","nodeType":"YulFunctionCall","src":"918:20:81"},"variableNames":[{"name":"value","nativeSrc":"909:5:81","nodeType":"YulIdentifier","src":"909:5:81"}]},{"body":{"nativeSrc":"1001:16:81","nodeType":"YulBlock","src":"1001:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1010:1:81","nodeType":"YulLiteral","src":"1010:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1013:1:81","nodeType":"YulLiteral","src":"1013:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1003:6:81","nodeType":"YulIdentifier","src":"1003:6:81"},"nativeSrc":"1003:12:81","nodeType":"YulFunctionCall","src":"1003:12:81"},"nativeSrc":"1003:12:81","nodeType":"YulExpressionStatement","src":"1003:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"960:5:81","nodeType":"YulIdentifier","src":"960:5:81"},{"arguments":[{"name":"value","nativeSrc":"971:5:81","nodeType":"YulIdentifier","src":"971:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"986:3:81","nodeType":"YulLiteral","src":"986:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"991:1:81","nodeType":"YulLiteral","src":"991:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"982:3:81","nodeType":"YulIdentifier","src":"982:3:81"},"nativeSrc":"982:11:81","nodeType":"YulFunctionCall","src":"982:11:81"},{"kind":"number","nativeSrc":"995:1:81","nodeType":"YulLiteral","src":"995:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"978:3:81","nodeType":"YulIdentifier","src":"978:3:81"},"nativeSrc":"978:19:81","nodeType":"YulFunctionCall","src":"978:19:81"}],"functionName":{"name":"and","nativeSrc":"967:3:81","nodeType":"YulIdentifier","src":"967:3:81"},"nativeSrc":"967:31:81","nodeType":"YulFunctionCall","src":"967:31:81"}],"functionName":{"name":"eq","nativeSrc":"957:2:81","nodeType":"YulIdentifier","src":"957:2:81"},"nativeSrc":"957:42:81","nodeType":"YulFunctionCall","src":"957:42:81"}],"functionName":{"name":"iszero","nativeSrc":"950:6:81","nodeType":"YulIdentifier","src":"950:6:81"},"nativeSrc":"950:50:81","nodeType":"YulFunctionCall","src":"950:50:81"},"nativeSrc":"947:70:81","nodeType":"YulIf","src":"947:70:81"}]},"name":"abi_decode_address","nativeSrc":"850:173:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"878:6:81","nodeType":"YulTypedName","src":"878:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"889:5:81","nodeType":"YulTypedName","src":"889:5:81","type":""}],"src":"850:173:81"},{"body":{"nativeSrc":"1115:213:81","nodeType":"YulBlock","src":"1115:213:81","statements":[{"body":{"nativeSrc":"1161:16:81","nodeType":"YulBlock","src":"1161:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1170:1:81","nodeType":"YulLiteral","src":"1170:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1173:1:81","nodeType":"YulLiteral","src":"1173:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1163:6:81","nodeType":"YulIdentifier","src":"1163:6:81"},"nativeSrc":"1163:12:81","nodeType":"YulFunctionCall","src":"1163:12:81"},"nativeSrc":"1163:12:81","nodeType":"YulExpressionStatement","src":"1163:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1136:7:81","nodeType":"YulIdentifier","src":"1136:7:81"},{"name":"headStart","nativeSrc":"1145:9:81","nodeType":"YulIdentifier","src":"1145:9:81"}],"functionName":{"name":"sub","nativeSrc":"1132:3:81","nodeType":"YulIdentifier","src":"1132:3:81"},"nativeSrc":"1132:23:81","nodeType":"YulFunctionCall","src":"1132:23:81"},{"kind":"number","nativeSrc":"1157:2:81","nodeType":"YulLiteral","src":"1157:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1128:3:81","nodeType":"YulIdentifier","src":"1128:3:81"},"nativeSrc":"1128:32:81","nodeType":"YulFunctionCall","src":"1128:32:81"},"nativeSrc":"1125:52:81","nodeType":"YulIf","src":"1125:52:81"},{"nativeSrc":"1186:39:81","nodeType":"YulAssignment","src":"1186:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1215:9:81","nodeType":"YulIdentifier","src":"1215:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1196:18:81","nodeType":"YulIdentifier","src":"1196:18:81"},"nativeSrc":"1196:29:81","nodeType":"YulFunctionCall","src":"1196:29:81"},"variableNames":[{"name":"value0","nativeSrc":"1186:6:81","nodeType":"YulIdentifier","src":"1186:6:81"}]},{"nativeSrc":"1234:14:81","nodeType":"YulVariableDeclaration","src":"1234:14:81","value":{"kind":"number","nativeSrc":"1247:1:81","nodeType":"YulLiteral","src":"1247:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1238:5:81","nodeType":"YulTypedName","src":"1238:5:81","type":""}]},{"nativeSrc":"1257:41:81","nodeType":"YulAssignment","src":"1257:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1283:9:81","nodeType":"YulIdentifier","src":"1283:9:81"},{"kind":"number","nativeSrc":"1294:2:81","nodeType":"YulLiteral","src":"1294:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1279:3:81","nodeType":"YulIdentifier","src":"1279:3:81"},"nativeSrc":"1279:18:81","nodeType":"YulFunctionCall","src":"1279:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1266:12:81","nodeType":"YulIdentifier","src":"1266:12:81"},"nativeSrc":"1266:32:81","nodeType":"YulFunctionCall","src":"1266:32:81"},"variableNames":[{"name":"value","nativeSrc":"1257:5:81","nodeType":"YulIdentifier","src":"1257:5:81"}]},{"nativeSrc":"1307:15:81","nodeType":"YulAssignment","src":"1307:15:81","value":{"name":"value","nativeSrc":"1317:5:81","nodeType":"YulIdentifier","src":"1317:5:81"},"variableNames":[{"name":"value1","nativeSrc":"1307:6:81","nodeType":"YulIdentifier","src":"1307:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1028:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1073:9:81","nodeType":"YulTypedName","src":"1073:9:81","type":""},{"name":"dataEnd","nativeSrc":"1084:7:81","nodeType":"YulTypedName","src":"1084:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1096:6:81","nodeType":"YulTypedName","src":"1096:6:81","type":""},{"name":"value1","nativeSrc":"1104:6:81","nodeType":"YulTypedName","src":"1104:6:81","type":""}],"src":"1028:300:81"},{"body":{"nativeSrc":"1428:92:81","nodeType":"YulBlock","src":"1428:92:81","statements":[{"nativeSrc":"1438:26:81","nodeType":"YulAssignment","src":"1438:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1450:9:81","nodeType":"YulIdentifier","src":"1450:9:81"},{"kind":"number","nativeSrc":"1461:2:81","nodeType":"YulLiteral","src":"1461:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1446:3:81","nodeType":"YulIdentifier","src":"1446:3:81"},"nativeSrc":"1446:18:81","nodeType":"YulFunctionCall","src":"1446:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1438:4:81","nodeType":"YulIdentifier","src":"1438:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1480:9:81","nodeType":"YulIdentifier","src":"1480:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1505:6:81","nodeType":"YulIdentifier","src":"1505:6:81"}],"functionName":{"name":"iszero","nativeSrc":"1498:6:81","nodeType":"YulIdentifier","src":"1498:6:81"},"nativeSrc":"1498:14:81","nodeType":"YulFunctionCall","src":"1498:14:81"}],"functionName":{"name":"iszero","nativeSrc":"1491:6:81","nodeType":"YulIdentifier","src":"1491:6:81"},"nativeSrc":"1491:22:81","nodeType":"YulFunctionCall","src":"1491:22:81"}],"functionName":{"name":"mstore","nativeSrc":"1473:6:81","nodeType":"YulIdentifier","src":"1473:6:81"},"nativeSrc":"1473:41:81","nodeType":"YulFunctionCall","src":"1473:41:81"},"nativeSrc":"1473:41:81","nodeType":"YulExpressionStatement","src":"1473:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"1333:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1397:9:81","nodeType":"YulTypedName","src":"1397:9:81","type":""},{"name":"value0","nativeSrc":"1408:6:81","nodeType":"YulTypedName","src":"1408:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1419:4:81","nodeType":"YulTypedName","src":"1419:4:81","type":""}],"src":"1333:187:81"},{"body":{"nativeSrc":"1629:270:81","nodeType":"YulBlock","src":"1629:270:81","statements":[{"body":{"nativeSrc":"1675:16:81","nodeType":"YulBlock","src":"1675:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1684:1:81","nodeType":"YulLiteral","src":"1684:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1687:1:81","nodeType":"YulLiteral","src":"1687:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1677:6:81","nodeType":"YulIdentifier","src":"1677:6:81"},"nativeSrc":"1677:12:81","nodeType":"YulFunctionCall","src":"1677:12:81"},"nativeSrc":"1677:12:81","nodeType":"YulExpressionStatement","src":"1677:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1650:7:81","nodeType":"YulIdentifier","src":"1650:7:81"},{"name":"headStart","nativeSrc":"1659:9:81","nodeType":"YulIdentifier","src":"1659:9:81"}],"functionName":{"name":"sub","nativeSrc":"1646:3:81","nodeType":"YulIdentifier","src":"1646:3:81"},"nativeSrc":"1646:23:81","nodeType":"YulFunctionCall","src":"1646:23:81"},{"kind":"number","nativeSrc":"1671:2:81","nodeType":"YulLiteral","src":"1671:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1642:3:81","nodeType":"YulIdentifier","src":"1642:3:81"},"nativeSrc":"1642:32:81","nodeType":"YulFunctionCall","src":"1642:32:81"},"nativeSrc":"1639:52:81","nodeType":"YulIf","src":"1639:52:81"},{"nativeSrc":"1700:39:81","nodeType":"YulAssignment","src":"1700:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1729:9:81","nodeType":"YulIdentifier","src":"1729:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1710:18:81","nodeType":"YulIdentifier","src":"1710:18:81"},"nativeSrc":"1710:29:81","nodeType":"YulFunctionCall","src":"1710:29:81"},"variableNames":[{"name":"value0","nativeSrc":"1700:6:81","nodeType":"YulIdentifier","src":"1700:6:81"}]},{"nativeSrc":"1748:48:81","nodeType":"YulAssignment","src":"1748:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1781:9:81","nodeType":"YulIdentifier","src":"1781:9:81"},{"kind":"number","nativeSrc":"1792:2:81","nodeType":"YulLiteral","src":"1792:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1777:3:81","nodeType":"YulIdentifier","src":"1777:3:81"},"nativeSrc":"1777:18:81","nodeType":"YulFunctionCall","src":"1777:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1758:18:81","nodeType":"YulIdentifier","src":"1758:18:81"},"nativeSrc":"1758:38:81","nodeType":"YulFunctionCall","src":"1758:38:81"},"variableNames":[{"name":"value1","nativeSrc":"1748:6:81","nodeType":"YulIdentifier","src":"1748:6:81"}]},{"nativeSrc":"1805:14:81","nodeType":"YulVariableDeclaration","src":"1805:14:81","value":{"kind":"number","nativeSrc":"1818:1:81","nodeType":"YulLiteral","src":"1818:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1809:5:81","nodeType":"YulTypedName","src":"1809:5:81","type":""}]},{"nativeSrc":"1828:41:81","nodeType":"YulAssignment","src":"1828:41:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1854:9:81","nodeType":"YulIdentifier","src":"1854:9:81"},{"kind":"number","nativeSrc":"1865:2:81","nodeType":"YulLiteral","src":"1865:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1850:3:81","nodeType":"YulIdentifier","src":"1850:3:81"},"nativeSrc":"1850:18:81","nodeType":"YulFunctionCall","src":"1850:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1837:12:81","nodeType":"YulIdentifier","src":"1837:12:81"},"nativeSrc":"1837:32:81","nodeType":"YulFunctionCall","src":"1837:32:81"},"variableNames":[{"name":"value","nativeSrc":"1828:5:81","nodeType":"YulIdentifier","src":"1828:5:81"}]},{"nativeSrc":"1878:15:81","nodeType":"YulAssignment","src":"1878:15:81","value":{"name":"value","nativeSrc":"1888:5:81","nodeType":"YulIdentifier","src":"1888:5:81"},"variableNames":[{"name":"value2","nativeSrc":"1878:6:81","nodeType":"YulIdentifier","src":"1878:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1525:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1579:9:81","nodeType":"YulTypedName","src":"1579:9:81","type":""},{"name":"dataEnd","nativeSrc":"1590:7:81","nodeType":"YulTypedName","src":"1590:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1602:6:81","nodeType":"YulTypedName","src":"1602:6:81","type":""},{"name":"value1","nativeSrc":"1610:6:81","nodeType":"YulTypedName","src":"1610:6:81","type":""},{"name":"value2","nativeSrc":"1618:6:81","nodeType":"YulTypedName","src":"1618:6:81","type":""}],"src":"1525:374:81"},{"body":{"nativeSrc":"2001:87:81","nodeType":"YulBlock","src":"2001:87:81","statements":[{"nativeSrc":"2011:26:81","nodeType":"YulAssignment","src":"2011:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2023:9:81","nodeType":"YulIdentifier","src":"2023:9:81"},{"kind":"number","nativeSrc":"2034:2:81","nodeType":"YulLiteral","src":"2034:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2019:3:81","nodeType":"YulIdentifier","src":"2019:3:81"},"nativeSrc":"2019:18:81","nodeType":"YulFunctionCall","src":"2019:18:81"},"variableNames":[{"name":"tail","nativeSrc":"2011:4:81","nodeType":"YulIdentifier","src":"2011:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2053:9:81","nodeType":"YulIdentifier","src":"2053:9:81"},{"arguments":[{"name":"value0","nativeSrc":"2068:6:81","nodeType":"YulIdentifier","src":"2068:6:81"},{"kind":"number","nativeSrc":"2076:4:81","nodeType":"YulLiteral","src":"2076:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"2064:3:81","nodeType":"YulIdentifier","src":"2064:3:81"},"nativeSrc":"2064:17:81","nodeType":"YulFunctionCall","src":"2064:17:81"}],"functionName":{"name":"mstore","nativeSrc":"2046:6:81","nodeType":"YulIdentifier","src":"2046:6:81"},"nativeSrc":"2046:36:81","nodeType":"YulFunctionCall","src":"2046:36:81"},"nativeSrc":"2046:36:81","nodeType":"YulExpressionStatement","src":"2046:36:81"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1904:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1970:9:81","nodeType":"YulTypedName","src":"1970:9:81","type":""},{"name":"value0","nativeSrc":"1981:6:81","nodeType":"YulTypedName","src":"1981:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1992:4:81","nodeType":"YulTypedName","src":"1992:4:81","type":""}],"src":"1904:184:81"},{"body":{"nativeSrc":"2194:102:81","nodeType":"YulBlock","src":"2194:102:81","statements":[{"nativeSrc":"2204:26:81","nodeType":"YulAssignment","src":"2204:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2216:9:81","nodeType":"YulIdentifier","src":"2216:9:81"},{"kind":"number","nativeSrc":"2227:2:81","nodeType":"YulLiteral","src":"2227:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2212:3:81","nodeType":"YulIdentifier","src":"2212:3:81"},"nativeSrc":"2212:18:81","nodeType":"YulFunctionCall","src":"2212:18:81"},"variableNames":[{"name":"tail","nativeSrc":"2204:4:81","nodeType":"YulIdentifier","src":"2204:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2246:9:81","nodeType":"YulIdentifier","src":"2246:9:81"},{"arguments":[{"name":"value0","nativeSrc":"2261:6:81","nodeType":"YulIdentifier","src":"2261:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2277:3:81","nodeType":"YulLiteral","src":"2277:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"2282:1:81","nodeType":"YulLiteral","src":"2282:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2273:3:81","nodeType":"YulIdentifier","src":"2273:3:81"},"nativeSrc":"2273:11:81","nodeType":"YulFunctionCall","src":"2273:11:81"},{"kind":"number","nativeSrc":"2286:1:81","nodeType":"YulLiteral","src":"2286:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2269:3:81","nodeType":"YulIdentifier","src":"2269:3:81"},"nativeSrc":"2269:19:81","nodeType":"YulFunctionCall","src":"2269:19:81"}],"functionName":{"name":"and","nativeSrc":"2257:3:81","nodeType":"YulIdentifier","src":"2257:3:81"},"nativeSrc":"2257:32:81","nodeType":"YulFunctionCall","src":"2257:32:81"}],"functionName":{"name":"mstore","nativeSrc":"2239:6:81","nodeType":"YulIdentifier","src":"2239:6:81"},"nativeSrc":"2239:51:81","nodeType":"YulFunctionCall","src":"2239:51:81"},"nativeSrc":"2239:51:81","nodeType":"YulExpressionStatement","src":"2239:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2093:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2163:9:81","nodeType":"YulTypedName","src":"2163:9:81","type":""},{"name":"value0","nativeSrc":"2174:6:81","nodeType":"YulTypedName","src":"2174:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2185:4:81","nodeType":"YulTypedName","src":"2185:4:81","type":""}],"src":"2093:203:81"},{"body":{"nativeSrc":"2371:116:81","nodeType":"YulBlock","src":"2371:116:81","statements":[{"body":{"nativeSrc":"2417:16:81","nodeType":"YulBlock","src":"2417:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2426:1:81","nodeType":"YulLiteral","src":"2426:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2429:1:81","nodeType":"YulLiteral","src":"2429:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2419:6:81","nodeType":"YulIdentifier","src":"2419:6:81"},"nativeSrc":"2419:12:81","nodeType":"YulFunctionCall","src":"2419:12:81"},"nativeSrc":"2419:12:81","nodeType":"YulExpressionStatement","src":"2419:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2392:7:81","nodeType":"YulIdentifier","src":"2392:7:81"},{"name":"headStart","nativeSrc":"2401:9:81","nodeType":"YulIdentifier","src":"2401:9:81"}],"functionName":{"name":"sub","nativeSrc":"2388:3:81","nodeType":"YulIdentifier","src":"2388:3:81"},"nativeSrc":"2388:23:81","nodeType":"YulFunctionCall","src":"2388:23:81"},{"kind":"number","nativeSrc":"2413:2:81","nodeType":"YulLiteral","src":"2413:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2384:3:81","nodeType":"YulIdentifier","src":"2384:3:81"},"nativeSrc":"2384:32:81","nodeType":"YulFunctionCall","src":"2384:32:81"},"nativeSrc":"2381:52:81","nodeType":"YulIf","src":"2381:52:81"},{"nativeSrc":"2442:39:81","nodeType":"YulAssignment","src":"2442:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2471:9:81","nodeType":"YulIdentifier","src":"2471:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2452:18:81","nodeType":"YulIdentifier","src":"2452:18:81"},"nativeSrc":"2452:29:81","nodeType":"YulFunctionCall","src":"2452:29:81"},"variableNames":[{"name":"value0","nativeSrc":"2442:6:81","nodeType":"YulIdentifier","src":"2442:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"2301:186:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2337:9:81","nodeType":"YulTypedName","src":"2337:9:81","type":""},{"name":"dataEnd","nativeSrc":"2348:7:81","nodeType":"YulTypedName","src":"2348:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2360:6:81","nodeType":"YulTypedName","src":"2360:6:81","type":""}],"src":"2301:186:81"},{"body":{"nativeSrc":"2579:213:81","nodeType":"YulBlock","src":"2579:213:81","statements":[{"body":{"nativeSrc":"2625:16:81","nodeType":"YulBlock","src":"2625:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2634:1:81","nodeType":"YulLiteral","src":"2634:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2637:1:81","nodeType":"YulLiteral","src":"2637:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2627:6:81","nodeType":"YulIdentifier","src":"2627:6:81"},"nativeSrc":"2627:12:81","nodeType":"YulFunctionCall","src":"2627:12:81"},"nativeSrc":"2627:12:81","nodeType":"YulExpressionStatement","src":"2627:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2600:7:81","nodeType":"YulIdentifier","src":"2600:7:81"},{"name":"headStart","nativeSrc":"2609:9:81","nodeType":"YulIdentifier","src":"2609:9:81"}],"functionName":{"name":"sub","nativeSrc":"2596:3:81","nodeType":"YulIdentifier","src":"2596:3:81"},"nativeSrc":"2596:23:81","nodeType":"YulFunctionCall","src":"2596:23:81"},{"kind":"number","nativeSrc":"2621:2:81","nodeType":"YulLiteral","src":"2621:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2592:3:81","nodeType":"YulIdentifier","src":"2592:3:81"},"nativeSrc":"2592:32:81","nodeType":"YulFunctionCall","src":"2592:32:81"},"nativeSrc":"2589:52:81","nodeType":"YulIf","src":"2589:52:81"},{"nativeSrc":"2650:14:81","nodeType":"YulVariableDeclaration","src":"2650:14:81","value":{"kind":"number","nativeSrc":"2663:1:81","nodeType":"YulLiteral","src":"2663:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2654:5:81","nodeType":"YulTypedName","src":"2654:5:81","type":""}]},{"nativeSrc":"2673:32:81","nodeType":"YulAssignment","src":"2673:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2695:9:81","nodeType":"YulIdentifier","src":"2695:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2682:12:81","nodeType":"YulIdentifier","src":"2682:12:81"},"nativeSrc":"2682:23:81","nodeType":"YulFunctionCall","src":"2682:23:81"},"variableNames":[{"name":"value","nativeSrc":"2673:5:81","nodeType":"YulIdentifier","src":"2673:5:81"}]},{"nativeSrc":"2714:15:81","nodeType":"YulAssignment","src":"2714:15:81","value":{"name":"value","nativeSrc":"2724:5:81","nodeType":"YulIdentifier","src":"2724:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2714:6:81","nodeType":"YulIdentifier","src":"2714:6:81"}]},{"nativeSrc":"2738:48:81","nodeType":"YulAssignment","src":"2738:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2771:9:81","nodeType":"YulIdentifier","src":"2771:9:81"},{"kind":"number","nativeSrc":"2782:2:81","nodeType":"YulLiteral","src":"2782:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2767:3:81","nodeType":"YulIdentifier","src":"2767:3:81"},"nativeSrc":"2767:18:81","nodeType":"YulFunctionCall","src":"2767:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2748:18:81","nodeType":"YulIdentifier","src":"2748:18:81"},"nativeSrc":"2748:38:81","nodeType":"YulFunctionCall","src":"2748:38:81"},"variableNames":[{"name":"value1","nativeSrc":"2738:6:81","nodeType":"YulIdentifier","src":"2738:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"2492:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2537:9:81","nodeType":"YulTypedName","src":"2537:9:81","type":""},{"name":"dataEnd","nativeSrc":"2548:7:81","nodeType":"YulTypedName","src":"2548:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2560:6:81","nodeType":"YulTypedName","src":"2560:6:81","type":""},{"name":"value1","nativeSrc":"2568:6:81","nodeType":"YulTypedName","src":"2568:6:81","type":""}],"src":"2492:300:81"},{"body":{"nativeSrc":"2864:206:81","nodeType":"YulBlock","src":"2864:206:81","statements":[{"body":{"nativeSrc":"2910:16:81","nodeType":"YulBlock","src":"2910:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2919:1:81","nodeType":"YulLiteral","src":"2919:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2922:1:81","nodeType":"YulLiteral","src":"2922:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2912:6:81","nodeType":"YulIdentifier","src":"2912:6:81"},"nativeSrc":"2912:12:81","nodeType":"YulFunctionCall","src":"2912:12:81"},"nativeSrc":"2912:12:81","nodeType":"YulExpressionStatement","src":"2912:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2885:7:81","nodeType":"YulIdentifier","src":"2885:7:81"},{"name":"headStart","nativeSrc":"2894:9:81","nodeType":"YulIdentifier","src":"2894:9:81"}],"functionName":{"name":"sub","nativeSrc":"2881:3:81","nodeType":"YulIdentifier","src":"2881:3:81"},"nativeSrc":"2881:23:81","nodeType":"YulFunctionCall","src":"2881:23:81"},{"kind":"number","nativeSrc":"2906:2:81","nodeType":"YulLiteral","src":"2906:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2877:3:81","nodeType":"YulIdentifier","src":"2877:3:81"},"nativeSrc":"2877:32:81","nodeType":"YulFunctionCall","src":"2877:32:81"},"nativeSrc":"2874:52:81","nodeType":"YulIf","src":"2874:52:81"},{"nativeSrc":"2935:36:81","nodeType":"YulVariableDeclaration","src":"2935:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2961:9:81","nodeType":"YulIdentifier","src":"2961:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2948:12:81","nodeType":"YulIdentifier","src":"2948:12:81"},"nativeSrc":"2948:23:81","nodeType":"YulFunctionCall","src":"2948:23:81"},"variables":[{"name":"value","nativeSrc":"2939:5:81","nodeType":"YulTypedName","src":"2939:5:81","type":""}]},{"body":{"nativeSrc":"3024:16:81","nodeType":"YulBlock","src":"3024:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3033:1:81","nodeType":"YulLiteral","src":"3033:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3036:1:81","nodeType":"YulLiteral","src":"3036:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3026:6:81","nodeType":"YulIdentifier","src":"3026:6:81"},"nativeSrc":"3026:12:81","nodeType":"YulFunctionCall","src":"3026:12:81"},"nativeSrc":"3026:12:81","nodeType":"YulExpressionStatement","src":"3026:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2993:5:81","nodeType":"YulIdentifier","src":"2993:5:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3014:5:81","nodeType":"YulIdentifier","src":"3014:5:81"}],"functionName":{"name":"iszero","nativeSrc":"3007:6:81","nodeType":"YulIdentifier","src":"3007:6:81"},"nativeSrc":"3007:13:81","nodeType":"YulFunctionCall","src":"3007:13:81"}],"functionName":{"name":"iszero","nativeSrc":"3000:6:81","nodeType":"YulIdentifier","src":"3000:6:81"},"nativeSrc":"3000:21:81","nodeType":"YulFunctionCall","src":"3000:21:81"}],"functionName":{"name":"eq","nativeSrc":"2990:2:81","nodeType":"YulIdentifier","src":"2990:2:81"},"nativeSrc":"2990:32:81","nodeType":"YulFunctionCall","src":"2990:32:81"}],"functionName":{"name":"iszero","nativeSrc":"2983:6:81","nodeType":"YulIdentifier","src":"2983:6:81"},"nativeSrc":"2983:40:81","nodeType":"YulFunctionCall","src":"2983:40:81"},"nativeSrc":"2980:60:81","nodeType":"YulIf","src":"2980:60:81"},{"nativeSrc":"3049:15:81","nodeType":"YulAssignment","src":"3049:15:81","value":{"name":"value","nativeSrc":"3059:5:81","nodeType":"YulIdentifier","src":"3059:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3049:6:81","nodeType":"YulIdentifier","src":"3049:6:81"}]}]},"name":"abi_decode_tuple_t_bool","nativeSrc":"2797:273:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2830:9:81","nodeType":"YulTypedName","src":"2830:9:81","type":""},{"name":"dataEnd","nativeSrc":"2841:7:81","nodeType":"YulTypedName","src":"2841:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2853:6:81","nodeType":"YulTypedName","src":"2853:6:81","type":""}],"src":"2797:273:81"},{"body":{"nativeSrc":"3179:270:81","nodeType":"YulBlock","src":"3179:270:81","statements":[{"body":{"nativeSrc":"3225:16:81","nodeType":"YulBlock","src":"3225:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3234:1:81","nodeType":"YulLiteral","src":"3234:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3237:1:81","nodeType":"YulLiteral","src":"3237:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3227:6:81","nodeType":"YulIdentifier","src":"3227:6:81"},"nativeSrc":"3227:12:81","nodeType":"YulFunctionCall","src":"3227:12:81"},"nativeSrc":"3227:12:81","nodeType":"YulExpressionStatement","src":"3227:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3200:7:81","nodeType":"YulIdentifier","src":"3200:7:81"},{"name":"headStart","nativeSrc":"3209:9:81","nodeType":"YulIdentifier","src":"3209:9:81"}],"functionName":{"name":"sub","nativeSrc":"3196:3:81","nodeType":"YulIdentifier","src":"3196:3:81"},"nativeSrc":"3196:23:81","nodeType":"YulFunctionCall","src":"3196:23:81"},{"kind":"number","nativeSrc":"3221:2:81","nodeType":"YulLiteral","src":"3221:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3192:3:81","nodeType":"YulIdentifier","src":"3192:3:81"},"nativeSrc":"3192:32:81","nodeType":"YulFunctionCall","src":"3192:32:81"},"nativeSrc":"3189:52:81","nodeType":"YulIf","src":"3189:52:81"},{"nativeSrc":"3250:14:81","nodeType":"YulVariableDeclaration","src":"3250:14:81","value":{"kind":"number","nativeSrc":"3263:1:81","nodeType":"YulLiteral","src":"3263:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3254:5:81","nodeType":"YulTypedName","src":"3254:5:81","type":""}]},{"nativeSrc":"3273:32:81","nodeType":"YulAssignment","src":"3273:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3295:9:81","nodeType":"YulIdentifier","src":"3295:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3282:12:81","nodeType":"YulIdentifier","src":"3282:12:81"},"nativeSrc":"3282:23:81","nodeType":"YulFunctionCall","src":"3282:23:81"},"variableNames":[{"name":"value","nativeSrc":"3273:5:81","nodeType":"YulIdentifier","src":"3273:5:81"}]},{"nativeSrc":"3314:15:81","nodeType":"YulAssignment","src":"3314:15:81","value":{"name":"value","nativeSrc":"3324:5:81","nodeType":"YulIdentifier","src":"3324:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3314:6:81","nodeType":"YulIdentifier","src":"3314:6:81"}]},{"nativeSrc":"3338:48:81","nodeType":"YulAssignment","src":"3338:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3371:9:81","nodeType":"YulIdentifier","src":"3371:9:81"},{"kind":"number","nativeSrc":"3382:2:81","nodeType":"YulLiteral","src":"3382:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3367:3:81","nodeType":"YulIdentifier","src":"3367:3:81"},"nativeSrc":"3367:18:81","nodeType":"YulFunctionCall","src":"3367:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3348:18:81","nodeType":"YulIdentifier","src":"3348:18:81"},"nativeSrc":"3348:38:81","nodeType":"YulFunctionCall","src":"3348:38:81"},"variableNames":[{"name":"value1","nativeSrc":"3338:6:81","nodeType":"YulIdentifier","src":"3338:6:81"}]},{"nativeSrc":"3395:48:81","nodeType":"YulAssignment","src":"3395:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3428:9:81","nodeType":"YulIdentifier","src":"3428:9:81"},{"kind":"number","nativeSrc":"3439:2:81","nodeType":"YulLiteral","src":"3439:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3424:3:81","nodeType":"YulIdentifier","src":"3424:3:81"},"nativeSrc":"3424:18:81","nodeType":"YulFunctionCall","src":"3424:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3405:18:81","nodeType":"YulIdentifier","src":"3405:18:81"},"nativeSrc":"3405:38:81","nodeType":"YulFunctionCall","src":"3405:38:81"},"variableNames":[{"name":"value2","nativeSrc":"3395:6:81","nodeType":"YulIdentifier","src":"3395:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"3075:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3129:9:81","nodeType":"YulTypedName","src":"3129:9:81","type":""},{"name":"dataEnd","nativeSrc":"3140:7:81","nodeType":"YulTypedName","src":"3140:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3152:6:81","nodeType":"YulTypedName","src":"3152:6:81","type":""},{"name":"value1","nativeSrc":"3160:6:81","nodeType":"YulTypedName","src":"3160:6:81","type":""},{"name":"value2","nativeSrc":"3168:6:81","nodeType":"YulTypedName","src":"3168:6:81","type":""}],"src":"3075:374:81"},{"body":{"nativeSrc":"3523:110:81","nodeType":"YulBlock","src":"3523:110:81","statements":[{"body":{"nativeSrc":"3569:16:81","nodeType":"YulBlock","src":"3569:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3578:1:81","nodeType":"YulLiteral","src":"3578:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3581:1:81","nodeType":"YulLiteral","src":"3581:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3571:6:81","nodeType":"YulIdentifier","src":"3571:6:81"},"nativeSrc":"3571:12:81","nodeType":"YulFunctionCall","src":"3571:12:81"},"nativeSrc":"3571:12:81","nodeType":"YulExpressionStatement","src":"3571:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3544:7:81","nodeType":"YulIdentifier","src":"3544:7:81"},{"name":"headStart","nativeSrc":"3553:9:81","nodeType":"YulIdentifier","src":"3553:9:81"}],"functionName":{"name":"sub","nativeSrc":"3540:3:81","nodeType":"YulIdentifier","src":"3540:3:81"},"nativeSrc":"3540:23:81","nodeType":"YulFunctionCall","src":"3540:23:81"},{"kind":"number","nativeSrc":"3565:2:81","nodeType":"YulLiteral","src":"3565:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3536:3:81","nodeType":"YulIdentifier","src":"3536:3:81"},"nativeSrc":"3536:32:81","nodeType":"YulFunctionCall","src":"3536:32:81"},"nativeSrc":"3533:52:81","nodeType":"YulIf","src":"3533:52:81"},{"nativeSrc":"3594:33:81","nodeType":"YulAssignment","src":"3594:33:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3617:9:81","nodeType":"YulIdentifier","src":"3617:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3604:12:81","nodeType":"YulIdentifier","src":"3604:12:81"},"nativeSrc":"3604:23:81","nodeType":"YulFunctionCall","src":"3604:23:81"},"variableNames":[{"name":"value0","nativeSrc":"3594:6:81","nodeType":"YulIdentifier","src":"3594:6:81"}]}]},"name":"abi_decode_tuple_t_int256","nativeSrc":"3454:179:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3489:9:81","nodeType":"YulTypedName","src":"3489:9:81","type":""},{"name":"dataEnd","nativeSrc":"3500:7:81","nodeType":"YulTypedName","src":"3500:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3512:6:81","nodeType":"YulTypedName","src":"3512:6:81","type":""}],"src":"3454:179:81"},{"body":{"nativeSrc":"3744:289:81","nodeType":"YulBlock","src":"3744:289:81","statements":[{"body":{"nativeSrc":"3790:16:81","nodeType":"YulBlock","src":"3790:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3799:1:81","nodeType":"YulLiteral","src":"3799:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3802:1:81","nodeType":"YulLiteral","src":"3802:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3792:6:81","nodeType":"YulIdentifier","src":"3792:6:81"},"nativeSrc":"3792:12:81","nodeType":"YulFunctionCall","src":"3792:12:81"},"nativeSrc":"3792:12:81","nodeType":"YulExpressionStatement","src":"3792:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3765:7:81","nodeType":"YulIdentifier","src":"3765:7:81"},{"name":"headStart","nativeSrc":"3774:9:81","nodeType":"YulIdentifier","src":"3774:9:81"}],"functionName":{"name":"sub","nativeSrc":"3761:3:81","nodeType":"YulIdentifier","src":"3761:3:81"},"nativeSrc":"3761:23:81","nodeType":"YulFunctionCall","src":"3761:23:81"},{"kind":"number","nativeSrc":"3786:2:81","nodeType":"YulLiteral","src":"3786:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3757:3:81","nodeType":"YulIdentifier","src":"3757:3:81"},"nativeSrc":"3757:32:81","nodeType":"YulFunctionCall","src":"3757:32:81"},"nativeSrc":"3754:52:81","nodeType":"YulIf","src":"3754:52:81"},{"nativeSrc":"3815:36:81","nodeType":"YulVariableDeclaration","src":"3815:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3841:9:81","nodeType":"YulIdentifier","src":"3841:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3828:12:81","nodeType":"YulIdentifier","src":"3828:12:81"},"nativeSrc":"3828:23:81","nodeType":"YulFunctionCall","src":"3828:23:81"},"variables":[{"name":"value","nativeSrc":"3819:5:81","nodeType":"YulTypedName","src":"3819:5:81","type":""}]},{"body":{"nativeSrc":"3884:16:81","nodeType":"YulBlock","src":"3884:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3893:1:81","nodeType":"YulLiteral","src":"3893:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3896:1:81","nodeType":"YulLiteral","src":"3896:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3886:6:81","nodeType":"YulIdentifier","src":"3886:6:81"},"nativeSrc":"3886:12:81","nodeType":"YulFunctionCall","src":"3886:12:81"},"nativeSrc":"3886:12:81","nodeType":"YulExpressionStatement","src":"3886:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3873:5:81","nodeType":"YulIdentifier","src":"3873:5:81"},{"kind":"number","nativeSrc":"3880:1:81","nodeType":"YulLiteral","src":"3880:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"3870:2:81","nodeType":"YulIdentifier","src":"3870:2:81"},"nativeSrc":"3870:12:81","nodeType":"YulFunctionCall","src":"3870:12:81"}],"functionName":{"name":"iszero","nativeSrc":"3863:6:81","nodeType":"YulIdentifier","src":"3863:6:81"},"nativeSrc":"3863:20:81","nodeType":"YulFunctionCall","src":"3863:20:81"},"nativeSrc":"3860:40:81","nodeType":"YulIf","src":"3860:40:81"},{"nativeSrc":"3909:15:81","nodeType":"YulAssignment","src":"3909:15:81","value":{"name":"value","nativeSrc":"3919:5:81","nodeType":"YulIdentifier","src":"3919:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3909:6:81","nodeType":"YulIdentifier","src":"3909:6:81"}]},{"nativeSrc":"3933:16:81","nodeType":"YulVariableDeclaration","src":"3933:16:81","value":{"kind":"number","nativeSrc":"3948:1:81","nodeType":"YulLiteral","src":"3948:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3937:7:81","nodeType":"YulTypedName","src":"3937:7:81","type":""}]},{"nativeSrc":"3958:43:81","nodeType":"YulAssignment","src":"3958:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3986:9:81","nodeType":"YulIdentifier","src":"3986:9:81"},{"kind":"number","nativeSrc":"3997:2:81","nodeType":"YulLiteral","src":"3997:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3982:3:81","nodeType":"YulIdentifier","src":"3982:3:81"},"nativeSrc":"3982:18:81","nodeType":"YulFunctionCall","src":"3982:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3969:12:81","nodeType":"YulIdentifier","src":"3969:12:81"},"nativeSrc":"3969:32:81","nodeType":"YulFunctionCall","src":"3969:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"3958:7:81","nodeType":"YulIdentifier","src":"3958:7:81"}]},{"nativeSrc":"4010:17:81","nodeType":"YulAssignment","src":"4010:17:81","value":{"name":"value_1","nativeSrc":"4020:7:81","nodeType":"YulIdentifier","src":"4020:7:81"},"variableNames":[{"name":"value1","nativeSrc":"4010:6:81","nodeType":"YulIdentifier","src":"4010:6:81"}]}]},"name":"abi_decode_tuple_t_enum$_OverrideOption_$4476t_uint256","nativeSrc":"3638:395:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3702:9:81","nodeType":"YulTypedName","src":"3702:9:81","type":""},{"name":"dataEnd","nativeSrc":"3713:7:81","nodeType":"YulTypedName","src":"3713:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3725:6:81","nodeType":"YulTypedName","src":"3725:6:81","type":""},{"name":"value1","nativeSrc":"3733:6:81","nodeType":"YulTypedName","src":"3733:6:81","type":""}],"src":"3638:395:81"},{"body":{"nativeSrc":"4125:173:81","nodeType":"YulBlock","src":"4125:173:81","statements":[{"body":{"nativeSrc":"4171:16:81","nodeType":"YulBlock","src":"4171:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4180:1:81","nodeType":"YulLiteral","src":"4180:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4183:1:81","nodeType":"YulLiteral","src":"4183:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4173:6:81","nodeType":"YulIdentifier","src":"4173:6:81"},"nativeSrc":"4173:12:81","nodeType":"YulFunctionCall","src":"4173:12:81"},"nativeSrc":"4173:12:81","nodeType":"YulExpressionStatement","src":"4173:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4146:7:81","nodeType":"YulIdentifier","src":"4146:7:81"},{"name":"headStart","nativeSrc":"4155:9:81","nodeType":"YulIdentifier","src":"4155:9:81"}],"functionName":{"name":"sub","nativeSrc":"4142:3:81","nodeType":"YulIdentifier","src":"4142:3:81"},"nativeSrc":"4142:23:81","nodeType":"YulFunctionCall","src":"4142:23:81"},{"kind":"number","nativeSrc":"4167:2:81","nodeType":"YulLiteral","src":"4167:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4138:3:81","nodeType":"YulIdentifier","src":"4138:3:81"},"nativeSrc":"4138:32:81","nodeType":"YulFunctionCall","src":"4138:32:81"},"nativeSrc":"4135:52:81","nodeType":"YulIf","src":"4135:52:81"},{"nativeSrc":"4196:39:81","nodeType":"YulAssignment","src":"4196:39:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4225:9:81","nodeType":"YulIdentifier","src":"4225:9:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4206:18:81","nodeType":"YulIdentifier","src":"4206:18:81"},"nativeSrc":"4206:29:81","nodeType":"YulFunctionCall","src":"4206:29:81"},"variableNames":[{"name":"value0","nativeSrc":"4196:6:81","nodeType":"YulIdentifier","src":"4196:6:81"}]},{"nativeSrc":"4244:48:81","nodeType":"YulAssignment","src":"4244:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4277:9:81","nodeType":"YulIdentifier","src":"4277:9:81"},{"kind":"number","nativeSrc":"4288:2:81","nodeType":"YulLiteral","src":"4288:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4273:3:81","nodeType":"YulIdentifier","src":"4273:3:81"},"nativeSrc":"4273:18:81","nodeType":"YulFunctionCall","src":"4273:18:81"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4254:18:81","nodeType":"YulIdentifier","src":"4254:18:81"},"nativeSrc":"4254:38:81","nodeType":"YulFunctionCall","src":"4254:38:81"},"variableNames":[{"name":"value1","nativeSrc":"4244:6:81","nodeType":"YulIdentifier","src":"4244:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"4038:260:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4083:9:81","nodeType":"YulTypedName","src":"4083:9:81","type":""},{"name":"dataEnd","nativeSrc":"4094:7:81","nodeType":"YulTypedName","src":"4094:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4106:6:81","nodeType":"YulTypedName","src":"4106:6:81","type":""},{"name":"value1","nativeSrc":"4114:6:81","nodeType":"YulTypedName","src":"4114:6:81","type":""}],"src":"4038:260:81"},{"body":{"nativeSrc":"4384:103:81","nodeType":"YulBlock","src":"4384:103:81","statements":[{"body":{"nativeSrc":"4430:16:81","nodeType":"YulBlock","src":"4430:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4439:1:81","nodeType":"YulLiteral","src":"4439:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4442:1:81","nodeType":"YulLiteral","src":"4442:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4432:6:81","nodeType":"YulIdentifier","src":"4432:6:81"},"nativeSrc":"4432:12:81","nodeType":"YulFunctionCall","src":"4432:12:81"},"nativeSrc":"4432:12:81","nodeType":"YulExpressionStatement","src":"4432:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4405:7:81","nodeType":"YulIdentifier","src":"4405:7:81"},{"name":"headStart","nativeSrc":"4414:9:81","nodeType":"YulIdentifier","src":"4414:9:81"}],"functionName":{"name":"sub","nativeSrc":"4401:3:81","nodeType":"YulIdentifier","src":"4401:3:81"},"nativeSrc":"4401:23:81","nodeType":"YulFunctionCall","src":"4401:23:81"},{"kind":"number","nativeSrc":"4426:2:81","nodeType":"YulLiteral","src":"4426:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4397:3:81","nodeType":"YulIdentifier","src":"4397:3:81"},"nativeSrc":"4397:32:81","nodeType":"YulFunctionCall","src":"4397:32:81"},"nativeSrc":"4394:52:81","nodeType":"YulIf","src":"4394:52:81"},{"nativeSrc":"4455:26:81","nodeType":"YulAssignment","src":"4455:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4471:9:81","nodeType":"YulIdentifier","src":"4471:9:81"}],"functionName":{"name":"mload","nativeSrc":"4465:5:81","nodeType":"YulIdentifier","src":"4465:5:81"},"nativeSrc":"4465:16:81","nodeType":"YulFunctionCall","src":"4465:16:81"},"variableNames":[{"name":"value0","nativeSrc":"4455:6:81","nodeType":"YulIdentifier","src":"4455:6:81"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"4303:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4350:9:81","nodeType":"YulTypedName","src":"4350:9:81","type":""},{"name":"dataEnd","nativeSrc":"4361:7:81","nodeType":"YulTypedName","src":"4361:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4373:6:81","nodeType":"YulTypedName","src":"4373:6:81","type":""}],"src":"4303:184:81"},{"body":{"nativeSrc":"4547:325:81","nodeType":"YulBlock","src":"4547:325:81","statements":[{"nativeSrc":"4557:22:81","nodeType":"YulAssignment","src":"4557:22:81","value":{"arguments":[{"kind":"number","nativeSrc":"4571:1:81","nodeType":"YulLiteral","src":"4571:1:81","type":"","value":"1"},{"name":"data","nativeSrc":"4574:4:81","nodeType":"YulIdentifier","src":"4574:4:81"}],"functionName":{"name":"shr","nativeSrc":"4567:3:81","nodeType":"YulIdentifier","src":"4567:3:81"},"nativeSrc":"4567:12:81","nodeType":"YulFunctionCall","src":"4567:12:81"},"variableNames":[{"name":"length","nativeSrc":"4557:6:81","nodeType":"YulIdentifier","src":"4557:6:81"}]},{"nativeSrc":"4588:38:81","nodeType":"YulVariableDeclaration","src":"4588:38:81","value":{"arguments":[{"name":"data","nativeSrc":"4618:4:81","nodeType":"YulIdentifier","src":"4618:4:81"},{"kind":"number","nativeSrc":"4624:1:81","nodeType":"YulLiteral","src":"4624:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"4614:3:81","nodeType":"YulIdentifier","src":"4614:3:81"},"nativeSrc":"4614:12:81","nodeType":"YulFunctionCall","src":"4614:12:81"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"4592:18:81","nodeType":"YulTypedName","src":"4592:18:81","type":""}]},{"body":{"nativeSrc":"4665:31:81","nodeType":"YulBlock","src":"4665:31:81","statements":[{"nativeSrc":"4667:27:81","nodeType":"YulAssignment","src":"4667:27:81","value":{"arguments":[{"name":"length","nativeSrc":"4681:6:81","nodeType":"YulIdentifier","src":"4681:6:81"},{"kind":"number","nativeSrc":"4689:4:81","nodeType":"YulLiteral","src":"4689:4:81","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"4677:3:81","nodeType":"YulIdentifier","src":"4677:3:81"},"nativeSrc":"4677:17:81","nodeType":"YulFunctionCall","src":"4677:17:81"},"variableNames":[{"name":"length","nativeSrc":"4667:6:81","nodeType":"YulIdentifier","src":"4667:6:81"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4645:18:81","nodeType":"YulIdentifier","src":"4645:18:81"}],"functionName":{"name":"iszero","nativeSrc":"4638:6:81","nodeType":"YulIdentifier","src":"4638:6:81"},"nativeSrc":"4638:26:81","nodeType":"YulFunctionCall","src":"4638:26:81"},"nativeSrc":"4635:61:81","nodeType":"YulIf","src":"4635:61:81"},{"body":{"nativeSrc":"4755:111:81","nodeType":"YulBlock","src":"4755:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4776:1:81","nodeType":"YulLiteral","src":"4776:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4783:3:81","nodeType":"YulLiteral","src":"4783:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4788:10:81","nodeType":"YulLiteral","src":"4788:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4779:3:81","nodeType":"YulIdentifier","src":"4779:3:81"},"nativeSrc":"4779:20:81","nodeType":"YulFunctionCall","src":"4779:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4769:6:81","nodeType":"YulIdentifier","src":"4769:6:81"},"nativeSrc":"4769:31:81","nodeType":"YulFunctionCall","src":"4769:31:81"},"nativeSrc":"4769:31:81","nodeType":"YulExpressionStatement","src":"4769:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4820:1:81","nodeType":"YulLiteral","src":"4820:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4823:4:81","nodeType":"YulLiteral","src":"4823:4:81","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"4813:6:81","nodeType":"YulIdentifier","src":"4813:6:81"},"nativeSrc":"4813:15:81","nodeType":"YulFunctionCall","src":"4813:15:81"},"nativeSrc":"4813:15:81","nodeType":"YulExpressionStatement","src":"4813:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4848:1:81","nodeType":"YulLiteral","src":"4848:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4851:4:81","nodeType":"YulLiteral","src":"4851:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4841:6:81","nodeType":"YulIdentifier","src":"4841:6:81"},"nativeSrc":"4841:15:81","nodeType":"YulFunctionCall","src":"4841:15:81"},"nativeSrc":"4841:15:81","nodeType":"YulExpressionStatement","src":"4841:15:81"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4711:18:81","nodeType":"YulIdentifier","src":"4711:18:81"},{"arguments":[{"name":"length","nativeSrc":"4734:6:81","nodeType":"YulIdentifier","src":"4734:6:81"},{"kind":"number","nativeSrc":"4742:2:81","nodeType":"YulLiteral","src":"4742:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"4731:2:81","nodeType":"YulIdentifier","src":"4731:2:81"},"nativeSrc":"4731:14:81","nodeType":"YulFunctionCall","src":"4731:14:81"}],"functionName":{"name":"eq","nativeSrc":"4708:2:81","nodeType":"YulIdentifier","src":"4708:2:81"},"nativeSrc":"4708:38:81","nodeType":"YulFunctionCall","src":"4708:38:81"},"nativeSrc":"4705:161:81","nodeType":"YulIf","src":"4705:161:81"}]},"name":"extract_byte_array_length","nativeSrc":"4492:380:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"4527:4:81","nodeType":"YulTypedName","src":"4527:4:81","type":""}],"returnVariables":[{"name":"length","nativeSrc":"4536:6:81","nodeType":"YulTypedName","src":"4536:6:81","type":""}],"src":"4492:380:81"},{"body":{"nativeSrc":"4909:95:81","nodeType":"YulBlock","src":"4909:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4926:1:81","nodeType":"YulLiteral","src":"4926:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4933:3:81","nodeType":"YulLiteral","src":"4933:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4938:10:81","nodeType":"YulLiteral","src":"4938:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4929:3:81","nodeType":"YulIdentifier","src":"4929:3:81"},"nativeSrc":"4929:20:81","nodeType":"YulFunctionCall","src":"4929:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4919:6:81","nodeType":"YulIdentifier","src":"4919:6:81"},"nativeSrc":"4919:31:81","nodeType":"YulFunctionCall","src":"4919:31:81"},"nativeSrc":"4919:31:81","nodeType":"YulExpressionStatement","src":"4919:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4966:1:81","nodeType":"YulLiteral","src":"4966:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4969:4:81","nodeType":"YulLiteral","src":"4969:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4959:6:81","nodeType":"YulIdentifier","src":"4959:6:81"},"nativeSrc":"4959:15:81","nodeType":"YulFunctionCall","src":"4959:15:81"},"nativeSrc":"4959:15:81","nodeType":"YulExpressionStatement","src":"4959:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4990:1:81","nodeType":"YulLiteral","src":"4990:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4993:4:81","nodeType":"YulLiteral","src":"4993:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4983:6:81","nodeType":"YulIdentifier","src":"4983:6:81"},"nativeSrc":"4983:15:81","nodeType":"YulFunctionCall","src":"4983:15:81"},"nativeSrc":"4983:15:81","nodeType":"YulExpressionStatement","src":"4983:15:81"}]},"name":"panic_error_0x11","nativeSrc":"4877:127:81","nodeType":"YulFunctionDefinition","src":"4877:127:81"},{"body":{"nativeSrc":"5055:102:81","nodeType":"YulBlock","src":"5055:102:81","statements":[{"nativeSrc":"5065:38:81","nodeType":"YulAssignment","src":"5065:38:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"5080:1:81","nodeType":"YulIdentifier","src":"5080:1:81"},{"kind":"number","nativeSrc":"5083:4:81","nodeType":"YulLiteral","src":"5083:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"5076:3:81","nodeType":"YulIdentifier","src":"5076:3:81"},"nativeSrc":"5076:12:81","nodeType":"YulFunctionCall","src":"5076:12:81"},{"arguments":[{"name":"y","nativeSrc":"5094:1:81","nodeType":"YulIdentifier","src":"5094:1:81"},{"kind":"number","nativeSrc":"5097:4:81","nodeType":"YulLiteral","src":"5097:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"5090:3:81","nodeType":"YulIdentifier","src":"5090:3:81"},"nativeSrc":"5090:12:81","nodeType":"YulFunctionCall","src":"5090:12:81"}],"functionName":{"name":"add","nativeSrc":"5072:3:81","nodeType":"YulIdentifier","src":"5072:3:81"},"nativeSrc":"5072:31:81","nodeType":"YulFunctionCall","src":"5072:31:81"},"variableNames":[{"name":"sum","nativeSrc":"5065:3:81","nodeType":"YulIdentifier","src":"5065:3:81"}]},{"body":{"nativeSrc":"5129:22:81","nodeType":"YulBlock","src":"5129:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5131:16:81","nodeType":"YulIdentifier","src":"5131:16:81"},"nativeSrc":"5131:18:81","nodeType":"YulFunctionCall","src":"5131:18:81"},"nativeSrc":"5131:18:81","nodeType":"YulExpressionStatement","src":"5131:18:81"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"5118:3:81","nodeType":"YulIdentifier","src":"5118:3:81"},{"kind":"number","nativeSrc":"5123:4:81","nodeType":"YulLiteral","src":"5123:4:81","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"5115:2:81","nodeType":"YulIdentifier","src":"5115:2:81"},"nativeSrc":"5115:13:81","nodeType":"YulFunctionCall","src":"5115:13:81"},"nativeSrc":"5112:39:81","nodeType":"YulIf","src":"5112:39:81"}]},"name":"checked_add_t_uint8","nativeSrc":"5009:148:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5038:1:81","nodeType":"YulTypedName","src":"5038:1:81","type":""},{"name":"y","nativeSrc":"5041:1:81","nodeType":"YulTypedName","src":"5041:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"5047:3:81","nodeType":"YulTypedName","src":"5047:3:81","type":""}],"src":"5009:148:81"},{"body":{"nativeSrc":"5211:79:81","nodeType":"YulBlock","src":"5211:79:81","statements":[{"nativeSrc":"5221:17:81","nodeType":"YulAssignment","src":"5221:17:81","value":{"arguments":[{"name":"x","nativeSrc":"5233:1:81","nodeType":"YulIdentifier","src":"5233:1:81"},{"name":"y","nativeSrc":"5236:1:81","nodeType":"YulIdentifier","src":"5236:1:81"}],"functionName":{"name":"sub","nativeSrc":"5229:3:81","nodeType":"YulIdentifier","src":"5229:3:81"},"nativeSrc":"5229:9:81","nodeType":"YulFunctionCall","src":"5229:9:81"},"variableNames":[{"name":"diff","nativeSrc":"5221:4:81","nodeType":"YulIdentifier","src":"5221:4:81"}]},{"body":{"nativeSrc":"5262:22:81","nodeType":"YulBlock","src":"5262:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5264:16:81","nodeType":"YulIdentifier","src":"5264:16:81"},"nativeSrc":"5264:18:81","nodeType":"YulFunctionCall","src":"5264:18:81"},"nativeSrc":"5264:18:81","nodeType":"YulExpressionStatement","src":"5264:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"5253:4:81","nodeType":"YulIdentifier","src":"5253:4:81"},{"name":"x","nativeSrc":"5259:1:81","nodeType":"YulIdentifier","src":"5259:1:81"}],"functionName":{"name":"gt","nativeSrc":"5250:2:81","nodeType":"YulIdentifier","src":"5250:2:81"},"nativeSrc":"5250:11:81","nodeType":"YulFunctionCall","src":"5250:11:81"},"nativeSrc":"5247:37:81","nodeType":"YulIf","src":"5247:37:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"5162:128:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5193:1:81","nodeType":"YulTypedName","src":"5193:1:81","type":""},{"name":"y","nativeSrc":"5196:1:81","nodeType":"YulTypedName","src":"5196:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5202:4:81","nodeType":"YulTypedName","src":"5202:4:81","type":""}],"src":"5162:128:81"},{"body":{"nativeSrc":"5452:188:81","nodeType":"YulBlock","src":"5452:188:81","statements":[{"nativeSrc":"5462:26:81","nodeType":"YulAssignment","src":"5462:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5474:9:81","nodeType":"YulIdentifier","src":"5474:9:81"},{"kind":"number","nativeSrc":"5485:2:81","nodeType":"YulLiteral","src":"5485:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5470:3:81","nodeType":"YulIdentifier","src":"5470:3:81"},"nativeSrc":"5470:18:81","nodeType":"YulFunctionCall","src":"5470:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5462:4:81","nodeType":"YulIdentifier","src":"5462:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5504:9:81","nodeType":"YulIdentifier","src":"5504:9:81"},{"arguments":[{"name":"value0","nativeSrc":"5519:6:81","nodeType":"YulIdentifier","src":"5519:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5535:3:81","nodeType":"YulLiteral","src":"5535:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"5540:1:81","nodeType":"YulLiteral","src":"5540:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5531:3:81","nodeType":"YulIdentifier","src":"5531:3:81"},"nativeSrc":"5531:11:81","nodeType":"YulFunctionCall","src":"5531:11:81"},{"kind":"number","nativeSrc":"5544:1:81","nodeType":"YulLiteral","src":"5544:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5527:3:81","nodeType":"YulIdentifier","src":"5527:3:81"},"nativeSrc":"5527:19:81","nodeType":"YulFunctionCall","src":"5527:19:81"}],"functionName":{"name":"and","nativeSrc":"5515:3:81","nodeType":"YulIdentifier","src":"5515:3:81"},"nativeSrc":"5515:32:81","nodeType":"YulFunctionCall","src":"5515:32:81"}],"functionName":{"name":"mstore","nativeSrc":"5497:6:81","nodeType":"YulIdentifier","src":"5497:6:81"},"nativeSrc":"5497:51:81","nodeType":"YulFunctionCall","src":"5497:51:81"},"nativeSrc":"5497:51:81","nodeType":"YulExpressionStatement","src":"5497:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5568:9:81","nodeType":"YulIdentifier","src":"5568:9:81"},{"kind":"number","nativeSrc":"5579:2:81","nodeType":"YulLiteral","src":"5579:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5564:3:81","nodeType":"YulIdentifier","src":"5564:3:81"},"nativeSrc":"5564:18:81","nodeType":"YulFunctionCall","src":"5564:18:81"},{"name":"value1","nativeSrc":"5584:6:81","nodeType":"YulIdentifier","src":"5584:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5557:6:81","nodeType":"YulIdentifier","src":"5557:6:81"},"nativeSrc":"5557:34:81","nodeType":"YulFunctionCall","src":"5557:34:81"},"nativeSrc":"5557:34:81","nodeType":"YulExpressionStatement","src":"5557:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5611:9:81","nodeType":"YulIdentifier","src":"5611:9:81"},{"kind":"number","nativeSrc":"5622:2:81","nodeType":"YulLiteral","src":"5622:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5607:3:81","nodeType":"YulIdentifier","src":"5607:3:81"},"nativeSrc":"5607:18:81","nodeType":"YulFunctionCall","src":"5607:18:81"},{"name":"value2","nativeSrc":"5627:6:81","nodeType":"YulIdentifier","src":"5627:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5600:6:81","nodeType":"YulIdentifier","src":"5600:6:81"},"nativeSrc":"5600:34:81","nodeType":"YulFunctionCall","src":"5600:34:81"},"nativeSrc":"5600:34:81","nodeType":"YulExpressionStatement","src":"5600:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"5295:345:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5405:9:81","nodeType":"YulTypedName","src":"5405:9:81","type":""},{"name":"value2","nativeSrc":"5416:6:81","nodeType":"YulTypedName","src":"5416:6:81","type":""},{"name":"value1","nativeSrc":"5424:6:81","nodeType":"YulTypedName","src":"5424:6:81","type":""},{"name":"value0","nativeSrc":"5432:6:81","nodeType":"YulTypedName","src":"5432:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5443:4:81","nodeType":"YulTypedName","src":"5443:4:81","type":""}],"src":"5295:345:81"},{"body":{"nativeSrc":"5774:145:81","nodeType":"YulBlock","src":"5774:145:81","statements":[{"nativeSrc":"5784:26:81","nodeType":"YulAssignment","src":"5784:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5796:9:81","nodeType":"YulIdentifier","src":"5796:9:81"},{"kind":"number","nativeSrc":"5807:2:81","nodeType":"YulLiteral","src":"5807:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5792:3:81","nodeType":"YulIdentifier","src":"5792:3:81"},"nativeSrc":"5792:18:81","nodeType":"YulFunctionCall","src":"5792:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5784:4:81","nodeType":"YulIdentifier","src":"5784:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5826:9:81","nodeType":"YulIdentifier","src":"5826:9:81"},{"arguments":[{"name":"value0","nativeSrc":"5841:6:81","nodeType":"YulIdentifier","src":"5841:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5857:3:81","nodeType":"YulLiteral","src":"5857:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"5862:1:81","nodeType":"YulLiteral","src":"5862:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5853:3:81","nodeType":"YulIdentifier","src":"5853:3:81"},"nativeSrc":"5853:11:81","nodeType":"YulFunctionCall","src":"5853:11:81"},{"kind":"number","nativeSrc":"5866:1:81","nodeType":"YulLiteral","src":"5866:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5849:3:81","nodeType":"YulIdentifier","src":"5849:3:81"},"nativeSrc":"5849:19:81","nodeType":"YulFunctionCall","src":"5849:19:81"}],"functionName":{"name":"and","nativeSrc":"5837:3:81","nodeType":"YulIdentifier","src":"5837:3:81"},"nativeSrc":"5837:32:81","nodeType":"YulFunctionCall","src":"5837:32:81"}],"functionName":{"name":"mstore","nativeSrc":"5819:6:81","nodeType":"YulIdentifier","src":"5819:6:81"},"nativeSrc":"5819:51:81","nodeType":"YulFunctionCall","src":"5819:51:81"},"nativeSrc":"5819:51:81","nodeType":"YulExpressionStatement","src":"5819:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5890:9:81","nodeType":"YulIdentifier","src":"5890:9:81"},{"kind":"number","nativeSrc":"5901:2:81","nodeType":"YulLiteral","src":"5901:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5886:3:81","nodeType":"YulIdentifier","src":"5886:3:81"},"nativeSrc":"5886:18:81","nodeType":"YulFunctionCall","src":"5886:18:81"},{"name":"value1","nativeSrc":"5906:6:81","nodeType":"YulIdentifier","src":"5906:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5879:6:81","nodeType":"YulIdentifier","src":"5879:6:81"},"nativeSrc":"5879:34:81","nodeType":"YulFunctionCall","src":"5879:34:81"},"nativeSrc":"5879:34:81","nodeType":"YulExpressionStatement","src":"5879:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"5645:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5735:9:81","nodeType":"YulTypedName","src":"5735:9:81","type":""},{"name":"value1","nativeSrc":"5746:6:81","nodeType":"YulTypedName","src":"5746:6:81","type":""},{"name":"value0","nativeSrc":"5754:6:81","nodeType":"YulTypedName","src":"5754:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5765:4:81","nodeType":"YulTypedName","src":"5765:4:81","type":""}],"src":"5645:274:81"},{"body":{"nativeSrc":"5967:93:81","nodeType":"YulBlock","src":"5967:93:81","statements":[{"body":{"nativeSrc":"6003:22:81","nodeType":"YulBlock","src":"6003:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6005:16:81","nodeType":"YulIdentifier","src":"6005:16:81"},"nativeSrc":"6005:18:81","nodeType":"YulFunctionCall","src":"6005:18:81"},"nativeSrc":"6005:18:81","nodeType":"YulExpressionStatement","src":"6005:18:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"5983:5:81","nodeType":"YulIdentifier","src":"5983:5:81"},{"arguments":[{"kind":"number","nativeSrc":"5994:3:81","nodeType":"YulLiteral","src":"5994:3:81","type":"","value":"255"},{"kind":"number","nativeSrc":"5999:1:81","nodeType":"YulLiteral","src":"5999:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5990:3:81","nodeType":"YulIdentifier","src":"5990:3:81"},"nativeSrc":"5990:11:81","nodeType":"YulFunctionCall","src":"5990:11:81"}],"functionName":{"name":"eq","nativeSrc":"5980:2:81","nodeType":"YulIdentifier","src":"5980:2:81"},"nativeSrc":"5980:22:81","nodeType":"YulFunctionCall","src":"5980:22:81"},"nativeSrc":"5977:48:81","nodeType":"YulIf","src":"5977:48:81"},{"nativeSrc":"6034:20:81","nodeType":"YulAssignment","src":"6034:20:81","value":{"arguments":[{"kind":"number","nativeSrc":"6045:1:81","nodeType":"YulLiteral","src":"6045:1:81","type":"","value":"0"},{"name":"value","nativeSrc":"6048:5:81","nodeType":"YulIdentifier","src":"6048:5:81"}],"functionName":{"name":"sub","nativeSrc":"6041:3:81","nodeType":"YulIdentifier","src":"6041:3:81"},"nativeSrc":"6041:13:81","nodeType":"YulFunctionCall","src":"6041:13:81"},"variableNames":[{"name":"ret","nativeSrc":"6034:3:81","nodeType":"YulIdentifier","src":"6034:3:81"}]}]},"name":"negate_t_int256","nativeSrc":"5924:136:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5949:5:81","nodeType":"YulTypedName","src":"5949:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"5959:3:81","nodeType":"YulTypedName","src":"5959:3:81","type":""}],"src":"5924:136:81"},{"body":{"nativeSrc":"6097:95:81","nodeType":"YulBlock","src":"6097:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6114:1:81","nodeType":"YulLiteral","src":"6114:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6121:3:81","nodeType":"YulLiteral","src":"6121:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"6126:10:81","nodeType":"YulLiteral","src":"6126:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6117:3:81","nodeType":"YulIdentifier","src":"6117:3:81"},"nativeSrc":"6117:20:81","nodeType":"YulFunctionCall","src":"6117:20:81"}],"functionName":{"name":"mstore","nativeSrc":"6107:6:81","nodeType":"YulIdentifier","src":"6107:6:81"},"nativeSrc":"6107:31:81","nodeType":"YulFunctionCall","src":"6107:31:81"},"nativeSrc":"6107:31:81","nodeType":"YulExpressionStatement","src":"6107:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6154:1:81","nodeType":"YulLiteral","src":"6154:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"6157:4:81","nodeType":"YulLiteral","src":"6157:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"6147:6:81","nodeType":"YulIdentifier","src":"6147:6:81"},"nativeSrc":"6147:15:81","nodeType":"YulFunctionCall","src":"6147:15:81"},"nativeSrc":"6147:15:81","nodeType":"YulExpressionStatement","src":"6147:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6178:1:81","nodeType":"YulLiteral","src":"6178:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6181:4:81","nodeType":"YulLiteral","src":"6181:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6171:6:81","nodeType":"YulIdentifier","src":"6171:6:81"},"nativeSrc":"6171:15:81","nodeType":"YulFunctionCall","src":"6171:15:81"},"nativeSrc":"6171:15:81","nodeType":"YulExpressionStatement","src":"6171:15:81"}]},"name":"panic_error_0x21","nativeSrc":"6065:127:81","nodeType":"YulFunctionDefinition","src":"6065:127:81"},{"body":{"nativeSrc":"6245:77:81","nodeType":"YulBlock","src":"6245:77:81","statements":[{"nativeSrc":"6255:16:81","nodeType":"YulAssignment","src":"6255:16:81","value":{"arguments":[{"name":"x","nativeSrc":"6266:1:81","nodeType":"YulIdentifier","src":"6266:1:81"},{"name":"y","nativeSrc":"6269:1:81","nodeType":"YulIdentifier","src":"6269:1:81"}],"functionName":{"name":"add","nativeSrc":"6262:3:81","nodeType":"YulIdentifier","src":"6262:3:81"},"nativeSrc":"6262:9:81","nodeType":"YulFunctionCall","src":"6262:9:81"},"variableNames":[{"name":"sum","nativeSrc":"6255:3:81","nodeType":"YulIdentifier","src":"6255:3:81"}]},{"body":{"nativeSrc":"6294:22:81","nodeType":"YulBlock","src":"6294:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6296:16:81","nodeType":"YulIdentifier","src":"6296:16:81"},"nativeSrc":"6296:18:81","nodeType":"YulFunctionCall","src":"6296:18:81"},"nativeSrc":"6296:18:81","nodeType":"YulExpressionStatement","src":"6296:18:81"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"6286:1:81","nodeType":"YulIdentifier","src":"6286:1:81"},{"name":"sum","nativeSrc":"6289:3:81","nodeType":"YulIdentifier","src":"6289:3:81"}],"functionName":{"name":"gt","nativeSrc":"6283:2:81","nodeType":"YulIdentifier","src":"6283:2:81"},"nativeSrc":"6283:10:81","nodeType":"YulFunctionCall","src":"6283:10:81"},"nativeSrc":"6280:36:81","nodeType":"YulIf","src":"6280:36:81"}]},"name":"checked_add_t_uint256","nativeSrc":"6197:125:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6228:1:81","nodeType":"YulTypedName","src":"6228:1:81","type":""},{"name":"y","nativeSrc":"6231:1:81","nodeType":"YulTypedName","src":"6231:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"6237:3:81","nodeType":"YulTypedName","src":"6237:3:81","type":""}],"src":"6197:125:81"},{"body":{"nativeSrc":"6396:306:81","nodeType":"YulBlock","src":"6396:306:81","statements":[{"nativeSrc":"6406:10:81","nodeType":"YulAssignment","src":"6406:10:81","value":{"kind":"number","nativeSrc":"6415:1:81","nodeType":"YulLiteral","src":"6415:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6406:5:81","nodeType":"YulIdentifier","src":"6406:5:81"}]},{"nativeSrc":"6425:13:81","nodeType":"YulAssignment","src":"6425:13:81","value":{"name":"_base","nativeSrc":"6433:5:81","nodeType":"YulIdentifier","src":"6433:5:81"},"variableNames":[{"name":"base","nativeSrc":"6425:4:81","nodeType":"YulIdentifier","src":"6425:4:81"}]},{"body":{"nativeSrc":"6483:213:81","nodeType":"YulBlock","src":"6483:213:81","statements":[{"body":{"nativeSrc":"6525:22:81","nodeType":"YulBlock","src":"6525:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6527:16:81","nodeType":"YulIdentifier","src":"6527:16:81"},"nativeSrc":"6527:18:81","nodeType":"YulFunctionCall","src":"6527:18:81"},"nativeSrc":"6527:18:81","nodeType":"YulExpressionStatement","src":"6527:18:81"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"6503:4:81","nodeType":"YulIdentifier","src":"6503:4:81"},{"arguments":[{"name":"max","nativeSrc":"6513:3:81","nodeType":"YulIdentifier","src":"6513:3:81"},{"name":"base","nativeSrc":"6518:4:81","nodeType":"YulIdentifier","src":"6518:4:81"}],"functionName":{"name":"div","nativeSrc":"6509:3:81","nodeType":"YulIdentifier","src":"6509:3:81"},"nativeSrc":"6509:14:81","nodeType":"YulFunctionCall","src":"6509:14:81"}],"functionName":{"name":"gt","nativeSrc":"6500:2:81","nodeType":"YulIdentifier","src":"6500:2:81"},"nativeSrc":"6500:24:81","nodeType":"YulFunctionCall","src":"6500:24:81"},"nativeSrc":"6497:50:81","nodeType":"YulIf","src":"6497:50:81"},{"body":{"nativeSrc":"6580:29:81","nodeType":"YulBlock","src":"6580:29:81","statements":[{"nativeSrc":"6582:25:81","nodeType":"YulAssignment","src":"6582:25:81","value":{"arguments":[{"name":"power","nativeSrc":"6595:5:81","nodeType":"YulIdentifier","src":"6595:5:81"},{"name":"base","nativeSrc":"6602:4:81","nodeType":"YulIdentifier","src":"6602:4:81"}],"functionName":{"name":"mul","nativeSrc":"6591:3:81","nodeType":"YulIdentifier","src":"6591:3:81"},"nativeSrc":"6591:16:81","nodeType":"YulFunctionCall","src":"6591:16:81"},"variableNames":[{"name":"power","nativeSrc":"6582:5:81","nodeType":"YulIdentifier","src":"6582:5:81"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6567:8:81","nodeType":"YulIdentifier","src":"6567:8:81"},{"kind":"number","nativeSrc":"6577:1:81","nodeType":"YulLiteral","src":"6577:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"6563:3:81","nodeType":"YulIdentifier","src":"6563:3:81"},"nativeSrc":"6563:16:81","nodeType":"YulFunctionCall","src":"6563:16:81"},"nativeSrc":"6560:49:81","nodeType":"YulIf","src":"6560:49:81"},{"nativeSrc":"6622:23:81","nodeType":"YulAssignment","src":"6622:23:81","value":{"arguments":[{"name":"base","nativeSrc":"6634:4:81","nodeType":"YulIdentifier","src":"6634:4:81"},{"name":"base","nativeSrc":"6640:4:81","nodeType":"YulIdentifier","src":"6640:4:81"}],"functionName":{"name":"mul","nativeSrc":"6630:3:81","nodeType":"YulIdentifier","src":"6630:3:81"},"nativeSrc":"6630:15:81","nodeType":"YulFunctionCall","src":"6630:15:81"},"variableNames":[{"name":"base","nativeSrc":"6622:4:81","nodeType":"YulIdentifier","src":"6622:4:81"}]},{"nativeSrc":"6658:28:81","nodeType":"YulAssignment","src":"6658:28:81","value":{"arguments":[{"kind":"number","nativeSrc":"6674:1:81","nodeType":"YulLiteral","src":"6674:1:81","type":"","value":"1"},{"name":"exponent","nativeSrc":"6677:8:81","nodeType":"YulIdentifier","src":"6677:8:81"}],"functionName":{"name":"shr","nativeSrc":"6670:3:81","nodeType":"YulIdentifier","src":"6670:3:81"},"nativeSrc":"6670:16:81","nodeType":"YulFunctionCall","src":"6670:16:81"},"variableNames":[{"name":"exponent","nativeSrc":"6658:8:81","nodeType":"YulIdentifier","src":"6658:8:81"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6458:8:81","nodeType":"YulIdentifier","src":"6458:8:81"},{"kind":"number","nativeSrc":"6468:1:81","nodeType":"YulLiteral","src":"6468:1:81","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"6455:2:81","nodeType":"YulIdentifier","src":"6455:2:81"},"nativeSrc":"6455:15:81","nodeType":"YulFunctionCall","src":"6455:15:81"},"nativeSrc":"6447:249:81","nodeType":"YulForLoop","post":{"nativeSrc":"6471:3:81","nodeType":"YulBlock","src":"6471:3:81","statements":[]},"pre":{"nativeSrc":"6451:3:81","nodeType":"YulBlock","src":"6451:3:81","statements":[]},"src":"6447:249:81"}]},"name":"checked_exp_helper","nativeSrc":"6327:375:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"6355:5:81","nodeType":"YulTypedName","src":"6355:5:81","type":""},{"name":"exponent","nativeSrc":"6362:8:81","nodeType":"YulTypedName","src":"6362:8:81","type":""},{"name":"max","nativeSrc":"6372:3:81","nodeType":"YulTypedName","src":"6372:3:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"6380:5:81","nodeType":"YulTypedName","src":"6380:5:81","type":""},{"name":"base","nativeSrc":"6387:4:81","nodeType":"YulTypedName","src":"6387:4:81","type":""}],"src":"6327:375:81"},{"body":{"nativeSrc":"6766:843:81","nodeType":"YulBlock","src":"6766:843:81","statements":[{"body":{"nativeSrc":"6804:52:81","nodeType":"YulBlock","src":"6804:52:81","statements":[{"nativeSrc":"6818:10:81","nodeType":"YulAssignment","src":"6818:10:81","value":{"kind":"number","nativeSrc":"6827:1:81","nodeType":"YulLiteral","src":"6827:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6818:5:81","nodeType":"YulIdentifier","src":"6818:5:81"}]},{"nativeSrc":"6841:5:81","nodeType":"YulLeave","src":"6841:5:81"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6786:8:81","nodeType":"YulIdentifier","src":"6786:8:81"}],"functionName":{"name":"iszero","nativeSrc":"6779:6:81","nodeType":"YulIdentifier","src":"6779:6:81"},"nativeSrc":"6779:16:81","nodeType":"YulFunctionCall","src":"6779:16:81"},"nativeSrc":"6776:80:81","nodeType":"YulIf","src":"6776:80:81"},{"body":{"nativeSrc":"6889:52:81","nodeType":"YulBlock","src":"6889:52:81","statements":[{"nativeSrc":"6903:10:81","nodeType":"YulAssignment","src":"6903:10:81","value":{"kind":"number","nativeSrc":"6912:1:81","nodeType":"YulLiteral","src":"6912:1:81","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"6903:5:81","nodeType":"YulIdentifier","src":"6903:5:81"}]},{"nativeSrc":"6926:5:81","nodeType":"YulLeave","src":"6926:5:81"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"6875:4:81","nodeType":"YulIdentifier","src":"6875:4:81"}],"functionName":{"name":"iszero","nativeSrc":"6868:6:81","nodeType":"YulIdentifier","src":"6868:6:81"},"nativeSrc":"6868:12:81","nodeType":"YulFunctionCall","src":"6868:12:81"},"nativeSrc":"6865:76:81","nodeType":"YulIf","src":"6865:76:81"},{"cases":[{"body":{"nativeSrc":"6977:52:81","nodeType":"YulBlock","src":"6977:52:81","statements":[{"nativeSrc":"6991:10:81","nodeType":"YulAssignment","src":"6991:10:81","value":{"kind":"number","nativeSrc":"7000:1:81","nodeType":"YulLiteral","src":"7000:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6991:5:81","nodeType":"YulIdentifier","src":"6991:5:81"}]},{"nativeSrc":"7014:5:81","nodeType":"YulLeave","src":"7014:5:81"}]},"nativeSrc":"6970:59:81","nodeType":"YulCase","src":"6970:59:81","value":{"kind":"number","nativeSrc":"6975:1:81","nodeType":"YulLiteral","src":"6975:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"7045:167:81","nodeType":"YulBlock","src":"7045:167:81","statements":[{"body":{"nativeSrc":"7080:22:81","nodeType":"YulBlock","src":"7080:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7082:16:81","nodeType":"YulIdentifier","src":"7082:16:81"},"nativeSrc":"7082:18:81","nodeType":"YulFunctionCall","src":"7082:18:81"},"nativeSrc":"7082:18:81","nodeType":"YulExpressionStatement","src":"7082:18:81"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"7065:8:81","nodeType":"YulIdentifier","src":"7065:8:81"},{"kind":"number","nativeSrc":"7075:3:81","nodeType":"YulLiteral","src":"7075:3:81","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"7062:2:81","nodeType":"YulIdentifier","src":"7062:2:81"},"nativeSrc":"7062:17:81","nodeType":"YulFunctionCall","src":"7062:17:81"},"nativeSrc":"7059:43:81","nodeType":"YulIf","src":"7059:43:81"},{"nativeSrc":"7115:25:81","nodeType":"YulAssignment","src":"7115:25:81","value":{"arguments":[{"name":"exponent","nativeSrc":"7128:8:81","nodeType":"YulIdentifier","src":"7128:8:81"},{"kind":"number","nativeSrc":"7138:1:81","nodeType":"YulLiteral","src":"7138:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7124:3:81","nodeType":"YulIdentifier","src":"7124:3:81"},"nativeSrc":"7124:16:81","nodeType":"YulFunctionCall","src":"7124:16:81"},"variableNames":[{"name":"power","nativeSrc":"7115:5:81","nodeType":"YulIdentifier","src":"7115:5:81"}]},{"nativeSrc":"7153:11:81","nodeType":"YulVariableDeclaration","src":"7153:11:81","value":{"kind":"number","nativeSrc":"7163:1:81","nodeType":"YulLiteral","src":"7163:1:81","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"7157:2:81","nodeType":"YulTypedName","src":"7157:2:81","type":""}]},{"nativeSrc":"7177:7:81","nodeType":"YulAssignment","src":"7177:7:81","value":{"kind":"number","nativeSrc":"7183:1:81","nodeType":"YulLiteral","src":"7183:1:81","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"7177:2:81","nodeType":"YulIdentifier","src":"7177:2:81"}]},{"nativeSrc":"7197:5:81","nodeType":"YulLeave","src":"7197:5:81"}]},"nativeSrc":"7038:174:81","nodeType":"YulCase","src":"7038:174:81","value":{"kind":"number","nativeSrc":"7043:1:81","nodeType":"YulLiteral","src":"7043:1:81","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"6957:4:81","nodeType":"YulIdentifier","src":"6957:4:81"},"nativeSrc":"6950:262:81","nodeType":"YulSwitch","src":"6950:262:81"},{"body":{"nativeSrc":"7310:114:81","nodeType":"YulBlock","src":"7310:114:81","statements":[{"nativeSrc":"7324:28:81","nodeType":"YulAssignment","src":"7324:28:81","value":{"arguments":[{"name":"base","nativeSrc":"7337:4:81","nodeType":"YulIdentifier","src":"7337:4:81"},{"name":"exponent","nativeSrc":"7343:8:81","nodeType":"YulIdentifier","src":"7343:8:81"}],"functionName":{"name":"exp","nativeSrc":"7333:3:81","nodeType":"YulIdentifier","src":"7333:3:81"},"nativeSrc":"7333:19:81","nodeType":"YulFunctionCall","src":"7333:19:81"},"variableNames":[{"name":"power","nativeSrc":"7324:5:81","nodeType":"YulIdentifier","src":"7324:5:81"}]},{"nativeSrc":"7365:11:81","nodeType":"YulVariableDeclaration","src":"7365:11:81","value":{"kind":"number","nativeSrc":"7375:1:81","nodeType":"YulLiteral","src":"7375:1:81","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"7369:2:81","nodeType":"YulTypedName","src":"7369:2:81","type":""}]},{"nativeSrc":"7389:7:81","nodeType":"YulAssignment","src":"7389:7:81","value":{"kind":"number","nativeSrc":"7395:1:81","nodeType":"YulLiteral","src":"7395:1:81","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"7389:2:81","nodeType":"YulIdentifier","src":"7389:2:81"}]},{"nativeSrc":"7409:5:81","nodeType":"YulLeave","src":"7409:5:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"7234:4:81","nodeType":"YulIdentifier","src":"7234:4:81"},{"kind":"number","nativeSrc":"7240:2:81","nodeType":"YulLiteral","src":"7240:2:81","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"7231:2:81","nodeType":"YulIdentifier","src":"7231:2:81"},"nativeSrc":"7231:12:81","nodeType":"YulFunctionCall","src":"7231:12:81"},{"arguments":[{"name":"exponent","nativeSrc":"7248:8:81","nodeType":"YulIdentifier","src":"7248:8:81"},{"kind":"number","nativeSrc":"7258:2:81","nodeType":"YulLiteral","src":"7258:2:81","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"7245:2:81","nodeType":"YulIdentifier","src":"7245:2:81"},"nativeSrc":"7245:16:81","nodeType":"YulFunctionCall","src":"7245:16:81"}],"functionName":{"name":"and","nativeSrc":"7227:3:81","nodeType":"YulIdentifier","src":"7227:3:81"},"nativeSrc":"7227:35:81","nodeType":"YulFunctionCall","src":"7227:35:81"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"7271:4:81","nodeType":"YulIdentifier","src":"7271:4:81"},{"kind":"number","nativeSrc":"7277:3:81","nodeType":"YulLiteral","src":"7277:3:81","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"7268:2:81","nodeType":"YulIdentifier","src":"7268:2:81"},"nativeSrc":"7268:13:81","nodeType":"YulFunctionCall","src":"7268:13:81"},{"arguments":[{"name":"exponent","nativeSrc":"7286:8:81","nodeType":"YulIdentifier","src":"7286:8:81"},{"kind":"number","nativeSrc":"7296:2:81","nodeType":"YulLiteral","src":"7296:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"7283:2:81","nodeType":"YulIdentifier","src":"7283:2:81"},"nativeSrc":"7283:16:81","nodeType":"YulFunctionCall","src":"7283:16:81"}],"functionName":{"name":"and","nativeSrc":"7264:3:81","nodeType":"YulIdentifier","src":"7264:3:81"},"nativeSrc":"7264:36:81","nodeType":"YulFunctionCall","src":"7264:36:81"}],"functionName":{"name":"or","nativeSrc":"7224:2:81","nodeType":"YulIdentifier","src":"7224:2:81"},"nativeSrc":"7224:77:81","nodeType":"YulFunctionCall","src":"7224:77:81"},"nativeSrc":"7221:203:81","nodeType":"YulIf","src":"7221:203:81"},{"nativeSrc":"7433:65:81","nodeType":"YulVariableDeclaration","src":"7433:65:81","value":{"arguments":[{"name":"base","nativeSrc":"7475:4:81","nodeType":"YulIdentifier","src":"7475:4:81"},{"name":"exponent","nativeSrc":"7481:8:81","nodeType":"YulIdentifier","src":"7481:8:81"},{"arguments":[{"kind":"number","nativeSrc":"7495:1:81","nodeType":"YulLiteral","src":"7495:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7491:3:81","nodeType":"YulIdentifier","src":"7491:3:81"},"nativeSrc":"7491:6:81","nodeType":"YulFunctionCall","src":"7491:6:81"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"7456:18:81","nodeType":"YulIdentifier","src":"7456:18:81"},"nativeSrc":"7456:42:81","nodeType":"YulFunctionCall","src":"7456:42:81"},"variables":[{"name":"power_1","nativeSrc":"7437:7:81","nodeType":"YulTypedName","src":"7437:7:81","type":""},{"name":"base_1","nativeSrc":"7446:6:81","nodeType":"YulTypedName","src":"7446:6:81","type":""}]},{"body":{"nativeSrc":"7543:22:81","nodeType":"YulBlock","src":"7543:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7545:16:81","nodeType":"YulIdentifier","src":"7545:16:81"},"nativeSrc":"7545:18:81","nodeType":"YulFunctionCall","src":"7545:18:81"},"nativeSrc":"7545:18:81","nodeType":"YulExpressionStatement","src":"7545:18:81"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"7513:7:81","nodeType":"YulIdentifier","src":"7513:7:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7530:1:81","nodeType":"YulLiteral","src":"7530:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7526:3:81","nodeType":"YulIdentifier","src":"7526:3:81"},"nativeSrc":"7526:6:81","nodeType":"YulFunctionCall","src":"7526:6:81"},{"name":"base_1","nativeSrc":"7534:6:81","nodeType":"YulIdentifier","src":"7534:6:81"}],"functionName":{"name":"div","nativeSrc":"7522:3:81","nodeType":"YulIdentifier","src":"7522:3:81"},"nativeSrc":"7522:19:81","nodeType":"YulFunctionCall","src":"7522:19:81"}],"functionName":{"name":"gt","nativeSrc":"7510:2:81","nodeType":"YulIdentifier","src":"7510:2:81"},"nativeSrc":"7510:32:81","nodeType":"YulFunctionCall","src":"7510:32:81"},"nativeSrc":"7507:58:81","nodeType":"YulIf","src":"7507:58:81"},{"nativeSrc":"7574:29:81","nodeType":"YulAssignment","src":"7574:29:81","value":{"arguments":[{"name":"power_1","nativeSrc":"7587:7:81","nodeType":"YulIdentifier","src":"7587:7:81"},{"name":"base_1","nativeSrc":"7596:6:81","nodeType":"YulIdentifier","src":"7596:6:81"}],"functionName":{"name":"mul","nativeSrc":"7583:3:81","nodeType":"YulIdentifier","src":"7583:3:81"},"nativeSrc":"7583:20:81","nodeType":"YulFunctionCall","src":"7583:20:81"},"variableNames":[{"name":"power","nativeSrc":"7574:5:81","nodeType":"YulIdentifier","src":"7574:5:81"}]}]},"name":"checked_exp_unsigned","nativeSrc":"6707:902:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"6737:4:81","nodeType":"YulTypedName","src":"6737:4:81","type":""},{"name":"exponent","nativeSrc":"6743:8:81","nodeType":"YulTypedName","src":"6743:8:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"6756:5:81","nodeType":"YulTypedName","src":"6756:5:81","type":""}],"src":"6707:902:81"},{"body":{"nativeSrc":"7682:72:81","nodeType":"YulBlock","src":"7682:72:81","statements":[{"nativeSrc":"7692:56:81","nodeType":"YulAssignment","src":"7692:56:81","value":{"arguments":[{"name":"base","nativeSrc":"7722:4:81","nodeType":"YulIdentifier","src":"7722:4:81"},{"arguments":[{"name":"exponent","nativeSrc":"7732:8:81","nodeType":"YulIdentifier","src":"7732:8:81"},{"kind":"number","nativeSrc":"7742:4:81","nodeType":"YulLiteral","src":"7742:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"7728:3:81","nodeType":"YulIdentifier","src":"7728:3:81"},"nativeSrc":"7728:19:81","nodeType":"YulFunctionCall","src":"7728:19:81"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"7701:20:81","nodeType":"YulIdentifier","src":"7701:20:81"},"nativeSrc":"7701:47:81","nodeType":"YulFunctionCall","src":"7701:47:81"},"variableNames":[{"name":"power","nativeSrc":"7692:5:81","nodeType":"YulIdentifier","src":"7692:5:81"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"7614:140:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"7653:4:81","nodeType":"YulTypedName","src":"7653:4:81","type":""},{"name":"exponent","nativeSrc":"7659:8:81","nodeType":"YulTypedName","src":"7659:8:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"7672:5:81","nodeType":"YulTypedName","src":"7672:5:81","type":""}],"src":"7614:140:81"},{"body":{"nativeSrc":"7889:201:81","nodeType":"YulBlock","src":"7889:201:81","statements":[{"body":{"nativeSrc":"7927:16:81","nodeType":"YulBlock","src":"7927:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7936:1:81","nodeType":"YulLiteral","src":"7936:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7939:1:81","nodeType":"YulLiteral","src":"7939:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7929:6:81","nodeType":"YulIdentifier","src":"7929:6:81"},"nativeSrc":"7929:12:81","nodeType":"YulFunctionCall","src":"7929:12:81"},"nativeSrc":"7929:12:81","nodeType":"YulExpressionStatement","src":"7929:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"7905:10:81","nodeType":"YulIdentifier","src":"7905:10:81"},{"name":"endIndex","nativeSrc":"7917:8:81","nodeType":"YulIdentifier","src":"7917:8:81"}],"functionName":{"name":"gt","nativeSrc":"7902:2:81","nodeType":"YulIdentifier","src":"7902:2:81"},"nativeSrc":"7902:24:81","nodeType":"YulFunctionCall","src":"7902:24:81"},"nativeSrc":"7899:44:81","nodeType":"YulIf","src":"7899:44:81"},{"body":{"nativeSrc":"7976:16:81","nodeType":"YulBlock","src":"7976:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7985:1:81","nodeType":"YulLiteral","src":"7985:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7988:1:81","nodeType":"YulLiteral","src":"7988:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7978:6:81","nodeType":"YulIdentifier","src":"7978:6:81"},"nativeSrc":"7978:12:81","nodeType":"YulFunctionCall","src":"7978:12:81"},"nativeSrc":"7978:12:81","nodeType":"YulExpressionStatement","src":"7978:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"7958:8:81","nodeType":"YulIdentifier","src":"7958:8:81"},{"name":"length","nativeSrc":"7968:6:81","nodeType":"YulIdentifier","src":"7968:6:81"}],"functionName":{"name":"gt","nativeSrc":"7955:2:81","nodeType":"YulIdentifier","src":"7955:2:81"},"nativeSrc":"7955:20:81","nodeType":"YulFunctionCall","src":"7955:20:81"},"nativeSrc":"7952:40:81","nodeType":"YulIf","src":"7952:40:81"},{"nativeSrc":"8001:36:81","nodeType":"YulAssignment","src":"8001:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"8018:6:81","nodeType":"YulIdentifier","src":"8018:6:81"},{"name":"startIndex","nativeSrc":"8026:10:81","nodeType":"YulIdentifier","src":"8026:10:81"}],"functionName":{"name":"add","nativeSrc":"8014:3:81","nodeType":"YulIdentifier","src":"8014:3:81"},"nativeSrc":"8014:23:81","nodeType":"YulFunctionCall","src":"8014:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"8001:9:81","nodeType":"YulIdentifier","src":"8001:9:81"}]},{"nativeSrc":"8046:38:81","nodeType":"YulAssignment","src":"8046:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"8063:8:81","nodeType":"YulIdentifier","src":"8063:8:81"},{"name":"startIndex","nativeSrc":"8073:10:81","nodeType":"YulIdentifier","src":"8073:10:81"}],"functionName":{"name":"sub","nativeSrc":"8059:3:81","nodeType":"YulIdentifier","src":"8059:3:81"},"nativeSrc":"8059:25:81","nodeType":"YulFunctionCall","src":"8059:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"8046:9:81","nodeType":"YulIdentifier","src":"8046:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"7759:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7823:6:81","nodeType":"YulTypedName","src":"7823:6:81","type":""},{"name":"length","nativeSrc":"7831:6:81","nodeType":"YulTypedName","src":"7831:6:81","type":""},{"name":"startIndex","nativeSrc":"7839:10:81","nodeType":"YulTypedName","src":"7839:10:81","type":""},{"name":"endIndex","nativeSrc":"7851:8:81","nodeType":"YulTypedName","src":"7851:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"7864:9:81","nodeType":"YulTypedName","src":"7864:9:81","type":""},{"name":"lengthOut","nativeSrc":"7875:9:81","nodeType":"YulTypedName","src":"7875:9:81","type":""}],"src":"7759:331:81"},{"body":{"nativeSrc":"8195:238:81","nodeType":"YulBlock","src":"8195:238:81","statements":[{"nativeSrc":"8205:29:81","nodeType":"YulVariableDeclaration","src":"8205:29:81","value":{"arguments":[{"name":"array","nativeSrc":"8228:5:81","nodeType":"YulIdentifier","src":"8228:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"8215:12:81","nodeType":"YulIdentifier","src":"8215:12:81"},"nativeSrc":"8215:19:81","nodeType":"YulFunctionCall","src":"8215:19:81"},"variables":[{"name":"_1","nativeSrc":"8209:2:81","nodeType":"YulTypedName","src":"8209:2:81","type":""}]},{"nativeSrc":"8243:38:81","nodeType":"YulAssignment","src":"8243:38:81","value":{"arguments":[{"name":"_1","nativeSrc":"8256:2:81","nodeType":"YulIdentifier","src":"8256:2:81"},{"arguments":[{"kind":"number","nativeSrc":"8264:3:81","nodeType":"YulLiteral","src":"8264:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"8269:10:81","nodeType":"YulLiteral","src":"8269:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8260:3:81","nodeType":"YulIdentifier","src":"8260:3:81"},"nativeSrc":"8260:20:81","nodeType":"YulFunctionCall","src":"8260:20:81"}],"functionName":{"name":"and","nativeSrc":"8252:3:81","nodeType":"YulIdentifier","src":"8252:3:81"},"nativeSrc":"8252:29:81","nodeType":"YulFunctionCall","src":"8252:29:81"},"variableNames":[{"name":"value","nativeSrc":"8243:5:81","nodeType":"YulIdentifier","src":"8243:5:81"}]},{"body":{"nativeSrc":"8312:115:81","nodeType":"YulBlock","src":"8312:115:81","statements":[{"nativeSrc":"8326:91:81","nodeType":"YulAssignment","src":"8326:91:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"8343:2:81","nodeType":"YulIdentifier","src":"8343:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8355:1:81","nodeType":"YulLiteral","src":"8355:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"8362:1:81","nodeType":"YulLiteral","src":"8362:1:81","type":"","value":"4"},{"name":"len","nativeSrc":"8365:3:81","nodeType":"YulIdentifier","src":"8365:3:81"}],"functionName":{"name":"sub","nativeSrc":"8358:3:81","nodeType":"YulIdentifier","src":"8358:3:81"},"nativeSrc":"8358:11:81","nodeType":"YulFunctionCall","src":"8358:11:81"}],"functionName":{"name":"shl","nativeSrc":"8351:3:81","nodeType":"YulIdentifier","src":"8351:3:81"},"nativeSrc":"8351:19:81","nodeType":"YulFunctionCall","src":"8351:19:81"},{"arguments":[{"kind":"number","nativeSrc":"8376:3:81","nodeType":"YulLiteral","src":"8376:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"8381:10:81","nodeType":"YulLiteral","src":"8381:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8372:3:81","nodeType":"YulIdentifier","src":"8372:3:81"},"nativeSrc":"8372:20:81","nodeType":"YulFunctionCall","src":"8372:20:81"}],"functionName":{"name":"shl","nativeSrc":"8347:3:81","nodeType":"YulIdentifier","src":"8347:3:81"},"nativeSrc":"8347:46:81","nodeType":"YulFunctionCall","src":"8347:46:81"}],"functionName":{"name":"and","nativeSrc":"8339:3:81","nodeType":"YulIdentifier","src":"8339:3:81"},"nativeSrc":"8339:55:81","nodeType":"YulFunctionCall","src":"8339:55:81"},{"arguments":[{"kind":"number","nativeSrc":"8400:3:81","nodeType":"YulLiteral","src":"8400:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"8405:10:81","nodeType":"YulLiteral","src":"8405:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8396:3:81","nodeType":"YulIdentifier","src":"8396:3:81"},"nativeSrc":"8396:20:81","nodeType":"YulFunctionCall","src":"8396:20:81"}],"functionName":{"name":"and","nativeSrc":"8335:3:81","nodeType":"YulIdentifier","src":"8335:3:81"},"nativeSrc":"8335:82:81","nodeType":"YulFunctionCall","src":"8335:82:81"},"variableNames":[{"name":"value","nativeSrc":"8326:5:81","nodeType":"YulIdentifier","src":"8326:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"8296:3:81","nodeType":"YulIdentifier","src":"8296:3:81"},{"kind":"number","nativeSrc":"8301:1:81","nodeType":"YulLiteral","src":"8301:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"8293:2:81","nodeType":"YulIdentifier","src":"8293:2:81"},"nativeSrc":"8293:10:81","nodeType":"YulFunctionCall","src":"8293:10:81"},"nativeSrc":"8290:137:81","nodeType":"YulIf","src":"8290:137:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"8095:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"8170:5:81","nodeType":"YulTypedName","src":"8170:5:81","type":""},{"name":"len","nativeSrc":"8177:3:81","nodeType":"YulTypedName","src":"8177:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"8185:5:81","nodeType":"YulTypedName","src":"8185:5:81","type":""}],"src":"8095:338:81"},{"body":{"nativeSrc":"8537:103:81","nodeType":"YulBlock","src":"8537:103:81","statements":[{"nativeSrc":"8547:26:81","nodeType":"YulAssignment","src":"8547:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8559:9:81","nodeType":"YulIdentifier","src":"8559:9:81"},{"kind":"number","nativeSrc":"8570:2:81","nodeType":"YulLiteral","src":"8570:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8555:3:81","nodeType":"YulIdentifier","src":"8555:3:81"},"nativeSrc":"8555:18:81","nodeType":"YulFunctionCall","src":"8555:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8547:4:81","nodeType":"YulIdentifier","src":"8547:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8589:9:81","nodeType":"YulIdentifier","src":"8589:9:81"},{"arguments":[{"name":"value0","nativeSrc":"8604:6:81","nodeType":"YulIdentifier","src":"8604:6:81"},{"arguments":[{"kind":"number","nativeSrc":"8616:3:81","nodeType":"YulLiteral","src":"8616:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"8621:10:81","nodeType":"YulLiteral","src":"8621:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8612:3:81","nodeType":"YulIdentifier","src":"8612:3:81"},"nativeSrc":"8612:20:81","nodeType":"YulFunctionCall","src":"8612:20:81"}],"functionName":{"name":"and","nativeSrc":"8600:3:81","nodeType":"YulIdentifier","src":"8600:3:81"},"nativeSrc":"8600:33:81","nodeType":"YulFunctionCall","src":"8600:33:81"}],"functionName":{"name":"mstore","nativeSrc":"8582:6:81","nodeType":"YulIdentifier","src":"8582:6:81"},"nativeSrc":"8582:52:81","nodeType":"YulFunctionCall","src":"8582:52:81"},"nativeSrc":"8582:52:81","nodeType":"YulExpressionStatement","src":"8582:52:81"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"8438:202:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8506:9:81","nodeType":"YulTypedName","src":"8506:9:81","type":""},{"name":"value0","nativeSrc":"8517:6:81","nodeType":"YulTypedName","src":"8517:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8528:4:81","nodeType":"YulTypedName","src":"8528:4:81","type":""}],"src":"8438:202:81"},{"body":{"nativeSrc":"8677:95:81","nodeType":"YulBlock","src":"8677:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8694:1:81","nodeType":"YulLiteral","src":"8694:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"8701:3:81","nodeType":"YulLiteral","src":"8701:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"8706:10:81","nodeType":"YulLiteral","src":"8706:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"8697:3:81","nodeType":"YulIdentifier","src":"8697:3:81"},"nativeSrc":"8697:20:81","nodeType":"YulFunctionCall","src":"8697:20:81"}],"functionName":{"name":"mstore","nativeSrc":"8687:6:81","nodeType":"YulIdentifier","src":"8687:6:81"},"nativeSrc":"8687:31:81","nodeType":"YulFunctionCall","src":"8687:31:81"},"nativeSrc":"8687:31:81","nodeType":"YulExpressionStatement","src":"8687:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8734:1:81","nodeType":"YulLiteral","src":"8734:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"8737:4:81","nodeType":"YulLiteral","src":"8737:4:81","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"8727:6:81","nodeType":"YulIdentifier","src":"8727:6:81"},"nativeSrc":"8727:15:81","nodeType":"YulFunctionCall","src":"8727:15:81"},"nativeSrc":"8727:15:81","nodeType":"YulExpressionStatement","src":"8727:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8758:1:81","nodeType":"YulLiteral","src":"8758:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8761:4:81","nodeType":"YulLiteral","src":"8761:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8751:6:81","nodeType":"YulIdentifier","src":"8751:6:81"},"nativeSrc":"8751:15:81","nodeType":"YulFunctionCall","src":"8751:15:81"},"nativeSrc":"8751:15:81","nodeType":"YulExpressionStatement","src":"8751:15:81"}]},"name":"panic_error_0x12","nativeSrc":"8645:127:81","nodeType":"YulFunctionDefinition","src":"8645:127:81"},{"body":{"nativeSrc":"8906:119:81","nodeType":"YulBlock","src":"8906:119:81","statements":[{"nativeSrc":"8916:26:81","nodeType":"YulAssignment","src":"8916:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8928:9:81","nodeType":"YulIdentifier","src":"8928:9:81"},{"kind":"number","nativeSrc":"8939:2:81","nodeType":"YulLiteral","src":"8939:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8924:3:81","nodeType":"YulIdentifier","src":"8924:3:81"},"nativeSrc":"8924:18:81","nodeType":"YulFunctionCall","src":"8924:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8916:4:81","nodeType":"YulIdentifier","src":"8916:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8958:9:81","nodeType":"YulIdentifier","src":"8958:9:81"},{"name":"value0","nativeSrc":"8969:6:81","nodeType":"YulIdentifier","src":"8969:6:81"}],"functionName":{"name":"mstore","nativeSrc":"8951:6:81","nodeType":"YulIdentifier","src":"8951:6:81"},"nativeSrc":"8951:25:81","nodeType":"YulFunctionCall","src":"8951:25:81"},"nativeSrc":"8951:25:81","nodeType":"YulExpressionStatement","src":"8951:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8996:9:81","nodeType":"YulIdentifier","src":"8996:9:81"},{"kind":"number","nativeSrc":"9007:2:81","nodeType":"YulLiteral","src":"9007:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8992:3:81","nodeType":"YulIdentifier","src":"8992:3:81"},"nativeSrc":"8992:18:81","nodeType":"YulFunctionCall","src":"8992:18:81"},{"name":"value1","nativeSrc":"9012:6:81","nodeType":"YulIdentifier","src":"9012:6:81"}],"functionName":{"name":"mstore","nativeSrc":"8985:6:81","nodeType":"YulIdentifier","src":"8985:6:81"},"nativeSrc":"8985:34:81","nodeType":"YulFunctionCall","src":"8985:34:81"},"nativeSrc":"8985:34:81","nodeType":"YulExpressionStatement","src":"8985:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"8777:248:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8867:9:81","nodeType":"YulTypedName","src":"8867:9:81","type":""},{"name":"value1","nativeSrc":"8878:6:81","nodeType":"YulTypedName","src":"8878:6:81","type":""},{"name":"value0","nativeSrc":"8886:6:81","nodeType":"YulTypedName","src":"8886:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8897:4:81","nodeType":"YulTypedName","src":"8897:4:81","type":""}],"src":"8777:248:81"},{"body":{"nativeSrc":"9066:218:81","nodeType":"YulBlock","src":"9066:218:81","statements":[{"nativeSrc":"9076:23:81","nodeType":"YulVariableDeclaration","src":"9076:23:81","value":{"arguments":[{"name":"y","nativeSrc":"9091:1:81","nodeType":"YulIdentifier","src":"9091:1:81"},{"kind":"number","nativeSrc":"9094:4:81","nodeType":"YulLiteral","src":"9094:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9087:3:81","nodeType":"YulIdentifier","src":"9087:3:81"},"nativeSrc":"9087:12:81","nodeType":"YulFunctionCall","src":"9087:12:81"},"variables":[{"name":"y_1","nativeSrc":"9080:3:81","nodeType":"YulTypedName","src":"9080:3:81","type":""}]},{"body":{"nativeSrc":"9131:111:81","nodeType":"YulBlock","src":"9131:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9152:1:81","nodeType":"YulLiteral","src":"9152:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9159:3:81","nodeType":"YulLiteral","src":"9159:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"9164:10:81","nodeType":"YulLiteral","src":"9164:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9155:3:81","nodeType":"YulIdentifier","src":"9155:3:81"},"nativeSrc":"9155:20:81","nodeType":"YulFunctionCall","src":"9155:20:81"}],"functionName":{"name":"mstore","nativeSrc":"9145:6:81","nodeType":"YulIdentifier","src":"9145:6:81"},"nativeSrc":"9145:31:81","nodeType":"YulFunctionCall","src":"9145:31:81"},"nativeSrc":"9145:31:81","nodeType":"YulExpressionStatement","src":"9145:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9196:1:81","nodeType":"YulLiteral","src":"9196:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"9199:4:81","nodeType":"YulLiteral","src":"9199:4:81","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"9189:6:81","nodeType":"YulIdentifier","src":"9189:6:81"},"nativeSrc":"9189:15:81","nodeType":"YulFunctionCall","src":"9189:15:81"},"nativeSrc":"9189:15:81","nodeType":"YulExpressionStatement","src":"9189:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9224:1:81","nodeType":"YulLiteral","src":"9224:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9227:4:81","nodeType":"YulLiteral","src":"9227:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9217:6:81","nodeType":"YulIdentifier","src":"9217:6:81"},"nativeSrc":"9217:15:81","nodeType":"YulFunctionCall","src":"9217:15:81"},"nativeSrc":"9217:15:81","nodeType":"YulExpressionStatement","src":"9217:15:81"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"9118:3:81","nodeType":"YulIdentifier","src":"9118:3:81"}],"functionName":{"name":"iszero","nativeSrc":"9111:6:81","nodeType":"YulIdentifier","src":"9111:6:81"},"nativeSrc":"9111:11:81","nodeType":"YulFunctionCall","src":"9111:11:81"},"nativeSrc":"9108:134:81","nodeType":"YulIf","src":"9108:134:81"},{"nativeSrc":"9251:27:81","nodeType":"YulAssignment","src":"9251:27:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"9264:1:81","nodeType":"YulIdentifier","src":"9264:1:81"},{"kind":"number","nativeSrc":"9267:4:81","nodeType":"YulLiteral","src":"9267:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9260:3:81","nodeType":"YulIdentifier","src":"9260:3:81"},"nativeSrc":"9260:12:81","nodeType":"YulFunctionCall","src":"9260:12:81"},{"name":"y_1","nativeSrc":"9274:3:81","nodeType":"YulIdentifier","src":"9274:3:81"}],"functionName":{"name":"mod","nativeSrc":"9256:3:81","nodeType":"YulIdentifier","src":"9256:3:81"},"nativeSrc":"9256:22:81","nodeType":"YulFunctionCall","src":"9256:22:81"},"variableNames":[{"name":"r","nativeSrc":"9251:1:81","nodeType":"YulIdentifier","src":"9251:1:81"}]}]},"name":"mod_t_uint8","nativeSrc":"9030:254:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9051:1:81","nodeType":"YulTypedName","src":"9051:1:81","type":""},{"name":"y","nativeSrc":"9054:1:81","nodeType":"YulTypedName","src":"9054:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"9060:1:81","nodeType":"YulTypedName","src":"9060:1:81","type":""}],"src":"9030:254:81"},{"body":{"nativeSrc":"9446:214:81","nodeType":"YulBlock","src":"9446:214:81","statements":[{"nativeSrc":"9456:26:81","nodeType":"YulAssignment","src":"9456:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9468:9:81","nodeType":"YulIdentifier","src":"9468:9:81"},{"kind":"number","nativeSrc":"9479:2:81","nodeType":"YulLiteral","src":"9479:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9464:3:81","nodeType":"YulIdentifier","src":"9464:3:81"},"nativeSrc":"9464:18:81","nodeType":"YulFunctionCall","src":"9464:18:81"},"variableNames":[{"name":"tail","nativeSrc":"9456:4:81","nodeType":"YulIdentifier","src":"9456:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9498:9:81","nodeType":"YulIdentifier","src":"9498:9:81"},{"arguments":[{"name":"value0","nativeSrc":"9513:6:81","nodeType":"YulIdentifier","src":"9513:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9529:3:81","nodeType":"YulLiteral","src":"9529:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"9534:1:81","nodeType":"YulLiteral","src":"9534:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9525:3:81","nodeType":"YulIdentifier","src":"9525:3:81"},"nativeSrc":"9525:11:81","nodeType":"YulFunctionCall","src":"9525:11:81"},{"kind":"number","nativeSrc":"9538:1:81","nodeType":"YulLiteral","src":"9538:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9521:3:81","nodeType":"YulIdentifier","src":"9521:3:81"},"nativeSrc":"9521:19:81","nodeType":"YulFunctionCall","src":"9521:19:81"}],"functionName":{"name":"and","nativeSrc":"9509:3:81","nodeType":"YulIdentifier","src":"9509:3:81"},"nativeSrc":"9509:32:81","nodeType":"YulFunctionCall","src":"9509:32:81"}],"functionName":{"name":"mstore","nativeSrc":"9491:6:81","nodeType":"YulIdentifier","src":"9491:6:81"},"nativeSrc":"9491:51:81","nodeType":"YulFunctionCall","src":"9491:51:81"},"nativeSrc":"9491:51:81","nodeType":"YulExpressionStatement","src":"9491:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9562:9:81","nodeType":"YulIdentifier","src":"9562:9:81"},{"kind":"number","nativeSrc":"9573:2:81","nodeType":"YulLiteral","src":"9573:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9558:3:81","nodeType":"YulIdentifier","src":"9558:3:81"},"nativeSrc":"9558:18:81","nodeType":"YulFunctionCall","src":"9558:18:81"},{"arguments":[{"name":"value1","nativeSrc":"9582:6:81","nodeType":"YulIdentifier","src":"9582:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9598:3:81","nodeType":"YulLiteral","src":"9598:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"9603:1:81","nodeType":"YulLiteral","src":"9603:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9594:3:81","nodeType":"YulIdentifier","src":"9594:3:81"},"nativeSrc":"9594:11:81","nodeType":"YulFunctionCall","src":"9594:11:81"},{"kind":"number","nativeSrc":"9607:1:81","nodeType":"YulLiteral","src":"9607:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9590:3:81","nodeType":"YulIdentifier","src":"9590:3:81"},"nativeSrc":"9590:19:81","nodeType":"YulFunctionCall","src":"9590:19:81"}],"functionName":{"name":"and","nativeSrc":"9578:3:81","nodeType":"YulIdentifier","src":"9578:3:81"},"nativeSrc":"9578:32:81","nodeType":"YulFunctionCall","src":"9578:32:81"}],"functionName":{"name":"mstore","nativeSrc":"9551:6:81","nodeType":"YulIdentifier","src":"9551:6:81"},"nativeSrc":"9551:60:81","nodeType":"YulFunctionCall","src":"9551:60:81"},"nativeSrc":"9551:60:81","nodeType":"YulExpressionStatement","src":"9551:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9631:9:81","nodeType":"YulIdentifier","src":"9631:9:81"},{"kind":"number","nativeSrc":"9642:2:81","nodeType":"YulLiteral","src":"9642:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9627:3:81","nodeType":"YulIdentifier","src":"9627:3:81"},"nativeSrc":"9627:18:81","nodeType":"YulFunctionCall","src":"9627:18:81"},{"name":"value2","nativeSrc":"9647:6:81","nodeType":"YulIdentifier","src":"9647:6:81"}],"functionName":{"name":"mstore","nativeSrc":"9620:6:81","nodeType":"YulIdentifier","src":"9620:6:81"},"nativeSrc":"9620:34:81","nodeType":"YulFunctionCall","src":"9620:34:81"},"nativeSrc":"9620:34:81","nodeType":"YulExpressionStatement","src":"9620:34:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"9289:371:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9399:9:81","nodeType":"YulTypedName","src":"9399:9:81","type":""},{"name":"value2","nativeSrc":"9410:6:81","nodeType":"YulTypedName","src":"9410:6:81","type":""},{"name":"value1","nativeSrc":"9418:6:81","nodeType":"YulTypedName","src":"9418:6:81","type":""},{"name":"value0","nativeSrc":"9426:6:81","nodeType":"YulTypedName","src":"9426:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9437:4:81","nodeType":"YulTypedName","src":"9437:4:81","type":""}],"src":"9289:371:81"}]},"contents":"{\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_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        mcopy(add(headStart, 64), add(value0, 32), length)\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\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_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := abi_decode_address(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_int256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_enum$_OverrideOption_$4476t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(lt(value, 4)) { revert(0, 0) }\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\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        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(and(x, 0xff), y_1)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"11088":[{"length":32,"start":718},{"length":32,"start":1206},{"length":32,"start":2092},{"length":32,"start":2185},{"length":32,"start":3616},{"length":32,"start":3794}],"11090":[{"length":32,"start":1564}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c806386de9e4f11610114578063c6e6f592116100a9578063d6dd023411610079578063d6dd023414610439578063d905777e1461044c578063dd62ed3e1461045f578063ef8b30f7146103f7578063f3c0b89214610497575f5ffd5b8063c6e6f592146103f7578063c7361ed21461040a578063cc7fcc601461041d578063ce96cb7714610426575f5ffd5b8063b3d7f6b9116100e4578063b3d7f6b9146103ab578063b460af94146103be578063ba087652146103d1578063c63d75b6146103e4575f5ffd5b806386de9e4f1461035a57806394bf804d1461037d57806395d89b4114610390578063a9059cbb14610398575f5ffd5b8063313ce56711610195578063402d267d11610165578063402d267d146103015780634cdad5061461023a5780636e553f651461031457806370a08231146103275780637fb1ad621461034f575f5ffd5b8063313ce5671461029e57806338359018146102b857806338d52e0f146102c157806339d88aff146102f8575f5ffd5b8063095ea7b3116101d0578063095ea7b31461024d5780630a28a4771461027057806318160ddd1461028357806323b872dd1461028b575f5ffd5b806301e1d11414610201578063034548cd1461021c57806306fdde031461022557806307a2d13a1461023a575b5f5ffd5b61020961049f565b6040519081526020015b60405180910390f35b61020960075481565b61022d61052c565b60405161021391906111be565b6102096102483660046111f3565b6105bc565b61026061025b366004611225565b6105cd565b6040519015158152602001610213565b61020961027e3660046111f3565b6105e4565b600254610209565b61026061029936600461124d565b6105f0565b6102a6610615565b60405160ff9091168152602001610213565b61020960085481565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610213565b61020960065481565b61020961030f366004611287565b610640565b6102096103223660046112a0565b610664565b610209610335366004611287565b6001600160a01b03165f9081526020819052604090205490565b60055460ff16610260565b61037b6103683660046112ca565b6005805460ff1916911515919091179055565b005b61020961038b3660046112a0565b6106c1565b61022d61070d565b6102606103a6366004611225565b61071c565b6102096103b93660046111f3565b610729565b6102096103cc3660046112e9565b610735565b6102096103df3660046112e9565b61078b565b6102096103f2366004611287565b6107d8565b6102096104053660046111f3565b6107f5565b61037b6104183660046111f3565b610800565b61020960095481565b610209610434366004611287565b6108f1565b61037b610447366004611322565b610917565b61020961045a366004611287565b610996565b61020961046d366004611341565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102096109bc565b6040516370a0823160e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610503573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105279190611369565b905090565b60606003805461053b90611380565b80601f016020809104026020016040519081016040528092919081815260200182805461056790611380565b80156105b25780601f10610589576101008083540402835291602001916105b2565b820191905f5260205f20905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b5f6105c7825f6109cb565b92915050565b5f336105da818585610a03565b5060019392505050565b5f6105c7826001610a15565b5f336105fd858285610a44565b610608858585610aad565b60019150505b9392505050565b5f610527817f00000000000000000000000000000000000000000000000000000000000000006113cc565b5f61064d60635f196113e5565b6006541461065d576006546105c7565b5f196105c7565b5f5f61066f83610640565b9050808411156106a157828482604051633c8097d960e11b8152600401610698939291906113f8565b60405180910390fd5b5f6106ab856107f5565b90506106b933858784610b0a565b949350505050565b5f5f6106cc836107d8565b9050808411156106f55782848260405163284ff66760e01b8152600401610698939291906113f8565b5f6106ff85610729565b90506106b933858388610b0a565b60606004805461053b90611380565b5f336105da818585610aad565b5f6105c78260016109cb565b5f5f610740836108f1565b90508085111561076957828582604051633fa733bb60e21b8152600401610698939291906113f8565b5f610773866105e4565b90506107823386868985610b5f565b95945050505050565b5f5f61079683610996565b9050808511156107bf57828582604051632e52afbb60e21b8152600401610698939291906113f8565b5f6107c9866105bc565b9050610782338686848a610b5f565b5f6107e560635f196113e5565b6007541461065d576007546105c7565b5f6105c7825f610a15565b5f811315610887576040516340c10f1960e01b8152306004820152602481018290526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015b5f604051808303815f87803b15801561086e575f5ffd5b505af1158015610880573d5f5f3e3d5ffd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639dc29fac306108c084611419565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610857565b5f6108fe60635f196113e5565b6008541461090e576008546105c7565b6105c782610bb5565b5f82600381111561092a5761092a611433565b036109355760068190555b600182600381111561094957610949611433565b036109545760078190555b600282600381111561096857610968611433565b036109735760088190555b600382600381111561098757610987611433565b036109925760098190555b5050565b5f6109a360635f196113e5565b600954146109b3576009546105c7565b6105c782610bd7565b6109c860635f196113e5565b81565b5f61060e6109d761049f565b6109e2906001611447565b6109ed5f600a61153d565b6002546109fa9190611447565b85919085610bf4565b610a108383836001610c36565b505050565b5f61060e610a2482600a61153d565b600254610a319190611447565b610a3961049f565b6109fa906001611447565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610aa75781811015610a9957828183604051637dc7a0d960e11b8152600401610698939291906113f8565b610aa784848484035f610c36565b50505050565b6001600160a01b038316610ad657604051634b637e8f60e11b81525f6004820152602401610698565b6001600160a01b038216610aff5760405163ec442f0560e01b81525f6004820152602401610698565b610a10838383610d08565b60055460ff1615610b1e60045f368161154b565b610b2791611572565b90610b52576040516340c2fd5360e11b81526001600160e01b03199091166004820152602401610698565b50610aa784848484610e1b565b60055460ff1615610b7360045f368161154b565b610b7c91611572565b90610ba7576040516340c2fd5360e11b81526001600160e01b03199091166004820152602401610698565b506108808585858585610e9f565b6001600160a01b0381165f908152602081905260408120546105c7905f6109cb565b6001600160a01b0381165f908152602081905260408120546105c7565b5f610c21610c0183610f5f565b8015610c1c57505f8480610c1757610c176115aa565b868809115b151590565b610c2c868686610f8b565b6107829190611447565b6001600160a01b038416610c5f5760405163e602df0560e01b81525f6004820152602401610698565b6001600160a01b038316610c8857604051634a1406b160e11b81525f6004820152602401610698565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610aa757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cfa91815260200190565b60405180910390a350505050565b6001600160a01b038316610d32578060025f828254610d279190611447565b90915550610d8f9050565b6001600160a01b0383165f9081526020819052604090205481811015610d715783818360405163391434e360e21b8152600401610698939291906113f8565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610dab57600280548290039055610dc9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e0e91815260200190565b60405180910390a3505050565b610e477f0000000000000000000000000000000000000000000000000000000000000000853085611041565b610e5183826110a8565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051610cfa929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614610ec357610ec3838683610a44565b610ecd83826110dc565b610ef87f00000000000000000000000000000000000000000000000000000000000000008584611110565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051610f50929190918252602082015260400190565b60405180910390a45050505050565b5f6002826003811115610f7457610f74611433565b610f7e91906115be565b60ff166001149050919050565b5f838302815f1985870982811083820303915050805f03610fbf57838281610fb557610fb56115aa565b049250505061060e565b808411610fd657610fd66003851502601118611141565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610aa79186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611152565b6001600160a01b0382166110d15760405163ec442f0560e01b81525f6004820152602401610698565b6109925f8383610d08565b6001600160a01b03821661110557604051634b637e8f60e11b81525f6004820152602401610698565b610992825f83610d08565b6040516001600160a01b03838116602483015260448201839052610a1091859182169063a9059cbb90606401611076565b634e487b715f52806020526024601cfd5b5f5f60205f8451602086015f885af180611171576040513d5f823e3d81fd5b50505f513d91508115611188578060011415611195565b6001600160a01b0384163b155b15610aa757604051635274afe760e01b81526001600160a01b0385166004820152602401610698565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f60208284031215611203575f5ffd5b5035919050565b80356001600160a01b0381168114611220575f5ffd5b919050565b5f5f60408385031215611236575f5ffd5b61123f8361120a565b946020939093013593505050565b5f5f5f6060848603121561125f575f5ffd5b6112688461120a565b92506112766020850161120a565b929592945050506040919091013590565b5f60208284031215611297575f5ffd5b61060e8261120a565b5f5f604083850312156112b1575f5ffd5b823591506112c16020840161120a565b90509250929050565b5f602082840312156112da575f5ffd5b8135801515811461060e575f5ffd5b5f5f5f606084860312156112fb575f5ffd5b8335925061130b6020850161120a565b91506113196040850161120a565b90509250925092565b5f5f60408385031215611333575f5ffd5b82356004811061123f575f5ffd5b5f5f60408385031215611352575f5ffd5b61135b8361120a565b91506112c16020840161120a565b5f60208284031215611379575f5ffd5b5051919050565b600181811c9082168061139457607f821691505b6020821081036113b257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156105c7576105c76113b8565b818103818111156105c7576105c76113b8565b6001600160a01b039390931683526020830191909152604082015260600190565b5f600160ff1b820161142d5761142d6113b8565b505f0390565b634e487b7160e01b5f52602160045260245ffd5b808201808211156105c7576105c76113b8565b6001815b600184111561149557808504811115611479576114796113b8565b600184161561148757908102905b60019390931c92800261145e565b935093915050565b5f826114ab575060016105c7565b816114b757505f6105c7565b81600181146114cd57600281146114d7576114f3565b60019150506105c7565b60ff8411156114e8576114e86113b8565b50506001821b6105c7565b5060208310610133831016604e8410600b8410161715611516575081810a6105c7565b6115225f19848461145a565b805f1904821115611535576115356113b8565b029392505050565b5f61060e60ff84168361149d565b5f5f85851115611559575f5ffd5b83861115611565575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156115a3576001600160e01b0319600485900360031b81901b82161691505b5092915050565b634e487b7160e01b5f52601260045260245ffd5b5f60ff8316806115dc57634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122021e2d03590eb3bdc20e098c2a02bd3f08c838e5b17f2ba8046d8ff1778f1f35b64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x86DE9E4F GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xC6E6F592 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xD6DD0234 GT PUSH2 0x79 JUMPI DUP1 PUSH4 0xD6DD0234 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF3C0B892 EQ PUSH2 0x497 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xC7361ED2 EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0xCC7FCC60 EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x426 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0xE4 JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x86DE9E4F EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x402D267D GT PUSH2 0x165 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x7FB1AD62 EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x38359018 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x39D88AFF EQ PUSH2 0x2F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x34548CD EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x23A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x209 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x52C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x213 SWAP2 SWAP1 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x209 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH2 0x260 PUSH2 0x25B CALLDATASIZE PUSH1 0x4 PUSH2 0x1225 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x27E CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x5E4 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x209 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x299 CALLDATASIZE PUSH1 0x4 PUSH2 0x124D JUMP JUMPDEST PUSH2 0x5F0 JUMP JUMPDEST PUSH2 0x2A6 PUSH2 0x615 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x640 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x12A0 JUMP JUMPDEST PUSH2 0x664 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x260 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x12CA JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x209 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x12A0 JUMP JUMPDEST PUSH2 0x6C1 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x70D JUMP JUMPDEST PUSH2 0x260 PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x1225 JUMP JUMPDEST PUSH2 0x71C JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x729 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x12E9 JUMP JUMPDEST PUSH2 0x735 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x12E9 JUMP JUMPDEST PUSH2 0x78B JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x7D8 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x405 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x418 CALLDATASIZE PUSH1 0x4 PUSH2 0x11F3 JUMP JUMPDEST PUSH2 0x800 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x434 CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x8F1 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x917 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x45A CALLDATASIZE PUSH1 0x4 PUSH2 0x1287 JUMP JUMPDEST PUSH2 0x996 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46D CALLDATASIZE PUSH1 0x4 PUSH2 0x1341 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x9BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x503 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x527 SWAP2 SWAP1 PUSH2 0x1369 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x53B SWAP1 PUSH2 0x1380 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x567 SWAP1 PUSH2 0x1380 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x589 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x595 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH0 PUSH2 0x9CB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DA DUP2 DUP6 DUP6 PUSH2 0xA03 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH1 0x1 PUSH2 0xA15 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5FD DUP6 DUP3 DUP6 PUSH2 0xA44 JUMP JUMPDEST PUSH2 0x608 DUP6 DUP6 DUP6 PUSH2 0xAAD JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x527 DUP2 PUSH32 0x0 PUSH2 0x13CC JUMP JUMPDEST PUSH0 PUSH2 0x64D PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x6 SLOAD EQ PUSH2 0x65D JUMPI PUSH1 0x6 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH0 NOT PUSH2 0x5C7 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x66F DUP4 PUSH2 0x640 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6A1 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3C8097D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x6AB DUP6 PUSH2 0x7F5 JUMP JUMPDEST SWAP1 POP PUSH2 0x6B9 CALLER DUP6 DUP8 DUP5 PUSH2 0xB0A JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x6CC DUP4 PUSH2 0x7D8 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6F5 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x284FF667 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH0 PUSH2 0x6FF DUP6 PUSH2 0x729 JUMP JUMPDEST SWAP1 POP PUSH2 0x6B9 CALLER DUP6 DUP4 DUP9 PUSH2 0xB0A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53B SWAP1 PUSH2 0x1380 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DA DUP2 DUP6 DUP6 PUSH2 0xAAD JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH1 0x1 PUSH2 0x9CB JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x740 DUP4 PUSH2 0x8F1 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x769 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH0 PUSH2 0x773 DUP7 PUSH2 0x5E4 JUMP JUMPDEST SWAP1 POP PUSH2 0x782 CALLER DUP7 DUP7 DUP10 DUP6 PUSH2 0xB5F JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x796 DUP4 PUSH2 0x996 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x7BF JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH0 PUSH2 0x7C9 DUP7 PUSH2 0x5BC JUMP JUMPDEST SWAP1 POP PUSH2 0x782 CALLER DUP7 DUP7 DUP5 DUP11 PUSH2 0xB5F JUMP JUMPDEST PUSH0 PUSH2 0x7E5 PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x7 SLOAD EQ PUSH2 0x65D JUMPI PUSH1 0x7 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH0 PUSH2 0x5C7 DUP3 PUSH0 PUSH2 0xA15 JUMP JUMPDEST PUSH0 DUP2 SGT ISZERO PUSH2 0x887 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x86E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x880 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x9DC29FAC ADDRESS PUSH2 0x8C0 DUP5 PUSH2 0x1419 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x857 JUMP JUMPDEST PUSH0 PUSH2 0x8FE PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x8 SLOAD EQ PUSH2 0x90E JUMPI PUSH1 0x8 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH2 0x5C7 DUP3 PUSH2 0xBB5 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x92A JUMPI PUSH2 0x92A PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x935 JUMPI PUSH1 0x6 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x949 JUMPI PUSH2 0x949 PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x954 JUMPI PUSH1 0x7 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x968 JUMPI PUSH2 0x968 PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x973 JUMPI PUSH1 0x8 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x987 JUMPI PUSH2 0x987 PUSH2 0x1433 JUMP JUMPDEST SUB PUSH2 0x992 JUMPI PUSH1 0x9 DUP2 SWAP1 SSTORE JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x9A3 PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST PUSH1 0x9 SLOAD EQ PUSH2 0x9B3 JUMPI PUSH1 0x9 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH2 0x5C7 DUP3 PUSH2 0xBD7 JUMP JUMPDEST PUSH2 0x9C8 PUSH1 0x63 PUSH0 NOT PUSH2 0x13E5 JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x60E PUSH2 0x9D7 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9E2 SWAP1 PUSH1 0x1 PUSH2 0x1447 JUMP JUMPDEST PUSH2 0x9ED PUSH0 PUSH1 0xA PUSH2 0x153D JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x9FA SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0xBF4 JUMP JUMPDEST PUSH2 0xA10 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x60E PUSH2 0xA24 DUP3 PUSH1 0xA PUSH2 0x153D JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0xA31 SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST PUSH2 0xA39 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9FA SWAP1 PUSH1 0x1 PUSH2 0x1447 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH0 NOT DUP2 LT ISZERO PUSH2 0xAA7 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA99 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH2 0xAA7 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xC36 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xAD6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xAFF JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH2 0xA10 DUP4 DUP4 DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB1E PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x154B JUMP JUMPDEST PUSH2 0xB27 SWAP2 PUSH2 0x1572 JUMP JUMPDEST SWAP1 PUSH2 0xB52 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST POP PUSH2 0xAA7 DUP5 DUP5 DUP5 DUP5 PUSH2 0xE1B JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB73 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x154B JUMP JUMPDEST PUSH2 0xB7C SWAP2 PUSH2 0x1572 JUMP JUMPDEST SWAP1 PUSH2 0xBA7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST POP PUSH2 0x880 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xE9F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x5C7 SWAP1 PUSH0 PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x5C7 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0xC01 DUP4 PUSH2 0xF5F JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC1C JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0xC17 JUMPI PUSH2 0xC17 PUSH2 0x15AA JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC2C DUP7 DUP7 DUP7 PUSH2 0xF8B JUMP JUMPDEST PUSH2 0x782 SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC5F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xC88 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0xAA7 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCFA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xD32 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD27 SWAP2 SWAP1 PUSH2 0x1447 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xD8F SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xD71 JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDAB JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xDC9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xE0E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE47 PUSH32 0x0 DUP6 ADDRESS DUP6 PUSH2 0x1041 JUMP JUMPDEST PUSH2 0xE51 DUP4 DUP3 PUSH2 0x10A8 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCFA SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEC3 JUMPI PUSH2 0xEC3 DUP4 DUP7 DUP4 PUSH2 0xA44 JUMP JUMPDEST PUSH2 0xECD DUP4 DUP3 PUSH2 0x10DC JUMP JUMPDEST PUSH2 0xEF8 PUSH32 0x0 DUP6 DUP5 PUSH2 0x1110 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF50 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF74 JUMPI PUSH2 0xF74 PUSH2 0x1433 JUMP JUMPDEST PUSH2 0xF7E SWAP2 SWAP1 PUSH2 0x15BE JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP4 DUP4 MUL DUP2 PUSH0 NOT DUP6 DUP8 MULMOD DUP3 DUP2 LT DUP4 DUP3 SUB SUB SWAP2 POP POP DUP1 PUSH0 SUB PUSH2 0xFBF JUMPI DUP4 DUP3 DUP2 PUSH2 0xFB5 JUMPI PUSH2 0xFB5 PUSH2 0x15AA JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x60E JUMP JUMPDEST DUP1 DUP5 GT PUSH2 0xFD6 JUMPI PUSH2 0xFD6 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x1141 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP7 DUP5 GT SWAP1 SWAP6 SUB SWAP5 SWAP1 SWAP5 MUL SWAP2 SWAP1 SWAP5 SUB SWAP3 SWAP1 SWAP3 DIV SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0xAA7 SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x1152 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10D1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH2 0x992 PUSH0 DUP4 DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1105 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH2 0x992 DUP3 PUSH0 DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0xA10 SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD PUSH2 0x1076 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x20 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH0 DUP9 GAS CALL DUP1 PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x1188 JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0xAA7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x698 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE DUP1 PUSH1 0x20 DUP6 ADD PUSH1 0x40 DUP6 ADD MCOPY PUSH0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1203 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1220 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1236 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x123F DUP4 PUSH2 0x120A JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x125F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1268 DUP5 PUSH2 0x120A JUMP JUMPDEST SWAP3 POP PUSH2 0x1276 PUSH1 0x20 DUP6 ADD PUSH2 0x120A JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x60E DUP3 PUSH2 0x120A JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x12C1 PUSH1 0x20 DUP5 ADD PUSH2 0x120A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x60E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x12FB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x130B PUSH1 0x20 DUP6 ADD PUSH2 0x120A JUMP JUMPDEST SWAP2 POP PUSH2 0x1319 PUSH1 0x40 DUP6 ADD PUSH2 0x120A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x123F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1352 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x135B DUP4 PUSH2 0x120A JUMP JUMPDEST SWAP2 POP PUSH2 0x12C1 PUSH1 0x20 DUP5 ADD PUSH2 0x120A JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1379 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1394 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x13B2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C7 PUSH2 0x13B8 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C7 PUSH2 0x13B8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x142D JUMPI PUSH2 0x142D PUSH2 0x13B8 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5C7 JUMPI PUSH2 0x5C7 PUSH2 0x13B8 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x1495 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x1479 JUMPI PUSH2 0x1479 PUSH2 0x13B8 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x1487 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x145E JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x14AB JUMPI POP PUSH1 0x1 PUSH2 0x5C7 JUMP JUMPDEST DUP2 PUSH2 0x14B7 JUMPI POP PUSH0 PUSH2 0x5C7 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x14CD JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x14D7 JUMPI PUSH2 0x14F3 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x5C7 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x14E8 JUMPI PUSH2 0x14E8 PUSH2 0x13B8 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x5C7 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1516 JUMPI POP DUP2 DUP2 EXP PUSH2 0x5C7 JUMP JUMPDEST PUSH2 0x1522 PUSH0 NOT DUP5 DUP5 PUSH2 0x145A JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x1535 JUMPI PUSH2 0x1535 PUSH2 0x13B8 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x60E PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x149D JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1559 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x1565 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x15A3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x15DC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x21 0xE2 0xD0 CALLDATALOAD SWAP1 0xEB EXTCODESIZE 0xDC KECCAK256 0xE0 SWAP9 0xC2 LOG0 0x2B 0xD3 CREATE DUP13 DUP4 DUP15 JUMPDEST OR CALLCODE 0xBA DUP1 CHAINID 0xD8 SELFDESTRUCT OR PUSH25 0xF1F35B64736F6C634300081C00330000000000000000000000 ","sourceMap":"364:2717:20:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5910:116:49;;;:::i;:::-;;;160:25:81;;;148:2;133:18;5910:116:49;;;;;;;;463:30:20;;;;;;1779:89:47;;;:::i;:::-;;;;;;;:::i;6282:148:49:-;;;;;;:::i;:::-;;:::i;3998:186:47:-;;;;;;:::i;:::-;;:::i;:::-;;;1498:14:81;;1491:22;1473:41;;1461:2;1446:18;3998:186:47;1333:187:81;7548:147:49;;;;;;:::i;:::-;;:::i;2849:97:47:-;2927:12;;2849:97;;4776:244;;;;;;:::i;:::-;;:::i;5571:151:49:-;;;:::i;:::-;;;2076:4:81;2064:17;;;2046:36;;2034:2;2019:18;5571:151:49;1904:184:81;497:34:20;;;;;;5766:94:49;;;-1:-1:-1;;;;;5846:6:49;2257:32:81;2239:51;;2227:2;2212:18;5766:94:49;2093:203:81;426:33:20;;;;;;2013:175;;;;;;:::i;:::-;;:::i;7939:392:49:-;;;;;;:::i;:::-;;:::i;3004:116:47:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3095:18:47;3069:7;3095:18;;;;;;;;;;;;3004:116;1937:72:20;1997:7;;;;1937:72;;1863:70;;;;;;:::i;:::-;1911:7;:17;;-1:-1:-1;;1911:17:20;;;;;;;;;;1863:70;;;8374:380:49;;;;;;:::i;:::-;;:::i;1981:93:47:-;;;:::i;3315:178::-;;;;;;:::i;:::-;;:::i;7351:143:49:-;;;;;;:::i;:::-;;:::i;8801:413::-;;;;;;:::i;:::-;;:::i;9259:405::-;;;;;;:::i;:::-;;:::i;2192:163:20:-;;;;;;:::i;:::-;;:::i;6080:148:49:-;;;;;;:::i;:::-;;:::i;1631:228:20:-;;;;;;:::i;:::-;;:::i;535:32::-;;;;;;2359:179;;;;;;:::i;:::-;;:::i;2717:362::-;;;;;;:::i;:::-;;:::i;2542:171::-;;;;;;:::i;:::-;;:::i;3551:140:47:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3657:18:47;;;3631:7;3657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3551:140;572:63:20;;;:::i;5910:116:49:-;5988:31;;-1:-1:-1;;;5988:31:49;;6013:4;5988:31;;;2239:51:81;5962:7:49;;5988:6;-1:-1:-1;;;;;5988:16:49;;;;2212:18:81;;5988:31:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5981:38;;5910:116;:::o;1779:89:47:-;1824:13;1856:5;1849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1779:89;:::o;6282:148:49:-;6352:7;6378:45;6395:6;6403:19;6378:16;:45::i;:::-;6371:52;6282:148;-1:-1:-1;;6282:148:49:o;3998:186:47:-;4071:4;735:10:55;4125:31:47;735:10:55;4141:7:47;4150:5;4125:8;:31::i;:::-;-1:-1:-1;4173:4:47;;3998:186;-1:-1:-1;;;3998:186:47:o;7548:147:49:-;7618:7;7644:44;7661:6;7669:18;7644:16;:44::i;4776:244:47:-;4863:4;735:10:55;4919:37:47;4935:4;735:10:55;4950:5:47;4919:15;:37::i;:::-;4966:26;4976:4;4982:2;4986:5;4966:9;:26::i;:::-;5009:4;5002:11;;;4776:244;;;;;;:::o;5571:151:49:-;5652:5;5676:39;5652:5;5676:19;:39;:::i;2013:175:20:-;2078:7;613:22;633:2;-1:-1:-1;;613:22:20;:::i;:::-;2100:18;;:36;:83;;2165:18;;2100:83;;;-1:-1:-1;;2139:23:20;6479:108:49;7939:392;8014:7;8033:17;8053:20;8064:8;8053:10;:20::i;:::-;8033:40;;8096:9;8087:6;:18;8083:110;;;8154:8;8164:6;8172:9;8128:54;;-1:-1:-1;;;8128:54:49;;;;;;;;;;:::i;:::-;;;;;;;;8083:110;8203:14;8220:22;8235:6;8220:14;:22::i;:::-;8203:39;-1:-1:-1;8252:48:49;735:10:55;8275:8:49;8285:6;8293;8252:8;:48::i;:::-;8318:6;7939:392;-1:-1:-1;;;;7939:392:49:o;8374:380::-;8446:7;8465:17;8485;8493:8;8485:7;:17::i;:::-;8465:37;;8525:9;8516:6;:18;8512:107;;;8580:8;8590:6;8598:9;8557:51;;-1:-1:-1;;;8557:51:49;;;;;;;;;;:::i;8512:107::-;8629:14;8646:19;8658:6;8646:11;:19::i;:::-;8629:36;-1:-1:-1;8675:48:49;735:10:55;8698:8:49;8708:6;8716;8675:8;:48::i;1981:93:47:-;2028:13;2060:7;2053:14;;;;;:::i;3315:178::-;3384:4;735:10:55;3438:27:47;735:10:55;3455:2:47;3459:5;3438:9;:27::i;7351:143:49:-;7417:7;7443:44;7460:6;7468:18;7443:16;:44::i;8801:413::-;8892:7;8911:17;8931:18;8943:5;8931:11;:18::i;:::-;8911:38;;8972:9;8963:6;:18;8959:108;;;9031:5;9038:6;9046:9;9004:52;;-1:-1:-1;;;9004:52:49;;;;;;;;;;:::i;8959:108::-;9077:14;9094:23;9110:6;9094:15;:23::i;:::-;9077:40;-1:-1:-1;9127:56:49;735:10:55;9151:8:49;9161:5;9168:6;9176;9127:9;:56::i;:::-;9201:6;8801:413;-1:-1:-1;;;;;8801:413:49:o;9259:405::-;9348:7;9367:17;9387:16;9397:5;9387:9;:16::i;:::-;9367:36;;9426:9;9417:6;:18;9413:106;;;9483:5;9490:6;9498:9;9458:50;;-1:-1:-1;;;9458:50:49;;;;;;;;;;:::i;9413:106::-;9529:14;9546:21;9560:6;9546:13;:21::i;:::-;9529:38;-1:-1:-1;9577:56:49;735:10:55;9601:8:49;9611:5;9618:6;9626;9577:9;:56::i;2192:163:20:-;2254:7;613:22;633:2;-1:-1:-1;;613:22:20;:::i;:::-;2276:15;;:33;:74;;2335:15;;2276:74;;6080:148:49;6150:7;6176:45;6193:6;6201:19;6176:16;:45::i;1631:228:20:-;1699:1;1690:6;:10;1686:169;;;1710:58;;-1:-1:-1;;;1710:58:20;;1745:4;1710:58;;;5819:51:81;5886:18;;;5879:34;;;-1:-1:-1;;;;;5846:6:49;1710:26:20;;;;5792:18:81;;1710:58:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1631:228;:::o;1686:169::-;5846:6:49;-1:-1:-1;;;;;1789:26:20;;1824:4;1839:7;1840:6;1839:7;:::i;:::-;1789:59;;-1:-1:-1;;;;;;1789:59:20;;;;;;;-1:-1:-1;;;;;5837:32:81;;;1789:59:20;;;5819:51:81;5886:18;;;5879:34;5792:18;;1789:59:20;5645:274:81;2359:179:20;2425:7;613:22;633:2;-1:-1:-1;;613:22:20;:::i;:::-;2447:19;;:37;:86;;2514:19;;2447:86;;;2487:24;2505:5;2487:17;:24::i;2717:362::-;2808:22;2798:6;:32;;;;;;;;:::i;:::-;;2794:67;;2832:18;:29;;;2794:67;2881:19;2871:6;:29;;;;;;;;:::i;:::-;;2867:61;;2902:15;:26;;;2867:61;2948:23;2938:6;:33;;;;;;;;:::i;:::-;;2934:69;;2973:19;:30;;;2934:69;3023:21;3013:6;:31;;;;;;;;:::i;:::-;;3009:65;;3046:17;:28;;;3009:65;2717:362;;:::o;2542:171::-;2606:7;613:22;633:2;-1:-1:-1;;613:22:20;:::i;:::-;2628:17;;:35;:80;;2691:17;;2628:80;;;2666:22;2682:5;2666:15;:22::i;572:63::-;613:22;633:2;-1:-1:-1;;613:22:20;:::i;:::-;572:63;:::o;10125:213:49:-;10222:7;10248:83;10262:13;:11;:13::i;:::-;:17;;10278:1;10262:17;:::i;:::-;10297:23;12279:5;10297:2;:23;:::i;:::-;2927:12:47;;10281:39:49;;;;:::i;:::-;10248:6;;:83;10322:8;10248:13;:83::i;8726:128:47:-;8810:37;8819:5;8826:7;8835:5;8842:4;8810:8;:37::i;:::-;8726:128;;;:::o;9788:213:49:-;9885:7;9911:83;9941:23;9885:7;9941:2;:23;:::i;:::-;2927:12:47;;9925:39:49;;;;:::i;:::-;9966:13;:11;:13::i;:::-;:17;;9982:1;9966:17;:::i;10415:476:47:-;-1:-1:-1;;;;;3657:18:47;;;10514:24;3657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10580:36:47;;10576:309;;;10655:5;10636:16;:24;10632:130;;;10714:7;10723:16;10741:5;10687:60;;-1:-1:-1;;;10687:60:47;;;;;;;;;;:::i;10632:130::-;10803:57;10812:5;10819:7;10847:5;10828:16;:24;10854:5;10803:8;:57::i;:::-;10504:387;10415:476;;;:::o;5393:300::-;-1:-1:-1;;;;;5476:18:47;;5472:86;;5517:30;;-1:-1:-1;;;5517:30:47;;5544:1;5517:30;;;2239:51:81;2212:18;;5517:30:47;2093:203:81;5472:86:47;-1:-1:-1;;;;;5571:16:47;;5567:86;;5610:32;;-1:-1:-1;;;5610:32:47;;5639:1;5610:32;;;2239:51:81;2212:18;;5610:32:47;2093:203:81;5567:86:47;5662:24;5670:4;5676:2;5680:5;5662:7;:24::i;1082:198:20:-;793:7;;;;792:8;823:13;834:1;793:7;823:8;793:7;823:13;:::i;:::-;816:21;;;:::i;:::-;784:55;;;;;-1:-1:-1;;;784:55:20;;-1:-1:-1;;;;;;8600:33:81;;;784:55:20;;;8582:52:81;8555:18;;784:55:20;8438:202:81;784:55:20;;1227:48:::1;1242:6;1250:8;1260:6;1268;1227:14;:48::i;1284:226::-:0;793:7;;;;792:8;823:13;834:1;793:7;823:8;793:7;823:13;:::i;:::-;816:21;;;:::i;:::-;784:55;;;;;-1:-1:-1;;;784:55:20;;-1:-1:-1;;;;;;8600:33:81;;;784:55:20;;;8582:52:81;8555:18;;784:55:20;8438:202:81;784:55:20;;1449:56:::1;1465:6;1473:8;1483:5;1490:6;1498;1449:15;:56::i;6788:153:49:-:0;-1:-1:-1;;;;;3095:18:47;;6853:7:49;3095:18:47;;;;;;;;;;;6879:55:49;;6914:19;6879:16;:55::i;6989:112::-;-1:-1:-1;;;;;3095:18:47;;7052:7:49;3095:18:47;;;;;;;;;;;7078:16:49;3004:116:47;9351:238:67;9452:7;9506:76;9522:26;9539:8;9522:16;:26::i;:::-;:59;;;;;9580:1;9565:11;9552:25;;;;;:::i;:::-;9562:1;9559;9552:25;:29;9522:59;34914:9:68;34907:17;;34795:145;9506:76:67;9478:25;9485:1;9488;9491:11;9478:6;:25::i;:::-;:104;;;;:::i;9701:432:47:-;-1:-1:-1;;;;;9813:19:47;;9809:89;;9855:32;;-1:-1:-1;;;9855:32:47;;9884:1;9855:32;;;2239:51:81;2212:18;;9855:32:47;2093:203:81;9809:89:47;-1:-1:-1;;;;;9911:21:47;;9907:90;;9955:31;;-1:-1:-1;;;9955:31:47;;9983:1;9955:31;;;2239:51:81;2212:18;;9955:31:47;2093:203:81;9907:90:47;-1:-1:-1;;;;;10006:18:47;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10051:76;;;;10101:7;-1:-1:-1;;;;;10085:31:47;10094:5;-1:-1:-1;;;;;10085:31:47;;10110:5;10085:31;;;;160:25:81;;148:2;133:18;;14:177;10085:31:47;;;;;;;;9701:432;;;;:::o;6008:1107::-;-1:-1:-1;;;;;6097:18:47;;6093:540;;6249:5;6233:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6093:540:47;;-1:-1:-1;6093:540:47;;-1:-1:-1;;;;;6307:15:47;;6285:19;6307:15;;;;;;;;;;;6340:19;;;6336:115;;;6411:4;6417:11;6430:5;6386:50;;-1:-1:-1;;;6386:50:47;;;;;;;;;;:::i;6336:115::-;-1:-1:-1;;;;;6571:15:47;;:9;:15;;;;;;;;;;6589:19;;;;6571:37;;6093:540;-1:-1:-1;;;;;6647:16:47;;6643:425;;6810:12;:21;;;;;;;6643:425;;;-1:-1:-1;;;;;7021:13:47;;:9;:13;;;;;;;;;;:22;;;;;;6643:425;7098:2;-1:-1:-1;;;;;7083:25:47;7092:4;-1:-1:-1;;;;;7083:25:47;;7102:5;7083:25;;;;160::81;;148:2;133:18;;14:177;7083:25:47;;;;;;;;6008:1107;;;:::o;10402:831:49:-;11071:65;11098:6;11106;11122:4;11129:6;11071:26;:65::i;:::-;11146:23;11152:8;11162:6;11146:5;:23::i;:::-;11201:8;-1:-1:-1;;;;;11185:41:49;11193:6;-1:-1:-1;;;;;11185:41:49;;11211:6;11219;11185:41;;;;;;8951:25:81;;;9007:2;8992:18;;8985:34;8939:2;8924:18;;8777:248;11300:915:49;11487:5;-1:-1:-1;;;;;11477:15:49;:6;-1:-1:-1;;;;;11477:15:49;;11473:84;;11508:38;11524:5;11531:6;11539;11508:15;:38::i;:::-;12065:20;12071:5;12078:6;12065:5;:20::i;:::-;12095:48;12118:6;12126:8;12136:6;12095:22;:48::i;:::-;12186:5;-1:-1:-1;;;;;12159:49:49;12176:8;-1:-1:-1;;;;;12159:49:49;12168:6;-1:-1:-1;;;;;12159:49:49;;12193:6;12201;12159:49;;;;;;8951:25:81;;;9007:2;8992:18;;8985:34;8939:2;8924:18;;8777:248;12159:49:49;;;;;;;;11300:915;;;;;:::o;28183:122:67:-;28251:4;28292:1;28280:8;28274:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;28297:1;28274:24;28267:31;;28183:122;;;:::o;4996:4226::-;5078:14;5449:5;;;5078:14;-1:-1:-1;;5453:1:67;5449;5621:20;5694:5;5690:2;5687:13;5679:5;5675:2;5671:14;5667:34;5658:43;;;5796:5;5805:1;5796:10;5792:368;;6134:11;6126:5;:19;;;;;:::i;:::-;;6119:26;;;;;;5792:368;6285:5;6270:11;:20;6266:143;;6310:84;3066:5;6330:16;;3065:36;940:4:59;3060:42:67;6310:11;:84::i;:::-;6664:17;6799:11;6796:1;6793;6786:25;7199:12;7229:15;;;7214:31;;7348:22;;;;;8094:1;8075;:15;;8074:21;;8327;;;8323:25;;8312:36;8397:21;;;8393:25;;8382:36;8469:21;;;8465:25;;8454:36;8540:21;;;8536:25;;8525:36;8613:21;;;8609:25;;8598:36;8687:21;;;8683:25;;;8672:36;7597:12;;;;7593:23;;;7618:1;7589:31;6913:20;;;6902:32;;;7709:12;;;;6960:21;;;;7446:16;;;;7700:21;;;;9163:15;;;;;-1:-1:-1;;4996:4226:67;;;;;:::o;1618:188:51:-;1745:53;;-1:-1:-1;;;;;9509:32:81;;;1745:53:51;;;9491:51:81;9578:32;;;9558:18;;;9551:60;9627:18;;;9620:34;;;1718:81:51;;1738:5;;1760:18;;;;;9464::81;;1745:53:51;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1745:53:51;;;;;;;;;;;1718:19;:81::i;7458:208:47:-;-1:-1:-1;;;;;7528:21:47;;7524:91;;7572:32;;-1:-1:-1;;;7572:32:47;;7601:1;7572:32;;;2239:51:81;2212:18;;7572:32:47;2093:203:81;7524:91:47;7624:35;7640:1;7644:7;7653:5;7624:7;:35::i;7984:206::-;-1:-1:-1;;;;;8054:21:47;;8050:89;;8098:30;;-1:-1:-1;;;8098:30:47;;8125:1;8098:30;;;2239:51:81;2212:18;;8098:30:47;2093:203:81;8050:89:47;8148:35;8156:7;8173:1;8177:5;8148:7;:35::i;1219:160:51:-;1328:43;;-1:-1:-1;;;;;5837:32:81;;;1328:43:51;;;5819:51:81;5886:18;;;5879:34;;;1301:71:51;;1321:5;;1343:14;;;;;5792:18:81;;1328:43:51;5645:274:81;1776:194:59;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;7686:720:51;7766:18;7794:19;7932:4;7929:1;7922:4;7916:11;7909:4;7903;7899:15;7896:1;7889:5;7882;7877:60;7989:7;7979:176;;8033:4;8027:11;8078:16;8075:1;8070:3;8055:40;8124:16;8119:3;8112:29;7979:176;-1:-1:-1;;8232:1:51;8226:8;8182:16;;-1:-1:-1;8258:15:51;;:68;;8310:11;8325:1;8310:16;;8258:68;;;-1:-1:-1;;;;;8276:26:51;;;:31;8258:68;8254:146;;;8349:40;;-1:-1:-1;;;8349:40:51;;-1:-1:-1;;;;;2257:32:81;;8349:40:51;;;2239:51:81;2212:18;;8349:40:51;2093:203:81;196:418;345:2;334:9;327:21;308:4;377:6;371:13;420:6;415:2;404:9;400:18;393:34;479:6;474:2;466:6;462:15;457:2;446:9;442:18;436:50;535:1;530:2;521:6;510:9;506:22;502:31;495:42;605:2;598;594:7;589:2;581:6;577:15;573:29;562:9;558:45;554:54;546:62;;;196:418;;;;:::o;619:226::-;678:6;731:2;719:9;710:7;706:23;702:32;699:52;;;747:1;744;737:12;699:52;-1:-1:-1;792:23:81;;619:226;-1:-1:-1;619:226:81:o;850:173::-;918:20;;-1:-1:-1;;;;;967:31:81;;957:42;;947:70;;1013:1;1010;1003:12;947:70;850:173;;;:::o;1028:300::-;1096:6;1104;1157:2;1145:9;1136:7;1132:23;1128:32;1125:52;;;1173:1;1170;1163:12;1125:52;1196:29;1215:9;1196:29;:::i;:::-;1186:39;1294:2;1279:18;;;;1266:32;;-1:-1:-1;;;1028:300:81:o;1525:374::-;1602:6;1610;1618;1671:2;1659:9;1650:7;1646:23;1642:32;1639:52;;;1687:1;1684;1677:12;1639:52;1710:29;1729:9;1710:29;:::i;:::-;1700:39;;1758:38;1792:2;1781:9;1777:18;1758:38;:::i;:::-;1525:374;;1748:48;;-1:-1:-1;;;1865:2:81;1850:18;;;;1837:32;;1525:374::o;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;2492:300::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2682:23;;;-1:-1:-1;2748:38:81;2782:2;2767:18;;2748:38;:::i;:::-;2738:48;;2492:300;;;;;:::o;2797:273::-;2853:6;2906:2;2894:9;2885:7;2881:23;2877:32;2874:52;;;2922:1;2919;2912:12;2874:52;2961:9;2948:23;3014:5;3007:13;3000:21;2993:5;2990:32;2980:60;;3036:1;3033;3026:12;3075:374;3152:6;3160;3168;3221:2;3209:9;3200:7;3196:23;3192:32;3189:52;;;3237:1;3234;3227:12;3189:52;3282:23;;;-1:-1:-1;3348:38:81;3382:2;3367:18;;3348:38;:::i;:::-;3338:48;;3405:38;3439:2;3428:9;3424:18;3405:38;:::i;:::-;3395:48;;3075:374;;;;;:::o;3638:395::-;3725:6;3733;3786:2;3774:9;3765:7;3761:23;3757:32;3754:52;;;3802:1;3799;3792:12;3754:52;3841:9;3828:23;3880:1;3873:5;3870:12;3860:40;;3896:1;3893;3886:12;4038:260;4106:6;4114;4167:2;4155:9;4146:7;4142:23;4138:32;4135:52;;;4183:1;4180;4173:12;4135:52;4206:29;4225:9;4206:29;:::i;:::-;4196:39;;4254:38;4288:2;4277:9;4273:18;4254:38;:::i;4303:184::-;4373:6;4426:2;4414:9;4405:7;4401:23;4397:32;4394:52;;;4442:1;4439;4432:12;4394:52;-1:-1:-1;4465:16:81;;4303:184;-1:-1:-1;4303:184:81:o;4492:380::-;4571:1;4567:12;;;;4614;;;4635:61;;4689:4;4681:6;4677:17;4667:27;;4635:61;4742:2;4734:6;4731:14;4711:18;4708:38;4705:161;;4788:10;4783:3;4779:20;4776:1;4769:31;4823:4;4820:1;4813:15;4851:4;4848:1;4841:15;4705:161;;4492:380;;;:::o;4877:127::-;4938:10;4933:3;4929:20;4926:1;4919:31;4969:4;4966:1;4959:15;4993:4;4990:1;4983:15;5009:148;5097:4;5076:12;;;5090;;;5072:31;;5115:13;;5112:39;;;5131:18;;:::i;5162:128::-;5229:9;;;5250:11;;;5247:37;;;5264:18;;:::i;5295:345::-;-1:-1:-1;;;;;5515:32:81;;;;5497:51;;5579:2;5564:18;;5557:34;;;;5622:2;5607:18;;5600:34;5485:2;5470:18;;5295:345::o;5924:136::-;5959:3;-1:-1:-1;;;5980:22:81;;5977:48;;6005:18;;:::i;:::-;-1:-1:-1;6045:1:81;6041:13;;5924:136::o;6065:127::-;6126:10;6121:3;6117:20;6114:1;6107:31;6157:4;6154:1;6147:15;6181:4;6178:1;6171:15;6197:125;6262:9;;;6283:10;;;6280:36;;;6296:18;;:::i;6327:375::-;6415:1;6433:5;6447:249;6468:1;6458:8;6455:15;6447:249;;;6518:4;6513:3;6509:14;6503:4;6500:24;6497:50;;;6527:18;;:::i;:::-;6577:1;6567:8;6563:16;6560:49;;;6591:16;;;;6560:49;6674:1;6670:16;;;;;6630:15;;6447:249;;;6327:375;;;;;;:::o;6707:902::-;6756:5;6786:8;6776:80;;-1:-1:-1;6827:1:81;6841:5;;6776:80;6875:4;6865:76;;-1:-1:-1;6912:1:81;6926:5;;6865:76;6957:4;6975:1;6970:59;;;;7043:1;7038:174;;;;6950:262;;6970:59;7000:1;6991:10;;7014:5;;;7038:174;7075:3;7065:8;7062:17;7059:43;;;7082:18;;:::i;:::-;-1:-1:-1;;7138:1:81;7124:16;;7197:5;;6950:262;;7296:2;7286:8;7283:16;7277:3;7271:4;7268:13;7264:36;7258:2;7248:8;7245:16;7240:2;7234:4;7231:12;7227:35;7224:77;7221:203;;;-1:-1:-1;7333:19:81;;;7409:5;;7221:203;7456:42;-1:-1:-1;;7481:8:81;7475:4;7456:42;:::i;:::-;7534:6;7530:1;7526:6;7522:19;7513:7;7510:32;7507:58;;;7545:18;;:::i;:::-;7583:20;;6707:902;-1:-1:-1;;;6707:902:81:o;7614:140::-;7672:5;7701:47;7742:4;7732:8;7728:19;7722:4;7701:47;:::i;7759:331::-;7864:9;7875;7917:8;7905:10;7902:24;7899:44;;;7939:1;7936;7929:12;7899:44;7968:6;7958:8;7955:20;7952:40;;;7988:1;7985;7978:12;7952:40;-1:-1:-1;;8014:23:81;;;8059:25;;;;;-1:-1:-1;7759:331:81:o;8095:338::-;8215:19;;-1:-1:-1;;;;;;8252:29:81;;;8301:1;8293:10;;8290:137;;;-1:-1:-1;;;;;;8362:1:81;8358:11;;;8355:1;8351:19;8347:46;;;8339:55;;8335:82;;-1:-1:-1;8290:137:81;;8095:338;;;;:::o;8645:127::-;8706:10;8701:3;8697:20;8694:1;8687:31;8737:4;8734:1;8727:15;8761:4;8758:1;8751:15;9030:254;9060:1;9094:4;9091:1;9087:12;9118:3;9108:134;;9164:10;9159:3;9155:20;9152:1;9145:31;9199:4;9196:1;9189:15;9227:4;9224:1;9217:15;9108:134;9274:3;9267:4;9264:1;9260:12;9256:22;9251:27;;;9030:254;;;;:::o"},"methodIdentifiers":{"OVERRIDE_UNSET()":"f3c0b892","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","broken()":"7fb1ad62","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","discreteEarning(int256)":"c7361ed2","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","overrideMaxDeposit()":"39d88aff","overrideMaxMint()":"034548cd","overrideMaxRedeem()":"cc7fcc60","overrideMaxWithdraw()":"38359018","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","setBroken(bool)":"86de9e4f","setOverride(uint8,uint256)":"d6dd0234","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC20Metadata\",\"name\":\"asset_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"VaultIsBroken\",\"type\":\"error\"},{\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"OVERRIDE_UNSET\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"broken\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"assets\",\"type\":\"int256\"}],\"name\":\"discreteEarning\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"broken_\",\"type\":\"bool\"}],\"name\":\"setBroken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"enum TestERC4626.OverrideOption\",\"name\":\"option\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"setOverride\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"asset()\":{\"details\":\"See {IERC4626-asset}. \"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"convertToAssets(uint256)\":{\"details\":\"See {IERC4626-convertToAssets}. \"},\"convertToShares(uint256)\":{\"details\":\"See {IERC4626-convertToShares}. \"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"See {IERC4626-deposit}. \"},\"maxRedeem(address)\":{\"details\":\"See {IERC4626-maxRedeem}. \"},\"maxWithdraw(address)\":{\"details\":\"See {IERC4626-maxWithdraw}. \"},\"mint(uint256,address)\":{\"details\":\"See {IERC4626-mint}. \"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"See {IERC4626-previewDeposit}. \"},\"previewMint(uint256)\":{\"details\":\"See {IERC4626-previewMint}. \"},\"previewRedeem(uint256)\":{\"details\":\"See {IERC4626-previewRedeem}. \"},\"previewWithdraw(uint256)\":{\"details\":\"See {IERC4626-previewWithdraw}. \"},\"redeem(uint256,address,address)\":{\"details\":\"See {IERC4626-redeem}. \"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"See {IERC4626-totalAssets}. \"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"See {IERC4626-withdraw}. \"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/utils/contracts/TestERC4626.sol\":\"TestERC4626\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestCurrency.sol\":{\"keccak256\":\"0x896e72fd6b8b3e3996a01dac23d24d6f127531eb779aa30f4d94f37dc4a44165\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4f3236e39041de8f04ae4b5cee689b839a2f97f676c49d090e6d73b904ecac5a\",\"dweb:/ipfs/QmWtZDBDjRogsPmbDxnQnreRwtDC7FPZ2VExZWdxmFhrT9\"]},\"@ensuro/utils/contracts/TestERC4626.sol\":{\"keccak256\":\"0xb5b0ea4c11b035239cb6dd0c6ee4448d54eca574b905e0f358751bd5e4c514ab\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://832c16310a97f728357408f54a44a9cdb1710b575802522ce873419abc9d1b37\",\"dweb:/ipfs/QmSMjLoXA4tgcCNgLJzoejnDMxUhpTgW4pX8fJdG7oe8k6\"]},\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0x666c704c58d4cf404eecd6e4a898a87e25b00b45416678de914e160582c3ff17\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6def3cc823ae3f155da28a241a8ff91538222053ed9d78f415758a9133e211a1\",\"dweb:/ipfs/QmSriniszojh4UP4WQqxCJhq2XsbCAULcB4qRij4EYw9Gi\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x51aabf26e9682335ecf33b708cbcdf26e42bdc2f0a2e6fc09d6640219a0e00f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9423a1603d9145e142d50aa0f9a31199731733535501a7d3918d36b1deed78f2\",\"dweb:/ipfs/QmQAArNnrZVfKrbY3vGer2G6775HozDmGrsovtz5NFqGrP\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x4ea01544758fd2c7045961904686bfe232d2220a04ecaa2d6b08dac17827febf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fabe6bef5167ae741dd8c22d7f81d3f9120bd61b290762a2e8f176712567d329\",\"dweb:/ipfs/QmSnEitJ6xmf1SSAUeZozD7Gx7h8bNnX3a1ZBzqeivsvVg\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":10495,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":10501,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":10503,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":10505,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":10507,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"},{"astId":4454,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_broken","offset":0,"slot":"5","type":"t_bool"},{"astId":4456,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxDeposit","offset":0,"slot":"6","type":"t_uint256"},{"astId":4458,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxMint","offset":0,"slot":"7","type":"t_uint256"},{"astId":4460,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxWithdraw","offset":0,"slot":"8","type":"t_uint256"},{"astId":4462,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxRedeem","offset":0,"slot":"9","type":"t_uint256"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol":{"ERC2771ContextUpgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"isTrustedForwarder(address)":"572b6c05","trustedForwarder()":"7da0a877"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Context variant with ERC-2771 support. WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771 specification adding the address size in bytes (20) to the calldata size. An example of an unexpected behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive` function only accessible if `msg.data.length == 0`. WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption. Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender} recovery.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"trustedForwarder()\":{\"details\":\"Returns the address of the trusted forwarder.\"}},\"stateVariables\":{\"_trustedForwarder\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":\"ERC2771ContextUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":{\"keccak256\":\"0x290ba719fd784ff406a8de038c10dc2d0914794c8b016781712fcbb36ca7bffb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b5764ef1dab80c115c14e307c5cbd5845320a653a2d8a3658d20dfba6bc7758\",\"dweb:/ipfs/QmSPSasRTVtYyAEnEVCBPZwoQzgKU7gu7q8NeT9AMMpmmx\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() {     _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable {     function initialize() initializer public {         __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");     } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {     function initializeV2() reinitializer(2) public {         __ERC20Permit_init(\\\"MyToken\\\");     } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol":{"UUPSUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","proxiableUUID()":"52d1902d","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing `UUPSUpgradeable` with a custom implementation of upgrades. The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"UPGRADE_INTERFACE_VERSION\":{\"details\":\"The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. If the getter returns `\\\"5.0.0\\\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must be the empty byte string if no function should be called, making it impossible to invoke the `receive` function during an upgrade.\"},\"__self\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":\"UUPSUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0xd861907d1168dcaec2a7846edbaed12feb8bad2d6781dba987be01374f90b495\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://12ff809243040419e2fc2aa7ef0aaa60b3e6ebc901553ba1de970ceeef208c4c\",\"dweb:/ipfs/QmX2dwMVNrQAahqVzEx94gqcVB6Z8ovifPYdEfHZzj7aEb\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"ERC20Upgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"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":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\":\"value\",\"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\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":\"ERC20Upgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0x5c54228bbb2f1f8616179c51bdb90b7960f4a3414c390ad5c6ead6763eb55a59\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://745fe72596bb8fde5f294d9d6b943db942202e4445536ee00da3ba011f876e86\",\"dweb:/ipfs/QmcjeESkk4rbhUVaSBfyq5f8rY56Jms1TwcJXaRD55K3UH\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol":{"ERC4626Upgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-4626 \\\"Tokenized Vault Standard\\\" as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. This extension allows the minting and burning of \\\"shares\\\" (represented using the ERC-20 inheritance) in exchange for underlying \\\"assets\\\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends the ERC-20 standard. Any additional extensions included along it would affect the \\\"shares\\\" token represented by this contract and not the \\\"assets\\\" token which is an independent contract. [CAUTION] ==== In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning with a \\\"donation\\\" to the vault that inflates the price of a share. This is variously known as a donation or inflation attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by verifying the amount received is as expected, using a wrapper that performs these checks such as https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router]. Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk. The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains. With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the underlying math can be found xref:erc4626.adoc#inflation-attack[here]. The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets will cause the first user to exit to experience reduced losses in detriment to the last users that will experience bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the `_convertToShares` and `_convertToAssets` functions. To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide]. ====\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"asset()\":{\"details\":\"See {IERC4626-asset}. \"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"convertToAssets(uint256)\":{\"details\":\"See {IERC4626-convertToAssets}. \"},\"convertToShares(uint256)\":{\"details\":\"See {IERC4626-convertToShares}. \"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"See {IERC4626-deposit}. \"},\"maxDeposit(address)\":{\"details\":\"See {IERC4626-maxDeposit}. \"},\"maxMint(address)\":{\"details\":\"See {IERC4626-maxMint}. \"},\"maxRedeem(address)\":{\"details\":\"See {IERC4626-maxRedeem}. \"},\"maxWithdraw(address)\":{\"details\":\"See {IERC4626-maxWithdraw}. \"},\"mint(uint256,address)\":{\"details\":\"See {IERC4626-mint}. \"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"See {IERC4626-previewDeposit}. \"},\"previewMint(uint256)\":{\"details\":\"See {IERC4626-previewMint}. \"},\"previewRedeem(uint256)\":{\"details\":\"See {IERC4626-previewRedeem}. \"},\"previewWithdraw(uint256)\":{\"details\":\"See {IERC4626-previewWithdraw}. \"},\"redeem(uint256,address,address)\":{\"details\":\"See {IERC4626-redeem}. \"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"See {IERC4626-totalAssets}. \"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"See {IERC4626-withdraw}. \"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":\"ERC4626Upgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0x5c54228bbb2f1f8616179c51bdb90b7960f4a3414c390ad5c6ead6763eb55a59\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://745fe72596bb8fde5f294d9d6b943db942202e4445536ee00da3ba011f876e86\",\"dweb:/ipfs/QmcjeESkk4rbhUVaSBfyq5f8rY56Jms1TwcJXaRD55K3UH\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":{\"keccak256\":\"0xa683afe511eb3a2e8a039c5aa18feda651c6de04b92e101532ac76661fdaad8f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d2117b118221d039e98d77bef9b0b68e95b600403f16aa1b565e3d6c0bcd6384\",\"dweb:/ipfs/QmZAhSMkC257uzT16gLkkuS1q7sLRos1Euj1oPMJXg8rSh\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0x666c704c58d4cf404eecd6e4a898a87e25b00b45416678de914e160582c3ff17\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6def3cc823ae3f155da28a241a8ff91538222053ed9d78f415758a9133e211a1\",\"dweb:/ipfs/QmSriniszojh4UP4WQqxCJhq2XsbCAULcB4qRij4EYw9Gi\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x4ea01544758fd2c7045961904686bfe232d2220a04ecaa2d6b08dac17827febf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fabe6bef5167ae741dd8c22d7f81d3f9120bd61b290762a2e8f176712567d329\",\"dweb:/ipfs/QmSnEitJ6xmf1SSAUeZozD7Gx7h8bNnX3a1ZBzqeivsvVg\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/AccessControl.sol":{"AccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DEFAULT_ADMIN_ROLE()":"a217fddf","getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module that allows children to implement role-based access control mechanisms. This is a lightweight version that doesn't allow enumerating role members except through off-chain means by accessing the contract event logs. Some applications may benefit from on-chain enumerability, for those cases see {AccessControlEnumerable}. Roles are referred to by their `bytes32` identifier. These should be exposed in the external API and be unique. The best way to achieve this is by using `public constant` hash digests: ```solidity bytes32 public constant MY_ROLE = keccak256(\\\"MY_ROLE\\\"); ``` Roles can be used to represent a set of permissions. To restrict access to a function call, use {hasRole}: ```solidity function foo() public {     require(hasRole(MY_ROLE, msg.sender));     ... } ``` Roles can be granted and revoked dynamically via the {grantRole} and {revokeRole} functions. Each role has an associated admin role, and only accounts that have a role's admin role can call {grantRole} and {revokeRole}. By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means that only accounts with this role will be able to grant or revoke other roles. More complex role relationships can be created by using {_setRoleAdmin}. WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to grant and revoke this role. Extra precautions should be taken to secure accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} to enforce additional security measures for this role.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80\",\"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":6798,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)6793_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_bytes32,t_struct(RoleData)6793_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)6793_storage"},"t_struct(RoleData)6793_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":6790,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":6792,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"}}}}},"@openzeppelin/contracts/access/IAccessControl.sol":{"IAccessControl":{"abi":[{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getRoleAdmin(bytes32)":"248a9ca3","grantRole(bytes32,address)":"2f2ff15d","hasRole(bytes32,address)":"91d14854","renounceRole(bytes32,address)":"36568abe","revokeRole(bytes32,address)":"d547741f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"External interface of AccessControl declared to support ERC-165 detection.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call:   - if using `revokeRole`, it is the admin role bearer   - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":\"IAccessControl\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xc1c2a7f1563b77050dc6d507db9f4ada5d042c1f6a9ddbffdc49c77cdc0a1606\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fd54abb96a6156d9a761f6fdad1d3004bc48d2d4fce47f40a3f91a7ae83fc3a1\",\"dweb:/ipfs/QmUrFSGkTDJ7WaZ6qPVVe3Gn5uN2viPb7x7QQ35UX4DofX\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/AccessManager.sol":{"AccessManager":{"abi":[{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_ROLE","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"immediate","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_7278":{"entryPoint":null,"id":7278,"parameterSlots":1,"returnSlots":0},"@_getFullAt_21813":{"entryPoint":1016,"id":21813,"parameterSlots":2,"returnSlots":3},"@_grantRole_7782":{"entryPoint":111,"id":7782,"parameterSlots":4,"returnSlots":1},"@getFull_21833":{"entryPoint":983,"id":21833,"parameterSlots":1,"returnSlots":3},"@get_21851":{"entryPoint":937,"id":21851,"parameterSlots":1,"returnSlots":1},"@max_18424":{"entryPoint":967,"id":18424,"parameterSlots":2,"returnSlots":1},"@pack_21996":{"entryPoint":null,"id":21996,"parameterSlots":3,"returnSlots":1},"@ternary_18405":{"entryPoint":null,"id":18405,"parameterSlots":3,"returnSlots":1},"@timestamp_21745":{"entryPoint":693,"id":21745,"parameterSlots":0,"returnSlots":1},"@toDelay_21775":{"entryPoint":708,"id":21775,"parameterSlots":1,"returnSlots":1},"@toUint48_20569":{"entryPoint":883,"id":20569,"parameterSlots":1,"returnSlots":1},"@toUint_21578":{"entryPoint":null,"id":21578,"parameterSlots":1,"returnSlots":1},"@unpack_21958":{"entryPoint":null,"id":21958,"parameterSlots":1,"returnSlots":3},"@withUpdate_21907":{"entryPoint":717,"id":21907,"parameterSlots":3,"returnSlots":2},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":1089,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":1154,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":1184,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1134,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1849:81","nodeType":"YulBlock","src":"0:1849:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"95:209:81","nodeType":"YulBlock","src":"95:209:81","statements":[{"body":{"nativeSrc":"141:16:81","nodeType":"YulBlock","src":"141:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"150:1:81","nodeType":"YulLiteral","src":"150:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"153:1:81","nodeType":"YulLiteral","src":"153:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"143:6:81","nodeType":"YulIdentifier","src":"143:6:81"},"nativeSrc":"143:12:81","nodeType":"YulFunctionCall","src":"143:12:81"},"nativeSrc":"143:12:81","nodeType":"YulExpressionStatement","src":"143:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"116:7:81","nodeType":"YulIdentifier","src":"116:7:81"},{"name":"headStart","nativeSrc":"125:9:81","nodeType":"YulIdentifier","src":"125:9:81"}],"functionName":{"name":"sub","nativeSrc":"112:3:81","nodeType":"YulIdentifier","src":"112:3:81"},"nativeSrc":"112:23:81","nodeType":"YulFunctionCall","src":"112:23:81"},{"kind":"number","nativeSrc":"137:2:81","nodeType":"YulLiteral","src":"137:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"108:3:81","nodeType":"YulIdentifier","src":"108:3:81"},"nativeSrc":"108:32:81","nodeType":"YulFunctionCall","src":"108:32:81"},"nativeSrc":"105:52:81","nodeType":"YulIf","src":"105:52:81"},{"nativeSrc":"166:29:81","nodeType":"YulVariableDeclaration","src":"166:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"185:9:81","nodeType":"YulIdentifier","src":"185:9:81"}],"functionName":{"name":"mload","nativeSrc":"179:5:81","nodeType":"YulIdentifier","src":"179:5:81"},"nativeSrc":"179:16:81","nodeType":"YulFunctionCall","src":"179:16:81"},"variables":[{"name":"value","nativeSrc":"170:5:81","nodeType":"YulTypedName","src":"170:5:81","type":""}]},{"body":{"nativeSrc":"258:16:81","nodeType":"YulBlock","src":"258:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"267:1:81","nodeType":"YulLiteral","src":"267:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"270:1:81","nodeType":"YulLiteral","src":"270:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"260:6:81","nodeType":"YulIdentifier","src":"260:6:81"},"nativeSrc":"260:12:81","nodeType":"YulFunctionCall","src":"260:12:81"},"nativeSrc":"260:12:81","nodeType":"YulExpressionStatement","src":"260:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"217:5:81","nodeType":"YulIdentifier","src":"217:5:81"},{"arguments":[{"name":"value","nativeSrc":"228:5:81","nodeType":"YulIdentifier","src":"228:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"243:3:81","nodeType":"YulLiteral","src":"243:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"248:1:81","nodeType":"YulLiteral","src":"248:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"239:3:81","nodeType":"YulIdentifier","src":"239:3:81"},"nativeSrc":"239:11:81","nodeType":"YulFunctionCall","src":"239:11:81"},{"kind":"number","nativeSrc":"252:1:81","nodeType":"YulLiteral","src":"252:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"235:3:81","nodeType":"YulIdentifier","src":"235:3:81"},"nativeSrc":"235:19:81","nodeType":"YulFunctionCall","src":"235:19:81"}],"functionName":{"name":"and","nativeSrc":"224:3:81","nodeType":"YulIdentifier","src":"224:3:81"},"nativeSrc":"224:31:81","nodeType":"YulFunctionCall","src":"224:31:81"}],"functionName":{"name":"eq","nativeSrc":"214:2:81","nodeType":"YulIdentifier","src":"214:2:81"},"nativeSrc":"214:42:81","nodeType":"YulFunctionCall","src":"214:42:81"}],"functionName":{"name":"iszero","nativeSrc":"207:6:81","nodeType":"YulIdentifier","src":"207:6:81"},"nativeSrc":"207:50:81","nodeType":"YulFunctionCall","src":"207:50:81"},"nativeSrc":"204:70:81","nodeType":"YulIf","src":"204:70:81"},{"nativeSrc":"283:15:81","nodeType":"YulAssignment","src":"283:15:81","value":{"name":"value","nativeSrc":"293:5:81","nodeType":"YulIdentifier","src":"293:5:81"},"variableNames":[{"name":"value0","nativeSrc":"283:6:81","nodeType":"YulIdentifier","src":"283:6:81"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"14:290:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:81","nodeType":"YulTypedName","src":"61:9:81","type":""},{"name":"dataEnd","nativeSrc":"72:7:81","nodeType":"YulTypedName","src":"72:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:81","nodeType":"YulTypedName","src":"84:6:81","type":""}],"src":"14:290:81"},{"body":{"nativeSrc":"410:102:81","nodeType":"YulBlock","src":"410:102:81","statements":[{"nativeSrc":"420:26:81","nodeType":"YulAssignment","src":"420:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"432:9:81","nodeType":"YulIdentifier","src":"432:9:81"},{"kind":"number","nativeSrc":"443:2:81","nodeType":"YulLiteral","src":"443:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"428:3:81","nodeType":"YulIdentifier","src":"428:3:81"},"nativeSrc":"428:18:81","nodeType":"YulFunctionCall","src":"428:18:81"},"variableNames":[{"name":"tail","nativeSrc":"420:4:81","nodeType":"YulIdentifier","src":"420:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"462:9:81","nodeType":"YulIdentifier","src":"462:9:81"},{"arguments":[{"name":"value0","nativeSrc":"477:6:81","nodeType":"YulIdentifier","src":"477:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"493:3:81","nodeType":"YulLiteral","src":"493:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"498:1:81","nodeType":"YulLiteral","src":"498:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"489:3:81","nodeType":"YulIdentifier","src":"489:3:81"},"nativeSrc":"489:11:81","nodeType":"YulFunctionCall","src":"489:11:81"},{"kind":"number","nativeSrc":"502:1:81","nodeType":"YulLiteral","src":"502:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"485:3:81","nodeType":"YulIdentifier","src":"485:3:81"},"nativeSrc":"485:19:81","nodeType":"YulFunctionCall","src":"485:19:81"}],"functionName":{"name":"and","nativeSrc":"473:3:81","nodeType":"YulIdentifier","src":"473:3:81"},"nativeSrc":"473:32:81","nodeType":"YulFunctionCall","src":"473:32:81"}],"functionName":{"name":"mstore","nativeSrc":"455:6:81","nodeType":"YulIdentifier","src":"455:6:81"},"nativeSrc":"455:51:81","nodeType":"YulFunctionCall","src":"455:51:81"},"nativeSrc":"455:51:81","nodeType":"YulExpressionStatement","src":"455:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"309:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"379:9:81","nodeType":"YulTypedName","src":"379:9:81","type":""},{"name":"value0","nativeSrc":"390:6:81","nodeType":"YulTypedName","src":"390:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"401:4:81","nodeType":"YulTypedName","src":"401:4:81","type":""}],"src":"309:203:81"},{"body":{"nativeSrc":"616:101:81","nodeType":"YulBlock","src":"616:101:81","statements":[{"nativeSrc":"626:26:81","nodeType":"YulAssignment","src":"626:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"638:9:81","nodeType":"YulIdentifier","src":"638:9:81"},{"kind":"number","nativeSrc":"649:2:81","nodeType":"YulLiteral","src":"649:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"634:3:81","nodeType":"YulIdentifier","src":"634:3:81"},"nativeSrc":"634:18:81","nodeType":"YulFunctionCall","src":"634:18:81"},"variableNames":[{"name":"tail","nativeSrc":"626:4:81","nodeType":"YulIdentifier","src":"626:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"668:9:81","nodeType":"YulIdentifier","src":"668:9:81"},{"arguments":[{"name":"value0","nativeSrc":"683:6:81","nodeType":"YulIdentifier","src":"683:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"699:2:81","nodeType":"YulLiteral","src":"699:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"703:1:81","nodeType":"YulLiteral","src":"703:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"695:3:81","nodeType":"YulIdentifier","src":"695:3:81"},"nativeSrc":"695:10:81","nodeType":"YulFunctionCall","src":"695:10:81"},{"kind":"number","nativeSrc":"707:1:81","nodeType":"YulLiteral","src":"707:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"691:3:81","nodeType":"YulIdentifier","src":"691:3:81"},"nativeSrc":"691:18:81","nodeType":"YulFunctionCall","src":"691:18:81"}],"functionName":{"name":"and","nativeSrc":"679:3:81","nodeType":"YulIdentifier","src":"679:3:81"},"nativeSrc":"679:31:81","nodeType":"YulFunctionCall","src":"679:31:81"}],"functionName":{"name":"mstore","nativeSrc":"661:6:81","nodeType":"YulIdentifier","src":"661:6:81"},"nativeSrc":"661:50:81","nodeType":"YulFunctionCall","src":"661:50:81"},"nativeSrc":"661:50:81","nodeType":"YulExpressionStatement","src":"661:50:81"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"517:200:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"585:9:81","nodeType":"YulTypedName","src":"585:9:81","type":""},{"name":"value0","nativeSrc":"596:6:81","nodeType":"YulTypedName","src":"596:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"607:4:81","nodeType":"YulTypedName","src":"607:4:81","type":""}],"src":"517:200:81"},{"body":{"nativeSrc":"754:95:81","nodeType":"YulBlock","src":"754:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"771:1:81","nodeType":"YulLiteral","src":"771:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"778:3:81","nodeType":"YulLiteral","src":"778:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"783:10:81","nodeType":"YulLiteral","src":"783:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"774:3:81","nodeType":"YulIdentifier","src":"774:3:81"},"nativeSrc":"774:20:81","nodeType":"YulFunctionCall","src":"774:20:81"}],"functionName":{"name":"mstore","nativeSrc":"764:6:81","nodeType":"YulIdentifier","src":"764:6:81"},"nativeSrc":"764:31:81","nodeType":"YulFunctionCall","src":"764:31:81"},"nativeSrc":"764:31:81","nodeType":"YulExpressionStatement","src":"764:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"811:1:81","nodeType":"YulLiteral","src":"811:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"814:4:81","nodeType":"YulLiteral","src":"814:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"804:6:81","nodeType":"YulIdentifier","src":"804:6:81"},"nativeSrc":"804:15:81","nodeType":"YulFunctionCall","src":"804:15:81"},"nativeSrc":"804:15:81","nodeType":"YulExpressionStatement","src":"804:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"835:1:81","nodeType":"YulLiteral","src":"835:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"838:4:81","nodeType":"YulLiteral","src":"838:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"828:6:81","nodeType":"YulIdentifier","src":"828:6:81"},"nativeSrc":"828:15:81","nodeType":"YulFunctionCall","src":"828:15:81"},"nativeSrc":"828:15:81","nodeType":"YulExpressionStatement","src":"828:15:81"}]},"name":"panic_error_0x11","nativeSrc":"722:127:81","nodeType":"YulFunctionDefinition","src":"722:127:81"},{"body":{"nativeSrc":"901:132:81","nodeType":"YulBlock","src":"901:132:81","statements":[{"nativeSrc":"911:58:81","nodeType":"YulAssignment","src":"911:58:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"926:1:81","nodeType":"YulIdentifier","src":"926:1:81"},{"kind":"number","nativeSrc":"929:14:81","nodeType":"YulLiteral","src":"929:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"922:3:81","nodeType":"YulIdentifier","src":"922:3:81"},"nativeSrc":"922:22:81","nodeType":"YulFunctionCall","src":"922:22:81"},{"arguments":[{"name":"y","nativeSrc":"950:1:81","nodeType":"YulIdentifier","src":"950:1:81"},{"kind":"number","nativeSrc":"953:14:81","nodeType":"YulLiteral","src":"953:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"946:3:81","nodeType":"YulIdentifier","src":"946:3:81"},"nativeSrc":"946:22:81","nodeType":"YulFunctionCall","src":"946:22:81"}],"functionName":{"name":"add","nativeSrc":"918:3:81","nodeType":"YulIdentifier","src":"918:3:81"},"nativeSrc":"918:51:81","nodeType":"YulFunctionCall","src":"918:51:81"},"variableNames":[{"name":"sum","nativeSrc":"911:3:81","nodeType":"YulIdentifier","src":"911:3:81"}]},{"body":{"nativeSrc":"1005:22:81","nodeType":"YulBlock","src":"1005:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1007:16:81","nodeType":"YulIdentifier","src":"1007:16:81"},"nativeSrc":"1007:18:81","nodeType":"YulFunctionCall","src":"1007:18:81"},"nativeSrc":"1007:18:81","nodeType":"YulExpressionStatement","src":"1007:18:81"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"984:3:81","nodeType":"YulIdentifier","src":"984:3:81"},{"kind":"number","nativeSrc":"989:14:81","nodeType":"YulLiteral","src":"989:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"981:2:81","nodeType":"YulIdentifier","src":"981:2:81"},"nativeSrc":"981:23:81","nodeType":"YulFunctionCall","src":"981:23:81"},"nativeSrc":"978:49:81","nodeType":"YulIf","src":"978:49:81"}]},"name":"checked_add_t_uint48","nativeSrc":"854:179:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"884:1:81","nodeType":"YulTypedName","src":"884:1:81","type":""},{"name":"y","nativeSrc":"887:1:81","nodeType":"YulTypedName","src":"887:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"893:3:81","nodeType":"YulTypedName","src":"893:3:81","type":""}],"src":"854:179:81"},{"body":{"nativeSrc":"1185:216:81","nodeType":"YulBlock","src":"1185:216:81","statements":[{"nativeSrc":"1195:26:81","nodeType":"YulAssignment","src":"1195:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1207:9:81","nodeType":"YulIdentifier","src":"1207:9:81"},{"kind":"number","nativeSrc":"1218:2:81","nodeType":"YulLiteral","src":"1218:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1203:3:81","nodeType":"YulIdentifier","src":"1203:3:81"},"nativeSrc":"1203:18:81","nodeType":"YulFunctionCall","src":"1203:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1195:4:81","nodeType":"YulIdentifier","src":"1195:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1237:9:81","nodeType":"YulIdentifier","src":"1237:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1252:6:81","nodeType":"YulIdentifier","src":"1252:6:81"},{"kind":"number","nativeSrc":"1260:10:81","nodeType":"YulLiteral","src":"1260:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1248:3:81","nodeType":"YulIdentifier","src":"1248:3:81"},"nativeSrc":"1248:23:81","nodeType":"YulFunctionCall","src":"1248:23:81"}],"functionName":{"name":"mstore","nativeSrc":"1230:6:81","nodeType":"YulIdentifier","src":"1230:6:81"},"nativeSrc":"1230:42:81","nodeType":"YulFunctionCall","src":"1230:42:81"},"nativeSrc":"1230:42:81","nodeType":"YulExpressionStatement","src":"1230:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1292:9:81","nodeType":"YulIdentifier","src":"1292:9:81"},{"kind":"number","nativeSrc":"1303:2:81","nodeType":"YulLiteral","src":"1303:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1288:3:81","nodeType":"YulIdentifier","src":"1288:3:81"},"nativeSrc":"1288:18:81","nodeType":"YulFunctionCall","src":"1288:18:81"},{"arguments":[{"name":"value1","nativeSrc":"1312:6:81","nodeType":"YulIdentifier","src":"1312:6:81"},{"kind":"number","nativeSrc":"1320:14:81","nodeType":"YulLiteral","src":"1320:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1308:3:81","nodeType":"YulIdentifier","src":"1308:3:81"},"nativeSrc":"1308:27:81","nodeType":"YulFunctionCall","src":"1308:27:81"}],"functionName":{"name":"mstore","nativeSrc":"1281:6:81","nodeType":"YulIdentifier","src":"1281:6:81"},"nativeSrc":"1281:55:81","nodeType":"YulFunctionCall","src":"1281:55:81"},"nativeSrc":"1281:55:81","nodeType":"YulExpressionStatement","src":"1281:55:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1356:9:81","nodeType":"YulIdentifier","src":"1356:9:81"},{"kind":"number","nativeSrc":"1367:2:81","nodeType":"YulLiteral","src":"1367:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1352:3:81","nodeType":"YulIdentifier","src":"1352:3:81"},"nativeSrc":"1352:18:81","nodeType":"YulFunctionCall","src":"1352:18:81"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"1386:6:81","nodeType":"YulIdentifier","src":"1386:6:81"}],"functionName":{"name":"iszero","nativeSrc":"1379:6:81","nodeType":"YulIdentifier","src":"1379:6:81"},"nativeSrc":"1379:14:81","nodeType":"YulFunctionCall","src":"1379:14:81"}],"functionName":{"name":"iszero","nativeSrc":"1372:6:81","nodeType":"YulIdentifier","src":"1372:6:81"},"nativeSrc":"1372:22:81","nodeType":"YulFunctionCall","src":"1372:22:81"}],"functionName":{"name":"mstore","nativeSrc":"1345:6:81","nodeType":"YulIdentifier","src":"1345:6:81"},"nativeSrc":"1345:50:81","nodeType":"YulFunctionCall","src":"1345:50:81"},"nativeSrc":"1345:50:81","nodeType":"YulExpressionStatement","src":"1345:50:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"1038:363:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1138:9:81","nodeType":"YulTypedName","src":"1138:9:81","type":""},{"name":"value2","nativeSrc":"1149:6:81","nodeType":"YulTypedName","src":"1149:6:81","type":""},{"name":"value1","nativeSrc":"1157:6:81","nodeType":"YulTypedName","src":"1157:6:81","type":""},{"name":"value0","nativeSrc":"1165:6:81","nodeType":"YulTypedName","src":"1165:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1176:4:81","nodeType":"YulTypedName","src":"1176:4:81","type":""}],"src":"1038:363:81"},{"body":{"nativeSrc":"1454:122:81","nodeType":"YulBlock","src":"1454:122:81","statements":[{"nativeSrc":"1464:51:81","nodeType":"YulAssignment","src":"1464:51:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"1480:1:81","nodeType":"YulIdentifier","src":"1480:1:81"},{"kind":"number","nativeSrc":"1483:10:81","nodeType":"YulLiteral","src":"1483:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1476:3:81","nodeType":"YulIdentifier","src":"1476:3:81"},"nativeSrc":"1476:18:81","nodeType":"YulFunctionCall","src":"1476:18:81"},{"arguments":[{"name":"y","nativeSrc":"1500:1:81","nodeType":"YulIdentifier","src":"1500:1:81"},{"kind":"number","nativeSrc":"1503:10:81","nodeType":"YulLiteral","src":"1503:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1496:3:81","nodeType":"YulIdentifier","src":"1496:3:81"},"nativeSrc":"1496:18:81","nodeType":"YulFunctionCall","src":"1496:18:81"}],"functionName":{"name":"sub","nativeSrc":"1472:3:81","nodeType":"YulIdentifier","src":"1472:3:81"},"nativeSrc":"1472:43:81","nodeType":"YulFunctionCall","src":"1472:43:81"},"variableNames":[{"name":"diff","nativeSrc":"1464:4:81","nodeType":"YulIdentifier","src":"1464:4:81"}]},{"body":{"nativeSrc":"1548:22:81","nodeType":"YulBlock","src":"1548:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1550:16:81","nodeType":"YulIdentifier","src":"1550:16:81"},"nativeSrc":"1550:18:81","nodeType":"YulFunctionCall","src":"1550:18:81"},"nativeSrc":"1550:18:81","nodeType":"YulExpressionStatement","src":"1550:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"1530:4:81","nodeType":"YulIdentifier","src":"1530:4:81"},{"kind":"number","nativeSrc":"1536:10:81","nodeType":"YulLiteral","src":"1536:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"1527:2:81","nodeType":"YulIdentifier","src":"1527:2:81"},"nativeSrc":"1527:20:81","nodeType":"YulFunctionCall","src":"1527:20:81"},"nativeSrc":"1524:46:81","nodeType":"YulIf","src":"1524:46:81"}]},"name":"checked_sub_t_uint32","nativeSrc":"1406:170:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1436:1:81","nodeType":"YulTypedName","src":"1436:1:81","type":""},{"name":"y","nativeSrc":"1439:1:81","nodeType":"YulTypedName","src":"1439:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"1445:4:81","nodeType":"YulTypedName","src":"1445:4:81","type":""}],"src":"1406:170:81"},{"body":{"nativeSrc":"1717:130:81","nodeType":"YulBlock","src":"1717:130:81","statements":[{"nativeSrc":"1727:26:81","nodeType":"YulAssignment","src":"1727:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1739:9:81","nodeType":"YulIdentifier","src":"1739:9:81"},{"kind":"number","nativeSrc":"1750:2:81","nodeType":"YulLiteral","src":"1750:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1735:3:81","nodeType":"YulIdentifier","src":"1735:3:81"},"nativeSrc":"1735:18:81","nodeType":"YulFunctionCall","src":"1735:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1727:4:81","nodeType":"YulIdentifier","src":"1727:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1769:9:81","nodeType":"YulIdentifier","src":"1769:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1784:6:81","nodeType":"YulIdentifier","src":"1784:6:81"},{"kind":"number","nativeSrc":"1792:4:81","nodeType":"YulLiteral","src":"1792:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1780:3:81","nodeType":"YulIdentifier","src":"1780:3:81"},"nativeSrc":"1780:17:81","nodeType":"YulFunctionCall","src":"1780:17:81"}],"functionName":{"name":"mstore","nativeSrc":"1762:6:81","nodeType":"YulIdentifier","src":"1762:6:81"},"nativeSrc":"1762:36:81","nodeType":"YulFunctionCall","src":"1762:36:81"},"nativeSrc":"1762:36:81","nodeType":"YulExpressionStatement","src":"1762:36:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1818:9:81","nodeType":"YulIdentifier","src":"1818:9:81"},{"kind":"number","nativeSrc":"1829:2:81","nodeType":"YulLiteral","src":"1829:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1814:3:81","nodeType":"YulIdentifier","src":"1814:3:81"},"nativeSrc":"1814:18:81","nodeType":"YulFunctionCall","src":"1814:18:81"},{"name":"value1","nativeSrc":"1834:6:81","nodeType":"YulIdentifier","src":"1834:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1807:6:81","nodeType":"YulIdentifier","src":"1807:6:81"},"nativeSrc":"1807:34:81","nodeType":"YulFunctionCall","src":"1807:34:81"},"nativeSrc":"1807:34:81","nodeType":"YulExpressionStatement","src":"1807:34:81"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"1581:266:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1678:9:81","nodeType":"YulTypedName","src":"1678:9:81","type":""},{"name":"value1","nativeSrc":"1689:6:81","nodeType":"YulTypedName","src":"1689:6:81","type":""},{"name":"value0","nativeSrc":"1697:6:81","nodeType":"YulTypedName","src":"1697:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1708:4:81","nodeType":"YulTypedName","src":"1708:4:81","type":""}],"src":"1581:266:81"}]},"contents":"{\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        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\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_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50604051612cc9380380612cc983398101604081905261002e91610441565b6001600160a01b03811661005c57604051630409d6d160e11b81525f60048201526024015b60405180910390fd5b6100685f82818061006f565b50506104bc565b5f6002600160401b03196001600160401b038616016100ac5760405163061c6a4360e21b81526001600160401b0386166004820152602401610053565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156101a15763ffffffff85166100f76102b5565b6101019190610482565b905060405180604001604052808265ffffffffffff1681526020016101318663ffffffff166102c460201b60201c565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c16845282529091208351815494909201519092166601000000000000026001600160a01b031990931665ffffffffffff90911617919091179055610247565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546101ed9166010000000000009091046001600160701b03169086906102cd565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316660100000000000002600160301b600160a01b03199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f6102bf42610373565b905090565b63ffffffff1690565b5f80806102e26001600160701b0387166103a9565b90505f61031d8563ffffffff168763ffffffff168463ffffffff1611610308575f610312565b61031288856104a0565b63ffffffff166103c7565b905063ffffffff811661032e6102b5565b6103389190610482565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f65ffffffffffff8211156103a5576040516306dfcc6560e41b81526030600482015260248101839052604401610053565b5090565b5f806103bd6001600160701b0384166103d7565b5090949350505050565b8082118183180281185b92915050565b5f80806103eb846103e66102b5565b6103f8565b9250925092509193909250565b6001600160501b03602083901c166001600160701b03831665ffffffffffff604085901c811690841681111561043057828282610434565b815f5f5b9250925092509250925092565b5f60208284031215610451575f5ffd5b81516001600160a01b0381168114610467575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b65ffffffffffff81811683821601908111156103d1576103d161046e565b63ffffffff82811682821603908111156103d1576103d161046e565b612800806104c95f395ff3fe6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f93660046120da565b6106cc565b005b34801561020b575f5ffd5b5061024261021a36600461213c565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e61027936600461213c565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad366004612155565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612190565b61076e565b61027e6102df3660046121f9565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe36600461225c565b6108fc565b34801561030e575f5ffd5b5061032261031d36600461229e565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe6103763660046122b8565b610982565b348015610386575f5ffd5b5061039a6103953660046122e9565b610994565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e53660046122e9565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e610432366004612300565b6109c5565b348015610442575f5ffd5b506101fe6104513660046122b8565b6109f2565b348015610461575f5ffd5b5061024261047036600461213c565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab366004612330565b610a04565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd36600461235c565b610a3e565b3480156104ed575f5ffd5b506101fe6104fc3660046121f9565b610ad5565b34801561050c575f5ffd5b5061052061051b366004612300565b610b7f565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a366004612377565b610ba6565b34801561055a575f5ffd5b5061056e61056936600461239f565b610bb8565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046123ff565b610bf0565b604051610256919061243d565b3480156105b3575f5ffd5b506105c76105c23660046124c1565b610cd5565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd36600461229e565b610d56565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c761063136600461229e565b610d6d565b348015610641575f5ffd5b506101fe610650366004612509565b610de6565b348015610660575f5ffd5b5061027e61066f36600461239f565b610df8565b34801561067f575f5ffd5b5061069361068e366004612525565b610f4b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c736600461229e565b61108c565b6106d46110b5565b5f5b828110156107175761070f858585848181106106f4576106f4612592565b905060200201602081019061070991906125a6565b8461112c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ad565b92915050565b6107606110b5565b61076a82826111cb565b5050565b6107766110b5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861123c565b91509150811580156107f6575063ffffffff8116155b15610849578287610807888861128d565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bb8565b90505f63ffffffff831615158061087c575061087182610994565b65ffffffffffff1615155b1561088d5761088a826112a4565b90505b6003546108a38a61089e8b8b61128d565b6113a2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506113e4915050565b506003559450505050505b9392505050565b6109046110b5565b61091883836109128661071e565b84611484565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff81169291829182919061097490600160301b90046001600160701b03166116ca565b969991985096509350505050565b61098a6110b5565b61076a82826116eb565b5f8181526002602052604081205465ffffffffffff166109b38161178e565b6109bd57806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ad565b6109fa6110b5565b61076a82826117bc565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a466110b5565b6001600160401b0383161580610a6457506001600160401b03838116145b15610a8d5760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610ac89291906125e9565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b389190612604565b6001600160e01b03191614610b6b57604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610b7a85838686610bb8565b6112a4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610bae6110b5565b61076a828261186d565b5f84848484604051602001610bd0949392919061261f565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c1957610c19612686565b604051908082528060200260200182016040528015610c4c57816020015b6060815260200190600190039081610c375790505b5091505f5b83811015610ccd57610ca830868684818110610c6f57610c6f612592565b9050602002810190610c81919061269a565b85604051602001610c94939291906126f3565b60405160208183030381529060405261197c565b838281518110610cba57610cba612592565b6020908102919091010152600101610c51565b505092915050565b5f5f610ce084610b7f565b15610cef57505f905080610d4e565b306001600160a01b03861603610d1357610d0984846119ee565b5f91509150610d4e565b5f610d1e8585610a04565b90505f5f610d2c8389610d6d565b9150915081610d3c575f5f610d46565b63ffffffff811615815b945094505050505b935093915050565b610d5e6110b5565b610d688282611a04565b505050565b5f8067fffffffffffffffe196001600160401b03851601610d935750600190505f610ddf565b5f5f610d9f868661091e565b5050915091508165ffffffffffff165f14158015610dd45750610dc0611aed565b65ffffffffffff168265ffffffffffff1611155b93509150610ddf9050565b9250929050565b610dee6110b5565b61076a8282611afc565b5f3381610e05858561128d565b90505f610e1488888888610bb8565b5f8181526002602052604081205491925065ffffffffffff9091169003610e515760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610eea575f610e755f85610d6d565b5090505f610e8f610e8961021a8b87610a04565b86610d6d565b50905081158015610e9e575080155b15610ee757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f5b8289898961123c565b9150505f8163ffffffff16610f6e611aed565b610f789190612708565b905063ffffffff82161580610fae57505f8665ffffffffffff16118015610fae57508065ffffffffffff168665ffffffffffff16105b15610fbf5782896108078a8a61128d565b610fd98665ffffffffffff168265ffffffffffff16611bb7565b9550610fe7838a8a8a610bb8565b9450610ff285611bc6565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611078908a9088908f908f908f90612726565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d5e57604051635f159e6360e01b815260040160405180910390fd5b335f806110c3838236611c12565b9150915081610d68578063ffffffff165f0361111d575f6110e48136611cd5565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610b7a84305f36610bb8565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f6111c1836001600160701b03166116ca565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061123090841515815260200190565b60405180910390a25050565b5f80306001600160a01b0386160361126257611259868585611c12565b91509150611284565b6004831061127e5761127986866105c2878761128d565b611259565b505f9050805b94509492505050565b5f61129b600482848661265f565b6108f59161276b565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036112ec5760405163060a299b60e41b815260048101859052602401610840565b6112f4611aed565b65ffffffffffff168265ffffffffffff16111561132757604051630c65b5bd60e11b815260048101859052602401610840565b6113308261178e565b1561135157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156114105760405163cf47918160e01b815247600482015260248101839052604401610840565b5f5f856001600160a01b0316848660405161142b91906127a3565b5f6040518083038185875af1925050503d805f8114611465576040519150601f19603f3d011682016040523d82523d5f602084013e61146a565b606091505b509150915061147a868383611ebb565b9695505050505050565b5f67fffffffffffffffe196001600160401b038616016114c25760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115b2578463ffffffff1661150d611aed565b6115179190612708565b905060405180604001604052808265ffffffffffff1681526020016115458663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561165c565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546115fb91600160301b9091046001600160701b0316908690611f17565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f6116de846116d9611aed565b611fbd565b9250925092509193909250565b6001600160401b038216158061170957506001600160401b03828116145b156117325760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f611797611aed565b65ffffffffffff166117ac62093a8084612708565b65ffffffffffff16111592915050565b6001600160401b03821615806117da57506001600160401b03828116145b156118035760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118aa5760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f908152600160208190526040822001546118e390600160801b90046001600160701b03168362069780611f17565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610ac8908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f5f846001600160a01b03168460405161199891906127a3565b5f60405180830381855af49150503d805f81146119d0576040519150601f19603f3d011682016040523d82523d5f602084013e6119d5565b606091505b50915091506119e5858383611ebb565b95945050505050565b5f6119f983836113a2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a425760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611a8357505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611af742612009565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b2e906001600160701b03168362069780611f17565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610ac8565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611bf15750611bef8161178e565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c2757505f905080610d4e565b306001600160a01b03861603611c4a57610d0930611c45868661128d565b6119ee565b5f5f5f611c578787611cd5565b92509250925082158015611c6f5750611c6f30610b7f565b15611c82575f5f94509450505050610d4e565b5f5f611c8e848b610d6d565b9150915081611ca7575f5f965096505050505050610d4e565b611cbd8363ffffffff168263ffffffff16611bb7565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611cee57505f915081905080611eb4565b5f611cf9868661128d565b90506001600160e01b031981166310a6aa3760e31b1480611d2a57506001600160e01b031981166330cae18760e01b145b80611d4557506001600160e01b0319811663294b14a960e11b145b80611d6057506001600160e01b03198116635326cae760e11b145b80611d7b57506001600160e01b0319811663d22b598960e01b145b15611d905760015f5f93509350935050611eb4565b6001600160e01b0319811663063fc60f60e21b1480611dbf57506001600160e01b0319811663167bd39560e01b145b80611dda57506001600160e01b031981166308d6122d60e01b145b15611e19575f611dee60246004888a61265f565b810190611dfb9190612300565b90505f611e07826109c5565b600196505f95509350611eb492505050565b6001600160e01b0319811663012e238d60e51b1480611e4857506001600160e01b03198116635be958b160e11b145b15611ea0575f611e5c60246004888a61265f565b810190611e69919061213c565b90506001611e92826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611eb4565b5f611eab3083610a04565b5f935093509350505b9250925092565b606082611ed057611ecb8261203f565b6108f5565b8151158015611ee757506001600160a01b0384163b155b15611f1057604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b50806108f5565b5f5f5f611f2c866001600160701b03166111ad565b90505f611f678563ffffffff168763ffffffff168463ffffffff1611611f52575f611f5c565b611f5c88856127ae565b63ffffffff16611bb7565b90508063ffffffff16611f78611aed565b611f829190612708565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c8116908416811115611ff857828282611ffc565b815f5f5b9250925092509250925092565b5f65ffffffffffff82111561203b576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b80511561204f5780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b50565b6001600160a01b0381168114612068575f5ffd5b5f5f83601f84011261208f575f5ffd5b5081356001600160401b038111156120a5575f5ffd5b6020830191508360208260051b8501011115610ddf575f5ffd5b80356001600160401b03811681146120d5575f5ffd5b919050565b5f5f5f5f606085870312156120ed575f5ffd5b84356120f88161206b565b935060208501356001600160401b03811115612112575f5ffd5b61211e8782880161207f565b90945092506121319050604086016120bf565b905092959194509250565b5f6020828403121561214c575f5ffd5b6108f5826120bf565b5f5f60408385031215612166575f5ffd5b82356121718161206b565b915060208301358015158114612185575f5ffd5b809150509250929050565b5f5f604083850312156121a1575f5ffd5b82356121ac8161206b565b915060208301356121858161206b565b5f5f83601f8401126121cc575f5ffd5b5081356001600160401b038111156121e2575f5ffd5b602083019150836020828501011115610ddf575f5ffd5b5f5f5f6040848603121561220b575f5ffd5b83356122168161206b565b925060208401356001600160401b03811115612230575f5ffd5b61223c868287016121bc565b9497909650939450505050565b803563ffffffff811681146120d5575f5ffd5b5f5f5f6060848603121561226e575f5ffd5b612277846120bf565b925060208401356122878161206b565b915061229560408501612249565b90509250925092565b5f5f604083850312156122af575f5ffd5b6121ac836120bf565b5f5f604083850312156122c9575f5ffd5b6122d2836120bf565b91506122e0602084016120bf565b90509250929050565b5f602082840312156122f9575f5ffd5b5035919050565b5f60208284031215612310575f5ffd5b81356108f58161206b565b6001600160e01b031981168114612068575f5ffd5b5f5f60408385031215612341575f5ffd5b823561234c8161206b565b915060208301356121858161231b565b5f5f5f6040848603121561236e575f5ffd5b612216846120bf565b5f5f60408385031215612388575f5ffd5b612391836120bf565b91506122e060208401612249565b5f5f5f5f606085870312156123b2575f5ffd5b84356123bd8161206b565b935060208501356123cd8161206b565b925060408501356001600160401b038111156123e7575f5ffd5b6123f3878288016121bc565b95989497509550505050565b5f5f60208385031215612410575f5ffd5b82356001600160401b03811115612425575f5ffd5b6124318582860161207f565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156124b557603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612463565b50929695505050505050565b5f5f5f606084860312156124d3575f5ffd5b83356124de8161206b565b925060208401356124ee8161206b565b915060408401356124fe8161231b565b809150509250925092565b5f5f6040838503121561251a575f5ffd5b82356123918161206b565b5f5f5f5f60608587031215612538575f5ffd5b84356125438161206b565b935060208501356001600160401b0381111561255d575f5ffd5b612569878288016121bc565b909450925050604085013565ffffffffffff81168114612587575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156125b6575f5ffd5b81356108f58161231b565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6125fc6020830184866125c1565b949350505050565b5f60208284031215612614575f5ffd5b81516108f58161231b565b6001600160a01b038581168252841660208201526060604082018190525f9061147a90830184866125c1565b634e487b7160e01b5f52601160045260245ffd5b5f5f8585111561266d575f5ffd5b83861115612679575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e198436030181126126af575f5ffd5b8301803591506001600160401b038211156126c8575f5ffd5b602001915036819003821315610ddf575f5ffd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f815261147a81856126dc565b65ffffffffffff81811683821601908111156107525761075261264b565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061276090830184866125c1565b979650505050505050565b80356001600160e01b0319811690600484101561279c576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f6108f582846126dc565b63ffffffff82811682821603908111156107525761075261264b56fea264697066735822122008488042c5e48441f9c1e356771abf3351e08768158c34f7772cb4d814266a0164736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2CC9 CODESIZE SUB DUP1 PUSH2 0x2CC9 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x441 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5C JUMPI PUSH1 0x40 MLOAD PUSH4 0x409D6D1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x68 PUSH0 DUP3 DUP2 DUP1 PUSH2 0x6F JUMP JUMPDEST POP POP PUSH2 0x4BC JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0xAC JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x1A1 JUMPI PUSH4 0xFFFFFFFF DUP6 AND PUSH2 0xF7 PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x101 SWAP2 SWAP1 PUSH2 0x482 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x131 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2C4 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x247 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x1ED SWAP2 PUSH7 0x1000000000000 SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH7 0x1000000000000 MUL PUSH1 0x1 PUSH1 0x30 SHL PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2BF TIMESTAMP PUSH2 0x373 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x2E2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP8 AND PUSH2 0x3A9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x31D DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x308 JUMPI PUSH0 PUSH2 0x312 JUMP JUMPDEST PUSH2 0x312 DUP9 DUP6 PUSH2 0x4A0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x3C7 JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP2 AND PUSH2 0x32E PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x338 SWAP2 SWAP1 PUSH2 0x482 JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x53 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x3BD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP5 AND PUSH2 0x3D7 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 DUP3 GT DUP2 DUP4 XOR MUL DUP2 XOR JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x3EB DUP5 PUSH2 0x3E6 PUSH2 0x2B5 JUMP JUMPDEST PUSH2 0x3F8 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x50 SHL SUB PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x430 JUMPI DUP3 DUP3 DUP3 PUSH2 0x434 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x467 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D1 PUSH2 0x46E JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D1 PUSH2 0x46E JUMP JUMPDEST PUSH2 0x2800 DUP1 PUSH2 0x4C9 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xD22B5989 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x636 JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x655 JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x674 JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x6AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x5E3 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x602 JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA166AA89 GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x501 JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x530 JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x54F JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x491 JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x4E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0x4665096D GT PUSH2 0x143 JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x3CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x2D1 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x25F JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x293 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x20DA JUMP JUMPDEST PUSH2 0x6CC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x213C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x279 CALLDATASIZE PUSH1 0x4 PUSH2 0x213C JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x2155 JUMP JUMPDEST PUSH2 0x758 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2CC CALLDATASIZE PUSH1 0x4 PUSH2 0x2190 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x21F9 JUMP JUMPDEST PUSH2 0x7D0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x225C JUMP JUMPDEST PUSH2 0x8FC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x322 PUSH2 0x31D CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x982 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E9 JUMP JUMPDEST PUSH2 0x994 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x3E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E9 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x2300 JUMP JUMPDEST PUSH2 0x9C5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x9F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x213C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x4AB CALLDATASIZE PUSH1 0x4 PUSH2 0x2330 JUMP JUMPDEST PUSH2 0xA04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x235C JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x21F9 JUMP JUMPDEST PUSH2 0xAD5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x2300 JUMP JUMPDEST PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x54A CALLDATASIZE PUSH1 0x4 PUSH2 0x2377 JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x239F JUMP JUMPDEST PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59B PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x23FF JUMP JUMPDEST PUSH2 0xBF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x5FD CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xD56 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x631 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x2509 JUMP JUMPDEST PUSH2 0xDE6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x239F JUMP JUMPDEST PUSH2 0xDF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x2525 JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x6C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10B5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x717 JUMPI PUSH2 0x70F DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x6F4 JUMPI PUSH2 0x6F4 PUSH2 0x2592 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x25A6 JUMP JUMPDEST DUP5 PUSH2 0x112C JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x6D6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x11CB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x7E0 DUP4 DUP9 DUP9 DUP9 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x7F6 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x849 JUMPI DUP3 DUP8 PUSH2 0x807 DUP9 DUP9 PUSH2 0x128D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x856 DUP5 DUP10 DUP10 DUP10 PUSH2 0xBB8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x994 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12A4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0x8EA DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x13E4 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x904 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x1484 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16CA JUMP JUMPDEST SWAP7 SWAP10 SWAP2 SWAP9 POP SWAP7 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x98A PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x16EB JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9B3 DUP2 PUSH2 0x178E JUMP JUMPDEST PUSH2 0x9BD JUMPI DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST PUSH2 0x9FA PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x17BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA46 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xA8D JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xAC8 SWAP3 SWAP2 SWAP1 PUSH2 0x25E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB14 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xB38 SWAP2 SWAP1 PUSH2 0x2604 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xB6B JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x717 PUSH2 0xB7A DUP6 DUP4 DUP7 DUP7 PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0x12A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xBAE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x186D JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xBD0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x261F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x2686 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC4C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC37 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCCD JUMPI PUSH2 0xCA8 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xC6F JUMPI PUSH2 0xC6F PUSH2 0x2592 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC81 SWAP2 SWAP1 PUSH2 0x269A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC94 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x197C JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCBA JUMPI PUSH2 0xCBA PUSH2 0x2592 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC51 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xCE0 DUP5 PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0xCEF JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD13 JUMPI PUSH2 0xD09 DUP5 DUP5 PUSH2 0x19EE JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH2 0xD1E DUP6 DUP6 PUSH2 0xA04 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD2C DUP4 DUP10 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD3C JUMPI PUSH0 PUSH0 PUSH2 0xD46 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD5E PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0xD68 DUP3 DUP3 PUSH2 0x1A04 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xD93 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xDDF JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD9F DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI POP PUSH2 0xDC0 PUSH2 0x1AED JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xDDF SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xDEE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1AFC JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE05 DUP6 DUP6 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE14 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBB8 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0xE51 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEEA JUMPI PUSH0 PUSH2 0xE75 PUSH0 DUP6 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xE8F PUSH2 0xE89 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA04 JUMP JUMPDEST DUP7 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEE7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x840 JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0xF5B DUP3 DUP10 DUP10 DUP10 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xF6E PUSH2 0x1AED JUMP JUMPDEST PUSH2 0xF78 SWAP2 SWAP1 PUSH2 0x2708 JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFAE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFAE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFBF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x128D JUMP JUMPDEST PUSH2 0xFD9 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1BB7 JUMP JUMPDEST SWAP6 POP PUSH2 0xFE7 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBB8 JUMP JUMPDEST SWAP5 POP PUSH2 0xFF2 DUP6 PUSH2 0x1BC6 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x1078 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x2726 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0xD5E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x10C3 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C12 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD68 JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x111D JUMPI PUSH0 PUSH2 0x10E4 DUP2 CALLDATASIZE PUSH2 0x1CD5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x840 JUMP JUMPDEST PUSH2 0x918 PUSH2 0xB7A DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x11C1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16CA JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x1230 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1262 JUMPI PUSH2 0x1259 DUP7 DUP6 DUP6 PUSH2 0x1C12 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1284 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x127E JUMPI PUSH2 0x1279 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1259 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129B PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x265F JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x276B JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x12EC JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x12F4 PUSH2 0x1AED JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1327 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1330 DUP3 PUSH2 0x178E JUMP JUMPDEST ISZERO PUSH2 0x1351 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP3 SWAP1 SWAP3 AND DUP4 DUP3 ADD MSTORE DUP1 MLOAD DUP1 DUP5 SUB DUP3 ADD DUP2 MSTORE PUSH1 0x60 SWAP1 SWAP4 ADD SWAP1 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x1410 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x142B SWAP2 SWAP1 PUSH2 0x27A3 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1465 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x146A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x147A DUP7 DUP4 DUP4 PUSH2 0x1EBB JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x14C2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x15B2 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x150D PUSH2 0x1AED JUMP JUMPDEST PUSH2 0x1517 SWAP2 SWAP1 PUSH2 0x2708 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1545 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x165C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x15FB SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x16DE DUP5 PUSH2 0x16D9 PUSH2 0x1AED JUMP JUMPDEST PUSH2 0x1FBD JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1709 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1732 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1797 PUSH2 0x1AED JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x17AC PUSH3 0x93A80 DUP5 PUSH2 0x2708 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x17DA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1803 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x18AA JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x18E3 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xAC8 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x1998 SWAP2 SWAP1 PUSH2 0x27A3 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x19D0 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x19D5 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x19E5 DUP6 DUP4 DUP4 PUSH2 0x1EBB JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x19F9 DUP4 DUP4 PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x1A42 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x1A83 JUMPI POP PUSH0 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1AF7 TIMESTAMP PUSH2 0x2009 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x1B2E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xAC8 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x8F5 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1BF1 JUMPI POP PUSH2 0x1BEF DUP2 PUSH2 0x178E JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x76A JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x1C27 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C4A JUMPI PUSH2 0xD09 ADDRESS PUSH2 0x1C45 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x19EE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C57 DUP8 DUP8 PUSH2 0x1CD5 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1C6F JUMPI POP PUSH2 0x1C6F ADDRESS PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0x1C82 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1C8E DUP5 DUP12 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CA7 JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH2 0x1CBD DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1BB7 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1CEE JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1EB4 JUMP JUMPDEST PUSH0 PUSH2 0x1CF9 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D2A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D45 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D60 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D7B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1D90 JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1EB4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1DBF JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1DDA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E19 JUMPI PUSH0 PUSH2 0x1DEE PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x265F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1DFB SWAP2 SWAP1 PUSH2 0x2300 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E07 DUP3 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1EB4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x1E48 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EA0 JUMPI PUSH0 PUSH2 0x1E5C PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x265F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E69 SWAP2 SWAP1 PUSH2 0x213C JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1E92 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x1EB4 JUMP JUMPDEST PUSH0 PUSH2 0x1EAB ADDRESS DUP4 PUSH2 0xA04 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1ED0 JUMPI PUSH2 0x1ECB DUP3 PUSH2 0x203F JUMP JUMPDEST PUSH2 0x8F5 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1EE7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1F10 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST POP DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F2C DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F67 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1F52 JUMPI PUSH0 PUSH2 0x1F5C JUMP JUMPDEST PUSH2 0x1F5C DUP9 DUP6 PUSH2 0x27AE JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1BB7 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1F78 PUSH2 0x1AED JUMP JUMPDEST PUSH2 0x1F82 SWAP2 SWAP1 PUSH2 0x2708 JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x1FF8 JUMPI DUP3 DUP3 DUP3 PUSH2 0x1FFC JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x203B JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x204F JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2068 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x208F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20A5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x20F8 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2112 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x211E DUP8 DUP3 DUP9 ADD PUSH2 0x207F JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2131 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x20BF JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x214C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x20BF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2166 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2171 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2185 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x21A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x21AC DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2185 DUP2 PUSH2 0x206B JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x220B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2216 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x223C DUP7 DUP3 DUP8 ADD PUSH2 0x21BC JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x20D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x226E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2277 DUP5 PUSH2 0x20BF JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2287 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH2 0x2295 PUSH1 0x40 DUP6 ADD PUSH2 0x2249 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21AC DUP4 PUSH2 0x20BF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22D2 DUP4 PUSH2 0x20BF JUMP JUMPDEST SWAP2 POP PUSH2 0x22E0 PUSH1 0x20 DUP5 ADD PUSH2 0x20BF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2310 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x206B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2068 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2341 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x234C DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2185 DUP2 PUSH2 0x231B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x236E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2216 DUP5 PUSH2 0x20BF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2388 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2391 DUP4 PUSH2 0x20BF JUMP JUMPDEST SWAP2 POP PUSH2 0x22E0 PUSH1 0x20 DUP5 ADD PUSH2 0x2249 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x23B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x23BD DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x23CD DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x23E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x23F3 DUP8 DUP3 DUP9 ADD PUSH2 0x21BC JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2410 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2425 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2431 DUP6 DUP3 DUP7 ADD PUSH2 0x207F JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x24B5 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE DUP2 MLOAD DUP1 MLOAD DUP1 DUP8 MSTORE DUP1 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP10 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP9 ADD ADD SWAP7 POP POP POP PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2463 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x24D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24DE DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24EE DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x24FE DUP2 PUSH2 0x231B JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x251A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2391 DUP2 PUSH2 0x206B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2538 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2543 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x255D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2569 DUP8 DUP3 DUP9 ADD PUSH2 0x21BC JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x231B JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x25FC PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x25C1 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2614 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x231B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x147A SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25C1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x266D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2679 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x26AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x26C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x147A DUP2 DUP6 PUSH2 0x26DC JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x264B JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2760 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25C1 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x279C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8F5 DUP3 DUP5 PUSH2 0x26DC JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x264B JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDMOD BASEFEE DUP1 TIMESTAMP 0xC5 0xE4 DUP5 COINBASE 0xF9 0xC1 0xE3 JUMP PUSH24 0x1ABF3351E08768158C34F7772CB4D814266A0164736F6C63 NUMBER STOP ADDMOD SHR STOP CALLER ","sourceMap":"3722:26153:29:-:0;;;6279:283;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6327:26:29;;6323:108;;6376:44;;-1:-1:-1;;;6376:44:29;;6417:1;6376:44;;;455:51:81;428:18;;6376:44:29;;;;;;;;6323:108;6513:42;5433:16;6536:12;5433:16;;6513:10;:42::i;:::-;;6279:283;3722:26153;;11543:1061;11701:4;-1:-1:-1;;;;;;;;;;;11721:21:29;;;11717:90;;11765:31;;-1:-1:-1;;;11765:31:29;;-1:-1:-1;;;;;679:31:81;;11765::29;;;661:50:81;634:18;;11765:31:29;517:200:81;11717:90:29;-1:-1:-1;;;;;11834:14:29;;11817;11834;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11834:31:29;;;;;;;;;:37;;;:42;;11909:585;;;;11946:29;;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;11938:37;;12023:55;;;;;;;;12038:5;12023:55;;;;;;12052:24;:14;:22;;;;;:24;;:::i;:::-;-1:-1:-1;;;;;12023:55:29;;;;;;-1:-1:-1;;;;;11989:14:29;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11989:31:29;;;;;;;;;:89;;;;;;;;;;;;;;-1:-1:-1;;;;;;11989:89:29;;;;;;;;;;;;;;11909:585;;;-1:-1:-1;;;;;12370:14:29;;12468:1;12370:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12370:31:29;;;;;;;;;:37;:113;;:37;;;;-1:-1:-1;;;;;12370:37:29;;12436:14;;12370:48;:113::i;:::-;-1:-1:-1;;;;;12322:14:29;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12322:31:29;;;;;;;;;12321:162;;-1:-1:-1;;;;;12321:162:29;;;;;-1:-1:-1;;;;;;;;12321:162:29;;;;;;;;;;;-1:-1:-1;11909:585:29;12509:62;;;1260:10:81;1248:23;;1230:42;;1320:14;1308:27;;1303:2;1288:18;;1281:55;1379:14;;1372:22;1352:18;;;1345:50;12509:62:29;;-1:-1:-1;;;;;12509:62:29;;;-1:-1:-1;;;;;12509:62:29;;;;;;;;1218:2:81;12509:62:29;;;-1:-1:-1;12588:9:29;11543:1061;-1:-1:-1;;;;;11543:1061:29:o;750:110:70:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;2508:108::-;2589:20;;;2508:108::o;4033:390::-;4154:18;;;4214:10;-1:-1:-1;;;;;4214:8:70;;;:10::i;:::-;4199:25;;4234:14;4258:61;4267:10;4258:61;;4287:8;4279:16;;:5;:16;;;:39;;4317:1;4279:39;;;4298:16;4306:8;4298:5;:16;:::i;:::-;4258:61;;:8;:61::i;:::-;4234:86;-1:-1:-1;4339:21:70;;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4330:30;-1:-1:-1;5126:19:70;;;5120:2;5096:26;;;;;5089:2;5070:21;;;;;5069:54;:76;4370:46;;;;4033:390;;;;;;:::o;14296:213:68:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:68;;14452:2;14421:41;;;1762:36:81;1814:18;;;1807:34;;;1735:18;;14421:41:68;1581:266:81;14370:103:68;-1:-1:-1;14496:5:68;14296:213::o;3609:130:70:-;3657:6;;3696:14;-1:-1:-1;;;;;3696:12:70;;;:14::i;:::-;-1:-1:-1;3675:35:70;;3609:130;-1:-1:-1;;;;3609:130:70:o;3189:111:67:-;3281:5;;;3066;;;3065:36;3060:42;;3189:111;;;;;:::o;3393:159:70:-;3445:18;;;3516:29;3527:4;3533:11;:9;:11::i;:::-;3516:10;:29::i;:::-;3509:36;;;;;;3393:159;;;;;:::o;2868:307::-;-1:-1:-1;;;;;4771:2:70;4764:9;;;;-1:-1:-1;;;;;3062:11:70;;4800:9;4807:2;4800:9;;;;;;3092:19;;;;;:76;;3136:11;3149:10;3161:6;3092:76;;;3115:10;3127:1;3130;3092:76;3085:83;;;;;;2868:307;;;;;:::o;14:290:81:-;84:6;137:2;125:9;116:7;112:23;108:32;105:52;;;153:1;150;143:12;105:52;179:16;;-1:-1:-1;;;;;224:31:81;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:81:o;722:127::-;783:10;778:3;774:20;771:1;764:31;814:4;811:1;804:15;838:4;835:1;828:15;854:179;953:14;922:22;;;946;;;918:51;;981:23;;978:49;;;1007:18;;:::i;1406:170::-;1503:10;1496:18;;;1476;;;1472:43;;1527:20;;1524:46;;;1550:18;;:::i;1581:266::-;3722:26153:29;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ADMIN_ROLE_7217":{"entryPoint":null,"id":7217,"parameterSlots":0,"returnSlots":0},"@PUBLIC_ROLE_7225":{"entryPoint":null,"id":7225,"parameterSlots":0,"returnSlots":0},"@_canCallExtended_8864":{"entryPoint":4668,"id":8864,"parameterSlots":4,"returnSlots":2},"@_canCallSelf_8966":{"entryPoint":7186,"id":8966,"parameterSlots":3,"returnSlots":2},"@_checkAuthorized_8666":{"entryPoint":4277,"id":8666,"parameterSlots":0,"returnSlots":0},"@_checkNotScheduled_8270":{"entryPoint":7110,"id":8270,"parameterSlots":1,"returnSlots":0},"@_checkSelector_9019":{"entryPoint":4749,"id":9019,"parameterSlots":2,"returnSlots":1},"@_consumeScheduledOp_8572":{"entryPoint":4772,"id":8572,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_12609":{"entryPoint":null,"id":12609,"parameterSlots":0,"returnSlots":1},"@_getAdminRestrictions_8819":{"entryPoint":7381,"id":8819,"parameterSlots":2,"returnSlots":3},"@_getFullAt_21813":{"entryPoint":8125,"id":21813,"parameterSlots":2,"returnSlots":3},"@_grantRole_7782":{"entryPoint":5252,"id":7782,"parameterSlots":4,"returnSlots":1},"@_hashExecutionId_9038":{"entryPoint":5026,"id":9038,"parameterSlots":2,"returnSlots":1},"@_isExecuting_8984":{"entryPoint":6638,"id":8984,"parameterSlots":2,"returnSlots":1},"@_isExpired_9002":{"entryPoint":6030,"id":9002,"parameterSlots":1,"returnSlots":1},"@_msgData_12601":{"entryPoint":null,"id":12601,"parameterSlots":0,"returnSlots":2},"@_msgSender_12592":{"entryPoint":null,"id":12592,"parameterSlots":0,"returnSlots":1},"@_revert_12579":{"entryPoint":8255,"id":12579,"parameterSlots":1,"returnSlots":0},"@_revokeRole_7830":{"entryPoint":6660,"id":7830,"parameterSlots":2,"returnSlots":1},"@_setGrantDelay_7942":{"entryPoint":6253,"id":7942,"parameterSlots":2,"returnSlots":0},"@_setRoleAdmin_7864":{"entryPoint":5867,"id":7864,"parameterSlots":2,"returnSlots":0},"@_setRoleGuardian_7898":{"entryPoint":6076,"id":7898,"parameterSlots":2,"returnSlots":0},"@_setTargetAdminDelay_8054":{"entryPoint":6908,"id":8054,"parameterSlots":2,"returnSlots":0},"@_setTargetClosed_8091":{"entryPoint":4555,"id":8091,"parameterSlots":2,"returnSlots":0},"@_setTargetFunctionRole_8003":{"entryPoint":4396,"id":8003,"parameterSlots":3,"returnSlots":0},"@canCall_7345":{"entryPoint":3285,"id":7345,"parameterSlots":3,"returnSlots":2},"@cancel_8470":{"entryPoint":3576,"id":8470,"parameterSlots":4,"returnSlots":1},"@consumeScheduledOp_8507":{"entryPoint":2773,"id":8507,"parameterSlots":3,"returnSlots":0},"@execute_8368":{"entryPoint":2000,"id":8368,"parameterSlots":3,"returnSlots":1},"@expiration_7354":{"entryPoint":null,"id":7354,"parameterSlots":0,"returnSlots":1},"@functionCallWithValue_12445":{"entryPoint":5092,"id":12445,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_12497":{"entryPoint":6524,"id":12497,"parameterSlots":2,"returnSlots":1},"@getAccess_7503":{"entryPoint":2334,"id":7503,"parameterSlots":2,"returnSlots":4},"@getFull_21833":{"entryPoint":5834,"id":21833,"parameterSlots":1,"returnSlots":3},"@getNonce_8128":{"entryPoint":null,"id":8128,"parameterSlots":1,"returnSlots":1},"@getRoleAdmin_7425":{"entryPoint":null,"id":7425,"parameterSlots":1,"returnSlots":1},"@getRoleGrantDelay_7455":{"entryPoint":1822,"id":7455,"parameterSlots":1,"returnSlots":1},"@getRoleGuardian_7439":{"entryPoint":null,"id":7439,"parameterSlots":1,"returnSlots":1},"@getSchedule_8114":{"entryPoint":2452,"id":8114,"parameterSlots":1,"returnSlots":1},"@getTargetAdminDelay_7411":{"entryPoint":2501,"id":7411,"parameterSlots":1,"returnSlots":1},"@getTargetFunctionRole_7395":{"entryPoint":2564,"id":7395,"parameterSlots":2,"returnSlots":1},"@get_21851":{"entryPoint":4525,"id":21851,"parameterSlots":1,"returnSlots":1},"@grantRole_7598":{"entryPoint":2300,"id":7598,"parameterSlots":3,"returnSlots":0},"@hasRole_7547":{"entryPoint":3437,"id":7547,"parameterSlots":2,"returnSlots":2},"@hashOperation_8594":{"entryPoint":3000,"id":8594,"parameterSlots":4,"returnSlots":1},"@isTargetClosed_7377":{"entryPoint":2943,"id":7377,"parameterSlots":1,"returnSlots":1},"@labelRole_7576":{"entryPoint":2622,"id":7576,"parameterSlots":3,"returnSlots":0},"@max_18424":{"entryPoint":7095,"id":18424,"parameterSlots":2,"returnSlots":1},"@minSetback_7363":{"entryPoint":null,"id":7363,"parameterSlots":0,"returnSlots":1},"@multicall_12718":{"entryPoint":3056,"id":12718,"parameterSlots":2,"returnSlots":1},"@pack_21996":{"entryPoint":null,"id":21996,"parameterSlots":3,"returnSlots":1},"@renounceRole_7637":{"entryPoint":4236,"id":7637,"parameterSlots":2,"returnSlots":0},"@revokeRole_7614":{"entryPoint":3414,"id":7614,"parameterSlots":2,"returnSlots":0},"@schedule_8242":{"entryPoint":3915,"id":8242,"parameterSlots":4,"returnSlots":2},"@setGrantDelay_7685":{"entryPoint":2982,"id":7685,"parameterSlots":2,"returnSlots":0},"@setRoleAdmin_7653":{"entryPoint":2434,"id":7653,"parameterSlots":2,"returnSlots":0},"@setRoleGuardian_7669":{"entryPoint":2546,"id":7669,"parameterSlots":2,"returnSlots":0},"@setTargetAdminDelay_8019":{"entryPoint":3558,"id":8019,"parameterSlots":2,"returnSlots":0},"@setTargetClosed_8070":{"entryPoint":1880,"id":8070,"parameterSlots":2,"returnSlots":0},"@setTargetFunctionRole_7977":{"entryPoint":1740,"id":7977,"parameterSlots":4,"returnSlots":0},"@ternary_18405":{"entryPoint":null,"id":18405,"parameterSlots":3,"returnSlots":1},"@timestamp_21745":{"entryPoint":6893,"id":21745,"parameterSlots":0,"returnSlots":1},"@toDelay_21775":{"entryPoint":null,"id":21775,"parameterSlots":1,"returnSlots":1},"@toUint48_20569":{"entryPoint":8201,"id":20569,"parameterSlots":1,"returnSlots":1},"@toUint_21578":{"entryPoint":null,"id":21578,"parameterSlots":1,"returnSlots":1},"@unpack_21958":{"entryPoint":null,"id":21958,"parameterSlots":1,"returnSlots":3},"@updateAuthority_8612":{"entryPoint":1902,"id":8612,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_12537":{"entryPoint":7867,"id":12537,"parameterSlots":3,"returnSlots":1},"@withUpdate_21907":{"entryPoint":7959,"id":21907,"parameterSlots":3,"returnSlots":2},"abi_decode_array_bytes4_dyn_calldata":{"entryPoint":8319,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":8636,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":8960,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":8592,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":9409,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr":{"entryPoint":9119,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64":{"entryPoint":8410,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":8533,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":9008,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":8697,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48":{"entryPoint":9509,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":9481,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":9215,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32":{"entryPoint":8937,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":9638,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":9732,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64":{"entryPoint":8508,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_address":{"entryPoint":8862,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_addresst_uint32":{"entryPoint":8796,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":9052,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_uint32":{"entryPoint":9079,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_uint64":{"entryPoint":8888,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint32":{"entryPoint":8777,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint64":{"entryPoint":8383,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":9948,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":9665,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":9971,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":10147,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":9759,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":9277,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":9705,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":10022,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":9882,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":9823,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint48":{"entryPoint":9992,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":10158,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":10091,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":9803,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":9618,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":9862,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":8299,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":8987,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:20056:81","nodeType":"YulBlock","src":"0:20056:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"59:86:81","nodeType":"YulBlock","src":"59:86:81","statements":[{"body":{"nativeSrc":"123:16:81","nodeType":"YulBlock","src":"123:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:81","nodeType":"YulLiteral","src":"132:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:81","nodeType":"YulLiteral","src":"135:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:81","nodeType":"YulIdentifier","src":"125:6:81"},"nativeSrc":"125:12:81","nodeType":"YulFunctionCall","src":"125:12:81"},"nativeSrc":"125:12:81","nodeType":"YulExpressionStatement","src":"125:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:81","nodeType":"YulIdentifier","src":"82:5:81"},{"arguments":[{"name":"value","nativeSrc":"93:5:81","nodeType":"YulIdentifier","src":"93:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:81","nodeType":"YulLiteral","src":"108:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:81","nodeType":"YulLiteral","src":"113:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:81","nodeType":"YulIdentifier","src":"104:3:81"},"nativeSrc":"104:11:81","nodeType":"YulFunctionCall","src":"104:11:81"},{"kind":"number","nativeSrc":"117:1:81","nodeType":"YulLiteral","src":"117:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:19:81","nodeType":"YulFunctionCall","src":"100:19:81"}],"functionName":{"name":"and","nativeSrc":"89:3:81","nodeType":"YulIdentifier","src":"89:3:81"},"nativeSrc":"89:31:81","nodeType":"YulFunctionCall","src":"89:31:81"}],"functionName":{"name":"eq","nativeSrc":"79:2:81","nodeType":"YulIdentifier","src":"79:2:81"},"nativeSrc":"79:42:81","nodeType":"YulFunctionCall","src":"79:42:81"}],"functionName":{"name":"iszero","nativeSrc":"72:6:81","nodeType":"YulIdentifier","src":"72:6:81"},"nativeSrc":"72:50:81","nodeType":"YulFunctionCall","src":"72:50:81"},"nativeSrc":"69:70:81","nodeType":"YulIf","src":"69:70:81"}]},"name":"validator_revert_address","nativeSrc":"14:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:81","nodeType":"YulTypedName","src":"48:5:81","type":""}],"src":"14:131:81"},{"body":{"nativeSrc":"233:283:81","nodeType":"YulBlock","src":"233:283:81","statements":[{"body":{"nativeSrc":"282:16:81","nodeType":"YulBlock","src":"282:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"291:1:81","nodeType":"YulLiteral","src":"291:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"294:1:81","nodeType":"YulLiteral","src":"294:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"284:6:81","nodeType":"YulIdentifier","src":"284:6:81"},"nativeSrc":"284:12:81","nodeType":"YulFunctionCall","src":"284:12:81"},"nativeSrc":"284:12:81","nodeType":"YulExpressionStatement","src":"284:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"261:6:81","nodeType":"YulIdentifier","src":"261:6:81"},{"kind":"number","nativeSrc":"269:4:81","nodeType":"YulLiteral","src":"269:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"257:3:81","nodeType":"YulIdentifier","src":"257:3:81"},"nativeSrc":"257:17:81","nodeType":"YulFunctionCall","src":"257:17:81"},{"name":"end","nativeSrc":"276:3:81","nodeType":"YulIdentifier","src":"276:3:81"}],"functionName":{"name":"slt","nativeSrc":"253:3:81","nodeType":"YulIdentifier","src":"253:3:81"},"nativeSrc":"253:27:81","nodeType":"YulFunctionCall","src":"253:27:81"}],"functionName":{"name":"iszero","nativeSrc":"246:6:81","nodeType":"YulIdentifier","src":"246:6:81"},"nativeSrc":"246:35:81","nodeType":"YulFunctionCall","src":"246:35:81"},"nativeSrc":"243:55:81","nodeType":"YulIf","src":"243:55:81"},{"nativeSrc":"307:30:81","nodeType":"YulAssignment","src":"307:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"330:6:81","nodeType":"YulIdentifier","src":"330:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"317:12:81","nodeType":"YulIdentifier","src":"317:12:81"},"nativeSrc":"317:20:81","nodeType":"YulFunctionCall","src":"317:20:81"},"variableNames":[{"name":"length","nativeSrc":"307:6:81","nodeType":"YulIdentifier","src":"307:6:81"}]},{"body":{"nativeSrc":"380:16:81","nodeType":"YulBlock","src":"380:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"389:1:81","nodeType":"YulLiteral","src":"389:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"392:1:81","nodeType":"YulLiteral","src":"392:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"382:6:81","nodeType":"YulIdentifier","src":"382:6:81"},"nativeSrc":"382:12:81","nodeType":"YulFunctionCall","src":"382:12:81"},"nativeSrc":"382:12:81","nodeType":"YulExpressionStatement","src":"382:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"352:6:81","nodeType":"YulIdentifier","src":"352:6:81"},{"kind":"number","nativeSrc":"360:18:81","nodeType":"YulLiteral","src":"360:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"349:2:81","nodeType":"YulIdentifier","src":"349:2:81"},"nativeSrc":"349:30:81","nodeType":"YulFunctionCall","src":"349:30:81"},"nativeSrc":"346:50:81","nodeType":"YulIf","src":"346:50:81"},{"nativeSrc":"405:29:81","nodeType":"YulAssignment","src":"405:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"421:6:81","nodeType":"YulIdentifier","src":"421:6:81"},{"kind":"number","nativeSrc":"429:4:81","nodeType":"YulLiteral","src":"429:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"417:3:81","nodeType":"YulIdentifier","src":"417:3:81"},"nativeSrc":"417:17:81","nodeType":"YulFunctionCall","src":"417:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"405:8:81","nodeType":"YulIdentifier","src":"405:8:81"}]},{"body":{"nativeSrc":"494:16:81","nodeType":"YulBlock","src":"494:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"503:1:81","nodeType":"YulLiteral","src":"503:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"506:1:81","nodeType":"YulLiteral","src":"506:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"496:6:81","nodeType":"YulIdentifier","src":"496:6:81"},"nativeSrc":"496:12:81","nodeType":"YulFunctionCall","src":"496:12:81"},"nativeSrc":"496:12:81","nodeType":"YulExpressionStatement","src":"496:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"457:6:81","nodeType":"YulIdentifier","src":"457:6:81"},{"arguments":[{"kind":"number","nativeSrc":"469:1:81","nodeType":"YulLiteral","src":"469:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"472:6:81","nodeType":"YulIdentifier","src":"472:6:81"}],"functionName":{"name":"shl","nativeSrc":"465:3:81","nodeType":"YulIdentifier","src":"465:3:81"},"nativeSrc":"465:14:81","nodeType":"YulFunctionCall","src":"465:14:81"}],"functionName":{"name":"add","nativeSrc":"453:3:81","nodeType":"YulIdentifier","src":"453:3:81"},"nativeSrc":"453:27:81","nodeType":"YulFunctionCall","src":"453:27:81"},{"kind":"number","nativeSrc":"482:4:81","nodeType":"YulLiteral","src":"482:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"449:3:81","nodeType":"YulIdentifier","src":"449:3:81"},"nativeSrc":"449:38:81","nodeType":"YulFunctionCall","src":"449:38:81"},{"name":"end","nativeSrc":"489:3:81","nodeType":"YulIdentifier","src":"489:3:81"}],"functionName":{"name":"gt","nativeSrc":"446:2:81","nodeType":"YulIdentifier","src":"446:2:81"},"nativeSrc":"446:47:81","nodeType":"YulFunctionCall","src":"446:47:81"},"nativeSrc":"443:67:81","nodeType":"YulIf","src":"443:67:81"}]},"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"150:366:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"196:6:81","nodeType":"YulTypedName","src":"196:6:81","type":""},{"name":"end","nativeSrc":"204:3:81","nodeType":"YulTypedName","src":"204:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"212:8:81","nodeType":"YulTypedName","src":"212:8:81","type":""},{"name":"length","nativeSrc":"222:6:81","nodeType":"YulTypedName","src":"222:6:81","type":""}],"src":"150:366:81"},{"body":{"nativeSrc":"569:123:81","nodeType":"YulBlock","src":"569:123:81","statements":[{"nativeSrc":"579:29:81","nodeType":"YulAssignment","src":"579:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"601:6:81","nodeType":"YulIdentifier","src":"601:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"588:12:81","nodeType":"YulIdentifier","src":"588:12:81"},"nativeSrc":"588:20:81","nodeType":"YulFunctionCall","src":"588:20:81"},"variableNames":[{"name":"value","nativeSrc":"579:5:81","nodeType":"YulIdentifier","src":"579:5:81"}]},{"body":{"nativeSrc":"670:16:81","nodeType":"YulBlock","src":"670:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"679:1:81","nodeType":"YulLiteral","src":"679:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"682:1:81","nodeType":"YulLiteral","src":"682:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"672:6:81","nodeType":"YulIdentifier","src":"672:6:81"},"nativeSrc":"672:12:81","nodeType":"YulFunctionCall","src":"672:12:81"},"nativeSrc":"672:12:81","nodeType":"YulExpressionStatement","src":"672:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"630:5:81","nodeType":"YulIdentifier","src":"630:5:81"},{"arguments":[{"name":"value","nativeSrc":"641:5:81","nodeType":"YulIdentifier","src":"641:5:81"},{"kind":"number","nativeSrc":"648:18:81","nodeType":"YulLiteral","src":"648:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"637:3:81","nodeType":"YulIdentifier","src":"637:3:81"},"nativeSrc":"637:30:81","nodeType":"YulFunctionCall","src":"637:30:81"}],"functionName":{"name":"eq","nativeSrc":"627:2:81","nodeType":"YulIdentifier","src":"627:2:81"},"nativeSrc":"627:41:81","nodeType":"YulFunctionCall","src":"627:41:81"}],"functionName":{"name":"iszero","nativeSrc":"620:6:81","nodeType":"YulIdentifier","src":"620:6:81"},"nativeSrc":"620:49:81","nodeType":"YulFunctionCall","src":"620:49:81"},"nativeSrc":"617:69:81","nodeType":"YulIf","src":"617:69:81"}]},"name":"abi_decode_uint64","nativeSrc":"521:171:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"548:6:81","nodeType":"YulTypedName","src":"548:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"559:5:81","nodeType":"YulTypedName","src":"559:5:81","type":""}],"src":"521:171:81"},{"body":{"nativeSrc":"834:505:81","nodeType":"YulBlock","src":"834:505:81","statements":[{"body":{"nativeSrc":"880:16:81","nodeType":"YulBlock","src":"880:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"889:1:81","nodeType":"YulLiteral","src":"889:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"892:1:81","nodeType":"YulLiteral","src":"892:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"882:6:81","nodeType":"YulIdentifier","src":"882:6:81"},"nativeSrc":"882:12:81","nodeType":"YulFunctionCall","src":"882:12:81"},"nativeSrc":"882:12:81","nodeType":"YulExpressionStatement","src":"882:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"855:7:81","nodeType":"YulIdentifier","src":"855:7:81"},{"name":"headStart","nativeSrc":"864:9:81","nodeType":"YulIdentifier","src":"864:9:81"}],"functionName":{"name":"sub","nativeSrc":"851:3:81","nodeType":"YulIdentifier","src":"851:3:81"},"nativeSrc":"851:23:81","nodeType":"YulFunctionCall","src":"851:23:81"},{"kind":"number","nativeSrc":"876:2:81","nodeType":"YulLiteral","src":"876:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"847:3:81","nodeType":"YulIdentifier","src":"847:3:81"},"nativeSrc":"847:32:81","nodeType":"YulFunctionCall","src":"847:32:81"},"nativeSrc":"844:52:81","nodeType":"YulIf","src":"844:52:81"},{"nativeSrc":"905:36:81","nodeType":"YulVariableDeclaration","src":"905:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"931:9:81","nodeType":"YulIdentifier","src":"931:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:81","nodeType":"YulIdentifier","src":"918:12:81"},"nativeSrc":"918:23:81","nodeType":"YulFunctionCall","src":"918:23:81"},"variables":[{"name":"value","nativeSrc":"909:5:81","nodeType":"YulTypedName","src":"909:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"975:5:81","nodeType":"YulIdentifier","src":"975:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"950:24:81","nodeType":"YulIdentifier","src":"950:24:81"},"nativeSrc":"950:31:81","nodeType":"YulFunctionCall","src":"950:31:81"},"nativeSrc":"950:31:81","nodeType":"YulExpressionStatement","src":"950:31:81"},{"nativeSrc":"990:15:81","nodeType":"YulAssignment","src":"990:15:81","value":{"name":"value","nativeSrc":"1000:5:81","nodeType":"YulIdentifier","src":"1000:5:81"},"variableNames":[{"name":"value0","nativeSrc":"990:6:81","nodeType":"YulIdentifier","src":"990:6:81"}]},{"nativeSrc":"1014:46:81","nodeType":"YulVariableDeclaration","src":"1014:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1045:9:81","nodeType":"YulIdentifier","src":"1045:9:81"},{"kind":"number","nativeSrc":"1056:2:81","nodeType":"YulLiteral","src":"1056:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1041:3:81","nodeType":"YulIdentifier","src":"1041:3:81"},"nativeSrc":"1041:18:81","nodeType":"YulFunctionCall","src":"1041:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"1028:12:81","nodeType":"YulIdentifier","src":"1028:12:81"},"nativeSrc":"1028:32:81","nodeType":"YulFunctionCall","src":"1028:32:81"},"variables":[{"name":"offset","nativeSrc":"1018:6:81","nodeType":"YulTypedName","src":"1018:6:81","type":""}]},{"body":{"nativeSrc":"1103:16:81","nodeType":"YulBlock","src":"1103:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1112:1:81","nodeType":"YulLiteral","src":"1112:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1115:1:81","nodeType":"YulLiteral","src":"1115:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1105:6:81","nodeType":"YulIdentifier","src":"1105:6:81"},"nativeSrc":"1105:12:81","nodeType":"YulFunctionCall","src":"1105:12:81"},"nativeSrc":"1105:12:81","nodeType":"YulExpressionStatement","src":"1105:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1075:6:81","nodeType":"YulIdentifier","src":"1075:6:81"},{"kind":"number","nativeSrc":"1083:18:81","nodeType":"YulLiteral","src":"1083:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1072:2:81","nodeType":"YulIdentifier","src":"1072:2:81"},"nativeSrc":"1072:30:81","nodeType":"YulFunctionCall","src":"1072:30:81"},"nativeSrc":"1069:50:81","nodeType":"YulIf","src":"1069:50:81"},{"nativeSrc":"1128:95:81","nodeType":"YulVariableDeclaration","src":"1128:95:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1195:9:81","nodeType":"YulIdentifier","src":"1195:9:81"},{"name":"offset","nativeSrc":"1206:6:81","nodeType":"YulIdentifier","src":"1206:6:81"}],"functionName":{"name":"add","nativeSrc":"1191:3:81","nodeType":"YulIdentifier","src":"1191:3:81"},"nativeSrc":"1191:22:81","nodeType":"YulFunctionCall","src":"1191:22:81"},{"name":"dataEnd","nativeSrc":"1215:7:81","nodeType":"YulIdentifier","src":"1215:7:81"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"1154:36:81","nodeType":"YulIdentifier","src":"1154:36:81"},"nativeSrc":"1154:69:81","nodeType":"YulFunctionCall","src":"1154:69:81"},"variables":[{"name":"value1_1","nativeSrc":"1132:8:81","nodeType":"YulTypedName","src":"1132:8:81","type":""},{"name":"value2_1","nativeSrc":"1142:8:81","nodeType":"YulTypedName","src":"1142:8:81","type":""}]},{"nativeSrc":"1232:18:81","nodeType":"YulAssignment","src":"1232:18:81","value":{"name":"value1_1","nativeSrc":"1242:8:81","nodeType":"YulIdentifier","src":"1242:8:81"},"variableNames":[{"name":"value1","nativeSrc":"1232:6:81","nodeType":"YulIdentifier","src":"1232:6:81"}]},{"nativeSrc":"1259:18:81","nodeType":"YulAssignment","src":"1259:18:81","value":{"name":"value2_1","nativeSrc":"1269:8:81","nodeType":"YulIdentifier","src":"1269:8:81"},"variableNames":[{"name":"value2","nativeSrc":"1259:6:81","nodeType":"YulIdentifier","src":"1259:6:81"}]},{"nativeSrc":"1286:47:81","nodeType":"YulAssignment","src":"1286:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1318:9:81","nodeType":"YulIdentifier","src":"1318:9:81"},{"kind":"number","nativeSrc":"1329:2:81","nodeType":"YulLiteral","src":"1329:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1314:3:81","nodeType":"YulIdentifier","src":"1314:3:81"},"nativeSrc":"1314:18:81","nodeType":"YulFunctionCall","src":"1314:18:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1296:17:81","nodeType":"YulIdentifier","src":"1296:17:81"},"nativeSrc":"1296:37:81","nodeType":"YulFunctionCall","src":"1296:37:81"},"variableNames":[{"name":"value3","nativeSrc":"1286:6:81","nodeType":"YulIdentifier","src":"1286:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64","nativeSrc":"697:642:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"776:9:81","nodeType":"YulTypedName","src":"776:9:81","type":""},{"name":"dataEnd","nativeSrc":"787:7:81","nodeType":"YulTypedName","src":"787:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"799:6:81","nodeType":"YulTypedName","src":"799:6:81","type":""},{"name":"value1","nativeSrc":"807:6:81","nodeType":"YulTypedName","src":"807:6:81","type":""},{"name":"value2","nativeSrc":"815:6:81","nodeType":"YulTypedName","src":"815:6:81","type":""},{"name":"value3","nativeSrc":"823:6:81","nodeType":"YulTypedName","src":"823:6:81","type":""}],"src":"697:642:81"},{"body":{"nativeSrc":"1413:115:81","nodeType":"YulBlock","src":"1413:115:81","statements":[{"body":{"nativeSrc":"1459:16:81","nodeType":"YulBlock","src":"1459:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1468:1:81","nodeType":"YulLiteral","src":"1468:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1471:1:81","nodeType":"YulLiteral","src":"1471:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1461:6:81","nodeType":"YulIdentifier","src":"1461:6:81"},"nativeSrc":"1461:12:81","nodeType":"YulFunctionCall","src":"1461:12:81"},"nativeSrc":"1461:12:81","nodeType":"YulExpressionStatement","src":"1461:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1434:7:81","nodeType":"YulIdentifier","src":"1434:7:81"},{"name":"headStart","nativeSrc":"1443:9:81","nodeType":"YulIdentifier","src":"1443:9:81"}],"functionName":{"name":"sub","nativeSrc":"1430:3:81","nodeType":"YulIdentifier","src":"1430:3:81"},"nativeSrc":"1430:23:81","nodeType":"YulFunctionCall","src":"1430:23:81"},{"kind":"number","nativeSrc":"1455:2:81","nodeType":"YulLiteral","src":"1455:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1426:3:81","nodeType":"YulIdentifier","src":"1426:3:81"},"nativeSrc":"1426:32:81","nodeType":"YulFunctionCall","src":"1426:32:81"},"nativeSrc":"1423:52:81","nodeType":"YulIf","src":"1423:52:81"},{"nativeSrc":"1484:38:81","nodeType":"YulAssignment","src":"1484:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1512:9:81","nodeType":"YulIdentifier","src":"1512:9:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1494:17:81","nodeType":"YulIdentifier","src":"1494:17:81"},"nativeSrc":"1494:28:81","nodeType":"YulFunctionCall","src":"1494:28:81"},"variableNames":[{"name":"value0","nativeSrc":"1484:6:81","nodeType":"YulIdentifier","src":"1484:6:81"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"1344:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:81","nodeType":"YulTypedName","src":"1379:9:81","type":""},{"name":"dataEnd","nativeSrc":"1390:7:81","nodeType":"YulTypedName","src":"1390:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:81","nodeType":"YulTypedName","src":"1402:6:81","type":""}],"src":"1344:184:81"},{"body":{"nativeSrc":"1632:101:81","nodeType":"YulBlock","src":"1632:101:81","statements":[{"nativeSrc":"1642:26:81","nodeType":"YulAssignment","src":"1642:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1654:9:81","nodeType":"YulIdentifier","src":"1654:9:81"},{"kind":"number","nativeSrc":"1665:2:81","nodeType":"YulLiteral","src":"1665:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:81","nodeType":"YulIdentifier","src":"1650:3:81"},"nativeSrc":"1650:18:81","nodeType":"YulFunctionCall","src":"1650:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1642:4:81","nodeType":"YulIdentifier","src":"1642:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1684:9:81","nodeType":"YulIdentifier","src":"1684:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1699:6:81","nodeType":"YulIdentifier","src":"1699:6:81"},{"kind":"number","nativeSrc":"1707:18:81","nodeType":"YulLiteral","src":"1707:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1695:3:81","nodeType":"YulIdentifier","src":"1695:3:81"},"nativeSrc":"1695:31:81","nodeType":"YulFunctionCall","src":"1695:31:81"}],"functionName":{"name":"mstore","nativeSrc":"1677:6:81","nodeType":"YulIdentifier","src":"1677:6:81"},"nativeSrc":"1677:50:81","nodeType":"YulFunctionCall","src":"1677:50:81"},"nativeSrc":"1677:50:81","nodeType":"YulExpressionStatement","src":"1677:50:81"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"1533:200:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1601:9:81","nodeType":"YulTypedName","src":"1601:9:81","type":""},{"name":"value0","nativeSrc":"1612:6:81","nodeType":"YulTypedName","src":"1612:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1623:4:81","nodeType":"YulTypedName","src":"1623:4:81","type":""}],"src":"1533:200:81"},{"body":{"nativeSrc":"1837:93:81","nodeType":"YulBlock","src":"1837:93:81","statements":[{"nativeSrc":"1847:26:81","nodeType":"YulAssignment","src":"1847:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1859:9:81","nodeType":"YulIdentifier","src":"1859:9:81"},{"kind":"number","nativeSrc":"1870:2:81","nodeType":"YulLiteral","src":"1870:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1855:3:81","nodeType":"YulIdentifier","src":"1855:3:81"},"nativeSrc":"1855:18:81","nodeType":"YulFunctionCall","src":"1855:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1847:4:81","nodeType":"YulIdentifier","src":"1847:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1889:9:81","nodeType":"YulIdentifier","src":"1889:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1904:6:81","nodeType":"YulIdentifier","src":"1904:6:81"},{"kind":"number","nativeSrc":"1912:10:81","nodeType":"YulLiteral","src":"1912:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1900:3:81","nodeType":"YulIdentifier","src":"1900:3:81"},"nativeSrc":"1900:23:81","nodeType":"YulFunctionCall","src":"1900:23:81"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:81","nodeType":"YulIdentifier","src":"1882:6:81"},"nativeSrc":"1882:42:81","nodeType":"YulFunctionCall","src":"1882:42:81"},"nativeSrc":"1882:42:81","nodeType":"YulExpressionStatement","src":"1882:42:81"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"1738:192:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1806:9:81","nodeType":"YulTypedName","src":"1806:9:81","type":""},{"name":"value0","nativeSrc":"1817:6:81","nodeType":"YulTypedName","src":"1817:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1828:4:81","nodeType":"YulTypedName","src":"1828:4:81","type":""}],"src":"1738:192:81"},{"body":{"nativeSrc":"2019:332:81","nodeType":"YulBlock","src":"2019:332:81","statements":[{"body":{"nativeSrc":"2065:16:81","nodeType":"YulBlock","src":"2065:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2074:1:81","nodeType":"YulLiteral","src":"2074:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2077:1:81","nodeType":"YulLiteral","src":"2077:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2067:6:81","nodeType":"YulIdentifier","src":"2067:6:81"},"nativeSrc":"2067:12:81","nodeType":"YulFunctionCall","src":"2067:12:81"},"nativeSrc":"2067:12:81","nodeType":"YulExpressionStatement","src":"2067:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2040:7:81","nodeType":"YulIdentifier","src":"2040:7:81"},{"name":"headStart","nativeSrc":"2049:9:81","nodeType":"YulIdentifier","src":"2049:9:81"}],"functionName":{"name":"sub","nativeSrc":"2036:3:81","nodeType":"YulIdentifier","src":"2036:3:81"},"nativeSrc":"2036:23:81","nodeType":"YulFunctionCall","src":"2036:23:81"},{"kind":"number","nativeSrc":"2061:2:81","nodeType":"YulLiteral","src":"2061:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2032:3:81","nodeType":"YulIdentifier","src":"2032:3:81"},"nativeSrc":"2032:32:81","nodeType":"YulFunctionCall","src":"2032:32:81"},"nativeSrc":"2029:52:81","nodeType":"YulIf","src":"2029:52:81"},{"nativeSrc":"2090:36:81","nodeType":"YulVariableDeclaration","src":"2090:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2116:9:81","nodeType":"YulIdentifier","src":"2116:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2103:12:81","nodeType":"YulIdentifier","src":"2103:12:81"},"nativeSrc":"2103:23:81","nodeType":"YulFunctionCall","src":"2103:23:81"},"variables":[{"name":"value","nativeSrc":"2094:5:81","nodeType":"YulTypedName","src":"2094:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2160:5:81","nodeType":"YulIdentifier","src":"2160:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2135:24:81","nodeType":"YulIdentifier","src":"2135:24:81"},"nativeSrc":"2135:31:81","nodeType":"YulFunctionCall","src":"2135:31:81"},"nativeSrc":"2135:31:81","nodeType":"YulExpressionStatement","src":"2135:31:81"},{"nativeSrc":"2175:15:81","nodeType":"YulAssignment","src":"2175:15:81","value":{"name":"value","nativeSrc":"2185:5:81","nodeType":"YulIdentifier","src":"2185:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2175:6:81","nodeType":"YulIdentifier","src":"2175:6:81"}]},{"nativeSrc":"2199:47:81","nodeType":"YulVariableDeclaration","src":"2199:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2231:9:81","nodeType":"YulIdentifier","src":"2231:9:81"},{"kind":"number","nativeSrc":"2242:2:81","nodeType":"YulLiteral","src":"2242:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2227:3:81","nodeType":"YulIdentifier","src":"2227:3:81"},"nativeSrc":"2227:18:81","nodeType":"YulFunctionCall","src":"2227:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"2214:12:81","nodeType":"YulIdentifier","src":"2214:12:81"},"nativeSrc":"2214:32:81","nodeType":"YulFunctionCall","src":"2214:32:81"},"variables":[{"name":"value_1","nativeSrc":"2203:7:81","nodeType":"YulTypedName","src":"2203:7:81","type":""}]},{"body":{"nativeSrc":"2303:16:81","nodeType":"YulBlock","src":"2303:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2312:1:81","nodeType":"YulLiteral","src":"2312:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2315:1:81","nodeType":"YulLiteral","src":"2315:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2305:6:81","nodeType":"YulIdentifier","src":"2305:6:81"},"nativeSrc":"2305:12:81","nodeType":"YulFunctionCall","src":"2305:12:81"},"nativeSrc":"2305:12:81","nodeType":"YulExpressionStatement","src":"2305:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2268:7:81","nodeType":"YulIdentifier","src":"2268:7:81"},{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2291:7:81","nodeType":"YulIdentifier","src":"2291:7:81"}],"functionName":{"name":"iszero","nativeSrc":"2284:6:81","nodeType":"YulIdentifier","src":"2284:6:81"},"nativeSrc":"2284:15:81","nodeType":"YulFunctionCall","src":"2284:15:81"}],"functionName":{"name":"iszero","nativeSrc":"2277:6:81","nodeType":"YulIdentifier","src":"2277:6:81"},"nativeSrc":"2277:23:81","nodeType":"YulFunctionCall","src":"2277:23:81"}],"functionName":{"name":"eq","nativeSrc":"2265:2:81","nodeType":"YulIdentifier","src":"2265:2:81"},"nativeSrc":"2265:36:81","nodeType":"YulFunctionCall","src":"2265:36:81"}],"functionName":{"name":"iszero","nativeSrc":"2258:6:81","nodeType":"YulIdentifier","src":"2258:6:81"},"nativeSrc":"2258:44:81","nodeType":"YulFunctionCall","src":"2258:44:81"},"nativeSrc":"2255:64:81","nodeType":"YulIf","src":"2255:64:81"},{"nativeSrc":"2328:17:81","nodeType":"YulAssignment","src":"2328:17:81","value":{"name":"value_1","nativeSrc":"2338:7:81","nodeType":"YulIdentifier","src":"2338:7:81"},"variableNames":[{"name":"value1","nativeSrc":"2328:6:81","nodeType":"YulIdentifier","src":"2328:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"1935:416:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1977:9:81","nodeType":"YulTypedName","src":"1977:9:81","type":""},{"name":"dataEnd","nativeSrc":"1988:7:81","nodeType":"YulTypedName","src":"1988:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2000:6:81","nodeType":"YulTypedName","src":"2000:6:81","type":""},{"name":"value1","nativeSrc":"2008:6:81","nodeType":"YulTypedName","src":"2008:6:81","type":""}],"src":"1935:416:81"},{"body":{"nativeSrc":"2443:301:81","nodeType":"YulBlock","src":"2443:301:81","statements":[{"body":{"nativeSrc":"2489:16:81","nodeType":"YulBlock","src":"2489:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2498:1:81","nodeType":"YulLiteral","src":"2498:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2501:1:81","nodeType":"YulLiteral","src":"2501:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2491:6:81","nodeType":"YulIdentifier","src":"2491:6:81"},"nativeSrc":"2491:12:81","nodeType":"YulFunctionCall","src":"2491:12:81"},"nativeSrc":"2491:12:81","nodeType":"YulExpressionStatement","src":"2491:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2464:7:81","nodeType":"YulIdentifier","src":"2464:7:81"},{"name":"headStart","nativeSrc":"2473:9:81","nodeType":"YulIdentifier","src":"2473:9:81"}],"functionName":{"name":"sub","nativeSrc":"2460:3:81","nodeType":"YulIdentifier","src":"2460:3:81"},"nativeSrc":"2460:23:81","nodeType":"YulFunctionCall","src":"2460:23:81"},{"kind":"number","nativeSrc":"2485:2:81","nodeType":"YulLiteral","src":"2485:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2456:3:81","nodeType":"YulIdentifier","src":"2456:3:81"},"nativeSrc":"2456:32:81","nodeType":"YulFunctionCall","src":"2456:32:81"},"nativeSrc":"2453:52:81","nodeType":"YulIf","src":"2453:52:81"},{"nativeSrc":"2514:36:81","nodeType":"YulVariableDeclaration","src":"2514:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2540:9:81","nodeType":"YulIdentifier","src":"2540:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2527:12:81","nodeType":"YulIdentifier","src":"2527:12:81"},"nativeSrc":"2527:23:81","nodeType":"YulFunctionCall","src":"2527:23:81"},"variables":[{"name":"value","nativeSrc":"2518:5:81","nodeType":"YulTypedName","src":"2518:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2584:5:81","nodeType":"YulIdentifier","src":"2584:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2559:24:81","nodeType":"YulIdentifier","src":"2559:24:81"},"nativeSrc":"2559:31:81","nodeType":"YulFunctionCall","src":"2559:31:81"},"nativeSrc":"2559:31:81","nodeType":"YulExpressionStatement","src":"2559:31:81"},{"nativeSrc":"2599:15:81","nodeType":"YulAssignment","src":"2599:15:81","value":{"name":"value","nativeSrc":"2609:5:81","nodeType":"YulIdentifier","src":"2609:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2599:6:81","nodeType":"YulIdentifier","src":"2599:6:81"}]},{"nativeSrc":"2623:47:81","nodeType":"YulVariableDeclaration","src":"2623:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2655:9:81","nodeType":"YulIdentifier","src":"2655:9:81"},{"kind":"number","nativeSrc":"2666:2:81","nodeType":"YulLiteral","src":"2666:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2651:3:81","nodeType":"YulIdentifier","src":"2651:3:81"},"nativeSrc":"2651:18:81","nodeType":"YulFunctionCall","src":"2651:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"2638:12:81","nodeType":"YulIdentifier","src":"2638:12:81"},"nativeSrc":"2638:32:81","nodeType":"YulFunctionCall","src":"2638:32:81"},"variables":[{"name":"value_1","nativeSrc":"2627:7:81","nodeType":"YulTypedName","src":"2627:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2704:7:81","nodeType":"YulIdentifier","src":"2704:7:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2679:24:81","nodeType":"YulIdentifier","src":"2679:24:81"},"nativeSrc":"2679:33:81","nodeType":"YulFunctionCall","src":"2679:33:81"},"nativeSrc":"2679:33:81","nodeType":"YulExpressionStatement","src":"2679:33:81"},{"nativeSrc":"2721:17:81","nodeType":"YulAssignment","src":"2721:17:81","value":{"name":"value_1","nativeSrc":"2731:7:81","nodeType":"YulIdentifier","src":"2731:7:81"},"variableNames":[{"name":"value1","nativeSrc":"2721:6:81","nodeType":"YulIdentifier","src":"2721:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2356:388:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2401:9:81","nodeType":"YulTypedName","src":"2401:9:81","type":""},{"name":"dataEnd","nativeSrc":"2412:7:81","nodeType":"YulTypedName","src":"2412:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2424:6:81","nodeType":"YulTypedName","src":"2424:6:81","type":""},{"name":"value1","nativeSrc":"2432:6:81","nodeType":"YulTypedName","src":"2432:6:81","type":""}],"src":"2356:388:81"},{"body":{"nativeSrc":"2821:275:81","nodeType":"YulBlock","src":"2821:275:81","statements":[{"body":{"nativeSrc":"2870:16:81","nodeType":"YulBlock","src":"2870:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2879:1:81","nodeType":"YulLiteral","src":"2879:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2882:1:81","nodeType":"YulLiteral","src":"2882:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2872:6:81","nodeType":"YulIdentifier","src":"2872:6:81"},"nativeSrc":"2872:12:81","nodeType":"YulFunctionCall","src":"2872:12:81"},"nativeSrc":"2872:12:81","nodeType":"YulExpressionStatement","src":"2872:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2849:6:81","nodeType":"YulIdentifier","src":"2849:6:81"},{"kind":"number","nativeSrc":"2857:4:81","nodeType":"YulLiteral","src":"2857:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2845:3:81","nodeType":"YulIdentifier","src":"2845:3:81"},"nativeSrc":"2845:17:81","nodeType":"YulFunctionCall","src":"2845:17:81"},{"name":"end","nativeSrc":"2864:3:81","nodeType":"YulIdentifier","src":"2864:3:81"}],"functionName":{"name":"slt","nativeSrc":"2841:3:81","nodeType":"YulIdentifier","src":"2841:3:81"},"nativeSrc":"2841:27:81","nodeType":"YulFunctionCall","src":"2841:27:81"}],"functionName":{"name":"iszero","nativeSrc":"2834:6:81","nodeType":"YulIdentifier","src":"2834:6:81"},"nativeSrc":"2834:35:81","nodeType":"YulFunctionCall","src":"2834:35:81"},"nativeSrc":"2831:55:81","nodeType":"YulIf","src":"2831:55:81"},{"nativeSrc":"2895:30:81","nodeType":"YulAssignment","src":"2895:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"2918:6:81","nodeType":"YulIdentifier","src":"2918:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"2905:12:81","nodeType":"YulIdentifier","src":"2905:12:81"},"nativeSrc":"2905:20:81","nodeType":"YulFunctionCall","src":"2905:20:81"},"variableNames":[{"name":"length","nativeSrc":"2895:6:81","nodeType":"YulIdentifier","src":"2895:6:81"}]},{"body":{"nativeSrc":"2968:16:81","nodeType":"YulBlock","src":"2968:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2977:1:81","nodeType":"YulLiteral","src":"2977:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2980:1:81","nodeType":"YulLiteral","src":"2980:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2970:6:81","nodeType":"YulIdentifier","src":"2970:6:81"},"nativeSrc":"2970:12:81","nodeType":"YulFunctionCall","src":"2970:12:81"},"nativeSrc":"2970:12:81","nodeType":"YulExpressionStatement","src":"2970:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2940:6:81","nodeType":"YulIdentifier","src":"2940:6:81"},{"kind":"number","nativeSrc":"2948:18:81","nodeType":"YulLiteral","src":"2948:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2937:2:81","nodeType":"YulIdentifier","src":"2937:2:81"},"nativeSrc":"2937:30:81","nodeType":"YulFunctionCall","src":"2937:30:81"},"nativeSrc":"2934:50:81","nodeType":"YulIf","src":"2934:50:81"},{"nativeSrc":"2993:29:81","nodeType":"YulAssignment","src":"2993:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"3009:6:81","nodeType":"YulIdentifier","src":"3009:6:81"},{"kind":"number","nativeSrc":"3017:4:81","nodeType":"YulLiteral","src":"3017:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3005:3:81","nodeType":"YulIdentifier","src":"3005:3:81"},"nativeSrc":"3005:17:81","nodeType":"YulFunctionCall","src":"3005:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"2993:8:81","nodeType":"YulIdentifier","src":"2993:8:81"}]},{"body":{"nativeSrc":"3074:16:81","nodeType":"YulBlock","src":"3074:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3083:1:81","nodeType":"YulLiteral","src":"3083:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3086:1:81","nodeType":"YulLiteral","src":"3086:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3076:6:81","nodeType":"YulIdentifier","src":"3076:6:81"},"nativeSrc":"3076:12:81","nodeType":"YulFunctionCall","src":"3076:12:81"},"nativeSrc":"3076:12:81","nodeType":"YulExpressionStatement","src":"3076:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3045:6:81","nodeType":"YulIdentifier","src":"3045:6:81"},{"name":"length","nativeSrc":"3053:6:81","nodeType":"YulIdentifier","src":"3053:6:81"}],"functionName":{"name":"add","nativeSrc":"3041:3:81","nodeType":"YulIdentifier","src":"3041:3:81"},"nativeSrc":"3041:19:81","nodeType":"YulFunctionCall","src":"3041:19:81"},{"kind":"number","nativeSrc":"3062:4:81","nodeType":"YulLiteral","src":"3062:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3037:3:81","nodeType":"YulIdentifier","src":"3037:3:81"},"nativeSrc":"3037:30:81","nodeType":"YulFunctionCall","src":"3037:30:81"},{"name":"end","nativeSrc":"3069:3:81","nodeType":"YulIdentifier","src":"3069:3:81"}],"functionName":{"name":"gt","nativeSrc":"3034:2:81","nodeType":"YulIdentifier","src":"3034:2:81"},"nativeSrc":"3034:39:81","nodeType":"YulFunctionCall","src":"3034:39:81"},"nativeSrc":"3031:59:81","nodeType":"YulIf","src":"3031:59:81"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"2749:347:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2784:6:81","nodeType":"YulTypedName","src":"2784:6:81","type":""},{"name":"end","nativeSrc":"2792:3:81","nodeType":"YulTypedName","src":"2792:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2800:8:81","nodeType":"YulTypedName","src":"2800:8:81","type":""},{"name":"length","nativeSrc":"2810:6:81","nodeType":"YulTypedName","src":"2810:6:81","type":""}],"src":"2749:347:81"},{"body":{"nativeSrc":"3207:438:81","nodeType":"YulBlock","src":"3207:438:81","statements":[{"body":{"nativeSrc":"3253:16:81","nodeType":"YulBlock","src":"3253:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3262:1:81","nodeType":"YulLiteral","src":"3262:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3265:1:81","nodeType":"YulLiteral","src":"3265:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3255:6:81","nodeType":"YulIdentifier","src":"3255:6:81"},"nativeSrc":"3255:12:81","nodeType":"YulFunctionCall","src":"3255:12:81"},"nativeSrc":"3255:12:81","nodeType":"YulExpressionStatement","src":"3255:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3228:7:81","nodeType":"YulIdentifier","src":"3228:7:81"},{"name":"headStart","nativeSrc":"3237:9:81","nodeType":"YulIdentifier","src":"3237:9:81"}],"functionName":{"name":"sub","nativeSrc":"3224:3:81","nodeType":"YulIdentifier","src":"3224:3:81"},"nativeSrc":"3224:23:81","nodeType":"YulFunctionCall","src":"3224:23:81"},{"kind":"number","nativeSrc":"3249:2:81","nodeType":"YulLiteral","src":"3249:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3220:3:81","nodeType":"YulIdentifier","src":"3220:3:81"},"nativeSrc":"3220:32:81","nodeType":"YulFunctionCall","src":"3220:32:81"},"nativeSrc":"3217:52:81","nodeType":"YulIf","src":"3217:52:81"},{"nativeSrc":"3278:36:81","nodeType":"YulVariableDeclaration","src":"3278:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3304:9:81","nodeType":"YulIdentifier","src":"3304:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3291:12:81","nodeType":"YulIdentifier","src":"3291:12:81"},"nativeSrc":"3291:23:81","nodeType":"YulFunctionCall","src":"3291:23:81"},"variables":[{"name":"value","nativeSrc":"3282:5:81","nodeType":"YulTypedName","src":"3282:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3348:5:81","nodeType":"YulIdentifier","src":"3348:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3323:24:81","nodeType":"YulIdentifier","src":"3323:24:81"},"nativeSrc":"3323:31:81","nodeType":"YulFunctionCall","src":"3323:31:81"},"nativeSrc":"3323:31:81","nodeType":"YulExpressionStatement","src":"3323:31:81"},{"nativeSrc":"3363:15:81","nodeType":"YulAssignment","src":"3363:15:81","value":{"name":"value","nativeSrc":"3373:5:81","nodeType":"YulIdentifier","src":"3373:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3363:6:81","nodeType":"YulIdentifier","src":"3363:6:81"}]},{"nativeSrc":"3387:46:81","nodeType":"YulVariableDeclaration","src":"3387:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3418:9:81","nodeType":"YulIdentifier","src":"3418:9:81"},{"kind":"number","nativeSrc":"3429:2:81","nodeType":"YulLiteral","src":"3429:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3414:3:81","nodeType":"YulIdentifier","src":"3414:3:81"},"nativeSrc":"3414:18:81","nodeType":"YulFunctionCall","src":"3414:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3401:12:81","nodeType":"YulIdentifier","src":"3401:12:81"},"nativeSrc":"3401:32:81","nodeType":"YulFunctionCall","src":"3401:32:81"},"variables":[{"name":"offset","nativeSrc":"3391:6:81","nodeType":"YulTypedName","src":"3391:6:81","type":""}]},{"body":{"nativeSrc":"3476:16:81","nodeType":"YulBlock","src":"3476:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3485:1:81","nodeType":"YulLiteral","src":"3485:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3488:1:81","nodeType":"YulLiteral","src":"3488:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3478:6:81","nodeType":"YulIdentifier","src":"3478:6:81"},"nativeSrc":"3478:12:81","nodeType":"YulFunctionCall","src":"3478:12:81"},"nativeSrc":"3478:12:81","nodeType":"YulExpressionStatement","src":"3478:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3448:6:81","nodeType":"YulIdentifier","src":"3448:6:81"},{"kind":"number","nativeSrc":"3456:18:81","nodeType":"YulLiteral","src":"3456:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3445:2:81","nodeType":"YulIdentifier","src":"3445:2:81"},"nativeSrc":"3445:30:81","nodeType":"YulFunctionCall","src":"3445:30:81"},"nativeSrc":"3442:50:81","nodeType":"YulIf","src":"3442:50:81"},{"nativeSrc":"3501:84:81","nodeType":"YulVariableDeclaration","src":"3501:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3557:9:81","nodeType":"YulIdentifier","src":"3557:9:81"},{"name":"offset","nativeSrc":"3568:6:81","nodeType":"YulIdentifier","src":"3568:6:81"}],"functionName":{"name":"add","nativeSrc":"3553:3:81","nodeType":"YulIdentifier","src":"3553:3:81"},"nativeSrc":"3553:22:81","nodeType":"YulFunctionCall","src":"3553:22:81"},{"name":"dataEnd","nativeSrc":"3577:7:81","nodeType":"YulIdentifier","src":"3577:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"3527:25:81","nodeType":"YulIdentifier","src":"3527:25:81"},"nativeSrc":"3527:58:81","nodeType":"YulFunctionCall","src":"3527:58:81"},"variables":[{"name":"value1_1","nativeSrc":"3505:8:81","nodeType":"YulTypedName","src":"3505:8:81","type":""},{"name":"value2_1","nativeSrc":"3515:8:81","nodeType":"YulTypedName","src":"3515:8:81","type":""}]},{"nativeSrc":"3594:18:81","nodeType":"YulAssignment","src":"3594:18:81","value":{"name":"value1_1","nativeSrc":"3604:8:81","nodeType":"YulIdentifier","src":"3604:8:81"},"variableNames":[{"name":"value1","nativeSrc":"3594:6:81","nodeType":"YulIdentifier","src":"3594:6:81"}]},{"nativeSrc":"3621:18:81","nodeType":"YulAssignment","src":"3621:18:81","value":{"name":"value2_1","nativeSrc":"3631:8:81","nodeType":"YulIdentifier","src":"3631:8:81"},"variableNames":[{"name":"value2","nativeSrc":"3621:6:81","nodeType":"YulIdentifier","src":"3621:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"3101:544:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3157:9:81","nodeType":"YulTypedName","src":"3157:9:81","type":""},{"name":"dataEnd","nativeSrc":"3168:7:81","nodeType":"YulTypedName","src":"3168:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3180:6:81","nodeType":"YulTypedName","src":"3180:6:81","type":""},{"name":"value1","nativeSrc":"3188:6:81","nodeType":"YulTypedName","src":"3188:6:81","type":""},{"name":"value2","nativeSrc":"3196:6:81","nodeType":"YulTypedName","src":"3196:6:81","type":""}],"src":"3101:544:81"},{"body":{"nativeSrc":"3698:115:81","nodeType":"YulBlock","src":"3698:115:81","statements":[{"nativeSrc":"3708:29:81","nodeType":"YulAssignment","src":"3708:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"3730:6:81","nodeType":"YulIdentifier","src":"3730:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"3717:12:81","nodeType":"YulIdentifier","src":"3717:12:81"},"nativeSrc":"3717:20:81","nodeType":"YulFunctionCall","src":"3717:20:81"},"variableNames":[{"name":"value","nativeSrc":"3708:5:81","nodeType":"YulIdentifier","src":"3708:5:81"}]},{"body":{"nativeSrc":"3791:16:81","nodeType":"YulBlock","src":"3791:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3800:1:81","nodeType":"YulLiteral","src":"3800:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3803:1:81","nodeType":"YulLiteral","src":"3803:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3793:6:81","nodeType":"YulIdentifier","src":"3793:6:81"},"nativeSrc":"3793:12:81","nodeType":"YulFunctionCall","src":"3793:12:81"},"nativeSrc":"3793:12:81","nodeType":"YulExpressionStatement","src":"3793:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3759:5:81","nodeType":"YulIdentifier","src":"3759:5:81"},{"arguments":[{"name":"value","nativeSrc":"3770:5:81","nodeType":"YulIdentifier","src":"3770:5:81"},{"kind":"number","nativeSrc":"3777:10:81","nodeType":"YulLiteral","src":"3777:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"3766:3:81","nodeType":"YulIdentifier","src":"3766:3:81"},"nativeSrc":"3766:22:81","nodeType":"YulFunctionCall","src":"3766:22:81"}],"functionName":{"name":"eq","nativeSrc":"3756:2:81","nodeType":"YulIdentifier","src":"3756:2:81"},"nativeSrc":"3756:33:81","nodeType":"YulFunctionCall","src":"3756:33:81"}],"functionName":{"name":"iszero","nativeSrc":"3749:6:81","nodeType":"YulIdentifier","src":"3749:6:81"},"nativeSrc":"3749:41:81","nodeType":"YulFunctionCall","src":"3749:41:81"},"nativeSrc":"3746:61:81","nodeType":"YulIf","src":"3746:61:81"}]},"name":"abi_decode_uint32","nativeSrc":"3650:163:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3677:6:81","nodeType":"YulTypedName","src":"3677:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3688:5:81","nodeType":"YulTypedName","src":"3688:5:81","type":""}],"src":"3650:163:81"},{"body":{"nativeSrc":"3920:289:81","nodeType":"YulBlock","src":"3920:289:81","statements":[{"body":{"nativeSrc":"3966:16:81","nodeType":"YulBlock","src":"3966:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3975:1:81","nodeType":"YulLiteral","src":"3975:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3978:1:81","nodeType":"YulLiteral","src":"3978:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3968:6:81","nodeType":"YulIdentifier","src":"3968:6:81"},"nativeSrc":"3968:12:81","nodeType":"YulFunctionCall","src":"3968:12:81"},"nativeSrc":"3968:12:81","nodeType":"YulExpressionStatement","src":"3968:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3941:7:81","nodeType":"YulIdentifier","src":"3941:7:81"},{"name":"headStart","nativeSrc":"3950:9:81","nodeType":"YulIdentifier","src":"3950:9:81"}],"functionName":{"name":"sub","nativeSrc":"3937:3:81","nodeType":"YulIdentifier","src":"3937:3:81"},"nativeSrc":"3937:23:81","nodeType":"YulFunctionCall","src":"3937:23:81"},{"kind":"number","nativeSrc":"3962:2:81","nodeType":"YulLiteral","src":"3962:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3933:3:81","nodeType":"YulIdentifier","src":"3933:3:81"},"nativeSrc":"3933:32:81","nodeType":"YulFunctionCall","src":"3933:32:81"},"nativeSrc":"3930:52:81","nodeType":"YulIf","src":"3930:52:81"},{"nativeSrc":"3991:38:81","nodeType":"YulAssignment","src":"3991:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4019:9:81","nodeType":"YulIdentifier","src":"4019:9:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4001:17:81","nodeType":"YulIdentifier","src":"4001:17:81"},"nativeSrc":"4001:28:81","nodeType":"YulFunctionCall","src":"4001:28:81"},"variableNames":[{"name":"value0","nativeSrc":"3991:6:81","nodeType":"YulIdentifier","src":"3991:6:81"}]},{"nativeSrc":"4038:45:81","nodeType":"YulVariableDeclaration","src":"4038:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4068:9:81","nodeType":"YulIdentifier","src":"4068:9:81"},{"kind":"number","nativeSrc":"4079:2:81","nodeType":"YulLiteral","src":"4079:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4064:3:81","nodeType":"YulIdentifier","src":"4064:3:81"},"nativeSrc":"4064:18:81","nodeType":"YulFunctionCall","src":"4064:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"4051:12:81","nodeType":"YulIdentifier","src":"4051:12:81"},"nativeSrc":"4051:32:81","nodeType":"YulFunctionCall","src":"4051:32:81"},"variables":[{"name":"value","nativeSrc":"4042:5:81","nodeType":"YulTypedName","src":"4042:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4117:5:81","nodeType":"YulIdentifier","src":"4117:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4092:24:81","nodeType":"YulIdentifier","src":"4092:24:81"},"nativeSrc":"4092:31:81","nodeType":"YulFunctionCall","src":"4092:31:81"},"nativeSrc":"4092:31:81","nodeType":"YulExpressionStatement","src":"4092:31:81"},{"nativeSrc":"4132:15:81","nodeType":"YulAssignment","src":"4132:15:81","value":{"name":"value","nativeSrc":"4142:5:81","nodeType":"YulIdentifier","src":"4142:5:81"},"variableNames":[{"name":"value1","nativeSrc":"4132:6:81","nodeType":"YulIdentifier","src":"4132:6:81"}]},{"nativeSrc":"4156:47:81","nodeType":"YulAssignment","src":"4156:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4188:9:81","nodeType":"YulIdentifier","src":"4188:9:81"},{"kind":"number","nativeSrc":"4199:2:81","nodeType":"YulLiteral","src":"4199:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4184:3:81","nodeType":"YulIdentifier","src":"4184:3:81"},"nativeSrc":"4184:18:81","nodeType":"YulFunctionCall","src":"4184:18:81"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"4166:17:81","nodeType":"YulIdentifier","src":"4166:17:81"},"nativeSrc":"4166:37:81","nodeType":"YulFunctionCall","src":"4166:37:81"},"variableNames":[{"name":"value2","nativeSrc":"4156:6:81","nodeType":"YulIdentifier","src":"4156:6:81"}]}]},"name":"abi_decode_tuple_t_uint64t_addresst_uint32","nativeSrc":"3818:391:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3870:9:81","nodeType":"YulTypedName","src":"3870:9:81","type":""},{"name":"dataEnd","nativeSrc":"3881:7:81","nodeType":"YulTypedName","src":"3881:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3893:6:81","nodeType":"YulTypedName","src":"3893:6:81","type":""},{"name":"value1","nativeSrc":"3901:6:81","nodeType":"YulTypedName","src":"3901:6:81","type":""},{"name":"value2","nativeSrc":"3909:6:81","nodeType":"YulTypedName","src":"3909:6:81","type":""}],"src":"3818:391:81"},{"body":{"nativeSrc":"4300:233:81","nodeType":"YulBlock","src":"4300:233:81","statements":[{"body":{"nativeSrc":"4346:16:81","nodeType":"YulBlock","src":"4346:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4355:1:81","nodeType":"YulLiteral","src":"4355:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4358:1:81","nodeType":"YulLiteral","src":"4358:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4348:6:81","nodeType":"YulIdentifier","src":"4348:6:81"},"nativeSrc":"4348:12:81","nodeType":"YulFunctionCall","src":"4348:12:81"},"nativeSrc":"4348:12:81","nodeType":"YulExpressionStatement","src":"4348:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4321:7:81","nodeType":"YulIdentifier","src":"4321:7:81"},{"name":"headStart","nativeSrc":"4330:9:81","nodeType":"YulIdentifier","src":"4330:9:81"}],"functionName":{"name":"sub","nativeSrc":"4317:3:81","nodeType":"YulIdentifier","src":"4317:3:81"},"nativeSrc":"4317:23:81","nodeType":"YulFunctionCall","src":"4317:23:81"},{"kind":"number","nativeSrc":"4342:2:81","nodeType":"YulLiteral","src":"4342:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4313:3:81","nodeType":"YulIdentifier","src":"4313:3:81"},"nativeSrc":"4313:32:81","nodeType":"YulFunctionCall","src":"4313:32:81"},"nativeSrc":"4310:52:81","nodeType":"YulIf","src":"4310:52:81"},{"nativeSrc":"4371:38:81","nodeType":"YulAssignment","src":"4371:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4399:9:81","nodeType":"YulIdentifier","src":"4399:9:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4381:17:81","nodeType":"YulIdentifier","src":"4381:17:81"},"nativeSrc":"4381:28:81","nodeType":"YulFunctionCall","src":"4381:28:81"},"variableNames":[{"name":"value0","nativeSrc":"4371:6:81","nodeType":"YulIdentifier","src":"4371:6:81"}]},{"nativeSrc":"4418:45:81","nodeType":"YulVariableDeclaration","src":"4418:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4448:9:81","nodeType":"YulIdentifier","src":"4448:9:81"},{"kind":"number","nativeSrc":"4459:2:81","nodeType":"YulLiteral","src":"4459:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4444:3:81","nodeType":"YulIdentifier","src":"4444:3:81"},"nativeSrc":"4444:18:81","nodeType":"YulFunctionCall","src":"4444:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"4431:12:81","nodeType":"YulIdentifier","src":"4431:12:81"},"nativeSrc":"4431:32:81","nodeType":"YulFunctionCall","src":"4431:32:81"},"variables":[{"name":"value","nativeSrc":"4422:5:81","nodeType":"YulTypedName","src":"4422:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4497:5:81","nodeType":"YulIdentifier","src":"4497:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4472:24:81","nodeType":"YulIdentifier","src":"4472:24:81"},"nativeSrc":"4472:31:81","nodeType":"YulFunctionCall","src":"4472:31:81"},"nativeSrc":"4472:31:81","nodeType":"YulExpressionStatement","src":"4472:31:81"},{"nativeSrc":"4512:15:81","nodeType":"YulAssignment","src":"4512:15:81","value":{"name":"value","nativeSrc":"4522:5:81","nodeType":"YulIdentifier","src":"4522:5:81"},"variableNames":[{"name":"value1","nativeSrc":"4512:6:81","nodeType":"YulIdentifier","src":"4512:6:81"}]}]},"name":"abi_decode_tuple_t_uint64t_address","nativeSrc":"4214:319:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4258:9:81","nodeType":"YulTypedName","src":"4258:9:81","type":""},{"name":"dataEnd","nativeSrc":"4269:7:81","nodeType":"YulTypedName","src":"4269:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4281:6:81","nodeType":"YulTypedName","src":"4281:6:81","type":""},{"name":"value1","nativeSrc":"4289:6:81","nodeType":"YulTypedName","src":"4289:6:81","type":""}],"src":"4214:319:81"},{"body":{"nativeSrc":"4715:282:81","nodeType":"YulBlock","src":"4715:282:81","statements":[{"nativeSrc":"4725:27:81","nodeType":"YulAssignment","src":"4725:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4737:9:81","nodeType":"YulIdentifier","src":"4737:9:81"},{"kind":"number","nativeSrc":"4748:3:81","nodeType":"YulLiteral","src":"4748:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4733:3:81","nodeType":"YulIdentifier","src":"4733:3:81"},"nativeSrc":"4733:19:81","nodeType":"YulFunctionCall","src":"4733:19:81"},"variableNames":[{"name":"tail","nativeSrc":"4725:4:81","nodeType":"YulIdentifier","src":"4725:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4768:9:81","nodeType":"YulIdentifier","src":"4768:9:81"},{"arguments":[{"name":"value0","nativeSrc":"4783:6:81","nodeType":"YulIdentifier","src":"4783:6:81"},{"kind":"number","nativeSrc":"4791:14:81","nodeType":"YulLiteral","src":"4791:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4779:3:81","nodeType":"YulIdentifier","src":"4779:3:81"},"nativeSrc":"4779:27:81","nodeType":"YulFunctionCall","src":"4779:27:81"}],"functionName":{"name":"mstore","nativeSrc":"4761:6:81","nodeType":"YulIdentifier","src":"4761:6:81"},"nativeSrc":"4761:46:81","nodeType":"YulFunctionCall","src":"4761:46:81"},"nativeSrc":"4761:46:81","nodeType":"YulExpressionStatement","src":"4761:46:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4827:9:81","nodeType":"YulIdentifier","src":"4827:9:81"},{"kind":"number","nativeSrc":"4838:2:81","nodeType":"YulLiteral","src":"4838:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4823:3:81","nodeType":"YulIdentifier","src":"4823:3:81"},"nativeSrc":"4823:18:81","nodeType":"YulFunctionCall","src":"4823:18:81"},{"arguments":[{"name":"value1","nativeSrc":"4847:6:81","nodeType":"YulIdentifier","src":"4847:6:81"},{"kind":"number","nativeSrc":"4855:10:81","nodeType":"YulLiteral","src":"4855:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4843:3:81","nodeType":"YulIdentifier","src":"4843:3:81"},"nativeSrc":"4843:23:81","nodeType":"YulFunctionCall","src":"4843:23:81"}],"functionName":{"name":"mstore","nativeSrc":"4816:6:81","nodeType":"YulIdentifier","src":"4816:6:81"},"nativeSrc":"4816:51:81","nodeType":"YulFunctionCall","src":"4816:51:81"},"nativeSrc":"4816:51:81","nodeType":"YulExpressionStatement","src":"4816:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4887:9:81","nodeType":"YulIdentifier","src":"4887:9:81"},{"kind":"number","nativeSrc":"4898:2:81","nodeType":"YulLiteral","src":"4898:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4883:3:81","nodeType":"YulIdentifier","src":"4883:3:81"},"nativeSrc":"4883:18:81","nodeType":"YulFunctionCall","src":"4883:18:81"},{"arguments":[{"name":"value2","nativeSrc":"4907:6:81","nodeType":"YulIdentifier","src":"4907:6:81"},{"kind":"number","nativeSrc":"4915:10:81","nodeType":"YulLiteral","src":"4915:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4903:3:81","nodeType":"YulIdentifier","src":"4903:3:81"},"nativeSrc":"4903:23:81","nodeType":"YulFunctionCall","src":"4903:23:81"}],"functionName":{"name":"mstore","nativeSrc":"4876:6:81","nodeType":"YulIdentifier","src":"4876:6:81"},"nativeSrc":"4876:51:81","nodeType":"YulFunctionCall","src":"4876:51:81"},"nativeSrc":"4876:51:81","nodeType":"YulExpressionStatement","src":"4876:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4947:9:81","nodeType":"YulIdentifier","src":"4947:9:81"},{"kind":"number","nativeSrc":"4958:2:81","nodeType":"YulLiteral","src":"4958:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4943:3:81","nodeType":"YulIdentifier","src":"4943:3:81"},"nativeSrc":"4943:18:81","nodeType":"YulFunctionCall","src":"4943:18:81"},{"arguments":[{"name":"value3","nativeSrc":"4967:6:81","nodeType":"YulIdentifier","src":"4967:6:81"},{"kind":"number","nativeSrc":"4975:14:81","nodeType":"YulLiteral","src":"4975:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4963:3:81","nodeType":"YulIdentifier","src":"4963:3:81"},"nativeSrc":"4963:27:81","nodeType":"YulFunctionCall","src":"4963:27:81"}],"functionName":{"name":"mstore","nativeSrc":"4936:6:81","nodeType":"YulIdentifier","src":"4936:6:81"},"nativeSrc":"4936:55:81","nodeType":"YulFunctionCall","src":"4936:55:81"},"nativeSrc":"4936:55:81","nodeType":"YulExpressionStatement","src":"4936:55:81"}]},"name":"abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"4538:459:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4660:9:81","nodeType":"YulTypedName","src":"4660:9:81","type":""},{"name":"value3","nativeSrc":"4671:6:81","nodeType":"YulTypedName","src":"4671:6:81","type":""},{"name":"value2","nativeSrc":"4679:6:81","nodeType":"YulTypedName","src":"4679:6:81","type":""},{"name":"value1","nativeSrc":"4687:6:81","nodeType":"YulTypedName","src":"4687:6:81","type":""},{"name":"value0","nativeSrc":"4695:6:81","nodeType":"YulTypedName","src":"4695:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4706:4:81","nodeType":"YulTypedName","src":"4706:4:81","type":""}],"src":"4538:459:81"},{"body":{"nativeSrc":"5087:171:81","nodeType":"YulBlock","src":"5087:171:81","statements":[{"body":{"nativeSrc":"5133:16:81","nodeType":"YulBlock","src":"5133:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5142:1:81","nodeType":"YulLiteral","src":"5142:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5145:1:81","nodeType":"YulLiteral","src":"5145:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5135:6:81","nodeType":"YulIdentifier","src":"5135:6:81"},"nativeSrc":"5135:12:81","nodeType":"YulFunctionCall","src":"5135:12:81"},"nativeSrc":"5135:12:81","nodeType":"YulExpressionStatement","src":"5135:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5108:7:81","nodeType":"YulIdentifier","src":"5108:7:81"},{"name":"headStart","nativeSrc":"5117:9:81","nodeType":"YulIdentifier","src":"5117:9:81"}],"functionName":{"name":"sub","nativeSrc":"5104:3:81","nodeType":"YulIdentifier","src":"5104:3:81"},"nativeSrc":"5104:23:81","nodeType":"YulFunctionCall","src":"5104:23:81"},{"kind":"number","nativeSrc":"5129:2:81","nodeType":"YulLiteral","src":"5129:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5100:3:81","nodeType":"YulIdentifier","src":"5100:3:81"},"nativeSrc":"5100:32:81","nodeType":"YulFunctionCall","src":"5100:32:81"},"nativeSrc":"5097:52:81","nodeType":"YulIf","src":"5097:52:81"},{"nativeSrc":"5158:38:81","nodeType":"YulAssignment","src":"5158:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5186:9:81","nodeType":"YulIdentifier","src":"5186:9:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5168:17:81","nodeType":"YulIdentifier","src":"5168:17:81"},"nativeSrc":"5168:28:81","nodeType":"YulFunctionCall","src":"5168:28:81"},"variableNames":[{"name":"value0","nativeSrc":"5158:6:81","nodeType":"YulIdentifier","src":"5158:6:81"}]},{"nativeSrc":"5205:47:81","nodeType":"YulAssignment","src":"5205:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5237:9:81","nodeType":"YulIdentifier","src":"5237:9:81"},{"kind":"number","nativeSrc":"5248:2:81","nodeType":"YulLiteral","src":"5248:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5233:3:81","nodeType":"YulIdentifier","src":"5233:3:81"},"nativeSrc":"5233:18:81","nodeType":"YulFunctionCall","src":"5233:18:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5215:17:81","nodeType":"YulIdentifier","src":"5215:17:81"},"nativeSrc":"5215:37:81","nodeType":"YulFunctionCall","src":"5215:37:81"},"variableNames":[{"name":"value1","nativeSrc":"5205:6:81","nodeType":"YulIdentifier","src":"5205:6:81"}]}]},"name":"abi_decode_tuple_t_uint64t_uint64","nativeSrc":"5002:256:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5045:9:81","nodeType":"YulTypedName","src":"5045:9:81","type":""},{"name":"dataEnd","nativeSrc":"5056:7:81","nodeType":"YulTypedName","src":"5056:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5068:6:81","nodeType":"YulTypedName","src":"5068:6:81","type":""},{"name":"value1","nativeSrc":"5076:6:81","nodeType":"YulTypedName","src":"5076:6:81","type":""}],"src":"5002:256:81"},{"body":{"nativeSrc":"5333:110:81","nodeType":"YulBlock","src":"5333:110:81","statements":[{"body":{"nativeSrc":"5379:16:81","nodeType":"YulBlock","src":"5379:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5388:1:81","nodeType":"YulLiteral","src":"5388:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5391:1:81","nodeType":"YulLiteral","src":"5391:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5381:6:81","nodeType":"YulIdentifier","src":"5381:6:81"},"nativeSrc":"5381:12:81","nodeType":"YulFunctionCall","src":"5381:12:81"},"nativeSrc":"5381:12:81","nodeType":"YulExpressionStatement","src":"5381:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5354:7:81","nodeType":"YulIdentifier","src":"5354:7:81"},{"name":"headStart","nativeSrc":"5363:9:81","nodeType":"YulIdentifier","src":"5363:9:81"}],"functionName":{"name":"sub","nativeSrc":"5350:3:81","nodeType":"YulIdentifier","src":"5350:3:81"},"nativeSrc":"5350:23:81","nodeType":"YulFunctionCall","src":"5350:23:81"},{"kind":"number","nativeSrc":"5375:2:81","nodeType":"YulLiteral","src":"5375:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5346:3:81","nodeType":"YulIdentifier","src":"5346:3:81"},"nativeSrc":"5346:32:81","nodeType":"YulFunctionCall","src":"5346:32:81"},"nativeSrc":"5343:52:81","nodeType":"YulIf","src":"5343:52:81"},{"nativeSrc":"5404:33:81","nodeType":"YulAssignment","src":"5404:33:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5427:9:81","nodeType":"YulIdentifier","src":"5427:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5414:12:81","nodeType":"YulIdentifier","src":"5414:12:81"},"nativeSrc":"5414:23:81","nodeType":"YulFunctionCall","src":"5414:23:81"},"variableNames":[{"name":"value0","nativeSrc":"5404:6:81","nodeType":"YulIdentifier","src":"5404:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"5263:180:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5299:9:81","nodeType":"YulTypedName","src":"5299:9:81","type":""},{"name":"dataEnd","nativeSrc":"5310:7:81","nodeType":"YulTypedName","src":"5310:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5322:6:81","nodeType":"YulTypedName","src":"5322:6:81","type":""}],"src":"5263:180:81"},{"body":{"nativeSrc":"5547:97:81","nodeType":"YulBlock","src":"5547:97:81","statements":[{"nativeSrc":"5557:26:81","nodeType":"YulAssignment","src":"5557:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5569:9:81","nodeType":"YulIdentifier","src":"5569:9:81"},{"kind":"number","nativeSrc":"5580:2:81","nodeType":"YulLiteral","src":"5580:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5565:3:81","nodeType":"YulIdentifier","src":"5565:3:81"},"nativeSrc":"5565:18:81","nodeType":"YulFunctionCall","src":"5565:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5557:4:81","nodeType":"YulIdentifier","src":"5557:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5599:9:81","nodeType":"YulIdentifier","src":"5599:9:81"},{"arguments":[{"name":"value0","nativeSrc":"5614:6:81","nodeType":"YulIdentifier","src":"5614:6:81"},{"kind":"number","nativeSrc":"5622:14:81","nodeType":"YulLiteral","src":"5622:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5610:3:81","nodeType":"YulIdentifier","src":"5610:3:81"},"nativeSrc":"5610:27:81","nodeType":"YulFunctionCall","src":"5610:27:81"}],"functionName":{"name":"mstore","nativeSrc":"5592:6:81","nodeType":"YulIdentifier","src":"5592:6:81"},"nativeSrc":"5592:46:81","nodeType":"YulFunctionCall","src":"5592:46:81"},"nativeSrc":"5592:46:81","nodeType":"YulExpressionStatement","src":"5592:46:81"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed","nativeSrc":"5448:196:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5516:9:81","nodeType":"YulTypedName","src":"5516:9:81","type":""},{"name":"value0","nativeSrc":"5527:6:81","nodeType":"YulTypedName","src":"5527:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5538:4:81","nodeType":"YulTypedName","src":"5538:4:81","type":""}],"src":"5448:196:81"},{"body":{"nativeSrc":"5719:177:81","nodeType":"YulBlock","src":"5719:177:81","statements":[{"body":{"nativeSrc":"5765:16:81","nodeType":"YulBlock","src":"5765:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5774:1:81","nodeType":"YulLiteral","src":"5774:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5777:1:81","nodeType":"YulLiteral","src":"5777:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5767:6:81","nodeType":"YulIdentifier","src":"5767:6:81"},"nativeSrc":"5767:12:81","nodeType":"YulFunctionCall","src":"5767:12:81"},"nativeSrc":"5767:12:81","nodeType":"YulExpressionStatement","src":"5767:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5740:7:81","nodeType":"YulIdentifier","src":"5740:7:81"},{"name":"headStart","nativeSrc":"5749:9:81","nodeType":"YulIdentifier","src":"5749:9:81"}],"functionName":{"name":"sub","nativeSrc":"5736:3:81","nodeType":"YulIdentifier","src":"5736:3:81"},"nativeSrc":"5736:23:81","nodeType":"YulFunctionCall","src":"5736:23:81"},{"kind":"number","nativeSrc":"5761:2:81","nodeType":"YulLiteral","src":"5761:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5732:3:81","nodeType":"YulIdentifier","src":"5732:3:81"},"nativeSrc":"5732:32:81","nodeType":"YulFunctionCall","src":"5732:32:81"},"nativeSrc":"5729:52:81","nodeType":"YulIf","src":"5729:52:81"},{"nativeSrc":"5790:36:81","nodeType":"YulVariableDeclaration","src":"5790:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5816:9:81","nodeType":"YulIdentifier","src":"5816:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5803:12:81","nodeType":"YulIdentifier","src":"5803:12:81"},"nativeSrc":"5803:23:81","nodeType":"YulFunctionCall","src":"5803:23:81"},"variables":[{"name":"value","nativeSrc":"5794:5:81","nodeType":"YulTypedName","src":"5794:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5860:5:81","nodeType":"YulIdentifier","src":"5860:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5835:24:81","nodeType":"YulIdentifier","src":"5835:24:81"},"nativeSrc":"5835:31:81","nodeType":"YulFunctionCall","src":"5835:31:81"},"nativeSrc":"5835:31:81","nodeType":"YulExpressionStatement","src":"5835:31:81"},{"nativeSrc":"5875:15:81","nodeType":"YulAssignment","src":"5875:15:81","value":{"name":"value","nativeSrc":"5885:5:81","nodeType":"YulIdentifier","src":"5885:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5875:6:81","nodeType":"YulIdentifier","src":"5875:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5649:247:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5685:9:81","nodeType":"YulTypedName","src":"5685:9:81","type":""},{"name":"dataEnd","nativeSrc":"5696:7:81","nodeType":"YulTypedName","src":"5696:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5708:6:81","nodeType":"YulTypedName","src":"5708:6:81","type":""}],"src":"5649:247:81"},{"body":{"nativeSrc":"5945:87:81","nodeType":"YulBlock","src":"5945:87:81","statements":[{"body":{"nativeSrc":"6010:16:81","nodeType":"YulBlock","src":"6010:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6019:1:81","nodeType":"YulLiteral","src":"6019:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6022:1:81","nodeType":"YulLiteral","src":"6022:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6012:6:81","nodeType":"YulIdentifier","src":"6012:6:81"},"nativeSrc":"6012:12:81","nodeType":"YulFunctionCall","src":"6012:12:81"},"nativeSrc":"6012:12:81","nodeType":"YulExpressionStatement","src":"6012:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5968:5:81","nodeType":"YulIdentifier","src":"5968:5:81"},{"arguments":[{"name":"value","nativeSrc":"5979:5:81","nodeType":"YulIdentifier","src":"5979:5:81"},{"arguments":[{"kind":"number","nativeSrc":"5990:3:81","nodeType":"YulLiteral","src":"5990:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"5995:10:81","nodeType":"YulLiteral","src":"5995:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"5986:3:81","nodeType":"YulIdentifier","src":"5986:3:81"},"nativeSrc":"5986:20:81","nodeType":"YulFunctionCall","src":"5986:20:81"}],"functionName":{"name":"and","nativeSrc":"5975:3:81","nodeType":"YulIdentifier","src":"5975:3:81"},"nativeSrc":"5975:32:81","nodeType":"YulFunctionCall","src":"5975:32:81"}],"functionName":{"name":"eq","nativeSrc":"5965:2:81","nodeType":"YulIdentifier","src":"5965:2:81"},"nativeSrc":"5965:43:81","nodeType":"YulFunctionCall","src":"5965:43:81"}],"functionName":{"name":"iszero","nativeSrc":"5958:6:81","nodeType":"YulIdentifier","src":"5958:6:81"},"nativeSrc":"5958:51:81","nodeType":"YulFunctionCall","src":"5958:51:81"},"nativeSrc":"5955:71:81","nodeType":"YulIf","src":"5955:71:81"}]},"name":"validator_revert_bytes4","nativeSrc":"5901:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5934:5:81","nodeType":"YulTypedName","src":"5934:5:81","type":""}],"src":"5901:131:81"},{"body":{"nativeSrc":"6123:300:81","nodeType":"YulBlock","src":"6123:300:81","statements":[{"body":{"nativeSrc":"6169:16:81","nodeType":"YulBlock","src":"6169:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6178:1:81","nodeType":"YulLiteral","src":"6178:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6181:1:81","nodeType":"YulLiteral","src":"6181:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6171:6:81","nodeType":"YulIdentifier","src":"6171:6:81"},"nativeSrc":"6171:12:81","nodeType":"YulFunctionCall","src":"6171:12:81"},"nativeSrc":"6171:12:81","nodeType":"YulExpressionStatement","src":"6171:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6144:7:81","nodeType":"YulIdentifier","src":"6144:7:81"},{"name":"headStart","nativeSrc":"6153:9:81","nodeType":"YulIdentifier","src":"6153:9:81"}],"functionName":{"name":"sub","nativeSrc":"6140:3:81","nodeType":"YulIdentifier","src":"6140:3:81"},"nativeSrc":"6140:23:81","nodeType":"YulFunctionCall","src":"6140:23:81"},{"kind":"number","nativeSrc":"6165:2:81","nodeType":"YulLiteral","src":"6165:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6136:3:81","nodeType":"YulIdentifier","src":"6136:3:81"},"nativeSrc":"6136:32:81","nodeType":"YulFunctionCall","src":"6136:32:81"},"nativeSrc":"6133:52:81","nodeType":"YulIf","src":"6133:52:81"},{"nativeSrc":"6194:36:81","nodeType":"YulVariableDeclaration","src":"6194:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6220:9:81","nodeType":"YulIdentifier","src":"6220:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"6207:12:81","nodeType":"YulIdentifier","src":"6207:12:81"},"nativeSrc":"6207:23:81","nodeType":"YulFunctionCall","src":"6207:23:81"},"variables":[{"name":"value","nativeSrc":"6198:5:81","nodeType":"YulTypedName","src":"6198:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6264:5:81","nodeType":"YulIdentifier","src":"6264:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6239:24:81","nodeType":"YulIdentifier","src":"6239:24:81"},"nativeSrc":"6239:31:81","nodeType":"YulFunctionCall","src":"6239:31:81"},"nativeSrc":"6239:31:81","nodeType":"YulExpressionStatement","src":"6239:31:81"},{"nativeSrc":"6279:15:81","nodeType":"YulAssignment","src":"6279:15:81","value":{"name":"value","nativeSrc":"6289:5:81","nodeType":"YulIdentifier","src":"6289:5:81"},"variableNames":[{"name":"value0","nativeSrc":"6279:6:81","nodeType":"YulIdentifier","src":"6279:6:81"}]},{"nativeSrc":"6303:47:81","nodeType":"YulVariableDeclaration","src":"6303:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6335:9:81","nodeType":"YulIdentifier","src":"6335:9:81"},{"kind":"number","nativeSrc":"6346:2:81","nodeType":"YulLiteral","src":"6346:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6331:3:81","nodeType":"YulIdentifier","src":"6331:3:81"},"nativeSrc":"6331:18:81","nodeType":"YulFunctionCall","src":"6331:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6318:12:81","nodeType":"YulIdentifier","src":"6318:12:81"},"nativeSrc":"6318:32:81","nodeType":"YulFunctionCall","src":"6318:32:81"},"variables":[{"name":"value_1","nativeSrc":"6307:7:81","nodeType":"YulTypedName","src":"6307:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6383:7:81","nodeType":"YulIdentifier","src":"6383:7:81"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"6359:23:81","nodeType":"YulIdentifier","src":"6359:23:81"},"nativeSrc":"6359:32:81","nodeType":"YulFunctionCall","src":"6359:32:81"},"nativeSrc":"6359:32:81","nodeType":"YulExpressionStatement","src":"6359:32:81"},{"nativeSrc":"6400:17:81","nodeType":"YulAssignment","src":"6400:17:81","value":{"name":"value_1","nativeSrc":"6410:7:81","nodeType":"YulIdentifier","src":"6410:7:81"},"variableNames":[{"name":"value1","nativeSrc":"6400:6:81","nodeType":"YulIdentifier","src":"6400:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"6037:386:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6081:9:81","nodeType":"YulTypedName","src":"6081:9:81","type":""},{"name":"dataEnd","nativeSrc":"6092:7:81","nodeType":"YulTypedName","src":"6092:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6104:6:81","nodeType":"YulTypedName","src":"6104:6:81","type":""},{"name":"value1","nativeSrc":"6112:6:81","nodeType":"YulTypedName","src":"6112:6:81","type":""}],"src":"6037:386:81"},{"body":{"nativeSrc":"6534:376:81","nodeType":"YulBlock","src":"6534:376:81","statements":[{"body":{"nativeSrc":"6580:16:81","nodeType":"YulBlock","src":"6580:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6589:1:81","nodeType":"YulLiteral","src":"6589:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6592:1:81","nodeType":"YulLiteral","src":"6592:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6582:6:81","nodeType":"YulIdentifier","src":"6582:6:81"},"nativeSrc":"6582:12:81","nodeType":"YulFunctionCall","src":"6582:12:81"},"nativeSrc":"6582:12:81","nodeType":"YulExpressionStatement","src":"6582:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6555:7:81","nodeType":"YulIdentifier","src":"6555:7:81"},{"name":"headStart","nativeSrc":"6564:9:81","nodeType":"YulIdentifier","src":"6564:9:81"}],"functionName":{"name":"sub","nativeSrc":"6551:3:81","nodeType":"YulIdentifier","src":"6551:3:81"},"nativeSrc":"6551:23:81","nodeType":"YulFunctionCall","src":"6551:23:81"},{"kind":"number","nativeSrc":"6576:2:81","nodeType":"YulLiteral","src":"6576:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6547:3:81","nodeType":"YulIdentifier","src":"6547:3:81"},"nativeSrc":"6547:32:81","nodeType":"YulFunctionCall","src":"6547:32:81"},"nativeSrc":"6544:52:81","nodeType":"YulIf","src":"6544:52:81"},{"nativeSrc":"6605:38:81","nodeType":"YulAssignment","src":"6605:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6633:9:81","nodeType":"YulIdentifier","src":"6633:9:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"6615:17:81","nodeType":"YulIdentifier","src":"6615:17:81"},"nativeSrc":"6615:28:81","nodeType":"YulFunctionCall","src":"6615:28:81"},"variableNames":[{"name":"value0","nativeSrc":"6605:6:81","nodeType":"YulIdentifier","src":"6605:6:81"}]},{"nativeSrc":"6652:46:81","nodeType":"YulVariableDeclaration","src":"6652:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6683:9:81","nodeType":"YulIdentifier","src":"6683:9:81"},{"kind":"number","nativeSrc":"6694:2:81","nodeType":"YulLiteral","src":"6694:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6679:3:81","nodeType":"YulIdentifier","src":"6679:3:81"},"nativeSrc":"6679:18:81","nodeType":"YulFunctionCall","src":"6679:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6666:12:81","nodeType":"YulIdentifier","src":"6666:12:81"},"nativeSrc":"6666:32:81","nodeType":"YulFunctionCall","src":"6666:32:81"},"variables":[{"name":"offset","nativeSrc":"6656:6:81","nodeType":"YulTypedName","src":"6656:6:81","type":""}]},{"body":{"nativeSrc":"6741:16:81","nodeType":"YulBlock","src":"6741:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6750:1:81","nodeType":"YulLiteral","src":"6750:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6753:1:81","nodeType":"YulLiteral","src":"6753:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6743:6:81","nodeType":"YulIdentifier","src":"6743:6:81"},"nativeSrc":"6743:12:81","nodeType":"YulFunctionCall","src":"6743:12:81"},"nativeSrc":"6743:12:81","nodeType":"YulExpressionStatement","src":"6743:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6713:6:81","nodeType":"YulIdentifier","src":"6713:6:81"},{"kind":"number","nativeSrc":"6721:18:81","nodeType":"YulLiteral","src":"6721:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6710:2:81","nodeType":"YulIdentifier","src":"6710:2:81"},"nativeSrc":"6710:30:81","nodeType":"YulFunctionCall","src":"6710:30:81"},"nativeSrc":"6707:50:81","nodeType":"YulIf","src":"6707:50:81"},{"nativeSrc":"6766:84:81","nodeType":"YulVariableDeclaration","src":"6766:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6822:9:81","nodeType":"YulIdentifier","src":"6822:9:81"},{"name":"offset","nativeSrc":"6833:6:81","nodeType":"YulIdentifier","src":"6833:6:81"}],"functionName":{"name":"add","nativeSrc":"6818:3:81","nodeType":"YulIdentifier","src":"6818:3:81"},"nativeSrc":"6818:22:81","nodeType":"YulFunctionCall","src":"6818:22:81"},{"name":"dataEnd","nativeSrc":"6842:7:81","nodeType":"YulIdentifier","src":"6842:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"6792:25:81","nodeType":"YulIdentifier","src":"6792:25:81"},"nativeSrc":"6792:58:81","nodeType":"YulFunctionCall","src":"6792:58:81"},"variables":[{"name":"value1_1","nativeSrc":"6770:8:81","nodeType":"YulTypedName","src":"6770:8:81","type":""},{"name":"value2_1","nativeSrc":"6780:8:81","nodeType":"YulTypedName","src":"6780:8:81","type":""}]},{"nativeSrc":"6859:18:81","nodeType":"YulAssignment","src":"6859:18:81","value":{"name":"value1_1","nativeSrc":"6869:8:81","nodeType":"YulIdentifier","src":"6869:8:81"},"variableNames":[{"name":"value1","nativeSrc":"6859:6:81","nodeType":"YulIdentifier","src":"6859:6:81"}]},{"nativeSrc":"6886:18:81","nodeType":"YulAssignment","src":"6886:18:81","value":{"name":"value2_1","nativeSrc":"6896:8:81","nodeType":"YulIdentifier","src":"6896:8:81"},"variableNames":[{"name":"value2","nativeSrc":"6886:6:81","nodeType":"YulIdentifier","src":"6886:6:81"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"6428:482:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6484:9:81","nodeType":"YulTypedName","src":"6484:9:81","type":""},{"name":"dataEnd","nativeSrc":"6495:7:81","nodeType":"YulTypedName","src":"6495:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6507:6:81","nodeType":"YulTypedName","src":"6507:6:81","type":""},{"name":"value1","nativeSrc":"6515:6:81","nodeType":"YulTypedName","src":"6515:6:81","type":""},{"name":"value2","nativeSrc":"6523:6:81","nodeType":"YulTypedName","src":"6523:6:81","type":""}],"src":"6428:482:81"},{"body":{"nativeSrc":"7010:92:81","nodeType":"YulBlock","src":"7010:92:81","statements":[{"nativeSrc":"7020:26:81","nodeType":"YulAssignment","src":"7020:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7032:9:81","nodeType":"YulIdentifier","src":"7032:9:81"},{"kind":"number","nativeSrc":"7043:2:81","nodeType":"YulLiteral","src":"7043:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7028:3:81","nodeType":"YulIdentifier","src":"7028:3:81"},"nativeSrc":"7028:18:81","nodeType":"YulFunctionCall","src":"7028:18:81"},"variableNames":[{"name":"tail","nativeSrc":"7020:4:81","nodeType":"YulIdentifier","src":"7020:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7062:9:81","nodeType":"YulIdentifier","src":"7062:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7087:6:81","nodeType":"YulIdentifier","src":"7087:6:81"}],"functionName":{"name":"iszero","nativeSrc":"7080:6:81","nodeType":"YulIdentifier","src":"7080:6:81"},"nativeSrc":"7080:14:81","nodeType":"YulFunctionCall","src":"7080:14:81"}],"functionName":{"name":"iszero","nativeSrc":"7073:6:81","nodeType":"YulIdentifier","src":"7073:6:81"},"nativeSrc":"7073:22:81","nodeType":"YulFunctionCall","src":"7073:22:81"}],"functionName":{"name":"mstore","nativeSrc":"7055:6:81","nodeType":"YulIdentifier","src":"7055:6:81"},"nativeSrc":"7055:41:81","nodeType":"YulFunctionCall","src":"7055:41:81"},"nativeSrc":"7055:41:81","nodeType":"YulExpressionStatement","src":"7055:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"6915:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6979:9:81","nodeType":"YulTypedName","src":"6979:9:81","type":""},{"name":"value0","nativeSrc":"6990:6:81","nodeType":"YulTypedName","src":"6990:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7001:4:81","nodeType":"YulTypedName","src":"7001:4:81","type":""}],"src":"6915:187:81"},{"body":{"nativeSrc":"7192:171:81","nodeType":"YulBlock","src":"7192:171:81","statements":[{"body":{"nativeSrc":"7238:16:81","nodeType":"YulBlock","src":"7238:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7247:1:81","nodeType":"YulLiteral","src":"7247:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7250:1:81","nodeType":"YulLiteral","src":"7250:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7240:6:81","nodeType":"YulIdentifier","src":"7240:6:81"},"nativeSrc":"7240:12:81","nodeType":"YulFunctionCall","src":"7240:12:81"},"nativeSrc":"7240:12:81","nodeType":"YulExpressionStatement","src":"7240:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7213:7:81","nodeType":"YulIdentifier","src":"7213:7:81"},{"name":"headStart","nativeSrc":"7222:9:81","nodeType":"YulIdentifier","src":"7222:9:81"}],"functionName":{"name":"sub","nativeSrc":"7209:3:81","nodeType":"YulIdentifier","src":"7209:3:81"},"nativeSrc":"7209:23:81","nodeType":"YulFunctionCall","src":"7209:23:81"},{"kind":"number","nativeSrc":"7234:2:81","nodeType":"YulLiteral","src":"7234:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7205:3:81","nodeType":"YulIdentifier","src":"7205:3:81"},"nativeSrc":"7205:32:81","nodeType":"YulFunctionCall","src":"7205:32:81"},"nativeSrc":"7202:52:81","nodeType":"YulIf","src":"7202:52:81"},{"nativeSrc":"7263:38:81","nodeType":"YulAssignment","src":"7263:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7291:9:81","nodeType":"YulIdentifier","src":"7291:9:81"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"7273:17:81","nodeType":"YulIdentifier","src":"7273:17:81"},"nativeSrc":"7273:28:81","nodeType":"YulFunctionCall","src":"7273:28:81"},"variableNames":[{"name":"value0","nativeSrc":"7263:6:81","nodeType":"YulIdentifier","src":"7263:6:81"}]},{"nativeSrc":"7310:47:81","nodeType":"YulAssignment","src":"7310:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7342:9:81","nodeType":"YulIdentifier","src":"7342:9:81"},{"kind":"number","nativeSrc":"7353:2:81","nodeType":"YulLiteral","src":"7353:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7338:3:81","nodeType":"YulIdentifier","src":"7338:3:81"},"nativeSrc":"7338:18:81","nodeType":"YulFunctionCall","src":"7338:18:81"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"7320:17:81","nodeType":"YulIdentifier","src":"7320:17:81"},"nativeSrc":"7320:37:81","nodeType":"YulFunctionCall","src":"7320:37:81"},"variableNames":[{"name":"value1","nativeSrc":"7310:6:81","nodeType":"YulIdentifier","src":"7310:6:81"}]}]},"name":"abi_decode_tuple_t_uint64t_uint32","nativeSrc":"7107:256:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7150:9:81","nodeType":"YulTypedName","src":"7150:9:81","type":""},{"name":"dataEnd","nativeSrc":"7161:7:81","nodeType":"YulTypedName","src":"7161:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7173:6:81","nodeType":"YulTypedName","src":"7173:6:81","type":""},{"name":"value1","nativeSrc":"7181:6:81","nodeType":"YulTypedName","src":"7181:6:81","type":""}],"src":"7107:256:81"},{"body":{"nativeSrc":"7491:562:81","nodeType":"YulBlock","src":"7491:562:81","statements":[{"body":{"nativeSrc":"7537:16:81","nodeType":"YulBlock","src":"7537:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7546:1:81","nodeType":"YulLiteral","src":"7546:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7549:1:81","nodeType":"YulLiteral","src":"7549:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7539:6:81","nodeType":"YulIdentifier","src":"7539:6:81"},"nativeSrc":"7539:12:81","nodeType":"YulFunctionCall","src":"7539:12:81"},"nativeSrc":"7539:12:81","nodeType":"YulExpressionStatement","src":"7539:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7512:7:81","nodeType":"YulIdentifier","src":"7512:7:81"},{"name":"headStart","nativeSrc":"7521:9:81","nodeType":"YulIdentifier","src":"7521:9:81"}],"functionName":{"name":"sub","nativeSrc":"7508:3:81","nodeType":"YulIdentifier","src":"7508:3:81"},"nativeSrc":"7508:23:81","nodeType":"YulFunctionCall","src":"7508:23:81"},{"kind":"number","nativeSrc":"7533:2:81","nodeType":"YulLiteral","src":"7533:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7504:3:81","nodeType":"YulIdentifier","src":"7504:3:81"},"nativeSrc":"7504:32:81","nodeType":"YulFunctionCall","src":"7504:32:81"},"nativeSrc":"7501:52:81","nodeType":"YulIf","src":"7501:52:81"},{"nativeSrc":"7562:36:81","nodeType":"YulVariableDeclaration","src":"7562:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7588:9:81","nodeType":"YulIdentifier","src":"7588:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"7575:12:81","nodeType":"YulIdentifier","src":"7575:12:81"},"nativeSrc":"7575:23:81","nodeType":"YulFunctionCall","src":"7575:23:81"},"variables":[{"name":"value","nativeSrc":"7566:5:81","nodeType":"YulTypedName","src":"7566:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7632:5:81","nodeType":"YulIdentifier","src":"7632:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7607:24:81","nodeType":"YulIdentifier","src":"7607:24:81"},"nativeSrc":"7607:31:81","nodeType":"YulFunctionCall","src":"7607:31:81"},"nativeSrc":"7607:31:81","nodeType":"YulExpressionStatement","src":"7607:31:81"},{"nativeSrc":"7647:15:81","nodeType":"YulAssignment","src":"7647:15:81","value":{"name":"value","nativeSrc":"7657:5:81","nodeType":"YulIdentifier","src":"7657:5:81"},"variableNames":[{"name":"value0","nativeSrc":"7647:6:81","nodeType":"YulIdentifier","src":"7647:6:81"}]},{"nativeSrc":"7671:47:81","nodeType":"YulVariableDeclaration","src":"7671:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7703:9:81","nodeType":"YulIdentifier","src":"7703:9:81"},{"kind":"number","nativeSrc":"7714:2:81","nodeType":"YulLiteral","src":"7714:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7699:3:81","nodeType":"YulIdentifier","src":"7699:3:81"},"nativeSrc":"7699:18:81","nodeType":"YulFunctionCall","src":"7699:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7686:12:81","nodeType":"YulIdentifier","src":"7686:12:81"},"nativeSrc":"7686:32:81","nodeType":"YulFunctionCall","src":"7686:32:81"},"variables":[{"name":"value_1","nativeSrc":"7675:7:81","nodeType":"YulTypedName","src":"7675:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7752:7:81","nodeType":"YulIdentifier","src":"7752:7:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7727:24:81","nodeType":"YulIdentifier","src":"7727:24:81"},"nativeSrc":"7727:33:81","nodeType":"YulFunctionCall","src":"7727:33:81"},"nativeSrc":"7727:33:81","nodeType":"YulExpressionStatement","src":"7727:33:81"},{"nativeSrc":"7769:17:81","nodeType":"YulAssignment","src":"7769:17:81","value":{"name":"value_1","nativeSrc":"7779:7:81","nodeType":"YulIdentifier","src":"7779:7:81"},"variableNames":[{"name":"value1","nativeSrc":"7769:6:81","nodeType":"YulIdentifier","src":"7769:6:81"}]},{"nativeSrc":"7795:46:81","nodeType":"YulVariableDeclaration","src":"7795:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7826:9:81","nodeType":"YulIdentifier","src":"7826:9:81"},{"kind":"number","nativeSrc":"7837:2:81","nodeType":"YulLiteral","src":"7837:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7822:3:81","nodeType":"YulIdentifier","src":"7822:3:81"},"nativeSrc":"7822:18:81","nodeType":"YulFunctionCall","src":"7822:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7809:12:81","nodeType":"YulIdentifier","src":"7809:12:81"},"nativeSrc":"7809:32:81","nodeType":"YulFunctionCall","src":"7809:32:81"},"variables":[{"name":"offset","nativeSrc":"7799:6:81","nodeType":"YulTypedName","src":"7799:6:81","type":""}]},{"body":{"nativeSrc":"7884:16:81","nodeType":"YulBlock","src":"7884:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7893:1:81","nodeType":"YulLiteral","src":"7893:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7896:1:81","nodeType":"YulLiteral","src":"7896:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7886:6:81","nodeType":"YulIdentifier","src":"7886:6:81"},"nativeSrc":"7886:12:81","nodeType":"YulFunctionCall","src":"7886:12:81"},"nativeSrc":"7886:12:81","nodeType":"YulExpressionStatement","src":"7886:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7856:6:81","nodeType":"YulIdentifier","src":"7856:6:81"},{"kind":"number","nativeSrc":"7864:18:81","nodeType":"YulLiteral","src":"7864:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7853:2:81","nodeType":"YulIdentifier","src":"7853:2:81"},"nativeSrc":"7853:30:81","nodeType":"YulFunctionCall","src":"7853:30:81"},"nativeSrc":"7850:50:81","nodeType":"YulIf","src":"7850:50:81"},{"nativeSrc":"7909:84:81","nodeType":"YulVariableDeclaration","src":"7909:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7965:9:81","nodeType":"YulIdentifier","src":"7965:9:81"},{"name":"offset","nativeSrc":"7976:6:81","nodeType":"YulIdentifier","src":"7976:6:81"}],"functionName":{"name":"add","nativeSrc":"7961:3:81","nodeType":"YulIdentifier","src":"7961:3:81"},"nativeSrc":"7961:22:81","nodeType":"YulFunctionCall","src":"7961:22:81"},{"name":"dataEnd","nativeSrc":"7985:7:81","nodeType":"YulIdentifier","src":"7985:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7935:25:81","nodeType":"YulIdentifier","src":"7935:25:81"},"nativeSrc":"7935:58:81","nodeType":"YulFunctionCall","src":"7935:58:81"},"variables":[{"name":"value2_1","nativeSrc":"7913:8:81","nodeType":"YulTypedName","src":"7913:8:81","type":""},{"name":"value3_1","nativeSrc":"7923:8:81","nodeType":"YulTypedName","src":"7923:8:81","type":""}]},{"nativeSrc":"8002:18:81","nodeType":"YulAssignment","src":"8002:18:81","value":{"name":"value2_1","nativeSrc":"8012:8:81","nodeType":"YulIdentifier","src":"8012:8:81"},"variableNames":[{"name":"value2","nativeSrc":"8002:6:81","nodeType":"YulIdentifier","src":"8002:6:81"}]},{"nativeSrc":"8029:18:81","nodeType":"YulAssignment","src":"8029:18:81","value":{"name":"value3_1","nativeSrc":"8039:8:81","nodeType":"YulIdentifier","src":"8039:8:81"},"variableNames":[{"name":"value3","nativeSrc":"8029:6:81","nodeType":"YulIdentifier","src":"8029:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr","nativeSrc":"7368:685:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7433:9:81","nodeType":"YulTypedName","src":"7433:9:81","type":""},{"name":"dataEnd","nativeSrc":"7444:7:81","nodeType":"YulTypedName","src":"7444:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7456:6:81","nodeType":"YulTypedName","src":"7456:6:81","type":""},{"name":"value1","nativeSrc":"7464:6:81","nodeType":"YulTypedName","src":"7464:6:81","type":""},{"name":"value2","nativeSrc":"7472:6:81","nodeType":"YulTypedName","src":"7472:6:81","type":""},{"name":"value3","nativeSrc":"7480:6:81","nodeType":"YulTypedName","src":"7480:6:81","type":""}],"src":"7368:685:81"},{"body":{"nativeSrc":"8159:76:81","nodeType":"YulBlock","src":"8159:76:81","statements":[{"nativeSrc":"8169:26:81","nodeType":"YulAssignment","src":"8169:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8181:9:81","nodeType":"YulIdentifier","src":"8181:9:81"},{"kind":"number","nativeSrc":"8192:2:81","nodeType":"YulLiteral","src":"8192:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8177:3:81","nodeType":"YulIdentifier","src":"8177:3:81"},"nativeSrc":"8177:18:81","nodeType":"YulFunctionCall","src":"8177:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8169:4:81","nodeType":"YulIdentifier","src":"8169:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8211:9:81","nodeType":"YulIdentifier","src":"8211:9:81"},{"name":"value0","nativeSrc":"8222:6:81","nodeType":"YulIdentifier","src":"8222:6:81"}],"functionName":{"name":"mstore","nativeSrc":"8204:6:81","nodeType":"YulIdentifier","src":"8204:6:81"},"nativeSrc":"8204:25:81","nodeType":"YulFunctionCall","src":"8204:25:81"},"nativeSrc":"8204:25:81","nodeType":"YulExpressionStatement","src":"8204:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"8058:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8128:9:81","nodeType":"YulTypedName","src":"8128:9:81","type":""},{"name":"value0","nativeSrc":"8139:6:81","nodeType":"YulTypedName","src":"8139:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8150:4:81","nodeType":"YulTypedName","src":"8150:4:81","type":""}],"src":"8058:177:81"},{"body":{"nativeSrc":"8356:331:81","nodeType":"YulBlock","src":"8356:331:81","statements":[{"body":{"nativeSrc":"8402:16:81","nodeType":"YulBlock","src":"8402:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8411:1:81","nodeType":"YulLiteral","src":"8411:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8414:1:81","nodeType":"YulLiteral","src":"8414:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8404:6:81","nodeType":"YulIdentifier","src":"8404:6:81"},"nativeSrc":"8404:12:81","nodeType":"YulFunctionCall","src":"8404:12:81"},"nativeSrc":"8404:12:81","nodeType":"YulExpressionStatement","src":"8404:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8377:7:81","nodeType":"YulIdentifier","src":"8377:7:81"},{"name":"headStart","nativeSrc":"8386:9:81","nodeType":"YulIdentifier","src":"8386:9:81"}],"functionName":{"name":"sub","nativeSrc":"8373:3:81","nodeType":"YulIdentifier","src":"8373:3:81"},"nativeSrc":"8373:23:81","nodeType":"YulFunctionCall","src":"8373:23:81"},{"kind":"number","nativeSrc":"8398:2:81","nodeType":"YulLiteral","src":"8398:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8369:3:81","nodeType":"YulIdentifier","src":"8369:3:81"},"nativeSrc":"8369:32:81","nodeType":"YulFunctionCall","src":"8369:32:81"},"nativeSrc":"8366:52:81","nodeType":"YulIf","src":"8366:52:81"},{"nativeSrc":"8427:37:81","nodeType":"YulVariableDeclaration","src":"8427:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8454:9:81","nodeType":"YulIdentifier","src":"8454:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"8441:12:81","nodeType":"YulIdentifier","src":"8441:12:81"},"nativeSrc":"8441:23:81","nodeType":"YulFunctionCall","src":"8441:23:81"},"variables":[{"name":"offset","nativeSrc":"8431:6:81","nodeType":"YulTypedName","src":"8431:6:81","type":""}]},{"body":{"nativeSrc":"8507:16:81","nodeType":"YulBlock","src":"8507:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8516:1:81","nodeType":"YulLiteral","src":"8516:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8519:1:81","nodeType":"YulLiteral","src":"8519:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8509:6:81","nodeType":"YulIdentifier","src":"8509:6:81"},"nativeSrc":"8509:12:81","nodeType":"YulFunctionCall","src":"8509:12:81"},"nativeSrc":"8509:12:81","nodeType":"YulExpressionStatement","src":"8509:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8479:6:81","nodeType":"YulIdentifier","src":"8479:6:81"},{"kind":"number","nativeSrc":"8487:18:81","nodeType":"YulLiteral","src":"8487:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8476:2:81","nodeType":"YulIdentifier","src":"8476:2:81"},"nativeSrc":"8476:30:81","nodeType":"YulFunctionCall","src":"8476:30:81"},"nativeSrc":"8473:50:81","nodeType":"YulIf","src":"8473:50:81"},{"nativeSrc":"8532:95:81","nodeType":"YulVariableDeclaration","src":"8532:95:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8599:9:81","nodeType":"YulIdentifier","src":"8599:9:81"},{"name":"offset","nativeSrc":"8610:6:81","nodeType":"YulIdentifier","src":"8610:6:81"}],"functionName":{"name":"add","nativeSrc":"8595:3:81","nodeType":"YulIdentifier","src":"8595:3:81"},"nativeSrc":"8595:22:81","nodeType":"YulFunctionCall","src":"8595:22:81"},{"name":"dataEnd","nativeSrc":"8619:7:81","nodeType":"YulIdentifier","src":"8619:7:81"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"8558:36:81","nodeType":"YulIdentifier","src":"8558:36:81"},"nativeSrc":"8558:69:81","nodeType":"YulFunctionCall","src":"8558:69:81"},"variables":[{"name":"value0_1","nativeSrc":"8536:8:81","nodeType":"YulTypedName","src":"8536:8:81","type":""},{"name":"value1_1","nativeSrc":"8546:8:81","nodeType":"YulTypedName","src":"8546:8:81","type":""}]},{"nativeSrc":"8636:18:81","nodeType":"YulAssignment","src":"8636:18:81","value":{"name":"value0_1","nativeSrc":"8646:8:81","nodeType":"YulIdentifier","src":"8646:8:81"},"variableNames":[{"name":"value0","nativeSrc":"8636:6:81","nodeType":"YulIdentifier","src":"8636:6:81"}]},{"nativeSrc":"8663:18:81","nodeType":"YulAssignment","src":"8663:18:81","value":{"name":"value1_1","nativeSrc":"8673:8:81","nodeType":"YulIdentifier","src":"8673:8:81"},"variableNames":[{"name":"value1","nativeSrc":"8663:6:81","nodeType":"YulIdentifier","src":"8663:6:81"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"8240:447:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8314:9:81","nodeType":"YulTypedName","src":"8314:9:81","type":""},{"name":"dataEnd","nativeSrc":"8325:7:81","nodeType":"YulTypedName","src":"8325:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8337:6:81","nodeType":"YulTypedName","src":"8337:6:81","type":""},{"name":"value1","nativeSrc":"8345:6:81","nodeType":"YulTypedName","src":"8345:6:81","type":""}],"src":"8240:447:81"},{"body":{"nativeSrc":"8861:847:81","nodeType":"YulBlock","src":"8861:847:81","statements":[{"nativeSrc":"8871:32:81","nodeType":"YulVariableDeclaration","src":"8871:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8889:9:81","nodeType":"YulIdentifier","src":"8889:9:81"},{"kind":"number","nativeSrc":"8900:2:81","nodeType":"YulLiteral","src":"8900:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8885:3:81","nodeType":"YulIdentifier","src":"8885:3:81"},"nativeSrc":"8885:18:81","nodeType":"YulFunctionCall","src":"8885:18:81"},"variables":[{"name":"tail_1","nativeSrc":"8875:6:81","nodeType":"YulTypedName","src":"8875:6:81","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8919:9:81","nodeType":"YulIdentifier","src":"8919:9:81"},{"kind":"number","nativeSrc":"8930:2:81","nodeType":"YulLiteral","src":"8930:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"8912:6:81","nodeType":"YulIdentifier","src":"8912:6:81"},"nativeSrc":"8912:21:81","nodeType":"YulFunctionCall","src":"8912:21:81"},"nativeSrc":"8912:21:81","nodeType":"YulExpressionStatement","src":"8912:21:81"},{"nativeSrc":"8942:17:81","nodeType":"YulVariableDeclaration","src":"8942:17:81","value":{"name":"tail_1","nativeSrc":"8953:6:81","nodeType":"YulIdentifier","src":"8953:6:81"},"variables":[{"name":"pos","nativeSrc":"8946:3:81","nodeType":"YulTypedName","src":"8946:3:81","type":""}]},{"nativeSrc":"8968:27:81","nodeType":"YulVariableDeclaration","src":"8968:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"8988:6:81","nodeType":"YulIdentifier","src":"8988:6:81"}],"functionName":{"name":"mload","nativeSrc":"8982:5:81","nodeType":"YulIdentifier","src":"8982:5:81"},"nativeSrc":"8982:13:81","nodeType":"YulFunctionCall","src":"8982:13:81"},"variables":[{"name":"length","nativeSrc":"8972:6:81","nodeType":"YulTypedName","src":"8972:6:81","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"9011:6:81","nodeType":"YulIdentifier","src":"9011:6:81"},{"name":"length","nativeSrc":"9019:6:81","nodeType":"YulIdentifier","src":"9019:6:81"}],"functionName":{"name":"mstore","nativeSrc":"9004:6:81","nodeType":"YulIdentifier","src":"9004:6:81"},"nativeSrc":"9004:22:81","nodeType":"YulFunctionCall","src":"9004:22:81"},"nativeSrc":"9004:22:81","nodeType":"YulExpressionStatement","src":"9004:22:81"},{"nativeSrc":"9035:25:81","nodeType":"YulAssignment","src":"9035:25:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9046:9:81","nodeType":"YulIdentifier","src":"9046:9:81"},{"kind":"number","nativeSrc":"9057:2:81","nodeType":"YulLiteral","src":"9057:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9042:3:81","nodeType":"YulIdentifier","src":"9042:3:81"},"nativeSrc":"9042:18:81","nodeType":"YulFunctionCall","src":"9042:18:81"},"variableNames":[{"name":"pos","nativeSrc":"9035:3:81","nodeType":"YulIdentifier","src":"9035:3:81"}]},{"nativeSrc":"9069:53:81","nodeType":"YulVariableDeclaration","src":"9069:53:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9091:9:81","nodeType":"YulIdentifier","src":"9091:9:81"},{"arguments":[{"kind":"number","nativeSrc":"9106:1:81","nodeType":"YulLiteral","src":"9106:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"9109:6:81","nodeType":"YulIdentifier","src":"9109:6:81"}],"functionName":{"name":"shl","nativeSrc":"9102:3:81","nodeType":"YulIdentifier","src":"9102:3:81"},"nativeSrc":"9102:14:81","nodeType":"YulFunctionCall","src":"9102:14:81"}],"functionName":{"name":"add","nativeSrc":"9087:3:81","nodeType":"YulIdentifier","src":"9087:3:81"},"nativeSrc":"9087:30:81","nodeType":"YulFunctionCall","src":"9087:30:81"},{"kind":"number","nativeSrc":"9119:2:81","nodeType":"YulLiteral","src":"9119:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9083:3:81","nodeType":"YulIdentifier","src":"9083:3:81"},"nativeSrc":"9083:39:81","nodeType":"YulFunctionCall","src":"9083:39:81"},"variables":[{"name":"tail_2","nativeSrc":"9073:6:81","nodeType":"YulTypedName","src":"9073:6:81","type":""}]},{"nativeSrc":"9131:29:81","nodeType":"YulVariableDeclaration","src":"9131:29:81","value":{"arguments":[{"name":"value0","nativeSrc":"9149:6:81","nodeType":"YulIdentifier","src":"9149:6:81"},{"kind":"number","nativeSrc":"9157:2:81","nodeType":"YulLiteral","src":"9157:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9145:3:81","nodeType":"YulIdentifier","src":"9145:3:81"},"nativeSrc":"9145:15:81","nodeType":"YulFunctionCall","src":"9145:15:81"},"variables":[{"name":"srcPtr","nativeSrc":"9135:6:81","nodeType":"YulTypedName","src":"9135:6:81","type":""}]},{"nativeSrc":"9169:10:81","nodeType":"YulVariableDeclaration","src":"9169:10:81","value":{"kind":"number","nativeSrc":"9178:1:81","nodeType":"YulLiteral","src":"9178:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"9173:1:81","nodeType":"YulTypedName","src":"9173:1:81","type":""}]},{"body":{"nativeSrc":"9237:442:81","nodeType":"YulBlock","src":"9237:442:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"9258:3:81","nodeType":"YulIdentifier","src":"9258:3:81"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9271:6:81","nodeType":"YulIdentifier","src":"9271:6:81"},{"name":"headStart","nativeSrc":"9279:9:81","nodeType":"YulIdentifier","src":"9279:9:81"}],"functionName":{"name":"sub","nativeSrc":"9267:3:81","nodeType":"YulIdentifier","src":"9267:3:81"},"nativeSrc":"9267:22:81","nodeType":"YulFunctionCall","src":"9267:22:81"},{"arguments":[{"kind":"number","nativeSrc":"9295:2:81","nodeType":"YulLiteral","src":"9295:2:81","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"9291:3:81","nodeType":"YulIdentifier","src":"9291:3:81"},"nativeSrc":"9291:7:81","nodeType":"YulFunctionCall","src":"9291:7:81"}],"functionName":{"name":"add","nativeSrc":"9263:3:81","nodeType":"YulIdentifier","src":"9263:3:81"},"nativeSrc":"9263:36:81","nodeType":"YulFunctionCall","src":"9263:36:81"}],"functionName":{"name":"mstore","nativeSrc":"9251:6:81","nodeType":"YulIdentifier","src":"9251:6:81"},"nativeSrc":"9251:49:81","nodeType":"YulFunctionCall","src":"9251:49:81"},"nativeSrc":"9251:49:81","nodeType":"YulExpressionStatement","src":"9251:49:81"},{"nativeSrc":"9313:23:81","nodeType":"YulVariableDeclaration","src":"9313:23:81","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9329:6:81","nodeType":"YulIdentifier","src":"9329:6:81"}],"functionName":{"name":"mload","nativeSrc":"9323:5:81","nodeType":"YulIdentifier","src":"9323:5:81"},"nativeSrc":"9323:13:81","nodeType":"YulFunctionCall","src":"9323:13:81"},"variables":[{"name":"_1","nativeSrc":"9317:2:81","nodeType":"YulTypedName","src":"9317:2:81","type":""}]},{"nativeSrc":"9349:25:81","nodeType":"YulVariableDeclaration","src":"9349:25:81","value":{"arguments":[{"name":"_1","nativeSrc":"9371:2:81","nodeType":"YulIdentifier","src":"9371:2:81"}],"functionName":{"name":"mload","nativeSrc":"9365:5:81","nodeType":"YulIdentifier","src":"9365:5:81"},"nativeSrc":"9365:9:81","nodeType":"YulFunctionCall","src":"9365:9:81"},"variables":[{"name":"length_1","nativeSrc":"9353:8:81","nodeType":"YulTypedName","src":"9353:8:81","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"9394:6:81","nodeType":"YulIdentifier","src":"9394:6:81"},{"name":"length_1","nativeSrc":"9402:8:81","nodeType":"YulIdentifier","src":"9402:8:81"}],"functionName":{"name":"mstore","nativeSrc":"9387:6:81","nodeType":"YulIdentifier","src":"9387:6:81"},"nativeSrc":"9387:24:81","nodeType":"YulFunctionCall","src":"9387:24:81"},"nativeSrc":"9387:24:81","nodeType":"YulExpressionStatement","src":"9387:24:81"},{"expression":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9434:6:81","nodeType":"YulIdentifier","src":"9434:6:81"},{"kind":"number","nativeSrc":"9442:2:81","nodeType":"YulLiteral","src":"9442:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9430:3:81","nodeType":"YulIdentifier","src":"9430:3:81"},"nativeSrc":"9430:15:81","nodeType":"YulFunctionCall","src":"9430:15:81"},{"arguments":[{"name":"_1","nativeSrc":"9451:2:81","nodeType":"YulIdentifier","src":"9451:2:81"},{"kind":"number","nativeSrc":"9455:2:81","nodeType":"YulLiteral","src":"9455:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9447:3:81","nodeType":"YulIdentifier","src":"9447:3:81"},"nativeSrc":"9447:11:81","nodeType":"YulFunctionCall","src":"9447:11:81"},{"name":"length_1","nativeSrc":"9460:8:81","nodeType":"YulIdentifier","src":"9460:8:81"}],"functionName":{"name":"mcopy","nativeSrc":"9424:5:81","nodeType":"YulIdentifier","src":"9424:5:81"},"nativeSrc":"9424:45:81","nodeType":"YulFunctionCall","src":"9424:45:81"},"nativeSrc":"9424:45:81","nodeType":"YulExpressionStatement","src":"9424:45:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9497:6:81","nodeType":"YulIdentifier","src":"9497:6:81"},{"name":"length_1","nativeSrc":"9505:8:81","nodeType":"YulIdentifier","src":"9505:8:81"}],"functionName":{"name":"add","nativeSrc":"9493:3:81","nodeType":"YulIdentifier","src":"9493:3:81"},"nativeSrc":"9493:21:81","nodeType":"YulFunctionCall","src":"9493:21:81"},{"kind":"number","nativeSrc":"9516:2:81","nodeType":"YulLiteral","src":"9516:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9489:3:81","nodeType":"YulIdentifier","src":"9489:3:81"},"nativeSrc":"9489:30:81","nodeType":"YulFunctionCall","src":"9489:30:81"},{"kind":"number","nativeSrc":"9521:1:81","nodeType":"YulLiteral","src":"9521:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"9482:6:81","nodeType":"YulIdentifier","src":"9482:6:81"},"nativeSrc":"9482:41:81","nodeType":"YulFunctionCall","src":"9482:41:81"},"nativeSrc":"9482:41:81","nodeType":"YulExpressionStatement","src":"9482:41:81"},{"nativeSrc":"9536:63:81","nodeType":"YulAssignment","src":"9536:63:81","value":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9554:6:81","nodeType":"YulIdentifier","src":"9554:6:81"},{"arguments":[{"arguments":[{"name":"length_1","nativeSrc":"9570:8:81","nodeType":"YulIdentifier","src":"9570:8:81"},{"kind":"number","nativeSrc":"9580:2:81","nodeType":"YulLiteral","src":"9580:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"9566:3:81","nodeType":"YulIdentifier","src":"9566:3:81"},"nativeSrc":"9566:17:81","nodeType":"YulFunctionCall","src":"9566:17:81"},{"arguments":[{"kind":"number","nativeSrc":"9589:2:81","nodeType":"YulLiteral","src":"9589:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9585:3:81","nodeType":"YulIdentifier","src":"9585:3:81"},"nativeSrc":"9585:7:81","nodeType":"YulFunctionCall","src":"9585:7:81"}],"functionName":{"name":"and","nativeSrc":"9562:3:81","nodeType":"YulIdentifier","src":"9562:3:81"},"nativeSrc":"9562:31:81","nodeType":"YulFunctionCall","src":"9562:31:81"}],"functionName":{"name":"add","nativeSrc":"9550:3:81","nodeType":"YulIdentifier","src":"9550:3:81"},"nativeSrc":"9550:44:81","nodeType":"YulFunctionCall","src":"9550:44:81"},{"kind":"number","nativeSrc":"9596:2:81","nodeType":"YulLiteral","src":"9596:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9546:3:81","nodeType":"YulIdentifier","src":"9546:3:81"},"nativeSrc":"9546:53:81","nodeType":"YulFunctionCall","src":"9546:53:81"},"variableNames":[{"name":"tail_2","nativeSrc":"9536:6:81","nodeType":"YulIdentifier","src":"9536:6:81"}]},{"nativeSrc":"9612:25:81","nodeType":"YulAssignment","src":"9612:25:81","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9626:6:81","nodeType":"YulIdentifier","src":"9626:6:81"},{"kind":"number","nativeSrc":"9634:2:81","nodeType":"YulLiteral","src":"9634:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9622:3:81","nodeType":"YulIdentifier","src":"9622:3:81"},"nativeSrc":"9622:15:81","nodeType":"YulFunctionCall","src":"9622:15:81"},"variableNames":[{"name":"srcPtr","nativeSrc":"9612:6:81","nodeType":"YulIdentifier","src":"9612:6:81"}]},{"nativeSrc":"9650:19:81","nodeType":"YulAssignment","src":"9650:19:81","value":{"arguments":[{"name":"pos","nativeSrc":"9661:3:81","nodeType":"YulIdentifier","src":"9661:3:81"},{"kind":"number","nativeSrc":"9666:2:81","nodeType":"YulLiteral","src":"9666:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9657:3:81","nodeType":"YulIdentifier","src":"9657:3:81"},"nativeSrc":"9657:12:81","nodeType":"YulFunctionCall","src":"9657:12:81"},"variableNames":[{"name":"pos","nativeSrc":"9650:3:81","nodeType":"YulIdentifier","src":"9650:3:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"9199:1:81","nodeType":"YulIdentifier","src":"9199:1:81"},{"name":"length","nativeSrc":"9202:6:81","nodeType":"YulIdentifier","src":"9202:6:81"}],"functionName":{"name":"lt","nativeSrc":"9196:2:81","nodeType":"YulIdentifier","src":"9196:2:81"},"nativeSrc":"9196:13:81","nodeType":"YulFunctionCall","src":"9196:13:81"},"nativeSrc":"9188:491:81","nodeType":"YulForLoop","post":{"nativeSrc":"9210:18:81","nodeType":"YulBlock","src":"9210:18:81","statements":[{"nativeSrc":"9212:14:81","nodeType":"YulAssignment","src":"9212:14:81","value":{"arguments":[{"name":"i","nativeSrc":"9221:1:81","nodeType":"YulIdentifier","src":"9221:1:81"},{"kind":"number","nativeSrc":"9224:1:81","nodeType":"YulLiteral","src":"9224:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9217:3:81","nodeType":"YulIdentifier","src":"9217:3:81"},"nativeSrc":"9217:9:81","nodeType":"YulFunctionCall","src":"9217:9:81"},"variableNames":[{"name":"i","nativeSrc":"9212:1:81","nodeType":"YulIdentifier","src":"9212:1:81"}]}]},"pre":{"nativeSrc":"9192:3:81","nodeType":"YulBlock","src":"9192:3:81","statements":[]},"src":"9188:491:81"},{"nativeSrc":"9688:14:81","nodeType":"YulAssignment","src":"9688:14:81","value":{"name":"tail_2","nativeSrc":"9696:6:81","nodeType":"YulIdentifier","src":"9696:6:81"},"variableNames":[{"name":"tail","nativeSrc":"9688:4:81","nodeType":"YulIdentifier","src":"9688:4:81"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"8692:1016:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8830:9:81","nodeType":"YulTypedName","src":"8830:9:81","type":""},{"name":"value0","nativeSrc":"8841:6:81","nodeType":"YulTypedName","src":"8841:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8852:4:81","nodeType":"YulTypedName","src":"8852:4:81","type":""}],"src":"8692:1016:81"},{"body":{"nativeSrc":"9816:424:81","nodeType":"YulBlock","src":"9816:424:81","statements":[{"body":{"nativeSrc":"9862:16:81","nodeType":"YulBlock","src":"9862:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9871:1:81","nodeType":"YulLiteral","src":"9871:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9874:1:81","nodeType":"YulLiteral","src":"9874:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9864:6:81","nodeType":"YulIdentifier","src":"9864:6:81"},"nativeSrc":"9864:12:81","nodeType":"YulFunctionCall","src":"9864:12:81"},"nativeSrc":"9864:12:81","nodeType":"YulExpressionStatement","src":"9864:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9837:7:81","nodeType":"YulIdentifier","src":"9837:7:81"},{"name":"headStart","nativeSrc":"9846:9:81","nodeType":"YulIdentifier","src":"9846:9:81"}],"functionName":{"name":"sub","nativeSrc":"9833:3:81","nodeType":"YulIdentifier","src":"9833:3:81"},"nativeSrc":"9833:23:81","nodeType":"YulFunctionCall","src":"9833:23:81"},{"kind":"number","nativeSrc":"9858:2:81","nodeType":"YulLiteral","src":"9858:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"9829:3:81","nodeType":"YulIdentifier","src":"9829:3:81"},"nativeSrc":"9829:32:81","nodeType":"YulFunctionCall","src":"9829:32:81"},"nativeSrc":"9826:52:81","nodeType":"YulIf","src":"9826:52:81"},{"nativeSrc":"9887:36:81","nodeType":"YulVariableDeclaration","src":"9887:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9913:9:81","nodeType":"YulIdentifier","src":"9913:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"9900:12:81","nodeType":"YulIdentifier","src":"9900:12:81"},"nativeSrc":"9900:23:81","nodeType":"YulFunctionCall","src":"9900:23:81"},"variables":[{"name":"value","nativeSrc":"9891:5:81","nodeType":"YulTypedName","src":"9891:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9957:5:81","nodeType":"YulIdentifier","src":"9957:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9932:24:81","nodeType":"YulIdentifier","src":"9932:24:81"},"nativeSrc":"9932:31:81","nodeType":"YulFunctionCall","src":"9932:31:81"},"nativeSrc":"9932:31:81","nodeType":"YulExpressionStatement","src":"9932:31:81"},{"nativeSrc":"9972:15:81","nodeType":"YulAssignment","src":"9972:15:81","value":{"name":"value","nativeSrc":"9982:5:81","nodeType":"YulIdentifier","src":"9982:5:81"},"variableNames":[{"name":"value0","nativeSrc":"9972:6:81","nodeType":"YulIdentifier","src":"9972:6:81"}]},{"nativeSrc":"9996:47:81","nodeType":"YulVariableDeclaration","src":"9996:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10028:9:81","nodeType":"YulIdentifier","src":"10028:9:81"},{"kind":"number","nativeSrc":"10039:2:81","nodeType":"YulLiteral","src":"10039:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10024:3:81","nodeType":"YulIdentifier","src":"10024:3:81"},"nativeSrc":"10024:18:81","nodeType":"YulFunctionCall","src":"10024:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"10011:12:81","nodeType":"YulIdentifier","src":"10011:12:81"},"nativeSrc":"10011:32:81","nodeType":"YulFunctionCall","src":"10011:32:81"},"variables":[{"name":"value_1","nativeSrc":"10000:7:81","nodeType":"YulTypedName","src":"10000:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10077:7:81","nodeType":"YulIdentifier","src":"10077:7:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10052:24:81","nodeType":"YulIdentifier","src":"10052:24:81"},"nativeSrc":"10052:33:81","nodeType":"YulFunctionCall","src":"10052:33:81"},"nativeSrc":"10052:33:81","nodeType":"YulExpressionStatement","src":"10052:33:81"},{"nativeSrc":"10094:17:81","nodeType":"YulAssignment","src":"10094:17:81","value":{"name":"value_1","nativeSrc":"10104:7:81","nodeType":"YulIdentifier","src":"10104:7:81"},"variableNames":[{"name":"value1","nativeSrc":"10094:6:81","nodeType":"YulIdentifier","src":"10094:6:81"}]},{"nativeSrc":"10120:47:81","nodeType":"YulVariableDeclaration","src":"10120:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10152:9:81","nodeType":"YulIdentifier","src":"10152:9:81"},{"kind":"number","nativeSrc":"10163:2:81","nodeType":"YulLiteral","src":"10163:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10148:3:81","nodeType":"YulIdentifier","src":"10148:3:81"},"nativeSrc":"10148:18:81","nodeType":"YulFunctionCall","src":"10148:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"10135:12:81","nodeType":"YulIdentifier","src":"10135:12:81"},"nativeSrc":"10135:32:81","nodeType":"YulFunctionCall","src":"10135:32:81"},"variables":[{"name":"value_2","nativeSrc":"10124:7:81","nodeType":"YulTypedName","src":"10124:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"10200:7:81","nodeType":"YulIdentifier","src":"10200:7:81"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"10176:23:81","nodeType":"YulIdentifier","src":"10176:23:81"},"nativeSrc":"10176:32:81","nodeType":"YulFunctionCall","src":"10176:32:81"},"nativeSrc":"10176:32:81","nodeType":"YulExpressionStatement","src":"10176:32:81"},{"nativeSrc":"10217:17:81","nodeType":"YulAssignment","src":"10217:17:81","value":{"name":"value_2","nativeSrc":"10227:7:81","nodeType":"YulIdentifier","src":"10227:7:81"},"variableNames":[{"name":"value2","nativeSrc":"10217:6:81","nodeType":"YulIdentifier","src":"10217:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"9713:527:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9766:9:81","nodeType":"YulTypedName","src":"9766:9:81","type":""},{"name":"dataEnd","nativeSrc":"9777:7:81","nodeType":"YulTypedName","src":"9777:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9789:6:81","nodeType":"YulTypedName","src":"9789:6:81","type":""},{"name":"value1","nativeSrc":"9797:6:81","nodeType":"YulTypedName","src":"9797:6:81","type":""},{"name":"value2","nativeSrc":"9805:6:81","nodeType":"YulTypedName","src":"9805:6:81","type":""}],"src":"9713:527:81"},{"body":{"nativeSrc":"10366:152:81","nodeType":"YulBlock","src":"10366:152:81","statements":[{"nativeSrc":"10376:26:81","nodeType":"YulAssignment","src":"10376:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10388:9:81","nodeType":"YulIdentifier","src":"10388:9:81"},{"kind":"number","nativeSrc":"10399:2:81","nodeType":"YulLiteral","src":"10399:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10384:3:81","nodeType":"YulIdentifier","src":"10384:3:81"},"nativeSrc":"10384:18:81","nodeType":"YulFunctionCall","src":"10384:18:81"},"variableNames":[{"name":"tail","nativeSrc":"10376:4:81","nodeType":"YulIdentifier","src":"10376:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10418:9:81","nodeType":"YulIdentifier","src":"10418:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10443:6:81","nodeType":"YulIdentifier","src":"10443:6:81"}],"functionName":{"name":"iszero","nativeSrc":"10436:6:81","nodeType":"YulIdentifier","src":"10436:6:81"},"nativeSrc":"10436:14:81","nodeType":"YulFunctionCall","src":"10436:14:81"}],"functionName":{"name":"iszero","nativeSrc":"10429:6:81","nodeType":"YulIdentifier","src":"10429:6:81"},"nativeSrc":"10429:22:81","nodeType":"YulFunctionCall","src":"10429:22:81"}],"functionName":{"name":"mstore","nativeSrc":"10411:6:81","nodeType":"YulIdentifier","src":"10411:6:81"},"nativeSrc":"10411:41:81","nodeType":"YulFunctionCall","src":"10411:41:81"},"nativeSrc":"10411:41:81","nodeType":"YulExpressionStatement","src":"10411:41:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10472:9:81","nodeType":"YulIdentifier","src":"10472:9:81"},{"kind":"number","nativeSrc":"10483:2:81","nodeType":"YulLiteral","src":"10483:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10468:3:81","nodeType":"YulIdentifier","src":"10468:3:81"},"nativeSrc":"10468:18:81","nodeType":"YulFunctionCall","src":"10468:18:81"},{"arguments":[{"name":"value1","nativeSrc":"10492:6:81","nodeType":"YulIdentifier","src":"10492:6:81"},{"kind":"number","nativeSrc":"10500:10:81","nodeType":"YulLiteral","src":"10500:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"10488:3:81","nodeType":"YulIdentifier","src":"10488:3:81"},"nativeSrc":"10488:23:81","nodeType":"YulFunctionCall","src":"10488:23:81"}],"functionName":{"name":"mstore","nativeSrc":"10461:6:81","nodeType":"YulIdentifier","src":"10461:6:81"},"nativeSrc":"10461:51:81","nodeType":"YulFunctionCall","src":"10461:51:81"},"nativeSrc":"10461:51:81","nodeType":"YulExpressionStatement","src":"10461:51:81"}]},"name":"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed","nativeSrc":"10245:273:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10327:9:81","nodeType":"YulTypedName","src":"10327:9:81","type":""},{"name":"value1","nativeSrc":"10338:6:81","nodeType":"YulTypedName","src":"10338:6:81","type":""},{"name":"value0","nativeSrc":"10346:6:81","nodeType":"YulTypedName","src":"10346:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10357:4:81","nodeType":"YulTypedName","src":"10357:4:81","type":""}],"src":"10245:273:81"},{"body":{"nativeSrc":"10609:233:81","nodeType":"YulBlock","src":"10609:233:81","statements":[{"body":{"nativeSrc":"10655:16:81","nodeType":"YulBlock","src":"10655:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10664:1:81","nodeType":"YulLiteral","src":"10664:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10667:1:81","nodeType":"YulLiteral","src":"10667:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10657:6:81","nodeType":"YulIdentifier","src":"10657:6:81"},"nativeSrc":"10657:12:81","nodeType":"YulFunctionCall","src":"10657:12:81"},"nativeSrc":"10657:12:81","nodeType":"YulExpressionStatement","src":"10657:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10630:7:81","nodeType":"YulIdentifier","src":"10630:7:81"},{"name":"headStart","nativeSrc":"10639:9:81","nodeType":"YulIdentifier","src":"10639:9:81"}],"functionName":{"name":"sub","nativeSrc":"10626:3:81","nodeType":"YulIdentifier","src":"10626:3:81"},"nativeSrc":"10626:23:81","nodeType":"YulFunctionCall","src":"10626:23:81"},{"kind":"number","nativeSrc":"10651:2:81","nodeType":"YulLiteral","src":"10651:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10622:3:81","nodeType":"YulIdentifier","src":"10622:3:81"},"nativeSrc":"10622:32:81","nodeType":"YulFunctionCall","src":"10622:32:81"},"nativeSrc":"10619:52:81","nodeType":"YulIf","src":"10619:52:81"},{"nativeSrc":"10680:36:81","nodeType":"YulVariableDeclaration","src":"10680:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10706:9:81","nodeType":"YulIdentifier","src":"10706:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"10693:12:81","nodeType":"YulIdentifier","src":"10693:12:81"},"nativeSrc":"10693:23:81","nodeType":"YulFunctionCall","src":"10693:23:81"},"variables":[{"name":"value","nativeSrc":"10684:5:81","nodeType":"YulTypedName","src":"10684:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10750:5:81","nodeType":"YulIdentifier","src":"10750:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10725:24:81","nodeType":"YulIdentifier","src":"10725:24:81"},"nativeSrc":"10725:31:81","nodeType":"YulFunctionCall","src":"10725:31:81"},"nativeSrc":"10725:31:81","nodeType":"YulExpressionStatement","src":"10725:31:81"},{"nativeSrc":"10765:15:81","nodeType":"YulAssignment","src":"10765:15:81","value":{"name":"value","nativeSrc":"10775:5:81","nodeType":"YulIdentifier","src":"10775:5:81"},"variableNames":[{"name":"value0","nativeSrc":"10765:6:81","nodeType":"YulIdentifier","src":"10765:6:81"}]},{"nativeSrc":"10789:47:81","nodeType":"YulAssignment","src":"10789:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10821:9:81","nodeType":"YulIdentifier","src":"10821:9:81"},{"kind":"number","nativeSrc":"10832:2:81","nodeType":"YulLiteral","src":"10832:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10817:3:81","nodeType":"YulIdentifier","src":"10817:3:81"},"nativeSrc":"10817:18:81","nodeType":"YulFunctionCall","src":"10817:18:81"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"10799:17:81","nodeType":"YulIdentifier","src":"10799:17:81"},"nativeSrc":"10799:37:81","nodeType":"YulFunctionCall","src":"10799:37:81"},"variableNames":[{"name":"value1","nativeSrc":"10789:6:81","nodeType":"YulIdentifier","src":"10789:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"10523:319:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10567:9:81","nodeType":"YulTypedName","src":"10567:9:81","type":""},{"name":"dataEnd","nativeSrc":"10578:7:81","nodeType":"YulTypedName","src":"10578:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10590:6:81","nodeType":"YulTypedName","src":"10590:6:81","type":""},{"name":"value1","nativeSrc":"10598:6:81","nodeType":"YulTypedName","src":"10598:6:81","type":""}],"src":"10523:319:81"},{"body":{"nativeSrc":"10969:598:81","nodeType":"YulBlock","src":"10969:598:81","statements":[{"body":{"nativeSrc":"11015:16:81","nodeType":"YulBlock","src":"11015:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11024:1:81","nodeType":"YulLiteral","src":"11024:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11027:1:81","nodeType":"YulLiteral","src":"11027:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11017:6:81","nodeType":"YulIdentifier","src":"11017:6:81"},"nativeSrc":"11017:12:81","nodeType":"YulFunctionCall","src":"11017:12:81"},"nativeSrc":"11017:12:81","nodeType":"YulExpressionStatement","src":"11017:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10990:7:81","nodeType":"YulIdentifier","src":"10990:7:81"},{"name":"headStart","nativeSrc":"10999:9:81","nodeType":"YulIdentifier","src":"10999:9:81"}],"functionName":{"name":"sub","nativeSrc":"10986:3:81","nodeType":"YulIdentifier","src":"10986:3:81"},"nativeSrc":"10986:23:81","nodeType":"YulFunctionCall","src":"10986:23:81"},{"kind":"number","nativeSrc":"11011:2:81","nodeType":"YulLiteral","src":"11011:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10982:3:81","nodeType":"YulIdentifier","src":"10982:3:81"},"nativeSrc":"10982:32:81","nodeType":"YulFunctionCall","src":"10982:32:81"},"nativeSrc":"10979:52:81","nodeType":"YulIf","src":"10979:52:81"},{"nativeSrc":"11040:36:81","nodeType":"YulVariableDeclaration","src":"11040:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11066:9:81","nodeType":"YulIdentifier","src":"11066:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"11053:12:81","nodeType":"YulIdentifier","src":"11053:12:81"},"nativeSrc":"11053:23:81","nodeType":"YulFunctionCall","src":"11053:23:81"},"variables":[{"name":"value","nativeSrc":"11044:5:81","nodeType":"YulTypedName","src":"11044:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11110:5:81","nodeType":"YulIdentifier","src":"11110:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11085:24:81","nodeType":"YulIdentifier","src":"11085:24:81"},"nativeSrc":"11085:31:81","nodeType":"YulFunctionCall","src":"11085:31:81"},"nativeSrc":"11085:31:81","nodeType":"YulExpressionStatement","src":"11085:31:81"},{"nativeSrc":"11125:15:81","nodeType":"YulAssignment","src":"11125:15:81","value":{"name":"value","nativeSrc":"11135:5:81","nodeType":"YulIdentifier","src":"11135:5:81"},"variableNames":[{"name":"value0","nativeSrc":"11125:6:81","nodeType":"YulIdentifier","src":"11125:6:81"}]},{"nativeSrc":"11149:46:81","nodeType":"YulVariableDeclaration","src":"11149:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11180:9:81","nodeType":"YulIdentifier","src":"11180:9:81"},{"kind":"number","nativeSrc":"11191:2:81","nodeType":"YulLiteral","src":"11191:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11176:3:81","nodeType":"YulIdentifier","src":"11176:3:81"},"nativeSrc":"11176:18:81","nodeType":"YulFunctionCall","src":"11176:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11163:12:81","nodeType":"YulIdentifier","src":"11163:12:81"},"nativeSrc":"11163:32:81","nodeType":"YulFunctionCall","src":"11163:32:81"},"variables":[{"name":"offset","nativeSrc":"11153:6:81","nodeType":"YulTypedName","src":"11153:6:81","type":""}]},{"body":{"nativeSrc":"11238:16:81","nodeType":"YulBlock","src":"11238:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11247:1:81","nodeType":"YulLiteral","src":"11247:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11250:1:81","nodeType":"YulLiteral","src":"11250:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11240:6:81","nodeType":"YulIdentifier","src":"11240:6:81"},"nativeSrc":"11240:12:81","nodeType":"YulFunctionCall","src":"11240:12:81"},"nativeSrc":"11240:12:81","nodeType":"YulExpressionStatement","src":"11240:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11210:6:81","nodeType":"YulIdentifier","src":"11210:6:81"},{"kind":"number","nativeSrc":"11218:18:81","nodeType":"YulLiteral","src":"11218:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11207:2:81","nodeType":"YulIdentifier","src":"11207:2:81"},"nativeSrc":"11207:30:81","nodeType":"YulFunctionCall","src":"11207:30:81"},"nativeSrc":"11204:50:81","nodeType":"YulIf","src":"11204:50:81"},{"nativeSrc":"11263:84:81","nodeType":"YulVariableDeclaration","src":"11263:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11319:9:81","nodeType":"YulIdentifier","src":"11319:9:81"},{"name":"offset","nativeSrc":"11330:6:81","nodeType":"YulIdentifier","src":"11330:6:81"}],"functionName":{"name":"add","nativeSrc":"11315:3:81","nodeType":"YulIdentifier","src":"11315:3:81"},"nativeSrc":"11315:22:81","nodeType":"YulFunctionCall","src":"11315:22:81"},{"name":"dataEnd","nativeSrc":"11339:7:81","nodeType":"YulIdentifier","src":"11339:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"11289:25:81","nodeType":"YulIdentifier","src":"11289:25:81"},"nativeSrc":"11289:58:81","nodeType":"YulFunctionCall","src":"11289:58:81"},"variables":[{"name":"value1_1","nativeSrc":"11267:8:81","nodeType":"YulTypedName","src":"11267:8:81","type":""},{"name":"value2_1","nativeSrc":"11277:8:81","nodeType":"YulTypedName","src":"11277:8:81","type":""}]},{"nativeSrc":"11356:18:81","nodeType":"YulAssignment","src":"11356:18:81","value":{"name":"value1_1","nativeSrc":"11366:8:81","nodeType":"YulIdentifier","src":"11366:8:81"},"variableNames":[{"name":"value1","nativeSrc":"11356:6:81","nodeType":"YulIdentifier","src":"11356:6:81"}]},{"nativeSrc":"11383:18:81","nodeType":"YulAssignment","src":"11383:18:81","value":{"name":"value2_1","nativeSrc":"11393:8:81","nodeType":"YulIdentifier","src":"11393:8:81"},"variableNames":[{"name":"value2","nativeSrc":"11383:6:81","nodeType":"YulIdentifier","src":"11383:6:81"}]},{"nativeSrc":"11410:47:81","nodeType":"YulVariableDeclaration","src":"11410:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11442:9:81","nodeType":"YulIdentifier","src":"11442:9:81"},{"kind":"number","nativeSrc":"11453:2:81","nodeType":"YulLiteral","src":"11453:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11438:3:81","nodeType":"YulIdentifier","src":"11438:3:81"},"nativeSrc":"11438:18:81","nodeType":"YulFunctionCall","src":"11438:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11425:12:81","nodeType":"YulIdentifier","src":"11425:12:81"},"nativeSrc":"11425:32:81","nodeType":"YulFunctionCall","src":"11425:32:81"},"variables":[{"name":"value_1","nativeSrc":"11414:7:81","nodeType":"YulTypedName","src":"11414:7:81","type":""}]},{"body":{"nativeSrc":"11519:16:81","nodeType":"YulBlock","src":"11519:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11528:1:81","nodeType":"YulLiteral","src":"11528:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11531:1:81","nodeType":"YulLiteral","src":"11531:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11521:6:81","nodeType":"YulIdentifier","src":"11521:6:81"},"nativeSrc":"11521:12:81","nodeType":"YulFunctionCall","src":"11521:12:81"},"nativeSrc":"11521:12:81","nodeType":"YulExpressionStatement","src":"11521:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11479:7:81","nodeType":"YulIdentifier","src":"11479:7:81"},{"arguments":[{"name":"value_1","nativeSrc":"11492:7:81","nodeType":"YulIdentifier","src":"11492:7:81"},{"kind":"number","nativeSrc":"11501:14:81","nodeType":"YulLiteral","src":"11501:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11488:3:81","nodeType":"YulIdentifier","src":"11488:3:81"},"nativeSrc":"11488:28:81","nodeType":"YulFunctionCall","src":"11488:28:81"}],"functionName":{"name":"eq","nativeSrc":"11476:2:81","nodeType":"YulIdentifier","src":"11476:2:81"},"nativeSrc":"11476:41:81","nodeType":"YulFunctionCall","src":"11476:41:81"}],"functionName":{"name":"iszero","nativeSrc":"11469:6:81","nodeType":"YulIdentifier","src":"11469:6:81"},"nativeSrc":"11469:49:81","nodeType":"YulFunctionCall","src":"11469:49:81"},"nativeSrc":"11466:69:81","nodeType":"YulIf","src":"11466:69:81"},{"nativeSrc":"11544:17:81","nodeType":"YulAssignment","src":"11544:17:81","value":{"name":"value_1","nativeSrc":"11554:7:81","nodeType":"YulIdentifier","src":"11554:7:81"},"variableNames":[{"name":"value3","nativeSrc":"11544:6:81","nodeType":"YulIdentifier","src":"11544:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48","nativeSrc":"10847:720:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10911:9:81","nodeType":"YulTypedName","src":"10911:9:81","type":""},{"name":"dataEnd","nativeSrc":"10922:7:81","nodeType":"YulTypedName","src":"10922:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10934:6:81","nodeType":"YulTypedName","src":"10934:6:81","type":""},{"name":"value1","nativeSrc":"10942:6:81","nodeType":"YulTypedName","src":"10942:6:81","type":""},{"name":"value2","nativeSrc":"10950:6:81","nodeType":"YulTypedName","src":"10950:6:81","type":""},{"name":"value3","nativeSrc":"10958:6:81","nodeType":"YulTypedName","src":"10958:6:81","type":""}],"src":"10847:720:81"},{"body":{"nativeSrc":"11699:136:81","nodeType":"YulBlock","src":"11699:136:81","statements":[{"nativeSrc":"11709:26:81","nodeType":"YulAssignment","src":"11709:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11721:9:81","nodeType":"YulIdentifier","src":"11721:9:81"},{"kind":"number","nativeSrc":"11732:2:81","nodeType":"YulLiteral","src":"11732:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11717:3:81","nodeType":"YulIdentifier","src":"11717:3:81"},"nativeSrc":"11717:18:81","nodeType":"YulFunctionCall","src":"11717:18:81"},"variableNames":[{"name":"tail","nativeSrc":"11709:4:81","nodeType":"YulIdentifier","src":"11709:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11751:9:81","nodeType":"YulIdentifier","src":"11751:9:81"},{"name":"value0","nativeSrc":"11762:6:81","nodeType":"YulIdentifier","src":"11762:6:81"}],"functionName":{"name":"mstore","nativeSrc":"11744:6:81","nodeType":"YulIdentifier","src":"11744:6:81"},"nativeSrc":"11744:25:81","nodeType":"YulFunctionCall","src":"11744:25:81"},"nativeSrc":"11744:25:81","nodeType":"YulExpressionStatement","src":"11744:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11789:9:81","nodeType":"YulIdentifier","src":"11789:9:81"},{"kind":"number","nativeSrc":"11800:2:81","nodeType":"YulLiteral","src":"11800:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11785:3:81","nodeType":"YulIdentifier","src":"11785:3:81"},"nativeSrc":"11785:18:81","nodeType":"YulFunctionCall","src":"11785:18:81"},{"arguments":[{"name":"value1","nativeSrc":"11809:6:81","nodeType":"YulIdentifier","src":"11809:6:81"},{"kind":"number","nativeSrc":"11817:10:81","nodeType":"YulLiteral","src":"11817:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11805:3:81","nodeType":"YulIdentifier","src":"11805:3:81"},"nativeSrc":"11805:23:81","nodeType":"YulFunctionCall","src":"11805:23:81"}],"functionName":{"name":"mstore","nativeSrc":"11778:6:81","nodeType":"YulIdentifier","src":"11778:6:81"},"nativeSrc":"11778:51:81","nodeType":"YulFunctionCall","src":"11778:51:81"},"nativeSrc":"11778:51:81","nodeType":"YulExpressionStatement","src":"11778:51:81"}]},"name":"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed","nativeSrc":"11572:263:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11660:9:81","nodeType":"YulTypedName","src":"11660:9:81","type":""},{"name":"value1","nativeSrc":"11671:6:81","nodeType":"YulTypedName","src":"11671:6:81","type":""},{"name":"value0","nativeSrc":"11679:6:81","nodeType":"YulTypedName","src":"11679:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11690:4:81","nodeType":"YulTypedName","src":"11690:4:81","type":""}],"src":"11572:263:81"},{"body":{"nativeSrc":"11872:95:81","nodeType":"YulBlock","src":"11872:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11889:1:81","nodeType":"YulLiteral","src":"11889:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11896:3:81","nodeType":"YulLiteral","src":"11896:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"11901:10:81","nodeType":"YulLiteral","src":"11901:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11892:3:81","nodeType":"YulIdentifier","src":"11892:3:81"},"nativeSrc":"11892:20:81","nodeType":"YulFunctionCall","src":"11892:20:81"}],"functionName":{"name":"mstore","nativeSrc":"11882:6:81","nodeType":"YulIdentifier","src":"11882:6:81"},"nativeSrc":"11882:31:81","nodeType":"YulFunctionCall","src":"11882:31:81"},"nativeSrc":"11882:31:81","nodeType":"YulExpressionStatement","src":"11882:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11929:1:81","nodeType":"YulLiteral","src":"11929:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"11932:4:81","nodeType":"YulLiteral","src":"11932:4:81","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"11922:6:81","nodeType":"YulIdentifier","src":"11922:6:81"},"nativeSrc":"11922:15:81","nodeType":"YulFunctionCall","src":"11922:15:81"},"nativeSrc":"11922:15:81","nodeType":"YulExpressionStatement","src":"11922:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11953:1:81","nodeType":"YulLiteral","src":"11953:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11956:4:81","nodeType":"YulLiteral","src":"11956:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11946:6:81","nodeType":"YulIdentifier","src":"11946:6:81"},"nativeSrc":"11946:15:81","nodeType":"YulFunctionCall","src":"11946:15:81"},"nativeSrc":"11946:15:81","nodeType":"YulExpressionStatement","src":"11946:15:81"}]},"name":"panic_error_0x32","nativeSrc":"11840:127:81","nodeType":"YulFunctionDefinition","src":"11840:127:81"},{"body":{"nativeSrc":"12041:176:81","nodeType":"YulBlock","src":"12041:176:81","statements":[{"body":{"nativeSrc":"12087:16:81","nodeType":"YulBlock","src":"12087:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12096:1:81","nodeType":"YulLiteral","src":"12096:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12099:1:81","nodeType":"YulLiteral","src":"12099:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12089:6:81","nodeType":"YulIdentifier","src":"12089:6:81"},"nativeSrc":"12089:12:81","nodeType":"YulFunctionCall","src":"12089:12:81"},"nativeSrc":"12089:12:81","nodeType":"YulExpressionStatement","src":"12089:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12062:7:81","nodeType":"YulIdentifier","src":"12062:7:81"},{"name":"headStart","nativeSrc":"12071:9:81","nodeType":"YulIdentifier","src":"12071:9:81"}],"functionName":{"name":"sub","nativeSrc":"12058:3:81","nodeType":"YulIdentifier","src":"12058:3:81"},"nativeSrc":"12058:23:81","nodeType":"YulFunctionCall","src":"12058:23:81"},{"kind":"number","nativeSrc":"12083:2:81","nodeType":"YulLiteral","src":"12083:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12054:3:81","nodeType":"YulIdentifier","src":"12054:3:81"},"nativeSrc":"12054:32:81","nodeType":"YulFunctionCall","src":"12054:32:81"},"nativeSrc":"12051:52:81","nodeType":"YulIf","src":"12051:52:81"},{"nativeSrc":"12112:36:81","nodeType":"YulVariableDeclaration","src":"12112:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12138:9:81","nodeType":"YulIdentifier","src":"12138:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"12125:12:81","nodeType":"YulIdentifier","src":"12125:12:81"},"nativeSrc":"12125:23:81","nodeType":"YulFunctionCall","src":"12125:23:81"},"variables":[{"name":"value","nativeSrc":"12116:5:81","nodeType":"YulTypedName","src":"12116:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12181:5:81","nodeType":"YulIdentifier","src":"12181:5:81"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"12157:23:81","nodeType":"YulIdentifier","src":"12157:23:81"},"nativeSrc":"12157:30:81","nodeType":"YulFunctionCall","src":"12157:30:81"},"nativeSrc":"12157:30:81","nodeType":"YulExpressionStatement","src":"12157:30:81"},{"nativeSrc":"12196:15:81","nodeType":"YulAssignment","src":"12196:15:81","value":{"name":"value","nativeSrc":"12206:5:81","nodeType":"YulIdentifier","src":"12206:5:81"},"variableNames":[{"name":"value0","nativeSrc":"12196:6:81","nodeType":"YulIdentifier","src":"12196:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"11972:245:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12007:9:81","nodeType":"YulTypedName","src":"12007:9:81","type":""},{"name":"dataEnd","nativeSrc":"12018:7:81","nodeType":"YulTypedName","src":"12018:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12030:6:81","nodeType":"YulTypedName","src":"12030:6:81","type":""}],"src":"11972:245:81"},{"body":{"nativeSrc":"12323:102:81","nodeType":"YulBlock","src":"12323:102:81","statements":[{"nativeSrc":"12333:26:81","nodeType":"YulAssignment","src":"12333:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12345:9:81","nodeType":"YulIdentifier","src":"12345:9:81"},{"kind":"number","nativeSrc":"12356:2:81","nodeType":"YulLiteral","src":"12356:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12341:3:81","nodeType":"YulIdentifier","src":"12341:3:81"},"nativeSrc":"12341:18:81","nodeType":"YulFunctionCall","src":"12341:18:81"},"variableNames":[{"name":"tail","nativeSrc":"12333:4:81","nodeType":"YulIdentifier","src":"12333:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12375:9:81","nodeType":"YulIdentifier","src":"12375:9:81"},{"arguments":[{"name":"value0","nativeSrc":"12390:6:81","nodeType":"YulIdentifier","src":"12390:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12406:3:81","nodeType":"YulLiteral","src":"12406:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"12411:1:81","nodeType":"YulLiteral","src":"12411:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12402:3:81","nodeType":"YulIdentifier","src":"12402:3:81"},"nativeSrc":"12402:11:81","nodeType":"YulFunctionCall","src":"12402:11:81"},{"kind":"number","nativeSrc":"12415:1:81","nodeType":"YulLiteral","src":"12415:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12398:3:81","nodeType":"YulIdentifier","src":"12398:3:81"},"nativeSrc":"12398:19:81","nodeType":"YulFunctionCall","src":"12398:19:81"}],"functionName":{"name":"and","nativeSrc":"12386:3:81","nodeType":"YulIdentifier","src":"12386:3:81"},"nativeSrc":"12386:32:81","nodeType":"YulFunctionCall","src":"12386:32:81"}],"functionName":{"name":"mstore","nativeSrc":"12368:6:81","nodeType":"YulIdentifier","src":"12368:6:81"},"nativeSrc":"12368:51:81","nodeType":"YulFunctionCall","src":"12368:51:81"},"nativeSrc":"12368:51:81","nodeType":"YulExpressionStatement","src":"12368:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"12222:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12292:9:81","nodeType":"YulTypedName","src":"12292:9:81","type":""},{"name":"value0","nativeSrc":"12303:6:81","nodeType":"YulTypedName","src":"12303:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12314:4:81","nodeType":"YulTypedName","src":"12314:4:81","type":""}],"src":"12222:203:81"},{"body":{"nativeSrc":"12585:241:81","nodeType":"YulBlock","src":"12585:241:81","statements":[{"nativeSrc":"12595:26:81","nodeType":"YulAssignment","src":"12595:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12607:9:81","nodeType":"YulIdentifier","src":"12607:9:81"},{"kind":"number","nativeSrc":"12618:2:81","nodeType":"YulLiteral","src":"12618:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12603:3:81","nodeType":"YulIdentifier","src":"12603:3:81"},"nativeSrc":"12603:18:81","nodeType":"YulFunctionCall","src":"12603:18:81"},"variableNames":[{"name":"tail","nativeSrc":"12595:4:81","nodeType":"YulIdentifier","src":"12595:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12637:9:81","nodeType":"YulIdentifier","src":"12637:9:81"},{"arguments":[{"name":"value0","nativeSrc":"12652:6:81","nodeType":"YulIdentifier","src":"12652:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12668:3:81","nodeType":"YulLiteral","src":"12668:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"12673:1:81","nodeType":"YulLiteral","src":"12673:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12664:3:81","nodeType":"YulIdentifier","src":"12664:3:81"},"nativeSrc":"12664:11:81","nodeType":"YulFunctionCall","src":"12664:11:81"},{"kind":"number","nativeSrc":"12677:1:81","nodeType":"YulLiteral","src":"12677:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12660:3:81","nodeType":"YulIdentifier","src":"12660:3:81"},"nativeSrc":"12660:19:81","nodeType":"YulFunctionCall","src":"12660:19:81"}],"functionName":{"name":"and","nativeSrc":"12648:3:81","nodeType":"YulIdentifier","src":"12648:3:81"},"nativeSrc":"12648:32:81","nodeType":"YulFunctionCall","src":"12648:32:81"}],"functionName":{"name":"mstore","nativeSrc":"12630:6:81","nodeType":"YulIdentifier","src":"12630:6:81"},"nativeSrc":"12630:51:81","nodeType":"YulFunctionCall","src":"12630:51:81"},"nativeSrc":"12630:51:81","nodeType":"YulExpressionStatement","src":"12630:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12701:9:81","nodeType":"YulIdentifier","src":"12701:9:81"},{"kind":"number","nativeSrc":"12712:2:81","nodeType":"YulLiteral","src":"12712:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12697:3:81","nodeType":"YulIdentifier","src":"12697:3:81"},"nativeSrc":"12697:18:81","nodeType":"YulFunctionCall","src":"12697:18:81"},{"arguments":[{"name":"value1","nativeSrc":"12721:6:81","nodeType":"YulIdentifier","src":"12721:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12737:3:81","nodeType":"YulLiteral","src":"12737:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"12742:1:81","nodeType":"YulLiteral","src":"12742:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12733:3:81","nodeType":"YulIdentifier","src":"12733:3:81"},"nativeSrc":"12733:11:81","nodeType":"YulFunctionCall","src":"12733:11:81"},{"kind":"number","nativeSrc":"12746:1:81","nodeType":"YulLiteral","src":"12746:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12729:3:81","nodeType":"YulIdentifier","src":"12729:3:81"},"nativeSrc":"12729:19:81","nodeType":"YulFunctionCall","src":"12729:19:81"}],"functionName":{"name":"and","nativeSrc":"12717:3:81","nodeType":"YulIdentifier","src":"12717:3:81"},"nativeSrc":"12717:32:81","nodeType":"YulFunctionCall","src":"12717:32:81"}],"functionName":{"name":"mstore","nativeSrc":"12690:6:81","nodeType":"YulIdentifier","src":"12690:6:81"},"nativeSrc":"12690:60:81","nodeType":"YulFunctionCall","src":"12690:60:81"},"nativeSrc":"12690:60:81","nodeType":"YulExpressionStatement","src":"12690:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12770:9:81","nodeType":"YulIdentifier","src":"12770:9:81"},{"kind":"number","nativeSrc":"12781:2:81","nodeType":"YulLiteral","src":"12781:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12766:3:81","nodeType":"YulIdentifier","src":"12766:3:81"},"nativeSrc":"12766:18:81","nodeType":"YulFunctionCall","src":"12766:18:81"},{"arguments":[{"name":"value2","nativeSrc":"12790:6:81","nodeType":"YulIdentifier","src":"12790:6:81"},{"arguments":[{"kind":"number","nativeSrc":"12802:3:81","nodeType":"YulLiteral","src":"12802:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"12807:10:81","nodeType":"YulLiteral","src":"12807:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"12798:3:81","nodeType":"YulIdentifier","src":"12798:3:81"},"nativeSrc":"12798:20:81","nodeType":"YulFunctionCall","src":"12798:20:81"}],"functionName":{"name":"and","nativeSrc":"12786:3:81","nodeType":"YulIdentifier","src":"12786:3:81"},"nativeSrc":"12786:33:81","nodeType":"YulFunctionCall","src":"12786:33:81"}],"functionName":{"name":"mstore","nativeSrc":"12759:6:81","nodeType":"YulIdentifier","src":"12759:6:81"},"nativeSrc":"12759:61:81","nodeType":"YulFunctionCall","src":"12759:61:81"},"nativeSrc":"12759:61:81","nodeType":"YulExpressionStatement","src":"12759:61:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"12430:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12538:9:81","nodeType":"YulTypedName","src":"12538:9:81","type":""},{"name":"value2","nativeSrc":"12549:6:81","nodeType":"YulTypedName","src":"12549:6:81","type":""},{"name":"value1","nativeSrc":"12557:6:81","nodeType":"YulTypedName","src":"12557:6:81","type":""},{"name":"value0","nativeSrc":"12565:6:81","nodeType":"YulTypedName","src":"12565:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12576:4:81","nodeType":"YulTypedName","src":"12576:4:81","type":""}],"src":"12430:396:81"},{"body":{"nativeSrc":"12898:200:81","nodeType":"YulBlock","src":"12898:200:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"12915:3:81","nodeType":"YulIdentifier","src":"12915:3:81"},{"name":"length","nativeSrc":"12920:6:81","nodeType":"YulIdentifier","src":"12920:6:81"}],"functionName":{"name":"mstore","nativeSrc":"12908:6:81","nodeType":"YulIdentifier","src":"12908:6:81"},"nativeSrc":"12908:19:81","nodeType":"YulFunctionCall","src":"12908:19:81"},"nativeSrc":"12908:19:81","nodeType":"YulExpressionStatement","src":"12908:19:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12953:3:81","nodeType":"YulIdentifier","src":"12953:3:81"},{"kind":"number","nativeSrc":"12958:4:81","nodeType":"YulLiteral","src":"12958:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12949:3:81","nodeType":"YulIdentifier","src":"12949:3:81"},"nativeSrc":"12949:14:81","nodeType":"YulFunctionCall","src":"12949:14:81"},{"name":"start","nativeSrc":"12965:5:81","nodeType":"YulIdentifier","src":"12965:5:81"},{"name":"length","nativeSrc":"12972:6:81","nodeType":"YulIdentifier","src":"12972:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"12936:12:81","nodeType":"YulIdentifier","src":"12936:12:81"},"nativeSrc":"12936:43:81","nodeType":"YulFunctionCall","src":"12936:43:81"},"nativeSrc":"12936:43:81","nodeType":"YulExpressionStatement","src":"12936:43:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13003:3:81","nodeType":"YulIdentifier","src":"13003:3:81"},{"name":"length","nativeSrc":"13008:6:81","nodeType":"YulIdentifier","src":"13008:6:81"}],"functionName":{"name":"add","nativeSrc":"12999:3:81","nodeType":"YulIdentifier","src":"12999:3:81"},"nativeSrc":"12999:16:81","nodeType":"YulFunctionCall","src":"12999:16:81"},{"kind":"number","nativeSrc":"13017:4:81","nodeType":"YulLiteral","src":"13017:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12995:3:81","nodeType":"YulIdentifier","src":"12995:3:81"},"nativeSrc":"12995:27:81","nodeType":"YulFunctionCall","src":"12995:27:81"},{"kind":"number","nativeSrc":"13024:1:81","nodeType":"YulLiteral","src":"13024:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12988:6:81","nodeType":"YulIdentifier","src":"12988:6:81"},"nativeSrc":"12988:38:81","nodeType":"YulFunctionCall","src":"12988:38:81"},"nativeSrc":"12988:38:81","nodeType":"YulExpressionStatement","src":"12988:38:81"},{"nativeSrc":"13035:57:81","nodeType":"YulAssignment","src":"13035:57:81","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13050:3:81","nodeType":"YulIdentifier","src":"13050:3:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"13063:6:81","nodeType":"YulIdentifier","src":"13063:6:81"},{"kind":"number","nativeSrc":"13071:2:81","nodeType":"YulLiteral","src":"13071:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"13059:3:81","nodeType":"YulIdentifier","src":"13059:3:81"},"nativeSrc":"13059:15:81","nodeType":"YulFunctionCall","src":"13059:15:81"},{"arguments":[{"kind":"number","nativeSrc":"13080:2:81","nodeType":"YulLiteral","src":"13080:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"13076:3:81","nodeType":"YulIdentifier","src":"13076:3:81"},"nativeSrc":"13076:7:81","nodeType":"YulFunctionCall","src":"13076:7:81"}],"functionName":{"name":"and","nativeSrc":"13055:3:81","nodeType":"YulIdentifier","src":"13055:3:81"},"nativeSrc":"13055:29:81","nodeType":"YulFunctionCall","src":"13055:29:81"}],"functionName":{"name":"add","nativeSrc":"13046:3:81","nodeType":"YulIdentifier","src":"13046:3:81"},"nativeSrc":"13046:39:81","nodeType":"YulFunctionCall","src":"13046:39:81"},{"kind":"number","nativeSrc":"13087:4:81","nodeType":"YulLiteral","src":"13087:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"13042:3:81","nodeType":"YulIdentifier","src":"13042:3:81"},"nativeSrc":"13042:50:81","nodeType":"YulFunctionCall","src":"13042:50:81"},"variableNames":[{"name":"end","nativeSrc":"13035:3:81","nodeType":"YulIdentifier","src":"13035:3:81"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"12831:267:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"12867:5:81","nodeType":"YulTypedName","src":"12867:5:81","type":""},{"name":"length","nativeSrc":"12874:6:81","nodeType":"YulTypedName","src":"12874:6:81","type":""},{"name":"pos","nativeSrc":"12882:3:81","nodeType":"YulTypedName","src":"12882:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12890:3:81","nodeType":"YulTypedName","src":"12890:3:81","type":""}],"src":"12831:267:81"},{"body":{"nativeSrc":"13234:116:81","nodeType":"YulBlock","src":"13234:116:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13251:9:81","nodeType":"YulIdentifier","src":"13251:9:81"},{"kind":"number","nativeSrc":"13262:2:81","nodeType":"YulLiteral","src":"13262:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13244:6:81","nodeType":"YulIdentifier","src":"13244:6:81"},"nativeSrc":"13244:21:81","nodeType":"YulFunctionCall","src":"13244:21:81"},"nativeSrc":"13244:21:81","nodeType":"YulExpressionStatement","src":"13244:21:81"},{"nativeSrc":"13274:70:81","nodeType":"YulAssignment","src":"13274:70:81","value":{"arguments":[{"name":"value0","nativeSrc":"13309:6:81","nodeType":"YulIdentifier","src":"13309:6:81"},{"name":"value1","nativeSrc":"13317:6:81","nodeType":"YulIdentifier","src":"13317:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"13329:9:81","nodeType":"YulIdentifier","src":"13329:9:81"},{"kind":"number","nativeSrc":"13340:2:81","nodeType":"YulLiteral","src":"13340:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13325:3:81","nodeType":"YulIdentifier","src":"13325:3:81"},"nativeSrc":"13325:18:81","nodeType":"YulFunctionCall","src":"13325:18:81"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13282:26:81","nodeType":"YulIdentifier","src":"13282:26:81"},"nativeSrc":"13282:62:81","nodeType":"YulFunctionCall","src":"13282:62:81"},"variableNames":[{"name":"tail","nativeSrc":"13274:4:81","nodeType":"YulIdentifier","src":"13274:4:81"}]}]},"name":"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13103:247:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13195:9:81","nodeType":"YulTypedName","src":"13195:9:81","type":""},{"name":"value1","nativeSrc":"13206:6:81","nodeType":"YulTypedName","src":"13206:6:81","type":""},{"name":"value0","nativeSrc":"13214:6:81","nodeType":"YulTypedName","src":"13214:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13225:4:81","nodeType":"YulTypedName","src":"13225:4:81","type":""}],"src":"13103:247:81"},{"body":{"nativeSrc":"13435:169:81","nodeType":"YulBlock","src":"13435:169:81","statements":[{"body":{"nativeSrc":"13481:16:81","nodeType":"YulBlock","src":"13481:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13490:1:81","nodeType":"YulLiteral","src":"13490:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"13493:1:81","nodeType":"YulLiteral","src":"13493:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13483:6:81","nodeType":"YulIdentifier","src":"13483:6:81"},"nativeSrc":"13483:12:81","nodeType":"YulFunctionCall","src":"13483:12:81"},"nativeSrc":"13483:12:81","nodeType":"YulExpressionStatement","src":"13483:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13456:7:81","nodeType":"YulIdentifier","src":"13456:7:81"},{"name":"headStart","nativeSrc":"13465:9:81","nodeType":"YulIdentifier","src":"13465:9:81"}],"functionName":{"name":"sub","nativeSrc":"13452:3:81","nodeType":"YulIdentifier","src":"13452:3:81"},"nativeSrc":"13452:23:81","nodeType":"YulFunctionCall","src":"13452:23:81"},{"kind":"number","nativeSrc":"13477:2:81","nodeType":"YulLiteral","src":"13477:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13448:3:81","nodeType":"YulIdentifier","src":"13448:3:81"},"nativeSrc":"13448:32:81","nodeType":"YulFunctionCall","src":"13448:32:81"},"nativeSrc":"13445:52:81","nodeType":"YulIf","src":"13445:52:81"},{"nativeSrc":"13506:29:81","nodeType":"YulVariableDeclaration","src":"13506:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13525:9:81","nodeType":"YulIdentifier","src":"13525:9:81"}],"functionName":{"name":"mload","nativeSrc":"13519:5:81","nodeType":"YulIdentifier","src":"13519:5:81"},"nativeSrc":"13519:16:81","nodeType":"YulFunctionCall","src":"13519:16:81"},"variables":[{"name":"value","nativeSrc":"13510:5:81","nodeType":"YulTypedName","src":"13510:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13568:5:81","nodeType":"YulIdentifier","src":"13568:5:81"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"13544:23:81","nodeType":"YulIdentifier","src":"13544:23:81"},"nativeSrc":"13544:30:81","nodeType":"YulFunctionCall","src":"13544:30:81"},"nativeSrc":"13544:30:81","nodeType":"YulExpressionStatement","src":"13544:30:81"},{"nativeSrc":"13583:15:81","nodeType":"YulAssignment","src":"13583:15:81","value":{"name":"value","nativeSrc":"13593:5:81","nodeType":"YulIdentifier","src":"13593:5:81"},"variableNames":[{"name":"value0","nativeSrc":"13583:6:81","nodeType":"YulIdentifier","src":"13583:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"13355:249:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13401:9:81","nodeType":"YulTypedName","src":"13401:9:81","type":""},{"name":"dataEnd","nativeSrc":"13412:7:81","nodeType":"YulTypedName","src":"13412:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13424:6:81","nodeType":"YulTypedName","src":"13424:6:81","type":""}],"src":"13355:249:81"},{"body":{"nativeSrc":"13794:254:81","nodeType":"YulBlock","src":"13794:254:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13811:9:81","nodeType":"YulIdentifier","src":"13811:9:81"},{"arguments":[{"name":"value0","nativeSrc":"13826:6:81","nodeType":"YulIdentifier","src":"13826:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13842:3:81","nodeType":"YulLiteral","src":"13842:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"13847:1:81","nodeType":"YulLiteral","src":"13847:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13838:3:81","nodeType":"YulIdentifier","src":"13838:3:81"},"nativeSrc":"13838:11:81","nodeType":"YulFunctionCall","src":"13838:11:81"},{"kind":"number","nativeSrc":"13851:1:81","nodeType":"YulLiteral","src":"13851:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13834:3:81","nodeType":"YulIdentifier","src":"13834:3:81"},"nativeSrc":"13834:19:81","nodeType":"YulFunctionCall","src":"13834:19:81"}],"functionName":{"name":"and","nativeSrc":"13822:3:81","nodeType":"YulIdentifier","src":"13822:3:81"},"nativeSrc":"13822:32:81","nodeType":"YulFunctionCall","src":"13822:32:81"}],"functionName":{"name":"mstore","nativeSrc":"13804:6:81","nodeType":"YulIdentifier","src":"13804:6:81"},"nativeSrc":"13804:51:81","nodeType":"YulFunctionCall","src":"13804:51:81"},"nativeSrc":"13804:51:81","nodeType":"YulExpressionStatement","src":"13804:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13875:9:81","nodeType":"YulIdentifier","src":"13875:9:81"},{"kind":"number","nativeSrc":"13886:2:81","nodeType":"YulLiteral","src":"13886:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13871:3:81","nodeType":"YulIdentifier","src":"13871:3:81"},"nativeSrc":"13871:18:81","nodeType":"YulFunctionCall","src":"13871:18:81"},{"arguments":[{"name":"value1","nativeSrc":"13895:6:81","nodeType":"YulIdentifier","src":"13895:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13911:3:81","nodeType":"YulLiteral","src":"13911:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"13916:1:81","nodeType":"YulLiteral","src":"13916:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13907:3:81","nodeType":"YulIdentifier","src":"13907:3:81"},"nativeSrc":"13907:11:81","nodeType":"YulFunctionCall","src":"13907:11:81"},{"kind":"number","nativeSrc":"13920:1:81","nodeType":"YulLiteral","src":"13920:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13903:3:81","nodeType":"YulIdentifier","src":"13903:3:81"},"nativeSrc":"13903:19:81","nodeType":"YulFunctionCall","src":"13903:19:81"}],"functionName":{"name":"and","nativeSrc":"13891:3:81","nodeType":"YulIdentifier","src":"13891:3:81"},"nativeSrc":"13891:32:81","nodeType":"YulFunctionCall","src":"13891:32:81"}],"functionName":{"name":"mstore","nativeSrc":"13864:6:81","nodeType":"YulIdentifier","src":"13864:6:81"},"nativeSrc":"13864:60:81","nodeType":"YulFunctionCall","src":"13864:60:81"},"nativeSrc":"13864:60:81","nodeType":"YulExpressionStatement","src":"13864:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13944:9:81","nodeType":"YulIdentifier","src":"13944:9:81"},{"kind":"number","nativeSrc":"13955:2:81","nodeType":"YulLiteral","src":"13955:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13940:3:81","nodeType":"YulIdentifier","src":"13940:3:81"},"nativeSrc":"13940:18:81","nodeType":"YulFunctionCall","src":"13940:18:81"},{"kind":"number","nativeSrc":"13960:2:81","nodeType":"YulLiteral","src":"13960:2:81","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"13933:6:81","nodeType":"YulIdentifier","src":"13933:6:81"},"nativeSrc":"13933:30:81","nodeType":"YulFunctionCall","src":"13933:30:81"},"nativeSrc":"13933:30:81","nodeType":"YulExpressionStatement","src":"13933:30:81"},{"nativeSrc":"13972:70:81","nodeType":"YulAssignment","src":"13972:70:81","value":{"arguments":[{"name":"value2","nativeSrc":"14007:6:81","nodeType":"YulIdentifier","src":"14007:6:81"},{"name":"value3","nativeSrc":"14015:6:81","nodeType":"YulIdentifier","src":"14015:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"14027:9:81","nodeType":"YulIdentifier","src":"14027:9:81"},{"kind":"number","nativeSrc":"14038:2:81","nodeType":"YulLiteral","src":"14038:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14023:3:81","nodeType":"YulIdentifier","src":"14023:3:81"},"nativeSrc":"14023:18:81","nodeType":"YulFunctionCall","src":"14023:18:81"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13980:26:81","nodeType":"YulIdentifier","src":"13980:26:81"},"nativeSrc":"13980:62:81","nodeType":"YulFunctionCall","src":"13980:62:81"},"variableNames":[{"name":"tail","nativeSrc":"13972:4:81","nodeType":"YulIdentifier","src":"13972:4:81"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"13609:439:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13739:9:81","nodeType":"YulTypedName","src":"13739:9:81","type":""},{"name":"value3","nativeSrc":"13750:6:81","nodeType":"YulTypedName","src":"13750:6:81","type":""},{"name":"value2","nativeSrc":"13758:6:81","nodeType":"YulTypedName","src":"13758:6:81","type":""},{"name":"value1","nativeSrc":"13766:6:81","nodeType":"YulTypedName","src":"13766:6:81","type":""},{"name":"value0","nativeSrc":"13774:6:81","nodeType":"YulTypedName","src":"13774:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13785:4:81","nodeType":"YulTypedName","src":"13785:4:81","type":""}],"src":"13609:439:81"},{"body":{"nativeSrc":"14085:95:81","nodeType":"YulBlock","src":"14085:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14102:1:81","nodeType":"YulLiteral","src":"14102:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14109:3:81","nodeType":"YulLiteral","src":"14109:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"14114:10:81","nodeType":"YulLiteral","src":"14114:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14105:3:81","nodeType":"YulIdentifier","src":"14105:3:81"},"nativeSrc":"14105:20:81","nodeType":"YulFunctionCall","src":"14105:20:81"}],"functionName":{"name":"mstore","nativeSrc":"14095:6:81","nodeType":"YulIdentifier","src":"14095:6:81"},"nativeSrc":"14095:31:81","nodeType":"YulFunctionCall","src":"14095:31:81"},"nativeSrc":"14095:31:81","nodeType":"YulExpressionStatement","src":"14095:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14142:1:81","nodeType":"YulLiteral","src":"14142:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"14145:4:81","nodeType":"YulLiteral","src":"14145:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"14135:6:81","nodeType":"YulIdentifier","src":"14135:6:81"},"nativeSrc":"14135:15:81","nodeType":"YulFunctionCall","src":"14135:15:81"},"nativeSrc":"14135:15:81","nodeType":"YulExpressionStatement","src":"14135:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14166:1:81","nodeType":"YulLiteral","src":"14166:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14169:4:81","nodeType":"YulLiteral","src":"14169:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14159:6:81","nodeType":"YulIdentifier","src":"14159:6:81"},"nativeSrc":"14159:15:81","nodeType":"YulFunctionCall","src":"14159:15:81"},"nativeSrc":"14159:15:81","nodeType":"YulExpressionStatement","src":"14159:15:81"}]},"name":"panic_error_0x11","nativeSrc":"14053:127:81","nodeType":"YulFunctionDefinition","src":"14053:127:81"},{"body":{"nativeSrc":"14234:79:81","nodeType":"YulBlock","src":"14234:79:81","statements":[{"nativeSrc":"14244:17:81","nodeType":"YulAssignment","src":"14244:17:81","value":{"arguments":[{"name":"x","nativeSrc":"14256:1:81","nodeType":"YulIdentifier","src":"14256:1:81"},{"name":"y","nativeSrc":"14259:1:81","nodeType":"YulIdentifier","src":"14259:1:81"}],"functionName":{"name":"sub","nativeSrc":"14252:3:81","nodeType":"YulIdentifier","src":"14252:3:81"},"nativeSrc":"14252:9:81","nodeType":"YulFunctionCall","src":"14252:9:81"},"variableNames":[{"name":"diff","nativeSrc":"14244:4:81","nodeType":"YulIdentifier","src":"14244:4:81"}]},{"body":{"nativeSrc":"14285:22:81","nodeType":"YulBlock","src":"14285:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14287:16:81","nodeType":"YulIdentifier","src":"14287:16:81"},"nativeSrc":"14287:18:81","nodeType":"YulFunctionCall","src":"14287:18:81"},"nativeSrc":"14287:18:81","nodeType":"YulExpressionStatement","src":"14287:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"14276:4:81","nodeType":"YulIdentifier","src":"14276:4:81"},{"name":"x","nativeSrc":"14282:1:81","nodeType":"YulIdentifier","src":"14282:1:81"}],"functionName":{"name":"gt","nativeSrc":"14273:2:81","nodeType":"YulIdentifier","src":"14273:2:81"},"nativeSrc":"14273:11:81","nodeType":"YulFunctionCall","src":"14273:11:81"},"nativeSrc":"14270:37:81","nodeType":"YulIf","src":"14270:37:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"14185:128:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14216:1:81","nodeType":"YulTypedName","src":"14216:1:81","type":""},{"name":"y","nativeSrc":"14219:1:81","nodeType":"YulTypedName","src":"14219:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"14225:4:81","nodeType":"YulTypedName","src":"14225:4:81","type":""}],"src":"14185:128:81"},{"body":{"nativeSrc":"14448:201:81","nodeType":"YulBlock","src":"14448:201:81","statements":[{"body":{"nativeSrc":"14486:16:81","nodeType":"YulBlock","src":"14486:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14495:1:81","nodeType":"YulLiteral","src":"14495:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14498:1:81","nodeType":"YulLiteral","src":"14498:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14488:6:81","nodeType":"YulIdentifier","src":"14488:6:81"},"nativeSrc":"14488:12:81","nodeType":"YulFunctionCall","src":"14488:12:81"},"nativeSrc":"14488:12:81","nodeType":"YulExpressionStatement","src":"14488:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"14464:10:81","nodeType":"YulIdentifier","src":"14464:10:81"},{"name":"endIndex","nativeSrc":"14476:8:81","nodeType":"YulIdentifier","src":"14476:8:81"}],"functionName":{"name":"gt","nativeSrc":"14461:2:81","nodeType":"YulIdentifier","src":"14461:2:81"},"nativeSrc":"14461:24:81","nodeType":"YulFunctionCall","src":"14461:24:81"},"nativeSrc":"14458:44:81","nodeType":"YulIf","src":"14458:44:81"},{"body":{"nativeSrc":"14535:16:81","nodeType":"YulBlock","src":"14535:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14544:1:81","nodeType":"YulLiteral","src":"14544:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14547:1:81","nodeType":"YulLiteral","src":"14547:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14537:6:81","nodeType":"YulIdentifier","src":"14537:6:81"},"nativeSrc":"14537:12:81","nodeType":"YulFunctionCall","src":"14537:12:81"},"nativeSrc":"14537:12:81","nodeType":"YulExpressionStatement","src":"14537:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"14517:8:81","nodeType":"YulIdentifier","src":"14517:8:81"},{"name":"length","nativeSrc":"14527:6:81","nodeType":"YulIdentifier","src":"14527:6:81"}],"functionName":{"name":"gt","nativeSrc":"14514:2:81","nodeType":"YulIdentifier","src":"14514:2:81"},"nativeSrc":"14514:20:81","nodeType":"YulFunctionCall","src":"14514:20:81"},"nativeSrc":"14511:40:81","nodeType":"YulIf","src":"14511:40:81"},{"nativeSrc":"14560:36:81","nodeType":"YulAssignment","src":"14560:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"14577:6:81","nodeType":"YulIdentifier","src":"14577:6:81"},{"name":"startIndex","nativeSrc":"14585:10:81","nodeType":"YulIdentifier","src":"14585:10:81"}],"functionName":{"name":"add","nativeSrc":"14573:3:81","nodeType":"YulIdentifier","src":"14573:3:81"},"nativeSrc":"14573:23:81","nodeType":"YulFunctionCall","src":"14573:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"14560:9:81","nodeType":"YulIdentifier","src":"14560:9:81"}]},{"nativeSrc":"14605:38:81","nodeType":"YulAssignment","src":"14605:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"14622:8:81","nodeType":"YulIdentifier","src":"14622:8:81"},{"name":"startIndex","nativeSrc":"14632:10:81","nodeType":"YulIdentifier","src":"14632:10:81"}],"functionName":{"name":"sub","nativeSrc":"14618:3:81","nodeType":"YulIdentifier","src":"14618:3:81"},"nativeSrc":"14618:25:81","nodeType":"YulFunctionCall","src":"14618:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"14605:9:81","nodeType":"YulIdentifier","src":"14605:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"14318:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"14382:6:81","nodeType":"YulTypedName","src":"14382:6:81","type":""},{"name":"length","nativeSrc":"14390:6:81","nodeType":"YulTypedName","src":"14390:6:81","type":""},{"name":"startIndex","nativeSrc":"14398:10:81","nodeType":"YulTypedName","src":"14398:10:81","type":""},{"name":"endIndex","nativeSrc":"14410:8:81","nodeType":"YulTypedName","src":"14410:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"14423:9:81","nodeType":"YulTypedName","src":"14423:9:81","type":""},{"name":"lengthOut","nativeSrc":"14434:9:81","nodeType":"YulTypedName","src":"14434:9:81","type":""}],"src":"14318:331:81"},{"body":{"nativeSrc":"14686:95:81","nodeType":"YulBlock","src":"14686:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14703:1:81","nodeType":"YulLiteral","src":"14703:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14710:3:81","nodeType":"YulLiteral","src":"14710:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"14715:10:81","nodeType":"YulLiteral","src":"14715:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14706:3:81","nodeType":"YulIdentifier","src":"14706:3:81"},"nativeSrc":"14706:20:81","nodeType":"YulFunctionCall","src":"14706:20:81"}],"functionName":{"name":"mstore","nativeSrc":"14696:6:81","nodeType":"YulIdentifier","src":"14696:6:81"},"nativeSrc":"14696:31:81","nodeType":"YulFunctionCall","src":"14696:31:81"},"nativeSrc":"14696:31:81","nodeType":"YulExpressionStatement","src":"14696:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14743:1:81","nodeType":"YulLiteral","src":"14743:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"14746:4:81","nodeType":"YulLiteral","src":"14746:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"14736:6:81","nodeType":"YulIdentifier","src":"14736:6:81"},"nativeSrc":"14736:15:81","nodeType":"YulFunctionCall","src":"14736:15:81"},"nativeSrc":"14736:15:81","nodeType":"YulExpressionStatement","src":"14736:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14767:1:81","nodeType":"YulLiteral","src":"14767:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14770:4:81","nodeType":"YulLiteral","src":"14770:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14760:6:81","nodeType":"YulIdentifier","src":"14760:6:81"},"nativeSrc":"14760:15:81","nodeType":"YulFunctionCall","src":"14760:15:81"},"nativeSrc":"14760:15:81","nodeType":"YulExpressionStatement","src":"14760:15:81"}]},"name":"panic_error_0x41","nativeSrc":"14654:127:81","nodeType":"YulFunctionDefinition","src":"14654:127:81"},{"body":{"nativeSrc":"14880:427:81","nodeType":"YulBlock","src":"14880:427:81","statements":[{"nativeSrc":"14890:51:81","nodeType":"YulVariableDeclaration","src":"14890:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"14929:11:81","nodeType":"YulIdentifier","src":"14929:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"14916:12:81","nodeType":"YulIdentifier","src":"14916:12:81"},"nativeSrc":"14916:25:81","nodeType":"YulFunctionCall","src":"14916:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"14894:18:81","nodeType":"YulTypedName","src":"14894:18:81","type":""}]},{"body":{"nativeSrc":"15030:16:81","nodeType":"YulBlock","src":"15030:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15039:1:81","nodeType":"YulLiteral","src":"15039:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15042:1:81","nodeType":"YulLiteral","src":"15042:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15032:6:81","nodeType":"YulIdentifier","src":"15032:6:81"},"nativeSrc":"15032:12:81","nodeType":"YulFunctionCall","src":"15032:12:81"},"nativeSrc":"15032:12:81","nodeType":"YulExpressionStatement","src":"15032:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"14964:18:81","nodeType":"YulIdentifier","src":"14964:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"14992:12:81","nodeType":"YulIdentifier","src":"14992:12:81"},"nativeSrc":"14992:14:81","nodeType":"YulFunctionCall","src":"14992:14:81"},{"name":"base_ref","nativeSrc":"15008:8:81","nodeType":"YulIdentifier","src":"15008:8:81"}],"functionName":{"name":"sub","nativeSrc":"14988:3:81","nodeType":"YulIdentifier","src":"14988:3:81"},"nativeSrc":"14988:29:81","nodeType":"YulFunctionCall","src":"14988:29:81"},{"arguments":[{"kind":"number","nativeSrc":"15023:2:81","nodeType":"YulLiteral","src":"15023:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"15019:3:81","nodeType":"YulIdentifier","src":"15019:3:81"},"nativeSrc":"15019:7:81","nodeType":"YulFunctionCall","src":"15019:7:81"}],"functionName":{"name":"add","nativeSrc":"14984:3:81","nodeType":"YulIdentifier","src":"14984:3:81"},"nativeSrc":"14984:43:81","nodeType":"YulFunctionCall","src":"14984:43:81"}],"functionName":{"name":"slt","nativeSrc":"14960:3:81","nodeType":"YulIdentifier","src":"14960:3:81"},"nativeSrc":"14960:68:81","nodeType":"YulFunctionCall","src":"14960:68:81"}],"functionName":{"name":"iszero","nativeSrc":"14953:6:81","nodeType":"YulIdentifier","src":"14953:6:81"},"nativeSrc":"14953:76:81","nodeType":"YulFunctionCall","src":"14953:76:81"},"nativeSrc":"14950:96:81","nodeType":"YulIf","src":"14950:96:81"},{"nativeSrc":"15055:47:81","nodeType":"YulVariableDeclaration","src":"15055:47:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"15073:8:81","nodeType":"YulIdentifier","src":"15073:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"15083:18:81","nodeType":"YulIdentifier","src":"15083:18:81"}],"functionName":{"name":"add","nativeSrc":"15069:3:81","nodeType":"YulIdentifier","src":"15069:3:81"},"nativeSrc":"15069:33:81","nodeType":"YulFunctionCall","src":"15069:33:81"},"variables":[{"name":"addr_1","nativeSrc":"15059:6:81","nodeType":"YulTypedName","src":"15059:6:81","type":""}]},{"nativeSrc":"15111:30:81","nodeType":"YulAssignment","src":"15111:30:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"15134:6:81","nodeType":"YulIdentifier","src":"15134:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"15121:12:81","nodeType":"YulIdentifier","src":"15121:12:81"},"nativeSrc":"15121:20:81","nodeType":"YulFunctionCall","src":"15121:20:81"},"variableNames":[{"name":"length","nativeSrc":"15111:6:81","nodeType":"YulIdentifier","src":"15111:6:81"}]},{"body":{"nativeSrc":"15184:16:81","nodeType":"YulBlock","src":"15184:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15193:1:81","nodeType":"YulLiteral","src":"15193:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15196:1:81","nodeType":"YulLiteral","src":"15196:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15186:6:81","nodeType":"YulIdentifier","src":"15186:6:81"},"nativeSrc":"15186:12:81","nodeType":"YulFunctionCall","src":"15186:12:81"},"nativeSrc":"15186:12:81","nodeType":"YulExpressionStatement","src":"15186:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"15156:6:81","nodeType":"YulIdentifier","src":"15156:6:81"},{"kind":"number","nativeSrc":"15164:18:81","nodeType":"YulLiteral","src":"15164:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15153:2:81","nodeType":"YulIdentifier","src":"15153:2:81"},"nativeSrc":"15153:30:81","nodeType":"YulFunctionCall","src":"15153:30:81"},"nativeSrc":"15150:50:81","nodeType":"YulIf","src":"15150:50:81"},{"nativeSrc":"15209:25:81","nodeType":"YulAssignment","src":"15209:25:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"15221:6:81","nodeType":"YulIdentifier","src":"15221:6:81"},{"kind":"number","nativeSrc":"15229:4:81","nodeType":"YulLiteral","src":"15229:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15217:3:81","nodeType":"YulIdentifier","src":"15217:3:81"},"nativeSrc":"15217:17:81","nodeType":"YulFunctionCall","src":"15217:17:81"},"variableNames":[{"name":"addr","nativeSrc":"15209:4:81","nodeType":"YulIdentifier","src":"15209:4:81"}]},{"body":{"nativeSrc":"15285:16:81","nodeType":"YulBlock","src":"15285:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15294:1:81","nodeType":"YulLiteral","src":"15294:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15297:1:81","nodeType":"YulLiteral","src":"15297:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15287:6:81","nodeType":"YulIdentifier","src":"15287:6:81"},"nativeSrc":"15287:12:81","nodeType":"YulFunctionCall","src":"15287:12:81"},"nativeSrc":"15287:12:81","nodeType":"YulExpressionStatement","src":"15287:12:81"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"15250:4:81","nodeType":"YulIdentifier","src":"15250:4:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"15260:12:81","nodeType":"YulIdentifier","src":"15260:12:81"},"nativeSrc":"15260:14:81","nodeType":"YulFunctionCall","src":"15260:14:81"},{"name":"length","nativeSrc":"15276:6:81","nodeType":"YulIdentifier","src":"15276:6:81"}],"functionName":{"name":"sub","nativeSrc":"15256:3:81","nodeType":"YulIdentifier","src":"15256:3:81"},"nativeSrc":"15256:27:81","nodeType":"YulFunctionCall","src":"15256:27:81"}],"functionName":{"name":"sgt","nativeSrc":"15246:3:81","nodeType":"YulIdentifier","src":"15246:3:81"},"nativeSrc":"15246:38:81","nodeType":"YulFunctionCall","src":"15246:38:81"},"nativeSrc":"15243:58:81","nodeType":"YulIf","src":"15243:58:81"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"14786:521:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"14837:8:81","nodeType":"YulTypedName","src":"14837:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"14847:11:81","nodeType":"YulTypedName","src":"14847:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"14863:4:81","nodeType":"YulTypedName","src":"14863:4:81","type":""},{"name":"length","nativeSrc":"14869:6:81","nodeType":"YulTypedName","src":"14869:6:81","type":""}],"src":"14786:521:81"},{"body":{"nativeSrc":"15361:162:81","nodeType":"YulBlock","src":"15361:162:81","statements":[{"nativeSrc":"15371:26:81","nodeType":"YulVariableDeclaration","src":"15371:26:81","value":{"arguments":[{"name":"value","nativeSrc":"15391:5:81","nodeType":"YulIdentifier","src":"15391:5:81"}],"functionName":{"name":"mload","nativeSrc":"15385:5:81","nodeType":"YulIdentifier","src":"15385:5:81"},"nativeSrc":"15385:12:81","nodeType":"YulFunctionCall","src":"15385:12:81"},"variables":[{"name":"length","nativeSrc":"15375:6:81","nodeType":"YulTypedName","src":"15375:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"15412:3:81","nodeType":"YulIdentifier","src":"15412:3:81"},{"arguments":[{"name":"value","nativeSrc":"15421:5:81","nodeType":"YulIdentifier","src":"15421:5:81"},{"kind":"number","nativeSrc":"15428:4:81","nodeType":"YulLiteral","src":"15428:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15417:3:81","nodeType":"YulIdentifier","src":"15417:3:81"},"nativeSrc":"15417:16:81","nodeType":"YulFunctionCall","src":"15417:16:81"},{"name":"length","nativeSrc":"15435:6:81","nodeType":"YulIdentifier","src":"15435:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"15406:5:81","nodeType":"YulIdentifier","src":"15406:5:81"},"nativeSrc":"15406:36:81","nodeType":"YulFunctionCall","src":"15406:36:81"},"nativeSrc":"15406:36:81","nodeType":"YulExpressionStatement","src":"15406:36:81"},{"nativeSrc":"15451:26:81","nodeType":"YulVariableDeclaration","src":"15451:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"15465:3:81","nodeType":"YulIdentifier","src":"15465:3:81"},{"name":"length","nativeSrc":"15470:6:81","nodeType":"YulIdentifier","src":"15470:6:81"}],"functionName":{"name":"add","nativeSrc":"15461:3:81","nodeType":"YulIdentifier","src":"15461:3:81"},"nativeSrc":"15461:16:81","nodeType":"YulFunctionCall","src":"15461:16:81"},"variables":[{"name":"_1","nativeSrc":"15455:2:81","nodeType":"YulTypedName","src":"15455:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15493:2:81","nodeType":"YulIdentifier","src":"15493:2:81"},{"kind":"number","nativeSrc":"15497:1:81","nodeType":"YulLiteral","src":"15497:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15486:6:81","nodeType":"YulIdentifier","src":"15486:6:81"},"nativeSrc":"15486:13:81","nodeType":"YulFunctionCall","src":"15486:13:81"},"nativeSrc":"15486:13:81","nodeType":"YulExpressionStatement","src":"15486:13:81"},{"nativeSrc":"15508:9:81","nodeType":"YulAssignment","src":"15508:9:81","value":{"name":"_1","nativeSrc":"15515:2:81","nodeType":"YulIdentifier","src":"15515:2:81"},"variableNames":[{"name":"end","nativeSrc":"15508:3:81","nodeType":"YulIdentifier","src":"15508:3:81"}]}]},"name":"abi_encode_bytes","nativeSrc":"15312:211:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"15338:5:81","nodeType":"YulTypedName","src":"15338:5:81","type":""},{"name":"pos","nativeSrc":"15345:3:81","nodeType":"YulTypedName","src":"15345:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15353:3:81","nodeType":"YulTypedName","src":"15353:3:81","type":""}],"src":"15312:211:81"},{"body":{"nativeSrc":"15721:150:81","nodeType":"YulBlock","src":"15721:150:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"15744:3:81","nodeType":"YulIdentifier","src":"15744:3:81"},{"name":"value0","nativeSrc":"15749:6:81","nodeType":"YulIdentifier","src":"15749:6:81"},{"name":"value1","nativeSrc":"15757:6:81","nodeType":"YulIdentifier","src":"15757:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"15731:12:81","nodeType":"YulIdentifier","src":"15731:12:81"},"nativeSrc":"15731:33:81","nodeType":"YulFunctionCall","src":"15731:33:81"},"nativeSrc":"15731:33:81","nodeType":"YulExpressionStatement","src":"15731:33:81"},{"nativeSrc":"15773:26:81","nodeType":"YulVariableDeclaration","src":"15773:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"15787:3:81","nodeType":"YulIdentifier","src":"15787:3:81"},{"name":"value1","nativeSrc":"15792:6:81","nodeType":"YulIdentifier","src":"15792:6:81"}],"functionName":{"name":"add","nativeSrc":"15783:3:81","nodeType":"YulIdentifier","src":"15783:3:81"},"nativeSrc":"15783:16:81","nodeType":"YulFunctionCall","src":"15783:16:81"},"variables":[{"name":"_1","nativeSrc":"15777:2:81","nodeType":"YulTypedName","src":"15777:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15815:2:81","nodeType":"YulIdentifier","src":"15815:2:81"},{"kind":"number","nativeSrc":"15819:1:81","nodeType":"YulLiteral","src":"15819:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15808:6:81","nodeType":"YulIdentifier","src":"15808:6:81"},"nativeSrc":"15808:13:81","nodeType":"YulFunctionCall","src":"15808:13:81"},"nativeSrc":"15808:13:81","nodeType":"YulExpressionStatement","src":"15808:13:81"},{"nativeSrc":"15830:35:81","nodeType":"YulAssignment","src":"15830:35:81","value":{"arguments":[{"name":"value2","nativeSrc":"15854:6:81","nodeType":"YulIdentifier","src":"15854:6:81"},{"name":"_1","nativeSrc":"15862:2:81","nodeType":"YulIdentifier","src":"15862:2:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"15837:16:81","nodeType":"YulIdentifier","src":"15837:16:81"},"nativeSrc":"15837:28:81","nodeType":"YulFunctionCall","src":"15837:28:81"},"variableNames":[{"name":"end","nativeSrc":"15830:3:81","nodeType":"YulIdentifier","src":"15830:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"15528:343:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15681:3:81","nodeType":"YulTypedName","src":"15681:3:81","type":""},{"name":"value2","nativeSrc":"15686:6:81","nodeType":"YulTypedName","src":"15686:6:81","type":""},{"name":"value1","nativeSrc":"15694:6:81","nodeType":"YulTypedName","src":"15694:6:81","type":""},{"name":"value0","nativeSrc":"15702:6:81","nodeType":"YulTypedName","src":"15702:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15713:3:81","nodeType":"YulTypedName","src":"15713:3:81","type":""}],"src":"15528:343:81"},{"body":{"nativeSrc":"16059:311:81","nodeType":"YulBlock","src":"16059:311:81","statements":[{"nativeSrc":"16069:27:81","nodeType":"YulAssignment","src":"16069:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16081:9:81","nodeType":"YulIdentifier","src":"16081:9:81"},{"kind":"number","nativeSrc":"16092:3:81","nodeType":"YulLiteral","src":"16092:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16077:3:81","nodeType":"YulIdentifier","src":"16077:3:81"},"nativeSrc":"16077:19:81","nodeType":"YulFunctionCall","src":"16077:19:81"},"variableNames":[{"name":"tail","nativeSrc":"16069:4:81","nodeType":"YulIdentifier","src":"16069:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16112:9:81","nodeType":"YulIdentifier","src":"16112:9:81"},{"arguments":[{"name":"value0","nativeSrc":"16127:6:81","nodeType":"YulIdentifier","src":"16127:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16143:3:81","nodeType":"YulLiteral","src":"16143:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16148:1:81","nodeType":"YulLiteral","src":"16148:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16139:3:81","nodeType":"YulIdentifier","src":"16139:3:81"},"nativeSrc":"16139:11:81","nodeType":"YulFunctionCall","src":"16139:11:81"},{"kind":"number","nativeSrc":"16152:1:81","nodeType":"YulLiteral","src":"16152:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16135:3:81","nodeType":"YulIdentifier","src":"16135:3:81"},"nativeSrc":"16135:19:81","nodeType":"YulFunctionCall","src":"16135:19:81"}],"functionName":{"name":"and","nativeSrc":"16123:3:81","nodeType":"YulIdentifier","src":"16123:3:81"},"nativeSrc":"16123:32:81","nodeType":"YulFunctionCall","src":"16123:32:81"}],"functionName":{"name":"mstore","nativeSrc":"16105:6:81","nodeType":"YulIdentifier","src":"16105:6:81"},"nativeSrc":"16105:51:81","nodeType":"YulFunctionCall","src":"16105:51:81"},"nativeSrc":"16105:51:81","nodeType":"YulExpressionStatement","src":"16105:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16176:9:81","nodeType":"YulIdentifier","src":"16176:9:81"},{"kind":"number","nativeSrc":"16187:2:81","nodeType":"YulLiteral","src":"16187:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16172:3:81","nodeType":"YulIdentifier","src":"16172:3:81"},"nativeSrc":"16172:18:81","nodeType":"YulFunctionCall","src":"16172:18:81"},{"arguments":[{"name":"value1","nativeSrc":"16196:6:81","nodeType":"YulIdentifier","src":"16196:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16212:3:81","nodeType":"YulLiteral","src":"16212:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16217:1:81","nodeType":"YulLiteral","src":"16217:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16208:3:81","nodeType":"YulIdentifier","src":"16208:3:81"},"nativeSrc":"16208:11:81","nodeType":"YulFunctionCall","src":"16208:11:81"},{"kind":"number","nativeSrc":"16221:1:81","nodeType":"YulLiteral","src":"16221:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16204:3:81","nodeType":"YulIdentifier","src":"16204:3:81"},"nativeSrc":"16204:19:81","nodeType":"YulFunctionCall","src":"16204:19:81"}],"functionName":{"name":"and","nativeSrc":"16192:3:81","nodeType":"YulIdentifier","src":"16192:3:81"},"nativeSrc":"16192:32:81","nodeType":"YulFunctionCall","src":"16192:32:81"}],"functionName":{"name":"mstore","nativeSrc":"16165:6:81","nodeType":"YulIdentifier","src":"16165:6:81"},"nativeSrc":"16165:60:81","nodeType":"YulFunctionCall","src":"16165:60:81"},"nativeSrc":"16165:60:81","nodeType":"YulExpressionStatement","src":"16165:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16245:9:81","nodeType":"YulIdentifier","src":"16245:9:81"},{"kind":"number","nativeSrc":"16256:2:81","nodeType":"YulLiteral","src":"16256:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16241:3:81","nodeType":"YulIdentifier","src":"16241:3:81"},"nativeSrc":"16241:18:81","nodeType":"YulFunctionCall","src":"16241:18:81"},{"arguments":[{"name":"value2","nativeSrc":"16265:6:81","nodeType":"YulIdentifier","src":"16265:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16281:3:81","nodeType":"YulLiteral","src":"16281:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16286:1:81","nodeType":"YulLiteral","src":"16286:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16277:3:81","nodeType":"YulIdentifier","src":"16277:3:81"},"nativeSrc":"16277:11:81","nodeType":"YulFunctionCall","src":"16277:11:81"},{"kind":"number","nativeSrc":"16290:1:81","nodeType":"YulLiteral","src":"16290:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16273:3:81","nodeType":"YulIdentifier","src":"16273:3:81"},"nativeSrc":"16273:19:81","nodeType":"YulFunctionCall","src":"16273:19:81"}],"functionName":{"name":"and","nativeSrc":"16261:3:81","nodeType":"YulIdentifier","src":"16261:3:81"},"nativeSrc":"16261:32:81","nodeType":"YulFunctionCall","src":"16261:32:81"}],"functionName":{"name":"mstore","nativeSrc":"16234:6:81","nodeType":"YulIdentifier","src":"16234:6:81"},"nativeSrc":"16234:60:81","nodeType":"YulFunctionCall","src":"16234:60:81"},"nativeSrc":"16234:60:81","nodeType":"YulExpressionStatement","src":"16234:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16314:9:81","nodeType":"YulIdentifier","src":"16314:9:81"},{"kind":"number","nativeSrc":"16325:2:81","nodeType":"YulLiteral","src":"16325:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16310:3:81","nodeType":"YulIdentifier","src":"16310:3:81"},"nativeSrc":"16310:18:81","nodeType":"YulFunctionCall","src":"16310:18:81"},{"arguments":[{"name":"value3","nativeSrc":"16334:6:81","nodeType":"YulIdentifier","src":"16334:6:81"},{"arguments":[{"kind":"number","nativeSrc":"16346:3:81","nodeType":"YulLiteral","src":"16346:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"16351:10:81","nodeType":"YulLiteral","src":"16351:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"16342:3:81","nodeType":"YulIdentifier","src":"16342:3:81"},"nativeSrc":"16342:20:81","nodeType":"YulFunctionCall","src":"16342:20:81"}],"functionName":{"name":"and","nativeSrc":"16330:3:81","nodeType":"YulIdentifier","src":"16330:3:81"},"nativeSrc":"16330:33:81","nodeType":"YulFunctionCall","src":"16330:33:81"}],"functionName":{"name":"mstore","nativeSrc":"16303:6:81","nodeType":"YulIdentifier","src":"16303:6:81"},"nativeSrc":"16303:61:81","nodeType":"YulFunctionCall","src":"16303:61:81"},"nativeSrc":"16303:61:81","nodeType":"YulExpressionStatement","src":"16303:61:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"15876:494:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16004:9:81","nodeType":"YulTypedName","src":"16004:9:81","type":""},{"name":"value3","nativeSrc":"16015:6:81","nodeType":"YulTypedName","src":"16015:6:81","type":""},{"name":"value2","nativeSrc":"16023:6:81","nodeType":"YulTypedName","src":"16023:6:81","type":""},{"name":"value1","nativeSrc":"16031:6:81","nodeType":"YulTypedName","src":"16031:6:81","type":""},{"name":"value0","nativeSrc":"16039:6:81","nodeType":"YulTypedName","src":"16039:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16050:4:81","nodeType":"YulTypedName","src":"16050:4:81","type":""}],"src":"15876:494:81"},{"body":{"nativeSrc":"16422:132:81","nodeType":"YulBlock","src":"16422:132:81","statements":[{"nativeSrc":"16432:58:81","nodeType":"YulAssignment","src":"16432:58:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16447:1:81","nodeType":"YulIdentifier","src":"16447:1:81"},{"kind":"number","nativeSrc":"16450:14:81","nodeType":"YulLiteral","src":"16450:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16443:3:81","nodeType":"YulIdentifier","src":"16443:3:81"},"nativeSrc":"16443:22:81","nodeType":"YulFunctionCall","src":"16443:22:81"},{"arguments":[{"name":"y","nativeSrc":"16471:1:81","nodeType":"YulIdentifier","src":"16471:1:81"},{"kind":"number","nativeSrc":"16474:14:81","nodeType":"YulLiteral","src":"16474:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16467:3:81","nodeType":"YulIdentifier","src":"16467:3:81"},"nativeSrc":"16467:22:81","nodeType":"YulFunctionCall","src":"16467:22:81"}],"functionName":{"name":"add","nativeSrc":"16439:3:81","nodeType":"YulIdentifier","src":"16439:3:81"},"nativeSrc":"16439:51:81","nodeType":"YulFunctionCall","src":"16439:51:81"},"variableNames":[{"name":"sum","nativeSrc":"16432:3:81","nodeType":"YulIdentifier","src":"16432:3:81"}]},{"body":{"nativeSrc":"16526:22:81","nodeType":"YulBlock","src":"16526:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16528:16:81","nodeType":"YulIdentifier","src":"16528:16:81"},"nativeSrc":"16528:18:81","nodeType":"YulFunctionCall","src":"16528:18:81"},"nativeSrc":"16528:18:81","nodeType":"YulExpressionStatement","src":"16528:18:81"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"16505:3:81","nodeType":"YulIdentifier","src":"16505:3:81"},{"kind":"number","nativeSrc":"16510:14:81","nodeType":"YulLiteral","src":"16510:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16502:2:81","nodeType":"YulIdentifier","src":"16502:2:81"},"nativeSrc":"16502:23:81","nodeType":"YulFunctionCall","src":"16502:23:81"},"nativeSrc":"16499:49:81","nodeType":"YulIf","src":"16499:49:81"}]},"name":"checked_add_t_uint48","nativeSrc":"16375:179:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16405:1:81","nodeType":"YulTypedName","src":"16405:1:81","type":""},{"name":"y","nativeSrc":"16408:1:81","nodeType":"YulTypedName","src":"16408:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16414:3:81","nodeType":"YulTypedName","src":"16414:3:81","type":""}],"src":"16375:179:81"},{"body":{"nativeSrc":"16770:320:81","nodeType":"YulBlock","src":"16770:320:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16787:9:81","nodeType":"YulIdentifier","src":"16787:9:81"},{"arguments":[{"name":"value0","nativeSrc":"16802:6:81","nodeType":"YulIdentifier","src":"16802:6:81"},{"kind":"number","nativeSrc":"16810:14:81","nodeType":"YulLiteral","src":"16810:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16798:3:81","nodeType":"YulIdentifier","src":"16798:3:81"},"nativeSrc":"16798:27:81","nodeType":"YulFunctionCall","src":"16798:27:81"}],"functionName":{"name":"mstore","nativeSrc":"16780:6:81","nodeType":"YulIdentifier","src":"16780:6:81"},"nativeSrc":"16780:46:81","nodeType":"YulFunctionCall","src":"16780:46:81"},"nativeSrc":"16780:46:81","nodeType":"YulExpressionStatement","src":"16780:46:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16846:9:81","nodeType":"YulIdentifier","src":"16846:9:81"},{"kind":"number","nativeSrc":"16857:2:81","nodeType":"YulLiteral","src":"16857:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16842:3:81","nodeType":"YulIdentifier","src":"16842:3:81"},"nativeSrc":"16842:18:81","nodeType":"YulFunctionCall","src":"16842:18:81"},{"arguments":[{"name":"value1","nativeSrc":"16866:6:81","nodeType":"YulIdentifier","src":"16866:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16882:3:81","nodeType":"YulLiteral","src":"16882:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16887:1:81","nodeType":"YulLiteral","src":"16887:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16878:3:81","nodeType":"YulIdentifier","src":"16878:3:81"},"nativeSrc":"16878:11:81","nodeType":"YulFunctionCall","src":"16878:11:81"},{"kind":"number","nativeSrc":"16891:1:81","nodeType":"YulLiteral","src":"16891:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16874:3:81","nodeType":"YulIdentifier","src":"16874:3:81"},"nativeSrc":"16874:19:81","nodeType":"YulFunctionCall","src":"16874:19:81"}],"functionName":{"name":"and","nativeSrc":"16862:3:81","nodeType":"YulIdentifier","src":"16862:3:81"},"nativeSrc":"16862:32:81","nodeType":"YulFunctionCall","src":"16862:32:81"}],"functionName":{"name":"mstore","nativeSrc":"16835:6:81","nodeType":"YulIdentifier","src":"16835:6:81"},"nativeSrc":"16835:60:81","nodeType":"YulFunctionCall","src":"16835:60:81"},"nativeSrc":"16835:60:81","nodeType":"YulExpressionStatement","src":"16835:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16915:9:81","nodeType":"YulIdentifier","src":"16915:9:81"},{"kind":"number","nativeSrc":"16926:2:81","nodeType":"YulLiteral","src":"16926:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16911:3:81","nodeType":"YulIdentifier","src":"16911:3:81"},"nativeSrc":"16911:18:81","nodeType":"YulFunctionCall","src":"16911:18:81"},{"arguments":[{"name":"value2","nativeSrc":"16935:6:81","nodeType":"YulIdentifier","src":"16935:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16951:3:81","nodeType":"YulLiteral","src":"16951:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16956:1:81","nodeType":"YulLiteral","src":"16956:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16947:3:81","nodeType":"YulIdentifier","src":"16947:3:81"},"nativeSrc":"16947:11:81","nodeType":"YulFunctionCall","src":"16947:11:81"},{"kind":"number","nativeSrc":"16960:1:81","nodeType":"YulLiteral","src":"16960:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16943:3:81","nodeType":"YulIdentifier","src":"16943:3:81"},"nativeSrc":"16943:19:81","nodeType":"YulFunctionCall","src":"16943:19:81"}],"functionName":{"name":"and","nativeSrc":"16931:3:81","nodeType":"YulIdentifier","src":"16931:3:81"},"nativeSrc":"16931:32:81","nodeType":"YulFunctionCall","src":"16931:32:81"}],"functionName":{"name":"mstore","nativeSrc":"16904:6:81","nodeType":"YulIdentifier","src":"16904:6:81"},"nativeSrc":"16904:60:81","nodeType":"YulFunctionCall","src":"16904:60:81"},"nativeSrc":"16904:60:81","nodeType":"YulExpressionStatement","src":"16904:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16984:9:81","nodeType":"YulIdentifier","src":"16984:9:81"},{"kind":"number","nativeSrc":"16995:2:81","nodeType":"YulLiteral","src":"16995:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16980:3:81","nodeType":"YulIdentifier","src":"16980:3:81"},"nativeSrc":"16980:18:81","nodeType":"YulFunctionCall","src":"16980:18:81"},{"kind":"number","nativeSrc":"17000:3:81","nodeType":"YulLiteral","src":"17000:3:81","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"16973:6:81","nodeType":"YulIdentifier","src":"16973:6:81"},"nativeSrc":"16973:31:81","nodeType":"YulFunctionCall","src":"16973:31:81"},"nativeSrc":"16973:31:81","nodeType":"YulExpressionStatement","src":"16973:31:81"},{"nativeSrc":"17013:71:81","nodeType":"YulAssignment","src":"17013:71:81","value":{"arguments":[{"name":"value3","nativeSrc":"17048:6:81","nodeType":"YulIdentifier","src":"17048:6:81"},{"name":"value4","nativeSrc":"17056:6:81","nodeType":"YulIdentifier","src":"17056:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"17068:9:81","nodeType":"YulIdentifier","src":"17068:9:81"},{"kind":"number","nativeSrc":"17079:3:81","nodeType":"YulLiteral","src":"17079:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17064:3:81","nodeType":"YulIdentifier","src":"17064:3:81"},"nativeSrc":"17064:19:81","nodeType":"YulFunctionCall","src":"17064:19:81"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"17021:26:81","nodeType":"YulIdentifier","src":"17021:26:81"},"nativeSrc":"17021:63:81","nodeType":"YulFunctionCall","src":"17021:63:81"},"variableNames":[{"name":"tail","nativeSrc":"17013:4:81","nodeType":"YulIdentifier","src":"17013:4:81"}]}]},"name":"abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"16559:531:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16707:9:81","nodeType":"YulTypedName","src":"16707:9:81","type":""},{"name":"value4","nativeSrc":"16718:6:81","nodeType":"YulTypedName","src":"16718:6:81","type":""},{"name":"value3","nativeSrc":"16726:6:81","nodeType":"YulTypedName","src":"16726:6:81","type":""},{"name":"value2","nativeSrc":"16734:6:81","nodeType":"YulTypedName","src":"16734:6:81","type":""},{"name":"value1","nativeSrc":"16742:6:81","nodeType":"YulTypedName","src":"16742:6:81","type":""},{"name":"value0","nativeSrc":"16750:6:81","nodeType":"YulTypedName","src":"16750:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16761:4:81","nodeType":"YulTypedName","src":"16761:4:81","type":""}],"src":"16559:531:81"},{"body":{"nativeSrc":"17222:170:81","nodeType":"YulBlock","src":"17222:170:81","statements":[{"nativeSrc":"17232:26:81","nodeType":"YulAssignment","src":"17232:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"17244:9:81","nodeType":"YulIdentifier","src":"17244:9:81"},{"kind":"number","nativeSrc":"17255:2:81","nodeType":"YulLiteral","src":"17255:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17240:3:81","nodeType":"YulIdentifier","src":"17240:3:81"},"nativeSrc":"17240:18:81","nodeType":"YulFunctionCall","src":"17240:18:81"},"variableNames":[{"name":"tail","nativeSrc":"17232:4:81","nodeType":"YulIdentifier","src":"17232:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17274:9:81","nodeType":"YulIdentifier","src":"17274:9:81"},{"arguments":[{"name":"value0","nativeSrc":"17289:6:81","nodeType":"YulIdentifier","src":"17289:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17305:3:81","nodeType":"YulLiteral","src":"17305:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"17310:1:81","nodeType":"YulLiteral","src":"17310:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17301:3:81","nodeType":"YulIdentifier","src":"17301:3:81"},"nativeSrc":"17301:11:81","nodeType":"YulFunctionCall","src":"17301:11:81"},{"kind":"number","nativeSrc":"17314:1:81","nodeType":"YulLiteral","src":"17314:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17297:3:81","nodeType":"YulIdentifier","src":"17297:3:81"},"nativeSrc":"17297:19:81","nodeType":"YulFunctionCall","src":"17297:19:81"}],"functionName":{"name":"and","nativeSrc":"17285:3:81","nodeType":"YulIdentifier","src":"17285:3:81"},"nativeSrc":"17285:32:81","nodeType":"YulFunctionCall","src":"17285:32:81"}],"functionName":{"name":"mstore","nativeSrc":"17267:6:81","nodeType":"YulIdentifier","src":"17267:6:81"},"nativeSrc":"17267:51:81","nodeType":"YulFunctionCall","src":"17267:51:81"},"nativeSrc":"17267:51:81","nodeType":"YulExpressionStatement","src":"17267:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17338:9:81","nodeType":"YulIdentifier","src":"17338:9:81"},{"kind":"number","nativeSrc":"17349:2:81","nodeType":"YulLiteral","src":"17349:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17334:3:81","nodeType":"YulIdentifier","src":"17334:3:81"},"nativeSrc":"17334:18:81","nodeType":"YulFunctionCall","src":"17334:18:81"},{"arguments":[{"name":"value1","nativeSrc":"17358:6:81","nodeType":"YulIdentifier","src":"17358:6:81"},{"kind":"number","nativeSrc":"17366:18:81","nodeType":"YulLiteral","src":"17366:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17354:3:81","nodeType":"YulIdentifier","src":"17354:3:81"},"nativeSrc":"17354:31:81","nodeType":"YulFunctionCall","src":"17354:31:81"}],"functionName":{"name":"mstore","nativeSrc":"17327:6:81","nodeType":"YulIdentifier","src":"17327:6:81"},"nativeSrc":"17327:59:81","nodeType":"YulFunctionCall","src":"17327:59:81"},"nativeSrc":"17327:59:81","nodeType":"YulExpressionStatement","src":"17327:59:81"}]},"name":"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed","nativeSrc":"17095:297:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17183:9:81","nodeType":"YulTypedName","src":"17183:9:81","type":""},{"name":"value1","nativeSrc":"17194:6:81","nodeType":"YulTypedName","src":"17194:6:81","type":""},{"name":"value0","nativeSrc":"17202:6:81","nodeType":"YulTypedName","src":"17202:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17213:4:81","nodeType":"YulTypedName","src":"17213:4:81","type":""}],"src":"17095:297:81"},{"body":{"nativeSrc":"17496:103:81","nodeType":"YulBlock","src":"17496:103:81","statements":[{"nativeSrc":"17506:26:81","nodeType":"YulAssignment","src":"17506:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"17518:9:81","nodeType":"YulIdentifier","src":"17518:9:81"},{"kind":"number","nativeSrc":"17529:2:81","nodeType":"YulLiteral","src":"17529:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17514:3:81","nodeType":"YulIdentifier","src":"17514:3:81"},"nativeSrc":"17514:18:81","nodeType":"YulFunctionCall","src":"17514:18:81"},"variableNames":[{"name":"tail","nativeSrc":"17506:4:81","nodeType":"YulIdentifier","src":"17506:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17548:9:81","nodeType":"YulIdentifier","src":"17548:9:81"},{"arguments":[{"name":"value0","nativeSrc":"17563:6:81","nodeType":"YulIdentifier","src":"17563:6:81"},{"arguments":[{"kind":"number","nativeSrc":"17575:3:81","nodeType":"YulLiteral","src":"17575:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"17580:10:81","nodeType":"YulLiteral","src":"17580:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17571:3:81","nodeType":"YulIdentifier","src":"17571:3:81"},"nativeSrc":"17571:20:81","nodeType":"YulFunctionCall","src":"17571:20:81"}],"functionName":{"name":"and","nativeSrc":"17559:3:81","nodeType":"YulIdentifier","src":"17559:3:81"},"nativeSrc":"17559:33:81","nodeType":"YulFunctionCall","src":"17559:33:81"}],"functionName":{"name":"mstore","nativeSrc":"17541:6:81","nodeType":"YulIdentifier","src":"17541:6:81"},"nativeSrc":"17541:52:81","nodeType":"YulFunctionCall","src":"17541:52:81"},"nativeSrc":"17541:52:81","nodeType":"YulExpressionStatement","src":"17541:52:81"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"17397:202:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17465:9:81","nodeType":"YulTypedName","src":"17465:9:81","type":""},{"name":"value0","nativeSrc":"17476:6:81","nodeType":"YulTypedName","src":"17476:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17487:4:81","nodeType":"YulTypedName","src":"17487:4:81","type":""}],"src":"17397:202:81"},{"body":{"nativeSrc":"17704:238:81","nodeType":"YulBlock","src":"17704:238:81","statements":[{"nativeSrc":"17714:29:81","nodeType":"YulVariableDeclaration","src":"17714:29:81","value":{"arguments":[{"name":"array","nativeSrc":"17737:5:81","nodeType":"YulIdentifier","src":"17737:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"17724:12:81","nodeType":"YulIdentifier","src":"17724:12:81"},"nativeSrc":"17724:19:81","nodeType":"YulFunctionCall","src":"17724:19:81"},"variables":[{"name":"_1","nativeSrc":"17718:2:81","nodeType":"YulTypedName","src":"17718:2:81","type":""}]},{"nativeSrc":"17752:38:81","nodeType":"YulAssignment","src":"17752:38:81","value":{"arguments":[{"name":"_1","nativeSrc":"17765:2:81","nodeType":"YulIdentifier","src":"17765:2:81"},{"arguments":[{"kind":"number","nativeSrc":"17773:3:81","nodeType":"YulLiteral","src":"17773:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"17778:10:81","nodeType":"YulLiteral","src":"17778:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17769:3:81","nodeType":"YulIdentifier","src":"17769:3:81"},"nativeSrc":"17769:20:81","nodeType":"YulFunctionCall","src":"17769:20:81"}],"functionName":{"name":"and","nativeSrc":"17761:3:81","nodeType":"YulIdentifier","src":"17761:3:81"},"nativeSrc":"17761:29:81","nodeType":"YulFunctionCall","src":"17761:29:81"},"variableNames":[{"name":"value","nativeSrc":"17752:5:81","nodeType":"YulIdentifier","src":"17752:5:81"}]},{"body":{"nativeSrc":"17821:115:81","nodeType":"YulBlock","src":"17821:115:81","statements":[{"nativeSrc":"17835:91:81","nodeType":"YulAssignment","src":"17835:91:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"17852:2:81","nodeType":"YulIdentifier","src":"17852:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17864:1:81","nodeType":"YulLiteral","src":"17864:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"17871:1:81","nodeType":"YulLiteral","src":"17871:1:81","type":"","value":"4"},{"name":"len","nativeSrc":"17874:3:81","nodeType":"YulIdentifier","src":"17874:3:81"}],"functionName":{"name":"sub","nativeSrc":"17867:3:81","nodeType":"YulIdentifier","src":"17867:3:81"},"nativeSrc":"17867:11:81","nodeType":"YulFunctionCall","src":"17867:11:81"}],"functionName":{"name":"shl","nativeSrc":"17860:3:81","nodeType":"YulIdentifier","src":"17860:3:81"},"nativeSrc":"17860:19:81","nodeType":"YulFunctionCall","src":"17860:19:81"},{"arguments":[{"kind":"number","nativeSrc":"17885:3:81","nodeType":"YulLiteral","src":"17885:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"17890:10:81","nodeType":"YulLiteral","src":"17890:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17881:3:81","nodeType":"YulIdentifier","src":"17881:3:81"},"nativeSrc":"17881:20:81","nodeType":"YulFunctionCall","src":"17881:20:81"}],"functionName":{"name":"shl","nativeSrc":"17856:3:81","nodeType":"YulIdentifier","src":"17856:3:81"},"nativeSrc":"17856:46:81","nodeType":"YulFunctionCall","src":"17856:46:81"}],"functionName":{"name":"and","nativeSrc":"17848:3:81","nodeType":"YulIdentifier","src":"17848:3:81"},"nativeSrc":"17848:55:81","nodeType":"YulFunctionCall","src":"17848:55:81"},{"arguments":[{"kind":"number","nativeSrc":"17909:3:81","nodeType":"YulLiteral","src":"17909:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"17914:10:81","nodeType":"YulLiteral","src":"17914:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17905:3:81","nodeType":"YulIdentifier","src":"17905:3:81"},"nativeSrc":"17905:20:81","nodeType":"YulFunctionCall","src":"17905:20:81"}],"functionName":{"name":"and","nativeSrc":"17844:3:81","nodeType":"YulIdentifier","src":"17844:3:81"},"nativeSrc":"17844:82:81","nodeType":"YulFunctionCall","src":"17844:82:81"},"variableNames":[{"name":"value","nativeSrc":"17835:5:81","nodeType":"YulIdentifier","src":"17835:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"17805:3:81","nodeType":"YulIdentifier","src":"17805:3:81"},{"kind":"number","nativeSrc":"17810:1:81","nodeType":"YulLiteral","src":"17810:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"17802:2:81","nodeType":"YulIdentifier","src":"17802:2:81"},"nativeSrc":"17802:10:81","nodeType":"YulFunctionCall","src":"17802:10:81"},"nativeSrc":"17799:137:81","nodeType":"YulIf","src":"17799:137:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"17604:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"17679:5:81","nodeType":"YulTypedName","src":"17679:5:81","type":""},{"name":"len","nativeSrc":"17686:3:81","nodeType":"YulTypedName","src":"17686:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"17694:5:81","nodeType":"YulTypedName","src":"17694:5:81","type":""}],"src":"17604:338:81"},{"body":{"nativeSrc":"18074:172:81","nodeType":"YulBlock","src":"18074:172:81","statements":[{"nativeSrc":"18084:26:81","nodeType":"YulAssignment","src":"18084:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18096:9:81","nodeType":"YulIdentifier","src":"18096:9:81"},{"kind":"number","nativeSrc":"18107:2:81","nodeType":"YulLiteral","src":"18107:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18092:3:81","nodeType":"YulIdentifier","src":"18092:3:81"},"nativeSrc":"18092:18:81","nodeType":"YulFunctionCall","src":"18092:18:81"},"variableNames":[{"name":"tail","nativeSrc":"18084:4:81","nodeType":"YulIdentifier","src":"18084:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18126:9:81","nodeType":"YulIdentifier","src":"18126:9:81"},{"arguments":[{"name":"value0","nativeSrc":"18141:6:81","nodeType":"YulIdentifier","src":"18141:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18157:3:81","nodeType":"YulLiteral","src":"18157:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"18162:1:81","nodeType":"YulLiteral","src":"18162:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18153:3:81","nodeType":"YulIdentifier","src":"18153:3:81"},"nativeSrc":"18153:11:81","nodeType":"YulFunctionCall","src":"18153:11:81"},{"kind":"number","nativeSrc":"18166:1:81","nodeType":"YulLiteral","src":"18166:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18149:3:81","nodeType":"YulIdentifier","src":"18149:3:81"},"nativeSrc":"18149:19:81","nodeType":"YulFunctionCall","src":"18149:19:81"}],"functionName":{"name":"and","nativeSrc":"18137:3:81","nodeType":"YulIdentifier","src":"18137:3:81"},"nativeSrc":"18137:32:81","nodeType":"YulFunctionCall","src":"18137:32:81"}],"functionName":{"name":"mstore","nativeSrc":"18119:6:81","nodeType":"YulIdentifier","src":"18119:6:81"},"nativeSrc":"18119:51:81","nodeType":"YulFunctionCall","src":"18119:51:81"},"nativeSrc":"18119:51:81","nodeType":"YulExpressionStatement","src":"18119:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18190:9:81","nodeType":"YulIdentifier","src":"18190:9:81"},{"kind":"number","nativeSrc":"18201:2:81","nodeType":"YulLiteral","src":"18201:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18186:3:81","nodeType":"YulIdentifier","src":"18186:3:81"},"nativeSrc":"18186:18:81","nodeType":"YulFunctionCall","src":"18186:18:81"},{"arguments":[{"name":"value1","nativeSrc":"18210:6:81","nodeType":"YulIdentifier","src":"18210:6:81"},{"arguments":[{"kind":"number","nativeSrc":"18222:3:81","nodeType":"YulLiteral","src":"18222:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"18227:10:81","nodeType":"YulLiteral","src":"18227:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"18218:3:81","nodeType":"YulIdentifier","src":"18218:3:81"},"nativeSrc":"18218:20:81","nodeType":"YulFunctionCall","src":"18218:20:81"}],"functionName":{"name":"and","nativeSrc":"18206:3:81","nodeType":"YulIdentifier","src":"18206:3:81"},"nativeSrc":"18206:33:81","nodeType":"YulFunctionCall","src":"18206:33:81"}],"functionName":{"name":"mstore","nativeSrc":"18179:6:81","nodeType":"YulIdentifier","src":"18179:6:81"},"nativeSrc":"18179:61:81","nodeType":"YulFunctionCall","src":"18179:61:81"},"nativeSrc":"18179:61:81","nodeType":"YulExpressionStatement","src":"18179:61:81"}]},"name":"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed","nativeSrc":"17947:299:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18035:9:81","nodeType":"YulTypedName","src":"18035:9:81","type":""},{"name":"value1","nativeSrc":"18046:6:81","nodeType":"YulTypedName","src":"18046:6:81","type":""},{"name":"value0","nativeSrc":"18054:6:81","nodeType":"YulTypedName","src":"18054:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18065:4:81","nodeType":"YulTypedName","src":"18065:4:81","type":""}],"src":"17947:299:81"},{"body":{"nativeSrc":"18380:119:81","nodeType":"YulBlock","src":"18380:119:81","statements":[{"nativeSrc":"18390:26:81","nodeType":"YulAssignment","src":"18390:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18402:9:81","nodeType":"YulIdentifier","src":"18402:9:81"},{"kind":"number","nativeSrc":"18413:2:81","nodeType":"YulLiteral","src":"18413:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18398:3:81","nodeType":"YulIdentifier","src":"18398:3:81"},"nativeSrc":"18398:18:81","nodeType":"YulFunctionCall","src":"18398:18:81"},"variableNames":[{"name":"tail","nativeSrc":"18390:4:81","nodeType":"YulIdentifier","src":"18390:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18432:9:81","nodeType":"YulIdentifier","src":"18432:9:81"},{"name":"value0","nativeSrc":"18443:6:81","nodeType":"YulIdentifier","src":"18443:6:81"}],"functionName":{"name":"mstore","nativeSrc":"18425:6:81","nodeType":"YulIdentifier","src":"18425:6:81"},"nativeSrc":"18425:25:81","nodeType":"YulFunctionCall","src":"18425:25:81"},"nativeSrc":"18425:25:81","nodeType":"YulExpressionStatement","src":"18425:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18470:9:81","nodeType":"YulIdentifier","src":"18470:9:81"},{"kind":"number","nativeSrc":"18481:2:81","nodeType":"YulLiteral","src":"18481:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18466:3:81","nodeType":"YulIdentifier","src":"18466:3:81"},"nativeSrc":"18466:18:81","nodeType":"YulFunctionCall","src":"18466:18:81"},{"name":"value1","nativeSrc":"18486:6:81","nodeType":"YulIdentifier","src":"18486:6:81"}],"functionName":{"name":"mstore","nativeSrc":"18459:6:81","nodeType":"YulIdentifier","src":"18459:6:81"},"nativeSrc":"18459:34:81","nodeType":"YulFunctionCall","src":"18459:34:81"},"nativeSrc":"18459:34:81","nodeType":"YulExpressionStatement","src":"18459:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18251:248:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18341:9:81","nodeType":"YulTypedName","src":"18341:9:81","type":""},{"name":"value1","nativeSrc":"18352:6:81","nodeType":"YulTypedName","src":"18352:6:81","type":""},{"name":"value0","nativeSrc":"18360:6:81","nodeType":"YulTypedName","src":"18360:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18371:4:81","nodeType":"YulTypedName","src":"18371:4:81","type":""}],"src":"18251:248:81"},{"body":{"nativeSrc":"18641:52:81","nodeType":"YulBlock","src":"18641:52:81","statements":[{"nativeSrc":"18651:36:81","nodeType":"YulAssignment","src":"18651:36:81","value":{"arguments":[{"name":"value0","nativeSrc":"18675:6:81","nodeType":"YulIdentifier","src":"18675:6:81"},{"name":"pos","nativeSrc":"18683:3:81","nodeType":"YulIdentifier","src":"18683:3:81"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"18658:16:81","nodeType":"YulIdentifier","src":"18658:16:81"},"nativeSrc":"18658:29:81","nodeType":"YulFunctionCall","src":"18658:29:81"},"variableNames":[{"name":"end","nativeSrc":"18651:3:81","nodeType":"YulIdentifier","src":"18651:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"18504:189:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"18617:3:81","nodeType":"YulTypedName","src":"18617:3:81","type":""},{"name":"value0","nativeSrc":"18622:6:81","nodeType":"YulTypedName","src":"18622:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"18633:3:81","nodeType":"YulTypedName","src":"18633:3:81","type":""}],"src":"18504:189:81"},{"body":{"nativeSrc":"18845:216:81","nodeType":"YulBlock","src":"18845:216:81","statements":[{"nativeSrc":"18855:26:81","nodeType":"YulAssignment","src":"18855:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18867:9:81","nodeType":"YulIdentifier","src":"18867:9:81"},{"kind":"number","nativeSrc":"18878:2:81","nodeType":"YulLiteral","src":"18878:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18863:3:81","nodeType":"YulIdentifier","src":"18863:3:81"},"nativeSrc":"18863:18:81","nodeType":"YulFunctionCall","src":"18863:18:81"},"variableNames":[{"name":"tail","nativeSrc":"18855:4:81","nodeType":"YulIdentifier","src":"18855:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18897:9:81","nodeType":"YulIdentifier","src":"18897:9:81"},{"arguments":[{"name":"value0","nativeSrc":"18912:6:81","nodeType":"YulIdentifier","src":"18912:6:81"},{"kind":"number","nativeSrc":"18920:10:81","nodeType":"YulLiteral","src":"18920:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"18908:3:81","nodeType":"YulIdentifier","src":"18908:3:81"},"nativeSrc":"18908:23:81","nodeType":"YulFunctionCall","src":"18908:23:81"}],"functionName":{"name":"mstore","nativeSrc":"18890:6:81","nodeType":"YulIdentifier","src":"18890:6:81"},"nativeSrc":"18890:42:81","nodeType":"YulFunctionCall","src":"18890:42:81"},"nativeSrc":"18890:42:81","nodeType":"YulExpressionStatement","src":"18890:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18952:9:81","nodeType":"YulIdentifier","src":"18952:9:81"},{"kind":"number","nativeSrc":"18963:2:81","nodeType":"YulLiteral","src":"18963:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18948:3:81","nodeType":"YulIdentifier","src":"18948:3:81"},"nativeSrc":"18948:18:81","nodeType":"YulFunctionCall","src":"18948:18:81"},{"arguments":[{"name":"value1","nativeSrc":"18972:6:81","nodeType":"YulIdentifier","src":"18972:6:81"},{"kind":"number","nativeSrc":"18980:14:81","nodeType":"YulLiteral","src":"18980:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18968:3:81","nodeType":"YulIdentifier","src":"18968:3:81"},"nativeSrc":"18968:27:81","nodeType":"YulFunctionCall","src":"18968:27:81"}],"functionName":{"name":"mstore","nativeSrc":"18941:6:81","nodeType":"YulIdentifier","src":"18941:6:81"},"nativeSrc":"18941:55:81","nodeType":"YulFunctionCall","src":"18941:55:81"},"nativeSrc":"18941:55:81","nodeType":"YulExpressionStatement","src":"18941:55:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19016:9:81","nodeType":"YulIdentifier","src":"19016:9:81"},{"kind":"number","nativeSrc":"19027:2:81","nodeType":"YulLiteral","src":"19027:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19012:3:81","nodeType":"YulIdentifier","src":"19012:3:81"},"nativeSrc":"19012:18:81","nodeType":"YulFunctionCall","src":"19012:18:81"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"19046:6:81","nodeType":"YulIdentifier","src":"19046:6:81"}],"functionName":{"name":"iszero","nativeSrc":"19039:6:81","nodeType":"YulIdentifier","src":"19039:6:81"},"nativeSrc":"19039:14:81","nodeType":"YulFunctionCall","src":"19039:14:81"}],"functionName":{"name":"iszero","nativeSrc":"19032:6:81","nodeType":"YulIdentifier","src":"19032:6:81"},"nativeSrc":"19032:22:81","nodeType":"YulFunctionCall","src":"19032:22:81"}],"functionName":{"name":"mstore","nativeSrc":"19005:6:81","nodeType":"YulIdentifier","src":"19005:6:81"},"nativeSrc":"19005:50:81","nodeType":"YulFunctionCall","src":"19005:50:81"},"nativeSrc":"19005:50:81","nodeType":"YulExpressionStatement","src":"19005:50:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"18698:363:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18798:9:81","nodeType":"YulTypedName","src":"18798:9:81","type":""},{"name":"value2","nativeSrc":"18809:6:81","nodeType":"YulTypedName","src":"18809:6:81","type":""},{"name":"value1","nativeSrc":"18817:6:81","nodeType":"YulTypedName","src":"18817:6:81","type":""},{"name":"value0","nativeSrc":"18825:6:81","nodeType":"YulTypedName","src":"18825:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18836:4:81","nodeType":"YulTypedName","src":"18836:4:81","type":""}],"src":"18698:363:81"},{"body":{"nativeSrc":"19191:157:81","nodeType":"YulBlock","src":"19191:157:81","statements":[{"nativeSrc":"19201:26:81","nodeType":"YulAssignment","src":"19201:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19213:9:81","nodeType":"YulIdentifier","src":"19213:9:81"},{"kind":"number","nativeSrc":"19224:2:81","nodeType":"YulLiteral","src":"19224:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19209:3:81","nodeType":"YulIdentifier","src":"19209:3:81"},"nativeSrc":"19209:18:81","nodeType":"YulFunctionCall","src":"19209:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19201:4:81","nodeType":"YulIdentifier","src":"19201:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19243:9:81","nodeType":"YulIdentifier","src":"19243:9:81"},{"arguments":[{"name":"value0","nativeSrc":"19258:6:81","nodeType":"YulIdentifier","src":"19258:6:81"},{"kind":"number","nativeSrc":"19266:10:81","nodeType":"YulLiteral","src":"19266:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19254:3:81","nodeType":"YulIdentifier","src":"19254:3:81"},"nativeSrc":"19254:23:81","nodeType":"YulFunctionCall","src":"19254:23:81"}],"functionName":{"name":"mstore","nativeSrc":"19236:6:81","nodeType":"YulIdentifier","src":"19236:6:81"},"nativeSrc":"19236:42:81","nodeType":"YulFunctionCall","src":"19236:42:81"},"nativeSrc":"19236:42:81","nodeType":"YulExpressionStatement","src":"19236:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19298:9:81","nodeType":"YulIdentifier","src":"19298:9:81"},{"kind":"number","nativeSrc":"19309:2:81","nodeType":"YulLiteral","src":"19309:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19294:3:81","nodeType":"YulIdentifier","src":"19294:3:81"},"nativeSrc":"19294:18:81","nodeType":"YulFunctionCall","src":"19294:18:81"},{"arguments":[{"name":"value1","nativeSrc":"19318:6:81","nodeType":"YulIdentifier","src":"19318:6:81"},{"kind":"number","nativeSrc":"19326:14:81","nodeType":"YulLiteral","src":"19326:14:81","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19314:3:81","nodeType":"YulIdentifier","src":"19314:3:81"},"nativeSrc":"19314:27:81","nodeType":"YulFunctionCall","src":"19314:27:81"}],"functionName":{"name":"mstore","nativeSrc":"19287:6:81","nodeType":"YulIdentifier","src":"19287:6:81"},"nativeSrc":"19287:55:81","nodeType":"YulFunctionCall","src":"19287:55:81"},"nativeSrc":"19287:55:81","nodeType":"YulExpressionStatement","src":"19287:55:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"19066:282:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19152:9:81","nodeType":"YulTypedName","src":"19152:9:81","type":""},{"name":"value1","nativeSrc":"19163:6:81","nodeType":"YulTypedName","src":"19163:6:81","type":""},{"name":"value0","nativeSrc":"19171:6:81","nodeType":"YulTypedName","src":"19171:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19182:4:81","nodeType":"YulTypedName","src":"19182:4:81","type":""}],"src":"19066:282:81"},{"body":{"nativeSrc":"19431:177:81","nodeType":"YulBlock","src":"19431:177:81","statements":[{"body":{"nativeSrc":"19477:16:81","nodeType":"YulBlock","src":"19477:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19486:1:81","nodeType":"YulLiteral","src":"19486:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"19489:1:81","nodeType":"YulLiteral","src":"19489:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19479:6:81","nodeType":"YulIdentifier","src":"19479:6:81"},"nativeSrc":"19479:12:81","nodeType":"YulFunctionCall","src":"19479:12:81"},"nativeSrc":"19479:12:81","nodeType":"YulExpressionStatement","src":"19479:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19452:7:81","nodeType":"YulIdentifier","src":"19452:7:81"},{"name":"headStart","nativeSrc":"19461:9:81","nodeType":"YulIdentifier","src":"19461:9:81"}],"functionName":{"name":"sub","nativeSrc":"19448:3:81","nodeType":"YulIdentifier","src":"19448:3:81"},"nativeSrc":"19448:23:81","nodeType":"YulFunctionCall","src":"19448:23:81"},{"kind":"number","nativeSrc":"19473:2:81","nodeType":"YulLiteral","src":"19473:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19444:3:81","nodeType":"YulIdentifier","src":"19444:3:81"},"nativeSrc":"19444:32:81","nodeType":"YulFunctionCall","src":"19444:32:81"},"nativeSrc":"19441:52:81","nodeType":"YulIf","src":"19441:52:81"},{"nativeSrc":"19502:36:81","nodeType":"YulVariableDeclaration","src":"19502:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19528:9:81","nodeType":"YulIdentifier","src":"19528:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"19515:12:81","nodeType":"YulIdentifier","src":"19515:12:81"},"nativeSrc":"19515:23:81","nodeType":"YulFunctionCall","src":"19515:23:81"},"variables":[{"name":"value","nativeSrc":"19506:5:81","nodeType":"YulTypedName","src":"19506:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19572:5:81","nodeType":"YulIdentifier","src":"19572:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"19547:24:81","nodeType":"YulIdentifier","src":"19547:24:81"},"nativeSrc":"19547:31:81","nodeType":"YulFunctionCall","src":"19547:31:81"},"nativeSrc":"19547:31:81","nodeType":"YulExpressionStatement","src":"19547:31:81"},{"nativeSrc":"19587:15:81","nodeType":"YulAssignment","src":"19587:15:81","value":{"name":"value","nativeSrc":"19597:5:81","nodeType":"YulIdentifier","src":"19597:5:81"},"variableNames":[{"name":"value0","nativeSrc":"19587:6:81","nodeType":"YulIdentifier","src":"19587:6:81"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"19353:255:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19397:9:81","nodeType":"YulTypedName","src":"19397:9:81","type":""},{"name":"dataEnd","nativeSrc":"19408:7:81","nodeType":"YulTypedName","src":"19408:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19420:6:81","nodeType":"YulTypedName","src":"19420:6:81","type":""}],"src":"19353:255:81"},{"body":{"nativeSrc":"19661:122:81","nodeType":"YulBlock","src":"19661:122:81","statements":[{"nativeSrc":"19671:51:81","nodeType":"YulAssignment","src":"19671:51:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19687:1:81","nodeType":"YulIdentifier","src":"19687:1:81"},{"kind":"number","nativeSrc":"19690:10:81","nodeType":"YulLiteral","src":"19690:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19683:3:81","nodeType":"YulIdentifier","src":"19683:3:81"},"nativeSrc":"19683:18:81","nodeType":"YulFunctionCall","src":"19683:18:81"},{"arguments":[{"name":"y","nativeSrc":"19707:1:81","nodeType":"YulIdentifier","src":"19707:1:81"},{"kind":"number","nativeSrc":"19710:10:81","nodeType":"YulLiteral","src":"19710:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19703:3:81","nodeType":"YulIdentifier","src":"19703:3:81"},"nativeSrc":"19703:18:81","nodeType":"YulFunctionCall","src":"19703:18:81"}],"functionName":{"name":"sub","nativeSrc":"19679:3:81","nodeType":"YulIdentifier","src":"19679:3:81"},"nativeSrc":"19679:43:81","nodeType":"YulFunctionCall","src":"19679:43:81"},"variableNames":[{"name":"diff","nativeSrc":"19671:4:81","nodeType":"YulIdentifier","src":"19671:4:81"}]},{"body":{"nativeSrc":"19755:22:81","nodeType":"YulBlock","src":"19755:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19757:16:81","nodeType":"YulIdentifier","src":"19757:16:81"},"nativeSrc":"19757:18:81","nodeType":"YulFunctionCall","src":"19757:18:81"},"nativeSrc":"19757:18:81","nodeType":"YulExpressionStatement","src":"19757:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"19737:4:81","nodeType":"YulIdentifier","src":"19737:4:81"},{"kind":"number","nativeSrc":"19743:10:81","nodeType":"YulLiteral","src":"19743:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"19734:2:81","nodeType":"YulIdentifier","src":"19734:2:81"},"nativeSrc":"19734:20:81","nodeType":"YulFunctionCall","src":"19734:20:81"},"nativeSrc":"19731:46:81","nodeType":"YulIf","src":"19731:46:81"}]},"name":"checked_sub_t_uint32","nativeSrc":"19613:170:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19643:1:81","nodeType":"YulTypedName","src":"19643:1:81","type":""},{"name":"y","nativeSrc":"19646:1:81","nodeType":"YulTypedName","src":"19646:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"19652:4:81","nodeType":"YulTypedName","src":"19652:4:81","type":""}],"src":"19613:170:81"},{"body":{"nativeSrc":"19924:130:81","nodeType":"YulBlock","src":"19924:130:81","statements":[{"nativeSrc":"19934:26:81","nodeType":"YulAssignment","src":"19934:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19946:9:81","nodeType":"YulIdentifier","src":"19946:9:81"},{"kind":"number","nativeSrc":"19957:2:81","nodeType":"YulLiteral","src":"19957:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19942:3:81","nodeType":"YulIdentifier","src":"19942:3:81"},"nativeSrc":"19942:18:81","nodeType":"YulFunctionCall","src":"19942:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19934:4:81","nodeType":"YulIdentifier","src":"19934:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19976:9:81","nodeType":"YulIdentifier","src":"19976:9:81"},{"arguments":[{"name":"value0","nativeSrc":"19991:6:81","nodeType":"YulIdentifier","src":"19991:6:81"},{"kind":"number","nativeSrc":"19999:4:81","nodeType":"YulLiteral","src":"19999:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19987:3:81","nodeType":"YulIdentifier","src":"19987:3:81"},"nativeSrc":"19987:17:81","nodeType":"YulFunctionCall","src":"19987:17:81"}],"functionName":{"name":"mstore","nativeSrc":"19969:6:81","nodeType":"YulIdentifier","src":"19969:6:81"},"nativeSrc":"19969:36:81","nodeType":"YulFunctionCall","src":"19969:36:81"},"nativeSrc":"19969:36:81","nodeType":"YulExpressionStatement","src":"19969:36:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20025:9:81","nodeType":"YulIdentifier","src":"20025:9:81"},{"kind":"number","nativeSrc":"20036:2:81","nodeType":"YulLiteral","src":"20036:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20021:3:81","nodeType":"YulIdentifier","src":"20021:3:81"},"nativeSrc":"20021:18:81","nodeType":"YulFunctionCall","src":"20021:18:81"},{"name":"value1","nativeSrc":"20041:6:81","nodeType":"YulIdentifier","src":"20041:6:81"}],"functionName":{"name":"mstore","nativeSrc":"20014:6:81","nodeType":"YulIdentifier","src":"20014:6:81"},"nativeSrc":"20014:34:81","nodeType":"YulFunctionCall","src":"20014:34:81"},"nativeSrc":"20014:34:81","nodeType":"YulExpressionStatement","src":"20014:34:81"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"19788:266:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19885:9:81","nodeType":"YulTypedName","src":"19885:9:81","type":""},{"name":"value1","nativeSrc":"19896:6:81","nodeType":"YulTypedName","src":"19896:6:81","type":""},{"name":"value0","nativeSrc":"19904:6:81","nodeType":"YulTypedName","src":"19904:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19915:4:81","nodeType":"YulTypedName","src":"19915:4:81","type":""}],"src":"19788:266:81"}]},"contents":"{\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_array_bytes4_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_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64(headStart, dataEnd) -> value0, value1, value2, value3\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 offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        value3 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_bool(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        if iszero(eq(value_1, iszero(iszero(value_1)))) { revert(0, 0) }\n        value1 := value_1\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_decode_bytes_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, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\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 offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint64t_addresst_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n        value2 := abi_decode_uint32(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint64t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n    }\n    function abi_encode_tuple_t_uint48_t_uint32_t_uint32_t_uint48__to_t_uint48_t_uint32_t_uint32_t_uint48__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), and(value2, 0xffffffff))\n        mstore(add(headStart, 96), and(value3, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_uint64t_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffff))\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 validator_revert_bytes4(value)\n    {\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_bytes4(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_bytes4(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64t_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_decode_tuple_t_uint64t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\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 offset := calldataload(add(headStart, 64))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { 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_bytes4_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            let _1 := mload(srcPtr)\n            let length_1 := mload(_1)\n            mstore(tail_2, length_1)\n            mcopy(add(tail_2, 32), add(_1, 32), length_1)\n            mstore(add(add(tail_2, length_1), 32), 0)\n            tail_2 := add(add(tail_2, and(add(length_1, 31), not(31))), 32)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes4(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_bytes4(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_uint32(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        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48(headStart, dataEnd) -> value0, value1, value2, value3\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 offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let value_1 := calldataload(add(headStart, 64))\n        if iszero(eq(value_1, and(value_1, 0xffffffffffff))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\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_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\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_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_encode_string_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string_calldata(value0, value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bytes4(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes_calldata_ptr__to_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), 96)\n        tail := abi_encode_string_calldata(value2, value3, add(headStart, 96))\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mcopy(pos, add(value, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        end := abi_encode_bytes(value2, _1)\n    }\n    function abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, shl(224, 0xffffffff)))\n    }\n    function checked_add_t_uint48(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffff), and(y, 0xffffffffffff))\n        if gt(sum, 0xffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint48_t_address_t_address_t_bytes_calldata_ptr__to_t_uint48_t_address_t_address_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string_calldata(value3, value4, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, shl(224, 0xffffffff)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        end := abi_encode_bytes(value0, pos)\n    }\n    function abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffff))\n    }\n    function abi_decode_tuple_t_address_payable(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 checked_sub_t_uint32(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffff), and(y, 0xffffffff))\n        if gt(diff, 0xffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f93660046120da565b6106cc565b005b34801561020b575f5ffd5b5061024261021a36600461213c565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e61027936600461213c565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad366004612155565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612190565b61076e565b61027e6102df3660046121f9565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe36600461225c565b6108fc565b34801561030e575f5ffd5b5061032261031d36600461229e565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe6103763660046122b8565b610982565b348015610386575f5ffd5b5061039a6103953660046122e9565b610994565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e53660046122e9565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e610432366004612300565b6109c5565b348015610442575f5ffd5b506101fe6104513660046122b8565b6109f2565b348015610461575f5ffd5b5061024261047036600461213c565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab366004612330565b610a04565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd36600461235c565b610a3e565b3480156104ed575f5ffd5b506101fe6104fc3660046121f9565b610ad5565b34801561050c575f5ffd5b5061052061051b366004612300565b610b7f565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a366004612377565b610ba6565b34801561055a575f5ffd5b5061056e61056936600461239f565b610bb8565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046123ff565b610bf0565b604051610256919061243d565b3480156105b3575f5ffd5b506105c76105c23660046124c1565b610cd5565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd36600461229e565b610d56565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c761063136600461229e565b610d6d565b348015610641575f5ffd5b506101fe610650366004612509565b610de6565b348015610660575f5ffd5b5061027e61066f36600461239f565b610df8565b34801561067f575f5ffd5b5061069361068e366004612525565b610f4b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c736600461229e565b61108c565b6106d46110b5565b5f5b828110156107175761070f858585848181106106f4576106f4612592565b905060200201602081019061070991906125a6565b8461112c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ad565b92915050565b6107606110b5565b61076a82826111cb565b5050565b6107766110b5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861123c565b91509150811580156107f6575063ffffffff8116155b15610849578287610807888861128d565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bb8565b90505f63ffffffff831615158061087c575061087182610994565b65ffffffffffff1615155b1561088d5761088a826112a4565b90505b6003546108a38a61089e8b8b61128d565b6113a2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506113e4915050565b506003559450505050505b9392505050565b6109046110b5565b61091883836109128661071e565b84611484565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff81169291829182919061097490600160301b90046001600160701b03166116ca565b969991985096509350505050565b61098a6110b5565b61076a82826116eb565b5f8181526002602052604081205465ffffffffffff166109b38161178e565b6109bd57806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ad565b6109fa6110b5565b61076a82826117bc565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a466110b5565b6001600160401b0383161580610a6457506001600160401b03838116145b15610a8d5760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610ac89291906125e9565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b389190612604565b6001600160e01b03191614610b6b57604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610b7a85838686610bb8565b6112a4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610bae6110b5565b61076a828261186d565b5f84848484604051602001610bd0949392919061261f565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c1957610c19612686565b604051908082528060200260200182016040528015610c4c57816020015b6060815260200190600190039081610c375790505b5091505f5b83811015610ccd57610ca830868684818110610c6f57610c6f612592565b9050602002810190610c81919061269a565b85604051602001610c94939291906126f3565b60405160208183030381529060405261197c565b838281518110610cba57610cba612592565b6020908102919091010152600101610c51565b505092915050565b5f5f610ce084610b7f565b15610cef57505f905080610d4e565b306001600160a01b03861603610d1357610d0984846119ee565b5f91509150610d4e565b5f610d1e8585610a04565b90505f5f610d2c8389610d6d565b9150915081610d3c575f5f610d46565b63ffffffff811615815b945094505050505b935093915050565b610d5e6110b5565b610d688282611a04565b505050565b5f8067fffffffffffffffe196001600160401b03851601610d935750600190505f610ddf565b5f5f610d9f868661091e565b5050915091508165ffffffffffff165f14158015610dd45750610dc0611aed565b65ffffffffffff168265ffffffffffff1611155b93509150610ddf9050565b9250929050565b610dee6110b5565b61076a8282611afc565b5f3381610e05858561128d565b90505f610e1488888888610bb8565b5f8181526002602052604081205491925065ffffffffffff9091169003610e515760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610eea575f610e755f85610d6d565b5090505f610e8f610e8961021a8b87610a04565b86610d6d565b50905081158015610e9e575080155b15610ee757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f5b8289898961123c565b9150505f8163ffffffff16610f6e611aed565b610f789190612708565b905063ffffffff82161580610fae57505f8665ffffffffffff16118015610fae57508065ffffffffffff168665ffffffffffff16105b15610fbf5782896108078a8a61128d565b610fd98665ffffffffffff168265ffffffffffff16611bb7565b9550610fe7838a8a8a610bb8565b9450610ff285611bc6565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611078908a9088908f908f908f90612726565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d5e57604051635f159e6360e01b815260040160405180910390fd5b335f806110c3838236611c12565b9150915081610d68578063ffffffff165f0361111d575f6110e48136611cd5565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610b7a84305f36610bb8565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f6111c1836001600160701b03166116ca565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061123090841515815260200190565b60405180910390a25050565b5f80306001600160a01b0386160361126257611259868585611c12565b91509150611284565b6004831061127e5761127986866105c2878761128d565b611259565b505f9050805b94509492505050565b5f61129b600482848661265f565b6108f59161276b565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036112ec5760405163060a299b60e41b815260048101859052602401610840565b6112f4611aed565b65ffffffffffff168265ffffffffffff16111561132757604051630c65b5bd60e11b815260048101859052602401610840565b6113308261178e565b1561135157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b604080516001600160a01b03939093166020808501919091526001600160e01b0319929092168382015280518084038201815260609093019052815191012090565b6060814710156114105760405163cf47918160e01b815247600482015260248101839052604401610840565b5f5f856001600160a01b0316848660405161142b91906127a3565b5f6040518083038185875af1925050503d805f8114611465576040519150601f19603f3d011682016040523d82523d5f602084013e61146a565b606091505b509150915061147a868383611ebb565b9695505050505050565b5f67fffffffffffffffe196001600160401b038616016114c25760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115b2578463ffffffff1661150d611aed565b6115179190612708565b905060405180604001604052808265ffffffffffff1681526020016115458663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561165c565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546115fb91600160301b9091046001600160701b0316908690611f17565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f6116de846116d9611aed565b611fbd565b9250925092509193909250565b6001600160401b038216158061170957506001600160401b03828116145b156117325760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f611797611aed565b65ffffffffffff166117ac62093a8084612708565b65ffffffffffff16111592915050565b6001600160401b03821615806117da57506001600160401b03828116145b156118035760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118aa5760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f908152600160208190526040822001546118e390600160801b90046001600160701b03168362069780611f17565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610ac8908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f5f846001600160a01b03168460405161199891906127a3565b5f60405180830381855af49150503d805f81146119d0576040519150601f19603f3d011682016040523d82523d5f602084013e6119d5565b606091505b50915091506119e5858383611ebb565b95945050505050565b5f6119f983836113a2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a425760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611a8357505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611af742612009565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b2e906001600160701b03168362069780611f17565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610ac8565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611bf15750611bef8161178e565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c2757505f905080610d4e565b306001600160a01b03861603611c4a57610d0930611c45868661128d565b6119ee565b5f5f5f611c578787611cd5565b92509250925082158015611c6f5750611c6f30610b7f565b15611c82575f5f94509450505050610d4e565b5f5f611c8e848b610d6d565b9150915081611ca7575f5f965096505050505050610d4e565b611cbd8363ffffffff168263ffffffff16611bb7565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611cee57505f915081905080611eb4565b5f611cf9868661128d565b90506001600160e01b031981166310a6aa3760e31b1480611d2a57506001600160e01b031981166330cae18760e01b145b80611d4557506001600160e01b0319811663294b14a960e11b145b80611d6057506001600160e01b03198116635326cae760e11b145b80611d7b57506001600160e01b0319811663d22b598960e01b145b15611d905760015f5f93509350935050611eb4565b6001600160e01b0319811663063fc60f60e21b1480611dbf57506001600160e01b0319811663167bd39560e01b145b80611dda57506001600160e01b031981166308d6122d60e01b145b15611e19575f611dee60246004888a61265f565b810190611dfb9190612300565b90505f611e07826109c5565b600196505f95509350611eb492505050565b6001600160e01b0319811663012e238d60e51b1480611e4857506001600160e01b03198116635be958b160e11b145b15611ea0575f611e5c60246004888a61265f565b810190611e69919061213c565b90506001611e92826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611eb4565b5f611eab3083610a04565b5f935093509350505b9250925092565b606082611ed057611ecb8261203f565b6108f5565b8151158015611ee757506001600160a01b0384163b155b15611f1057604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b50806108f5565b5f5f5f611f2c866001600160701b03166111ad565b90505f611f678563ffffffff168763ffffffff168463ffffffff1611611f52575f611f5c565b611f5c88856127ae565b63ffffffff16611bb7565b90508063ffffffff16611f78611aed565b611f829190612708565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c8116908416811115611ff857828282611ffc565b815f5f5b9250925092509250925092565b5f65ffffffffffff82111561203b576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b80511561204f5780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b50565b6001600160a01b0381168114612068575f5ffd5b5f5f83601f84011261208f575f5ffd5b5081356001600160401b038111156120a5575f5ffd5b6020830191508360208260051b8501011115610ddf575f5ffd5b80356001600160401b03811681146120d5575f5ffd5b919050565b5f5f5f5f606085870312156120ed575f5ffd5b84356120f88161206b565b935060208501356001600160401b03811115612112575f5ffd5b61211e8782880161207f565b90945092506121319050604086016120bf565b905092959194509250565b5f6020828403121561214c575f5ffd5b6108f5826120bf565b5f5f60408385031215612166575f5ffd5b82356121718161206b565b915060208301358015158114612185575f5ffd5b809150509250929050565b5f5f604083850312156121a1575f5ffd5b82356121ac8161206b565b915060208301356121858161206b565b5f5f83601f8401126121cc575f5ffd5b5081356001600160401b038111156121e2575f5ffd5b602083019150836020828501011115610ddf575f5ffd5b5f5f5f6040848603121561220b575f5ffd5b83356122168161206b565b925060208401356001600160401b03811115612230575f5ffd5b61223c868287016121bc565b9497909650939450505050565b803563ffffffff811681146120d5575f5ffd5b5f5f5f6060848603121561226e575f5ffd5b612277846120bf565b925060208401356122878161206b565b915061229560408501612249565b90509250925092565b5f5f604083850312156122af575f5ffd5b6121ac836120bf565b5f5f604083850312156122c9575f5ffd5b6122d2836120bf565b91506122e0602084016120bf565b90509250929050565b5f602082840312156122f9575f5ffd5b5035919050565b5f60208284031215612310575f5ffd5b81356108f58161206b565b6001600160e01b031981168114612068575f5ffd5b5f5f60408385031215612341575f5ffd5b823561234c8161206b565b915060208301356121858161231b565b5f5f5f6040848603121561236e575f5ffd5b612216846120bf565b5f5f60408385031215612388575f5ffd5b612391836120bf565b91506122e060208401612249565b5f5f5f5f606085870312156123b2575f5ffd5b84356123bd8161206b565b935060208501356123cd8161206b565b925060408501356001600160401b038111156123e7575f5ffd5b6123f3878288016121bc565b95989497509550505050565b5f5f60208385031215612410575f5ffd5b82356001600160401b03811115612425575f5ffd5b6124318582860161207f565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156124b557603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612463565b50929695505050505050565b5f5f5f606084860312156124d3575f5ffd5b83356124de8161206b565b925060208401356124ee8161206b565b915060408401356124fe8161231b565b809150509250925092565b5f5f6040838503121561251a575f5ffd5b82356123918161206b565b5f5f5f5f60608587031215612538575f5ffd5b84356125438161206b565b935060208501356001600160401b0381111561255d575f5ffd5b612569878288016121bc565b909450925050604085013565ffffffffffff81168114612587575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156125b6575f5ffd5b81356108f58161231b565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6125fc6020830184866125c1565b949350505050565b5f60208284031215612614575f5ffd5b81516108f58161231b565b6001600160a01b038581168252841660208201526060604082018190525f9061147a90830184866125c1565b634e487b7160e01b5f52601160045260245ffd5b5f5f8585111561266d575f5ffd5b83861115612679575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e198436030181126126af575f5ffd5b8301803591506001600160401b038211156126c8575f5ffd5b602001915036819003821315610ddf575f5ffd5b5f81518060208401855e5f93019283525090919050565b828482375f8382015f815261147a81856126dc565b65ffffffffffff81811683821601908111156107525761075261264b565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061276090830184866125c1565b979650505050505050565b80356001600160e01b0319811690600484101561279c576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f6108f582846126dc565b63ffffffff82811682821603908111156107525761075261264b56fea264697066735822122008488042c5e48441f9c1e356771abf3351e08768158c34f7772cb4d814266a0164736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6D5115BD GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xB7009613 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xD22B5989 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xD22B5989 EQ PUSH2 0x636 JUMPI DUP1 PUSH4 0xD6BB62C6 EQ PUSH2 0x655 JUMPI DUP1 PUSH4 0xF801A698 EQ PUSH2 0x674 JUMPI DUP1 PUSH4 0xFE0776F5 EQ PUSH2 0x6AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB7009613 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0xB7D2B162 EQ PUSH2 0x5E3 JUMPI DUP1 PUSH4 0xCC1B6C81 EQ PUSH2 0x602 JUMPI DUP1 PUSH4 0xD1F856EE EQ PUSH2 0x617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA166AA89 GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xA166AA89 EQ PUSH2 0x501 JUMPI DUP1 PUSH4 0xA64D95CE EQ PUSH2 0x530 JUMPI DUP1 PUSH4 0xABD9BD2A EQ PUSH2 0x54F JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6D5115BD EQ PUSH2 0x491 JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x4B0 JUMPI DUP1 PUSH4 0x853551B8 EQ PUSH2 0x4C3 JUMPI DUP1 PUSH4 0x94C7D7EE EQ PUSH2 0x4E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0x4665096D GT PUSH2 0x143 JUMPI DUP1 PUSH4 0x4665096D EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0x4C1DA1E2 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x52962952 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x530DD456 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x30CAE187 EQ PUSH2 0x35C JUMPI DUP1 PUSH4 0x3ADC277A EQ PUSH2 0x37B JUMPI DUP1 PUSH4 0x3CA7C02A EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0x4136A33C EQ PUSH2 0x3CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18FF183C GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x18FF183C EQ PUSH2 0x2B2 JUMPI DUP1 PUSH4 0x1CFF79CD EQ PUSH2 0x2D1 JUMPI DUP1 PUSH4 0x25C471A0 EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0x3078F114 EQ PUSH2 0x303 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8D6122D EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xB0A93BA EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x12BE8727 EQ PUSH2 0x25F JUMPI DUP1 PUSH4 0x167BD395 EQ PUSH2 0x293 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x1F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x20DA JUMP JUMPDEST PUSH2 0x6CC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x213C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x26A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x279 CALLDATASIZE PUSH1 0x4 PUSH2 0x213C JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2AD CALLDATASIZE PUSH1 0x4 PUSH2 0x2155 JUMP JUMPDEST PUSH2 0x758 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2CC CALLDATASIZE PUSH1 0x4 PUSH2 0x2190 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x21F9 JUMP JUMPDEST PUSH2 0x7D0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x2FE CALLDATASIZE PUSH1 0x4 PUSH2 0x225C JUMP JUMPDEST PUSH2 0x8FC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x322 PUSH2 0x31D CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH6 0xFFFFFFFFFFFF SWAP5 DUP6 AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP4 DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x40 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x367 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x376 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x982 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E9 JUMP JUMPDEST PUSH2 0x994 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x3E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x22E9 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x93A80 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x2300 JUMP JUMPDEST PUSH2 0x9C5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B8 JUMP JUMPDEST PUSH2 0x9F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x213C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x4AB CALLDATASIZE PUSH1 0x4 PUSH2 0x2330 JUMP JUMPDEST PUSH2 0xA04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4DD CALLDATASIZE PUSH1 0x4 PUSH2 0x235C JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x21F9 JUMP JUMPDEST PUSH2 0xAD5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x2300 JUMP JUMPDEST PUSH2 0xB7F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x54A CALLDATASIZE PUSH1 0x4 PUSH2 0x2377 JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x239F JUMP JUMPDEST PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59B PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x23FF JUMP JUMPDEST PUSH2 0xBF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 ISZERO ISZERO DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x5FD CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xD56 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x60D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x69780 PUSH2 0x27E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x631 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x2509 JUMP JUMPDEST PUSH2 0xDE6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x239F JUMP JUMPDEST PUSH2 0xDF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x2525 JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x256 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x6C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10B5 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x717 JUMPI PUSH2 0x70F DUP6 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x6F4 JUMPI PUSH2 0x6F4 PUSH2 0x2592 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x25A6 JUMP JUMPDEST DUP5 PUSH2 0x112C JUMP JUMPDEST PUSH1 0x1 ADD PUSH2 0x6D6 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x11CB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x7A9E5E4B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x7A9E5E4B SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER DUP2 DUP1 PUSH2 0x7E0 DUP4 DUP9 DUP9 DUP9 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x7F6 JUMPI POP PUSH4 0xFFFFFFFF DUP2 AND ISZERO JUMPDEST ISZERO PUSH2 0x849 JUMPI DUP3 DUP8 PUSH2 0x807 DUP9 DUP9 PUSH2 0x128D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x81C6F24B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x856 DUP5 DUP10 DUP10 DUP10 PUSH2 0xBB8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x994 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12A4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 DUP2 SWAP1 SSTORE POP PUSH2 0x8EA DUP11 DUP11 DUP11 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP CALLVALUE SWAP3 POP PUSH2 0x13E4 SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x3 SSTORE SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x904 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x1484 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16CA JUMP JUMPDEST SWAP7 SWAP10 SWAP2 SWAP9 POP SWAP7 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x98A PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x16EB JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9B3 DUP2 PUSH2 0x178E JUMP JUMPDEST PUSH2 0x9BD JUMPI DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x752 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST PUSH2 0x9FA PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x17BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA46 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xA8D JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH32 0x1256F5B5ECB89CAEC12DB449738F2FBCD1BA5806CF38F35413F4E5C15BF6A450 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xAC8 SWAP3 SWAP2 SWAP1 PUSH2 0x25E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0x8FB36037 PUSH1 0xE0 SHL DUP1 DUP3 MSTORE SWAP2 MLOAD CALLER SWAP3 SWAP2 DUP4 SWAP2 PUSH4 0x8FB36037 SWAP2 PUSH1 0x4 DUP1 DUP3 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB14 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xB38 SWAP2 SWAP1 PUSH2 0x2604 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xB6B JUMPI PUSH1 0x40 MLOAD PUSH4 0x641FEE9 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x717 PUSH2 0xB7A DUP6 DUP4 DUP7 DUP7 PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0x12A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x70 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0xBAE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x186D JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xBD0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x261F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 SWAP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x2686 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC4C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC37 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCCD JUMPI PUSH2 0xCA8 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xC6F JUMPI PUSH2 0xC6F PUSH2 0x2592 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC81 SWAP2 SWAP1 PUSH2 0x269A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC94 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26F3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x197C JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCBA JUMPI PUSH2 0xCBA PUSH2 0x2592 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC51 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xCE0 DUP5 PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0xCEF JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD13 JUMPI PUSH2 0xD09 DUP5 DUP5 PUSH2 0x19EE JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH2 0xD1E DUP6 DUP6 PUSH2 0xA04 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD2C DUP4 DUP10 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD3C JUMPI PUSH0 PUSH0 PUSH2 0xD46 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD5E PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0xD68 DUP3 DUP3 PUSH2 0x1A04 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xD93 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xDDF JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD9F DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI POP PUSH2 0xDC0 PUSH2 0x1AED JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xDDF SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xDEE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1AFC JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE05 DUP6 DUP6 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE14 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBB8 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 SUB PUSH2 0xE51 JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEEA JUMPI PUSH0 PUSH2 0xE75 PUSH0 DUP6 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xE8F PUSH2 0xE89 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA04 JUMP JUMPDEST DUP7 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEE7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFF89D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x4 DUP4 ADD MSTORE DUP1 DUP13 AND PUSH1 0x24 DUP4 ADD MSTORE DUP11 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP6 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x840 JUMP JUMPDEST POP POP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 DUP2 SWAP1 SSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP2 DUP3 SWAP2 DUP5 SWAP2 PUSH32 0xBD9AC67A6E2F6463B80927326310338BCBB4BDB7936CE1365EA3E01067E7B9F7 SWAP2 LOG3 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 CALLER DUP2 PUSH2 0xF5B DUP3 DUP10 DUP10 DUP10 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xF6E PUSH2 0x1AED JUMP JUMPDEST PUSH2 0xF78 SWAP2 SWAP1 PUSH2 0x2708 JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFAE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFAE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFBF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x128D JUMP JUMPDEST PUSH2 0xFD9 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1BB7 JUMP JUMPDEST SWAP6 POP PUSH2 0xFE7 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBB8 JUMP JUMPDEST SWAP5 POP PUSH2 0xFF2 DUP6 PUSH2 0x1BC6 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF DUP10 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF NOT DUP3 AND OR PUSH1 0x1 PUSH1 0x30 SHL SWAP2 DUP3 SWAP1 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH1 0x1 ADD SWAP1 DUP2 AND SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD SWAP1 SWAP6 POP DUP7 SWAP1 PUSH32 0x82A2DA5DEE54EA8021C6545B4444620291E07EE83BE6DD57EDB175062715F3B4 SWAP1 PUSH2 0x1078 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x2726 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ PUSH2 0xD5E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5F159E63 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x10C3 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C12 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD68 JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x111D JUMPI PUSH0 PUSH2 0x10E4 DUP2 CALLDATASIZE PUSH2 0x1CD5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0xF07E038F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE SWAP1 SWAP3 POP PUSH1 0x44 ADD SWAP1 POP PUSH2 0x840 JUMP JUMPDEST PUSH2 0x918 PUSH2 0xB7A DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 SWAP2 PUSH32 0x9EA6790C7DADFD01C9F8B9762B3682607AF2C7E79E05A9F9FDF5580DDE949151 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x11C1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16CA JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD DUP5 ISZERO ISZERO PUSH1 0x1 PUSH1 0x70 SHL MUL PUSH1 0xFF PUSH1 0x70 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE MLOAD PUSH32 0x90D4E7BB7E5D933792B3562E1741306F8BE94837E1348DACEF9B6F1DF56EB138 SWAP1 PUSH2 0x1230 SWAP1 DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1262 JUMPI PUSH2 0x1259 DUP7 DUP6 DUP6 PUSH2 0x1C12 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1284 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x127E JUMPI PUSH2 0x1279 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1259 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129B PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x265F JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x276B JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 DUP4 SUB PUSH2 0x12EC JUMPI PUSH1 0x40 MLOAD PUSH4 0x60A299B PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x12F4 PUSH2 0x1AED JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1327 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC65B5BD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH2 0x1330 DUP3 PUSH2 0x178E JUMP JUMPDEST ISZERO PUSH2 0x1351 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E2975B9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH6 0xFFFFFFFFFFFF NOT AND SWAP1 SSTORE MLOAD PUSH4 0xFFFFFFFF DUP4 AND SWAP2 DUP7 SWAP2 PUSH32 0x76A2A46953689D4861A5D3F6ED883AD7E6AF674A21F8E162707159FC9DDE614D SWAP2 SWAP1 LOG3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP3 SWAP1 SWAP3 AND DUP4 DUP3 ADD MSTORE DUP1 MLOAD DUP1 DUP5 SUB DUP3 ADD DUP2 MSTORE PUSH1 0x60 SWAP1 SWAP4 ADD SWAP1 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x1410 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x142B SWAP2 SWAP1 PUSH2 0x27A3 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1465 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x146A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x147A DUP7 DUP4 DUP4 PUSH2 0x1EBB JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x14C2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND ISZERO SWAP1 DUP2 ISZERO PUSH2 0x15B2 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x150D PUSH2 0x1AED JUMP JUMPDEST PUSH2 0x1517 SWAP2 SWAP1 PUSH2 0x2708 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1545 DUP7 PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE DUP3 MSTORE SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP5 SWAP1 SWAP3 ADD MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP4 AND PUSH6 0xFFFFFFFFFFFF SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x165C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x15FB SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP10 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x30 SHL MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000 NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE SWAP1 POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE DUP4 ISZERO ISZERO DUP2 DUP4 ADD MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP11 AND SWAP2 PUSH32 0xF98448B987F1428E0E230E1F3C6E2CE15B5693EAF31827FBD0B1EC4B424AE7CF SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG3 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x16DE DUP5 PUSH2 0x16D9 PUSH2 0x1AED JUMP JUMPDEST PUSH2 0x1FBD JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1709 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1732 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND SWAP5 DUP7 AND SWAP5 DUP6 OR SWAP1 SSTORE MLOAD PUSH32 0x1FD6DD7631312DFAC2205B52913F99DE03B4D7E381D5D27D3DBFE0713E6E6340 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1797 PUSH2 0x1AED JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x17AC PUSH3 0x93A80 DUP5 PUSH2 0x2708 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND GT ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x17DA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1803 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH16 0xFFFFFFFFFFFFFFFF0000000000000000 NOT AND PUSH1 0x1 PUSH1 0x40 SHL SWAP6 DUP8 AND SWAP6 DUP7 MUL OR SWAP1 SSTORE MLOAD PUSH32 0x7A8059630B897B5DE4C08ADE69F8B90C3EAD1F8596D62D10B6C4D14A0AFB4AE2 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ADD PUSH2 0x18AA JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 KECCAK256 ADD SLOAD PUSH2 0x18E3 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x80 SHL NOT SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP1 SWAP3 POP PUSH32 0xFEB69018EE8B8FD50EA86348F1267D07673379F72CFFDECCEC63853EE8CE8B48 SWAP1 PUSH2 0xAC8 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x1998 SWAP2 SWAP1 PUSH2 0x27A3 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x19D0 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x19D5 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x19E5 DUP6 DUP4 DUP4 PUSH2 0x1EBB JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x19F9 DUP4 DUP4 PUSH2 0x13A2 JUMP JUMPDEST PUSH1 0x3 SLOAD EQ SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND ADD PUSH2 0x1A42 JUMPI PUSH1 0x40 MLOAD PUSH4 0x61C6A43 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND SWAP1 SUB PUSH2 0x1A83 JUMPI POP PUSH0 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE MLOAD SWAP1 SWAP3 SWAP2 PUSH32 0xF229BAA593AF28C41B1D16B748CD7688F0C83AAF92D4BE41C44005DEFE84C166 SWAP2 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1AF7 TIMESTAMP PUSH2 0x2009 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 ADD SLOAD PUSH2 0x1B2E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F17 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x1 ADD DUP1 SLOAD PUSH14 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP7 SWAP1 SWAP7 AND SWAP6 SWAP1 SWAP6 OR SWAP1 SWAP5 SSTORE DUP1 MLOAD PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0xA56B76017453F399EC2327BA00375DBFB1FD070FF854341AD6191E6A2E2DE19C SWAP2 ADD PUSH2 0xAC8 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 GT MUL DUP3 XOR PUSH2 0x8F5 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1BF1 JUMPI POP PUSH2 0x1BEF DUP2 PUSH2 0x178E JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x76A JUMPI PUSH1 0x40 MLOAD PUSH4 0x813E9459 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x4 DUP4 LT ISZERO PUSH2 0x1C27 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C4A JUMPI PUSH2 0xD09 ADDRESS PUSH2 0x1C45 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x19EE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C57 DUP8 DUP8 PUSH2 0x1CD5 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1C6F JUMPI POP PUSH2 0x1C6F ADDRESS PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0x1C82 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1C8E DUP5 DUP12 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CA7 JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH2 0x1CBD DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1BB7 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO SWAP12 SWAP1 SWAP11 POP SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x1CEE JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1EB4 JUMP JUMPDEST PUSH0 PUSH2 0x1CF9 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D2A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D45 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D60 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D7B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1D90 JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1EB4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1DBF JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1DDA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E19 JUMPI PUSH0 PUSH2 0x1DEE PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x265F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1DFB SWAP2 SWAP1 PUSH2 0x2300 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E07 DUP3 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1EB4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x12E238D PUSH1 0xE5 SHL EQ DUP1 PUSH2 0x1E48 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EA0 JUMPI PUSH0 PUSH2 0x1E5C PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x265F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E69 SWAP2 SWAP1 PUSH2 0x213C JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1E92 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 ADD SLOAD AND SWAP1 JUMP JUMPDEST PUSH0 SWAP5 POP SWAP5 POP SWAP5 POP POP POP PUSH2 0x1EB4 JUMP JUMPDEST PUSH0 PUSH2 0x1EAB ADDRESS DUP4 PUSH2 0xA04 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1ED0 JUMPI PUSH2 0x1ECB DUP3 PUSH2 0x203F JUMP JUMPDEST PUSH2 0x8F5 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1EE7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1F10 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST POP DUP1 PUSH2 0x8F5 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F2C DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F67 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1F52 JUMPI PUSH0 PUSH2 0x1F5C JUMP JUMPDEST PUSH2 0x1F5C DUP9 DUP6 PUSH2 0x27AE JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1BB7 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1F78 PUSH2 0x1AED JUMP JUMPDEST PUSH2 0x1F82 SWAP2 SWAP1 PUSH2 0x2708 JUMP JUMPDEST SWAP3 POP PUSH4 0xFFFFFFFF DUP7 AND PUSH1 0x20 DUP4 SWAP1 SHL PUSH8 0xFFFFFFFF00000000 AND PUSH1 0x40 DUP6 SWAP1 SHL PUSH14 0xFFFFFFFFFFFF0000000000000000 AND OR OR SWAP4 POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x20 DUP4 SWAP1 SHR AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP4 AND PUSH6 0xFFFFFFFFFFFF PUSH1 0x40 DUP6 SWAP1 SHR DUP2 AND SWAP1 DUP5 AND DUP2 GT ISZERO PUSH2 0x1FF8 JUMPI DUP3 DUP3 DUP3 PUSH2 0x1FFC JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x203B JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x30 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x840 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x204F JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2068 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x208F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20A5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x20F8 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2112 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x211E DUP8 DUP3 DUP9 ADD PUSH2 0x207F JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2131 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x20BF JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x214C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x20BF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2166 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2171 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2185 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x21A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x21AC DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2185 DUP2 PUSH2 0x206B JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x220B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2216 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x223C DUP7 DUP3 DUP8 ADD PUSH2 0x21BC JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x20D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x226E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2277 DUP5 PUSH2 0x20BF JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2287 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH2 0x2295 PUSH1 0x40 DUP6 ADD PUSH2 0x2249 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21AC DUP4 PUSH2 0x20BF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22D2 DUP4 PUSH2 0x20BF JUMP JUMPDEST SWAP2 POP PUSH2 0x22E0 PUSH1 0x20 DUP5 ADD PUSH2 0x20BF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2310 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x206B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2068 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2341 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x234C DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2185 DUP2 PUSH2 0x231B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x236E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2216 DUP5 PUSH2 0x20BF JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2388 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2391 DUP4 PUSH2 0x20BF JUMP JUMPDEST SWAP2 POP PUSH2 0x22E0 PUSH1 0x20 DUP5 ADD PUSH2 0x2249 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x23B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x23BD DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x23CD DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x23E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x23F3 DUP8 DUP3 DUP9 ADD PUSH2 0x21BC JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2410 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2425 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2431 DUP6 DUP3 DUP7 ADD PUSH2 0x207F JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x24B5 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE DUP2 MLOAD DUP1 MLOAD DUP1 DUP8 MSTORE DUP1 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP10 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP9 ADD ADD SWAP7 POP POP POP PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x2463 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x24D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24DE DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24EE DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x24FE DUP2 PUSH2 0x231B JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x251A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2391 DUP2 PUSH2 0x206B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2538 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2543 DUP2 PUSH2 0x206B JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x255D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2569 DUP8 DUP3 DUP9 ADD PUSH2 0x21BC JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x231B JUMP JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x25FC PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x25C1 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2614 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x231B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x147A SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25C1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x266D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2679 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x26AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x26C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE PUSH2 0x147A DUP2 DUP6 PUSH2 0x26DC JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x264B JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE DUP5 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x2760 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25C1 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x279C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x8F5 DUP3 DUP5 PUSH2 0x26DC JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x264B JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDMOD BASEFEE DUP1 TIMESTAMP 0xC5 0xE4 DUP5 COINBASE 0xF9 0xC1 0xE3 JUMP PUSH24 0x1ABF3351E08768158C34F7772CB4D814266A0164736F6C63 NUMBER STOP ADDMOD SHR STOP CALLER ","sourceMap":"3722:26153:29:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15149:291;;;;;;;;;;-1:-1:-1;15149:291:29;;;;;:::i;:::-;;:::i;:::-;;8534:124;;;;;;;;;;-1:-1:-1;8534:124:29;;;;;:::i;:::-;-1:-1:-1;;;;;8628:14:29;;;8603:6;8628:14;;;:6;:14;;;;;;;;:23;;-1:-1:-1;;;8628:23:29;;;;8534:124;;;;-1:-1:-1;;;;;1695:31:81;;;1677:50;;1665:2;1650:18;8534:124:29;;;;;;;;8699:134;;;;;;;;;;-1:-1:-1;8699:134:29;;;;;:::i;:::-;;:::i;:::-;;;1912:10:81;1900:23;;;1882:42;;1870:2;1855:18;8699:134:29;1738:192:81;16618:133:29;;;;;;;;;;-1:-1:-1;16618:133:29;;;;;:::i;:::-;;:::i;23785:159::-;;;;;;;;;;-1:-1:-1;23785:159:29;;;;;:::i;:::-;;:::i;19732:1238::-;;;;;;:::i;:::-;;:::i;10198:191::-;;;;;;;;;;-1:-1:-1;10198:191:29;;;;;:::i;:::-;;:::i;8874:408::-;;;;;;;;;;-1:-1:-1;8874:408:29;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;4791:14:81;4779:27;;;4761:46;;4855:10;4843:23;;;4838:2;4823:18;;4816:51;4903:23;;;;4898:2;4883:18;;4876:51;4963:27;;4958:2;4943:18;;4936:55;4748:3;4733:19;;4538:459;10886:126:29;;;;;;;;;;-1:-1:-1;10886:126:29;;;;;:::i;:::-;;:::i;17246:184::-;;;;;;;;;;-1:-1:-1;17246:184:29;;;;;:::i;:::-;;:::i;:::-;;;5622:14:81;5610:27;;;5592:46;;5580:2;5565:18;17246:184:29;5448:196:81;5578:53:29;;;;;;;;;;;;-1:-1:-1;;;;;5578:53:29;;17471:111;;;;;;;;;;-1:-1:-1;17471:111:29;;;;;:::i;:::-;17530:6;17555:14;;;:10;:14;;;;;:20;-1:-1:-1;;;17555:20:29;;;;;17471:111;7566:90;;;;;;;;;;-1:-1:-1;7642:7:29;7566:90;;8195:139;;;;;;;;;;-1:-1:-1;8195:139:29;;;;;:::i;:::-;;:::i;11053:138::-;;;;;;;;;;-1:-1:-1;11053:138:29;;;;;:::i;:::-;;:::i;8375:118::-;;;;;;;;;;-1:-1:-1;8375:118:29;;;;;:::i;:::-;-1:-1:-1;;;;;8466:14:29;;;8441:6;8466:14;;;:6;:14;;;;;;;;:20;;;;8375:118;7990:164;;;;;;;;;;-1:-1:-1;7990:164:29;;;;;:::i;:::-;;:::i;5397:52::-;;;;;;;;;;;;5433:16;5397:52;;9901:256;;;;;;;;;;-1:-1:-1;9901:256:29;;;;;:::i;:::-;;:::i;22160:376::-;;;;;;;;;;-1:-1:-1;22160:376:29;;;;;:::i;:::-;;:::i;7827:122::-;;;;;;;;;;-1:-1:-1;7827:122:29;;;;;:::i;:::-;;:::i;:::-;;;7080:14:81;;7073:22;7055:41;;7043:2;7028:18;7827:122:29;6915:187:81;11232:134:29;;;;;;;;;;-1:-1:-1;11232:134:29;;;;;:::i;:::-;;:::i;23443:181::-;;;;;;;;;;-1:-1:-1;23443:181:29;;;;;:::i;:::-;;:::i;:::-;;;8204:25:81;;;8192:2;8177:18;23443:181:29;8058:177:81;1208:484:57;;;;;;;;;;-1:-1:-1;1208:484:57;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6723:802:29:-;;;;;;;;;;-1:-1:-1;6723:802:29;;;;;:::i;:::-;;:::i;:::-;;;;10436:14:81;;10429:22;10411:41;;10500:10;10488:23;;;10483:2;10468:18;;10461:51;10384:18;6723:802:29;10245:273:81;10430:127:29;;;;;;;;;;-1:-1:-1;10430:127:29;;;;;:::i;:::-;;:::i;7697:89::-;;;;;;;;;;-1:-1:-1;7773:6:29;7697:89;;9323:418;;;;;;;;;;-1:-1:-1;9323:418:29;;;;;:::i;:::-;;:::i;15868:147::-;;;;;;;;;;-1:-1:-1;15868:147:29;;;;;:::i;:::-;;:::i;21011:1108::-;;;;;;;;;;-1:-1:-1;21011:1108:29;;;;;:::i;:::-;;:::i;17623:1373::-;;;;;;;;;;-1:-1:-1;17623:1373:29;;;;;:::i;:::-;;:::i;:::-;;;;11744:25:81;;;11817:10;11805:23;;;11800:2;11785:18;;11778:51;11717:18;17623:1373:29;11572:263:81;10598:247:29;;;;;;;;;;-1:-1:-1;10598:247:29;;;;;:::i;:::-;;:::i;15149:291::-;6237:18;:16;:18::i;:::-;15315:9:::1;15310:124;15330:20:::0;;::::1;15310:124;;;15371:52;15394:6;15402:9;;15412:1;15402:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;15416:6;15371:22;:52::i;:::-;15352:3;;15310:124;;;;15149:291:::0;;;;:::o;8699:134::-;-1:-1:-1;;;;;8795:14:29;;8770:6;8795:14;;;:6;:14;;;;;;;:25;;:31;;-1:-1:-1;;;8795:25:29;;-1:-1:-1;;;;;8795:25:29;:29;:31::i;:::-;8788:38;8699:134;-1:-1:-1;;8699:134:29:o;16618:133::-;6237:18;:16;:18::i;:::-;16712:32:::1;16729:6;16737;16712:16;:32::i;:::-;16618:133:::0;;:::o;23785:159::-;6237:18;:16;:18::i;:::-;23888:49:::1;::::0;-1:-1:-1;;;23888:49:29;;-1:-1:-1;;;;;12386:32:81;;;23888:49:29::1;::::0;::::1;12368:51:81::0;23888:35:29;::::1;::::0;::::1;::::0;12341:18:81;;23888:49:29::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23785:159:::0;;:::o;19732:1238::-;19818:6;735:10:55;19818:6:29;;19991:38;735:10:55;20016:6:29;20024:4;;19991:16;:38::i;:::-;19956:73;;;;20090:9;20089:10;:26;;;;-1:-1:-1;20103:12:29;;;;20089:26;20085:131;;;20168:6;20176;20184:20;20199:4;;20184:14;:20::i;:::-;20138:67;;-1:-1:-1;;;20138:67:29;;-1:-1:-1;;;;;12648:32:81;;;20138:67:29;;;12630:51:81;12717:32;;;;12697:18;;;12690:60;-1:-1:-1;;;;;;12786:33:81;12766:18;;;12759:61;12603:18;;20138:67:29;;;;;;;;20085:131;20226:19;20248:35;20262:6;20270;20278:4;;20248:13;:35::i;:::-;20226:57;-1:-1:-1;20293:12:29;20485;;;;;;:45;;;20501:24;20513:11;20501;:24::i;:::-;:29;;;;20485:45;20481:116;;;20554:32;20574:11;20554:19;:32::i;:::-;20546:40;;20481:116;20689:12;;20726:46;20743:6;20751:20;20766:4;;20751:14;:20::i;:::-;20726:16;:46::i;:::-;20711:12;:61;;;;20807:54;20837:6;20845:4;;20807:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20851:9:29;;-1:-1:-1;20807:29:29;;-1:-1:-1;;20807:54:29:i;:::-;-1:-1:-1;20908:12:29;:32;20958:5;-1:-1:-1;;;;;19732:1238:29;;;;;;:::o;10198:191::-;6237:18;:16;:18::i;:::-;10312:70:::1;10323:6;10331:7;10340:25;10358:6;10340:17;:25::i;:::-;10367:14;10312:10;:70::i;:::-;;10198:191:::0;;;:::o;8874:408::-;-1:-1:-1;;;;;9081:14:29;;8976:12;9081:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;9081:31:29;;;;;;;;;9131:12;;;;;;8976;;;;;9081:31;9192:22;;-1:-1:-1;;;9192:12:29;;-1:-1:-1;;;;;9192:12:29;:20;:22::i;:::-;8874:408;;9153:61;;-1:-1:-1;9153:61:29;-1:-1:-1;8874:408:29;-1:-1:-1;;;;8874:408:29:o;10886:126::-;6237:18;:16;:18::i;:::-;10977:28:::1;10991:6;10999:5;10977:13;:28::i;17246:184::-:0;17308:6;17345:14;;;:10;:14;;;;;:24;;;17386:21;17345:24;17386:10;:21::i;:::-;:37;;17414:9;17386:37;;;17410:1;17379:44;17246:184;-1:-1:-1;;;17246:184:29:o;8195:139::-;-1:-1:-1;;;;;8294:16:29;;8269:6;8294:16;;;;;;;;;;:27;;;:33;;-1:-1:-1;;;;;8294:27:29;:31;:33::i;11053:138::-;6237:18;:16;:18::i;:::-;11150:34:::1;11167:6;11175:8;11150:16;:34::i;7990:164::-:0;-1:-1:-1;;;;;8108:16:29;;8083:6;8108:16;;;;;;;;;;;-1:-1:-1;;;;;;8108:39:29;;;;;;;;;;-1:-1:-1;;;;;8108:39:29;7990:164;;;;:::o;9901:256::-;6237:18;:16;:18::i;:::-;-1:-1:-1;;;;;10002:20:29;::::1;::::0;;:45:::1;;-1:-1:-1::0;;;;;;10026:21:29;;::::1;;10002:45;9998:114;;;10070:31;::::0;-1:-1:-1;;;10070:31:29;;-1:-1:-1;;;;;1695:31:81;;10070::29::1;::::0;::::1;1677:50:81::0;1650:18;;10070:31:29::1;1533:200:81::0;9998:114:29::1;10136:6;-1:-1:-1::0;;;;;10126:24:29::1;;10144:5;;10126:24;;;;;;;:::i;:::-;;;;;;;;9901:256:::0;;;:::o;22160:376::-;22293:47;;;-1:-1:-1;;;22293:47:29;;;;;735:10:55;;22344:46:29;735:10:55;;22344:46:29;;22293:47;;;;;;;;;;;;;;;735:10:55;22293:47:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22293:97:29;;22289:175;;22413:40;;-1:-1:-1;;;22413:40:29;;-1:-1:-1;;;;;12386:32:81;;22413:40:29;;;12368:51:81;12341:18;;22413:40:29;12222:203:81;22289:175:29;22473:56;22493:35;22507:6;22515;22523:4;;22493:13;:35::i;:::-;22473:19;:56::i;7827:122::-;-1:-1:-1;;;;;7919:16:29;7896:4;7919:16;;;;;;;;;;:23;;;-1:-1:-1;;;7919:23:29;;;;;7827:122::o;11232:134::-;6237:18;:16;:18::i;:::-;11327:32:::1;11342:6;11350:8;11327:14;:32::i;23443:181::-:0;23548:7;23595:6;23603;23611:4;;23584:32;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23574:43;;;;;;23567:50;;23443:181;;;;;;:::o;1208:484:57:-;1374:12;;;1310:20;1374:12;;;;;;;;1276:22;;1485:4;-1:-1:-1;;;;;1473:24:57;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1463:34:57;-1:-1:-1;1512:9:57;1507:155;1527:15;;;1507:155;;;1576:75;1613:4;1633;;1638:1;1633:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1642;1620:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1576:28;:75::i;:::-;1563:7;1571:1;1563:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1544:3;;1507:155;;;;1671:14;1208:484;;;;:::o;6723:802:29:-;6848:14;6864:12;6892:22;6907:6;6892:14;:22::i;:::-;6888:631;;;-1:-1:-1;6938:5:29;;-1:-1:-1;6938:5:29;6930:17;;6888:631;6986:4;-1:-1:-1;;;;;6968:23:29;;;6964:555;;7234:30;7247:6;7255:8;7234:12;:30::i;:::-;7266:1;7226:42;;;;;;6964:555;7299:13;7315:39;7337:6;7345:8;7315:21;:39::i;:::-;7299:55;;7369:13;7384:19;7407:23;7415:6;7423;7407:7;:23::i;:::-;7368:62;;;;7451:8;:57;;7499:5;7506:1;7451:57;;;7463:17;;;;:12;7451:57;7444:64;;;;;;;6964:555;6723:802;;;;;;:::o;10430:127::-;6237:18;:16;:18::i;:::-;10522:28:::1;10534:6;10542:7;10522:11;:28::i;:::-;;10430:127:::0;;:::o;9323:418::-;9423:13;;-1:-1:-1;;;;;;;9475:21:29;;;9471:264;;-1:-1:-1;9520:4:29;;-1:-1:-1;9526:1:29;9512:16;;9471:264;9560:19;9581;9608:26;9618:6;9626:7;9608:9;:26::i;:::-;9559:75;;;;;;9656:12;:17;;9672:1;9656:17;;:53;;;;;9693:16;:14;:16::i;:::-;9677:32;;:12;:32;;;;9656:53;9648:76;-1:-1:-1;9711:12:29;-1:-1:-1;9648:76:29;;-1:-1:-1;9648:76:29;9471:264;9323:418;;;;;:::o;15868:147::-;6237:18;:16;:18::i;:::-;15970:38:::1;15991:6;15999:8;15970:20;:38::i;21011:1108::-:0;21104:6;735:10:55;21104:6:29;21182:20;21197:4;;21182:14;:20::i;:::-;21164:38;;21213:19;21235:35;21249:6;21257;21265:4;;21235:13;:35::i;:::-;21284:23;;;;:10;:23;;;;;:33;21213:57;;-1:-1:-1;21284:33:29;;;;:38;;21280:614;;21345:38;;-1:-1:-1;;;21345:38:29;;;;;8204:25:81;;;8177:18;;21345:38:29;8058:177:81;21280:614:29;21414:9;-1:-1:-1;;;;;21404:19:29;:6;-1:-1:-1;;;;;21404:19:29;;21400:494;;21573:12;21591:30;5433:16;21611:9;21591:7;:30::i;:::-;21572:49;;;21636:15;21657:76;21665:56;21681:39;21703:6;21711:8;21681:21;:39::i;21665:56::-;21723:9;21657:7;:76::i;:::-;21635:98;;;21752:7;21751:8;:23;;;;;21764:10;21763:11;21751:23;21747:137;;;21801:68;;-1:-1:-1;;;21801:68:29;;-1:-1:-1;;;;;16123:32:81;;;21801:68:29;;;16105:51:81;16192:32;;;16172:18;;;16165:60;16261:32;;16241:18;;;16234:60;-1:-1:-1;;;;;;16330:33:81;;16310:18;;;16303:61;16077:19;;21801:68:29;15876:494:81;21747:137:29;21425:469;;21400:494;21911:23;;;;:10;:23;;;;;;21904:40;;-1:-1:-1;;21904:40:29;;;;;22052:37;;-1:-1:-1;;;22008:29:29;;;;;;;;21911:23;;22052:37;;;22107:5;21011:1108;-1:-1:-1;;;;;;;;21011:1108:29:o;17623:1373::-;17745:19;;735:10:55;17745:19:29;17931:38;735:10:55;17956:6:29;17964:4;;17931:16;:38::i;:::-;17910:59;;;17980:14;18016:7;17997:26;;:16;:14;:16::i;:::-;:26;;;;:::i;:::-;17980:43;-1:-1:-1;18130:12:29;;;;;:44;;;18154:1;18147:4;:8;;;:26;;;;;18166:7;18159:14;;:4;:14;;;18147:26;18126:149;;;18227:6;18235;18243:20;18258:4;;18243:14;:20::i;18126:149::-;18347:23;18356:4;18347:23;;18362:7;18347:23;;:8;:23::i;:::-;18333:38;;18491:35;18505:6;18513;18521:4;;18491:13;:35::i;:::-;18477:49;;18537:31;18556:11;18537:18;:31::i;:::-;18690:23;;;;:10;:23;;;;;;;:29;;18743:40;;;-1:-1:-1;;18793:37:29;;;-1:-1:-1;;;18690:29:29;;;;;;;;18722:1;18690:33;18793:37;;;;;;;;;;;;;18845:66;;18690:33;;-1:-1:-1;18690:23:29;;18845:66;;;;18743:40;;18890:6;;18898;;18906:4;;;;18845:66;:::i;:::-;;;;;;;;17780:1216;;;17623:1373;;;;;;;:::o;10598:247::-;-1:-1:-1;;;;;10692:34:29;;735:10:55;10692:34:29;10688:102;;10749:30;;-1:-1:-1;;;10749:30:29;;;;;;;;;;;24298:503;735:10:55;24344:14:29;;24416:32;735:10:55;24344:14:29;809::55;24416:12:29;:32::i;:::-;24383:65;;;;24463:9;24458:337;;24492:5;:10;;24501:1;24492:10;24488:297;;24525:19;24550:33;24525:19;809:14:55;24550:21:29;:33::i;:::-;-1:-1:-1;24608:54:29;;-1:-1:-1;;;24608:54:29;;-1:-1:-1;;;;;17285:32:81;;24608:54:29;;;17267:51:81;-1:-1:-1;;;;;17354:31:81;;17334:18;;;17327:59;24522:61:29;;-1:-1:-1;17240:18:81;;;-1:-1:-1;24608:54:29;17095:297:81;24488::29;24701:69;24721:48;24735:6;24751:4;809:14:55;;23443:181:29;:::i;15599:228::-;-1:-1:-1;;;;;15706:16:29;;:8;:16;;;;;;;;;;;-1:-1:-1;;;;;;15706:39:29;;;;;;;;;;;;:48;;-1:-1:-1;;15706:48:29;-1:-1:-1;;;;;15706:48:29;;;;;;;;15769:51;;17541:52:81;;;15706:48:29;:16;15769:51;;17514:18:81;15769:51:29;;;;;;;15599:228;;;:::o;3609:130:70:-;3657:6;3676:12;3696:14;:4;-1:-1:-1;;;;;3696:12:70;;:14::i;:::-;-1:-1:-1;3675:35:70;;3609:130;-1:-1:-1;;;;3609:130:70:o;16921:164:29:-;-1:-1:-1;;;;;17003:16:29;;:8;:16;;;;;;;;;;;;:23;;:32;;;;;-1:-1:-1;;;17003:32:29;-1:-1:-1;;;;17003:32:29;;;;;;17050:28;;;;;17029:6;7080:14:81;7073:22;7055:41;;7043:2;7028:18;;6915:187;17050:28:29;;;;;;;;16921:164;;:::o;27316:378::-;27447:14;;27509:4;-1:-1:-1;;;;;27491:23:29;;;27487:201;;27537:26;27550:6;27558:4;;27537:12;:26::i;:::-;27530:33;;;;;;27487:201;27615:1;27601:15;;:76;;27632:45;27640:6;27648;27656:20;27671:4;;27656:14;:20::i;27632:45::-;27601:76;;;-1:-1:-1;27620:5:29;;-1:-1:-1;27620:5:29;27487:201;27316:378;;;;;;;:::o;29530:116::-;29597:6;29629:9;29636:1;29597:6;29629:4;;:9;:::i;:::-;29622:17;;;:::i;22726:676::-;22802:6;22839:23;;;:10;:23;;;;;:33;;;;;-1:-1:-1;;;22897:29:29;;;;22941:14;;;22937:294;;22978:38;;-1:-1:-1;;;22978:38:29;;;;;8204:25:81;;;8177:18;;22978:38:29;8058:177:81;22937:294:29;23049:16;:14;:16::i;:::-;23037:28;;:9;:28;;;23033:198;;;23088:34;;-1:-1:-1;;;23088:34:29;;;;;8204:25:81;;;8177:18;;23088:34:29;8058:177:81;23033:198:29;23143:21;23154:9;23143:10;:21::i;:::-;23139:92;;;23187:33;;-1:-1:-1;;;23187:33:29;;;;;8204:25:81;;;8177:18;;23187:33:29;8058:177:81;23139:92:29;23248:23;;;;:10;:23;;;;;;23241:40;;-1:-1:-1;;23241:40:29;;;23335:37;;;;;23259:11;;23335:37;;23248:23;23335:37;23390:5;22726:676;-1:-1:-1;;;22726:676:29:o;29720:153::-;29837:28;;;-1:-1:-1;;;;;18137:32:81;;;;29837:28:29;;;;18119:51:81;;;;-1:-1:-1;;;;;;18206:33:81;;;;18186:18;;;18179:61;29837:28:29;;;;;;;;;18092:18:81;;;;29837:28:29;;29827:39;;;;;;29720:153::o;2975:407:54:-;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:54;;3181:21;3154:56;;;18425:25:81;18466:18;;;18459:34;;;18398:18;;3154:56:54;18251:248:81;3098:123:54;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:54;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;:::-;3313:62;2975:407;-1:-1:-1;;;;;;2975:407:54:o;11543:1061:29:-;11701:4;-1:-1:-1;;;;;;;11721:21:29;;;11717:90;;11765:31;;-1:-1:-1;;;11765:31:29;;-1:-1:-1;;;;;1695:31:81;;11765::29;;;1677:50:81;1650:18;;11765:31:29;1533:200:81;11717:90:29;-1:-1:-1;;;;;11834:14:29;;11817;11834;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11834:31:29;;;;;;;;;:37;;;:42;;11909:585;;;;11965:10;11946:29;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;11938:37;;12023:55;;;;;;;;12038:5;12023:55;;;;;;12052:24;:14;:22;;2589:20:70;;;2508:108;12052:24:29;-1:-1:-1;;;;;12023:55:29;;;;;;-1:-1:-1;;;;;11989:14:29;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11989:31:29;;;;;;;;;:89;;;;;;;;;;;;-1:-1:-1;;;11989:89:29;-1:-1:-1;;;;;;11989:89:29;;;;;;;;;;;;;;11909:585;;;-1:-1:-1;;;;;12370:14:29;;12468:1;12370:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12370:31:29;;;;;;;;;:37;:113;;-1:-1:-1;;;12370:37:29;;;-1:-1:-1;;;;;12370:37:29;;12436:14;;12370:48;:113::i;:::-;-1:-1:-1;;;;;12322:14:29;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12322:31:29;;;;;;;;;12321:162;;-1:-1:-1;;;;;12321:162:29;;;-1:-1:-1;;;12321:162:29;-1:-1:-1;;12321:162:29;;;;;;;;;;;-1:-1:-1;11909:585:29;12509:62;;;18920:10:81;18908:23;;18890:42;;18980:14;18968:27;;18963:2;18948:18;;18941:55;19039:14;;19032:22;19012:18;;;19005:50;12509:62:29;;-1:-1:-1;;;;;12509:62:29;;;-1:-1:-1;;;;;12509:62:29;;;;;;;;18878:2:81;12509:62:29;;;-1:-1:-1;12588:9:29;11543:1061;-1:-1:-1;;;;;11543:1061:29:o;3393:159:70:-;3445:18;3465:17;3484:13;3516:29;3527:4;3533:11;:9;:11::i;:::-;3516:10;:29::i;:::-;3509:36;;;;;;3393:159;;;;;:::o;13560:285:29:-;-1:-1:-1;;;;;13643:20:29;;;;:45;;-1:-1:-1;;;;;;13667:21:29;;;;13643:45;13639:114;;;13711:31;;-1:-1:-1;;;13711:31:29;;-1:-1:-1;;;;;1695:31:81;;13711::29;;;1677:50:81;1650:18;;13711:31:29;1533:200:81;13639:114:29;-1:-1:-1;;;;;13763:14:29;;;;;;;:6;:14;;;;;;;;:20;;;:28;;-1:-1:-1;;13763:28:29;;;;;;;;;13807:31;;;13763:14;13807:31;13560:285;;:::o;29286:134::-;29346:4;29397:16;:14;:16::i;:::-;29369:44;;:24;7642:7;29369:9;:24;:::i;:::-;:44;;;;;29286:134;-1:-1:-1;;29286:134:29:o;14164:303::-;-1:-1:-1;;;;;14253:20:29;;;;:45;;-1:-1:-1;;;;;;14277:21:29;;;;14253:45;14249:114;;;14321:31;;-1:-1:-1;;;14321:31:29;;-1:-1:-1;;;;;1695:31:81;;14321::29;;;1677:50:81;1650:18;;14321:31:29;1533:200:81;14249:114:29;-1:-1:-1;;;;;14373:14:29;;;;;;;:6;:14;;;;;;;;:23;;;:34;;-1:-1:-1;;14373:34:29;-1:-1:-1;;;14373:34:29;;;;;;;;;14423:37;;;14373:14;14423:37;14164:303;;:::o;14614:374::-;-1:-1:-1;;;;;;;14701:21:29;;;14697:90;;14745:31;;-1:-1:-1;;;14745:31:29;;-1:-1:-1;;;;;1695:31:81;;14745::29;;;1677:50:81;1650:18;;14745:31:29;1533:200:81;14697:90:29;-1:-1:-1;;;;;14858:14:29;;14797:13;14858:14;;;:6;:14;;;;;;;:25;;:60;;-1:-1:-1;;;14858:25:29;;-1:-1:-1;;;;;14858:25:29;14895:8;7773:6;14858:36;:60::i;:::-;-1:-1:-1;;;;;14821:14:29;;;;;;:6;:14;;;;;;;;;:25;14820:98;;-1:-1:-1;;;;;14820:98:29;;;-1:-1:-1;;;14820:98:29;-1:-1:-1;;;;14820:98:29;;;;;;;;;;14934:47;;14820:98;;-1:-1:-1;14934:47:29;;;;14964:8;;14820:98;;19266:10:81;19254:23;;;;19236:42;;19326:14;19314:27;19309:2;19294:18;;19287:55;19224:2;19209:18;;19066:282;3916:253:54;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:54;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4023:67;;;;4107:55;4134:6;4142:7;4151:10;4107:26;:55::i;:::-;4100:62;3916:253;-1:-1:-1;;;;;3916:253:54:o;29025:157:29:-;29102:4;29141:34;29158:6;29166:8;29141:16;:34::i;:::-;29125:12;;:50;;29025:157;-1:-1:-1;;;29025:157:29:o;12865:400::-;12944:4;-1:-1:-1;;;;;;;12964:21:29;;;12960:90;;13008:31;;-1:-1:-1;;;13008:31:29;;-1:-1:-1;;;;;1695:31:81;;13008::29;;;1677:50:81;1650:18;;13008:31:29;1533:200:81;12960:90:29;-1:-1:-1;;;;;13064:14:29;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13064:31:29;;;;;;;;;:37;;;:42;;13060:85;;-1:-1:-1;13129:5:29;13122:12;;13060:85;-1:-1:-1;;;;;13162:14:29;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13162:31:29;;;;;;;;;;13155:38;;-1:-1:-1;;;;;;13155:38:29;;;13209:28;13162:31;;:14;13209:28;;;-1:-1:-1;13254:4:29;12865:400;;;;:::o;750:110:70:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;16170:287:29:-;-1:-1:-1;;;;;16323:16:29;;16260:13;16323:16;;;;;;;;;;:27;;;:62;;-1:-1:-1;;;;;16323:27:29;16362:8;7773:6;16323:38;:62::i;:::-;-1:-1:-1;;;;;16284:16:29;;:8;:16;;;;;;;;;;;;:27;;16283:102;;-1:-1:-1;;16283:102:29;-1:-1:-1;;;;;16283:102:29;;;;;;;;;;;16401:49;;19266:10:81;19254:23;;19236:42;;19326:14;19314:27;;19294:18;;;19287:55;;;;16283:102:29;;-1:-1:-1;16284:16:29;16401:49;;19209:18:81;16401:49:29;19066:282:81;3189:111:67;3247:7;3066:5;;;3281;;;3065:36;3060:42;;3273:20;2825:294;19190:272:29;19262:20;19285:23;;;:10;:23;;;;;:33;;;19332:18;;;;;:48;;;19355:25;19366:13;19355:10;:25::i;:::-;19354:26;19332:48;19328:128;;;19403:42;;-1:-1:-1;;;19403:42:29;;;;;8204:25:81;;;8177:18;;19403:42:29;8058:177:81;27798:1107:29;27879:14;;27937:1;27923:15;;27919:63;;;-1:-1:-1;27962:5:29;;-1:-1:-1;27962:5:29;27954:17;;27919:63;28014:4;-1:-1:-1;;;;;27996:23:29;;;27992:334;;28262:49;28283:4;28290:20;28305:4;;28290:14;:20::i;:::-;28262:12;:49::i;27992:334::-;28337:20;28359:13;28374:21;28399:27;28421:4;;28399:21;:27::i;:::-;28336:90;;;;;;28507:15;28506:16;:49;;;;;28526:29;28549:4;28526:14;:29::i;:::-;28502:97;;;28579:5;28586:1;28571:17;;;;;;;;;28502:97;28610:11;28623:21;28648:23;28656:6;28664;28648:7;:23::i;:::-;28609:62;;;;28686:6;28681:55;;28716:5;28723:1;28708:17;;;;;;;;;;;28681:55;28821:40;28830:14;28821:40;;28846:14;28821:40;;:8;:40::i;:::-;28880:10;;;;;;;-1:-1:-1;27798:1107:29;-1:-1:-1;;;;;;;;;27798:1107:29:o;25207:1678::-;25295:20;;;25388:1;25374:15;;25370:66;;;-1:-1:-1;25413:5:29;;-1:-1:-1;25413:5:29;;-1:-1:-1;25413:5:29;25405:20;;25370:66;25446:15;25464:20;25479:4;;25464:14;:20::i;:::-;25446:38;-1:-1:-1;;;;;;;25604:35:29;;-1:-1:-1;;;25604:35:29;;:89;;-1:-1:-1;;;;;;;25655:38:29;;-1:-1:-1;;;25655:38:29;25604:89;:146;;;-1:-1:-1;;;;;;;25709:41:29;;-1:-1:-1;;;25709:41:29;25604:146;:201;;;-1:-1:-1;;;;;;;25766:39:29;;-1:-1:-1;;;25766:39:29;25604:201;:262;;;-1:-1:-1;;;;;;;25821:45:29;;-1:-1:-1;;;25821:45:29;25604:262;25587:343;;;25899:4;5433:16;25917:1;25891:28;;;;;;;;;25587:343;-1:-1:-1;;;;;;26037:41:29;;-1:-1:-1;;;26037:41:29;;:98;;-1:-1:-1;;;;;;;26094:41:29;;-1:-1:-1;;;26094:41:29;26037:98;:161;;;-1:-1:-1;;;;;;;26151:47:29;;-1:-1:-1;;;26151:47:29;26037:161;26020:414;;;26266:14;26294:15;26304:4;26299;26294;;:15;:::i;:::-;26283:38;;;;;;;:::i;:::-;26266:55;;26335:12;26350:27;26370:6;26350:19;:27::i;:::-;26399:4;;-1:-1:-1;5433:16:29;;-1:-1:-1;26335:42:29;-1:-1:-1;26391:32:29;;-1:-1:-1;;;26391:32:29;26020:414;-1:-1:-1;;;;;;26553:35:29;;-1:-1:-1;;;26553:35:29;;:75;;-1:-1:-1;;;;;;;26592:36:29;;-1:-1:-1;;;26592:36:29;26553:75;26549:254;;;26687:13;26714:15;26724:4;26719;26714;;:15;:::i;:::-;26703:37;;;;;;;:::i;:::-;26687:53;;26762:4;26768:20;26781:6;-1:-1:-1;;;;;8466:14:29;;;8441:6;8466:14;;;:6;:14;;;;;;;;:20;;;;8375:118;26768:20;26790:1;26754:38;;;;;;;;;;26549:254;26821:5;26828:46;26858:4;26865:8;26828:21;:46::i;:::-;26876:1;26813:65;;;;;;;25207:1678;;;;;;:::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;12386:32:81;;4933:24:54;;;12368:51:81;12341:18;;4933:24:54;12222:203:81;4853:119:54;-1:-1:-1;4992:10:54;4985:17;;4033:390:70;4154:18;4174:13;4199:12;4214:10;:4;-1:-1:-1;;;;;4214:8:70;;:10::i;:::-;4199:25;;4234:14;4258:61;4267:10;4258:61;;4287:8;4279:16;;:5;:16;;;:39;;4317:1;4279:39;;;4298:16;4306:8;4298:5;:16;:::i;:::-;4258:61;;:8;:61::i;:::-;4234:86;;4353:7;4339:21;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4330:30;-1:-1:-1;5126:19:70;;;5120:2;5096:26;;;;;5089:2;5070:21;;;;;5069:54;:76;4370:46;;;;4033:390;;;;;;:::o;2868:307::-;4764:9;4771:2;4764:9;;;;-1:-1:-1;;;;;3062:11:70;;4800:9;4807:2;4800:9;;;;;;3092:19;;;;;:76;;3136:11;3149:10;3161:6;3092:76;;;3115:10;3127:1;3130;3092:76;3085:83;;;;;;2868:307;;;;;:::o;14296:213:68:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:68;;14452:2;14421:41;;;19969:36:81;20021:18;;;20014:34;;;19942:18;;14421:41:68;19788:266:81;14370:103:68;-1:-1:-1;14496:5:68;14296:213::o;5559:487:54:-;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;5686:354;5559:487;:::o;14:131:81:-;-1:-1:-1;;;;;89:31:81;;79:42;;69:70;;135:1;132;125:12;150:366;212:8;222:6;276:3;269:4;261:6;257:17;253:27;243:55;;294:1;291;284:12;243:55;-1:-1:-1;317:20:81;;-1:-1:-1;;;;;349:30:81;;346:50;;;392:1;389;382:12;346:50;429:4;421:6;417:17;405:29;;489:3;482:4;472:6;469:1;465:14;457:6;453:27;449:38;446:47;443:67;;;506:1;503;496:12;521:171;588:20;;-1:-1:-1;;;;;637:30:81;;627:41;;617:69;;682:1;679;672:12;617:69;521:171;;;:::o;697:642::-;799:6;807;815;823;876:2;864:9;855:7;851:23;847:32;844:52;;;892:1;889;882:12;844:52;931:9;918:23;950:31;975:5;950:31;:::i;:::-;1000:5;-1:-1:-1;1056:2:81;1041:18;;1028:32;-1:-1:-1;;;;;1072:30:81;;1069:50;;;1115:1;1112;1105:12;1069:50;1154:69;1215:7;1206:6;1195:9;1191:22;1154:69;:::i;:::-;1242:8;;-1:-1:-1;1128:95:81;-1:-1:-1;1296:37:81;;-1:-1:-1;1329:2:81;1314:18;;1296:37;:::i;:::-;1286:47;;697:642;;;;;;;:::o;1344:184::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;1494:28;1512:9;1494:28;:::i;1935:416::-;2000:6;2008;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2116:9;2103:23;2135:31;2160:5;2135:31;:::i;:::-;2185:5;-1:-1:-1;2242:2:81;2227:18;;2214:32;2284:15;;2277:23;2265:36;;2255:64;;2315:1;2312;2305:12;2255:64;2338:7;2328:17;;;1935:416;;;;;:::o;2356:388::-;2424:6;2432;2485:2;2473:9;2464:7;2460:23;2456:32;2453:52;;;2501:1;2498;2491:12;2453:52;2540:9;2527:23;2559:31;2584:5;2559:31;:::i;:::-;2609:5;-1:-1:-1;2666:2:81;2651:18;;2638:32;2679:33;2638:32;2679:33;:::i;2749:347::-;2800:8;2810:6;2864:3;2857:4;2849:6;2845:17;2841:27;2831:55;;2882:1;2879;2872:12;2831:55;-1:-1:-1;2905:20:81;;-1:-1:-1;;;;;2937:30:81;;2934:50;;;2980:1;2977;2970:12;2934:50;3017:4;3009:6;3005:17;2993:29;;3069:3;3062:4;3053:6;3045;3041:19;3037:30;3034:39;3031:59;;;3086:1;3083;3076:12;3101:544;3180:6;3188;3196;3249:2;3237:9;3228:7;3224:23;3220:32;3217:52;;;3265:1;3262;3255:12;3217:52;3304:9;3291:23;3323:31;3348:5;3323:31;:::i;:::-;3373:5;-1:-1:-1;3429:2:81;3414:18;;3401:32;-1:-1:-1;;;;;3445:30:81;;3442:50;;;3488:1;3485;3478:12;3442:50;3527:58;3577:7;3568:6;3557:9;3553:22;3527:58;:::i;:::-;3101:544;;3604:8;;-1:-1:-1;3501:84:81;;-1:-1:-1;;;;3101:544:81:o;3650:163::-;3717:20;;3777:10;3766:22;;3756:33;;3746:61;;3803:1;3800;3793:12;3818:391;3893:6;3901;3909;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;4001:28;4019:9;4001:28;:::i;:::-;3991:38;;4079:2;4068:9;4064:18;4051:32;4092:31;4117:5;4092:31;:::i;:::-;4142:5;-1:-1:-1;4166:37:81;4199:2;4184:18;;4166:37;:::i;:::-;4156:47;;3818:391;;;;;:::o;4214:319::-;4281:6;4289;4342:2;4330:9;4321:7;4317:23;4313:32;4310:52;;;4358:1;4355;4348:12;4310:52;4381:28;4399:9;4381:28;:::i;5002:256::-;5068:6;5076;5129:2;5117:9;5108:7;5104:23;5100:32;5097:52;;;5145:1;5142;5135:12;5097:52;5168:28;5186:9;5168:28;:::i;:::-;5158:38;;5215:37;5248:2;5237:9;5233:18;5215:37;:::i;:::-;5205:47;;5002:256;;;;;:::o;5263:180::-;5322:6;5375:2;5363:9;5354:7;5350:23;5346:32;5343:52;;;5391:1;5388;5381:12;5343:52;-1:-1:-1;5414:23:81;;5263:180;-1:-1:-1;5263:180:81:o;5649:247::-;5708:6;5761:2;5749:9;5740:7;5736:23;5732:32;5729:52;;;5777:1;5774;5767:12;5729:52;5816:9;5803:23;5835:31;5860:5;5835:31;:::i;5901:131::-;-1:-1:-1;;;;;;5975:32:81;;5965:43;;5955:71;;6022:1;6019;6012:12;6037:386;6104:6;6112;6165:2;6153:9;6144:7;6140:23;6136:32;6133:52;;;6181:1;6178;6171:12;6133:52;6220:9;6207:23;6239:31;6264:5;6239:31;:::i;:::-;6289:5;-1:-1:-1;6346:2:81;6331:18;;6318:32;6359;6318;6359;:::i;6428:482::-;6507:6;6515;6523;6576:2;6564:9;6555:7;6551:23;6547:32;6544:52;;;6592:1;6589;6582:12;6544:52;6615:28;6633:9;6615:28;:::i;7107:256::-;7173:6;7181;7234:2;7222:9;7213:7;7209:23;7205:32;7202:52;;;7250:1;7247;7240:12;7202:52;7273:28;7291:9;7273:28;:::i;:::-;7263:38;;7320:37;7353:2;7342:9;7338:18;7320:37;:::i;7368:685::-;7456:6;7464;7472;7480;7533:2;7521:9;7512:7;7508:23;7504:32;7501:52;;;7549:1;7546;7539:12;7501:52;7588:9;7575:23;7607:31;7632:5;7607:31;:::i;:::-;7657:5;-1:-1:-1;7714:2:81;7699:18;;7686:32;7727:33;7686:32;7727:33;:::i;:::-;7779:7;-1:-1:-1;7837:2:81;7822:18;;7809:32;-1:-1:-1;;;;;7853:30:81;;7850:50;;;7896:1;7893;7886:12;7850:50;7935:58;7985:7;7976:6;7965:9;7961:22;7935:58;:::i;:::-;7368:685;;;;-1:-1:-1;8012:8:81;-1:-1:-1;;;;7368:685:81:o;8240:447::-;8337:6;8345;8398:2;8386:9;8377:7;8373:23;8369:32;8366:52;;;8414:1;8411;8404:12;8366:52;8454:9;8441:23;-1:-1:-1;;;;;8479:6:81;8476:30;8473:50;;;8519:1;8516;8509:12;8473:50;8558:69;8619:7;8610:6;8599:9;8595:22;8558:69;:::i;:::-;8646:8;;8532:95;;-1:-1:-1;8240:447:81;-1:-1:-1;;;;8240:447:81:o;8692:1016::-;8852:4;8900:2;8889:9;8885:18;8930:2;8919:9;8912:21;8953:6;8988;8982:13;9019:6;9011;9004:22;9057:2;9046:9;9042:18;9035:25;;9119:2;9109:6;9106:1;9102:14;9091:9;9087:30;9083:39;9069:53;;9157:2;9149:6;9145:15;9178:1;9188:491;9202:6;9199:1;9196:13;9188:491;;;9295:2;9291:7;9279:9;9271:6;9267:22;9263:36;9258:3;9251:49;9329:6;9323:13;9371:2;9365:9;9402:8;9394:6;9387:24;9460:8;9455:2;9451;9447:11;9442:2;9434:6;9430:15;9424:45;9521:1;9516:2;9505:8;9497:6;9493:21;9489:30;9482:41;9596:2;9589;9585:7;9580:2;9570:8;9566:17;9562:31;9554:6;9550:44;9546:53;9536:63;;;;9634:2;9626:6;9622:15;9612:25;;9666:2;9661:3;9657:12;9650:19;;9224:1;9221;9217:9;9212:14;;9188:491;;;-1:-1:-1;9696:6:81;;8692:1016;-1:-1:-1;;;;;;8692:1016:81:o;9713:527::-;9789:6;9797;9805;9858:2;9846:9;9837:7;9833:23;9829:32;9826:52;;;9874:1;9871;9864:12;9826:52;9913:9;9900:23;9932:31;9957:5;9932:31;:::i;:::-;9982:5;-1:-1:-1;10039:2:81;10024:18;;10011:32;10052:33;10011:32;10052:33;:::i;:::-;10104:7;-1:-1:-1;10163:2:81;10148:18;;10135:32;10176;10135;10176;:::i;:::-;10227:7;10217:17;;;9713:527;;;;;:::o;10523:319::-;10590:6;10598;10651:2;10639:9;10630:7;10626:23;10622:32;10619:52;;;10667:1;10664;10657:12;10619:52;10706:9;10693:23;10725:31;10750:5;10725:31;:::i;10847:720::-;10934:6;10942;10950;10958;11011:2;10999:9;10990:7;10986:23;10982:32;10979:52;;;11027:1;11024;11017:12;10979:52;11066:9;11053:23;11085:31;11110:5;11085:31;:::i;:::-;11135:5;-1:-1:-1;11191:2:81;11176:18;;11163:32;-1:-1:-1;;;;;11207:30:81;;11204:50;;;11250:1;11247;11240:12;11204:50;11289:58;11339:7;11330:6;11319:9;11315:22;11289:58;:::i;:::-;11366:8;;-1:-1:-1;11263:84:81;-1:-1:-1;;11453:2:81;11438:18;;11425:32;11501:14;11488:28;;11476:41;;11466:69;;11531:1;11528;11521:12;11466:69;10847:720;;;;-1:-1:-1;10847:720:81;;-1:-1:-1;;10847:720:81:o;11840:127::-;11901:10;11896:3;11892:20;11889:1;11882:31;11932:4;11929:1;11922:15;11956:4;11953:1;11946:15;11972:245;12030:6;12083:2;12071:9;12062:7;12058:23;12054:32;12051:52;;;12099:1;12096;12089:12;12051:52;12138:9;12125:23;12157:30;12181:5;12157:30;:::i;12831:267::-;12920:6;12915:3;12908:19;12972:6;12965:5;12958:4;12953:3;12949:14;12936:43;-1:-1:-1;13024:1:81;12999:16;;;13017:4;12995:27;;;12988:38;;;;13080:2;13059:15;;;-1:-1:-1;;13055:29:81;13046:39;;;13042:50;;12831:267::o;13103:247::-;13262:2;13251:9;13244:21;13225:4;13282:62;13340:2;13329:9;13325:18;13317:6;13309;13282:62;:::i;:::-;13274:70;13103:247;-1:-1:-1;;;;13103:247:81:o;13355:249::-;13424:6;13477:2;13465:9;13456:7;13452:23;13448:32;13445:52;;;13493:1;13490;13483:12;13445:52;13525:9;13519:16;13544:30;13568:5;13544:30;:::i;13609:439::-;-1:-1:-1;;;;;13822:32:81;;;13804:51;;13891:32;;13886:2;13871:18;;13864:60;13960:2;13955;13940:18;;13933:30;;;-1:-1:-1;;13980:62:81;;14023:18;;14015:6;14007;13980:62;:::i;14053:127::-;14114:10;14109:3;14105:20;14102:1;14095:31;14145:4;14142:1;14135:15;14169:4;14166:1;14159:15;14318:331;14423:9;14434;14476:8;14464:10;14461:24;14458:44;;;14498:1;14495;14488:12;14458:44;14527:6;14517:8;14514:20;14511:40;;;14547:1;14544;14537:12;14511:40;-1:-1:-1;;14573:23:81;;;14618:25;;;;;-1:-1:-1;14318:331:81:o;14654:127::-;14715:10;14710:3;14706:20;14703:1;14696:31;14746:4;14743:1;14736:15;14770:4;14767:1;14760:15;14786:521;14863:4;14869:6;14929:11;14916:25;15023:2;15019:7;15008:8;14992:14;14988:29;14984:43;14964:18;14960:68;14950:96;;15042:1;15039;15032:12;14950:96;15069:33;;15121:20;;;-1:-1:-1;;;;;;15153:30:81;;15150:50;;;15196:1;15193;15186:12;15150:50;15229:4;15217:17;;-1:-1:-1;15260:14:81;15256:27;;;15246:38;;15243:58;;;15297:1;15294;15287:12;15312:211;15353:3;15391:5;15385:12;15435:6;15428:4;15421:5;15417:16;15412:3;15406:36;15497:1;15461:16;;15486:13;;;-1:-1:-1;15461:16:81;;15312:211;-1:-1:-1;15312:211:81:o;15528:343::-;15757:6;15749;15744:3;15731:33;15713:3;15792:6;15787:3;15783:16;15819:1;15815:2;15808:13;15837:28;15862:2;15854:6;15837:28;:::i;16375:179::-;16474:14;16443:22;;;16467;;;16439:51;;16502:23;;16499:49;;;16528:18;;:::i;16559:531::-;16810:14;16798:27;;16780:46;;-1:-1:-1;;;;;16862:32:81;;;16857:2;16842:18;;16835:60;16931:32;;16926:2;16911:18;;16904:60;17000:3;16995:2;16980:18;;16973:31;;;-1:-1:-1;;17021:63:81;;17064:19;;17056:6;17048;17021:63;:::i;:::-;17013:71;16559:531;-1:-1:-1;;;;;;;16559:531:81:o;17604:338::-;17724:19;;-1:-1:-1;;;;;;17761:29:81;;;17810:1;17802:10;;17799:137;;;-1:-1:-1;;;;;;17871:1:81;17867:11;;;17864:1;17860:19;17856:46;;;17848:55;;17844:82;;-1:-1:-1;17799:137:81;;17604:338;;;;:::o;18504:189::-;18633:3;18658:29;18683:3;18675:6;18658:29;:::i;19613:170::-;19710:10;19703:18;;;19683;;;19679:43;;19734:20;;19731:46;;;19757:18;;:::i"},"methodIdentifiers":{"ADMIN_ROLE()":"75b238fc","PUBLIC_ROLE()":"3ca7c02a","canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","execute(address,bytes)":"1cff79cd","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","multicall(bytes[])":"ac9650d8","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PUBLIC_ROLE\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"immediate\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"AccessManager is a central contract to store the permissions of a system. A smart contract under the control of an AccessManager instance is known as a target, and will inherit from the {AccessManaged} contract, be connected to this contract as its manager and implement the {AccessManaged-restricted} modifier on a set of functions selected to be permissioned. Note that any function without this setup won't be effectively restricted. The restriction rules for such functions are defined in terms of \\\"roles\\\" identified by an `uint64` and scoped by target (`address`) and function selectors (`bytes4`). These roles are stored in this contract and can be configured by admins (`ADMIN_ROLE` members) after a delay (see {getTargetAdminDelay}). For each target contract, admins can configure the following without any delay: * The target's {AccessManaged-authority} via {updateAuthority}. * Close or open a target via {setTargetClosed} keeping the permissions intact. * The roles that are allowed (or disallowed) to call a given function (identified by its selector) through {setTargetFunctionRole}. By default every address is member of the `PUBLIC_ROLE` and every target function is restricted to the `ADMIN_ROLE` until configured otherwise. Additionally, each role has the following configuration options restricted to this manager's admins: * A role's admin role via {setRoleAdmin} who can grant or revoke roles. * A role's guardian role via {setRoleGuardian} who's allowed to cancel operations. * A delay in which a role takes effect after being granted through {setGrantDelay}. * A delay of any target's admin action via {setTargetAdminDelay}. * A role label for discoverability purposes with {labelRole}. Any account can be added and removed into any number of these roles by using the {grantRole} and {revokeRole} functions restricted to each role's admin (see {getRoleAdmin}). Since all the permissions of the managed system can be modified by the admins of this instance, it is expected that they will be highly secured (e.g., a multisig or a well-configured DAO). NOTE: This contract implements a form of the {IAuthority} interface, but {canCall} has additional return data so it doesn't inherit `IAuthority`. It is however compatible with the `IAuthority` interface since the first 32 bytes of the return data are a boolean as expected by that interface. NOTE: Systems that implement other access control mechanisms (for example using {Ownable}) can be paired with an {AccessManager} by transferring permissions (ownership in the case of {Ownable}) directly to the {AccessManager}. Users will be able to interact with these contracts through the {execute} function, following the access rules registered in the {AccessManager}. Keep in mind that in that context, the msg.sender seen by restricted functions will be {AccessManager} itself. WARNING: When granting permissions over an {Ownable} or {AccessControl} contract to an {AccessManager}, be very mindful of the danger associated with functions such as {Ownable-renounceOwnership} or {AccessControl-renounceRole}.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}]},\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contract that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operation by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the case event of an accidental increase). Defaults to 5 days.\"},\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"}},\"stateVariables\":{\"ADMIN_ROLE\":{\"details\":\"The identifier of the admin role. Required to perform most configuration operations including other roles' management and target restrictions.\"},\"PUBLIC_ROLE\":{\"details\":\"The identifier of the public role. Automatically granted to all addresses with no delay.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/AccessManager.sol\":\"AccessManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/AccessManager.sol\":{\"keccak256\":\"0x874c56d0f80ee2acd419bd5cb587be74cd72d44f1e9dc6300590adcef1f80d07\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4913619915074c2129d26054abd84de2714488a33a8172f03296f5f88d8908f9\",\"dweb:/ipfs/QmaEkbs5PM5p3ugg7oBZa6MUpYJU45qMUGCpxrHiPMkVKs\"]},\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0xaba93d42cd70e1418782951132d97b31ddce5f50ad81090884b6d0e41caac9d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b110886f83e3e98a11255a3b56790322e8d83e513304dde71299406685fc6694\",\"dweb:/ipfs/QmPwroS7MUUk1EmsvaJqU6aarhQ8ewJtJMg7xxmTsaxZEv\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x8bbd8e639a2845206c2525c3e41892232a78372d952974bc1d2809b6879f6946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c92f1b562e8603218d97751af56733d2f695f16da82389d53139d5e63496a45\",\"dweb:/ipfs/QmRiVMRTFjYBHDt5mN4E6TMotiE28XgWxEBPGewp5GTZ9X\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":7230,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_targets","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(TargetConfig)7185_storage)"},{"astId":7235,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_roles","offset":0,"slot":"1","type":"t_mapping(t_uint64,t_struct(Role)7204_storage)"},{"astId":7240,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_schedules","offset":0,"slot":"2","type":"t_mapping(t_bytes32,t_struct(Schedule)7209_storage)"},{"astId":7242,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_executionId","offset":0,"slot":"3","type":"t_bytes32"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_bytes4":{"encoding":"inplace","label":"bytes4","numberOfBytes":"4"},"t_mapping(t_address,t_struct(Access)7191_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.Access)","numberOfBytes":"32","value":"t_struct(Access)7191_storage"},"t_mapping(t_address,t_struct(TargetConfig)7185_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.TargetConfig)","numberOfBytes":"32","value":"t_struct(TargetConfig)7185_storage"},"t_mapping(t_bytes32,t_struct(Schedule)7209_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessManager.Schedule)","numberOfBytes":"32","value":"t_struct(Schedule)7209_storage"},"t_mapping(t_bytes4,t_uint64)":{"encoding":"mapping","key":"t_bytes4","label":"mapping(bytes4 => uint64)","numberOfBytes":"32","value":"t_uint64"},"t_mapping(t_uint64,t_struct(Role)7204_storage)":{"encoding":"mapping","key":"t_uint64","label":"mapping(uint64 => struct AccessManager.Role)","numberOfBytes":"32","value":"t_struct(Role)7204_storage"},"t_struct(Access)7191_storage":{"encoding":"inplace","label":"struct AccessManager.Access","members":[{"astId":7187,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"since","offset":0,"slot":"0","type":"t_uint48"},{"astId":7190,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"delay","offset":6,"slot":"0","type":"t_userDefinedValueType(Delay)21760"}],"numberOfBytes":"32"},"t_struct(Role)7204_storage":{"encoding":"inplace","label":"struct AccessManager.Role","members":[{"astId":7196,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"members","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(Access)7191_storage)"},{"astId":7198,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"admin","offset":0,"slot":"1","type":"t_uint64"},{"astId":7200,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"guardian","offset":8,"slot":"1","type":"t_uint64"},{"astId":7203,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"grantDelay","offset":16,"slot":"1","type":"t_userDefinedValueType(Delay)21760"}],"numberOfBytes":"64"},"t_struct(Schedule)7209_storage":{"encoding":"inplace","label":"struct AccessManager.Schedule","members":[{"astId":7206,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"timepoint","offset":0,"slot":"0","type":"t_uint48"},{"astId":7208,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"nonce","offset":6,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(TargetConfig)7185_storage":{"encoding":"inplace","label":"struct AccessManager.TargetConfig","members":[{"astId":7179,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"allowedRoles","offset":0,"slot":"0","type":"t_mapping(t_bytes4,t_uint64)"},{"astId":7182,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"adminDelay","offset":0,"slot":"1","type":"t_userDefinedValueType(Delay)21760"},{"astId":7184,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"closed","offset":14,"slot":"1","type":"t_bool"}],"numberOfBytes":"64"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"},"t_uint64":{"encoding":"inplace","label":"uint64","numberOfBytes":"8"},"t_userDefinedValueType(Delay)21760":{"encoding":"inplace","label":"Time.Delay","numberOfBytes":"14"}}}}},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"IAccessManaged":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"uint32","name":"delay","type":"uint32"}],"name":"AccessManagedRequiredDelay","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isConsumingScheduledOp","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"authority()":"bf7e214f","isConsumingScheduledOp()":"8fb36037","setAuthority(address)":"7a9e5e4b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"name\":\"AccessManagedRequiredDelay\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isConsumingScheduledOp\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"setAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated.\"}},\"kind\":\"dev\",\"methods\":{\"authority()\":{\"details\":\"Returns the current authority.\"},\"isConsumingScheduledOp()\":{\"details\":\"Returns true only in the context of a delayed restricted call, at the moment that the scheduled operation is being consumed. Prevents denial of service for delayed restricted calls in the case that the contract performs attacker controlled calls.\"},\"setAuthority(address)\":{\"details\":\"Transfers control to a new authority. The caller must be the current authority.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":\"IAccessManaged\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0xaba93d42cd70e1418782951132d97b31ddce5f50ad81090884b6d0e41caac9d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b110886f83e3e98a11255a3b56790322e8d83e513304dde71299406685fc6694\",\"dweb:/ipfs/QmPwroS7MUUk1EmsvaJqU6aarhQ8ewJtJMg7xxmTsaxZEv\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"IAccessManager":{"abi":[{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerAlreadyScheduled","type":"error"},{"inputs":[],"name":"AccessManagerBadConfirmation","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerExpired","type":"error"},{"inputs":[{"internalType":"address","name":"initialAdmin","type":"address"}],"name":"AccessManagerInvalidInitialAdmin","type":"error"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerLockedRole","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotReady","type":"error"},{"inputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"}],"name":"AccessManagerNotScheduled","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"AccessManagerUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCall","type":"error"},{"inputs":[{"internalType":"address","name":"msgsender","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"AccessManagerUnauthorizedCancel","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AccessManagerUnauthorizedConsume","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"}],"name":"OperationExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"operationId","type":"bytes32"},{"indexed":true,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"schedule","type":"uint48"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"OperationScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"admin","type":"uint64"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"RoleGrantDelayChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"},{"indexed":false,"internalType":"bool","name":"newMember","type":"bool"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"RoleGuardianChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":false,"internalType":"string","name":"label","type":"string"}],"name":"RoleLabel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"delay","type":"uint32"},{"indexed":false,"internalType":"uint48","name":"since","type":"uint48"}],"name":"TargetAdminDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"closed","type":"bool"}],"name":"TargetClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes4","name":"selector","type":"bytes4"},{"indexed":true,"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"TargetFunctionRoleUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"uint32","name":"delay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"cancel","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"consumeScheduledOp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"getAccess","outputs":[{"internalType":"uint48","name":"since","type":"uint48"},{"internalType":"uint32","name":"currentDelay","type":"uint32"},{"internalType":"uint32","name":"pendingDelay","type":"uint32"},{"internalType":"uint48","name":"effect","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getNonce","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleAdmin","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGrantDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"getRoleGuardian","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getSchedule","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetAdminDelay","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"getTargetFunctionRole","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"isMember","type":"bool"},{"internalType":"uint32","name":"executionDelay","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"isTargetClosed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"string","name":"label","type":"string"}],"name":"labelRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minSetback","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint48","name":"when","type":"uint48"}],"name":"schedule","outputs":[{"internalType":"bytes32","name":"operationId","type":"bytes32"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setGrantDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"admin","type":"uint64"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"roleId","type":"uint64"},{"internalType":"uint64","name":"guardian","type":"uint64"}],"name":"setRoleGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newDelay","type":"uint32"}],"name":"setTargetAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"closed","type":"bool"}],"name":"setTargetClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4[]","name":"selectors","type":"bytes4[]"},{"internalType":"uint64","name":"roleId","type":"uint64"}],"name":"setTargetFunctionRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newAuthority","type":"address"}],"name":"updateAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"canCall(address,address,bytes4)":"b7009613","cancel(address,address,bytes)":"d6bb62c6","consumeScheduledOp(address,bytes)":"94c7d7ee","execute(address,bytes)":"1cff79cd","expiration()":"4665096d","getAccess(uint64,address)":"3078f114","getNonce(bytes32)":"4136a33c","getRoleAdmin(uint64)":"530dd456","getRoleGrantDelay(uint64)":"12be8727","getRoleGuardian(uint64)":"0b0a93ba","getSchedule(bytes32)":"3adc277a","getTargetAdminDelay(address)":"4c1da1e2","getTargetFunctionRole(address,bytes4)":"6d5115bd","grantRole(uint64,address,uint32)":"25c471a0","hasRole(uint64,address)":"d1f856ee","hashOperation(address,address,bytes)":"abd9bd2a","isTargetClosed(address)":"a166aa89","labelRole(uint64,string)":"853551b8","minSetback()":"cc1b6c81","renounceRole(uint64,address)":"fe0776f5","revokeRole(uint64,address)":"b7d2b162","schedule(address,bytes,uint48)":"f801a698","setGrantDelay(uint64,uint32)":"a64d95ce","setRoleAdmin(uint64,uint64)":"30cae187","setRoleGuardian(uint64,uint64)":"52962952","setTargetAdminDelay(address,uint32)":"d22b5989","setTargetClosed(address,bool)":"167bd395","setTargetFunctionRole(address,bytes4[],uint64)":"08d6122d","updateAuthority(address,address)":"18ff183c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerAlreadyScheduled\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"AccessManagerBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialAdmin\",\"type\":\"address\"}],\"name\":\"AccessManagerInvalidInitialAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerLockedRole\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotReady\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"}],\"name\":\"AccessManagerNotScheduled\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"AccessManagerUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"msgsender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"AccessManagerUnauthorizedCancel\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AccessManagerUnauthorizedConsume\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationCanceled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"name\":\"OperationExecuted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"schedule\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"OperationScheduled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"RoleGrantDelayChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"newMember\",\"type\":\"bool\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"RoleGuardianChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"RoleLabel\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"}],\"name\":\"TargetAdminDelayUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"TargetClosed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"},{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"TargetFunctionRoleUpdated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"canCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"allowed\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"delay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"cancel\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"consumeScheduledOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"execute\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"expiration\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getAccess\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"since\",\"type\":\"uint48\"},{\"internalType\":\"uint32\",\"name\":\"currentDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"pendingDelay\",\"type\":\"uint32\"},{\"internalType\":\"uint48\",\"name\":\"effect\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getNonce\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGrantDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"getRoleGuardian\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getSchedule\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"\",\"type\":\"uint48\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetAdminDelay\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"getTargetFunctionRole\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isMember\",\"type\":\"bool\"},{\"internalType\":\"uint32\",\"name\":\"executionDelay\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"hashOperation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"isTargetClosed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"label\",\"type\":\"string\"}],\"name\":\"labelRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minSetback\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint48\",\"name\":\"when\",\"type\":\"uint48\"}],\"name\":\"schedule\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"operationId\",\"type\":\"bytes32\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setGrantDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"admin\",\"type\":\"uint64\"}],\"name\":\"setRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"guardian\",\"type\":\"uint64\"}],\"name\":\"setRoleGuardian\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newDelay\",\"type\":\"uint32\"}],\"name\":\"setTargetAdminDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"closed\",\"type\":\"bool\"}],\"name\":\"setTargetClosed\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"selectors\",\"type\":\"bytes4[]\"},{\"internalType\":\"uint64\",\"name\":\"roleId\",\"type\":\"uint64\"}],\"name\":\"setTargetFunctionRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAuthority\",\"type\":\"address\"}],\"name\":\"updateAuthority\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"OperationCanceled(bytes32,uint32)\":{\"details\":\"A scheduled operation was canceled.\"},\"OperationExecuted(bytes32,uint32)\":{\"details\":\"A scheduled operation was executed.\"},\"OperationScheduled(bytes32,uint32,uint48,address,address,bytes)\":{\"details\":\"A delayed operation was scheduled.\"},\"RoleAdminChanged(uint64,uint64)\":{\"details\":\"Role acting as admin over a given `roleId` is updated.\"},\"RoleGrantDelayChanged(uint64,uint32,uint48)\":{\"details\":\"Grant delay for a given `roleId` will be updated to `delay` when `since` is reached.\"},\"RoleGranted(uint64,address,uint32,uint48,bool)\":{\"details\":\"Emitted when `account` is granted `roleId`. NOTE: The meaning of the `since` argument depends on the `newMember` argument. If the role is granted to a new member, the `since` argument indicates when the account becomes a member of the role, otherwise it indicates the execution delay for this account and roleId is updated.\"},\"RoleGuardianChanged(uint64,uint64)\":{\"details\":\"Role acting as guardian over a given `roleId` is updated.\"},\"RoleLabel(uint64,string)\":{\"details\":\"Informational labelling for a roleId.\"},\"RoleRevoked(uint64,address)\":{\"details\":\"Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous.\"},\"TargetAdminDelayUpdated(address,uint32,uint48)\":{\"details\":\"Admin delay for a given `target` will be updated to `delay` when `since` is reached.\"},\"TargetClosed(address,bool)\":{\"details\":\"Target mode is updated (true = closed, false = open).\"},\"TargetFunctionRoleUpdated(address,bytes4,uint64)\":{\"details\":\"Role required to invoke `selector` on `target` is updated to `roleId`.\"}},\"kind\":\"dev\",\"methods\":{\"canCall(address,address,bytes4)\":{\"details\":\"Check if an address (`caller`) is authorised to call a given function on a given contract directly (with no restriction). Additionally, it returns the delay needed to perform the call indirectly through the {schedule} & {execute} workflow. This function is usually called by the targeted contract to control immediate execution of restricted functions. Therefore we only return true if the call can be performed without any delay. If the call is subject to a previously set delay (not zero), then the function should return false and the caller should schedule the operation for future execution. If `immediate` is true, the delay can be disregarded and the operation can be immediately executed, otherwise the operation can be executed if and only if delay is greater than 0. NOTE: The IAuthority interface does not include the `uint32` delay. This is an extension of that interface that is backward compatible. Some contracts may thus ignore the second return argument. In that case they will fail to identify the indirect workflow, and will consider calls that require a delay to be forbidden. NOTE: This function does not report the permissions of the admin functions in the manager itself. These are defined by the {AccessManager} documentation.\"},\"cancel(address,address,bytes)\":{\"details\":\"Cancel a scheduled (delayed) operation. Returns the nonce that identifies the previously scheduled operation that is cancelled. Requirements: - the caller must be the proposer, a guardian of the targeted function, or a global admin Emits a {OperationCanceled} event.\"},\"consumeScheduledOp(address,bytes)\":{\"details\":\"Consume a scheduled operation targeting the caller. If such an operation exists, mark it as consumed (emit an {OperationExecuted} event and clean the state). Otherwise, throw an error. This is useful for contract that want to enforce that calls targeting them were scheduled on the manager, with all the verifications that it implies. Emit a {OperationExecuted} event.\"},\"execute(address,bytes)\":{\"details\":\"Execute a function that is delay restricted, provided it was properly scheduled beforehand, or the execution delay is 0. Returns the nonce that identifies the previously scheduled operation that is executed, or 0 if the operation wasn't previously scheduled (if the caller doesn't have an execution delay). Emits an {OperationExecuted} event only if the call was scheduled and delayed.\"},\"expiration()\":{\"details\":\"Expiration delay for scheduled proposals. Defaults to 1 week. IMPORTANT: Avoid overriding the expiration with 0. Otherwise every contract proposal will be expired immediately, disabling any scheduling usage.\"},\"getAccess(uint64,address)\":{\"details\":\"Get the access details for a given account for a given role. These details include the timepoint at which membership becomes active, and the delay applied to all operation by this user that requires this permission level. Returns: [0] Timestamp at which the account membership becomes valid. 0 means role is not granted. [1] Current execution delay for the account. [2] Pending execution delay for the account. [3] Timestamp at which the pending execution delay will become active. 0 means no delay update is scheduled.\"},\"getNonce(bytes32)\":{\"details\":\"Return the nonce for the latest scheduled operation with a given id. Returns 0 if the operation has never been scheduled.\"},\"getRoleAdmin(uint64)\":{\"details\":\"Get the id of the role that acts as an admin for the given role. The admin permission is required to grant the role, revoke the role and update the execution delay to execute an operation that is restricted to this role.\"},\"getRoleGrantDelay(uint64)\":{\"details\":\"Get the role current grant delay. Its value may change at any point without an event emitted following a call to {setGrantDelay}. Changes to this value, including effect timepoint are notified in advance by the {RoleGrantDelayChanged} event.\"},\"getRoleGuardian(uint64)\":{\"details\":\"Get the role that acts as a guardian for a given role. The guardian permission allows canceling operations that have been scheduled under the role.\"},\"getSchedule(bytes32)\":{\"details\":\"Return the timepoint at which a scheduled operation will be ready for execution. This returns 0 if the operation is not yet scheduled, has expired, was executed, or was canceled.\"},\"getTargetAdminDelay(address)\":{\"details\":\"Get the admin delay for a target contract. Changes to contract configuration are subject to this delay.\"},\"getTargetFunctionRole(address,bytes4)\":{\"details\":\"Get the role required to call a function.\"},\"grantRole(uint64,address,uint32)\":{\"details\":\"Add `account` to `roleId`, or change its execution delay. This gives the account the authorization to call any function that is restricted to this role. An optional execution delay (in seconds) can be set. If that delay is non 0, the user is required to schedule any operation that is restricted to members of this role. The user will only be able to execute the operation after the delay has passed, before it has expired. During this period, admin and guardians can cancel the operation (see {cancel}). If the account has already been granted this role, the execution delay will be updated. This update is not immediate and follows the delay rules. For example, if a user currently has a delay of 3 hours, and this is called to reduce that delay to 1 hour, the new delay will take some time to take effect, enforcing that any operation executed in the 3 hours that follows this update was indeed scheduled before this update. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - granted role must not be the `PUBLIC_ROLE` Emits a {RoleGranted} event.\"},\"hasRole(uint64,address)\":{\"details\":\"Check if a given account currently has the permission level corresponding to a given role. Note that this permission might be associated with an execution delay. {getAccess} can provide more details.\"},\"hashOperation(address,address,bytes)\":{\"details\":\"Hashing function for delayed operations.\"},\"isTargetClosed(address)\":{\"details\":\"Get whether the contract is closed disabling any access. Otherwise role permissions are applied. NOTE: When the manager itself is closed, admin functions are still accessible to avoid locking the contract.\"},\"labelRole(uint64,string)\":{\"details\":\"Give a label to a role, for improved role discoverability by UIs. Requirements: - the caller must be a global admin Emits a {RoleLabel} event.\"},\"minSetback()\":{\"details\":\"Minimum setback for all delay updates, with the exception of execution delays. It can be increased without setback (and reset via {revokeRole} in the case event of an accidental increase). Defaults to 5 days.\"},\"renounceRole(uint64,address)\":{\"details\":\"Renounce role permissions for the calling account with immediate effect. If the sender is not in the role this call has no effect. Requirements: - the caller must be `callerConfirmation`. Emits a {RoleRevoked} event if the account had the role.\"},\"revokeRole(uint64,address)\":{\"details\":\"Remove an account from a role, with immediate effect. If the account does not have the role, this call has no effect. Requirements: - the caller must be an admin for the role (see {getRoleAdmin}) - revoked role must not be the `PUBLIC_ROLE` Emits a {RoleRevoked} event if the account had the role.\"},\"schedule(address,bytes,uint48)\":{\"details\":\"Schedule a delayed operation for future execution, and return the operation identifier. It is possible to choose the timestamp at which the operation becomes executable as long as it satisfies the execution delays required for the caller. The special value zero will automatically set the earliest possible time. Returns the `operationId` that was scheduled. Since this value is a hash of the parameters, it can reoccur when the same parameters are used; if this is relevant, the returned `nonce` can be used to uniquely identify this scheduled operation from other occurrences of the same `operationId` in invocations of {execute} and {cancel}. Emits a {OperationScheduled} event. NOTE: It is not possible to concurrently schedule more than one operation with the same `target` and `data`. If this is necessary, a random byte can be appended to `data` to act as a salt that will be ignored by the target contract if it is using standard Solidity ABI encoding.\"},\"setGrantDelay(uint64,uint32)\":{\"details\":\"Update the delay for granting a `roleId`. Requirements: - the caller must be a global admin Emits a {RoleGrantDelayChanged} event.\"},\"setRoleAdmin(uint64,uint64)\":{\"details\":\"Change admin role for a given role. Requirements: - the caller must be a global admin Emits a {RoleAdminChanged} event\"},\"setRoleGuardian(uint64,uint64)\":{\"details\":\"Change guardian role for a given role. Requirements: - the caller must be a global admin Emits a {RoleGuardianChanged} event\"},\"setTargetAdminDelay(address,uint32)\":{\"details\":\"Set the delay for changing the configuration of a given target contract. Requirements: - the caller must be a global admin Emits a {TargetAdminDelayUpdated} event.\"},\"setTargetClosed(address,bool)\":{\"details\":\"Set the closed flag for a contract. Closing the manager itself won't disable access to admin methods to avoid locking the contract. Requirements: - the caller must be a global admin Emits a {TargetClosed} event.\"},\"setTargetFunctionRole(address,bytes4[],uint64)\":{\"details\":\"Set the role required to call functions identified by the `selectors` in the `target` contract. Requirements: - the caller must be a global admin Emits a {TargetFunctionRoleUpdated} event per selector.\"},\"updateAuthority(address,address)\":{\"details\":\"Changes the authority of a target managed by this manager instance. Requirements: - the caller must be a global admin\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":\"IAccessManager\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"IERC1363":{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":"value","type":"uint256"}],"name":"transferFrom","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":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"value","type":"uint256"}],"name":"transferFromAndCall","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","approveAndCall(address,uint256)":"3177029f","approveAndCall(address,uint256,bytes)":"cae9ca51","balanceOf(address)":"70a08231","supportsInterface(bytes4)":"01ffc9a7","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferAndCall(address,uint256)":"1296ee62","transferAndCall(address,uint256,bytes)":"4000aea0","transferFrom(address,address,uint256)":"23b872dd","transferFromAndCall(address,address,uint256)":"d8fbe994","transferFromAndCall(address,address,uint256,bytes)":"c1d34b89"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approveAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"approveAndCall\",\"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\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferAndCall\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"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\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferFromAndCall\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFromAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\",\"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 a `value` amount of tokens 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.\"},\"approveAndCall(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"approveAndCall(address,uint256,bytes)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `spender`.\",\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferAndCall(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferAndCall(address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFromAndCall(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferFromAndCall(address,address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}}},\"title\":\"IERC1363\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":\"IERC1363\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"IERC1967":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":\"IERC1967\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"IERC4626":{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"assetTokenAddress","type":"address"}],"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":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"totalManagedAssets","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"assetTokenAddress\",\"type\":\"address\"}],\"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\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxAssets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxShares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxShares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxAssets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"totalManagedAssets\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-4626 \\\"Tokenized Vault Standard\\\", as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\",\"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 a `value` amount of tokens 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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"deposit(uint256,address)\":{\"details\":\"Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of 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 a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC4626.sol\":\"IERC4626\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0x666c704c58d4cf404eecd6e4a898a87e25b00b45416678de914e160582c3ff17\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6def3cc823ae3f155da28a241a8ff91538222053ed9d78f415758a9133e211a1\",\"dweb:/ipfs/QmSriniszojh4UP4WQqxCJhq2XsbCAULcB4qRij4EYw9Gi\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"IERC1822Proxiable":{"abi":[{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"proxiableUUID()":"52d1902d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.\",\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":\"IERC1822Proxiable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"IERC1155Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"IERC20Errors":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"IERC721Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"ERC2771Context":{"abi":[{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"isTrustedForwarder(address)":"572b6c05","trustedForwarder()":"7da0a877"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Context variant with ERC-2771 support. WARNING: Avoid using this pattern in contracts that rely in a specific calldata length as they'll be affected by any forwarder whose `msg.data` is suffixed with the `from` address according to the ERC-2771 specification adding the address size in bytes (20) to the calldata size. An example of an unexpected behavior could be an unintended fallback (or another function) invocation while trying to invoke the `receive` function only accessible if `msg.data.length == 0`. WARNING: The usage of `delegatecall` in this contract is dangerous and may result in context corruption. Any forwarded request to this contract triggering a `delegatecall` to itself will result in an invalid {_msgSender} recovery.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"trustedForwarder()\":{\"details\":\"Returns the address of the trusted forwarder.\"}},\"stateVariables\":{\"_trustedForwarder\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":\"ERC2771Context\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0x0b030a33274bde015419d99e54c9164f876a7d10eb590317b79b1d5e4ab23d99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://68e5f96988198e8efd25ddef0d89750b4daebb7fd1204fa7f5eaccdfcb3398c8\",\"dweb:/ipfs/QmaM6nNkf9UmEtQraopuZamEWCdTWp7GvuN3pjMQrNCHxm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ERC1967Proxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}],"evm":{"bytecode":{"functionDebugData":{"@_10119":{"entryPoint":null,"id":10119,"parameterSlots":2,"returnSlots":0},"@_checkNonPayable_10425":{"entryPoint":383,"id":10425,"parameterSlots":0,"returnSlots":0},"@_revert_12579":{"entryPoint":511,"id":12579,"parameterSlots":1,"returnSlots":0},"@_setImplementation_10205":{"entryPoint":145,"id":10205,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_12497":{"entryPoint":268,"id":12497,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_10241":{"entryPoint":51,"id":10241,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_12537":{"entryPoint":416,"id":12537,"parameterSlots":3,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":572,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":779,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":552,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1763:81","nodeType":"YulBlock","src":"0:1763:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"46:95:81","nodeType":"YulBlock","src":"46:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:81","nodeType":"YulLiteral","src":"63:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:81","nodeType":"YulLiteral","src":"70:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:81","nodeType":"YulLiteral","src":"75:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:81","nodeType":"YulIdentifier","src":"66:3:81"},"nativeSrc":"66:20:81","nodeType":"YulFunctionCall","src":"66:20:81"}],"functionName":{"name":"mstore","nativeSrc":"56:6:81","nodeType":"YulIdentifier","src":"56:6:81"},"nativeSrc":"56:31:81","nodeType":"YulFunctionCall","src":"56:31:81"},"nativeSrc":"56:31:81","nodeType":"YulExpressionStatement","src":"56:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:81","nodeType":"YulLiteral","src":"103:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:81","nodeType":"YulLiteral","src":"106:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:81","nodeType":"YulIdentifier","src":"96:6:81"},"nativeSrc":"96:15:81","nodeType":"YulFunctionCall","src":"96:15:81"},"nativeSrc":"96:15:81","nodeType":"YulExpressionStatement","src":"96:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:81","nodeType":"YulLiteral","src":"127:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:81","nodeType":"YulLiteral","src":"130:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:81","nodeType":"YulIdentifier","src":"120:6:81"},"nativeSrc":"120:15:81","nodeType":"YulFunctionCall","src":"120:15:81"},"nativeSrc":"120:15:81","nodeType":"YulExpressionStatement","src":"120:15:81"}]},"name":"panic_error_0x41","nativeSrc":"14:127:81","nodeType":"YulFunctionDefinition","src":"14:127:81"},{"body":{"nativeSrc":"253:994:81","nodeType":"YulBlock","src":"253:994:81","statements":[{"body":{"nativeSrc":"299:16:81","nodeType":"YulBlock","src":"299:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"308:1:81","nodeType":"YulLiteral","src":"308:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"311:1:81","nodeType":"YulLiteral","src":"311:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"301:6:81","nodeType":"YulIdentifier","src":"301:6:81"},"nativeSrc":"301:12:81","nodeType":"YulFunctionCall","src":"301:12:81"},"nativeSrc":"301:12:81","nodeType":"YulExpressionStatement","src":"301:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"274:7:81","nodeType":"YulIdentifier","src":"274:7:81"},{"name":"headStart","nativeSrc":"283:9:81","nodeType":"YulIdentifier","src":"283:9:81"}],"functionName":{"name":"sub","nativeSrc":"270:3:81","nodeType":"YulIdentifier","src":"270:3:81"},"nativeSrc":"270:23:81","nodeType":"YulFunctionCall","src":"270:23:81"},{"kind":"number","nativeSrc":"295:2:81","nodeType":"YulLiteral","src":"295:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"266:3:81","nodeType":"YulIdentifier","src":"266:3:81"},"nativeSrc":"266:32:81","nodeType":"YulFunctionCall","src":"266:32:81"},"nativeSrc":"263:52:81","nodeType":"YulIf","src":"263:52:81"},{"nativeSrc":"324:29:81","nodeType":"YulVariableDeclaration","src":"324:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"343:9:81","nodeType":"YulIdentifier","src":"343:9:81"}],"functionName":{"name":"mload","nativeSrc":"337:5:81","nodeType":"YulIdentifier","src":"337:5:81"},"nativeSrc":"337:16:81","nodeType":"YulFunctionCall","src":"337:16:81"},"variables":[{"name":"value","nativeSrc":"328:5:81","nodeType":"YulTypedName","src":"328:5:81","type":""}]},{"body":{"nativeSrc":"416:16:81","nodeType":"YulBlock","src":"416:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"425:1:81","nodeType":"YulLiteral","src":"425:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"428:1:81","nodeType":"YulLiteral","src":"428:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"418:6:81","nodeType":"YulIdentifier","src":"418:6:81"},"nativeSrc":"418:12:81","nodeType":"YulFunctionCall","src":"418:12:81"},"nativeSrc":"418:12:81","nodeType":"YulExpressionStatement","src":"418:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"375:5:81","nodeType":"YulIdentifier","src":"375:5:81"},{"arguments":[{"name":"value","nativeSrc":"386:5:81","nodeType":"YulIdentifier","src":"386:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"401:3:81","nodeType":"YulLiteral","src":"401:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"406:1:81","nodeType":"YulLiteral","src":"406:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"397:3:81","nodeType":"YulIdentifier","src":"397:3:81"},"nativeSrc":"397:11:81","nodeType":"YulFunctionCall","src":"397:11:81"},{"kind":"number","nativeSrc":"410:1:81","nodeType":"YulLiteral","src":"410:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"393:3:81","nodeType":"YulIdentifier","src":"393:3:81"},"nativeSrc":"393:19:81","nodeType":"YulFunctionCall","src":"393:19:81"}],"functionName":{"name":"and","nativeSrc":"382:3:81","nodeType":"YulIdentifier","src":"382:3:81"},"nativeSrc":"382:31:81","nodeType":"YulFunctionCall","src":"382:31:81"}],"functionName":{"name":"eq","nativeSrc":"372:2:81","nodeType":"YulIdentifier","src":"372:2:81"},"nativeSrc":"372:42:81","nodeType":"YulFunctionCall","src":"372:42:81"}],"functionName":{"name":"iszero","nativeSrc":"365:6:81","nodeType":"YulIdentifier","src":"365:6:81"},"nativeSrc":"365:50:81","nodeType":"YulFunctionCall","src":"365:50:81"},"nativeSrc":"362:70:81","nodeType":"YulIf","src":"362:70:81"},{"nativeSrc":"441:15:81","nodeType":"YulAssignment","src":"441:15:81","value":{"name":"value","nativeSrc":"451:5:81","nodeType":"YulIdentifier","src":"451:5:81"},"variableNames":[{"name":"value0","nativeSrc":"441:6:81","nodeType":"YulIdentifier","src":"441:6:81"}]},{"nativeSrc":"465:39:81","nodeType":"YulVariableDeclaration","src":"465:39:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"489:9:81","nodeType":"YulIdentifier","src":"489:9:81"},{"kind":"number","nativeSrc":"500:2:81","nodeType":"YulLiteral","src":"500:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"485:3:81","nodeType":"YulIdentifier","src":"485:3:81"},"nativeSrc":"485:18:81","nodeType":"YulFunctionCall","src":"485:18:81"}],"functionName":{"name":"mload","nativeSrc":"479:5:81","nodeType":"YulIdentifier","src":"479:5:81"},"nativeSrc":"479:25:81","nodeType":"YulFunctionCall","src":"479:25:81"},"variables":[{"name":"offset","nativeSrc":"469:6:81","nodeType":"YulTypedName","src":"469:6:81","type":""}]},{"body":{"nativeSrc":"547:16:81","nodeType":"YulBlock","src":"547:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"556:1:81","nodeType":"YulLiteral","src":"556:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"559:1:81","nodeType":"YulLiteral","src":"559:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"549:6:81","nodeType":"YulIdentifier","src":"549:6:81"},"nativeSrc":"549:12:81","nodeType":"YulFunctionCall","src":"549:12:81"},"nativeSrc":"549:12:81","nodeType":"YulExpressionStatement","src":"549:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"519:6:81","nodeType":"YulIdentifier","src":"519:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"535:2:81","nodeType":"YulLiteral","src":"535:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"539:1:81","nodeType":"YulLiteral","src":"539:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"531:3:81","nodeType":"YulIdentifier","src":"531:3:81"},"nativeSrc":"531:10:81","nodeType":"YulFunctionCall","src":"531:10:81"},{"kind":"number","nativeSrc":"543:1:81","nodeType":"YulLiteral","src":"543:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"527:3:81","nodeType":"YulIdentifier","src":"527:3:81"},"nativeSrc":"527:18:81","nodeType":"YulFunctionCall","src":"527:18:81"}],"functionName":{"name":"gt","nativeSrc":"516:2:81","nodeType":"YulIdentifier","src":"516:2:81"},"nativeSrc":"516:30:81","nodeType":"YulFunctionCall","src":"516:30:81"},"nativeSrc":"513:50:81","nodeType":"YulIf","src":"513:50:81"},{"nativeSrc":"572:32:81","nodeType":"YulVariableDeclaration","src":"572:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"586:9:81","nodeType":"YulIdentifier","src":"586:9:81"},{"name":"offset","nativeSrc":"597:6:81","nodeType":"YulIdentifier","src":"597:6:81"}],"functionName":{"name":"add","nativeSrc":"582:3:81","nodeType":"YulIdentifier","src":"582:3:81"},"nativeSrc":"582:22:81","nodeType":"YulFunctionCall","src":"582:22:81"},"variables":[{"name":"_1","nativeSrc":"576:2:81","nodeType":"YulTypedName","src":"576:2:81","type":""}]},{"body":{"nativeSrc":"652:16:81","nodeType":"YulBlock","src":"652:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"661:1:81","nodeType":"YulLiteral","src":"661:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"664:1:81","nodeType":"YulLiteral","src":"664:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"654:6:81","nodeType":"YulIdentifier","src":"654:6:81"},"nativeSrc":"654:12:81","nodeType":"YulFunctionCall","src":"654:12:81"},"nativeSrc":"654:12:81","nodeType":"YulExpressionStatement","src":"654:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"631:2:81","nodeType":"YulIdentifier","src":"631:2:81"},{"kind":"number","nativeSrc":"635:4:81","nodeType":"YulLiteral","src":"635:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"627:3:81","nodeType":"YulIdentifier","src":"627:3:81"},"nativeSrc":"627:13:81","nodeType":"YulFunctionCall","src":"627:13:81"},{"name":"dataEnd","nativeSrc":"642:7:81","nodeType":"YulIdentifier","src":"642:7:81"}],"functionName":{"name":"slt","nativeSrc":"623:3:81","nodeType":"YulIdentifier","src":"623:3:81"},"nativeSrc":"623:27:81","nodeType":"YulFunctionCall","src":"623:27:81"}],"functionName":{"name":"iszero","nativeSrc":"616:6:81","nodeType":"YulIdentifier","src":"616:6:81"},"nativeSrc":"616:35:81","nodeType":"YulFunctionCall","src":"616:35:81"},"nativeSrc":"613:55:81","nodeType":"YulIf","src":"613:55:81"},{"nativeSrc":"677:23:81","nodeType":"YulVariableDeclaration","src":"677:23:81","value":{"arguments":[{"name":"_1","nativeSrc":"697:2:81","nodeType":"YulIdentifier","src":"697:2:81"}],"functionName":{"name":"mload","nativeSrc":"691:5:81","nodeType":"YulIdentifier","src":"691:5:81"},"nativeSrc":"691:9:81","nodeType":"YulFunctionCall","src":"691:9:81"},"variables":[{"name":"length","nativeSrc":"681:6:81","nodeType":"YulTypedName","src":"681:6:81","type":""}]},{"body":{"nativeSrc":"743:22:81","nodeType":"YulBlock","src":"743:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"745:16:81","nodeType":"YulIdentifier","src":"745:16:81"},"nativeSrc":"745:18:81","nodeType":"YulFunctionCall","src":"745:18:81"},"nativeSrc":"745:18:81","nodeType":"YulExpressionStatement","src":"745:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"715:6:81","nodeType":"YulIdentifier","src":"715:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"731:2:81","nodeType":"YulLiteral","src":"731:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"735:1:81","nodeType":"YulLiteral","src":"735:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"727:3:81","nodeType":"YulIdentifier","src":"727:3:81"},"nativeSrc":"727:10:81","nodeType":"YulFunctionCall","src":"727:10:81"},{"kind":"number","nativeSrc":"739:1:81","nodeType":"YulLiteral","src":"739:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"723:3:81","nodeType":"YulIdentifier","src":"723:3:81"},"nativeSrc":"723:18:81","nodeType":"YulFunctionCall","src":"723:18:81"}],"functionName":{"name":"gt","nativeSrc":"712:2:81","nodeType":"YulIdentifier","src":"712:2:81"},"nativeSrc":"712:30:81","nodeType":"YulFunctionCall","src":"712:30:81"},"nativeSrc":"709:56:81","nodeType":"YulIf","src":"709:56:81"},{"nativeSrc":"774:23:81","nodeType":"YulVariableDeclaration","src":"774:23:81","value":{"arguments":[{"kind":"number","nativeSrc":"794:2:81","nodeType":"YulLiteral","src":"794:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"788:5:81","nodeType":"YulIdentifier","src":"788:5:81"},"nativeSrc":"788:9:81","nodeType":"YulFunctionCall","src":"788:9:81"},"variables":[{"name":"memPtr","nativeSrc":"778:6:81","nodeType":"YulTypedName","src":"778:6:81","type":""}]},{"nativeSrc":"806:85:81","nodeType":"YulVariableDeclaration","src":"806:85:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"828:6:81","nodeType":"YulIdentifier","src":"828:6:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"852:6:81","nodeType":"YulIdentifier","src":"852:6:81"},{"kind":"number","nativeSrc":"860:4:81","nodeType":"YulLiteral","src":"860:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"848:3:81","nodeType":"YulIdentifier","src":"848:3:81"},"nativeSrc":"848:17:81","nodeType":"YulFunctionCall","src":"848:17:81"},{"arguments":[{"kind":"number","nativeSrc":"871:2:81","nodeType":"YulLiteral","src":"871:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"867:3:81","nodeType":"YulIdentifier","src":"867:3:81"},"nativeSrc":"867:7:81","nodeType":"YulFunctionCall","src":"867:7:81"}],"functionName":{"name":"and","nativeSrc":"844:3:81","nodeType":"YulIdentifier","src":"844:3:81"},"nativeSrc":"844:31:81","nodeType":"YulFunctionCall","src":"844:31:81"},{"kind":"number","nativeSrc":"877:2:81","nodeType":"YulLiteral","src":"877:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"840:3:81","nodeType":"YulIdentifier","src":"840:3:81"},"nativeSrc":"840:40:81","nodeType":"YulFunctionCall","src":"840:40:81"},{"arguments":[{"kind":"number","nativeSrc":"886:2:81","nodeType":"YulLiteral","src":"886:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"882:3:81","nodeType":"YulIdentifier","src":"882:3:81"},"nativeSrc":"882:7:81","nodeType":"YulFunctionCall","src":"882:7:81"}],"functionName":{"name":"and","nativeSrc":"836:3:81","nodeType":"YulIdentifier","src":"836:3:81"},"nativeSrc":"836:54:81","nodeType":"YulFunctionCall","src":"836:54:81"}],"functionName":{"name":"add","nativeSrc":"824:3:81","nodeType":"YulIdentifier","src":"824:3:81"},"nativeSrc":"824:67:81","nodeType":"YulFunctionCall","src":"824:67:81"},"variables":[{"name":"newFreePtr","nativeSrc":"810:10:81","nodeType":"YulTypedName","src":"810:10:81","type":""}]},{"body":{"nativeSrc":"966:22:81","nodeType":"YulBlock","src":"966:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"968:16:81","nodeType":"YulIdentifier","src":"968:16:81"},"nativeSrc":"968:18:81","nodeType":"YulFunctionCall","src":"968:18:81"},"nativeSrc":"968:18:81","nodeType":"YulExpressionStatement","src":"968:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"909:10:81","nodeType":"YulIdentifier","src":"909:10:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"929:2:81","nodeType":"YulLiteral","src":"929:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"933:1:81","nodeType":"YulLiteral","src":"933:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"925:3:81","nodeType":"YulIdentifier","src":"925:3:81"},"nativeSrc":"925:10:81","nodeType":"YulFunctionCall","src":"925:10:81"},{"kind":"number","nativeSrc":"937:1:81","nodeType":"YulLiteral","src":"937:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"921:3:81","nodeType":"YulIdentifier","src":"921:3:81"},"nativeSrc":"921:18:81","nodeType":"YulFunctionCall","src":"921:18:81"}],"functionName":{"name":"gt","nativeSrc":"906:2:81","nodeType":"YulIdentifier","src":"906:2:81"},"nativeSrc":"906:34:81","nodeType":"YulFunctionCall","src":"906:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"945:10:81","nodeType":"YulIdentifier","src":"945:10:81"},{"name":"memPtr","nativeSrc":"957:6:81","nodeType":"YulIdentifier","src":"957:6:81"}],"functionName":{"name":"lt","nativeSrc":"942:2:81","nodeType":"YulIdentifier","src":"942:2:81"},"nativeSrc":"942:22:81","nodeType":"YulFunctionCall","src":"942:22:81"}],"functionName":{"name":"or","nativeSrc":"903:2:81","nodeType":"YulIdentifier","src":"903:2:81"},"nativeSrc":"903:62:81","nodeType":"YulFunctionCall","src":"903:62:81"},"nativeSrc":"900:88:81","nodeType":"YulIf","src":"900:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1004:2:81","nodeType":"YulLiteral","src":"1004:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1008:10:81","nodeType":"YulIdentifier","src":"1008:10:81"}],"functionName":{"name":"mstore","nativeSrc":"997:6:81","nodeType":"YulIdentifier","src":"997:6:81"},"nativeSrc":"997:22:81","nodeType":"YulFunctionCall","src":"997:22:81"},"nativeSrc":"997:22:81","nodeType":"YulExpressionStatement","src":"997:22:81"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1035:6:81","nodeType":"YulIdentifier","src":"1035:6:81"},{"name":"length","nativeSrc":"1043:6:81","nodeType":"YulIdentifier","src":"1043:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1028:6:81","nodeType":"YulIdentifier","src":"1028:6:81"},"nativeSrc":"1028:22:81","nodeType":"YulFunctionCall","src":"1028:22:81"},"nativeSrc":"1028:22:81","nodeType":"YulExpressionStatement","src":"1028:22:81"},{"body":{"nativeSrc":"1100:16:81","nodeType":"YulBlock","src":"1100:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1109:1:81","nodeType":"YulLiteral","src":"1109:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1112:1:81","nodeType":"YulLiteral","src":"1112:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1102:6:81","nodeType":"YulIdentifier","src":"1102:6:81"},"nativeSrc":"1102:12:81","nodeType":"YulFunctionCall","src":"1102:12:81"},"nativeSrc":"1102:12:81","nodeType":"YulExpressionStatement","src":"1102:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1073:2:81","nodeType":"YulIdentifier","src":"1073:2:81"},{"name":"length","nativeSrc":"1077:6:81","nodeType":"YulIdentifier","src":"1077:6:81"}],"functionName":{"name":"add","nativeSrc":"1069:3:81","nodeType":"YulIdentifier","src":"1069:3:81"},"nativeSrc":"1069:15:81","nodeType":"YulFunctionCall","src":"1069:15:81"},{"kind":"number","nativeSrc":"1086:2:81","nodeType":"YulLiteral","src":"1086:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1065:3:81","nodeType":"YulIdentifier","src":"1065:3:81"},"nativeSrc":"1065:24:81","nodeType":"YulFunctionCall","src":"1065:24:81"},{"name":"dataEnd","nativeSrc":"1091:7:81","nodeType":"YulIdentifier","src":"1091:7:81"}],"functionName":{"name":"gt","nativeSrc":"1062:2:81","nodeType":"YulIdentifier","src":"1062:2:81"},"nativeSrc":"1062:37:81","nodeType":"YulFunctionCall","src":"1062:37:81"},"nativeSrc":"1059:57:81","nodeType":"YulIf","src":"1059:57:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1135:6:81","nodeType":"YulIdentifier","src":"1135:6:81"},{"kind":"number","nativeSrc":"1143:2:81","nodeType":"YulLiteral","src":"1143:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1131:3:81","nodeType":"YulIdentifier","src":"1131:3:81"},"nativeSrc":"1131:15:81","nodeType":"YulFunctionCall","src":"1131:15:81"},{"arguments":[{"name":"_1","nativeSrc":"1152:2:81","nodeType":"YulIdentifier","src":"1152:2:81"},{"kind":"number","nativeSrc":"1156:2:81","nodeType":"YulLiteral","src":"1156:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1148:3:81","nodeType":"YulIdentifier","src":"1148:3:81"},"nativeSrc":"1148:11:81","nodeType":"YulFunctionCall","src":"1148:11:81"},{"name":"length","nativeSrc":"1161:6:81","nodeType":"YulIdentifier","src":"1161:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"1125:5:81","nodeType":"YulIdentifier","src":"1125:5:81"},"nativeSrc":"1125:43:81","nodeType":"YulFunctionCall","src":"1125:43:81"},"nativeSrc":"1125:43:81","nodeType":"YulExpressionStatement","src":"1125:43:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1192:6:81","nodeType":"YulIdentifier","src":"1192:6:81"},{"name":"length","nativeSrc":"1200:6:81","nodeType":"YulIdentifier","src":"1200:6:81"}],"functionName":{"name":"add","nativeSrc":"1188:3:81","nodeType":"YulIdentifier","src":"1188:3:81"},"nativeSrc":"1188:19:81","nodeType":"YulFunctionCall","src":"1188:19:81"},{"kind":"number","nativeSrc":"1209:2:81","nodeType":"YulLiteral","src":"1209:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1184:3:81","nodeType":"YulIdentifier","src":"1184:3:81"},"nativeSrc":"1184:28:81","nodeType":"YulFunctionCall","src":"1184:28:81"},{"kind":"number","nativeSrc":"1214:1:81","nodeType":"YulLiteral","src":"1214:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"1177:6:81","nodeType":"YulIdentifier","src":"1177:6:81"},"nativeSrc":"1177:39:81","nodeType":"YulFunctionCall","src":"1177:39:81"},"nativeSrc":"1177:39:81","nodeType":"YulExpressionStatement","src":"1177:39:81"},{"nativeSrc":"1225:16:81","nodeType":"YulAssignment","src":"1225:16:81","value":{"name":"memPtr","nativeSrc":"1235:6:81","nodeType":"YulIdentifier","src":"1235:6:81"},"variableNames":[{"name":"value1","nativeSrc":"1225:6:81","nodeType":"YulIdentifier","src":"1225:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory","nativeSrc":"146:1101:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"211:9:81","nodeType":"YulTypedName","src":"211:9:81","type":""},{"name":"dataEnd","nativeSrc":"222:7:81","nodeType":"YulTypedName","src":"222:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"234:6:81","nodeType":"YulTypedName","src":"234:6:81","type":""},{"name":"value1","nativeSrc":"242:6:81","nodeType":"YulTypedName","src":"242:6:81","type":""}],"src":"146:1101:81"},{"body":{"nativeSrc":"1353:102:81","nodeType":"YulBlock","src":"1353:102:81","statements":[{"nativeSrc":"1363:26:81","nodeType":"YulAssignment","src":"1363:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1375:9:81","nodeType":"YulIdentifier","src":"1375:9:81"},{"kind":"number","nativeSrc":"1386:2:81","nodeType":"YulLiteral","src":"1386:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1371:3:81","nodeType":"YulIdentifier","src":"1371:3:81"},"nativeSrc":"1371:18:81","nodeType":"YulFunctionCall","src":"1371:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1363:4:81","nodeType":"YulIdentifier","src":"1363:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1405:9:81","nodeType":"YulIdentifier","src":"1405:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1420:6:81","nodeType":"YulIdentifier","src":"1420:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1436:3:81","nodeType":"YulLiteral","src":"1436:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1441:1:81","nodeType":"YulLiteral","src":"1441:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1432:3:81","nodeType":"YulIdentifier","src":"1432:3:81"},"nativeSrc":"1432:11:81","nodeType":"YulFunctionCall","src":"1432:11:81"},{"kind":"number","nativeSrc":"1445:1:81","nodeType":"YulLiteral","src":"1445:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1428:3:81","nodeType":"YulIdentifier","src":"1428:3:81"},"nativeSrc":"1428:19:81","nodeType":"YulFunctionCall","src":"1428:19:81"}],"functionName":{"name":"and","nativeSrc":"1416:3:81","nodeType":"YulIdentifier","src":"1416:3:81"},"nativeSrc":"1416:32:81","nodeType":"YulFunctionCall","src":"1416:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1398:6:81","nodeType":"YulIdentifier","src":"1398:6:81"},"nativeSrc":"1398:51:81","nodeType":"YulFunctionCall","src":"1398:51:81"},"nativeSrc":"1398:51:81","nodeType":"YulExpressionStatement","src":"1398:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1252:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1322:9:81","nodeType":"YulTypedName","src":"1322:9:81","type":""},{"name":"value0","nativeSrc":"1333:6:81","nodeType":"YulTypedName","src":"1333:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1344:4:81","nodeType":"YulTypedName","src":"1344:4:81","type":""}],"src":"1252:203:81"},{"body":{"nativeSrc":"1597:164:81","nodeType":"YulBlock","src":"1597:164:81","statements":[{"nativeSrc":"1607:27:81","nodeType":"YulVariableDeclaration","src":"1607:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"1627:6:81","nodeType":"YulIdentifier","src":"1627:6:81"}],"functionName":{"name":"mload","nativeSrc":"1621:5:81","nodeType":"YulIdentifier","src":"1621:5:81"},"nativeSrc":"1621:13:81","nodeType":"YulFunctionCall","src":"1621:13:81"},"variables":[{"name":"length","nativeSrc":"1611:6:81","nodeType":"YulTypedName","src":"1611:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"1649:3:81","nodeType":"YulIdentifier","src":"1649:3:81"},{"arguments":[{"name":"value0","nativeSrc":"1658:6:81","nodeType":"YulIdentifier","src":"1658:6:81"},{"kind":"number","nativeSrc":"1666:4:81","nodeType":"YulLiteral","src":"1666:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1654:3:81","nodeType":"YulIdentifier","src":"1654:3:81"},"nativeSrc":"1654:17:81","nodeType":"YulFunctionCall","src":"1654:17:81"},{"name":"length","nativeSrc":"1673:6:81","nodeType":"YulIdentifier","src":"1673:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"1643:5:81","nodeType":"YulIdentifier","src":"1643:5:81"},"nativeSrc":"1643:37:81","nodeType":"YulFunctionCall","src":"1643:37:81"},"nativeSrc":"1643:37:81","nodeType":"YulExpressionStatement","src":"1643:37:81"},{"nativeSrc":"1689:26:81","nodeType":"YulVariableDeclaration","src":"1689:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"1703:3:81","nodeType":"YulIdentifier","src":"1703:3:81"},{"name":"length","nativeSrc":"1708:6:81","nodeType":"YulIdentifier","src":"1708:6:81"}],"functionName":{"name":"add","nativeSrc":"1699:3:81","nodeType":"YulIdentifier","src":"1699:3:81"},"nativeSrc":"1699:16:81","nodeType":"YulFunctionCall","src":"1699:16:81"},"variables":[{"name":"_1","nativeSrc":"1693:2:81","nodeType":"YulTypedName","src":"1693:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"1731:2:81","nodeType":"YulIdentifier","src":"1731:2:81"},{"kind":"number","nativeSrc":"1735:1:81","nodeType":"YulLiteral","src":"1735:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"1724:6:81","nodeType":"YulIdentifier","src":"1724:6:81"},"nativeSrc":"1724:13:81","nodeType":"YulFunctionCall","src":"1724:13:81"},"nativeSrc":"1724:13:81","nodeType":"YulExpressionStatement","src":"1724:13:81"},{"nativeSrc":"1746:9:81","nodeType":"YulAssignment","src":"1746:9:81","value":{"name":"_1","nativeSrc":"1753:2:81","nodeType":"YulIdentifier","src":"1753:2:81"},"variableNames":[{"name":"end","nativeSrc":"1746:3:81","nodeType":"YulIdentifier","src":"1746:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"1460:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"1573:3:81","nodeType":"YulTypedName","src":"1573:3:81","type":""},{"name":"value0","nativeSrc":"1578:6:81","nodeType":"YulTypedName","src":"1578:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"1589:3:81","nodeType":"YulTypedName","src":"1589:3:81","type":""}],"src":"1460:301:81"}]},"contents":"{\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_addresst_bytes_memory_ptr_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, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value1 := memPtr\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_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040526040516103d03803806103d08339810160408190526100229161023c565b61002c8282610033565b5050610321565b61003c82610091565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561008557610080828261010c565b505050565b61008d61017f565b5050565b806001600160a01b03163b5f036100cb57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b031684604051610128919061030b565b5f60405180830381855af49150503d805f8114610160576040519150601f19603f3d011682016040523d82523d5f602084013e610165565b606091505b5090925090506101768583836101a0565b95945050505050565b341561019e5760405163b398979f60e01b815260040160405180910390fd5b565b6060826101b5576101b0826101ff565b6101f8565b81511580156101cc57506001600160a01b0384163b155b156101f557604051639996b31560e01b81526001600160a01b03851660048201526024016100c2565b50805b9392505050565b80511561020f5780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b634e487b7160e01b5f52604160045260245ffd5b5f5f6040838503121561024d575f5ffd5b82516001600160a01b0381168114610263575f5ffd5b60208401519092506001600160401b0381111561027e575f5ffd5b8301601f8101851361028e575f5ffd5b80516001600160401b038111156102a7576102a7610228565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102d5576102d5610228565b6040528181528282016020018710156102ec575f5ffd5b8160208401602083015e5f602083830101528093505050509250929050565b5f82518060208501845e5f920191825250919050565b60a38061032d5f395ff3fe6080604052600a600c565b005b60186014601a565b6050565b565b5f604b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f5f375f5f365f845af43d5f5f3e8080156069573d5ff35b3d5ffdfea2646970667358221220222a4cff90e803117ceaf8a27676f54b14cca2d082531d02b269155c24f748b464736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x3D0 CODESIZE SUB DUP1 PUSH2 0x3D0 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x23C JUMP JUMPDEST PUSH2 0x2C DUP3 DUP3 PUSH2 0x33 JUMP JUMPDEST POP POP PUSH2 0x321 JUMP JUMPDEST PUSH2 0x3C DUP3 PUSH2 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x85 JUMPI PUSH2 0x80 DUP3 DUP3 PUSH2 0x10C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8D PUSH2 0x17F JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xCB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x128 SWAP2 SWAP1 PUSH2 0x30B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x160 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x165 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x176 DUP6 DUP4 DUP4 PUSH2 0x1A0 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x19E JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1B5 JUMPI PUSH2 0x1B0 DUP3 PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x1F8 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1CC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1F5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC2 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x20F JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x263 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x27E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x28E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2A7 JUMPI PUSH2 0x2A7 PUSH2 0x228 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2D5 JUMPI PUSH2 0x2D5 PUSH2 0x228 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x2EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA3 DUP1 PUSH2 0x32D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0xC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x18 PUSH1 0x14 PUSH1 0x1A JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x4B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x69 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 0x2A 0x4C SELFDESTRUCT SWAP1 0xE8 SUB GT PUSH29 0xEAF8A27676F54B14CCA2D082531D02B269155C24F748B464736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"600:1117:43:-:0;;;1081:133;;;;;;;;;;;;;;;;;;:::i;:::-;1155:52;1185:14;1201:5;1155:29;:52::i;:::-;1081:133;;600:1117;;2264:344:44;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:44;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1671:281::-;1748:17;-1:-1:-1;;;;;1748:29:44;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:44;;-1:-1:-1;;;;;1416:32:81;;1805:47:44;;;1398:51:81;1371:18;;1805:47:44;;;;;;;;1744:119;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:44;-1:-1:-1;;;;;1872:73:44;;;;;;;;;;1671:281::o;3916:253:54:-;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:54;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4023:67:54;;-1:-1:-1;4023:67:54;-1:-1:-1;4107:55:54;4134:6;4023:67;;4107:26;:55::i;:::-;4100:62;3916:253;-1:-1:-1;;;;;3916:253:54:o;6113:122:44:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:44;;;;;;;;;;;6159:70;6113:122::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;1416:32:81;;4933:24:54;;;1398:51:81;1371:18;;4933:24:54;1252:203:81;4853:119:54;-1:-1:-1;4992:10:54;4605:408;4437:582;;;;;:::o;5559:487::-;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;14:127:81;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:1101;234:6;242;295:2;283:9;274:7;270:23;266:32;263:52;;;311:1;308;301:12;263:52;337:16;;-1:-1:-1;;;;;382:31:81;;372:42;;362:70;;428:1;425;418:12;362:70;500:2;485:18;;479:25;451:5;;-1:-1:-1;;;;;;516:30:81;;513:50;;;559:1;556;549:12;513:50;582:22;;635:4;627:13;;623:27;-1:-1:-1;613:55:81;;664:1;661;654:12;613:55;691:9;;-1:-1:-1;;;;;712:30:81;;709:56;;;745:18;;:::i;:::-;794:2;788:9;886:2;848:17;;-1:-1:-1;;844:31:81;;;877:2;840:40;836:54;824:67;;-1:-1:-1;;;;;906:34:81;;942:22;;;903:62;900:88;;;968:18;;:::i;:::-;1004:2;997:22;1028;;;1069:15;;;1086:2;1065:24;1062:37;-1:-1:-1;1059:57:81;;;1112:1;1109;1102:12;1059:57;1161:6;1156:2;1152;1148:11;1143:2;1135:6;1131:15;1125:43;1214:1;1209:2;1200:6;1192;1188:19;1184:28;1177:39;1235:6;1225:16;;;;;146:1101;;;;;:::o;1460:301::-;1589:3;1627:6;1621:13;1673:6;1666:4;1658:6;1654:17;1649:3;1643:37;1735:1;1699:16;;1724:13;;;-1:-1:-1;1699:16:81;1460:301;-1:-1:-1;1460:301:81:o;:::-;600:1117:43;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_10461":{"entryPoint":null,"id":10461,"parameterSlots":0,"returnSlots":0},"@_delegate_10437":{"entryPoint":80,"id":10437,"parameterSlots":1,"returnSlots":0},"@_fallback_10453":{"entryPoint":12,"id":10453,"parameterSlots":0,"returnSlots":0},"@_implementation_10131":{"entryPoint":26,"id":10131,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@getImplementation_10178":{"entryPoint":null,"id":10178,"parameterSlots":0,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"6080604052600a600c565b005b60186014601a565b6050565b565b5f604b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f5f375f5f365f845af43d5f5f3e8080156069573d5ff35b3d5ffdfea2646970667358221220222a4cff90e803117ceaf8a27676f54b14cca2d082531d02b269155c24f748b464736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0xC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x18 PUSH1 0x14 PUSH1 0x1A JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x4B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x69 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 0x2A 0x4C SELFDESTRUCT SWAP1 0xE8 SUB GT PUSH29 0xEAF8A27676F54B14CCA2D082531D02B269155C24F748B464736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"600:1117:43:-:0;;;2649:11:45;:9;:11::i;:::-;600:1117:43;2323:83:45;2371:28;2381:17;:15;:17::i;:::-;2371:9;:28::i;:::-;2323:83::o;1583:132:43:-;1650:7;1676:32;811:66:44;1519:53;-1:-1:-1;;;;;1519:53:44;;1441:138;1676:32:43;1669:39;;1583:132;:::o;949:895:45:-;1287:14;1284:1;1281;1268:34;1501:1;1498;1482:14;1479:1;1463:14;1456:5;1443:60;1577:16;1574:1;1571;1556:38;1615:6;1682:66;;;;1797:16;1794:1;1787:27;1682:66;1717:16;1714:1;1707:27"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"details\":\"This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation`. If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity constructor. Requirements: - If `data` is empty, `msg.value` must be zero.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":\"ERC1967Proxy\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0xc3f2ec76a3de8ed7a7007c46166f5550c72c7709e3fc7e8bb3111a7191cdedbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73efb4c2ca655882dc237c6b4f234a9bd36d97159d8fcaa837eb01171f726ac\",\"dweb:/ipfs/QmTNnnv7Gu5fs5G1ZMh7Fexp8N4XUs3XrNAngjcxgiss3e\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"ERC1967Utils":{"abi":[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"ERC1967InvalidAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122029bfc176834612a8c6b4d0568dbf45814ddc761e7fa582f438298e445e6eb6f264736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x29 0xBF 0xC1 PUSH23 0x834612A8C6B4D0568DBF45814DDC761E7FA582F438298E PREVRANDAO MCOPY PUSH15 0xB6F264736F6C634300081C00330000 ","sourceMap":"496:5741:44:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;496:5741:44;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122029bfc176834612a8c6b4d0568dbf45814ddc761e7fa582f438298e445e6eb6f264736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x29 0xBF 0xC1 PUSH23 0x834612A8C6B4D0568DBF45814DDC761E7FA582F438298E PREVRANDAO MCOPY PUSH15 0xB6F264736F6C634300081C00330000 ","sourceMap":"496:5741:44:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidBeacon\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\",\"errors\":{\"ERC1967InvalidAdmin(address)\":[{\"details\":\"The `admin` of the proxy is invalid.\"}],\"ERC1967InvalidBeacon(address)\":[{\"details\":\"The `beacon` of the proxy is invalid.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}]},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ADMIN_SLOT\":{\"details\":\"Storage slot with the admin of the contract. This is the keccak-256 hash of \\\"eip1967.proxy.admin\\\" subtracted by 1.\"},\"BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is the keccak-256 hash of \\\"eip1967.proxy.beacon\\\" subtracted by 1.\"},\"IMPLEMENTATION_SLOT\":{\"details\":\"Storage slot with the address of the current implementation. This is the keccak-256 hash of \\\"eip1967.proxy.implementation\\\" subtracted by 1.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":\"ERC1967Utils\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/Proxy.sol":{"Proxy":{"abi":[{"stateMutability":"payable","type":"fallback"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"details\":\"This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":\"Proxy\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0xc3f2ec76a3de8ed7a7007c46166f5550c72c7709e3fc7e8bb3111a7191cdedbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73efb4c2ca655882dc237c6b4f234a9bd36d97159d8fcaa837eb01171f726ac\",\"dweb:/ipfs/QmTNnnv7Gu5fs5G1ZMh7Fexp8N4XUs3XrNAngjcxgiss3e\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"IBeacon":{"abi":[{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"implementation()":"5c60da1b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is the interface that {BeaconProxy} expects of its beacon.\",\"kind\":\"dev\",\"methods\":{\"implementation()\":{\"details\":\"Must return an address that can be used as a delegate call target. {UpgradeableBeacon} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":\"IBeacon\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"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\":\"value\",\"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\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"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\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":10495,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":10501,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":10503,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":10505,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":10507,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/token/ERC20/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":"value","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":"value","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":"value","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.28+commit.7893614a\"},\"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\":\"value\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 standard as defined in the ERC.\",\"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 a `value` amount of tokens 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 value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of 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 a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` 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\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"ERC4626":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-4626 \\\"Tokenized Vault Standard\\\" as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. This extension allows the minting and burning of \\\"shares\\\" (represented using the ERC-20 inheritance) in exchange for underlying \\\"assets\\\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends the ERC-20 standard. Any additional extensions included along it would affect the \\\"shares\\\" token represented by this contract and not the \\\"assets\\\" token which is an independent contract. [CAUTION] ==== In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning with a \\\"donation\\\" to the vault that inflates the price of a share. This is variously known as a donation or inflation attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by verifying the amount received is as expected, using a wrapper that performs these checks such as https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router]. Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk. The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains. With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the underlying math can be found xref:erc4626.adoc#inflation-attack[here]. The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets will cause the first user to exit to experience reduced losses in detriment to the last users that will experience bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the `_convertToShares` and `_convertToAssets` functions. To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide]. ====\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"asset()\":{\"details\":\"See {IERC4626-asset}. \"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\"},\"convertToAssets(uint256)\":{\"details\":\"See {IERC4626-convertToAssets}. \"},\"convertToShares(uint256)\":{\"details\":\"See {IERC4626-convertToShares}. \"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"See {IERC4626-deposit}. \"},\"maxDeposit(address)\":{\"details\":\"See {IERC4626-maxDeposit}. \"},\"maxMint(address)\":{\"details\":\"See {IERC4626-maxMint}. \"},\"maxRedeem(address)\":{\"details\":\"See {IERC4626-maxRedeem}. \"},\"maxWithdraw(address)\":{\"details\":\"See {IERC4626-maxWithdraw}. \"},\"mint(uint256,address)\":{\"details\":\"See {IERC4626-mint}. \"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"See {IERC4626-previewDeposit}. \"},\"previewMint(uint256)\":{\"details\":\"See {IERC4626-previewMint}. \"},\"previewRedeem(uint256)\":{\"details\":\"See {IERC4626-previewRedeem}. \"},\"previewWithdraw(uint256)\":{\"details\":\"See {IERC4626-previewWithdraw}. \"},\"redeem(uint256,address,address)\":{\"details\":\"See {IERC4626-redeem}. \"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"See {IERC4626-totalAssets}. \"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"See {IERC4626-withdraw}. \"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":\"ERC4626\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0x666c704c58d4cf404eecd6e4a898a87e25b00b45416678de914e160582c3ff17\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6def3cc823ae3f155da28a241a8ff91538222053ed9d78f415758a9133e211a1\",\"dweb:/ipfs/QmSriniszojh4UP4WQqxCJhq2XsbCAULcB4qRij4EYw9Gi\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x6ef9389a2c07bc40d8a7ba48914724ab2c108fac391ce12314f01321813e6368\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b7a5cb39b1e6df68f4dd9a5e76e853d745a74ffb3dfd7df4ae4d2ace6992a171\",\"dweb:/ipfs/QmPbzKR19rdM8X3PLQjsmHRepUKhvoZnedSR63XyGtXZib\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x51aabf26e9682335ecf33b708cbcdf26e42bdc2f0a2e6fc09d6640219a0e00f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9423a1603d9145e142d50aa0f9a31199731733535501a7d3918d36b1deed78f2\",\"dweb:/ipfs/QmQAArNnrZVfKrbY3vGer2G6775HozDmGrsovtz5NFqGrP\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x4ea01544758fd2c7045961904686bfe232d2220a04ecaa2d6b08dac17827febf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fabe6bef5167ae741dd8c22d7f81d3f9120bd61b290762a2e8f176712567d329\",\"dweb:/ipfs/QmSnEitJ6xmf1SSAUeZozD7Gx7h8bNnX3a1ZBzqeivsvVg\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":10495,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":10501,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":10503,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":10505,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":10507,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"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":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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","decimals()":"313ce567","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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\":\"value\",\"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\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC-20 standard.\",\"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 a `value` amount of tokens 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 value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of 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 a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` 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\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"SafeERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"SafeERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220babbafff153e365405e8a6939aa8916e72f3bc7c1babe49a779ba0dfeaa356ae64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA 0xBB 0xAF SELFDESTRUCT ISZERO RETURNDATACOPY CALLDATASIZE SLOAD SDIV 0xE8 0xA6 SWAP4 SWAP11 0xA8 SWAP2 PUSH15 0x72F3BC7C1BABE49A779BA0DFEAA356 0xAE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"698:8692:51:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;698:8692:51;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220babbafff153e365405e8a6939aa8916e72f3bc7c1babe49a779ba0dfeaa356ae64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBA 0xBB 0xAF SELFDESTRUCT ISZERO RETURNDATACOPY CALLDATASIZE SLOAD SDIV 0xE8 0xA6 SWAP4 SWAP11 0xA8 SWAP2 PUSH15 0x72F3BC7C1BABE49A779BA0DFEAA356 0xAE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"698:8692:51:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentAllowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"requestedDecrease\",\"type\":\"uint256\"}],\"name\":\"SafeERC20FailedDecreaseAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers around ERC-20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\",\"errors\":{\"SafeERC20FailedDecreaseAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failed `decreaseAllowance` request.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"kind\":\"dev\",\"methods\":{},\"title\":\"SafeERC20\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"SafeERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x4ea01544758fd2c7045961904686bfe232d2220a04ecaa2d6b08dac17827febf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fabe6bef5167ae741dd8c22d7f81d3f9120bd61b290762a2e8f176712567d329\",\"dweb:/ipfs/QmSnEitJ6xmf1SSAUeZozD7Gx7h8bNnX3a1ZBzqeivsvVg\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"IERC721":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC-721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"IERC721Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC-721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"}},\"title\":\"ERC-721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Address.sol":{"Address":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220b14909cbe8c1510d49004908dfe9f8b4064f5305aaf77661f5a54e3d5276cf6664736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 BLOBHASH MULMOD 0xCB 0xE8 0xC1 MLOAD 0xD BLOBHASH STOP BLOBHASH ADDMOD 0xDF 0xE9 0xF8 0xB4 MOD 0x4F MSTORE8 SDIV 0xAA 0xF7 PUSH23 0x61F5A54E3D5276CF6664736F6C634300081C0033000000 ","sourceMap":"233:5815:54:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;233:5815:54;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220b14909cbe8c1510d49004908dfe9f8b4064f5305aaf77661f5a54e3d5276cf6664736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB1 BLOBHASH MULMOD 0xCB 0xE8 0xC1 MLOAD 0xD BLOBHASH STOP BLOBHASH ADDMOD 0xDF 0xE9 0xF8 0xB4 MOD 0x4F MSTORE8 SDIV 0xAA 0xF7 PUSH23 0x61F5A54E3D5276CF6664736F6C634300081C0033000000 ","sourceMap":"233:5815:54:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Errors.sol":{"Errors":{"abi":[{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"FailedDeployment","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MissingPrecompile","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212209e4da8aa5333ac8d389d2e409b786095cfb5076699894c42d09ca4aa483d24be64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP15 0x4D 0xA8 0xAA MSTORE8 CALLER 0xAC DUP14 CODESIZE SWAP14 0x2E BLOCKHASH SWAP12 PUSH25 0x6095CFB5076699894C42D09CA4AA483D24BE64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"411:484:56:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;411:484:56;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212209e4da8aa5333ac8d389d2e409b786095cfb5076699894c42d09ca4aa483d24be64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP15 0x4D 0xA8 0xAA MSTORE8 CALLER 0xAC DUP14 CODESIZE SWAP14 0x2E BLOCKHASH SWAP12 PUSH25 0x6095CFB5076699894C42D09CA4AA483D24BE64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"411:484:56:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedDeployment\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"MissingPrecompile\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of common custom errors used in multiple contracts IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. It is recommended to avoid relying on the error API for critical functionality. _Available since v5.1._\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"FailedDeployment()\":[{\"details\":\"The deployment failed.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"MissingPrecompile(address)\":[{\"details\":\"A necessary precompile is missing.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Errors.sol\":\"Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Multicall.sol":{"Multicall":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"multicall(bytes[])":"ac9650d8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"results\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides a function to batch together multiple calls in a single external call. Consider any assumption about calldata validation performed by the sender may be violated if it's not especially careful about sending transactions invoking {multicall}. For example, a relay address that filters function selectors won't filter calls nested within a {multicall} operation. NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}). If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data` to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of {_msgSender} are not propagated to subcalls.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"kind\":\"dev\",\"methods\":{\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Multicall.sol\":\"Multicall\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x8bbd8e639a2845206c2525c3e41892232a78372d952974bc1d2809b6879f6946\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c92f1b562e8603218d97751af56733d2f695f16da82389d53139d5e63496a45\",\"dweb:/ipfs/QmRiVMRTFjYBHDt5mN4E6TMotiE28XgWxEBPGewp5GTZ9X\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Packing.sol":{"Packing":{"abi":[{"inputs":[],"name":"OutOfRangeAccess","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200a677b4a78d55cd4d4b4f6f886c33f0d97143b081784b4df2d249b1ffff771dc64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXP PUSH8 0x7B4A78D55CD4D4B4 0xF6 0xF8 DUP7 0xC3 EXTCODEHASH 0xD SWAP8 EQ EXTCODESIZE ADDMOD OR DUP5 0xB4 0xDF 0x2D 0x24 SWAP12 0x1F SELFDESTRUCT 0xF7 PUSH18 0xDC64736F6C634300081C0033000000000000 ","sourceMap":"1103:63768:58:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1103:63768:58;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200a677b4a78d55cd4d4b4f6f886c33f0d97143b081784b4df2d249b1ffff771dc64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXP PUSH8 0x7B4A78D55CD4D4B4 0xF6 0xF8 DUP7 0xC3 EXTCODEHASH 0xD SWAP8 EQ EXTCODESIZE ADDMOD OR DUP5 0xB4 0xDF 0x2D 0x24 SWAP12 0x1F SELFDESTRUCT 0xF7 PUSH18 0xDC64736F6C634300081C0033000000000000 ","sourceMap":"1103:63768:58:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"OutOfRangeAccess\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Helper library packing and unpacking multiple values into bytesXX. Example usage: ```solidity library MyPacker {     type MyType is bytes32;     function _pack(address account, bytes4 selector, uint64 period) external pure returns (MyType) {         bytes12 subpack = Packing.pack_4_8(selector, bytes8(period));         bytes32 pack = Packing.pack_20_12(bytes20(account), subpack);         return MyType.wrap(pack);     }     function _unpack(MyType self) external pure returns (address, bytes4, uint64) {         bytes32 pack = MyType.unwrap(self);         return (             address(Packing.extract_32_20(pack, 0)),             Packing.extract_32_4(pack, 20),             uint64(Packing.extract_32_8(pack, 24))         );     } } ``` _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Packing.sol\":\"Packing\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Packing.sol\":{\"keccak256\":\"0xea9f5d3cdd11b7af7d8662a5c0e952f3666145cb4c9fe1452bd15c30abc462dd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fcae95be7077d103530c4e6a5f1248aa64102dad62d642e2530316ab002e02c\",\"dweb:/ipfs/QmWCr2qicfaqsTbpgq7CJhedUHcPQv34k8HNs4f5kGjVnw\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cca8e34ba4a10a3072e457ee409c3e14973552ffad66786674cea596605f229764736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCC 0xA8 0xE3 0x4B LOG4 LOG1 EXP ADDRESS PUSH19 0xE457EE409C3E14973552FFAD66786674CEA596 PUSH1 0x5F 0x22 SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"657:1315:59:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;657:1315:59;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cca8e34ba4a10a3072e457ee409c3e14973552ffad66786674cea596605f229764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCC 0xA8 0xE3 0x4B LOG4 LOG1 EXP ADDRESS PUSH19 0xE457EE409C3E14973552FFAD66786674CEA596 PUSH1 0x5F 0x22 SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"657:1315:59:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Helper library for emitting standardized panic codes. ```solidity contract Example {      using Panic for uint256;      // Use any of the declared internal constants      function foo() { Panic.GENERIC.panic(); }      // Alternatively      function foo() { Panic.panic(Panic.GENERIC); } } ``` Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ARRAY_OUT_OF_BOUNDS\":{\"details\":\"array out of bounds access\"},\"ASSERT\":{\"details\":\"used by the assert() builtin\"},\"DIVISION_BY_ZERO\":{\"details\":\"division or modulo by zero\"},\"EMPTY_ARRAY_POP\":{\"details\":\"empty array pop\"},\"ENUM_CONVERSION_ERROR\":{\"details\":\"enum conversion error\"},\"GENERIC\":{\"details\":\"generic / unspecified error\"},\"INVALID_INTERNAL_FUNCTION\":{\"details\":\"calling invalid internal function\"},\"RESOURCE_ERROR\":{\"details\":\"resource error (too large allocation or too large array)\"},\"STORAGE_ENCODING_ERROR\":{\"details\":\"invalid encoding in storage\"},\"UNDER_OVERFLOW\":{\"details\":\"arithmetic underflow or overflow\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Panic.sol\":\"Panic\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, consider using {ReentrancyGuardTransient} instead. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"errors\":{\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":16368,"contract":"@openzeppelin/contracts/utils/ReentrancyGuard.sol:ReentrancyGuard","label":"_status","offset":0,"slot":"0","type":"t_uint256"}],"types":{"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@openzeppelin/contracts/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202e11909616c8a357ae57cd11f3e744f7b7de3a3174b44a2b6467fa9904f2585764736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E GT SWAP1 SWAP7 AND 0xC8 LOG3 JUMPI 0xAE JUMPI 0xCD GT RETURN 0xE7 PREVRANDAO 0xF7 0xB7 0xDE GASPRICE BALANCE PUSH21 0xB44A2B6467FA9904F2585764736F6C634300081C00 CALLER ","sourceMap":"1407:2774:61:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1407:2774:61;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202e11909616c8a357ae57cd11f3e744f7b7de3a3174b44a2b6467fa9904f2585764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E GT SWAP1 SWAP7 AND 0xC8 LOG3 JUMPI 0xAE JUMPI 0xCD GT RETURN 0xE7 PREVRANDAO 0xF7 0xB7 0xDE GASPRICE BALANCE PUSH21 0xB44A2B6467FA9904F2585764736F6C634300081C00 CALLER ","sourceMap":"1407:2774:61:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 {     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;     function _getImplementation() internal view returns (address) {         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;     }     function _setImplementation(address newImplementation) internal {         require(newImplementation.code.length > 0);         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;     } } ``` TIP: Consider using this library along with {SlotDerivation}.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Strings.sol":{"Strings":{"abi":[{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"inputs":[],"name":"StringsInvalidAddressFormat","type":"error"},{"inputs":[],"name":"StringsInvalidChar","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122078e9399b9d77cd616993cf4f6af3d683914aba8a7a32ccc5b9e9e5232745f2b164736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0xE9399B9D77CD616993CF4F6AF3D683914ABA8A7A32CCC5B9E9 0xE5 0x23 0x27 GASLIMIT CALLCODE 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"297:16541:62:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;297:16541:62;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122078e9399b9d77cd616993cf4f6af3d683914aba8a7a32ccc5b9e9e5232745f2b164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH25 0xE9399B9D77CD616993CF4F6AF3D683914ABA8A7A32CCC5B9E9 0xE5 0x23 0x27 GASLIMIT CALLCODE 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"297:16541:62:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"StringsInsufficientHexLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidAddressFormat\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidChar\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"String operations.\",\"errors\":{\"StringsInsufficientHexLength(uint256,uint256)\":[{\"details\":\"The `value` string doesn't fit in the specified `length`.\"}],\"StringsInvalidAddressFormat()\":[{\"details\":\"The string being parsed is not a properly formatted address.\"}],\"StringsInvalidChar()\":[{\"details\":\"The string being parsed contains characters that are not in scope of the given base.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ECDSA":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202ef22f034d9ef93c3116f406f8a9011283259adf13a9fa2ff192c56c59d5435164736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E CALLCODE 0x2F SUB 0x4D SWAP15 0xF9 EXTCODECOPY BALANCE AND DELEGATECALL MOD 0xF8 0xA9 ADD SLT DUP4 0x25 SWAP11 0xDF SGT 0xA9 STATICCALL 0x2F CALL SWAP3 0xC5 PUSH13 0x59D5435164736F6C634300081C STOP CALLER ","sourceMap":"344:7470:63:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:7470:63;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202ef22f034d9ef93c3116f406f8a9011283259adf13a9fa2ff192c56c59d5435164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E CALLCODE 0x2F SUB 0x4D SWAP15 0xF9 EXTCODECOPY BALANCE AND DELEGATECALL MOD 0xF8 0xA9 ADD SLT DUP4 0x25 SWAP11 0xDF SGT 0xA9 STATICCALL 0x2F CALL SWAP3 0xC5 PUSH13 0x59D5435164736F6C634300081C STOP CALLER ","sourceMap":"344:7470:63:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220aaef879bd85b2512e70ddc7e9e27e29246bc6c6338bbfa9e2cae8d5f12aa47a364736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAA 0xEF DUP8 SWAP12 0xD8 JUMPDEST 0x25 SLT 0xE7 0xD 0xDC PUSH31 0x9E27E29246BC6C6338BBFA9E2CAE8D5F12AA47A364736F6C634300081C0033 ","sourceMap":"521:3181:64:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;521:3181:64;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220aaef879bd85b2512e70ddc7e9e27e29246bc6c6338bbfa9e2cae8d5f12aa47a364736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAA 0xEF DUP8 SWAP12 0xD8 JUMPDEST 0x25 SLT 0xE7 0xD 0xDC PUSH31 0x9E27E29246BC6C6338BBFA9E2CAE8D5F12AA47A364736F6C634300081C0033 ","sourceMap":"521:3181:64:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. The library provides methods for generating a hash of a message that conforms to the https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] specifications.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":\"MessageHashUtils\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x44f87e91783e88415bde66f1a63f6c7f0076f2d511548820407d5c95643ac56c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://13a51bc2b23827744dcf5bad10c69e72528cf015a6fe48c93632cdb2c0eb1251\",\"dweb:/ipfs/QmZwPA47Yqgje1qtkdEFEja8ntTahMStYzKf5q3JRnaR7d\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x4515543bc4c78561f6bea83ecfdfc3dead55bd59858287d682045b11de1ae575\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://60601f91440125727244fffd2ba84da7caafecaae0fd887c7ccfec678e02b61e\",\"dweb:/ipfs/QmZnKPBtVDiQS9Dp8gZ4sa3ZeTrWVfqF7yuUd6Y8hwm1Rs\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ```\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"IERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[ERC]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200d61d7ffd6d6da702d16871c3bfa0a3845d7eed52dd13e969ca105d4cfe2c6b064736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD PUSH2 0xD7FF 0xD6 0xD6 0xDA PUSH17 0x2D16871C3BFA0A3845D7EED52DD13E969C LOG1 SDIV 0xD4 0xCF 0xE2 0xC6 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"281:28026:67:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;281:28026:67;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200d61d7ffd6d6da702d16871c3bfa0a3845d7eed52dd13e969ca105d4cfe2c6b064736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD PUSH2 0xD7FF 0xD6 0xD6 0xDA PUSH17 0x2D16871C3BFA0A3845D7EED52DD13E969C LOG1 SDIV 0xD4 0xCF 0xE2 0xC6 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"281:28026:67:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/Math.sol\":\"Math\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"SafeCast":{"abi":[{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntDowncast","type":"error"},{"inputs":[{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntToUint","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212203f46a6ffb56326a473b5758acd55e32e99b937035796e94c7557579cea6fb9d464736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH CHAINID 0xA6 SELFDESTRUCT 0xB5 PUSH4 0x26A473B5 PUSH22 0x8ACD55E32E99B937035796E94C7557579CEA6FB9D464 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"769:34173:68:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;769:34173:68;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212203f46a6ffb56326a473b5758acd55e32e99b937035796e94c7557579cea6fb9d464736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH CHAINID 0xA6 SELFDESTRUCT 0xB5 PUSH4 0x26A473B5 PUSH22 0x8ACD55E32E99B937035796E94C7557579CEA6FB9D464 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"769:34173:68:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntToUint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always.\",\"errors\":{\"SafeCastOverflowedIntDowncast(uint8,int256)\":[{\"details\":\"Value doesn't fit in an int of `bits` size.\"}],\"SafeCastOverflowedIntToUint(int256)\":[{\"details\":\"An int value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208a55ed03b5bd2a413c0af052249d29c7f889c11b46b32ff454a480fb14df671c64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 SSTORE 0xED SUB 0xB5 0xBD 0x2A COINBASE EXTCODECOPY EXP CREATE MSTORE 0x24 SWAP14 0x29 0xC7 0xF8 DUP10 0xC1 SHL CHAINID 0xB3 0x2F DELEGATECALL SLOAD LOG4 DUP1 0xFB EQ 0xDF PUSH8 0x1C64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"258:2354:69:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;258:2354:69;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208a55ed03b5bd2a413c0af052249d29c7f889c11b46b32ff454a480fb14df671c64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 SSTORE 0xED SUB 0xB5 0xBD 0x2A COINBASE EXTCODECOPY EXP CREATE MSTORE 0x24 SWAP14 0x29 0xC7 0xF8 DUP10 0xC1 SHL CHAINID 0xB3 0x2F DELEGATECALL SLOAD LOG4 DUP1 0xFB EQ 0xDF PUSH8 0x1C64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"258:2354:69:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard signed math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SignedMath.sol\":\"SignedMath\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/types/Time.sol":{"Time":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cd9ccc12b48650d6671ff012e1a23d34a0fc464d74d5dc050e4fe3726890afb464736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCD SWAP13 0xCC SLT 0xB4 DUP7 POP 0xD6 PUSH8 0x1FF012E1A23D34A0 0xFC CHAINID 0x4D PUSH21 0xD5DC050E4FE3726890AFB464736F6C634300081C00 CALLER ","sourceMap":"640:4515:70:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;640:4515:70;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cd9ccc12b48650d6671ff012e1a23d34a0fc464d74d5dc050e4fe3726890afb464736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCD SWAP13 0xCC SLT 0xB4 DUP7 POP 0xD6 PUSH8 0x1FF012E1A23D34A0 0xFC CHAINID 0x4D PUSH21 0xD5DC050E4FE3726890AFB464736F6C634300081C00 CALLER ","sourceMap":"640:4515:70:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"This library provides helpers for manipulating time-related objects. It uses the following types: - `uint48` for timepoints - `uint32` for durations While the library doesn't provide specific types for timepoints and duration, it does provide: - a `Delay` type to represent duration that can be programmed to change value automatically at a given point - additional helper functions\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/types/Time.sol\":\"Time\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts-exposed/CashFlowLender.sol":{"$CashFlowLender":{"abi":[{"inputs":[{"internalType":"address","name":"trustedForwarder_","type":"address"},{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"uint256","name":"balanceReduction","type":"uint256"}],"name":"BalanceDecreasedOnResolve","type":"error"},{"inputs":[],"name":"CannotDeactivateTarget","type":"error"},{"inputs":[],"name":"CannotDeinvestYieldVault","type":"error"},{"inputs":[],"name":"CannotRefreshAssetWithCash","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"CashOutExceedsLimit","type":"error"},{"inputs":[{"internalType":"int256","name":"currentDebt","type":"int256"},{"internalType":"uint96","name":"debtLimit","type":"uint96"}],"name":"DebtLimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidPolicyPool","type":"error"},{"inputs":[],"name":"InvalidSlotSize","type":"error"},{"inputs":[],"name":"MustChangeYieldAssetBeforeRefresh","type":"error"},{"inputs":[],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"NothingToRefresh","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"OnlyPolicyPool","type":"error"},{"inputs":[],"name":"OutOfRangeAccess","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"RepaymentExceedsLimit","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TargetAlreadyExists","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"}],"name":"TargetNotActive","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"TargetNotFound","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"requiredSelector","type":"bytes4"}],"name":"UnauthorizedForward","type":"error"},{"inputs":[],"name":"YieldVaultIsRequired","type":"error"},{"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":false,"internalType":"address","name":"oldAsset","type":"address"},{"indexed":false,"internalType":"address","name":"newAsset","type":"address"}],"name":"AssetChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"destination","type":"address"}],"name":"CashOutPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"int256","name":"value","type":"int256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"int256","name":"totalDebtAfterChange","type":"int256"}],"name":"DebtChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"payer","type":"address"}],"name":"RepayDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"components":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"},{"internalType":"uint96","name":"debtLimit","type":"uint96"},{"internalType":"uint96","name":"minLiquidity","type":"uint96"}],"indexed":false,"internalType":"struct CashFlowLender.TargetConfig","name":"config","type":"tuple"}],"name":"TargetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldMinLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMinLiquidity","type":"uint256"}],"name":"TargetLimitsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"oldSlotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"TargetSlotSizeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"oldStatus","type":"uint8"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"TargetStatusChanged","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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"contract IERC4626","name":"newVault","type":"address"}],"name":"YieldVaultChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"currentDebt_","type":"int256"}],"name":"return$_changeDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"deinvested","type":"uint256"}],"name":"return$_deinvest","type":"event"},{"inputs":[],"name":"$CashFlowLenderStorageLocation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$ERC4626StorageLocation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$JAN_1ST_2025","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$SECONDS_PER_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"$__CashFlowLender_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"$__CashFlowLender_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$__Context_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$__Context_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"$__ERC20_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"$__ERC20_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"asset_","type":"address"}],"name":"$__ERC4626_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"asset_","type":"address"}],"name":"$__ERC4626_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$__UUPSUpgradeable_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$__UUPSUpgradeable_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bool","name":"emitEvent","type":"bool"}],"name":"$_approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newImpl","type":"address"}],"name":"$_authorizeUpgrade","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_balance","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"int256","name":"amount","type":"int256"}],"name":"$_changeDebt","outputs":[{"internalType":"int256","name":"currentDebt_","type":"int256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"$_checkCanForward","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_checkInitializing","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_checkNotDelegated","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_checkProxy","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"$_computeCalendarMonth","outputs":[{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$_contextSuffixLength","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"enum Math.Rounding","name":"rounding","type":"uint8"}],"name":"$_convertToAssets","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"enum Math.Rounding","name":"rounding","type":"uint8"}],"name":"$_convertToShares","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_decimalsOffset","outputs":[{"internalType":"uint8","name":"ret0","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"$_deinvest","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"$_deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_disableInitializers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_getERC4626StorageCFL","outputs":[{"components":[{"internalType":"contract IERC20","name":"_asset","type":"address"},{"internalType":"uint8","name":"_underlyingDecimals","type":"uint8"}],"internalType":"struct ERC4626Upgradeable.ERC4626Storage","name":"$","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$_getInitializedVersion","outputs":[{"internalType":"uint64","name":"ret0","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dayInYear","type":"uint256"},{"internalType":"bool","name":"isLeap","type":"bool"}],"name":"$_getMonth","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"$_getTargetConfig","outputs":[{"components":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"},{"internalType":"uint96","name":"debtLimit","type":"uint96"},{"internalType":"uint96","name":"minLiquidity","type":"uint96"}],"internalType":"struct CashFlowLender.TargetConfig","name":"targetConfig","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_isInitializing","outputs":[{"internalType":"bool","name":"ret0","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"$_makeSlotIndex","outputs":[{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"name":"$_makeTargetSlot","outputs":[{"internalType":"CashFlowLender.TargetSlot","name":"slot","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_msgData","outputs":[{"internalType":"bytes","name":"ret0","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_msgSender","outputs":[{"internalType":"address","name":"ret0","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"$_setYieldVault","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_spendAllowance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_transfer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_update","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"$_withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"$forwardNewPolicyWrapper","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"$forwardResolvePolicyWrapper","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$initializer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$notDelegated","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$onlyInitializing","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$onlyPolicyPool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$onlyProxy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"version","type":"uint64"}],"name":"$reinitializer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OWN_POLICY_SELECTOR","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOTSIZE_CALENDAR_MONTH","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__hh_exposed_bytecode_marker","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"addTarget","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"cashOutPayouts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cashWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDebt","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardNewPolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardNewPolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardResolvePolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardResolvePolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"name":"getDebtForPeriod","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetStatus","outputs":[{"internalType":"enum CashFlowLender.TargetStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"makeFakeSelector","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refreshAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"repayDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"setTargetLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"setTargetSlotSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"setTargetStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"assets","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_22066":{"entryPoint":null,"id":22066,"parameterSlots":2,"returnSlots":0},"@_23400":{"entryPoint":null,"id":23400,"parameterSlots":2,"returnSlots":0},"@_4786":{"entryPoint":null,"id":4786,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_5130":{"entryPoint":76,"id":5130,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_5161":{"entryPoint":null,"id":5161,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$25555_fromMemory":{"entryPoint":274,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_address":{"entryPoint":254,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:763:81","nodeType":"YulBlock","src":"0:763:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"59:86:81","nodeType":"YulBlock","src":"59:86:81","statements":[{"body":{"nativeSrc":"123:16:81","nodeType":"YulBlock","src":"123:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:81","nodeType":"YulLiteral","src":"132:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:81","nodeType":"YulLiteral","src":"135:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:81","nodeType":"YulIdentifier","src":"125:6:81"},"nativeSrc":"125:12:81","nodeType":"YulFunctionCall","src":"125:12:81"},"nativeSrc":"125:12:81","nodeType":"YulExpressionStatement","src":"125:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:81","nodeType":"YulIdentifier","src":"82:5:81"},{"arguments":[{"name":"value","nativeSrc":"93:5:81","nodeType":"YulIdentifier","src":"93:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:81","nodeType":"YulLiteral","src":"108:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:81","nodeType":"YulLiteral","src":"113:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:81","nodeType":"YulIdentifier","src":"104:3:81"},"nativeSrc":"104:11:81","nodeType":"YulFunctionCall","src":"104:11:81"},{"kind":"number","nativeSrc":"117:1:81","nodeType":"YulLiteral","src":"117:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:19:81","nodeType":"YulFunctionCall","src":"100:19:81"}],"functionName":{"name":"and","nativeSrc":"89:3:81","nodeType":"YulIdentifier","src":"89:3:81"},"nativeSrc":"89:31:81","nodeType":"YulFunctionCall","src":"89:31:81"}],"functionName":{"name":"eq","nativeSrc":"79:2:81","nodeType":"YulIdentifier","src":"79:2:81"},"nativeSrc":"79:42:81","nodeType":"YulFunctionCall","src":"79:42:81"}],"functionName":{"name":"iszero","nativeSrc":"72:6:81","nodeType":"YulIdentifier","src":"72:6:81"},"nativeSrc":"72:50:81","nodeType":"YulFunctionCall","src":"72:50:81"},"nativeSrc":"69:70:81","nodeType":"YulIf","src":"69:70:81"}]},"name":"validator_revert_address","nativeSrc":"14:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:81","nodeType":"YulTypedName","src":"48:5:81","type":""}],"src":"14:131:81"},{"body":{"nativeSrc":"269:287:81","nodeType":"YulBlock","src":"269:287:81","statements":[{"body":{"nativeSrc":"315:16:81","nodeType":"YulBlock","src":"315:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"324:1:81","nodeType":"YulLiteral","src":"324:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"327:1:81","nodeType":"YulLiteral","src":"327:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"317:6:81","nodeType":"YulIdentifier","src":"317:6:81"},"nativeSrc":"317:12:81","nodeType":"YulFunctionCall","src":"317:12:81"},"nativeSrc":"317:12:81","nodeType":"YulExpressionStatement","src":"317:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"290:7:81","nodeType":"YulIdentifier","src":"290:7:81"},{"name":"headStart","nativeSrc":"299:9:81","nodeType":"YulIdentifier","src":"299:9:81"}],"functionName":{"name":"sub","nativeSrc":"286:3:81","nodeType":"YulIdentifier","src":"286:3:81"},"nativeSrc":"286:23:81","nodeType":"YulFunctionCall","src":"286:23:81"},{"kind":"number","nativeSrc":"311:2:81","nodeType":"YulLiteral","src":"311:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"282:3:81","nodeType":"YulIdentifier","src":"282:3:81"},"nativeSrc":"282:32:81","nodeType":"YulFunctionCall","src":"282:32:81"},"nativeSrc":"279:52:81","nodeType":"YulIf","src":"279:52:81"},{"nativeSrc":"340:29:81","nodeType":"YulVariableDeclaration","src":"340:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"359:9:81","nodeType":"YulIdentifier","src":"359:9:81"}],"functionName":{"name":"mload","nativeSrc":"353:5:81","nodeType":"YulIdentifier","src":"353:5:81"},"nativeSrc":"353:16:81","nodeType":"YulFunctionCall","src":"353:16:81"},"variables":[{"name":"value","nativeSrc":"344:5:81","nodeType":"YulTypedName","src":"344:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"403:5:81","nodeType":"YulIdentifier","src":"403:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"378:24:81","nodeType":"YulIdentifier","src":"378:24:81"},"nativeSrc":"378:31:81","nodeType":"YulFunctionCall","src":"378:31:81"},"nativeSrc":"378:31:81","nodeType":"YulExpressionStatement","src":"378:31:81"},{"nativeSrc":"418:15:81","nodeType":"YulAssignment","src":"418:15:81","value":{"name":"value","nativeSrc":"428:5:81","nodeType":"YulIdentifier","src":"428:5:81"},"variableNames":[{"name":"value0","nativeSrc":"418:6:81","nodeType":"YulIdentifier","src":"418:6:81"}]},{"nativeSrc":"442:40:81","nodeType":"YulVariableDeclaration","src":"442:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"467:9:81","nodeType":"YulIdentifier","src":"467:9:81"},{"kind":"number","nativeSrc":"478:2:81","nodeType":"YulLiteral","src":"478:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"463:3:81","nodeType":"YulIdentifier","src":"463:3:81"},"nativeSrc":"463:18:81","nodeType":"YulFunctionCall","src":"463:18:81"}],"functionName":{"name":"mload","nativeSrc":"457:5:81","nodeType":"YulIdentifier","src":"457:5:81"},"nativeSrc":"457:25:81","nodeType":"YulFunctionCall","src":"457:25:81"},"variables":[{"name":"value_1","nativeSrc":"446:7:81","nodeType":"YulTypedName","src":"446:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"516:7:81","nodeType":"YulIdentifier","src":"516:7:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"491:24:81","nodeType":"YulIdentifier","src":"491:24:81"},"nativeSrc":"491:33:81","nodeType":"YulFunctionCall","src":"491:33:81"},"nativeSrc":"491:33:81","nodeType":"YulExpressionStatement","src":"491:33:81"},{"nativeSrc":"533:17:81","nodeType":"YulAssignment","src":"533:17:81","value":{"name":"value_1","nativeSrc":"543:7:81","nodeType":"YulIdentifier","src":"543:7:81"},"variableNames":[{"name":"value1","nativeSrc":"533:6:81","nodeType":"YulIdentifier","src":"533:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$25555_fromMemory","nativeSrc":"150:406:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"227:9:81","nodeType":"YulTypedName","src":"227:9:81","type":""},{"name":"dataEnd","nativeSrc":"238:7:81","nodeType":"YulTypedName","src":"238:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"250:6:81","nodeType":"YulTypedName","src":"250:6:81","type":""},{"name":"value1","nativeSrc":"258:6:81","nodeType":"YulTypedName","src":"258:6:81","type":""}],"src":"150:406:81"},{"body":{"nativeSrc":"660:101:81","nodeType":"YulBlock","src":"660:101:81","statements":[{"nativeSrc":"670:26:81","nodeType":"YulAssignment","src":"670:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"682:9:81","nodeType":"YulIdentifier","src":"682:9:81"},{"kind":"number","nativeSrc":"693:2:81","nodeType":"YulLiteral","src":"693:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"678:3:81","nodeType":"YulIdentifier","src":"678:3:81"},"nativeSrc":"678:18:81","nodeType":"YulFunctionCall","src":"678:18:81"},"variableNames":[{"name":"tail","nativeSrc":"670:4:81","nodeType":"YulIdentifier","src":"670:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"712:9:81","nodeType":"YulIdentifier","src":"712:9:81"},{"arguments":[{"name":"value0","nativeSrc":"727:6:81","nodeType":"YulIdentifier","src":"727:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"743:2:81","nodeType":"YulLiteral","src":"743:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"747:1:81","nodeType":"YulLiteral","src":"747:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"739:3:81","nodeType":"YulIdentifier","src":"739:3:81"},"nativeSrc":"739:10:81","nodeType":"YulFunctionCall","src":"739:10:81"},{"kind":"number","nativeSrc":"751:1:81","nodeType":"YulLiteral","src":"751:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"735:3:81","nodeType":"YulIdentifier","src":"735:3:81"},"nativeSrc":"735:18:81","nodeType":"YulFunctionCall","src":"735:18:81"}],"functionName":{"name":"and","nativeSrc":"723:3:81","nodeType":"YulIdentifier","src":"723:3:81"},"nativeSrc":"723:31:81","nodeType":"YulFunctionCall","src":"723:31:81"}],"functionName":{"name":"mstore","nativeSrc":"705:6:81","nodeType":"YulIdentifier","src":"705:6:81"},"nativeSrc":"705:50:81","nodeType":"YulFunctionCall","src":"705:50:81"},"nativeSrc":"705:50:81","nodeType":"YulExpressionStatement","src":"705:50:81"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"561:200:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"629:9:81","nodeType":"YulTypedName","src":"629:9:81","type":""},{"name":"value0","nativeSrc":"640:6:81","nodeType":"YulTypedName","src":"640:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"651:4:81","nodeType":"YulTypedName","src":"651:4:81","type":""}],"src":"561:200:81"}]},"contents":"{\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_addresst_contract$_IPolicyPool_$25555_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e060408190523060a0526168433881900390819083398101604081905261002691610112565b6001600160a01b03808316608052811660c052818161004361004c565b5050505061014a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161561009c5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100fb5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146100fb575f5ffd5b5f5f60408385031215610123575f5ffd5b825161012e816100fe565b602084015190925061013f816100fe565b809150509250929050565b60805160a05160c05161665f6101e45f395f8181610a7d015281816117d901528181611d7c0152818161205901528181612cb601528181612f5301528181612fe30152818161326a01528181613641015281816136fa0152818161396601528181613b6d0152818161491a01526149af01525f8181613d6701528181614036015261405f01525f8181610cee015261201d015261665f5ff3fe6080604052600436106106e2575f3560e01c806384c6af0c1161037f578063c63d75b6116101d3578063e047838d11610108578063efb43b07116100a8578063f7a3933311610078578063f7a39333146112e3578063fa171c9214611302578063fa3045d014611316578063fbf9c9ce14611329575f5ffd5b8063efb43b07146112c0578063f14b624b146112d3578063f15476a214610bd2578063f5f1bec0146112db575f5ffd5b8063e8e617b7116100e3578063e8e617b714611270578063ee07abbb1461128f578063ef4f78d1146112ae578063ef8b30f7146110c1575f5ffd5b8063e047838d14611212578063e483b6e114611225578063e77659fd14611244575f5ffd5b8063ce96cb7711610173578063d336078c1161014e578063d336078c14611196578063d6281d3e146111b5578063d905777e146111d4578063dd62ed3e146111f3575f5ffd5b8063ce96cb7714611164578063d2e26fe414611183578063d2e888ec14610bd2575f5ffd5b8063c9eb0571116101ae578063c9eb0571146110f4578063ca10eca01461111e578063cc461d621461113d578063cc671a1814611150575f5ffd5b8063c63d75b614610b18578063c6e6f592146110c1578063c8030873146110e0575f5ffd5b8063a9059cbb116102b4578063b3d7f6b911610254578063bdb5371d11610224578063bdb5371d14611045578063bfdb20da14611064578063c0c5121714611083578063c3ba11f5146110a2575f5ffd5b8063b3d7f6b914610fd5578063b460af9414610ff4578063b7e44f4e14611013578063ba08765214611026575f5ffd5b8063ad3cb1cc1161028f578063ad3cb1cc14610f7e578063adfdfe2e14610bd2578063aeabd32914610fae578063b2331d7d14610fc2575f5ffd5b8063a9059cbb14610f25578063a9ed148714610f44578063ac860f7414610f5f575f5ffd5b806394bf804d1161031f5780639c0b90c7116102fa5780639c0b90c714610ecc5780639db0391f14610edf578063a3ac939014610ef2578063a7f8a5e214610f11575f5ffd5b806394bf804d14610e8657806395d89b4114610ea557806397f8423e14610eb9575f5ffd5b80638963227f1161035a5780638963227f14610e205780638b4e914a14610e285780638d94d57514610e475780638f79246514610e5a575f5ffd5b806384c6af0c14610d85578063861e3d3d14610dee57806386b4408314610e01575f5ffd5b80633edeb257116105365780635ee0c7dd1161046b57806375b58c951161040b578063818f5673116103db578063818f567314610d3857806382dbbd7114610d40578063833d816d14610d5f57806383b9557914610d72575f5ffd5b806375b58c9514610ccd5780637da0a87714610ce057806380da0a1c14610d12578063811eecf514610d25575f5ffd5b80636855a178116104465780636855a17814610c525780636e553f6514610c6557806370a0823114610c84578063759076e514610ca3575f5ffd5b80635ee0c7dd14610c18578063657ab2b314610c3757806367354a8414610c3f575f5ffd5b80634f1ef286116104d657806353c42f88116104b157806353c42f8814610bbd57806355c0729b14610bd2578063572b6c0514610bda5780635997ee3614610bf9575f5ffd5b80634f1ef28614610b6a5780634fd5303d14610b7d57806352d1902d14610ba9575f5ffd5b80634092b0c1116105115780634092b0c114610b385780634879872014610b575780634cdad5061461079b5780634d15eb0314610a6f575f5ffd5b80633edeb25714610af9578063401022ef14610b10578063402d267d14610b18575f5ffd5b8063194448e511610617578063313ce567116105b757806333f965ce1161058757806333f965ce14610a6f578063342db73914610aa157806338d52e0f14610ac65780633e15a35714610ada575f5ffd5b8063313ce56714610a0357806332bc74aa14610a2957806332cadf3c14610a3c57806333bded3c14610a50575f5ffd5b8063225c531e116105f2578063225c531e1461098657806323b872dd146109a55780632904df29146109c45780632f9cf0aa146109f0575f5ffd5b8063194448e51461091f5780631a7e80141461093e5780631c93944f14610952575f5ffd5b8063091ea8a6116106825780630aecc0931161065d5780630aecc093146108815780630cabf23114610895578063150b7a02146108b457806318160ddd146108ec575f5ffd5b8063091ea8a6146107d9578063095ea7b3146108435780630a28a47714610862575f5ffd5b806306fdde03116106bd57806306fdde0314610759578063077f224a1461077a57806307a2d13a1461079b57806308742d90146107ba575f5ffd5b806301e1d114146106ed57806301ffc9a714610714578063025ca58e14610743575f5ffd5b366106e957005b5f5ffd5b3480156106f8575f5ffd5b50610701611346565b6040519081526020015b60405180910390f35b34801561071f575f5ffd5b5061073361072e366004615516565b611488565b604051901515815260200161070b565b34801561074e575f5ffd5b506367748580610701565b348015610764575f5ffd5b5061076d611545565b60405161070b919061555d565b348015610785575f5ffd5b5061079961079436600461562a565b611605565b005b3480156107a6575f5ffd5b506107016107b53660046156a0565b6116ef565b3480156107c5575f5ffd5b506107996107d43660046156c8565b6116fa565b3480156107e4575f5ffd5b506108366107f33660046156ff565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b60405161070b919061574e565b34801561084e575f5ffd5b5061073361085d36600461575c565b611796565b34801561086d575f5ffd5b5061070161087c3660046156a0565b6117b7565b34801561088c575f5ffd5b506107996117c3565b3480156108a0575f5ffd5b505f5160206165ca5f395f51905f52610701565b3480156108bf575f5ffd5b506108d36108ce3660046157ca565b6117cd565b6040516001600160e01b0319909116815260200161070b565b3480156108f7575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254610701565b34801561092a575f5ffd5b50610799610939366004615844565b61183c565b348015610949575f5ffd5b5061079961195f565b34801561095d575f5ffd5b5061097161096c366004615870565b611967565b60405163ffffffff909116815260200161070b565b348015610991575f5ffd5b506107996109a036600461588c565b611979565b3480156109b0575f5ffd5b506107336109bf3660046158f0565b611a9d565b3480156109cf575f5ffd5b506109d8611aca565b6040516001600160a01b03909116815260200161070b565b6107996109fe3660046156ff565b611ad8565b348015610a0e575f5ffd5b50610a17611ba8565b60405160ff909116815260200161070b565b610799610a3736600461592e565b611bd1565b348015610a47575f5ffd5b5061076d611bdd565b348015610a5b575f5ffd5b5061076d610a6a36600461597e565b611c20565b348015610a7a575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006109d8565b348015610aac575f5ffd5b506107016e1a185c991a185d0b595e1c1bdcd959608a1b81565b348015610ad1575f5ffd5b506109d8611ea6565b348015610ae5575f5ffd5b50610701610af43660046159ce565b611ec1565b348015610b04575f5ffd5b5061097163ffffffff81565b610799611ed5565b348015610b23575f5ffd5b50610701610b323660046156ff565b505f1990565b348015610b43575f5ffd5b50610971610b523660046156a0565b611fb0565b610799610b653660046156ff565b611fba565b610799610b78366004615a0b565b611fc3565b348015610b88575f5ffd5b50610b91611fd9565b6040516001600160401b03909116815260200161070b565b348015610bb4575f5ffd5b50610701611ff8565b348015610bc8575f5ffd5b5062015180610701565b610799612013565b348015610be5575f5ffd5b50610733610bf43660046156ff565b61201b565b348015610c04575f5ffd5b505f5160206165ea5f395f51905f52610701565b348015610c23575f5ffd5b506108d3610c32366004615a6a565b61204d565b61079961195f565b348015610c4a575f5ffd5b506014610701565b610799610c603660046158f0565b6120b6565b348015610c70575f5ffd5b50610701610c7f366004615aad565b6120c6565b348015610c8f575f5ffd5b50610701610c9e3660046156ff565b6120e8565b348015610cae575f5ffd5b505f5160206165ca5f395f51905f5254600160a01b9004600b0b610701565b610799610cdb3660046156ff565b61210e565b348015610ceb575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006109d8565b610799610d203660046156ff565b612117565b610701610d333660046156a0565b612120565b6107996117c3565b348015610d4b575f5ffd5b50610799610d5a366004615ad0565b61216a565b610799610d6d366004615b1e565b61225d565b610799610d80366004615b44565b612300565b348015610d90575f5ffd5b506040805180820182525f808252602091820152815180830183525f5160206165ea5f395f51905f52546001600160a01b03811680835260ff600160a01b90920482169284019283528451908152915116918101919091520161070b565b610799610dfc3660046158f0565b61230d565b348015610e0c575f5ffd5b5061076d610e1b36600461597e565b612318565b61079961241d565b348015610e33575f5ffd5b50610701610e42366004615ba7565b612425565b610799610e553660046156ff565b612430565b348015610e65575f5ffd5b50610e79610e743660046156ff565b612439565b60405161070b9190615bca565b348015610e91575f5ffd5b50610701610ea0366004615aad565b6124de565b348015610eb0575f5ffd5b5061076d612500565b610799610ec7366004615c18565b61253e565b610799610eda366004615a6a565b6125b1565b610799610eed3660046156ff565b6125bd565b348015610efd575f5ffd5b50610701610f0c3660046159ce565b6126e4565b348015610f1c575f5ffd5b506109d8612738565b348015610f30575f5ffd5b50610733610f3f36600461575c565b612757565b348015610f4f575f5ffd5b506108d36001600160e01b031981565b348015610f6a575f5ffd5b50610799610f793660046156a0565b61276e565b348015610f89575f5ffd5b5061076d604051806040016040528060058152602001640352e302e360dc1b81525081565b348015610fb9575f5ffd5b5061070161282e565b610799610fd03660046158f0565b612837565b348015610fe0575f5ffd5b50610701610fef3660046156a0565b612842565b348015610fff575f5ffd5b5061070161100e366004615c8b565b61284e565b610799611021366004615cbf565b6128ab565b348015611031575f5ffd5b50610701611040366004615c8b565b61291c565b348015611050575f5ffd5b5061079961105f366004615d29565b612970565b34801561106f575f5ffd5b5061079961107e366004615d5b565b612a5a565b34801561108e575f5ffd5b506108d361109d366004615d89565b612c46565b3480156110ad575f5ffd5b506107016110bc366004615dbc565b612c92565b3480156110cc575f5ffd5b506107016110db3660046156a0565b612c9d565b3480156110eb575f5ffd5b50610799612ca8565b3480156110ff575f5ffd5b505f51602061660a5f395f51905f5254600160401b900460ff16610733565b348015611129575f5ffd5b50610701611138366004615ba7565b6130a6565b61079961114b36600461575c565b6130b1565b34801561115b575f5ffd5b506107016130bb565b34801561116f575f5ffd5b5061070161117e3660046156ff565b613147565b610701611191366004615ad0565b613161565b3480156111a1575f5ffd5b506107996111b03660046156a0565b6131b1565b3480156111c0575f5ffd5b506108d36111cf366004615a6a565b61325e565b3480156111df575f5ffd5b506107016111ee3660046156ff565b61336e565b3480156111fe575f5ffd5b5061070161120d366004615ddf565b613386565b61079961122036600461575c565b6133cf565b348015611230575f5ffd5b5061079961123f366004615e0b565b6133d9565b34801561124f575f5ffd5b5061126361125e366004615e4f565b6133e4565b60405161070b9190615ed0565b34801561127b575f5ffd5b506108d361128a3660046158f0565b6136ee565b34801561129a575f5ffd5b506112636112a9366004615e4f565b613756565b3480156112b9575f5ffd5b505f610a17565b6107996112ce3660046158f0565b613950565b61079961395b565b6107996139b1565b3480156112ee575f5ffd5b506107996112fd366004615f33565b6139b9565b34801561130d575f5ffd5b5061079961241d565b610799611324366004615cbf565b613a78565b348015611334575f5ffd5b506107996113433660046156ff565b50565b5f5f5160206165ca5f395f51905f5261135d613ae9565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa1580156113ab573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113cf9190615f5f565b6040518263ffffffff1660e01b81526004016113ed91815260200190565b602060405180830381865afa158015611408573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142c9190615f5f565b6114369083615f8a565b81549092505f600160a01b909104600b0b121561147257805461146290600160a01b9004600b0b615f9d565b61146c9083615fb7565b91505090565b805461146c90600160a01b9004600b0b83615f8a565b5f6001600160e01b03198216630a85bd0160e11b14806114b857506001600160e01b03198216633ece0a8960e01b145b806114d357506001600160e01b03198216635ee0c7dd60e01b145b806114ee57506001600160e01b031982166336372b0760e01b145b8061150957506001600160e01b0319821663a219a02560e01b145b8061152457506001600160e01b0319821663043eff2d60e51b145b8061153f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f51602061656a5f395f51905f529161158390615fca565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90615fca565b80156115fa5780601f106115d1576101008083540402835291602001916115fa565b820191905f5260205f20905b8154815290600101906020018083116115dd57829003601f168201915b505050505091505090565b5f51602061660a5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156116365750825b90505f826001600160401b031660011480156116515750303b155b90508115801561165f575080155b1561167d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116a757845460ff60401b1916600160401b1785555b6116b2888888613b5a565b83156116e557845460ff60401b19168555604051600181525f51602061658a5f395f51905f529060200160405180910390a15b5050505050505050565b5f61153f825f613c09565b8063ffffffff165f036117205760405163294da6c760e21b815260040160405180910390fd5b5f61172a83613c60565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f6117a0613cf8565b90506117ad818585613d01565b5060019392505050565b5f61153f826001613d0e565b6117cb613d5c565b565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146118295760405163950d88bf60e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b50630a85bd0160e11b9695505050505050565b5f5f5160206165ca5f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa15801561189d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c19190615f5f565b6040518263ffffffff1660e01b81526004016118df91815260200190565b602060405180830381865afa1580156118fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061191e9190615f5f565b90508061192a82613da5565b14806119335750825b6119505760405163292d4c4b60e11b815260040160405180910390fd5b61195984613e9e565b50505050565b6117cb61402b565b5f61197283836140b9565b9392505050565b61198285613c60565b505f611998868686611993876140e5565b614115565b905082815f8113156119c657604051630c97a6bf60e41b815260048101929092526024820152604401611820565b50505f6119d1613ae9565b905083811015611a15576119e58185615fb7565b6119f76119f28387615fb7565b613da5565b14611a155760405163af8075e960e01b815260040160405180910390fd5b611a328385611a22611ea6565b6001600160a01b03169190614214565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f611aa7613cf8565b9050611ab4858285614273565b611abf8585856142be565b506001949350505050565b5f611ad3613cf8565b905090565b805f611ae382613c60565b905060018154600160201b900460ff166003811115611b0457611b0461571a565b1480611b2c575060028154600160201b900460ff166003811115611b2a57611b2a61571a565b145b81548391600160201b90910460ff1690611b5b57604051630e851c7960e31b8152600401611820929190616002565b50505f611b66613ae9565b90505f611b71613ae9565b905081811015611ba157611b858183615fb7565b6040516351f5977560e11b815260040161182091815260200190565b5050505050565b5f805f5160206165ea5f395f51905f5290505f815461146c9190600160a01b900460ff1661601f565b61195984848484614310565b6060611be76143f3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525092949350505050565b6060835f611c2d82613c60565b905060018154600160201b900460ff166003811115611c4e57611c4e61571a565b82548492600160201b90910460ff169114611c7e57604051630e851c7960e31b8152600401611820929190616002565b50505f611c89613ae9565b8254909150600160881b90046001600160601b0316811015611cd2578154611cc6906119f2908390600160881b90046001600160601b0316615fb7565b50611ccf613ae9565b90505b611cf9611cdd613cf8565b88611ceb60045f8a8c616038565b611cf49161605f565b614405565b611d4286868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614507565b93505f84806020019051810190611d599190615f5f565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611dc1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de59190616097565b6001600160a01b031614611e0d57611e0d611dfe613cf8565b896001600160e01b0319614405565b505f611e17613ae9565b905081811015611e9b5782545f90611e4d90869063ffffffff16611e3b81426140b9565b611993611e488789615fb7565b6140e5565b84549091508190600160281b90046001600160601b031680821315611e975760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611820565b5050505b505050509392505050565b5f5160206165ea5f395f51905f52546001600160a01b031690565b5f611ecd848484614514565b949350505050565b5f51602061660a5f395f51905f528054600160401b810460ff1615906001600160401b03165f81158015611f065750825b90505f826001600160401b03166001148015611f215750303b155b905081158015611f2f575080155b15611f4d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f7757845460ff60401b1916600160401b1785555b8315611ba157845460ff60401b19168555604051600181525f51602061658a5f395f51905f529060200160405180910390a15050505050565b5f61153f8261455c565b61134381614639565b611fcb61402b565b611fd582826146a9565b5050565b5f611ad35f51602061660a5f395f51905f52546001600160401b031690565b5f612001613d5c565b505f5160206165aa5f395f51905f5290565b6117cb61241d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146120a45760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b50635ee0c7dd60e01b95945050505050565b6120c1838383614765565b505050565b5f5f195f6120d385612c9d565b9050611ecd6120e0613cf8565b85878461488b565b6001600160a01b03165f9081525f51602061656a5f395f51905f52602052604090205490565b61134381614908565b61134381614910565b5f61212a82613da5565b90507f3a221b9176b65b4a4850e63cd182357e93d2ad08e8951daa0904244dc82df4608160405161215d91815260200190565b60405180910390a1919050565b61217384613c60565b505f61218d858585612184866140e5565b61199390615f9d565b905081815f8112156121bb5760405163239de57160e11b815260048101929092526024820152604401611820565b50506121e36121c8613cf8565b30846121d2611ea6565b6001600160a01b0316929190614a34565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c8585858561221a613cf8565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b5f51602061660a5f395f51905f528054829190600160401b900460ff1680612292575080546001600160401b03808416911610155b156122b05760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b038316908117600160401b1760ff60401b191682556040519081525f51602061658a5f395f51905f52906020015b60405180910390a1505050565b611ba18585858585614a6d565b6120c1838383613d01565b6060835f61232582613c60565b905060018154600160201b900460ff1660038111156123465761234661571a565b148061236e575060028154600160201b900460ff16600381111561236c5761236c61571a565b145b81548391600160201b90910460ff169061239d57604051630e851c7960e31b8152600401611820929190616002565b50505f6123a8613ae9565b90506123b5611cdd613cf8565b6123fe86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614507565b93505f612409613ae9565b905081811015611e9b57611b858183615fb7565b6117cb614bc0565b5f6119728383613d0e565b61134381613e9e565b604080516080810182525f80825260208201819052918101829052606081019190915261246582613c60565b6040805160808101909152815463ffffffff811682529091906020830190600160201b900460ff16600381111561249e5761249e61571a565b60038111156124af576124af61571a565b815290546001600160601b03600160281b820481166020840152600160881b9091041660409091015292915050565b5f5f195f6124eb85612842565b9050611ecd6124f8613cf8565b85838861488b565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f51602061656a5f395f51905f529161158390615fca565b611ba185858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f890181900481028201810190925287815292508791508690819084018382808284375f92019190915250869250613b5a915050565b6119598484848461488b565b805f6125c882613c60565b905060018154600160201b900460ff1660038111156125e9576125e961571a565b82548492600160201b90910460ff16911461261957604051630e851c7960e31b8152600401611820929190616002565b50505f612624613ae9565b8254909150600160881b90046001600160601b031681101561266d578154612661906119f2908390600160881b90046001600160601b0316615fb7565b5061266a613ae9565b90505b5f612676613ae9565b905081811015611ba15782545f9061269a90869063ffffffff16611e3b81426140b9565b84549091508190600160281b90046001600160601b0316808213156116e55760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611820565b5f5f5160206165ca5f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0282612720878787614514565b81526020019081526020015f20549150509392505050565b5f5f5160206165ca5f395f51905f525b546001600160a01b0316919050565b5f5f612761613cf8565b90506117ad8185856142be565b5f1981036127855761277e613ae9565b90506127ad565b61278d613ae9565b8111156127ad5760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206165ca5f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af115801561280a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120c19190615f5f565b5f611ad3613ae9565b6120c1838383614273565b5f61153f826001613c09565b5f5f61285983613147565b90508085111561288257828582604051633fa733bb60e21b8152600401611820939291906160b2565b5f61288c866117b7565b90506128a2612899613cf8565b86868985614a6d565b95945050505050565b61195984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614bf692505050565b5f5f6129278361336e565b90508085111561295057828582604051632e52afbb60e21b8152600401611820939291906160b2565b5f61295a866116ef565b90506128a2612967613cf8565b8686848a614a6d565b5f61297a84613c60565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a26129f483614c08565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155612a2a82614c08565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206165ca5f395f51905f529290600160201b900460ff166003811115612abd57612abd61571a565b14612adb5760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03612b015760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101612b2786614c08565b6001600160601b03168152602001612b3e85614c08565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115612ba557612ba561571a565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90612c369084906160d3565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f9061197290603801604051602081830303815290604052805190602001205f614c3b565b5f6119728383614c73565b5f61153f825f613d0e565b5f612cb1611ea6565b90505f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d10573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d349190616097565b9050806001600160a01b0316826001600160a01b031603612d685760405163252fa83d60e21b815260040160405180910390fd5b612d70613ae9565b15612d8e5760405163902dd39b60e01b815260040160405180910390fd5b5f5160206165ca5f395f51905f528054604080516338d52e0f60e01b815290516001600160a01b038581169316916338d52e0f9160048083019260209291908290030181865afa158015612de4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e089190616097565b6001600160a01b031614612e2f5760405163233f856360e11b815260040160405180910390fd5b5f5f5160206165ea5f395f51905f5280546001600160a01b0319166001600160a01b03858116919091178255835460405163095ea7b360e01b815290821660048201525f602482015291925085169063095ea7b3906044016020604051808303815f875af1158015612ea3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ec79190616123565b50815460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529084169063095ea7b3906044016020604051808303815f875af1158015612f17573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f3b9190616123565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f602483015285169063095ea7b3906044016020604051808303815f875af1158015612fa7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fcb9190616123565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f19602483015284169063095ea7b3906044016020604051808303815f875af1158015613038573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061305c9190616123565b50604080516001600160a01b038087168252851660208201527f37465ce4c247e78514460560da0bcc785fff559503ce6c3d87a6e84352437392910160405180910390a150505050565b5f6119728383613c09565b611fd58282614d56565b5f805f5160206165ca5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613111573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131359190615f5f565b61313d613ae9565b61146c9190615f8a565b5f61153f61315483614d8a565b61315c6130bb565b614d9d565b5f61316e85858585614115565b90507f7281c4a6d49c3bb62269fed398306788c6b3b4fce8789168aa0ab94ec0dd9ec9816040516131a191815260200190565b60405180910390a1949350505050565b5f198103613236575f5f5160206165ca5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561320e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132329190615f5f565b9150505b8061324082613da5565b146113435760405163af8075e960e01b815260040160405180910390fd5b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146132b55760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b505f6132c086613c60565b905060018154600160201b900460ff1660038111156132e1576132e161571a565b1480613309575060028154600160201b900460ff1660038111156133075761330761571a565b145b81548791600160201b90910460ff169061333857604051630e851c7960e31b8152600401611820929190616002565b5050805461335b90879063ffffffff1661335281426140b9565b612184876140e5565b50636b140e9f60e11b9695505050505050565b5f61153f61337b83614dac565b61315c6110db6130bb565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b611fd58282614db6565b6120c1838383614405565b6060835f6133f182613c60565b905060018154600160201b900460ff1660038111156134125761341261571a565b82548492600160201b90910460ff16911461344257604051630e851c7960e31b8152600401611820929190616002565b50505f61344d613ae9565b8254909150600160881b90046001600160601b031681101561349657815461348a906119f2908390600160881b90046001600160601b0316615fb7565b50613493613ae9565b90505b5f80866001600160401b038111156134b0576134b061556f565b6040519080825280602002602001820160405280156134e357816020015b60608152602001906001900390816134ce5790505b5095505f5b878110156136e2575f8989838181106135035761350361613e565b90506020028101906135159190616152565b613523916004915f91616038565b61352c9161605f565b905081158061354857506001600160e01b031981811690851614155b156135635761355f613558613cf8565b8c83614405565b8093505b6135ce8a8a848181106135785761357861613e565b905060200281019061358a9190616152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f1692915050614507565b8883815181106135e0576135e061613e565b6020026020010181905250826136d9575f8883815181106136035761360361613e565b602002602001015180602001905181019061361e9190615f5f565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015613686573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136aa9190616097565b6001600160a01b0316146136d7576136d26136c3613cf8565b8d6001600160e01b0319614405565b600193505b505b506001016134e8565b5050505f611e17613ae9565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146137455760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b5063e8e617b760e01b949350505050565b6060835f61376382613c60565b905060018154600160201b900460ff1660038111156137845761378461571a565b14806137ac575060028154600160201b900460ff1660038111156137aa576137aa61571a565b145b81548391600160201b90910460ff16906137db57604051630e851c7960e31b8152600401611820929190616002565b50505f6137e6613ae9565b90505f856001600160401b038111156138015761380161556f565b60405190808252806020026020018201604052801561383457816020015b606081526020019060019003908161381f5790505b5094505f5b86811015613945575f8888838181106138545761385461613e565b90506020028101906138669190616152565b613874916004915f91616038565b61387d9161605f565b905081158061389957506001600160e01b031981811690841614155b156138b4576138b06138a9613cf8565b8b83614405565b8092505b61391f8989848181106138c9576138c961613e565b90506020028101906138db9190616152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e1692915050614507565b8783815181106139315761393161613e565b602090810291909101015250600101613839565b50505f612409613ae9565b6120c18383836142be565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146113435760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b6117cb614dea565b5f8160038111156139cc576139cc61571a565b036139ea57604051635e64536560e11b815260040160405180910390fd5b5f6139f483613c60565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff1684604051613a41929190616194565b60405180910390a280548290829064ff000000001916600160201b836003811115613a6e57613a6e61571a565b0217905550505050565b61195984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614e7192505050565b5f613af2611ea6565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015613b36573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ad39190615f5f565b613b62614bc0565b613b6a61241d565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bc7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613beb9190616097565b9050613bf681614908565b613c008484614bf6565b61195982614910565b5f611972613c15611346565b613c20906001615f8a565b613c2b5f600a616292565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613c579190615f8a565b85919085614ec1565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206165ca5f395f51905f5291600160201b900460ff166003811115613cc457613cc461571a565b14158390613cf157604051632dad902160e01b81526001600160a01b039091166004820152602401611820565b5050919050565b5f611ad3614f03565b6120c18383836001614310565b5f611972613d1d82600a616292565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613d499190615f8a565b613d51611346565b613c57906001615f8a565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146117cb5760405163703e46dd60e11b815260040160405180910390fd5b5f805f5160206165ca5f395f51905f52805460405163ce96cb7760e01b8152306004820152919250613e259185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613e01573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061315c9190615f5f565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015613e7a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cf19190615f5f565b6001600160a01b038116613ec5576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206165ca5f395f51905f5280546001600160a01b038381166001600160a01b03198316178355168015613f7057613efd611ea6565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af1158015613f4a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f6e9190616123565b505b613f78611ea6565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015613fc6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fea9190616123565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a91016122f3565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061409b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661408f614f53565b6001600160a01b031614155b156117cb5760405163703e46dd60e11b815260040160405180910390fd5b5f63ffffffff838116146140dc576140d763ffffffff8416836162b4565b611972565b6119728261455c565b5f6001600160ff1b038211156141115760405163123baf0360e11b815260048101839052602401611820565b5090565b5f5f5160206165ca5f395f51905f5281614130878787614514565b905083826002015f8381526020019081526020015f205f82825461415491906162c7565b91829055508354909450859150839060149061417b908490600160a01b9004600b0b6162ee565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6040516001600160a01b038381166024830152604482018390526120c191859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614f67565b5f61427e8484613386565b90505f1981101561195957818110156142b057828183604051637dc7a0d960e11b8152600401611820939291906160b2565b61195984848484035f614310565b6001600160a01b0383166142e757604051634b637e8f60e11b81525f6004820152602401611820565b6001600160a01b0382166120b65760405163ec442f0560e01b81525f6004820152602401611820565b5f51602061656a5f395f51905f526001600160a01b0385166143475760405163e602df0560e01b81525f6004820152602401611820565b6001600160a01b03841661437057604051634a1406b160e11b81525f6004820152602401611820565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115611ba157836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516143e491815260200190565b60405180910390a35050505050565b365f6143fd614fd3565b915091509091565b5f6144108383612c46565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144739190616097565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b81526004016144a293929190616325565b6040805180830381865afa1580156144bc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144e09190616352565b509050848483836116e55760405163c294136d60e01b815260040161182093929190616325565b606061197283835f61501d565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b6107e95f8062015180614573636774858086615fb7565b61457d91906162b4565b90505b8161458d5761016d614591565b61016e5b61ffff16811061461457816145a85761016d6145ac565b61016e5b6145ba9061ffff1682615fb7565b90506145c58361637f565b92506145d26004846163a3565b63ffffffff1615801561460d57506145eb6064846163a3565b63ffffffff1615158061460d5750614605610190846163a3565b63ffffffff16155b9150614580565b61461e8183614c73565b6146298460646163ca565b63ffffffff16611ecd9190615f8a565b614641614bc0565b5f5160206165ea5f395f51905f525f8061465a846150bd565b915091508161466a57601261466c565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015614703575060408051601f3d908101601f1916820190925261470091810190615f5f565b60015b61472b57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611820565b5f5160206165aa5f395f51905f52811461475b57604051632a87526960e21b815260048101829052602401611820565b6120c18383615193565b5f51602061656a5f395f51905f526001600160a01b03841661479f5781816002015f8282546147949190615f8a565b909155506147fc9050565b6001600160a01b0384165f90815260208290526040902054828110156147de5784818460405163391434e360e21b8152600401611820939291906160b2565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b03831661481a576002810180548390039055614838565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161487d91815260200190565b60405180910390a350505050565b5f5160206165ea5f395f51905f5280546148b0906001600160a01b0316863086614a34565b6148ba8483614d56565b836001600160a01b0316856001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d785856040516143e4929190918252602082015260400190565b611fba614bc0565b614918614bc0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614974573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149989190616097565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015614a06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a2a9190616123565b5061134381613e9e565b6040516001600160a01b0384811660248301528381166044830152606482018390526119599186918216906323b872dd90608401614241565b5f614a76613ae9565b905082811015614bab575f5f5160206165ca5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015614ad5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614af99190615f5f565b614b038386615fb7565b1115614b225760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af94614b3c8487615fb7565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af1158015614b84573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614ba89190615f5f565b50505b614bb886868686866151e8565b505050505050565b5f51602061660a5f395f51905f5254600160401b900460ff166117cb57604051631afcd79f60e31b815260040160405180910390fd5b614bfe614bc0565b611fd58282614e71565b5f6001600160601b03821115614111576040516306dfcc6560e41b81526060600482015260248101839052604401611820565b5f601c8260ff161115614c6157604051631dd4bb1b60e11b815260040160405180910390fd5b506008021b6001600160e01b03191690565b5f601f831015614c855750600161153f565b8115614cae57603c831015614c9c5750600261153f565b82614ca6816163e9565b935050614cbf565b603b831015614cbf5750600261153f565b605a8310614d495760788310614d425760978310614d3b5760b58310614d345760d48310614d2d5760f38310614d26576101118310614d1f576101308310614d185761014e8310614d1157600c614d4c565b600b614d4c565b600a614d4c565b6009614d4c565b6008614d4c565b6007614d4c565b6006614d4c565b6005614d4c565b6004614d4c565b60035b60ff169392505050565b6001600160a01b038216614d7f5760405163ec442f0560e01b81525f6004820152602401611820565b611fd55f8383614765565b5f61153f614d97836120e8565b5f613c09565b5f828218828410028218611972565b5f61153f826120e8565b6001600160a01b038216614ddf57604051634b637e8f60e11b81525f6004820152602401611820565b611fd5825f83614765565b5f51602061660a5f395f51905f528054600160401b900460ff1615614e225760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161461134357805467ffffffffffffffff19166001600160401b0390811782556040519081525f51602061658a5f395f51905f529060200160405180910390a150565b614e79614bc0565b5f51602061656a5f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614eb28482616442565b50600481016119598382616442565b5f614eee614ece8361529c565b8015614ee957505f8480614ee457614ee46162a0565b868809115b151590565b614ef98686866152c8565b6128a29190615f8a565b5f366014614f103361201b565b8015614f1c5750808210155b15614f4b575f36614f2d8385615fb7565b614f38928290616038565b614f41916164fc565b60601c9250505090565b339250505090565b5f5f5160206165aa5f395f51905f52612748565b5f5f60205f8451602086015f885af180614f86576040513d5f823e3d81fd5b50505f513d91508115614f9d578060011415614faa565b6001600160a01b0384163b155b1561195957604051635274afe760e01b81526001600160a01b0385166004820152602401611820565b365f816014614fe13361201b565b8015614fed5750808210155b15615016575f8036614fff8486615fb7565b9261500c93929190616038565b9350935050509091565b5f3661500c565b6060814710156150495760405163cf47918160e01b815247600482015260248101839052604401611820565b5f5f856001600160a01b031684866040516150649190616532565b5f6040518083038185875af1925050503d805f811461509e576040519150601f19603f3d011682016040523d82523d5f602084013e6150a3565b606091505b50915091506150b386838361537e565b9695505050505050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b17905290515f918291829182916001600160a01b0387169161510391616532565b5f60405180830381855afa9150503d805f811461513b576040519150601f19603f3d011682016040523d82523d5f602084013e615140565b606091505b509150915081801561515457506020815110155b15615187575f8180602001905181019061516e9190615f5f565b905060ff8111615185576001969095509350505050565b505b505f9485945092505050565b61519c826153d5565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156151e0576120c18282615438565b611fd56154a1565b5f5160206165ea5f395f51905f526001600160a01b038681169085161461521457615214848784614273565b61521e8483614db6565b8054615234906001600160a01b03168685614214565b836001600160a01b0316856001600160a01b0316876001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db868660405161528c929190918252602082015260400190565b60405180910390a4505050505050565b5f60028260038111156152b1576152b161571a565b6152bb9190616548565b60ff166001149050919050565b5f838302815f1985870982811083820303915050805f036152fc578382816152f2576152f26162a0565b0492505050611972565b8084116153135761531360038515026011186154c0565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b60608261538e576140d7826154d1565b81511580156153a557506001600160a01b0384163b155b156153ce57604051639996b31560e01b81526001600160a01b0385166004820152602401611820565b5080611972565b806001600160a01b03163b5f0361540a57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611820565b5f5160206165aa5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b0316846040516154549190616532565b5f60405180830381855af49150503d805f811461548c576040519150601f19603f3d011682016040523d82523d5f602084013e615491565b606091505b50915091506128a285838361537e565b34156117cb5760405163b398979f60e01b815260040160405180910390fd5b634e487b715f52806020526024601cfd5b8051156154e15780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b80356001600160e01b031981168114615511575f5ffd5b919050565b5f60208284031215615526575f5ffd5b611972826154fa565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611972602083018461552f565b634e487b7160e01b5f52604160045260245ffd5b5f5f6001600160401b0384111561559c5761559c61556f565b50604051601f19601f85018116603f011681018181106001600160401b03821117156155ca576155ca61556f565b6040528381529050808284018510156155e1575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f830112615607575f5ffd5b61197283833560208501615583565b6001600160a01b0381168114611343575f5ffd5b5f5f5f6060848603121561563c575f5ffd5b83356001600160401b03811115615651575f5ffd5b61565d868287016155f8565b93505060208401356001600160401b03811115615678575f5ffd5b615684868287016155f8565b925050604084013561569581615616565b809150509250925092565b5f602082840312156156b0575f5ffd5b5035919050565b63ffffffff81168114611343575f5ffd5b5f5f604083850312156156d9575f5ffd5b82356156e481615616565b915060208301356156f4816156b7565b809150509250929050565b5f6020828403121561570f575f5ffd5b813561197281615616565b634e487b7160e01b5f52602160045260245ffd5b6004811061574a57634e487b7160e01b5f52602160045260245ffd5b9052565b6020810161153f828461572e565b5f5f6040838503121561576d575f5ffd5b823561577881615616565b946020939093013593505050565b5f5f83601f840112615796575f5ffd5b5081356001600160401b038111156157ac575f5ffd5b6020830191508360208285010111156157c3575f5ffd5b9250929050565b5f5f5f5f5f608086880312156157de575f5ffd5b85356157e981615616565b945060208601356157f981615616565b93506040860135925060608601356001600160401b0381111561581a575f5ffd5b61582688828901615786565b969995985093965092949392505050565b8015158114611343575f5ffd5b5f5f60408385031215615855575f5ffd5b823561586081615616565b915060208301356156f481615837565b5f5f60408385031215615881575f5ffd5b8235615778816156b7565b5f5f5f5f5f60a086880312156158a0575f5ffd5b85356158ab81615616565b945060208601356158bb816156b7565b935060408601356158cb816156b7565b92506060860135915060808601356158e281615616565b809150509295509295909350565b5f5f5f60608486031215615902575f5ffd5b833561590d81615616565b9250602084013561591d81615616565b929592945050506040919091013590565b5f5f5f5f60808587031215615941575f5ffd5b843561594c81615616565b9350602085013561595c81615616565b925060408501359150606085013561597381615837565b939692955090935050565b5f5f5f60408486031215615990575f5ffd5b833561599b81615616565b925060208401356001600160401b038111156159b5575f5ffd5b6159c186828701615786565b9497909650939450505050565b5f5f5f606084860312156159e0575f5ffd5b83356159eb81615616565b925060208401356159fb816156b7565b91506040840135615695816156b7565b5f5f60408385031215615a1c575f5ffd5b8235615a2781615616565b915060208301356001600160401b03811115615a41575f5ffd5b8301601f81018513615a51575f5ffd5b615a6085823560208401615583565b9150509250929050565b5f5f5f5f60808587031215615a7d575f5ffd5b8435615a8881615616565b93506020850135615a9881615616565b93969395505050506040820135916060013590565b5f5f60408385031215615abe575f5ffd5b8235915060208301356156f481615616565b5f5f5f5f60808587031215615ae3575f5ffd5b8435615aee81615616565b93506020850135615afe816156b7565b92506040850135615b0e816156b7565b9396929550929360600135925050565b5f60208284031215615b2e575f5ffd5b81356001600160401b0381168114611972575f5ffd5b5f5f5f5f5f60a08688031215615b58575f5ffd5b8535615b6381615616565b94506020860135615b7381615616565b93506040860135615b8381615616565b94979396509394606081013594506080013592915050565b60048110611343575f5ffd5b5f5f60408385031215615bb8575f5ffd5b8235915060208301356156f481615b9b565b815163ffffffff1681526020808301516080830191615beb9084018261572e565b506001600160601b0360408401511660408301526001600160601b03606084015116606083015292915050565b5f5f5f5f5f60608688031215615c2c575f5ffd5b85356001600160401b03811115615c41575f5ffd5b615c4d88828901615786565b90965094505060208601356001600160401b03811115615c6b575f5ffd5b615c7788828901615786565b90945092505060408601356158e281615616565b5f5f5f60608486031215615c9d575f5ffd5b833592506020840135615caf81615616565b9150604084013561569581615616565b5f5f5f5f60408587031215615cd2575f5ffd5b84356001600160401b03811115615ce7575f5ffd5b615cf387828801615786565b90955093505060208501356001600160401b03811115615d11575f5ffd5b615d1d87828801615786565b95989497509550505050565b5f5f5f60608486031215615d3b575f5ffd5b8335615d4681615616565b95602085013595506040909401359392505050565b5f5f5f5f60808587031215615d6e575f5ffd5b8435615d7981615616565b93506020850135615a98816156b7565b5f5f60408385031215615d9a575f5ffd5b8235615da581615616565b9150615db3602084016154fa565b90509250929050565b5f5f60408385031215615dcd575f5ffd5b8235915060208301356156f481615837565b5f5f60408385031215615df0575f5ffd5b8235615dfb81615616565b915060208301356156f481615616565b5f5f5f60608486031215615e1d575f5ffd5b8335615e2881615616565b92506020840135615e3881615616565b9150615e46604085016154fa565b90509250925092565b5f5f5f60408486031215615e61575f5ffd5b8335615e6c81615616565b925060208401356001600160401b03811115615e86575f5ffd5b8401601f81018613615e96575f5ffd5b80356001600160401b03811115615eab575f5ffd5b8660208260051b8401011115615ebf575f5ffd5b939660209190910195509293505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015615f2757603f19878603018452615f1285835161552f565b94506020938401939190910190600101615ef6565b50929695505050505050565b5f5f60408385031215615f44575f5ffd5b8235615f4f81615616565b915060208301356156f481615b9b565b5f60208284031215615f6f575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561153f5761153f615f76565b5f600160ff1b8201615fb157615fb1615f76565b505f0390565b8181038181111561153f5761153f615f76565b600181811c90821680615fde57607f821691505b602082108103615ffc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b038316815260408101611972602083018461572e565b60ff818116838216019081111561153f5761153f615f76565b5f5f85851115616046575f5ffd5b83861115616052575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015616090576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f602082840312156160a7575f5ffd5b815161197281615616565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff811683526160f86020840160ff8360201c1661572e565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b5f60208284031215616133575f5ffd5b815161197281615837565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112616167575f5ffd5b8301803591506001600160401b03821115616180575f5ffd5b6020019150368190038213156157c3575f5ffd5b604081016161a2828561572e565b611972602083018461572e565b6001815b60018411156161ea578085048111156161ce576161ce615f76565b60018416156161dc57908102905b60019390931c9280026161b3565b935093915050565b5f826162005750600161153f565b8161620c57505f61153f565b8160018114616222576002811461622c57616248565b600191505061153f565b60ff84111561623d5761623d615f76565b50506001821b61153f565b5060208310610133831016604e8410600b841016171561626b575081810a61153f565b6162775f1984846161af565b805f190482111561628a5761628a615f76565b029392505050565b5f61197260ff8416836161f2565b634e487b7160e01b5f52601260045260245ffd5b5f826162c2576162c26162a0565b500490565b8082018281125f8312801582168215821617156162e6576162e6615f76565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff198212171561153f5761153f615f76565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f60408385031215616363575f5ffd5b825161636e81615837565b60208401519092506156f4816156b7565b5f63ffffffff821663ffffffff810361639a5761639a615f76565b60010192915050565b5f63ffffffff8316806163b8576163b86162a0565b8063ffffffff84160691505092915050565b63ffffffff818116838216029081169081811461609057616090615f76565b5f816163f7576163f7615f76565b505f190190565b601f8211156120c157805f5260205f20601f840160051c810160208510156164235750805b601f840160051c820191505b81811015611ba1575f815560010161642f565b81516001600160401b0381111561645b5761645b61556f565b61646f816164698454615fca565b846163fe565b6020601f8211600181146164a1575f831561648a5750848201515b5f19600385901b1c1916600184901b178455611ba1565b5f84815260208120601f198516915b828110156164d057878501518255602094850194600190920191016164b0565b50848210156164ed57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b80356001600160601b03198116906014841015616090576001600160601b031960149490940360031b84901b1690921692915050565b5f82518060208501845e5f920191825250919050565b5f60ff83168061655a5761655a6162a0565b8060ff8416069150509291505056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af000773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212206aa3f0d8d053b499a480a75acfdd285f381a4c96d7c2bfa20c5b1d23cc3ab75964736f6c634300081c0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 DUP2 SWAP1 MSTORE ADDRESS PUSH1 0xA0 MSTORE PUSH2 0x6843 CODESIZE DUP2 SWAP1 SUB SWAP1 DUP2 SWAP1 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x26 SWAP2 PUSH2 0x112 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x80 MSTORE DUP2 AND PUSH1 0xC0 MSTORE DUP2 DUP2 PUSH2 0x43 PUSH2 0x4C JUMP JUMPDEST POP POP POP POP PUSH2 0x14A JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x9C JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0xFB JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xFB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x123 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x12E DUP2 PUSH2 0xFE JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x13F DUP2 PUSH2 0xFE JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x665F PUSH2 0x1E4 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0xA7D ADD MSTORE DUP2 DUP2 PUSH2 0x17D9 ADD MSTORE DUP2 DUP2 PUSH2 0x1D7C ADD MSTORE DUP2 DUP2 PUSH2 0x2059 ADD MSTORE DUP2 DUP2 PUSH2 0x2CB6 ADD MSTORE DUP2 DUP2 PUSH2 0x2F53 ADD MSTORE DUP2 DUP2 PUSH2 0x2FE3 ADD MSTORE DUP2 DUP2 PUSH2 0x326A ADD MSTORE DUP2 DUP2 PUSH2 0x3641 ADD MSTORE DUP2 DUP2 PUSH2 0x36FA ADD MSTORE DUP2 DUP2 PUSH2 0x3966 ADD MSTORE DUP2 DUP2 PUSH2 0x3B6D ADD MSTORE DUP2 DUP2 PUSH2 0x491A ADD MSTORE PUSH2 0x49AF ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x3D67 ADD MSTORE DUP2 DUP2 PUSH2 0x4036 ADD MSTORE PUSH2 0x405F ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0xCEE ADD MSTORE PUSH2 0x201D ADD MSTORE PUSH2 0x665F PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x6E2 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x84C6AF0C GT PUSH2 0x37F JUMPI DUP1 PUSH4 0xC63D75B6 GT PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xE047838D GT PUSH2 0x108 JUMPI DUP1 PUSH4 0xEFB43B07 GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xF7A39333 GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0x12E3 JUMPI DUP1 PUSH4 0xFA171C92 EQ PUSH2 0x1302 JUMPI DUP1 PUSH4 0xFA3045D0 EQ PUSH2 0x1316 JUMPI DUP1 PUSH4 0xFBF9C9CE EQ PUSH2 0x1329 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xEFB43B07 EQ PUSH2 0x12C0 JUMPI DUP1 PUSH4 0xF14B624B EQ PUSH2 0x12D3 JUMPI DUP1 PUSH4 0xF15476A2 EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0xF5F1BEC0 EQ PUSH2 0x12DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE8E617B7 GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0x1270 JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0x128F JUMPI DUP1 PUSH4 0xEF4F78D1 EQ PUSH2 0x12AE JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x10C1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE047838D EQ PUSH2 0x1212 JUMPI DUP1 PUSH4 0xE483B6E1 EQ PUSH2 0x1225 JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0x1244 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCE96CB77 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0xD336078C GT PUSH2 0x14E JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x1196 JUMPI DUP1 PUSH4 0xD6281D3E EQ PUSH2 0x11B5 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x11D4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x11F3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x1164 JUMPI DUP1 PUSH4 0xD2E26FE4 EQ PUSH2 0x1183 JUMPI DUP1 PUSH4 0xD2E888EC EQ PUSH2 0xBD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC9EB0571 GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0xC9EB0571 EQ PUSH2 0x10F4 JUMPI DUP1 PUSH4 0xCA10ECA0 EQ PUSH2 0x111E JUMPI DUP1 PUSH4 0xCC461D62 EQ PUSH2 0x113D JUMPI DUP1 PUSH4 0xCC671A18 EQ PUSH2 0x1150 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0xB18 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x10C1 JUMPI DUP1 PUSH4 0xC8030873 EQ PUSH2 0x10E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB GT PUSH2 0x2B4 JUMPI DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0x254 JUMPI DUP1 PUSH4 0xBDB5371D GT PUSH2 0x224 JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x1045 JUMPI DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x1064 JUMPI DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x1083 JUMPI DUP1 PUSH4 0xC3BA11F5 EQ PUSH2 0x10A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0xFD5 JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0xFF4 JUMPI DUP1 PUSH4 0xB7E44F4E EQ PUSH2 0x1013 JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x1026 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x28F JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0xF7E JUMPI DUP1 PUSH4 0xADFDFE2E EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0xAEABD329 EQ PUSH2 0xFAE JUMPI DUP1 PUSH4 0xB2331D7D EQ PUSH2 0xFC2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xF25 JUMPI DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0xF44 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0xF5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D GT PUSH2 0x31F JUMPI DUP1 PUSH4 0x9C0B90C7 GT PUSH2 0x2FA JUMPI DUP1 PUSH4 0x9C0B90C7 EQ PUSH2 0xECC JUMPI DUP1 PUSH4 0x9DB0391F EQ PUSH2 0xEDF JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0xEF2 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0xF11 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D EQ PUSH2 0xE86 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0xEA5 JUMPI DUP1 PUSH4 0x97F8423E EQ PUSH2 0xEB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8963227F GT PUSH2 0x35A JUMPI DUP1 PUSH4 0x8963227F EQ PUSH2 0xE20 JUMPI DUP1 PUSH4 0x8B4E914A EQ PUSH2 0xE28 JUMPI DUP1 PUSH4 0x8D94D575 EQ PUSH2 0xE47 JUMPI DUP1 PUSH4 0x8F792465 EQ PUSH2 0xE5A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x84C6AF0C EQ PUSH2 0xD85 JUMPI DUP1 PUSH4 0x861E3D3D EQ PUSH2 0xDEE JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 GT PUSH2 0x536 JUMPI DUP1 PUSH4 0x5EE0C7DD GT PUSH2 0x46B JUMPI DUP1 PUSH4 0x75B58C95 GT PUSH2 0x40B JUMPI DUP1 PUSH4 0x818F5673 GT PUSH2 0x3DB JUMPI DUP1 PUSH4 0x818F5673 EQ PUSH2 0xD38 JUMPI DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0xD40 JUMPI DUP1 PUSH4 0x833D816D EQ PUSH2 0xD5F JUMPI DUP1 PUSH4 0x83B95579 EQ PUSH2 0xD72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x75B58C95 EQ PUSH2 0xCCD JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0xCE0 JUMPI DUP1 PUSH4 0x80DA0A1C EQ PUSH2 0xD12 JUMPI DUP1 PUSH4 0x811EECF5 EQ PUSH2 0xD25 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6855A178 GT PUSH2 0x446 JUMPI DUP1 PUSH4 0x6855A178 EQ PUSH2 0xC52 JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0xC65 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0xC84 JUMPI DUP1 PUSH4 0x759076E5 EQ PUSH2 0xCA3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0xC18 JUMPI DUP1 PUSH4 0x657AB2B3 EQ PUSH2 0xC37 JUMPI DUP1 PUSH4 0x67354A84 EQ PUSH2 0xC3F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x4D6 JUMPI DUP1 PUSH4 0x53C42F88 GT PUSH2 0x4B1 JUMPI DUP1 PUSH4 0x53C42F88 EQ PUSH2 0xBBD JUMPI DUP1 PUSH4 0x55C0729B EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0xBDA JUMPI DUP1 PUSH4 0x5997EE36 EQ PUSH2 0xBF9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0xB6A JUMPI DUP1 PUSH4 0x4FD5303D EQ PUSH2 0xB7D JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0xBA9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4092B0C1 GT PUSH2 0x511 JUMPI DUP1 PUSH4 0x4092B0C1 EQ PUSH2 0xB38 JUMPI DUP1 PUSH4 0x48798720 EQ PUSH2 0xB57 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0xA6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0xAF9 JUMPI DUP1 PUSH4 0x401022EF EQ PUSH2 0xB10 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0xB18 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x194448E5 GT PUSH2 0x617 JUMPI DUP1 PUSH4 0x313CE567 GT PUSH2 0x5B7 JUMPI DUP1 PUSH4 0x33F965CE GT PUSH2 0x587 JUMPI DUP1 PUSH4 0x33F965CE EQ PUSH2 0xA6F JUMPI DUP1 PUSH4 0x342DB739 EQ PUSH2 0xAA1 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0xAC6 JUMPI DUP1 PUSH4 0x3E15A357 EQ PUSH2 0xADA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0xA03 JUMPI DUP1 PUSH4 0x32BC74AA EQ PUSH2 0xA29 JUMPI DUP1 PUSH4 0x32CADF3C EQ PUSH2 0xA3C JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0xA50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x225C531E GT PUSH2 0x5F2 JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x986 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x9A5 JUMPI DUP1 PUSH4 0x2904DF29 EQ PUSH2 0x9C4 JUMPI DUP1 PUSH4 0x2F9CF0AA EQ PUSH2 0x9F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x194448E5 EQ PUSH2 0x91F JUMPI DUP1 PUSH4 0x1A7E8014 EQ PUSH2 0x93E JUMPI DUP1 PUSH4 0x1C93944F EQ PUSH2 0x952 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 GT PUSH2 0x682 JUMPI DUP1 PUSH4 0xAECC093 GT PUSH2 0x65D JUMPI DUP1 PUSH4 0xAECC093 EQ PUSH2 0x881 JUMPI DUP1 PUSH4 0xCABF231 EQ PUSH2 0x895 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x8B4 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x8EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x7D9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x843 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x862 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 GT PUSH2 0x6BD JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x759 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x77A JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0x8742D90 EQ PUSH2 0x7BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x6ED JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x714 JUMPI DUP1 PUSH4 0x25CA58E EQ PUSH2 0x743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x6E9 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1346 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0x72E CALLDATASIZE PUSH1 0x4 PUSH2 0x5516 JUMP JUMPDEST PUSH2 0x1488 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH4 0x67748580 PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0x1545 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x555D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x785 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x794 CALLDATASIZE PUSH1 0x4 PUSH2 0x562A JUMP JUMPDEST PUSH2 0x1605 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x7B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x16EF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x7D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x56C8 JUMP JUMPDEST PUSH2 0x16FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x836 PUSH2 0x7F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x574E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0x85D CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x1796 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x86D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x87C CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x17B7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x17C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8A0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x8CE CALLDATASIZE PUSH1 0x4 PUSH2 0x57CA JUMP JUMPDEST PUSH2 0x17CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x92A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x939 CALLDATASIZE PUSH1 0x4 PUSH2 0x5844 JUMP JUMPDEST PUSH2 0x183C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x949 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x195F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x971 PUSH2 0x96C CALLDATASIZE PUSH1 0x4 PUSH2 0x5870 JUMP JUMPDEST PUSH2 0x1967 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x991 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x9A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x588C JUMP JUMPDEST PUSH2 0x1979 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9B0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0x9BF CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x1A9D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9D8 PUSH2 0x1ACA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST PUSH2 0x799 PUSH2 0x9FE CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x1AD8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA17 PUSH2 0x1BA8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST PUSH2 0x799 PUSH2 0xA37 CALLDATASIZE PUSH1 0x4 PUSH2 0x592E JUMP JUMPDEST PUSH2 0x1BD1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA47 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0x1BDD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0xA6A CALLDATASIZE PUSH1 0x4 PUSH2 0x597E JUMP JUMPDEST PUSH2 0x1C20 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x9D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH15 0x1A185C991A185D0B595E1C1BDCD959 PUSH1 0x8A SHL DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAD1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9D8 PUSH2 0x1EA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xAF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x59CE JUMP JUMPDEST PUSH2 0x1EC1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB04 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x971 PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1ED5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB23 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xB32 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB43 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x971 PUSH2 0xB52 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x1FB0 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xB65 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x1FBA JUMP JUMPDEST PUSH2 0x799 PUSH2 0xB78 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A0B JUMP JUMPDEST PUSH2 0x1FC3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB88 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB91 PUSH2 0x1FD9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1FF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBC8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x15180 PUSH2 0x701 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x2013 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBE5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0xBF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x201B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC04 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC23 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0xC32 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x204D JUMP JUMPDEST PUSH2 0x799 PUSH2 0x195F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x14 PUSH2 0x701 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xC60 CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x20B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xC7F CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAD JUMP JUMPDEST PUSH2 0x20C6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xC9E CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x20E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCAE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x701 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xCDB CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x210E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x9D8 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xD20 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x2117 JUMP JUMPDEST PUSH2 0x701 PUSH2 0xD33 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x2120 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x17C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD4B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0xD5A CALLDATASIZE PUSH1 0x4 PUSH2 0x5AD0 JUMP JUMPDEST PUSH2 0x216A JUMP JUMPDEST PUSH2 0x799 PUSH2 0xD6D CALLDATASIZE PUSH1 0x4 PUSH2 0x5B1E JUMP JUMPDEST PUSH2 0x225D JUMP JUMPDEST PUSH2 0x799 PUSH2 0xD80 CALLDATASIZE PUSH1 0x4 PUSH2 0x5B44 JUMP JUMPDEST PUSH2 0x2300 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD90 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP2 MLOAD DUP1 DUP4 ADD DUP4 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP1 DUP4 MSTORE PUSH1 0xFF PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV DUP3 AND SWAP3 DUP5 ADD SWAP3 DUP4 MSTORE DUP5 MLOAD SWAP1 DUP2 MSTORE SWAP2 MLOAD AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x70B JUMP JUMPDEST PUSH2 0x799 PUSH2 0xDFC CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x230D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0xE1B CALLDATASIZE PUSH1 0x4 PUSH2 0x597E JUMP JUMPDEST PUSH2 0x2318 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x241D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xE42 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BA7 JUMP JUMPDEST PUSH2 0x2425 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xE55 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x2430 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE65 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE79 PUSH2 0xE74 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x2439 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x5BCA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE91 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xEA0 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAD JUMP JUMPDEST PUSH2 0x24DE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0x2500 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xEC7 CALLDATASIZE PUSH1 0x4 PUSH2 0x5C18 JUMP JUMPDEST PUSH2 0x253E JUMP JUMPDEST PUSH2 0x799 PUSH2 0xEDA CALLDATASIZE PUSH1 0x4 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x25B1 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xEED CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x25BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xF0C CALLDATASIZE PUSH1 0x4 PUSH2 0x59CE JUMP JUMPDEST PUSH2 0x26E4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9D8 PUSH2 0x2738 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF30 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0xF3F CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x2757 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF4F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0xF79 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x276E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF89 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x282E JUMP JUMPDEST PUSH2 0x799 PUSH2 0xFD0 CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x2837 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFE0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xFEF CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x2842 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x100E CALLDATASIZE PUSH1 0x4 PUSH2 0x5C8B JUMP JUMPDEST PUSH2 0x284E JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1021 CALLDATASIZE PUSH1 0x4 PUSH2 0x5CBF JUMP JUMPDEST PUSH2 0x28AB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1031 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1040 CALLDATASIZE PUSH1 0x4 PUSH2 0x5C8B JUMP JUMPDEST PUSH2 0x291C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1050 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x105F CALLDATASIZE PUSH1 0x4 PUSH2 0x5D29 JUMP JUMPDEST PUSH2 0x2970 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x107E CALLDATASIZE PUSH1 0x4 PUSH2 0x5D5B JUMP JUMPDEST PUSH2 0x2A5A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x108E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x109D CALLDATASIZE PUSH1 0x4 PUSH2 0x5D89 JUMP JUMPDEST PUSH2 0x2C46 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x10BC CALLDATASIZE PUSH1 0x4 PUSH2 0x5DBC JUMP JUMPDEST PUSH2 0x2C92 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x10DB CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x2C9D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x2CA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x733 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1129 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1138 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BA7 JUMP JUMPDEST PUSH2 0x30A6 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x114B CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x30B1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x115B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x30BB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x117E CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x3147 JUMP JUMPDEST PUSH2 0x701 PUSH2 0x1191 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AD0 JUMP JUMPDEST PUSH2 0x3161 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x11B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x31B1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x11CF CALLDATASIZE PUSH1 0x4 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x325E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x11EE CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x336E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x120D CALLDATASIZE PUSH1 0x4 PUSH2 0x5DDF JUMP JUMPDEST PUSH2 0x3386 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1220 CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x33CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x123F CALLDATASIZE PUSH1 0x4 PUSH2 0x5E0B JUMP JUMPDEST PUSH2 0x33D9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x124F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1263 PUSH2 0x125E CALLDATASIZE PUSH1 0x4 PUSH2 0x5E4F JUMP JUMPDEST PUSH2 0x33E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x5ED0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x127B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x128A CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x36EE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x129A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1263 PUSH2 0x12A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x5E4F JUMP JUMPDEST PUSH2 0x3756 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 PUSH2 0xA17 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x12CE CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x3950 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x395B JUMP JUMPDEST PUSH2 0x799 PUSH2 0x39B1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x12FD CALLDATASIZE PUSH1 0x4 PUSH2 0x5F33 JUMP JUMPDEST PUSH2 0x39B9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x130D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x241D JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1324 CALLDATASIZE PUSH1 0x4 PUSH2 0x5CBF JUMP JUMPDEST PUSH2 0x3A78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x1343 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x135D PUSH2 0x3AE9 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13AB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x13CF SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13ED SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1408 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x142C SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x1436 SWAP1 DUP4 PUSH2 0x5F8A JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0x1472 JUMPI DUP1 SLOAD PUSH2 0x1462 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x5F9D JUMP JUMPDEST PUSH2 0x146C SWAP1 DUP4 PUSH2 0x5FB7 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0x146C SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x5F8A JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x14B8 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3ECE0A89 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x14D3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x14EE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1509 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1524 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0x153F JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x5FCA JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x15AF SWAP1 PUSH2 0x5FCA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15FA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x15D1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15FA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x15DD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 DIV PUSH1 0xFF AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1636 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1651 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x165F JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x16A7 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x16B2 DUP9 DUP9 DUP9 PUSH2 0x3B5A JUMP JUMPDEST DUP4 ISZERO PUSH2 0x16E5 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3C09 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1720 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x172A DUP4 PUSH2 0x3C60 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x17A0 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP PUSH2 0x17AD DUP2 DUP6 DUP6 PUSH2 0x3D01 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3D0E JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x3D5C JUMP JUMPDEST JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1829 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x189D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x18C1 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18DF SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18FA JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x191E SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x192A DUP3 PUSH2 0x3DA5 JUMP JUMPDEST EQ DUP1 PUSH2 0x1933 JUMPI POP DUP3 JUMPDEST PUSH2 0x1950 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1959 DUP5 PUSH2 0x3E9E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x402B JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x40B9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1982 DUP6 PUSH2 0x3C60 JUMP JUMPDEST POP PUSH0 PUSH2 0x1998 DUP7 DUP7 DUP7 PUSH2 0x1993 DUP8 PUSH2 0x40E5 JUMP JUMPDEST PUSH2 0x4115 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x19C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x19D1 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1A15 JUMPI PUSH2 0x19E5 DUP2 DUP6 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x19F7 PUSH2 0x19F2 DUP4 DUP8 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x3DA5 JUMP JUMPDEST EQ PUSH2 0x1A15 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A32 DUP4 DUP6 PUSH2 0x1A22 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x4214 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1AA7 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP PUSH2 0x1AB4 DUP6 DUP3 DUP6 PUSH2 0x4273 JUMP JUMPDEST PUSH2 0x1ABF DUP6 DUP6 DUP6 PUSH2 0x42BE JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x1AE3 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1B04 JUMPI PUSH2 0x1B04 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x1B2C JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1B2A JUMPI PUSH2 0x1B2A PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x1B5B JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1B66 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1B71 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1BA1 JUMPI PUSH2 0x1B85 DUP2 DUP4 PUSH2 0x5FB7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0x146C SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x601F JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP5 DUP5 PUSH2 0x4310 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1BE7 PUSH2 0x43F3 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP SWAP3 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1C2D DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C4E JUMPI PUSH2 0x1C4E PUSH2 0x571A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x1C7E JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1C89 PUSH2 0x3AE9 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1CD2 JUMPI DUP2 SLOAD PUSH2 0x1CC6 SWAP1 PUSH2 0x19F2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x5FB7 JUMP JUMPDEST POP PUSH2 0x1CCF PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x1CF9 PUSH2 0x1CDD PUSH2 0x3CF8 JUMP JUMPDEST DUP9 PUSH2 0x1CEB PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x1CF4 SWAP2 PUSH2 0x605F JUMP JUMPDEST PUSH2 0x4405 JUMP JUMPDEST PUSH2 0x1D42 DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1D59 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1DC1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1DE5 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1E0D JUMPI PUSH2 0x1E0D PUSH2 0x1DFE PUSH2 0x3CF8 JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x4405 JUMP JUMPDEST POP PUSH0 PUSH2 0x1E17 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1E9B JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x1E4D SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1E3B DUP2 TIMESTAMP PUSH2 0x40B9 JUMP JUMPDEST PUSH2 0x1993 PUSH2 0x1E48 DUP8 DUP10 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x40E5 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x1E97 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1ECD DUP5 DUP5 DUP5 PUSH2 0x4514 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 DIV PUSH1 0xFF AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1F06 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1F21 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1F2F JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1F4D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x1F77 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP4 ISZERO PUSH2 0x1BA1 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x455C JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x4639 JUMP JUMPDEST PUSH2 0x1FCB PUSH2 0x402B JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x46A9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2001 PUSH2 0x3D5C JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x241D JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x20A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x4765 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x20D3 DUP6 PUSH2 0x2C9D JUMP JUMPDEST SWAP1 POP PUSH2 0x1ECD PUSH2 0x20E0 PUSH2 0x3CF8 JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x488B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x4908 JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x4910 JUMP JUMPDEST PUSH0 PUSH2 0x212A DUP3 PUSH2 0x3DA5 JUMP JUMPDEST SWAP1 POP PUSH32 0x3A221B9176B65B4A4850E63CD182357E93D2AD08E8951DAA0904244DC82DF460 DUP2 PUSH1 0x40 MLOAD PUSH2 0x215D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2173 DUP5 PUSH2 0x3C60 JUMP JUMPDEST POP PUSH0 PUSH2 0x218D DUP6 DUP6 DUP6 PUSH2 0x2184 DUP7 PUSH2 0x40E5 JUMP JUMPDEST PUSH2 0x1993 SWAP1 PUSH2 0x5F9D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x21BB JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP PUSH2 0x21E3 PUSH2 0x21C8 PUSH2 0x3CF8 JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x21D2 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x4A34 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x221A PUSH2 0x3CF8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0x2292 JUMPI POP DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP5 AND SWAP2 AND LT ISZERO JUMPDEST ISZERO PUSH2 0x22B0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH9 0xFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP1 DUP2 OR PUSH1 0x1 PUSH1 0x40 SHL OR PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH2 0x1BA1 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x3D01 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x2325 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2346 JUMPI PUSH2 0x2346 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x236E JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x236C JUMPI PUSH2 0x236C PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x239D JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x23A8 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH2 0x23B5 PUSH2 0x1CDD PUSH2 0x3CF8 JUMP JUMPDEST PUSH2 0x23FE DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x2409 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1E9B JUMPI PUSH2 0x1B85 DUP2 DUP4 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x4BC0 JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x3D0E JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x3E9E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2465 DUP3 PUSH2 0x3C60 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE DUP2 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP3 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x249E JUMPI PUSH2 0x249E PUSH2 0x571A JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x24AF JUMPI PUSH2 0x24AF PUSH2 0x571A JUMP JUMPDEST DUP2 MSTORE SWAP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP2 DIV AND PUSH1 0x40 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x24EB DUP6 PUSH2 0x2842 JUMP JUMPDEST SWAP1 POP PUSH2 0x1ECD PUSH2 0x24F8 PUSH2 0x3CF8 JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x488B JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x5FCA JUMP JUMPDEST PUSH2 0x1BA1 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP10 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP8 DUP2 MSTORE SWAP3 POP DUP8 SWAP2 POP DUP7 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP7 SWAP3 POP PUSH2 0x3B5A SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP5 DUP5 PUSH2 0x488B JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x25C8 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x25E9 JUMPI PUSH2 0x25E9 PUSH2 0x571A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x2619 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x2624 PUSH2 0x3AE9 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x266D JUMPI DUP2 SLOAD PUSH2 0x2661 SWAP1 PUSH2 0x19F2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x5FB7 JUMP JUMPDEST POP PUSH2 0x266A PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 PUSH2 0x2676 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1BA1 JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x269A SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1E3B DUP2 TIMESTAMP PUSH2 0x40B9 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x16E5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x2720 DUP8 DUP8 DUP8 PUSH2 0x4514 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2761 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP PUSH2 0x17AD DUP2 DUP6 DUP6 PUSH2 0x42BE JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2785 JUMPI PUSH2 0x277E PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH2 0x27AD JUMP JUMPDEST PUSH2 0x278D PUSH2 0x3AE9 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x27AD JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x280A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x20C1 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH2 0x3AE9 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x4273 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3C09 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2859 DUP4 PUSH2 0x3147 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x2882 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH0 PUSH2 0x288C DUP7 PUSH2 0x17B7 JUMP JUMPDEST SWAP1 POP PUSH2 0x28A2 PUSH2 0x2899 PUSH2 0x3CF8 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x4A6D JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4BF6 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2927 DUP4 PUSH2 0x336E JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x2950 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH0 PUSH2 0x295A DUP7 PUSH2 0x16EF JUMP JUMPDEST SWAP1 POP PUSH2 0x28A2 PUSH2 0x2967 PUSH2 0x3CF8 JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x4A6D JUMP JUMPDEST PUSH0 PUSH2 0x297A DUP5 PUSH2 0x3C60 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x29F4 DUP4 PUSH2 0x4C08 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x2A2A DUP3 PUSH2 0x4C08 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2ABD JUMPI PUSH2 0x2ABD PUSH2 0x571A JUMP JUMPDEST EQ PUSH2 0x2ADB JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x2B01 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x2B27 DUP7 PUSH2 0x4C08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2B3E DUP6 PUSH2 0x4C08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2BA5 JUMPI PUSH2 0x2BA5 PUSH2 0x571A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x2C36 SWAP1 DUP5 SWAP1 PUSH2 0x60D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x1972 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH0 PUSH2 0x4C3B JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x4C73 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3D0E JUMP JUMPDEST PUSH0 PUSH2 0x2CB1 PUSH2 0x1EA6 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x2D10 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2D34 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x2D68 JUMPI PUSH1 0x40 MLOAD PUSH4 0x252FA83D PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2D70 PUSH2 0x3AE9 JUMP JUMPDEST ISZERO PUSH2 0x2D8E JUMPI PUSH1 0x40 MLOAD PUSH4 0x902DD39B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0x38D52E0F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP4 AND SWAP2 PUSH4 0x38D52E0F SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2DE4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2E08 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2E2F JUMPI PUSH1 0x40 MLOAD PUSH4 0x233F8563 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 SWAP1 SWAP2 OR DUP3 SSTORE DUP4 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2EA3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2EC7 SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP3 ADD MSTORE SWAP1 DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F17 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2F3B SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2FA7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2FCB SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3038 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x305C SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x37465CE4C247E78514460560DA0BCC785FFF559503CE6C3D87A6E84352437392 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x3C09 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x4D56 JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3111 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3135 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x313D PUSH2 0x3AE9 JUMP JUMPDEST PUSH2 0x146C SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x3154 DUP4 PUSH2 0x4D8A JUMP JUMPDEST PUSH2 0x315C PUSH2 0x30BB JUMP JUMPDEST PUSH2 0x4D9D JUMP JUMPDEST PUSH0 PUSH2 0x316E DUP6 DUP6 DUP6 DUP6 PUSH2 0x4115 JUMP JUMPDEST SWAP1 POP PUSH32 0x7281C4A6D49C3BB62269FED398306788C6B3B4FCE8789168AA0AB94EC0DD9EC9 DUP2 PUSH1 0x40 MLOAD PUSH2 0x31A1 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x3236 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x320E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3232 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x3240 DUP3 PUSH2 0x3DA5 JUMP JUMPDEST EQ PUSH2 0x1343 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x32B5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP PUSH0 PUSH2 0x32C0 DUP7 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x32E1 JUMPI PUSH2 0x32E1 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x3309 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3307 JUMPI PUSH2 0x3307 PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x3338 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x335B SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x3352 DUP2 TIMESTAMP PUSH2 0x40B9 JUMP JUMPDEST PUSH2 0x2184 DUP8 PUSH2 0x40E5 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x337B DUP4 PUSH2 0x4DAC JUMP JUMPDEST PUSH2 0x315C PUSH2 0x10DB PUSH2 0x30BB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x4DB6 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x4405 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x33F1 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3412 JUMPI PUSH2 0x3412 PUSH2 0x571A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x3442 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x344D PUSH2 0x3AE9 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x3496 JUMPI DUP2 SLOAD PUSH2 0x348A SWAP1 PUSH2 0x19F2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x5FB7 JUMP JUMPDEST POP PUSH2 0x3493 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x34B0 JUMPI PUSH2 0x34B0 PUSH2 0x556F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x34E3 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x34CE JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x36E2 JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x3503 JUMPI PUSH2 0x3503 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3515 SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST PUSH2 0x3523 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x352C SWAP2 PUSH2 0x605F JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x3548 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x3563 JUMPI PUSH2 0x355F PUSH2 0x3558 PUSH2 0x3CF8 JUMP JUMPDEST DUP13 DUP4 PUSH2 0x4405 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x35CE DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x3578 JUMPI PUSH2 0x3578 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x358A SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x35E0 JUMPI PUSH2 0x35E0 PUSH2 0x613E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x36D9 JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3603 JUMPI PUSH2 0x3603 PUSH2 0x613E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x361E SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3686 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x36AA SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x36D7 JUMPI PUSH2 0x36D2 PUSH2 0x36C3 PUSH2 0x3CF8 JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x4405 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x34E8 JUMP JUMPDEST POP POP POP PUSH0 PUSH2 0x1E17 PUSH2 0x3AE9 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x3745 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x3763 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3784 JUMPI PUSH2 0x3784 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x37AC JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x37AA JUMPI PUSH2 0x37AA PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x37DB JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x37E6 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3801 JUMPI PUSH2 0x3801 PUSH2 0x556F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3834 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x381F JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x3945 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x3854 JUMPI PUSH2 0x3854 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3866 SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST PUSH2 0x3874 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x387D SWAP2 PUSH2 0x605F JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x3899 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x38B4 JUMPI PUSH2 0x38B0 PUSH2 0x38A9 PUSH2 0x3CF8 JUMP JUMPDEST DUP12 DUP4 PUSH2 0x4405 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x391F DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x38C9 JUMPI PUSH2 0x38C9 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x38DB SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3931 JUMPI PUSH2 0x3931 PUSH2 0x613E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x3839 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x2409 PUSH2 0x3AE9 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x42BE JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1343 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x4DEA JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x39CC JUMPI PUSH2 0x39CC PUSH2 0x571A JUMP JUMPDEST SUB PUSH2 0x39EA JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x39F4 DUP4 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x3A41 SWAP3 SWAP2 SWAP1 PUSH2 0x6194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3A6E JUMPI PUSH2 0x3A6E PUSH2 0x571A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4E71 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3AF2 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB 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 0x3B36 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1AD3 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x3B62 PUSH2 0x4BC0 JUMP JUMPDEST PUSH2 0x3B6A PUSH2 0x241D JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x3BC7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3BEB SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST SWAP1 POP PUSH2 0x3BF6 DUP2 PUSH2 0x4908 JUMP JUMPDEST PUSH2 0x3C00 DUP5 DUP5 PUSH2 0x4BF6 JUMP JUMPDEST PUSH2 0x1959 DUP3 PUSH2 0x4910 JUMP JUMPDEST PUSH0 PUSH2 0x1972 PUSH2 0x3C15 PUSH2 0x1346 JUMP JUMPDEST PUSH2 0x3C20 SWAP1 PUSH1 0x1 PUSH2 0x5F8A JUMP JUMPDEST PUSH2 0x3C2B PUSH0 PUSH1 0xA PUSH2 0x6292 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3C57 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x4EC1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3CC4 JUMPI PUSH2 0x3CC4 PUSH2 0x571A JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x3CF1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH2 0x4F03 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4310 JUMP JUMPDEST PUSH0 PUSH2 0x1972 PUSH2 0x3D1D DUP3 PUSH1 0xA PUSH2 0x6292 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3D49 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH2 0x3D51 PUSH2 0x1346 JUMP JUMPDEST PUSH2 0x3C57 SWAP1 PUSH1 0x1 PUSH2 0x5F8A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x3E25 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3E01 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x315C SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3E7A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3CF1 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3EC5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x3F70 JUMPI PUSH2 0x3EFD PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3F4A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3F6E SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP JUMPDEST PUSH2 0x3F78 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3FC6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3FEA SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH2 0x22F3 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x409B JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x408F PUSH2 0x4F53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x40DC JUMPI PUSH2 0x40D7 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x62B4 JUMP JUMPDEST PUSH2 0x1972 JUMP JUMPDEST PUSH2 0x1972 DUP3 PUSH2 0x455C JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x4111 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x4130 DUP8 DUP8 DUP8 PUSH2 0x4514 JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x4154 SWAP2 SWAP1 PUSH2 0x62C7 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x417B SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x62EE JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x20C1 SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x4F67 JUMP JUMPDEST PUSH0 PUSH2 0x427E DUP5 DUP5 PUSH2 0x3386 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1959 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x42B0 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x4310 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x42E7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x20B6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x4347 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x4370 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x1BA1 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x43E4 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH2 0x43FD PUSH2 0x4FD3 JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 PUSH2 0x4410 DUP4 DUP4 PUSH2 0x2C46 JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 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 0x444F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4473 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x44A2 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x6325 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x44BC JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x44E0 SWAP2 SWAP1 PUSH2 0x6352 JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0x16E5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x6325 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1972 DUP4 DUP4 PUSH0 PUSH2 0x501D JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x4573 PUSH4 0x67748580 DUP7 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x457D SWAP2 SWAP1 PUSH2 0x62B4 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x458D JUMPI PUSH2 0x16D PUSH2 0x4591 JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x4614 JUMPI DUP2 PUSH2 0x45A8 JUMPI PUSH2 0x16D PUSH2 0x45AC JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x45BA SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x5FB7 JUMP JUMPDEST SWAP1 POP PUSH2 0x45C5 DUP4 PUSH2 0x637F JUMP JUMPDEST SWAP3 POP PUSH2 0x45D2 PUSH1 0x4 DUP5 PUSH2 0x63A3 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x460D JUMPI POP PUSH2 0x45EB PUSH1 0x64 DUP5 PUSH2 0x63A3 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x460D JUMPI POP PUSH2 0x4605 PUSH2 0x190 DUP5 PUSH2 0x63A3 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x4580 JUMP JUMPDEST PUSH2 0x461E DUP2 DUP4 PUSH2 0x4C73 JUMP JUMPDEST PUSH2 0x4629 DUP5 PUSH1 0x64 PUSH2 0x63CA JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1ECD SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH2 0x4641 PUSH2 0x4BC0 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH0 DUP1 PUSH2 0x465A DUP5 PUSH2 0x50BD JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x466A JUMPI PUSH1 0x12 PUSH2 0x466C JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D 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 SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x4703 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x4700 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x472B JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x475B JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 PUSH2 0x5193 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x479F JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x4794 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x47FC SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x47DE JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x481A JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x4838 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x487D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH2 0x48B0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 ADDRESS DUP7 PUSH2 0x4A34 JUMP JUMPDEST PUSH2 0x48BA DUP5 DUP4 PUSH2 0x4D56 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x43E4 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH2 0x1FBA PUSH2 0x4BC0 JUMP JUMPDEST PUSH2 0x4918 PUSH2 0x4BC0 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x4974 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4998 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4A06 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4A2A SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH2 0x1343 DUP2 PUSH2 0x3E9E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x1959 SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD PUSH2 0x4241 JUMP JUMPDEST PUSH0 PUSH2 0x4A76 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x4BAB JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4AD5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4AF9 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x4B03 DUP4 DUP7 PUSH2 0x5FB7 JUMP JUMPDEST GT ISZERO PUSH2 0x4B22 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x4B3C DUP5 DUP8 PUSH2 0x5FB7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4B84 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4BA8 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x4BB8 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x51E8 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4BFE PUSH2 0x4BC0 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x4E71 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x4111 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 PUSH1 0x1C DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x4C61 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1DD4BB1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x8 MUL SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x4C85 JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 ISZERO PUSH2 0x4CAE JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x4C9C JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST DUP3 PUSH2 0x4CA6 DUP2 PUSH2 0x63E9 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x4CBF JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x4CBF JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x4D49 JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x4D42 JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4D3B JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x4D34 JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x4D2D JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x4D26 JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x4D1F JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x4D18 JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x4D11 JUMPI PUSH1 0xC PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0xB PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0xA PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D7F JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x1FD5 PUSH0 DUP4 DUP4 PUSH2 0x4765 JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x4D97 DUP4 PUSH2 0x20E8 JUMP JUMPDEST PUSH0 PUSH2 0x3C09 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x1972 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x20E8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4DDF JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 PUSH0 DUP4 PUSH2 0x4765 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x4E22 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x1343 JUMPI DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x4E79 PUSH2 0x4BC0 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4EB2 DUP5 DUP3 PUSH2 0x6442 JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1959 DUP4 DUP3 PUSH2 0x6442 JUMP JUMPDEST PUSH0 PUSH2 0x4EEE PUSH2 0x4ECE DUP4 PUSH2 0x529C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4EE9 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x4EE4 JUMPI PUSH2 0x4EE4 PUSH2 0x62A0 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x4EF9 DUP7 DUP7 DUP7 PUSH2 0x52C8 JUMP JUMPDEST PUSH2 0x28A2 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 PUSH2 0x4F10 CALLER PUSH2 0x201B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4F1C JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x4F4B JUMPI PUSH0 CALLDATASIZE PUSH2 0x4F2D DUP4 DUP6 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x4F38 SWAP3 DUP3 SWAP1 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x4F41 SWAP2 PUSH2 0x64FC JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x2748 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH0 DUP9 GAS CALL DUP1 PUSH2 0x4F86 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x4F9D JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x4FAA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1959 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP2 PUSH1 0x14 PUSH2 0x4FE1 CALLER PUSH2 0x201B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FED JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x5016 JUMPI PUSH0 DUP1 CALLDATASIZE PUSH2 0x4FFF DUP5 DUP7 PUSH2 0x5FB7 JUMP JUMPDEST SWAP3 PUSH2 0x500C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x6038 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH2 0x500C JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x5049 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x5064 SWAP2 SWAP1 PUSH2 0x6532 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x509E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x50A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x50B3 DUP7 DUP4 DUP4 PUSH2 0x537E JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD DUP3 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 MLOAD PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 PUSH2 0x5103 SWAP2 PUSH2 0x6532 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x513B JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x5140 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x5154 JUMPI POP PUSH1 0x20 DUP2 MLOAD LT ISZERO JUMPDEST ISZERO PUSH2 0x5187 JUMPI PUSH0 DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x516E SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST SWAP1 POP PUSH1 0xFF DUP2 GT PUSH2 0x5185 JUMPI PUSH1 0x1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMPDEST POP PUSH0 SWAP5 DUP6 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x519C DUP3 PUSH2 0x53D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x51E0 JUMPI PUSH2 0x20C1 DUP3 DUP3 PUSH2 0x5438 JUMP JUMPDEST PUSH2 0x1FD5 PUSH2 0x54A1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP1 DUP6 AND EQ PUSH2 0x5214 JUMPI PUSH2 0x5214 DUP5 DUP8 DUP5 PUSH2 0x4273 JUMP JUMPDEST PUSH2 0x521E DUP5 DUP4 PUSH2 0x4DB6 JUMP JUMPDEST DUP1 SLOAD PUSH2 0x5234 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 DUP6 PUSH2 0x4214 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP7 DUP7 PUSH1 0x40 MLOAD PUSH2 0x528C SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x52B1 JUMPI PUSH2 0x52B1 PUSH2 0x571A JUMP JUMPDEST PUSH2 0x52BB SWAP2 SWAP1 PUSH2 0x6548 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP4 DUP4 MUL DUP2 PUSH0 NOT DUP6 DUP8 MULMOD DUP3 DUP2 LT DUP4 DUP3 SUB SUB SWAP2 POP POP DUP1 PUSH0 SUB PUSH2 0x52FC JUMPI DUP4 DUP3 DUP2 PUSH2 0x52F2 JUMPI PUSH2 0x52F2 PUSH2 0x62A0 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x1972 JUMP JUMPDEST DUP1 DUP5 GT PUSH2 0x5313 JUMPI PUSH2 0x5313 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x54C0 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP7 DUP5 GT SWAP1 SWAP6 SUB SWAP5 SWAP1 SWAP5 MUL SWAP2 SWAP1 SWAP5 SUB SWAP3 SWAP1 SWAP3 DIV SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x538E JUMPI PUSH2 0x40D7 DUP3 PUSH2 0x54D1 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x53A5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x53CE JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP DUP1 PUSH2 0x1972 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x540A JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x5454 SWAP2 SWAP1 PUSH2 0x6532 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x548C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x5491 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x28A2 DUP6 DUP4 DUP4 PUSH2 0x537E JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x54E1 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x5511 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5526 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1972 DUP3 PUSH2 0x54FA JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1972 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x552F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x559C JUMPI PUSH2 0x559C PUSH2 0x556F JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x55CA JUMPI PUSH2 0x55CA PUSH2 0x556F JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x55E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x5607 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1972 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x5583 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x563C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5651 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x565D DUP7 DUP3 DUP8 ADD PUSH2 0x55F8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5678 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5684 DUP7 DUP3 DUP8 ADD PUSH2 0x55F8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5695 DUP2 PUSH2 0x5616 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x56B0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x56D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x56E4 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x56B7 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x570F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1972 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x574A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x153F DUP3 DUP5 PUSH2 0x572E JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x576D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5778 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x5796 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x57AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x57C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x57DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x57E9 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x57F9 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x581A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5826 DUP9 DUP3 DUP10 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5855 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5860 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5881 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5778 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x58A0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x58AB DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x58BB DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x58CB DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x58E2 DUP2 PUSH2 0x5616 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5902 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x590D DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x591D DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5941 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x594C DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x595C DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x5973 DUP2 PUSH2 0x5837 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5990 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x599B DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x59B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x59C1 DUP7 DUP3 DUP8 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x59E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x59EB DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x59FB DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5695 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5A1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5A27 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5A41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x5A51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5A60 DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x5583 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5A7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5A88 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5A98 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5ABE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5AE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5AEE DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5AFE DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x5B0E DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5B2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1972 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5B58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x5B63 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x5B73 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x5B83 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5BB8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5B9B JUMP JUMPDEST DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD SWAP2 PUSH2 0x5BEB SWAP1 DUP5 ADD DUP3 PUSH2 0x572E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5C2C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5C41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5C4D DUP9 DUP3 DUP10 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5C6B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5C77 DUP9 DUP3 DUP10 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x58E2 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5C9D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5CAF DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5695 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5CD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5CE7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5CF3 DUP8 DUP3 DUP9 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5D11 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5D1D DUP8 DUP3 DUP9 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5D3B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5D46 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5D6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5D79 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5A98 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5D9A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5DA5 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH2 0x5DB3 PUSH1 0x20 DUP5 ADD PUSH2 0x54FA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5DCD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5DF0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5DFB DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5E1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5E28 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5E38 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH2 0x5E46 PUSH1 0x40 DUP6 ADD PUSH2 0x54FA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5E61 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5E6C DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5E86 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x5E96 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5EAB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x5EBF JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5F27 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x5F12 DUP6 DUP4 MLOAD PUSH2 0x552F JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x5EF6 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5F44 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5F4F DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5B9B JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x5FB1 JUMPI PUSH2 0x5FB1 PUSH2 0x5F76 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x5FDE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x5FFC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x1972 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x572E JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x6046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x6052 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x6090 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x60A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1972 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x60F8 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x572E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6133 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1972 DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x6167 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x6180 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x57C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x61A2 DUP3 DUP6 PUSH2 0x572E JUMP JUMPDEST PUSH2 0x1972 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x572E JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x61EA JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x61CE JUMPI PUSH2 0x61CE PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x61DC JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x61B3 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x6200 JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH2 0x620C JUMPI POP PUSH0 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x6222 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x622C JUMPI PUSH2 0x6248 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x153F JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x623D JUMPI PUSH2 0x623D PUSH2 0x5F76 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x153F JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x626B JUMPI POP DUP2 DUP2 EXP PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6277 PUSH0 NOT DUP5 DUP5 PUSH2 0x61AF JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x628A JUMPI PUSH2 0x628A PUSH2 0x5F76 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1972 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x61F2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x62C2 JUMPI PUSH2 0x62C2 PUSH2 0x62A0 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x62E6 JUMPI PUSH2 0x62E6 PUSH2 0x5F76 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6363 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x636E DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x56F4 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x639A JUMPI PUSH2 0x639A PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x63B8 JUMPI PUSH2 0x63B8 PUSH2 0x62A0 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x6090 JUMPI PUSH2 0x6090 PUSH2 0x5F76 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x63F7 JUMPI PUSH2 0x63F7 PUSH2 0x5F76 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x20C1 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x6423 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1BA1 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x642F JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x645B JUMPI PUSH2 0x645B PUSH2 0x556F JUMP JUMPDEST PUSH2 0x646F DUP2 PUSH2 0x6469 DUP5 SLOAD PUSH2 0x5FCA JUMP JUMPDEST DUP5 PUSH2 0x63FE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x64A1 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x648A JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x1BA1 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x64D0 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x64B0 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x64ED JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x6090 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x655A JUMPI PUSH2 0x655A PUSH2 0x62A0 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE 0xE1 DELEGATECALL PUSH30 0xB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE00C7F505B2F3 PUSH18 0xAE2175EE4913F4499E1F2633A7B5936321EE 0xD1 0xCD 0xAE 0xB6 GT MLOAD DUP2 0xD2 CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF000773E5 ORIGIN 0xDF 0xED 0xE9 0x1F DIV 0xB1 0x2A PUSH20 0xD3D2ACD361424F41F76B4FB79F090161E36B4E00 CREATE 0xC5 PUSH31 0x16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00A264 PUSH10 0x706673582212206AA3F0 0xD8 0xD0 MSTORE8 0xB4 SWAP10 LOG4 DUP1 0xA7 GAS 0xCF 0xDD 0x28 PUSH0 CODESIZE BYTE 0x4C SWAP7 0xD7 0xC2 0xBF LOG2 0xC JUMPDEST SAR 0x23 0xCC GASPRICE 0xB7 MSIZE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"2621:7590:71:-:0;;;;;1171:4:23;1128:48;;2850:126:71;;;;;;;;2621:7590;2850:126;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1623:37:21;;;;;10046:25:73;::::1;;::::0;2929:17:71;2948:11;10077:22:73::1;:20;:22::i;:::-;9931:173:::0;;2850:126:71;;2621:7590;;7711:422:22;8870:21;7900:15;;;;;;;7896:76;;;7938:23;;-1:-1:-1;;;7938:23:22;;;;;;;;;;;7896:76;7985:14;;-1:-1:-1;;;;;7985:14:22;;;:34;7981:146;;8035:33;;-1:-1:-1;;;;;;8035:33:22;-1:-1:-1;;;;;8035:33:22;;;;;8087:29;;705:50:81;;;8087:29:22;;693:2:81;678:18;8087:29:22;;;;;;;7981:146;7760:373;7711:422::o;14:131:81:-;-1:-1:-1;;;;;89:31:81;;79:42;;69:70;;135:1;132;125:12;150:406;250:6;258;311:2;299:9;290:7;286:23;282:32;279:52;;;327:1;324;317:12;279:52;359:9;353:16;378:31;403:5;378:31;:::i;:::-;478:2;463:18;;457:25;428:5;;-1:-1:-1;491:33:81;457:25;491:33;:::i;:::-;543:7;533:17;;;150:406;;;;;:::o;561:200::-;2621:7590:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@$CashFlowLenderStorageLocation_22099":{"entryPoint":null,"id":22099,"parameterSlots":0,"returnSlots":1},"@$ERC4626StorageLocation_22107":{"entryPoint":null,"id":22107,"parameterSlots":0,"returnSlots":1},"@$JAN_1ST_2025_22074":{"entryPoint":null,"id":22074,"parameterSlots":0,"returnSlots":1},"@$SECONDS_PER_DAY_22082":{"entryPoint":null,"id":22082,"parameterSlots":0,"returnSlots":1},"@$__CashFlowLender_init_22197":{"entryPoint":9534,"id":22197,"parameterSlots":5,"returnSlots":0},"@$__CashFlowLender_init_unchained_22210":{"entryPoint":8471,"id":22210,"parameterSlots":1,"returnSlots":0},"@$__Context_init_22770":{"entryPoint":null,"id":22770,"parameterSlots":0,"returnSlots":0},"@$__Context_init_unchained_22779":{"entryPoint":null,"id":22779,"parameterSlots":0,"returnSlots":0},"@$__ERC20_init_22587":{"entryPoint":10411,"id":22587,"parameterSlots":4,"returnSlots":0},"@$__ERC20_init_unchained_22602":{"entryPoint":14968,"id":22602,"parameterSlots":4,"returnSlots":0},"@$__ERC4626_init_22485":{"entryPoint":8462,"id":22485,"parameterSlots":1,"returnSlots":0},"@$__ERC4626_init_unchained_22498":{"entryPoint":8122,"id":22498,"parameterSlots":1,"returnSlots":0},"@$__UUPSUpgradeable_init_22734":{"entryPoint":null,"id":22734,"parameterSlots":0,"returnSlots":0},"@$__UUPSUpgradeable_init_unchained_22743":{"entryPoint":8211,"id":22743,"parameterSlots":0,"returnSlots":0},"@$_approve_22686":{"entryPoint":8973,"id":22686,"parameterSlots":3,"returnSlots":0},"@$_approve_22707":{"entryPoint":7121,"id":22707,"parameterSlots":4,"returnSlots":0},"@$_authorizeUpgrade_22252":{"entryPoint":null,"id":22252,"parameterSlots":1,"returnSlots":0},"@$_balance_22304":{"entryPoint":10286,"id":22304,"parameterSlots":0,"returnSlots":1},"@$_burn_22668":{"entryPoint":13263,"id":22668,"parameterSlots":2,"returnSlots":0},"@$_changeDebt_22430":{"entryPoint":12641,"id":22430,"parameterSlots":4,"returnSlots":1},"@$_checkCanForward_22448":{"entryPoint":13273,"id":22448,"parameterSlots":3,"returnSlots":0},"@$_checkInitializing_22788":{"entryPoint":null,"id":22788,"parameterSlots":0,"returnSlots":0},"@$_checkNotDelegated_22761":{"entryPoint":6083,"id":22761,"parameterSlots":0,"returnSlots":0},"@$_checkProxy_22752":{"entryPoint":6495,"id":22752,"parameterSlots":0,"returnSlots":0},"@$_computeCalendarMonth_22339":{"entryPoint":8112,"id":22339,"parameterSlots":1,"returnSlots":1},"@$_contextSuffixLength_22265":{"entryPoint":null,"id":22265,"parameterSlots":0,"returnSlots":1},"@$_convertToAssets_22538":{"entryPoint":12454,"id":22538,"parameterSlots":2,"returnSlots":1},"@$_convertToShares_22518":{"entryPoint":9253,"id":22518,"parameterSlots":2,"returnSlots":1},"@$_decimalsOffset_22572":{"entryPoint":null,"id":22572,"parameterSlots":0,"returnSlots":1},"@$_deinvest_22401":{"entryPoint":8480,"id":22401,"parameterSlots":1,"returnSlots":1},"@$_deposit_22559":{"entryPoint":9649,"id":22559,"parameterSlots":4,"returnSlots":0},"@$_disableInitializers_22797":{"entryPoint":14769,"id":22797,"parameterSlots":0,"returnSlots":0},"@$_getERC4626StorageCFL_22178":{"entryPoint":null,"id":22178,"parameterSlots":0,"returnSlots":1},"@$_getInitializedVersion_22810":{"entryPoint":8153,"id":22810,"parameterSlots":0,"returnSlots":1},"@$_getMonth_22323":{"entryPoint":11410,"id":22323,"parameterSlots":2,"returnSlots":1},"@$_getTargetConfig_22240":{"entryPoint":9273,"id":22240,"parameterSlots":1,"returnSlots":1},"@$_isInitializing_22823":{"entryPoint":null,"id":22823,"parameterSlots":0,"returnSlots":1},"@$_makeSlotIndex_22358":{"entryPoint":6503,"id":22358,"parameterSlots":2,"returnSlots":1},"@$_makeTargetSlot_22381":{"entryPoint":7873,"id":22381,"parameterSlots":3,"returnSlots":1},"@$_mint_22653":{"entryPoint":12465,"id":22653,"parameterSlots":2,"returnSlots":0},"@$_msgData_22291":{"entryPoint":7133,"id":22291,"parameterSlots":0,"returnSlots":1},"@$_msgSender_22278":{"entryPoint":6858,"id":22278,"parameterSlots":0,"returnSlots":1},"@$_policyPool_22091":{"entryPoint":null,"id":22091,"parameterSlots":0,"returnSlots":1},"@$_setYieldVault_22223":{"entryPoint":9264,"id":22223,"parameterSlots":1,"returnSlots":0},"@$_spendAllowance_22725":{"entryPoint":10295,"id":22725,"parameterSlots":3,"returnSlots":0},"@$_transfer_22620":{"entryPoint":14672,"id":22620,"parameterSlots":3,"returnSlots":0},"@$_update_22638":{"entryPoint":8374,"id":22638,"parameterSlots":3,"returnSlots":0},"@$_withdraw_22472":{"entryPoint":8960,"id":22472,"parameterSlots":5,"returnSlots":0},"@$forwardNewPolicyWrapper_22122":{"entryPoint":9661,"id":22122,"parameterSlots":1,"returnSlots":0},"@$forwardResolvePolicyWrapper_22131":{"entryPoint":6872,"id":22131,"parameterSlots":1,"returnSlots":0},"@$initializer_22149":{"entryPoint":7893,"id":22149,"parameterSlots":0,"returnSlots":0},"@$notDelegated_22143":{"entryPoint":null,"id":22143,"parameterSlots":0,"returnSlots":0},"@$onlyInitializing_22164":{"entryPoint":9245,"id":22164,"parameterSlots":0,"returnSlots":0},"@$onlyPolicyPool_22113":{"entryPoint":14683,"id":22113,"parameterSlots":0,"returnSlots":0},"@$onlyProxy_22137":{"entryPoint":null,"id":22137,"parameterSlots":0,"returnSlots":0},"@$reinitializer_22158":{"entryPoint":8797,"id":22158,"parameterSlots":1,"returnSlots":0},"@OWN_POLICY_SELECTOR_22973":{"entryPoint":null,"id":22973,"parameterSlots":0,"returnSlots":0},"@SLOTSIZE_CALENDAR_MONTH_22981":{"entryPoint":null,"id":22981,"parameterSlots":0,"returnSlots":0},"@UPGRADE_INTERFACE_VERSION_5186":{"entryPoint":null,"id":5186,"parameterSlots":0,"returnSlots":0},"@_22827":{"entryPoint":null,"id":22827,"parameterSlots":0,"returnSlots":0},"@__CashFlowLender_init_23460":{"entryPoint":15194,"id":23460,"parameterSlots":3,"returnSlots":0},"@__CashFlowLender_init_unchained_23489":{"entryPoint":18704,"id":23489,"parameterSlots":1,"returnSlots":0},"@__Context_init_6738":{"entryPoint":null,"id":6738,"parameterSlots":0,"returnSlots":0},"@__Context_init_unchained_6744":{"entryPoint":null,"id":6744,"parameterSlots":0,"returnSlots":0},"@__ERC20_init_5412":{"entryPoint":19446,"id":5412,"parameterSlots":2,"returnSlots":0},"@__ERC20_init_unchained_5440":{"entryPoint":20081,"id":5440,"parameterSlots":2,"returnSlots":0},"@__ERC4626_init_6055":{"entryPoint":18696,"id":6055,"parameterSlots":1,"returnSlots":0},"@__ERC4626_init_unchained_6093":{"entryPoint":17977,"id":6093,"parameterSlots":1,"returnSlots":0},"@__UUPSUpgradeable_init_5216":{"entryPoint":null,"id":5216,"parameterSlots":0,"returnSlots":0},"@__UUPSUpgradeable_init_unchained_5222":{"entryPoint":null,"id":5222,"parameterSlots":0,"returnSlots":0},"@__hh_exposed_bytecode_marker_22045":{"entryPoint":null,"id":22045,"parameterSlots":0,"returnSlots":0},"@_approve_5844":{"entryPoint":15617,"id":5844,"parameterSlots":3,"returnSlots":0},"@_approve_5912":{"entryPoint":17168,"id":5912,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_23944":{"entryPoint":null,"id":23944,"parameterSlots":1,"returnSlots":0},"@_balance_24257":{"entryPoint":15081,"id":24257,"parameterSlots":0,"returnSlots":1},"@_burn_5826":{"entryPoint":19894,"id":5826,"parameterSlots":2,"returnSlots":0},"@_callOptionalReturn_12143":{"entryPoint":20327,"id":12143,"parameterSlots":2,"returnSlots":0},"@_changeDebt_24589":{"entryPoint":16661,"id":24589,"parameterSlots":4,"returnSlots":1},"@_checkCanForward_24660":{"entryPoint":17413,"id":24660,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_5084":{"entryPoint":19392,"id":5084,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_10425":{"entryPoint":21665,"id":10425,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_5292":{"entryPoint":15708,"id":5292,"parameterSlots":0,"returnSlots":0},"@_checkProxy_5276":{"entryPoint":16427,"id":5276,"parameterSlots":0,"returnSlots":0},"@_computeCalendarMonth_24424":{"entryPoint":17756,"id":24424,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_24212":{"entryPoint":null,"id":24212,"parameterSlots":0,"returnSlots":1},"@_contextSuffixLength_4907":{"entryPoint":null,"id":4907,"parameterSlots":0,"returnSlots":1},"@_convertToAssets_6618":{"entryPoint":15369,"id":6618,"parameterSlots":2,"returnSlots":1},"@_convertToShares_6590":{"entryPoint":15630,"id":6590,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_6724":{"entryPoint":null,"id":6724,"parameterSlots":0,"returnSlots":1},"@_deinvest_24529":{"entryPoint":15781,"id":24529,"parameterSlots":1,"returnSlots":1},"@_deposit_6662":{"entryPoint":18571,"id":6662,"parameterSlots":4,"returnSlots":0},"@_disableInitializers_5130":{"entryPoint":19946,"id":5130,"parameterSlots":0,"returnSlots":0},"@_getCashFlowLenderStorage_23037":{"entryPoint":null,"id":23037,"parameterSlots":0,"returnSlots":1},"@_getERC20Storage_5396":{"entryPoint":null,"id":5396,"parameterSlots":0,"returnSlots":1},"@_getERC4626StorageCFL_23048":{"entryPoint":null,"id":23048,"parameterSlots":0,"returnSlots":1},"@_getERC4626Storage_6005":{"entryPoint":null,"id":6005,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_5161":{"entryPoint":null,"id":5161,"parameterSlots":0,"returnSlots":1},"@_getInitializedVersion_5141":{"entryPoint":null,"id":5141,"parameterSlots":0,"returnSlots":1},"@_getMonth_24348":{"entryPoint":19571,"id":24348,"parameterSlots":2,"returnSlots":1},"@_getTargetConfig_23671":{"entryPoint":15456,"id":23671,"parameterSlots":1,"returnSlots":1},"@_isInitializing_5152":{"entryPoint":null,"id":5152,"parameterSlots":0,"returnSlots":1},"@_makeSlotIndex_24449":{"entryPoint":16569,"id":24449,"parameterSlots":2,"returnSlots":1},"@_makeTargetSlot_24484":{"entryPoint":17684,"id":24484,"parameterSlots":3,"returnSlots":1},"@_mint_5793":{"entryPoint":19798,"id":5793,"parameterSlots":2,"returnSlots":0},"@_msgData_24240":{"entryPoint":17395,"id":24240,"parameterSlots":0,"returnSlots":2},"@_msgData_4897":{"entryPoint":20435,"id":4897,"parameterSlots":0,"returnSlots":2},"@_msgData_6762":{"entryPoint":null,"id":6762,"parameterSlots":0,"returnSlots":2},"@_msgSender_24226":{"entryPoint":15608,"id":24226,"parameterSlots":0,"returnSlots":1},"@_msgSender_4856":{"entryPoint":20227,"id":4856,"parameterSlots":0,"returnSlots":1},"@_msgSender_6753":{"entryPoint":null,"id":6753,"parameterSlots":0,"returnSlots":1},"@_revert_12579":{"entryPoint":21713,"id":12579,"parameterSlots":1,"returnSlots":0},"@_setImplementation_10205":{"entryPoint":21461,"id":10205,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_23571":{"entryPoint":16030,"id":23571,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_5960":{"entryPoint":17011,"id":5960,"parameterSlots":3,"returnSlots":0},"@_transfer_5668":{"entryPoint":17086,"id":5668,"parameterSlots":3,"returnSlots":0},"@_tryGetAssetDecimals_6160":{"entryPoint":20669,"id":6160,"parameterSlots":1,"returnSlots":2},"@_update_5760":{"entryPoint":18277,"id":5760,"parameterSlots":3,"returnSlots":0},"@_upgradeToAndCallUUPS_5343":{"entryPoint":18089,"id":5343,"parameterSlots":2,"returnSlots":0},"@_withdraw_25226":{"entryPoint":19053,"id":25226,"parameterSlots":5,"returnSlots":0},"@_withdraw_6716":{"entryPoint":20968,"id":6716,"parameterSlots":5,"returnSlots":0},"@addTarget_23739":{"entryPoint":10842,"id":23739,"parameterSlots":4,"returnSlots":0},"@allowance_5565":{"entryPoint":13190,"id":5565,"parameterSlots":2,"returnSlots":1},"@approve_5589":{"entryPoint":6038,"id":5589,"parameterSlots":2,"returnSlots":1},"@asset_6201":{"entryPoint":7846,"id":6201,"parameterSlots":0,"returnSlots":1},"@balanceOf_5517":{"entryPoint":8424,"id":5517,"parameterSlots":1,"returnSlots":1},"@cashOutPayouts_25401":{"entryPoint":6521,"id":25401,"parameterSlots":5,"returnSlots":0},"@cashWithdrawable_25107":{"entryPoint":12475,"id":25107,"parameterSlots":0,"returnSlots":1},"@convertToAssets_6255":{"entryPoint":5871,"id":6255,"parameterSlots":1,"returnSlots":1},"@convertToShares_6239":{"entryPoint":11421,"id":6239,"parameterSlots":1,"returnSlots":1},"@currentDebt_24992":{"entryPoint":null,"id":24992,"parameterSlots":0,"returnSlots":1},"@decimals_6182":{"entryPoint":7080,"id":6182,"parameterSlots":0,"returnSlots":1},"@depositIntoYieldVault_25318":{"entryPoint":10094,"id":25318,"parameterSlots":1,"returnSlots":0},"@deposit_6424":{"entryPoint":8390,"id":6424,"parameterSlots":2,"returnSlots":1},"@extract_32_4_15942":{"entryPoint":19515,"id":15942,"parameterSlots":2,"returnSlots":1},"@forwardNewPolicyBatch_24857":{"entryPoint":13284,"id":24857,"parameterSlots":3,"returnSlots":1},"@forwardNewPolicy_24727":{"entryPoint":7200,"id":24727,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicyBatch_24974":{"entryPoint":14166,"id":24974,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicy_24891":{"entryPoint":8984,"id":24891,"parameterSlots":3,"returnSlots":1},"@functionCallWithValue_12445":{"entryPoint":20509,"id":12445,"parameterSlots":3,"returnSlots":1},"@functionCall_12395":{"entryPoint":17671,"id":12395,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_12497":{"entryPoint":21560,"id":12497,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@getDebtForPeriod_25019":{"entryPoint":9956,"id":25019,"parameterSlots":3,"returnSlots":1},"@getImplementation_10178":{"entryPoint":20307,"id":10178,"parameterSlots":0,"returnSlots":1},"@getTargetStatus_23843":{"entryPoint":null,"id":23843,"parameterSlots":1,"returnSlots":1},"@initialize_23420":{"entryPoint":5637,"id":23420,"parameterSlots":3,"returnSlots":0},"@isTrustedForwarder_4809":{"entryPoint":8219,"id":4809,"parameterSlots":1,"returnSlots":1},"@makeFakeSelector_24612":{"entryPoint":11334,"id":24612,"parameterSlots":2,"returnSlots":1},"@maxDeposit_6270":{"entryPoint":null,"id":6270,"parameterSlots":1,"returnSlots":1},"@maxMint_6285":{"entryPoint":null,"id":6285,"parameterSlots":1,"returnSlots":1},"@maxRedeem_25129":{"entryPoint":13166,"id":25129,"parameterSlots":1,"returnSlots":1},"@maxRedeem_6316":{"entryPoint":19884,"id":6316,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_25149":{"entryPoint":12615,"id":25149,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_6303":{"entryPoint":19850,"id":6303,"parameterSlots":1,"returnSlots":1},"@min_18443":{"entryPoint":19869,"id":18443,"parameterSlots":2,"returnSlots":1},"@mint_6468":{"entryPoint":9438,"id":6468,"parameterSlots":2,"returnSlots":1},"@mulDiv_18644":{"entryPoint":21192,"id":18644,"parameterSlots":3,"returnSlots":1},"@mulDiv_18681":{"entryPoint":20161,"id":18681,"parameterSlots":4,"returnSlots":1},"@name_5456":{"entryPoint":5445,"id":5456,"parameterSlots":0,"returnSlots":1},"@onERC721Received_24092":{"entryPoint":6093,"id":24092,"parameterSlots":5,"returnSlots":1},"@onPayoutReceived_24176":{"entryPoint":12894,"id":24176,"parameterSlots":4,"returnSlots":1},"@onPolicyExpired_24112":{"entryPoint":14062,"id":24112,"parameterSlots":3,"returnSlots":1},"@onPolicyReplaced_24198":{"entryPoint":8269,"id":24198,"parameterSlots":4,"returnSlots":1},"@pack_20_8_13263":{"entryPoint":null,"id":13263,"parameterSlots":2,"returnSlots":1},"@pack_4_4_12834":{"entryPoint":null,"id":12834,"parameterSlots":2,"returnSlots":1},"@panic_16356":{"entryPoint":21696,"id":16356,"parameterSlots":1,"returnSlots":0},"@policyPool_23638":{"entryPoint":null,"id":23638,"parameterSlots":0,"returnSlots":1},"@previewDeposit_6332":{"entryPoint":null,"id":6332,"parameterSlots":1,"returnSlots":1},"@previewMint_6348":{"entryPoint":10306,"id":6348,"parameterSlots":1,"returnSlots":1},"@previewRedeem_6380":{"entryPoint":null,"id":6380,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_6364":{"entryPoint":6071,"id":6364,"parameterSlots":1,"returnSlots":1},"@proxiableUUID_5234":{"entryPoint":8184,"id":5234,"parameterSlots":0,"returnSlots":1},"@redeem_6562":{"entryPoint":10524,"id":6562,"parameterSlots":3,"returnSlots":1},"@refreshAsset_24070":{"entryPoint":11432,"id":24070,"parameterSlots":0,"returnSlots":0},"@repayDebt_25464":{"entryPoint":8554,"id":25464,"parameterSlots":4,"returnSlots":0},"@safeTransferFrom_11848":{"entryPoint":18996,"id":11848,"parameterSlots":4,"returnSlots":0},"@safeTransfer_11821":{"entryPoint":16916,"id":11821,"parameterSlots":3,"returnSlots":0},"@setTargetLimits_23783":{"entryPoint":10608,"id":23783,"parameterSlots":3,"returnSlots":0},"@setTargetSlotSize_23880":{"entryPoint":5882,"id":23880,"parameterSlots":2,"returnSlots":0},"@setTargetStatus_23822":{"entryPoint":14777,"id":23822,"parameterSlots":2,"returnSlots":0},"@setYieldVault_23618":{"entryPoint":6204,"id":23618,"parameterSlots":2,"returnSlots":0},"@supportsInterface_18195":{"entryPoint":null,"id":18195,"parameterSlots":1,"returnSlots":1},"@supportsInterface_23937":{"entryPoint":5256,"id":23937,"parameterSlots":1,"returnSlots":1},"@symbol_5472":{"entryPoint":9472,"id":5472,"parameterSlots":0,"returnSlots":1},"@ternary_18405":{"entryPoint":null,"id":18405,"parameterSlots":3,"returnSlots":1},"@toInt256_21568":{"entryPoint":16613,"id":21568,"parameterSlots":1,"returnSlots":1},"@toUint96_20401":{"entryPoint":19464,"id":20401,"parameterSlots":1,"returnSlots":1},"@toUint_21578":{"entryPoint":null,"id":21578,"parameterSlots":1,"returnSlots":1},"@totalAssets_25083":{"entryPoint":4934,"id":25083,"parameterSlots":0,"returnSlots":1},"@totalSupply_5497":{"entryPoint":null,"id":5497,"parameterSlots":0,"returnSlots":1},"@transferFrom_5621":{"entryPoint":6813,"id":5621,"parameterSlots":3,"returnSlots":1},"@transfer_5541":{"entryPoint":10071,"id":5541,"parameterSlots":2,"returnSlots":1},"@trustedForwarder_4795":{"entryPoint":null,"id":4795,"parameterSlots":0,"returnSlots":1},"@unsignedRoundsUp_19813":{"entryPoint":21148,"id":19813,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_10241":{"entryPoint":20883,"id":10241,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_5254":{"entryPoint":8131,"id":5254,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_12537":{"entryPoint":21374,"id":12537,"parameterSlots":3,"returnSlots":1},"@withdrawFromYieldVault_25269":{"entryPoint":12721,"id":25269,"parameterSlots":1,"returnSlots":0},"@withdraw_6515":{"entryPoint":10318,"id":6515,"parameterSlots":3,"returnSlots":1},"@yieldVault_23629":{"entryPoint":10040,"id":23629,"parameterSlots":0,"returnSlots":1},"abi_decode_available_length_string":{"entryPoint":21891,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bytes4":{"entryPoint":21754,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":22406,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_string":{"entryPoint":22008,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":22271,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":24727,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":24031,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256":{"entryPoint":23364,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":24075,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":22768,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bool":{"entryPoint":22830,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":22474,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":23146,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":24143,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":23945,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":22910,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":23051,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_enum$_TargetStatus_$22999":{"entryPoint":24371,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":22364,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":23849,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":22216,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256":{"entryPoint":23899,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32":{"entryPoint":22990,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32t_uint32t_int256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256":{"entryPoint":23248,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address":{"entryPoint":22668,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":24867,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":25426,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":21782,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IAccessManager_$9511_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$11776_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20_$11065":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$9796":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$9796t_bool":{"entryPoint":22596,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptr":{"entryPoint":23743,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptrt_contract$_IERC4626_$9796":{"entryPoint":23576,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$9796":{"entryPoint":22058,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256":{"entryPoint":22176,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":24415,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":23213,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":23691,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_bool":{"entryPoint":23996,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_enum$_Rounding_$18220":{"entryPoint":23463,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint32t_uint256":{"entryPoint":22640,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64":{"entryPoint":23326,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_enum_TargetStatus":{"entryPoint":22318,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":21807,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":25906,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":25381,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_enum$_TargetStatus_$22999__to_t_address_t_uint8__fromStack_reversed":{"entryPoint":24578,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":24754,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":24272,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$9796__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$9796_t_contract$_IERC4626_$9796__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$25555__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$22999__to_t_uint8__fromStack_reversed":{"entryPoint":22350,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$22999_t_enum$_TargetStatus_$22999__to_t_uint8_t_uint8__fromStack_reversed":{"entryPoint":24980,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":21853,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_ERC4626Storage_$5994_memory_ptr__to_t_struct$_ERC4626Storage_$5994_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TargetConfig_$23009_memory_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed":{"entryPoint":23498,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TargetConfig_$23009_storage_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed":{"entryPoint":24787,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_TargetSlot_$22993__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":24914,"id":null,"parameterSlots":2,"returnSlots":2},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":24632,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_int256":{"entryPoint":25287,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_int96":{"entryPoint":25326,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":24458,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":24607,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":25268,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":25007,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":25234,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":25074,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint32":{"entryPoint":25546,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":24503,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":25598,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":25852,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":24671,"id":null,"parameterSlots":2,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":25666,"id":null,"parameterSlots":2,"returnSlots":0},"decrement_t_uint256":{"entryPoint":25577,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":24522,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint32":{"entryPoint":25471,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint32":{"entryPoint":25507,"id":null,"parameterSlots":2,"returnSlots":1},"mod_t_uint8":{"entryPoint":25928,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":24477,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":24438,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":25248,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":22298,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":24894,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":21871,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":22583,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":22038,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_enum_Rounding":{"entryPoint":23451,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint32":{"entryPoint":22199,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:43240:81","nodeType":"YulBlock","src":"0:43240:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"115:76:81","nodeType":"YulBlock","src":"115:76:81","statements":[{"nativeSrc":"125:26:81","nodeType":"YulAssignment","src":"125:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:81","nodeType":"YulIdentifier","src":"137:9:81"},{"kind":"number","nativeSrc":"148:2:81","nodeType":"YulLiteral","src":"148:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:81","nodeType":"YulIdentifier","src":"133:3:81"},"nativeSrc":"133:18:81","nodeType":"YulFunctionCall","src":"133:18:81"},"variableNames":[{"name":"tail","nativeSrc":"125:4:81","nodeType":"YulIdentifier","src":"125:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:81","nodeType":"YulIdentifier","src":"167:9:81"},{"name":"value0","nativeSrc":"178:6:81","nodeType":"YulIdentifier","src":"178:6:81"}],"functionName":{"name":"mstore","nativeSrc":"160:6:81","nodeType":"YulIdentifier","src":"160:6:81"},"nativeSrc":"160:25:81","nodeType":"YulFunctionCall","src":"160:25:81"},"nativeSrc":"160:25:81","nodeType":"YulExpressionStatement","src":"160:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:81","nodeType":"YulTypedName","src":"84:9:81","type":""},{"name":"value0","nativeSrc":"95:6:81","nodeType":"YulTypedName","src":"95:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:81","nodeType":"YulTypedName","src":"106:4:81","type":""}],"src":"14:177:81"},{"body":{"nativeSrc":"244:125:81","nodeType":"YulBlock","src":"244:125:81","statements":[{"nativeSrc":"254:29:81","nodeType":"YulAssignment","src":"254:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"276:6:81","nodeType":"YulIdentifier","src":"276:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"263:12:81","nodeType":"YulIdentifier","src":"263:12:81"},"nativeSrc":"263:20:81","nodeType":"YulFunctionCall","src":"263:20:81"},"variableNames":[{"name":"value","nativeSrc":"254:5:81","nodeType":"YulIdentifier","src":"254:5:81"}]},{"body":{"nativeSrc":"347:16:81","nodeType":"YulBlock","src":"347:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"356:1:81","nodeType":"YulLiteral","src":"356:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"359:1:81","nodeType":"YulLiteral","src":"359:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"349:6:81","nodeType":"YulIdentifier","src":"349:6:81"},"nativeSrc":"349:12:81","nodeType":"YulFunctionCall","src":"349:12:81"},"nativeSrc":"349:12:81","nodeType":"YulExpressionStatement","src":"349:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"305:5:81","nodeType":"YulIdentifier","src":"305:5:81"},{"arguments":[{"name":"value","nativeSrc":"316:5:81","nodeType":"YulIdentifier","src":"316:5:81"},{"arguments":[{"kind":"number","nativeSrc":"327:3:81","nodeType":"YulLiteral","src":"327:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"332:10:81","nodeType":"YulLiteral","src":"332:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"323:3:81","nodeType":"YulIdentifier","src":"323:3:81"},"nativeSrc":"323:20:81","nodeType":"YulFunctionCall","src":"323:20:81"}],"functionName":{"name":"and","nativeSrc":"312:3:81","nodeType":"YulIdentifier","src":"312:3:81"},"nativeSrc":"312:32:81","nodeType":"YulFunctionCall","src":"312:32:81"}],"functionName":{"name":"eq","nativeSrc":"302:2:81","nodeType":"YulIdentifier","src":"302:2:81"},"nativeSrc":"302:43:81","nodeType":"YulFunctionCall","src":"302:43:81"}],"functionName":{"name":"iszero","nativeSrc":"295:6:81","nodeType":"YulIdentifier","src":"295:6:81"},"nativeSrc":"295:51:81","nodeType":"YulFunctionCall","src":"295:51:81"},"nativeSrc":"292:71:81","nodeType":"YulIf","src":"292:71:81"}]},"name":"abi_decode_bytes4","nativeSrc":"196:173:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"223:6:81","nodeType":"YulTypedName","src":"223:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"234:5:81","nodeType":"YulTypedName","src":"234:5:81","type":""}],"src":"196:173:81"},{"body":{"nativeSrc":"443:115:81","nodeType":"YulBlock","src":"443:115:81","statements":[{"body":{"nativeSrc":"489:16:81","nodeType":"YulBlock","src":"489:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"498:1:81","nodeType":"YulLiteral","src":"498:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"501:1:81","nodeType":"YulLiteral","src":"501:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"491:6:81","nodeType":"YulIdentifier","src":"491:6:81"},"nativeSrc":"491:12:81","nodeType":"YulFunctionCall","src":"491:12:81"},"nativeSrc":"491:12:81","nodeType":"YulExpressionStatement","src":"491:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"464:7:81","nodeType":"YulIdentifier","src":"464:7:81"},{"name":"headStart","nativeSrc":"473:9:81","nodeType":"YulIdentifier","src":"473:9:81"}],"functionName":{"name":"sub","nativeSrc":"460:3:81","nodeType":"YulIdentifier","src":"460:3:81"},"nativeSrc":"460:23:81","nodeType":"YulFunctionCall","src":"460:23:81"},{"kind":"number","nativeSrc":"485:2:81","nodeType":"YulLiteral","src":"485:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"456:3:81","nodeType":"YulIdentifier","src":"456:3:81"},"nativeSrc":"456:32:81","nodeType":"YulFunctionCall","src":"456:32:81"},"nativeSrc":"453:52:81","nodeType":"YulIf","src":"453:52:81"},{"nativeSrc":"514:38:81","nodeType":"YulAssignment","src":"514:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"542:9:81","nodeType":"YulIdentifier","src":"542:9:81"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"524:17:81","nodeType":"YulIdentifier","src":"524:17:81"},"nativeSrc":"524:28:81","nodeType":"YulFunctionCall","src":"524:28:81"},"variableNames":[{"name":"value0","nativeSrc":"514:6:81","nodeType":"YulIdentifier","src":"514:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"374:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"409:9:81","nodeType":"YulTypedName","src":"409:9:81","type":""},{"name":"dataEnd","nativeSrc":"420:7:81","nodeType":"YulTypedName","src":"420:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"432:6:81","nodeType":"YulTypedName","src":"432:6:81","type":""}],"src":"374:184:81"},{"body":{"nativeSrc":"658:92:81","nodeType":"YulBlock","src":"658:92:81","statements":[{"nativeSrc":"668:26:81","nodeType":"YulAssignment","src":"668:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"680:9:81","nodeType":"YulIdentifier","src":"680:9:81"},{"kind":"number","nativeSrc":"691:2:81","nodeType":"YulLiteral","src":"691:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"676:3:81","nodeType":"YulIdentifier","src":"676:3:81"},"nativeSrc":"676:18:81","nodeType":"YulFunctionCall","src":"676:18:81"},"variableNames":[{"name":"tail","nativeSrc":"668:4:81","nodeType":"YulIdentifier","src":"668:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"710:9:81","nodeType":"YulIdentifier","src":"710:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"735:6:81","nodeType":"YulIdentifier","src":"735:6:81"}],"functionName":{"name":"iszero","nativeSrc":"728:6:81","nodeType":"YulIdentifier","src":"728:6:81"},"nativeSrc":"728:14:81","nodeType":"YulFunctionCall","src":"728:14:81"}],"functionName":{"name":"iszero","nativeSrc":"721:6:81","nodeType":"YulIdentifier","src":"721:6:81"},"nativeSrc":"721:22:81","nodeType":"YulFunctionCall","src":"721:22:81"}],"functionName":{"name":"mstore","nativeSrc":"703:6:81","nodeType":"YulIdentifier","src":"703:6:81"},"nativeSrc":"703:41:81","nodeType":"YulFunctionCall","src":"703:41:81"},"nativeSrc":"703:41:81","nodeType":"YulExpressionStatement","src":"703:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"563:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"627:9:81","nodeType":"YulTypedName","src":"627:9:81","type":""},{"name":"value0","nativeSrc":"638:6:81","nodeType":"YulTypedName","src":"638:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"649:4:81","nodeType":"YulTypedName","src":"649:4:81","type":""}],"src":"563:187:81"},{"body":{"nativeSrc":"805:239:81","nodeType":"YulBlock","src":"805:239:81","statements":[{"nativeSrc":"815:26:81","nodeType":"YulVariableDeclaration","src":"815:26:81","value":{"arguments":[{"name":"value","nativeSrc":"835:5:81","nodeType":"YulIdentifier","src":"835:5:81"}],"functionName":{"name":"mload","nativeSrc":"829:5:81","nodeType":"YulIdentifier","src":"829:5:81"},"nativeSrc":"829:12:81","nodeType":"YulFunctionCall","src":"829:12:81"},"variables":[{"name":"length","nativeSrc":"819:6:81","nodeType":"YulTypedName","src":"819:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"857:3:81","nodeType":"YulIdentifier","src":"857:3:81"},{"name":"length","nativeSrc":"862:6:81","nodeType":"YulIdentifier","src":"862:6:81"}],"functionName":{"name":"mstore","nativeSrc":"850:6:81","nodeType":"YulIdentifier","src":"850:6:81"},"nativeSrc":"850:19:81","nodeType":"YulFunctionCall","src":"850:19:81"},"nativeSrc":"850:19:81","nodeType":"YulExpressionStatement","src":"850:19:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"888:3:81","nodeType":"YulIdentifier","src":"888:3:81"},{"kind":"number","nativeSrc":"893:4:81","nodeType":"YulLiteral","src":"893:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"884:3:81","nodeType":"YulIdentifier","src":"884:3:81"},"nativeSrc":"884:14:81","nodeType":"YulFunctionCall","src":"884:14:81"},{"arguments":[{"name":"value","nativeSrc":"904:5:81","nodeType":"YulIdentifier","src":"904:5:81"},{"kind":"number","nativeSrc":"911:4:81","nodeType":"YulLiteral","src":"911:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"900:3:81","nodeType":"YulIdentifier","src":"900:3:81"},"nativeSrc":"900:16:81","nodeType":"YulFunctionCall","src":"900:16:81"},{"name":"length","nativeSrc":"918:6:81","nodeType":"YulIdentifier","src":"918:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"878:5:81","nodeType":"YulIdentifier","src":"878:5:81"},"nativeSrc":"878:47:81","nodeType":"YulFunctionCall","src":"878:47:81"},"nativeSrc":"878:47:81","nodeType":"YulExpressionStatement","src":"878:47:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"949:3:81","nodeType":"YulIdentifier","src":"949:3:81"},{"name":"length","nativeSrc":"954:6:81","nodeType":"YulIdentifier","src":"954:6:81"}],"functionName":{"name":"add","nativeSrc":"945:3:81","nodeType":"YulIdentifier","src":"945:3:81"},"nativeSrc":"945:16:81","nodeType":"YulFunctionCall","src":"945:16:81"},{"kind":"number","nativeSrc":"963:4:81","nodeType":"YulLiteral","src":"963:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"941:3:81","nodeType":"YulIdentifier","src":"941:3:81"},"nativeSrc":"941:27:81","nodeType":"YulFunctionCall","src":"941:27:81"},{"kind":"number","nativeSrc":"970:1:81","nodeType":"YulLiteral","src":"970:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"934:6:81","nodeType":"YulIdentifier","src":"934:6:81"},"nativeSrc":"934:38:81","nodeType":"YulFunctionCall","src":"934:38:81"},"nativeSrc":"934:38:81","nodeType":"YulExpressionStatement","src":"934:38:81"},{"nativeSrc":"981:57:81","nodeType":"YulAssignment","src":"981:57:81","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"996:3:81","nodeType":"YulIdentifier","src":"996:3:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1009:6:81","nodeType":"YulIdentifier","src":"1009:6:81"},{"kind":"number","nativeSrc":"1017:2:81","nodeType":"YulLiteral","src":"1017:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1005:3:81","nodeType":"YulIdentifier","src":"1005:3:81"},"nativeSrc":"1005:15:81","nodeType":"YulFunctionCall","src":"1005:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1026:2:81","nodeType":"YulLiteral","src":"1026:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1022:3:81","nodeType":"YulIdentifier","src":"1022:3:81"},"nativeSrc":"1022:7:81","nodeType":"YulFunctionCall","src":"1022:7:81"}],"functionName":{"name":"and","nativeSrc":"1001:3:81","nodeType":"YulIdentifier","src":"1001:3:81"},"nativeSrc":"1001:29:81","nodeType":"YulFunctionCall","src":"1001:29:81"}],"functionName":{"name":"add","nativeSrc":"992:3:81","nodeType":"YulIdentifier","src":"992:3:81"},"nativeSrc":"992:39:81","nodeType":"YulFunctionCall","src":"992:39:81"},{"kind":"number","nativeSrc":"1033:4:81","nodeType":"YulLiteral","src":"1033:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"988:3:81","nodeType":"YulIdentifier","src":"988:3:81"},"nativeSrc":"988:50:81","nodeType":"YulFunctionCall","src":"988:50:81"},"variableNames":[{"name":"end","nativeSrc":"981:3:81","nodeType":"YulIdentifier","src":"981:3:81"}]}]},"name":"abi_encode_string","nativeSrc":"755:289:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"782:5:81","nodeType":"YulTypedName","src":"782:5:81","type":""},{"name":"pos","nativeSrc":"789:3:81","nodeType":"YulTypedName","src":"789:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"797:3:81","nodeType":"YulTypedName","src":"797:3:81","type":""}],"src":"755:289:81"},{"body":{"nativeSrc":"1170:99:81","nodeType":"YulBlock","src":"1170:99:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1187:9:81","nodeType":"YulIdentifier","src":"1187:9:81"},{"kind":"number","nativeSrc":"1198:2:81","nodeType":"YulLiteral","src":"1198:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1180:6:81","nodeType":"YulIdentifier","src":"1180:6:81"},"nativeSrc":"1180:21:81","nodeType":"YulFunctionCall","src":"1180:21:81"},"nativeSrc":"1180:21:81","nodeType":"YulExpressionStatement","src":"1180:21:81"},{"nativeSrc":"1210:53:81","nodeType":"YulAssignment","src":"1210:53:81","value":{"arguments":[{"name":"value0","nativeSrc":"1236:6:81","nodeType":"YulIdentifier","src":"1236:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"1248:9:81","nodeType":"YulIdentifier","src":"1248:9:81"},{"kind":"number","nativeSrc":"1259:2:81","nodeType":"YulLiteral","src":"1259:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1244:3:81","nodeType":"YulIdentifier","src":"1244:3:81"},"nativeSrc":"1244:18:81","nodeType":"YulFunctionCall","src":"1244:18:81"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1218:17:81","nodeType":"YulIdentifier","src":"1218:17:81"},"nativeSrc":"1218:45:81","nodeType":"YulFunctionCall","src":"1218:45:81"},"variableNames":[{"name":"tail","nativeSrc":"1210:4:81","nodeType":"YulIdentifier","src":"1210:4:81"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1049:220:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1139:9:81","nodeType":"YulTypedName","src":"1139:9:81","type":""},{"name":"value0","nativeSrc":"1150:6:81","nodeType":"YulTypedName","src":"1150:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1161:4:81","nodeType":"YulTypedName","src":"1161:4:81","type":""}],"src":"1049:220:81"},{"body":{"nativeSrc":"1306:95:81","nodeType":"YulBlock","src":"1306:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1323:1:81","nodeType":"YulLiteral","src":"1323:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1330:3:81","nodeType":"YulLiteral","src":"1330:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1335:10:81","nodeType":"YulLiteral","src":"1335:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1326:3:81","nodeType":"YulIdentifier","src":"1326:3:81"},"nativeSrc":"1326:20:81","nodeType":"YulFunctionCall","src":"1326:20:81"}],"functionName":{"name":"mstore","nativeSrc":"1316:6:81","nodeType":"YulIdentifier","src":"1316:6:81"},"nativeSrc":"1316:31:81","nodeType":"YulFunctionCall","src":"1316:31:81"},"nativeSrc":"1316:31:81","nodeType":"YulExpressionStatement","src":"1316:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1363:1:81","nodeType":"YulLiteral","src":"1363:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"1366:4:81","nodeType":"YulLiteral","src":"1366:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1356:6:81","nodeType":"YulIdentifier","src":"1356:6:81"},"nativeSrc":"1356:15:81","nodeType":"YulFunctionCall","src":"1356:15:81"},"nativeSrc":"1356:15:81","nodeType":"YulExpressionStatement","src":"1356:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1387:1:81","nodeType":"YulLiteral","src":"1387:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1390:4:81","nodeType":"YulLiteral","src":"1390:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1380:6:81","nodeType":"YulIdentifier","src":"1380:6:81"},"nativeSrc":"1380:15:81","nodeType":"YulFunctionCall","src":"1380:15:81"},"nativeSrc":"1380:15:81","nodeType":"YulExpressionStatement","src":"1380:15:81"}]},"name":"panic_error_0x41","nativeSrc":"1274:127:81","nodeType":"YulFunctionDefinition","src":"1274:127:81"},{"body":{"nativeSrc":"1481:641:81","nodeType":"YulBlock","src":"1481:641:81","statements":[{"nativeSrc":"1491:13:81","nodeType":"YulVariableDeclaration","src":"1491:13:81","value":{"kind":"number","nativeSrc":"1503:1:81","nodeType":"YulLiteral","src":"1503:1:81","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"1495:4:81","nodeType":"YulTypedName","src":"1495:4:81","type":""}]},{"body":{"nativeSrc":"1547:22:81","nodeType":"YulBlock","src":"1547:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1549:16:81","nodeType":"YulIdentifier","src":"1549:16:81"},"nativeSrc":"1549:18:81","nodeType":"YulFunctionCall","src":"1549:18:81"},"nativeSrc":"1549:18:81","nodeType":"YulExpressionStatement","src":"1549:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1519:6:81","nodeType":"YulIdentifier","src":"1519:6:81"},{"kind":"number","nativeSrc":"1527:18:81","nodeType":"YulLiteral","src":"1527:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1516:2:81","nodeType":"YulIdentifier","src":"1516:2:81"},"nativeSrc":"1516:30:81","nodeType":"YulFunctionCall","src":"1516:30:81"},"nativeSrc":"1513:56:81","nodeType":"YulIf","src":"1513:56:81"},{"nativeSrc":"1578:43:81","nodeType":"YulVariableDeclaration","src":"1578:43:81","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1600:6:81","nodeType":"YulIdentifier","src":"1600:6:81"},{"kind":"number","nativeSrc":"1608:2:81","nodeType":"YulLiteral","src":"1608:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1596:3:81","nodeType":"YulIdentifier","src":"1596:3:81"},"nativeSrc":"1596:15:81","nodeType":"YulFunctionCall","src":"1596:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1617:2:81","nodeType":"YulLiteral","src":"1617:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1613:3:81","nodeType":"YulIdentifier","src":"1613:3:81"},"nativeSrc":"1613:7:81","nodeType":"YulFunctionCall","src":"1613:7:81"}],"functionName":{"name":"and","nativeSrc":"1592:3:81","nodeType":"YulIdentifier","src":"1592:3:81"},"nativeSrc":"1592:29:81","nodeType":"YulFunctionCall","src":"1592:29:81"},"variables":[{"name":"result","nativeSrc":"1582:6:81","nodeType":"YulTypedName","src":"1582:6:81","type":""}]},{"nativeSrc":"1630:25:81","nodeType":"YulAssignment","src":"1630:25:81","value":{"arguments":[{"name":"result","nativeSrc":"1642:6:81","nodeType":"YulIdentifier","src":"1642:6:81"},{"kind":"number","nativeSrc":"1650:4:81","nodeType":"YulLiteral","src":"1650:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1638:3:81","nodeType":"YulIdentifier","src":"1638:3:81"},"nativeSrc":"1638:17:81","nodeType":"YulFunctionCall","src":"1638:17:81"},"variableNames":[{"name":"size","nativeSrc":"1630:4:81","nodeType":"YulIdentifier","src":"1630:4:81"}]},{"nativeSrc":"1664:15:81","nodeType":"YulVariableDeclaration","src":"1664:15:81","value":{"kind":"number","nativeSrc":"1678:1:81","nodeType":"YulLiteral","src":"1678:1:81","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"1668:6:81","nodeType":"YulTypedName","src":"1668:6:81","type":""}]},{"nativeSrc":"1688:19:81","nodeType":"YulAssignment","src":"1688:19:81","value":{"arguments":[{"kind":"number","nativeSrc":"1704:2:81","nodeType":"YulLiteral","src":"1704:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1698:5:81","nodeType":"YulIdentifier","src":"1698:5:81"},"nativeSrc":"1698:9:81","nodeType":"YulFunctionCall","src":"1698:9:81"},"variableNames":[{"name":"memPtr","nativeSrc":"1688:6:81","nodeType":"YulIdentifier","src":"1688:6:81"}]},{"nativeSrc":"1716:60:81","nodeType":"YulVariableDeclaration","src":"1716:60:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"1738:6:81","nodeType":"YulIdentifier","src":"1738:6:81"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"1754:6:81","nodeType":"YulIdentifier","src":"1754:6:81"},{"kind":"number","nativeSrc":"1762:2:81","nodeType":"YulLiteral","src":"1762:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1750:3:81","nodeType":"YulIdentifier","src":"1750:3:81"},"nativeSrc":"1750:15:81","nodeType":"YulFunctionCall","src":"1750:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1771:2:81","nodeType":"YulLiteral","src":"1771:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1767:3:81","nodeType":"YulIdentifier","src":"1767:3:81"},"nativeSrc":"1767:7:81","nodeType":"YulFunctionCall","src":"1767:7:81"}],"functionName":{"name":"and","nativeSrc":"1746:3:81","nodeType":"YulIdentifier","src":"1746:3:81"},"nativeSrc":"1746:29:81","nodeType":"YulFunctionCall","src":"1746:29:81"}],"functionName":{"name":"add","nativeSrc":"1734:3:81","nodeType":"YulIdentifier","src":"1734:3:81"},"nativeSrc":"1734:42:81","nodeType":"YulFunctionCall","src":"1734:42:81"},"variables":[{"name":"newFreePtr","nativeSrc":"1720:10:81","nodeType":"YulTypedName","src":"1720:10:81","type":""}]},{"body":{"nativeSrc":"1851:22:81","nodeType":"YulBlock","src":"1851:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1853:16:81","nodeType":"YulIdentifier","src":"1853:16:81"},"nativeSrc":"1853:18:81","nodeType":"YulFunctionCall","src":"1853:18:81"},"nativeSrc":"1853:18:81","nodeType":"YulExpressionStatement","src":"1853:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1794:10:81","nodeType":"YulIdentifier","src":"1794:10:81"},{"kind":"number","nativeSrc":"1806:18:81","nodeType":"YulLiteral","src":"1806:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1791:2:81","nodeType":"YulIdentifier","src":"1791:2:81"},"nativeSrc":"1791:34:81","nodeType":"YulFunctionCall","src":"1791:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1830:10:81","nodeType":"YulIdentifier","src":"1830:10:81"},{"name":"memPtr","nativeSrc":"1842:6:81","nodeType":"YulIdentifier","src":"1842:6:81"}],"functionName":{"name":"lt","nativeSrc":"1827:2:81","nodeType":"YulIdentifier","src":"1827:2:81"},"nativeSrc":"1827:22:81","nodeType":"YulFunctionCall","src":"1827:22:81"}],"functionName":{"name":"or","nativeSrc":"1788:2:81","nodeType":"YulIdentifier","src":"1788:2:81"},"nativeSrc":"1788:62:81","nodeType":"YulFunctionCall","src":"1788:62:81"},"nativeSrc":"1785:88:81","nodeType":"YulIf","src":"1785:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1889:2:81","nodeType":"YulLiteral","src":"1889:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1893:10:81","nodeType":"YulIdentifier","src":"1893:10:81"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:81","nodeType":"YulIdentifier","src":"1882:6:81"},"nativeSrc":"1882:22:81","nodeType":"YulFunctionCall","src":"1882:22:81"},"nativeSrc":"1882:22:81","nodeType":"YulExpressionStatement","src":"1882:22:81"},{"nativeSrc":"1913:15:81","nodeType":"YulAssignment","src":"1913:15:81","value":{"name":"memPtr","nativeSrc":"1922:6:81","nodeType":"YulIdentifier","src":"1922:6:81"},"variableNames":[{"name":"array","nativeSrc":"1913:5:81","nodeType":"YulIdentifier","src":"1913:5:81"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1944:6:81","nodeType":"YulIdentifier","src":"1944:6:81"},{"name":"length","nativeSrc":"1952:6:81","nodeType":"YulIdentifier","src":"1952:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1937:6:81","nodeType":"YulIdentifier","src":"1937:6:81"},"nativeSrc":"1937:22:81","nodeType":"YulFunctionCall","src":"1937:22:81"},"nativeSrc":"1937:22:81","nodeType":"YulExpressionStatement","src":"1937:22:81"},{"body":{"nativeSrc":"1997:16:81","nodeType":"YulBlock","src":"1997:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2006:1:81","nodeType":"YulLiteral","src":"2006:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2009:1:81","nodeType":"YulLiteral","src":"2009:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1999:6:81","nodeType":"YulIdentifier","src":"1999:6:81"},"nativeSrc":"1999:12:81","nodeType":"YulFunctionCall","src":"1999:12:81"},"nativeSrc":"1999:12:81","nodeType":"YulExpressionStatement","src":"1999:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"1978:3:81","nodeType":"YulIdentifier","src":"1978:3:81"},{"name":"length","nativeSrc":"1983:6:81","nodeType":"YulIdentifier","src":"1983:6:81"}],"functionName":{"name":"add","nativeSrc":"1974:3:81","nodeType":"YulIdentifier","src":"1974:3:81"},"nativeSrc":"1974:16:81","nodeType":"YulFunctionCall","src":"1974:16:81"},{"name":"end","nativeSrc":"1992:3:81","nodeType":"YulIdentifier","src":"1992:3:81"}],"functionName":{"name":"gt","nativeSrc":"1971:2:81","nodeType":"YulIdentifier","src":"1971:2:81"},"nativeSrc":"1971:25:81","nodeType":"YulFunctionCall","src":"1971:25:81"},"nativeSrc":"1968:45:81","nodeType":"YulIf","src":"1968:45:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2039:6:81","nodeType":"YulIdentifier","src":"2039:6:81"},{"kind":"number","nativeSrc":"2047:4:81","nodeType":"YulLiteral","src":"2047:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2035:3:81","nodeType":"YulIdentifier","src":"2035:3:81"},"nativeSrc":"2035:17:81","nodeType":"YulFunctionCall","src":"2035:17:81"},{"name":"src","nativeSrc":"2054:3:81","nodeType":"YulIdentifier","src":"2054:3:81"},{"name":"length","nativeSrc":"2059:6:81","nodeType":"YulIdentifier","src":"2059:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"2022:12:81","nodeType":"YulIdentifier","src":"2022:12:81"},"nativeSrc":"2022:44:81","nodeType":"YulFunctionCall","src":"2022:44:81"},"nativeSrc":"2022:44:81","nodeType":"YulExpressionStatement","src":"2022:44:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2090:6:81","nodeType":"YulIdentifier","src":"2090:6:81"},{"name":"length","nativeSrc":"2098:6:81","nodeType":"YulIdentifier","src":"2098:6:81"}],"functionName":{"name":"add","nativeSrc":"2086:3:81","nodeType":"YulIdentifier","src":"2086:3:81"},"nativeSrc":"2086:19:81","nodeType":"YulFunctionCall","src":"2086:19:81"},{"kind":"number","nativeSrc":"2107:4:81","nodeType":"YulLiteral","src":"2107:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2082:3:81","nodeType":"YulIdentifier","src":"2082:3:81"},"nativeSrc":"2082:30:81","nodeType":"YulFunctionCall","src":"2082:30:81"},{"kind":"number","nativeSrc":"2114:1:81","nodeType":"YulLiteral","src":"2114:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2075:6:81","nodeType":"YulIdentifier","src":"2075:6:81"},"nativeSrc":"2075:41:81","nodeType":"YulFunctionCall","src":"2075:41:81"},"nativeSrc":"2075:41:81","nodeType":"YulExpressionStatement","src":"2075:41:81"}]},"name":"abi_decode_available_length_string","nativeSrc":"1406:716:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"1450:3:81","nodeType":"YulTypedName","src":"1450:3:81","type":""},{"name":"length","nativeSrc":"1455:6:81","nodeType":"YulTypedName","src":"1455:6:81","type":""},{"name":"end","nativeSrc":"1463:3:81","nodeType":"YulTypedName","src":"1463:3:81","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1471:5:81","nodeType":"YulTypedName","src":"1471:5:81","type":""}],"src":"1406:716:81"},{"body":{"nativeSrc":"2180:169:81","nodeType":"YulBlock","src":"2180:169:81","statements":[{"body":{"nativeSrc":"2229:16:81","nodeType":"YulBlock","src":"2229:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2238:1:81","nodeType":"YulLiteral","src":"2238:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2241:1:81","nodeType":"YulLiteral","src":"2241:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2231:6:81","nodeType":"YulIdentifier","src":"2231:6:81"},"nativeSrc":"2231:12:81","nodeType":"YulFunctionCall","src":"2231:12:81"},"nativeSrc":"2231:12:81","nodeType":"YulExpressionStatement","src":"2231:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2208:6:81","nodeType":"YulIdentifier","src":"2208:6:81"},{"kind":"number","nativeSrc":"2216:4:81","nodeType":"YulLiteral","src":"2216:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2204:3:81","nodeType":"YulIdentifier","src":"2204:3:81"},"nativeSrc":"2204:17:81","nodeType":"YulFunctionCall","src":"2204:17:81"},{"name":"end","nativeSrc":"2223:3:81","nodeType":"YulIdentifier","src":"2223:3:81"}],"functionName":{"name":"slt","nativeSrc":"2200:3:81","nodeType":"YulIdentifier","src":"2200:3:81"},"nativeSrc":"2200:27:81","nodeType":"YulFunctionCall","src":"2200:27:81"}],"functionName":{"name":"iszero","nativeSrc":"2193:6:81","nodeType":"YulIdentifier","src":"2193:6:81"},"nativeSrc":"2193:35:81","nodeType":"YulFunctionCall","src":"2193:35:81"},"nativeSrc":"2190:55:81","nodeType":"YulIf","src":"2190:55:81"},{"nativeSrc":"2254:89:81","nodeType":"YulAssignment","src":"2254:89:81","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2302:6:81","nodeType":"YulIdentifier","src":"2302:6:81"},{"kind":"number","nativeSrc":"2310:4:81","nodeType":"YulLiteral","src":"2310:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2298:3:81","nodeType":"YulIdentifier","src":"2298:3:81"},"nativeSrc":"2298:17:81","nodeType":"YulFunctionCall","src":"2298:17:81"},{"arguments":[{"name":"offset","nativeSrc":"2330:6:81","nodeType":"YulIdentifier","src":"2330:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"2317:12:81","nodeType":"YulIdentifier","src":"2317:12:81"},"nativeSrc":"2317:20:81","nodeType":"YulFunctionCall","src":"2317:20:81"},{"name":"end","nativeSrc":"2339:3:81","nodeType":"YulIdentifier","src":"2339:3:81"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"2263:34:81","nodeType":"YulIdentifier","src":"2263:34:81"},"nativeSrc":"2263:80:81","nodeType":"YulFunctionCall","src":"2263:80:81"},"variableNames":[{"name":"array","nativeSrc":"2254:5:81","nodeType":"YulIdentifier","src":"2254:5:81"}]}]},"name":"abi_decode_string","nativeSrc":"2127:222:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2154:6:81","nodeType":"YulTypedName","src":"2154:6:81","type":""},{"name":"end","nativeSrc":"2162:3:81","nodeType":"YulTypedName","src":"2162:3:81","type":""}],"returnVariables":[{"name":"array","nativeSrc":"2170:5:81","nodeType":"YulTypedName","src":"2170:5:81","type":""}],"src":"2127:222:81"},{"body":{"nativeSrc":"2409:86:81","nodeType":"YulBlock","src":"2409:86:81","statements":[{"body":{"nativeSrc":"2473:16:81","nodeType":"YulBlock","src":"2473:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2482:1:81","nodeType":"YulLiteral","src":"2482:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2485:1:81","nodeType":"YulLiteral","src":"2485:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2475:6:81","nodeType":"YulIdentifier","src":"2475:6:81"},"nativeSrc":"2475:12:81","nodeType":"YulFunctionCall","src":"2475:12:81"},"nativeSrc":"2475:12:81","nodeType":"YulExpressionStatement","src":"2475:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2432:5:81","nodeType":"YulIdentifier","src":"2432:5:81"},{"arguments":[{"name":"value","nativeSrc":"2443:5:81","nodeType":"YulIdentifier","src":"2443:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2458:3:81","nodeType":"YulLiteral","src":"2458:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"2463:1:81","nodeType":"YulLiteral","src":"2463:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2454:3:81","nodeType":"YulIdentifier","src":"2454:3:81"},"nativeSrc":"2454:11:81","nodeType":"YulFunctionCall","src":"2454:11:81"},{"kind":"number","nativeSrc":"2467:1:81","nodeType":"YulLiteral","src":"2467:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2450:3:81","nodeType":"YulIdentifier","src":"2450:3:81"},"nativeSrc":"2450:19:81","nodeType":"YulFunctionCall","src":"2450:19:81"}],"functionName":{"name":"and","nativeSrc":"2439:3:81","nodeType":"YulIdentifier","src":"2439:3:81"},"nativeSrc":"2439:31:81","nodeType":"YulFunctionCall","src":"2439:31:81"}],"functionName":{"name":"eq","nativeSrc":"2429:2:81","nodeType":"YulIdentifier","src":"2429:2:81"},"nativeSrc":"2429:42:81","nodeType":"YulFunctionCall","src":"2429:42:81"}],"functionName":{"name":"iszero","nativeSrc":"2422:6:81","nodeType":"YulIdentifier","src":"2422:6:81"},"nativeSrc":"2422:50:81","nodeType":"YulFunctionCall","src":"2422:50:81"},"nativeSrc":"2419:70:81","nodeType":"YulIf","src":"2419:70:81"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"2354:141:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2398:5:81","nodeType":"YulTypedName","src":"2398:5:81","type":""}],"src":"2354:141:81"},{"body":{"nativeSrc":"2641:559:81","nodeType":"YulBlock","src":"2641:559:81","statements":[{"body":{"nativeSrc":"2687:16:81","nodeType":"YulBlock","src":"2687:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2696:1:81","nodeType":"YulLiteral","src":"2696:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2699:1:81","nodeType":"YulLiteral","src":"2699:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2689:6:81","nodeType":"YulIdentifier","src":"2689:6:81"},"nativeSrc":"2689:12:81","nodeType":"YulFunctionCall","src":"2689:12:81"},"nativeSrc":"2689:12:81","nodeType":"YulExpressionStatement","src":"2689:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2662:7:81","nodeType":"YulIdentifier","src":"2662:7:81"},{"name":"headStart","nativeSrc":"2671:9:81","nodeType":"YulIdentifier","src":"2671:9:81"}],"functionName":{"name":"sub","nativeSrc":"2658:3:81","nodeType":"YulIdentifier","src":"2658:3:81"},"nativeSrc":"2658:23:81","nodeType":"YulFunctionCall","src":"2658:23:81"},{"kind":"number","nativeSrc":"2683:2:81","nodeType":"YulLiteral","src":"2683:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2654:3:81","nodeType":"YulIdentifier","src":"2654:3:81"},"nativeSrc":"2654:32:81","nodeType":"YulFunctionCall","src":"2654:32:81"},"nativeSrc":"2651:52:81","nodeType":"YulIf","src":"2651:52:81"},{"nativeSrc":"2712:37:81","nodeType":"YulVariableDeclaration","src":"2712:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2739:9:81","nodeType":"YulIdentifier","src":"2739:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2726:12:81","nodeType":"YulIdentifier","src":"2726:12:81"},"nativeSrc":"2726:23:81","nodeType":"YulFunctionCall","src":"2726:23:81"},"variables":[{"name":"offset","nativeSrc":"2716:6:81","nodeType":"YulTypedName","src":"2716:6:81","type":""}]},{"body":{"nativeSrc":"2792:16:81","nodeType":"YulBlock","src":"2792:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2801:1:81","nodeType":"YulLiteral","src":"2801:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2804:1:81","nodeType":"YulLiteral","src":"2804:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2794:6:81","nodeType":"YulIdentifier","src":"2794:6:81"},"nativeSrc":"2794:12:81","nodeType":"YulFunctionCall","src":"2794:12:81"},"nativeSrc":"2794:12:81","nodeType":"YulExpressionStatement","src":"2794:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2764:6:81","nodeType":"YulIdentifier","src":"2764:6:81"},{"kind":"number","nativeSrc":"2772:18:81","nodeType":"YulLiteral","src":"2772:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2761:2:81","nodeType":"YulIdentifier","src":"2761:2:81"},"nativeSrc":"2761:30:81","nodeType":"YulFunctionCall","src":"2761:30:81"},"nativeSrc":"2758:50:81","nodeType":"YulIf","src":"2758:50:81"},{"nativeSrc":"2817:60:81","nodeType":"YulAssignment","src":"2817:60:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2849:9:81","nodeType":"YulIdentifier","src":"2849:9:81"},{"name":"offset","nativeSrc":"2860:6:81","nodeType":"YulIdentifier","src":"2860:6:81"}],"functionName":{"name":"add","nativeSrc":"2845:3:81","nodeType":"YulIdentifier","src":"2845:3:81"},"nativeSrc":"2845:22:81","nodeType":"YulFunctionCall","src":"2845:22:81"},{"name":"dataEnd","nativeSrc":"2869:7:81","nodeType":"YulIdentifier","src":"2869:7:81"}],"functionName":{"name":"abi_decode_string","nativeSrc":"2827:17:81","nodeType":"YulIdentifier","src":"2827:17:81"},"nativeSrc":"2827:50:81","nodeType":"YulFunctionCall","src":"2827:50:81"},"variableNames":[{"name":"value0","nativeSrc":"2817:6:81","nodeType":"YulIdentifier","src":"2817:6:81"}]},{"nativeSrc":"2886:48:81","nodeType":"YulVariableDeclaration","src":"2886:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2919:9:81","nodeType":"YulIdentifier","src":"2919:9:81"},{"kind":"number","nativeSrc":"2930:2:81","nodeType":"YulLiteral","src":"2930:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2915:3:81","nodeType":"YulIdentifier","src":"2915:3:81"},"nativeSrc":"2915:18:81","nodeType":"YulFunctionCall","src":"2915:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"2902:12:81","nodeType":"YulIdentifier","src":"2902:12:81"},"nativeSrc":"2902:32:81","nodeType":"YulFunctionCall","src":"2902:32:81"},"variables":[{"name":"offset_1","nativeSrc":"2890:8:81","nodeType":"YulTypedName","src":"2890:8:81","type":""}]},{"body":{"nativeSrc":"2979:16:81","nodeType":"YulBlock","src":"2979:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2988:1:81","nodeType":"YulLiteral","src":"2988:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2991:1:81","nodeType":"YulLiteral","src":"2991:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2981:6:81","nodeType":"YulIdentifier","src":"2981:6:81"},"nativeSrc":"2981:12:81","nodeType":"YulFunctionCall","src":"2981:12:81"},"nativeSrc":"2981:12:81","nodeType":"YulExpressionStatement","src":"2981:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"2949:8:81","nodeType":"YulIdentifier","src":"2949:8:81"},{"kind":"number","nativeSrc":"2959:18:81","nodeType":"YulLiteral","src":"2959:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2946:2:81","nodeType":"YulIdentifier","src":"2946:2:81"},"nativeSrc":"2946:32:81","nodeType":"YulFunctionCall","src":"2946:32:81"},"nativeSrc":"2943:52:81","nodeType":"YulIf","src":"2943:52:81"},{"nativeSrc":"3004:62:81","nodeType":"YulAssignment","src":"3004:62:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3036:9:81","nodeType":"YulIdentifier","src":"3036:9:81"},{"name":"offset_1","nativeSrc":"3047:8:81","nodeType":"YulIdentifier","src":"3047:8:81"}],"functionName":{"name":"add","nativeSrc":"3032:3:81","nodeType":"YulIdentifier","src":"3032:3:81"},"nativeSrc":"3032:24:81","nodeType":"YulFunctionCall","src":"3032:24:81"},{"name":"dataEnd","nativeSrc":"3058:7:81","nodeType":"YulIdentifier","src":"3058:7:81"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3014:17:81","nodeType":"YulIdentifier","src":"3014:17:81"},"nativeSrc":"3014:52:81","nodeType":"YulFunctionCall","src":"3014:52:81"},"variableNames":[{"name":"value1","nativeSrc":"3004:6:81","nodeType":"YulIdentifier","src":"3004:6:81"}]},{"nativeSrc":"3075:45:81","nodeType":"YulVariableDeclaration","src":"3075:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3105:9:81","nodeType":"YulIdentifier","src":"3105:9:81"},{"kind":"number","nativeSrc":"3116:2:81","nodeType":"YulLiteral","src":"3116:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3101:3:81","nodeType":"YulIdentifier","src":"3101:3:81"},"nativeSrc":"3101:18:81","nodeType":"YulFunctionCall","src":"3101:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3088:12:81","nodeType":"YulIdentifier","src":"3088:12:81"},"nativeSrc":"3088:32:81","nodeType":"YulFunctionCall","src":"3088:32:81"},"variables":[{"name":"value","nativeSrc":"3079:5:81","nodeType":"YulTypedName","src":"3079:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3164:5:81","nodeType":"YulIdentifier","src":"3164:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3129:34:81","nodeType":"YulIdentifier","src":"3129:34:81"},"nativeSrc":"3129:41:81","nodeType":"YulFunctionCall","src":"3129:41:81"},"nativeSrc":"3129:41:81","nodeType":"YulExpressionStatement","src":"3129:41:81"},{"nativeSrc":"3179:15:81","nodeType":"YulAssignment","src":"3179:15:81","value":{"name":"value","nativeSrc":"3189:5:81","nodeType":"YulIdentifier","src":"3189:5:81"},"variableNames":[{"name":"value2","nativeSrc":"3179:6:81","nodeType":"YulIdentifier","src":"3179:6:81"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$9796","nativeSrc":"2500:700:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2591:9:81","nodeType":"YulTypedName","src":"2591:9:81","type":""},{"name":"dataEnd","nativeSrc":"2602:7:81","nodeType":"YulTypedName","src":"2602:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2614:6:81","nodeType":"YulTypedName","src":"2614:6:81","type":""},{"name":"value1","nativeSrc":"2622:6:81","nodeType":"YulTypedName","src":"2622:6:81","type":""},{"name":"value2","nativeSrc":"2630:6:81","nodeType":"YulTypedName","src":"2630:6:81","type":""}],"src":"2500:700:81"},{"body":{"nativeSrc":"3275:156:81","nodeType":"YulBlock","src":"3275:156:81","statements":[{"body":{"nativeSrc":"3321:16:81","nodeType":"YulBlock","src":"3321:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3330:1:81","nodeType":"YulLiteral","src":"3330:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3333:1:81","nodeType":"YulLiteral","src":"3333:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3323:6:81","nodeType":"YulIdentifier","src":"3323:6:81"},"nativeSrc":"3323:12:81","nodeType":"YulFunctionCall","src":"3323:12:81"},"nativeSrc":"3323:12:81","nodeType":"YulExpressionStatement","src":"3323:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3296:7:81","nodeType":"YulIdentifier","src":"3296:7:81"},{"name":"headStart","nativeSrc":"3305:9:81","nodeType":"YulIdentifier","src":"3305:9:81"}],"functionName":{"name":"sub","nativeSrc":"3292:3:81","nodeType":"YulIdentifier","src":"3292:3:81"},"nativeSrc":"3292:23:81","nodeType":"YulFunctionCall","src":"3292:23:81"},{"kind":"number","nativeSrc":"3317:2:81","nodeType":"YulLiteral","src":"3317:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3288:3:81","nodeType":"YulIdentifier","src":"3288:3:81"},"nativeSrc":"3288:32:81","nodeType":"YulFunctionCall","src":"3288:32:81"},"nativeSrc":"3285:52:81","nodeType":"YulIf","src":"3285:52:81"},{"nativeSrc":"3346:14:81","nodeType":"YulVariableDeclaration","src":"3346:14:81","value":{"kind":"number","nativeSrc":"3359:1:81","nodeType":"YulLiteral","src":"3359:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3350:5:81","nodeType":"YulTypedName","src":"3350:5:81","type":""}]},{"nativeSrc":"3369:32:81","nodeType":"YulAssignment","src":"3369:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3391:9:81","nodeType":"YulIdentifier","src":"3391:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3378:12:81","nodeType":"YulIdentifier","src":"3378:12:81"},"nativeSrc":"3378:23:81","nodeType":"YulFunctionCall","src":"3378:23:81"},"variableNames":[{"name":"value","nativeSrc":"3369:5:81","nodeType":"YulIdentifier","src":"3369:5:81"}]},{"nativeSrc":"3410:15:81","nodeType":"YulAssignment","src":"3410:15:81","value":{"name":"value","nativeSrc":"3420:5:81","nodeType":"YulIdentifier","src":"3420:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3410:6:81","nodeType":"YulIdentifier","src":"3410:6:81"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3205:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3241:9:81","nodeType":"YulTypedName","src":"3241:9:81","type":""},{"name":"dataEnd","nativeSrc":"3252:7:81","nodeType":"YulTypedName","src":"3252:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3264:6:81","nodeType":"YulTypedName","src":"3264:6:81","type":""}],"src":"3205:226:81"},{"body":{"nativeSrc":"3480:77:81","nodeType":"YulBlock","src":"3480:77:81","statements":[{"body":{"nativeSrc":"3535:16:81","nodeType":"YulBlock","src":"3535:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3544:1:81","nodeType":"YulLiteral","src":"3544:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3547:1:81","nodeType":"YulLiteral","src":"3547:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3537:6:81","nodeType":"YulIdentifier","src":"3537:6:81"},"nativeSrc":"3537:12:81","nodeType":"YulFunctionCall","src":"3537:12:81"},"nativeSrc":"3537:12:81","nodeType":"YulExpressionStatement","src":"3537:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3503:5:81","nodeType":"YulIdentifier","src":"3503:5:81"},{"arguments":[{"name":"value","nativeSrc":"3514:5:81","nodeType":"YulIdentifier","src":"3514:5:81"},{"kind":"number","nativeSrc":"3521:10:81","nodeType":"YulLiteral","src":"3521:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"3510:3:81","nodeType":"YulIdentifier","src":"3510:3:81"},"nativeSrc":"3510:22:81","nodeType":"YulFunctionCall","src":"3510:22:81"}],"functionName":{"name":"eq","nativeSrc":"3500:2:81","nodeType":"YulIdentifier","src":"3500:2:81"},"nativeSrc":"3500:33:81","nodeType":"YulFunctionCall","src":"3500:33:81"}],"functionName":{"name":"iszero","nativeSrc":"3493:6:81","nodeType":"YulIdentifier","src":"3493:6:81"},"nativeSrc":"3493:41:81","nodeType":"YulFunctionCall","src":"3493:41:81"},"nativeSrc":"3490:61:81","nodeType":"YulIf","src":"3490:61:81"}]},"name":"validator_revert_uint32","nativeSrc":"3436:121:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"3469:5:81","nodeType":"YulTypedName","src":"3469:5:81","type":""}],"src":"3436:121:81"},{"body":{"nativeSrc":"3648:310:81","nodeType":"YulBlock","src":"3648:310:81","statements":[{"body":{"nativeSrc":"3694:16:81","nodeType":"YulBlock","src":"3694:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3703:1:81","nodeType":"YulLiteral","src":"3703:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3706:1:81","nodeType":"YulLiteral","src":"3706:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3696:6:81","nodeType":"YulIdentifier","src":"3696:6:81"},"nativeSrc":"3696:12:81","nodeType":"YulFunctionCall","src":"3696:12:81"},"nativeSrc":"3696:12:81","nodeType":"YulExpressionStatement","src":"3696:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3669:7:81","nodeType":"YulIdentifier","src":"3669:7:81"},{"name":"headStart","nativeSrc":"3678:9:81","nodeType":"YulIdentifier","src":"3678:9:81"}],"functionName":{"name":"sub","nativeSrc":"3665:3:81","nodeType":"YulIdentifier","src":"3665:3:81"},"nativeSrc":"3665:23:81","nodeType":"YulFunctionCall","src":"3665:23:81"},{"kind":"number","nativeSrc":"3690:2:81","nodeType":"YulLiteral","src":"3690:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3661:3:81","nodeType":"YulIdentifier","src":"3661:3:81"},"nativeSrc":"3661:32:81","nodeType":"YulFunctionCall","src":"3661:32:81"},"nativeSrc":"3658:52:81","nodeType":"YulIf","src":"3658:52:81"},{"nativeSrc":"3719:36:81","nodeType":"YulVariableDeclaration","src":"3719:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3745:9:81","nodeType":"YulIdentifier","src":"3745:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3732:12:81","nodeType":"YulIdentifier","src":"3732:12:81"},"nativeSrc":"3732:23:81","nodeType":"YulFunctionCall","src":"3732:23:81"},"variables":[{"name":"value","nativeSrc":"3723:5:81","nodeType":"YulTypedName","src":"3723:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3799:5:81","nodeType":"YulIdentifier","src":"3799:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3764:34:81","nodeType":"YulIdentifier","src":"3764:34:81"},"nativeSrc":"3764:41:81","nodeType":"YulFunctionCall","src":"3764:41:81"},"nativeSrc":"3764:41:81","nodeType":"YulExpressionStatement","src":"3764:41:81"},{"nativeSrc":"3814:15:81","nodeType":"YulAssignment","src":"3814:15:81","value":{"name":"value","nativeSrc":"3824:5:81","nodeType":"YulIdentifier","src":"3824:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3814:6:81","nodeType":"YulIdentifier","src":"3814:6:81"}]},{"nativeSrc":"3838:47:81","nodeType":"YulVariableDeclaration","src":"3838:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3870:9:81","nodeType":"YulIdentifier","src":"3870:9:81"},{"kind":"number","nativeSrc":"3881:2:81","nodeType":"YulLiteral","src":"3881:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3866:3:81","nodeType":"YulIdentifier","src":"3866:3:81"},"nativeSrc":"3866:18:81","nodeType":"YulFunctionCall","src":"3866:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3853:12:81","nodeType":"YulIdentifier","src":"3853:12:81"},"nativeSrc":"3853:32:81","nodeType":"YulFunctionCall","src":"3853:32:81"},"variables":[{"name":"value_1","nativeSrc":"3842:7:81","nodeType":"YulTypedName","src":"3842:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3918:7:81","nodeType":"YulIdentifier","src":"3918:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"3894:23:81","nodeType":"YulIdentifier","src":"3894:23:81"},"nativeSrc":"3894:32:81","nodeType":"YulFunctionCall","src":"3894:32:81"},"nativeSrc":"3894:32:81","nodeType":"YulExpressionStatement","src":"3894:32:81"},{"nativeSrc":"3935:17:81","nodeType":"YulAssignment","src":"3935:17:81","value":{"name":"value_1","nativeSrc":"3945:7:81","nodeType":"YulIdentifier","src":"3945:7:81"},"variableNames":[{"name":"value1","nativeSrc":"3935:6:81","nodeType":"YulIdentifier","src":"3935:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"3562:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3606:9:81","nodeType":"YulTypedName","src":"3606:9:81","type":""},{"name":"dataEnd","nativeSrc":"3617:7:81","nodeType":"YulTypedName","src":"3617:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3629:6:81","nodeType":"YulTypedName","src":"3629:6:81","type":""},{"name":"value1","nativeSrc":"3637:6:81","nodeType":"YulTypedName","src":"3637:6:81","type":""}],"src":"3562:396:81"},{"body":{"nativeSrc":"4033:187:81","nodeType":"YulBlock","src":"4033:187:81","statements":[{"body":{"nativeSrc":"4079:16:81","nodeType":"YulBlock","src":"4079:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4088:1:81","nodeType":"YulLiteral","src":"4088:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4091:1:81","nodeType":"YulLiteral","src":"4091:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4081:6:81","nodeType":"YulIdentifier","src":"4081:6:81"},"nativeSrc":"4081:12:81","nodeType":"YulFunctionCall","src":"4081:12:81"},"nativeSrc":"4081:12:81","nodeType":"YulExpressionStatement","src":"4081:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4054:7:81","nodeType":"YulIdentifier","src":"4054:7:81"},{"name":"headStart","nativeSrc":"4063:9:81","nodeType":"YulIdentifier","src":"4063:9:81"}],"functionName":{"name":"sub","nativeSrc":"4050:3:81","nodeType":"YulIdentifier","src":"4050:3:81"},"nativeSrc":"4050:23:81","nodeType":"YulFunctionCall","src":"4050:23:81"},{"kind":"number","nativeSrc":"4075:2:81","nodeType":"YulLiteral","src":"4075:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4046:3:81","nodeType":"YulIdentifier","src":"4046:3:81"},"nativeSrc":"4046:32:81","nodeType":"YulFunctionCall","src":"4046:32:81"},"nativeSrc":"4043:52:81","nodeType":"YulIf","src":"4043:52:81"},{"nativeSrc":"4104:36:81","nodeType":"YulVariableDeclaration","src":"4104:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4130:9:81","nodeType":"YulIdentifier","src":"4130:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"4117:12:81","nodeType":"YulIdentifier","src":"4117:12:81"},"nativeSrc":"4117:23:81","nodeType":"YulFunctionCall","src":"4117:23:81"},"variables":[{"name":"value","nativeSrc":"4108:5:81","nodeType":"YulTypedName","src":"4108:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4184:5:81","nodeType":"YulIdentifier","src":"4184:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4149:34:81","nodeType":"YulIdentifier","src":"4149:34:81"},"nativeSrc":"4149:41:81","nodeType":"YulFunctionCall","src":"4149:41:81"},"nativeSrc":"4149:41:81","nodeType":"YulExpressionStatement","src":"4149:41:81"},{"nativeSrc":"4199:15:81","nodeType":"YulAssignment","src":"4199:15:81","value":{"name":"value","nativeSrc":"4209:5:81","nodeType":"YulIdentifier","src":"4209:5:81"},"variableNames":[{"name":"value0","nativeSrc":"4199:6:81","nodeType":"YulIdentifier","src":"4199:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"3963:257:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3999:9:81","nodeType":"YulTypedName","src":"3999:9:81","type":""},{"name":"dataEnd","nativeSrc":"4010:7:81","nodeType":"YulTypedName","src":"4010:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4022:6:81","nodeType":"YulTypedName","src":"4022:6:81","type":""}],"src":"3963:257:81"},{"body":{"nativeSrc":"4257:95:81","nodeType":"YulBlock","src":"4257:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4274:1:81","nodeType":"YulLiteral","src":"4274:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4281:3:81","nodeType":"YulLiteral","src":"4281:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4286:10:81","nodeType":"YulLiteral","src":"4286:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4277:3:81","nodeType":"YulIdentifier","src":"4277:3:81"},"nativeSrc":"4277:20:81","nodeType":"YulFunctionCall","src":"4277:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4267:6:81","nodeType":"YulIdentifier","src":"4267:6:81"},"nativeSrc":"4267:31:81","nodeType":"YulFunctionCall","src":"4267:31:81"},"nativeSrc":"4267:31:81","nodeType":"YulExpressionStatement","src":"4267:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4314:1:81","nodeType":"YulLiteral","src":"4314:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4317:4:81","nodeType":"YulLiteral","src":"4317:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"4307:6:81","nodeType":"YulIdentifier","src":"4307:6:81"},"nativeSrc":"4307:15:81","nodeType":"YulFunctionCall","src":"4307:15:81"},"nativeSrc":"4307:15:81","nodeType":"YulExpressionStatement","src":"4307:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4338:1:81","nodeType":"YulLiteral","src":"4338:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4341:4:81","nodeType":"YulLiteral","src":"4341:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4331:6:81","nodeType":"YulIdentifier","src":"4331:6:81"},"nativeSrc":"4331:15:81","nodeType":"YulFunctionCall","src":"4331:15:81"},"nativeSrc":"4331:15:81","nodeType":"YulExpressionStatement","src":"4331:15:81"}]},"name":"panic_error_0x21","nativeSrc":"4225:127:81","nodeType":"YulFunctionDefinition","src":"4225:127:81"},{"body":{"nativeSrc":"4411:186:81","nodeType":"YulBlock","src":"4411:186:81","statements":[{"body":{"nativeSrc":"4453:111:81","nodeType":"YulBlock","src":"4453:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4474:1:81","nodeType":"YulLiteral","src":"4474:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4481:3:81","nodeType":"YulLiteral","src":"4481:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4486:10:81","nodeType":"YulLiteral","src":"4486:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4477:3:81","nodeType":"YulIdentifier","src":"4477:3:81"},"nativeSrc":"4477:20:81","nodeType":"YulFunctionCall","src":"4477:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4467:6:81","nodeType":"YulIdentifier","src":"4467:6:81"},"nativeSrc":"4467:31:81","nodeType":"YulFunctionCall","src":"4467:31:81"},"nativeSrc":"4467:31:81","nodeType":"YulExpressionStatement","src":"4467:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4518:1:81","nodeType":"YulLiteral","src":"4518:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4521:4:81","nodeType":"YulLiteral","src":"4521:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"4511:6:81","nodeType":"YulIdentifier","src":"4511:6:81"},"nativeSrc":"4511:15:81","nodeType":"YulFunctionCall","src":"4511:15:81"},"nativeSrc":"4511:15:81","nodeType":"YulExpressionStatement","src":"4511:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4546:1:81","nodeType":"YulLiteral","src":"4546:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4549:4:81","nodeType":"YulLiteral","src":"4549:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4539:6:81","nodeType":"YulIdentifier","src":"4539:6:81"},"nativeSrc":"4539:15:81","nodeType":"YulFunctionCall","src":"4539:15:81"},"nativeSrc":"4539:15:81","nodeType":"YulExpressionStatement","src":"4539:15:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4434:5:81","nodeType":"YulIdentifier","src":"4434:5:81"},{"kind":"number","nativeSrc":"4441:1:81","nodeType":"YulLiteral","src":"4441:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"4431:2:81","nodeType":"YulIdentifier","src":"4431:2:81"},"nativeSrc":"4431:12:81","nodeType":"YulFunctionCall","src":"4431:12:81"}],"functionName":{"name":"iszero","nativeSrc":"4424:6:81","nodeType":"YulIdentifier","src":"4424:6:81"},"nativeSrc":"4424:20:81","nodeType":"YulFunctionCall","src":"4424:20:81"},"nativeSrc":"4421:143:81","nodeType":"YulIf","src":"4421:143:81"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"4580:3:81","nodeType":"YulIdentifier","src":"4580:3:81"},{"name":"value","nativeSrc":"4585:5:81","nodeType":"YulIdentifier","src":"4585:5:81"}],"functionName":{"name":"mstore","nativeSrc":"4573:6:81","nodeType":"YulIdentifier","src":"4573:6:81"},"nativeSrc":"4573:18:81","nodeType":"YulFunctionCall","src":"4573:18:81"},"nativeSrc":"4573:18:81","nodeType":"YulExpressionStatement","src":"4573:18:81"}]},"name":"abi_encode_enum_TargetStatus","nativeSrc":"4357:240:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4395:5:81","nodeType":"YulTypedName","src":"4395:5:81","type":""},{"name":"pos","nativeSrc":"4402:3:81","nodeType":"YulTypedName","src":"4402:3:81","type":""}],"src":"4357:240:81"},{"body":{"nativeSrc":"4719:98:81","nodeType":"YulBlock","src":"4719:98:81","statements":[{"nativeSrc":"4729:26:81","nodeType":"YulAssignment","src":"4729:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4741:9:81","nodeType":"YulIdentifier","src":"4741:9:81"},{"kind":"number","nativeSrc":"4752:2:81","nodeType":"YulLiteral","src":"4752:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4737:3:81","nodeType":"YulIdentifier","src":"4737:3:81"},"nativeSrc":"4737:18:81","nodeType":"YulFunctionCall","src":"4737:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4729:4:81","nodeType":"YulIdentifier","src":"4729:4:81"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"4793:6:81","nodeType":"YulIdentifier","src":"4793:6:81"},{"name":"headStart","nativeSrc":"4801:9:81","nodeType":"YulIdentifier","src":"4801:9:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"4764:28:81","nodeType":"YulIdentifier","src":"4764:28:81"},"nativeSrc":"4764:47:81","nodeType":"YulFunctionCall","src":"4764:47:81"},"nativeSrc":"4764:47:81","nodeType":"YulExpressionStatement","src":"4764:47:81"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$22999__to_t_uint8__fromStack_reversed","nativeSrc":"4602:215:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4688:9:81","nodeType":"YulTypedName","src":"4688:9:81","type":""},{"name":"value0","nativeSrc":"4699:6:81","nodeType":"YulTypedName","src":"4699:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4710:4:81","nodeType":"YulTypedName","src":"4710:4:81","type":""}],"src":"4602:215:81"},{"body":{"nativeSrc":"4909:290:81","nodeType":"YulBlock","src":"4909:290:81","statements":[{"body":{"nativeSrc":"4955:16:81","nodeType":"YulBlock","src":"4955:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4964:1:81","nodeType":"YulLiteral","src":"4964:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4967:1:81","nodeType":"YulLiteral","src":"4967:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4957:6:81","nodeType":"YulIdentifier","src":"4957:6:81"},"nativeSrc":"4957:12:81","nodeType":"YulFunctionCall","src":"4957:12:81"},"nativeSrc":"4957:12:81","nodeType":"YulExpressionStatement","src":"4957:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4930:7:81","nodeType":"YulIdentifier","src":"4930:7:81"},{"name":"headStart","nativeSrc":"4939:9:81","nodeType":"YulIdentifier","src":"4939:9:81"}],"functionName":{"name":"sub","nativeSrc":"4926:3:81","nodeType":"YulIdentifier","src":"4926:3:81"},"nativeSrc":"4926:23:81","nodeType":"YulFunctionCall","src":"4926:23:81"},{"kind":"number","nativeSrc":"4951:2:81","nodeType":"YulLiteral","src":"4951:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4922:3:81","nodeType":"YulIdentifier","src":"4922:3:81"},"nativeSrc":"4922:32:81","nodeType":"YulFunctionCall","src":"4922:32:81"},"nativeSrc":"4919:52:81","nodeType":"YulIf","src":"4919:52:81"},{"nativeSrc":"4980:36:81","nodeType":"YulVariableDeclaration","src":"4980:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5006:9:81","nodeType":"YulIdentifier","src":"5006:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"4993:12:81","nodeType":"YulIdentifier","src":"4993:12:81"},"nativeSrc":"4993:23:81","nodeType":"YulFunctionCall","src":"4993:23:81"},"variables":[{"name":"value","nativeSrc":"4984:5:81","nodeType":"YulTypedName","src":"4984:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5060:5:81","nodeType":"YulIdentifier","src":"5060:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5025:34:81","nodeType":"YulIdentifier","src":"5025:34:81"},"nativeSrc":"5025:41:81","nodeType":"YulFunctionCall","src":"5025:41:81"},"nativeSrc":"5025:41:81","nodeType":"YulExpressionStatement","src":"5025:41:81"},{"nativeSrc":"5075:15:81","nodeType":"YulAssignment","src":"5075:15:81","value":{"name":"value","nativeSrc":"5085:5:81","nodeType":"YulIdentifier","src":"5085:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5075:6:81","nodeType":"YulIdentifier","src":"5075:6:81"}]},{"nativeSrc":"5099:16:81","nodeType":"YulVariableDeclaration","src":"5099:16:81","value":{"kind":"number","nativeSrc":"5114:1:81","nodeType":"YulLiteral","src":"5114:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5103:7:81","nodeType":"YulTypedName","src":"5103:7:81","type":""}]},{"nativeSrc":"5124:43:81","nodeType":"YulAssignment","src":"5124:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5152:9:81","nodeType":"YulIdentifier","src":"5152:9:81"},{"kind":"number","nativeSrc":"5163:2:81","nodeType":"YulLiteral","src":"5163:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5148:3:81","nodeType":"YulIdentifier","src":"5148:3:81"},"nativeSrc":"5148:18:81","nodeType":"YulFunctionCall","src":"5148:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"5135:12:81","nodeType":"YulIdentifier","src":"5135:12:81"},"nativeSrc":"5135:32:81","nodeType":"YulFunctionCall","src":"5135:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"5124:7:81","nodeType":"YulIdentifier","src":"5124:7:81"}]},{"nativeSrc":"5176:17:81","nodeType":"YulAssignment","src":"5176:17:81","value":{"name":"value_1","nativeSrc":"5186:7:81","nodeType":"YulIdentifier","src":"5186:7:81"},"variableNames":[{"name":"value1","nativeSrc":"5176:6:81","nodeType":"YulIdentifier","src":"5176:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"4822:377:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4867:9:81","nodeType":"YulTypedName","src":"4867:9:81","type":""},{"name":"dataEnd","nativeSrc":"4878:7:81","nodeType":"YulTypedName","src":"4878:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4890:6:81","nodeType":"YulTypedName","src":"4890:6:81","type":""},{"name":"value1","nativeSrc":"4898:6:81","nodeType":"YulTypedName","src":"4898:6:81","type":""}],"src":"4822:377:81"},{"body":{"nativeSrc":"5305:76:81","nodeType":"YulBlock","src":"5305:76:81","statements":[{"nativeSrc":"5315:26:81","nodeType":"YulAssignment","src":"5315:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5327:9:81","nodeType":"YulIdentifier","src":"5327:9:81"},{"kind":"number","nativeSrc":"5338:2:81","nodeType":"YulLiteral","src":"5338:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5323:3:81","nodeType":"YulIdentifier","src":"5323:3:81"},"nativeSrc":"5323:18:81","nodeType":"YulFunctionCall","src":"5323:18:81"},"variableNames":[{"name":"tail","nativeSrc":"5315:4:81","nodeType":"YulIdentifier","src":"5315:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5357:9:81","nodeType":"YulIdentifier","src":"5357:9:81"},{"name":"value0","nativeSrc":"5368:6:81","nodeType":"YulIdentifier","src":"5368:6:81"}],"functionName":{"name":"mstore","nativeSrc":"5350:6:81","nodeType":"YulIdentifier","src":"5350:6:81"},"nativeSrc":"5350:25:81","nodeType":"YulFunctionCall","src":"5350:25:81"},"nativeSrc":"5350:25:81","nodeType":"YulExpressionStatement","src":"5350:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"5204:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5274:9:81","nodeType":"YulTypedName","src":"5274:9:81","type":""},{"name":"value0","nativeSrc":"5285:6:81","nodeType":"YulTypedName","src":"5285:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5296:4:81","nodeType":"YulTypedName","src":"5296:4:81","type":""}],"src":"5204:177:81"},{"body":{"nativeSrc":"5458:275:81","nodeType":"YulBlock","src":"5458:275:81","statements":[{"body":{"nativeSrc":"5507:16:81","nodeType":"YulBlock","src":"5507:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5516:1:81","nodeType":"YulLiteral","src":"5516:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5519:1:81","nodeType":"YulLiteral","src":"5519:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5509:6:81","nodeType":"YulIdentifier","src":"5509:6:81"},"nativeSrc":"5509:12:81","nodeType":"YulFunctionCall","src":"5509:12:81"},"nativeSrc":"5509:12:81","nodeType":"YulExpressionStatement","src":"5509:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"5486:6:81","nodeType":"YulIdentifier","src":"5486:6:81"},{"kind":"number","nativeSrc":"5494:4:81","nodeType":"YulLiteral","src":"5494:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"5482:3:81","nodeType":"YulIdentifier","src":"5482:3:81"},"nativeSrc":"5482:17:81","nodeType":"YulFunctionCall","src":"5482:17:81"},{"name":"end","nativeSrc":"5501:3:81","nodeType":"YulIdentifier","src":"5501:3:81"}],"functionName":{"name":"slt","nativeSrc":"5478:3:81","nodeType":"YulIdentifier","src":"5478:3:81"},"nativeSrc":"5478:27:81","nodeType":"YulFunctionCall","src":"5478:27:81"}],"functionName":{"name":"iszero","nativeSrc":"5471:6:81","nodeType":"YulIdentifier","src":"5471:6:81"},"nativeSrc":"5471:35:81","nodeType":"YulFunctionCall","src":"5471:35:81"},"nativeSrc":"5468:55:81","nodeType":"YulIf","src":"5468:55:81"},{"nativeSrc":"5532:30:81","nodeType":"YulAssignment","src":"5532:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"5555:6:81","nodeType":"YulIdentifier","src":"5555:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"5542:12:81","nodeType":"YulIdentifier","src":"5542:12:81"},"nativeSrc":"5542:20:81","nodeType":"YulFunctionCall","src":"5542:20:81"},"variableNames":[{"name":"length","nativeSrc":"5532:6:81","nodeType":"YulIdentifier","src":"5532:6:81"}]},{"body":{"nativeSrc":"5605:16:81","nodeType":"YulBlock","src":"5605:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5614:1:81","nodeType":"YulLiteral","src":"5614:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5617:1:81","nodeType":"YulLiteral","src":"5617:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5607:6:81","nodeType":"YulIdentifier","src":"5607:6:81"},"nativeSrc":"5607:12:81","nodeType":"YulFunctionCall","src":"5607:12:81"},"nativeSrc":"5607:12:81","nodeType":"YulExpressionStatement","src":"5607:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5577:6:81","nodeType":"YulIdentifier","src":"5577:6:81"},{"kind":"number","nativeSrc":"5585:18:81","nodeType":"YulLiteral","src":"5585:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5574:2:81","nodeType":"YulIdentifier","src":"5574:2:81"},"nativeSrc":"5574:30:81","nodeType":"YulFunctionCall","src":"5574:30:81"},"nativeSrc":"5571:50:81","nodeType":"YulIf","src":"5571:50:81"},{"nativeSrc":"5630:29:81","nodeType":"YulAssignment","src":"5630:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"5646:6:81","nodeType":"YulIdentifier","src":"5646:6:81"},{"kind":"number","nativeSrc":"5654:4:81","nodeType":"YulLiteral","src":"5654:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5642:3:81","nodeType":"YulIdentifier","src":"5642:3:81"},"nativeSrc":"5642:17:81","nodeType":"YulFunctionCall","src":"5642:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"5630:8:81","nodeType":"YulIdentifier","src":"5630:8:81"}]},{"body":{"nativeSrc":"5711:16:81","nodeType":"YulBlock","src":"5711:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5720:1:81","nodeType":"YulLiteral","src":"5720:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5723:1:81","nodeType":"YulLiteral","src":"5723:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5713:6:81","nodeType":"YulIdentifier","src":"5713:6:81"},"nativeSrc":"5713:12:81","nodeType":"YulFunctionCall","src":"5713:12:81"},"nativeSrc":"5713:12:81","nodeType":"YulExpressionStatement","src":"5713:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"5682:6:81","nodeType":"YulIdentifier","src":"5682:6:81"},{"name":"length","nativeSrc":"5690:6:81","nodeType":"YulIdentifier","src":"5690:6:81"}],"functionName":{"name":"add","nativeSrc":"5678:3:81","nodeType":"YulIdentifier","src":"5678:3:81"},"nativeSrc":"5678:19:81","nodeType":"YulFunctionCall","src":"5678:19:81"},{"kind":"number","nativeSrc":"5699:4:81","nodeType":"YulLiteral","src":"5699:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5674:3:81","nodeType":"YulIdentifier","src":"5674:3:81"},"nativeSrc":"5674:30:81","nodeType":"YulFunctionCall","src":"5674:30:81"},{"name":"end","nativeSrc":"5706:3:81","nodeType":"YulIdentifier","src":"5706:3:81"}],"functionName":{"name":"gt","nativeSrc":"5671:2:81","nodeType":"YulIdentifier","src":"5671:2:81"},"nativeSrc":"5671:39:81","nodeType":"YulFunctionCall","src":"5671:39:81"},"nativeSrc":"5668:59:81","nodeType":"YulIf","src":"5668:59:81"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"5386:347:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5421:6:81","nodeType":"YulTypedName","src":"5421:6:81","type":""},{"name":"end","nativeSrc":"5429:3:81","nodeType":"YulTypedName","src":"5429:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"5437:8:81","nodeType":"YulTypedName","src":"5437:8:81","type":""},{"name":"length","nativeSrc":"5447:6:81","nodeType":"YulTypedName","src":"5447:6:81","type":""}],"src":"5386:347:81"},{"body":{"nativeSrc":"5878:686:81","nodeType":"YulBlock","src":"5878:686:81","statements":[{"body":{"nativeSrc":"5925:16:81","nodeType":"YulBlock","src":"5925:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5934:1:81","nodeType":"YulLiteral","src":"5934:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5937:1:81","nodeType":"YulLiteral","src":"5937:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5927:6:81","nodeType":"YulIdentifier","src":"5927:6:81"},"nativeSrc":"5927:12:81","nodeType":"YulFunctionCall","src":"5927:12:81"},"nativeSrc":"5927:12:81","nodeType":"YulExpressionStatement","src":"5927:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5899:7:81","nodeType":"YulIdentifier","src":"5899:7:81"},{"name":"headStart","nativeSrc":"5908:9:81","nodeType":"YulIdentifier","src":"5908:9:81"}],"functionName":{"name":"sub","nativeSrc":"5895:3:81","nodeType":"YulIdentifier","src":"5895:3:81"},"nativeSrc":"5895:23:81","nodeType":"YulFunctionCall","src":"5895:23:81"},{"kind":"number","nativeSrc":"5920:3:81","nodeType":"YulLiteral","src":"5920:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"5891:3:81","nodeType":"YulIdentifier","src":"5891:3:81"},"nativeSrc":"5891:33:81","nodeType":"YulFunctionCall","src":"5891:33:81"},"nativeSrc":"5888:53:81","nodeType":"YulIf","src":"5888:53:81"},{"nativeSrc":"5950:36:81","nodeType":"YulVariableDeclaration","src":"5950:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5976:9:81","nodeType":"YulIdentifier","src":"5976:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5963:12:81","nodeType":"YulIdentifier","src":"5963:12:81"},"nativeSrc":"5963:23:81","nodeType":"YulFunctionCall","src":"5963:23:81"},"variables":[{"name":"value","nativeSrc":"5954:5:81","nodeType":"YulTypedName","src":"5954:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6030:5:81","nodeType":"YulIdentifier","src":"6030:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5995:34:81","nodeType":"YulIdentifier","src":"5995:34:81"},"nativeSrc":"5995:41:81","nodeType":"YulFunctionCall","src":"5995:41:81"},"nativeSrc":"5995:41:81","nodeType":"YulExpressionStatement","src":"5995:41:81"},{"nativeSrc":"6045:15:81","nodeType":"YulAssignment","src":"6045:15:81","value":{"name":"value","nativeSrc":"6055:5:81","nodeType":"YulIdentifier","src":"6055:5:81"},"variableNames":[{"name":"value0","nativeSrc":"6045:6:81","nodeType":"YulIdentifier","src":"6045:6:81"}]},{"nativeSrc":"6069:47:81","nodeType":"YulVariableDeclaration","src":"6069:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6101:9:81","nodeType":"YulIdentifier","src":"6101:9:81"},{"kind":"number","nativeSrc":"6112:2:81","nodeType":"YulLiteral","src":"6112:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6097:3:81","nodeType":"YulIdentifier","src":"6097:3:81"},"nativeSrc":"6097:18:81","nodeType":"YulFunctionCall","src":"6097:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6084:12:81","nodeType":"YulIdentifier","src":"6084:12:81"},"nativeSrc":"6084:32:81","nodeType":"YulFunctionCall","src":"6084:32:81"},"variables":[{"name":"value_1","nativeSrc":"6073:7:81","nodeType":"YulTypedName","src":"6073:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6160:7:81","nodeType":"YulIdentifier","src":"6160:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"6125:34:81","nodeType":"YulIdentifier","src":"6125:34:81"},"nativeSrc":"6125:43:81","nodeType":"YulFunctionCall","src":"6125:43:81"},"nativeSrc":"6125:43:81","nodeType":"YulExpressionStatement","src":"6125:43:81"},{"nativeSrc":"6177:17:81","nodeType":"YulAssignment","src":"6177:17:81","value":{"name":"value_1","nativeSrc":"6187:7:81","nodeType":"YulIdentifier","src":"6187:7:81"},"variableNames":[{"name":"value1","nativeSrc":"6177:6:81","nodeType":"YulIdentifier","src":"6177:6:81"}]},{"nativeSrc":"6203:16:81","nodeType":"YulVariableDeclaration","src":"6203:16:81","value":{"kind":"number","nativeSrc":"6218:1:81","nodeType":"YulLiteral","src":"6218:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"6207:7:81","nodeType":"YulTypedName","src":"6207:7:81","type":""}]},{"nativeSrc":"6228:43:81","nodeType":"YulAssignment","src":"6228:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6256:9:81","nodeType":"YulIdentifier","src":"6256:9:81"},{"kind":"number","nativeSrc":"6267:2:81","nodeType":"YulLiteral","src":"6267:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6252:3:81","nodeType":"YulIdentifier","src":"6252:3:81"},"nativeSrc":"6252:18:81","nodeType":"YulFunctionCall","src":"6252:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6239:12:81","nodeType":"YulIdentifier","src":"6239:12:81"},"nativeSrc":"6239:32:81","nodeType":"YulFunctionCall","src":"6239:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"6228:7:81","nodeType":"YulIdentifier","src":"6228:7:81"}]},{"nativeSrc":"6280:17:81","nodeType":"YulAssignment","src":"6280:17:81","value":{"name":"value_2","nativeSrc":"6290:7:81","nodeType":"YulIdentifier","src":"6290:7:81"},"variableNames":[{"name":"value2","nativeSrc":"6280:6:81","nodeType":"YulIdentifier","src":"6280:6:81"}]},{"nativeSrc":"6306:46:81","nodeType":"YulVariableDeclaration","src":"6306:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6337:9:81","nodeType":"YulIdentifier","src":"6337:9:81"},{"kind":"number","nativeSrc":"6348:2:81","nodeType":"YulLiteral","src":"6348:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6333:3:81","nodeType":"YulIdentifier","src":"6333:3:81"},"nativeSrc":"6333:18:81","nodeType":"YulFunctionCall","src":"6333:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6320:12:81","nodeType":"YulIdentifier","src":"6320:12:81"},"nativeSrc":"6320:32:81","nodeType":"YulFunctionCall","src":"6320:32:81"},"variables":[{"name":"offset","nativeSrc":"6310:6:81","nodeType":"YulTypedName","src":"6310:6:81","type":""}]},{"body":{"nativeSrc":"6395:16:81","nodeType":"YulBlock","src":"6395:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6404:1:81","nodeType":"YulLiteral","src":"6404:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6407:1:81","nodeType":"YulLiteral","src":"6407:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6397:6:81","nodeType":"YulIdentifier","src":"6397:6:81"},"nativeSrc":"6397:12:81","nodeType":"YulFunctionCall","src":"6397:12:81"},"nativeSrc":"6397:12:81","nodeType":"YulExpressionStatement","src":"6397:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6367:6:81","nodeType":"YulIdentifier","src":"6367:6:81"},{"kind":"number","nativeSrc":"6375:18:81","nodeType":"YulLiteral","src":"6375:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6364:2:81","nodeType":"YulIdentifier","src":"6364:2:81"},"nativeSrc":"6364:30:81","nodeType":"YulFunctionCall","src":"6364:30:81"},"nativeSrc":"6361:50:81","nodeType":"YulIf","src":"6361:50:81"},{"nativeSrc":"6420:84:81","nodeType":"YulVariableDeclaration","src":"6420:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6476:9:81","nodeType":"YulIdentifier","src":"6476:9:81"},{"name":"offset","nativeSrc":"6487:6:81","nodeType":"YulIdentifier","src":"6487:6:81"}],"functionName":{"name":"add","nativeSrc":"6472:3:81","nodeType":"YulIdentifier","src":"6472:3:81"},"nativeSrc":"6472:22:81","nodeType":"YulFunctionCall","src":"6472:22:81"},{"name":"dataEnd","nativeSrc":"6496:7:81","nodeType":"YulIdentifier","src":"6496:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"6446:25:81","nodeType":"YulIdentifier","src":"6446:25:81"},"nativeSrc":"6446:58:81","nodeType":"YulFunctionCall","src":"6446:58:81"},"variables":[{"name":"value3_1","nativeSrc":"6424:8:81","nodeType":"YulTypedName","src":"6424:8:81","type":""},{"name":"value4_1","nativeSrc":"6434:8:81","nodeType":"YulTypedName","src":"6434:8:81","type":""}]},{"nativeSrc":"6513:18:81","nodeType":"YulAssignment","src":"6513:18:81","value":{"name":"value3_1","nativeSrc":"6523:8:81","nodeType":"YulIdentifier","src":"6523:8:81"},"variableNames":[{"name":"value3","nativeSrc":"6513:6:81","nodeType":"YulIdentifier","src":"6513:6:81"}]},{"nativeSrc":"6540:18:81","nodeType":"YulAssignment","src":"6540:18:81","value":{"name":"value4_1","nativeSrc":"6550:8:81","nodeType":"YulIdentifier","src":"6550:8:81"},"variableNames":[{"name":"value4","nativeSrc":"6540:6:81","nodeType":"YulIdentifier","src":"6540:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"5738:826:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5812:9:81","nodeType":"YulTypedName","src":"5812:9:81","type":""},{"name":"dataEnd","nativeSrc":"5823:7:81","nodeType":"YulTypedName","src":"5823:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5835:6:81","nodeType":"YulTypedName","src":"5835:6:81","type":""},{"name":"value1","nativeSrc":"5843:6:81","nodeType":"YulTypedName","src":"5843:6:81","type":""},{"name":"value2","nativeSrc":"5851:6:81","nodeType":"YulTypedName","src":"5851:6:81","type":""},{"name":"value3","nativeSrc":"5859:6:81","nodeType":"YulTypedName","src":"5859:6:81","type":""},{"name":"value4","nativeSrc":"5867:6:81","nodeType":"YulTypedName","src":"5867:6:81","type":""}],"src":"5738:826:81"},{"body":{"nativeSrc":"6668:103:81","nodeType":"YulBlock","src":"6668:103:81","statements":[{"nativeSrc":"6678:26:81","nodeType":"YulAssignment","src":"6678:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6690:9:81","nodeType":"YulIdentifier","src":"6690:9:81"},{"kind":"number","nativeSrc":"6701:2:81","nodeType":"YulLiteral","src":"6701:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6686:3:81","nodeType":"YulIdentifier","src":"6686:3:81"},"nativeSrc":"6686:18:81","nodeType":"YulFunctionCall","src":"6686:18:81"},"variableNames":[{"name":"tail","nativeSrc":"6678:4:81","nodeType":"YulIdentifier","src":"6678:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6720:9:81","nodeType":"YulIdentifier","src":"6720:9:81"},{"arguments":[{"name":"value0","nativeSrc":"6735:6:81","nodeType":"YulIdentifier","src":"6735:6:81"},{"arguments":[{"kind":"number","nativeSrc":"6747:3:81","nodeType":"YulLiteral","src":"6747:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"6752:10:81","nodeType":"YulLiteral","src":"6752:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"6743:3:81","nodeType":"YulIdentifier","src":"6743:3:81"},"nativeSrc":"6743:20:81","nodeType":"YulFunctionCall","src":"6743:20:81"}],"functionName":{"name":"and","nativeSrc":"6731:3:81","nodeType":"YulIdentifier","src":"6731:3:81"},"nativeSrc":"6731:33:81","nodeType":"YulFunctionCall","src":"6731:33:81"}],"functionName":{"name":"mstore","nativeSrc":"6713:6:81","nodeType":"YulIdentifier","src":"6713:6:81"},"nativeSrc":"6713:52:81","nodeType":"YulFunctionCall","src":"6713:52:81"},"nativeSrc":"6713:52:81","nodeType":"YulExpressionStatement","src":"6713:52:81"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"6569:202:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6637:9:81","nodeType":"YulTypedName","src":"6637:9:81","type":""},{"name":"value0","nativeSrc":"6648:6:81","nodeType":"YulTypedName","src":"6648:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6659:4:81","nodeType":"YulTypedName","src":"6659:4:81","type":""}],"src":"6569:202:81"},{"body":{"nativeSrc":"6818:76:81","nodeType":"YulBlock","src":"6818:76:81","statements":[{"body":{"nativeSrc":"6872:16:81","nodeType":"YulBlock","src":"6872:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6881:1:81","nodeType":"YulLiteral","src":"6881:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6884:1:81","nodeType":"YulLiteral","src":"6884:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6874:6:81","nodeType":"YulIdentifier","src":"6874:6:81"},"nativeSrc":"6874:12:81","nodeType":"YulFunctionCall","src":"6874:12:81"},"nativeSrc":"6874:12:81","nodeType":"YulExpressionStatement","src":"6874:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6841:5:81","nodeType":"YulIdentifier","src":"6841:5:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6862:5:81","nodeType":"YulIdentifier","src":"6862:5:81"}],"functionName":{"name":"iszero","nativeSrc":"6855:6:81","nodeType":"YulIdentifier","src":"6855:6:81"},"nativeSrc":"6855:13:81","nodeType":"YulFunctionCall","src":"6855:13:81"}],"functionName":{"name":"iszero","nativeSrc":"6848:6:81","nodeType":"YulIdentifier","src":"6848:6:81"},"nativeSrc":"6848:21:81","nodeType":"YulFunctionCall","src":"6848:21:81"}],"functionName":{"name":"eq","nativeSrc":"6838:2:81","nodeType":"YulIdentifier","src":"6838:2:81"},"nativeSrc":"6838:32:81","nodeType":"YulFunctionCall","src":"6838:32:81"}],"functionName":{"name":"iszero","nativeSrc":"6831:6:81","nodeType":"YulIdentifier","src":"6831:6:81"},"nativeSrc":"6831:40:81","nodeType":"YulFunctionCall","src":"6831:40:81"},"nativeSrc":"6828:60:81","nodeType":"YulIf","src":"6828:60:81"}]},"name":"validator_revert_bool","nativeSrc":"6776:118:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"6807:5:81","nodeType":"YulTypedName","src":"6807:5:81","type":""}],"src":"6776:118:81"},{"body":{"nativeSrc":"7000:308:81","nodeType":"YulBlock","src":"7000:308:81","statements":[{"body":{"nativeSrc":"7046:16:81","nodeType":"YulBlock","src":"7046:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7055:1:81","nodeType":"YulLiteral","src":"7055:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7058:1:81","nodeType":"YulLiteral","src":"7058:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7048:6:81","nodeType":"YulIdentifier","src":"7048:6:81"},"nativeSrc":"7048:12:81","nodeType":"YulFunctionCall","src":"7048:12:81"},"nativeSrc":"7048:12:81","nodeType":"YulExpressionStatement","src":"7048:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7021:7:81","nodeType":"YulIdentifier","src":"7021:7:81"},{"name":"headStart","nativeSrc":"7030:9:81","nodeType":"YulIdentifier","src":"7030:9:81"}],"functionName":{"name":"sub","nativeSrc":"7017:3:81","nodeType":"YulIdentifier","src":"7017:3:81"},"nativeSrc":"7017:23:81","nodeType":"YulFunctionCall","src":"7017:23:81"},{"kind":"number","nativeSrc":"7042:2:81","nodeType":"YulLiteral","src":"7042:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7013:3:81","nodeType":"YulIdentifier","src":"7013:3:81"},"nativeSrc":"7013:32:81","nodeType":"YulFunctionCall","src":"7013:32:81"},"nativeSrc":"7010:52:81","nodeType":"YulIf","src":"7010:52:81"},{"nativeSrc":"7071:36:81","nodeType":"YulVariableDeclaration","src":"7071:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7097:9:81","nodeType":"YulIdentifier","src":"7097:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"7084:12:81","nodeType":"YulIdentifier","src":"7084:12:81"},"nativeSrc":"7084:23:81","nodeType":"YulFunctionCall","src":"7084:23:81"},"variables":[{"name":"value","nativeSrc":"7075:5:81","nodeType":"YulTypedName","src":"7075:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7151:5:81","nodeType":"YulIdentifier","src":"7151:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7116:34:81","nodeType":"YulIdentifier","src":"7116:34:81"},"nativeSrc":"7116:41:81","nodeType":"YulFunctionCall","src":"7116:41:81"},"nativeSrc":"7116:41:81","nodeType":"YulExpressionStatement","src":"7116:41:81"},{"nativeSrc":"7166:15:81","nodeType":"YulAssignment","src":"7166:15:81","value":{"name":"value","nativeSrc":"7176:5:81","nodeType":"YulIdentifier","src":"7176:5:81"},"variableNames":[{"name":"value0","nativeSrc":"7166:6:81","nodeType":"YulIdentifier","src":"7166:6:81"}]},{"nativeSrc":"7190:47:81","nodeType":"YulVariableDeclaration","src":"7190:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7222:9:81","nodeType":"YulIdentifier","src":"7222:9:81"},{"kind":"number","nativeSrc":"7233:2:81","nodeType":"YulLiteral","src":"7233:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7218:3:81","nodeType":"YulIdentifier","src":"7218:3:81"},"nativeSrc":"7218:18:81","nodeType":"YulFunctionCall","src":"7218:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7205:12:81","nodeType":"YulIdentifier","src":"7205:12:81"},"nativeSrc":"7205:32:81","nodeType":"YulFunctionCall","src":"7205:32:81"},"variables":[{"name":"value_1","nativeSrc":"7194:7:81","nodeType":"YulTypedName","src":"7194:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7268:7:81","nodeType":"YulIdentifier","src":"7268:7:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"7246:21:81","nodeType":"YulIdentifier","src":"7246:21:81"},"nativeSrc":"7246:30:81","nodeType":"YulFunctionCall","src":"7246:30:81"},"nativeSrc":"7246:30:81","nodeType":"YulExpressionStatement","src":"7246:30:81"},{"nativeSrc":"7285:17:81","nodeType":"YulAssignment","src":"7285:17:81","value":{"name":"value_1","nativeSrc":"7295:7:81","nodeType":"YulIdentifier","src":"7295:7:81"},"variableNames":[{"name":"value1","nativeSrc":"7285:6:81","nodeType":"YulIdentifier","src":"7285:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$9796t_bool","nativeSrc":"6899:409:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6958:9:81","nodeType":"YulTypedName","src":"6958:9:81","type":""},{"name":"dataEnd","nativeSrc":"6969:7:81","nodeType":"YulTypedName","src":"6969:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6981:6:81","nodeType":"YulTypedName","src":"6981:6:81","type":""},{"name":"value1","nativeSrc":"6989:6:81","nodeType":"YulTypedName","src":"6989:6:81","type":""}],"src":"6899:409:81"},{"body":{"nativeSrc":"7399:279:81","nodeType":"YulBlock","src":"7399:279:81","statements":[{"body":{"nativeSrc":"7445:16:81","nodeType":"YulBlock","src":"7445:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7454:1:81","nodeType":"YulLiteral","src":"7454:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7457:1:81","nodeType":"YulLiteral","src":"7457:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7447:6:81","nodeType":"YulIdentifier","src":"7447:6:81"},"nativeSrc":"7447:12:81","nodeType":"YulFunctionCall","src":"7447:12:81"},"nativeSrc":"7447:12:81","nodeType":"YulExpressionStatement","src":"7447:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7420:7:81","nodeType":"YulIdentifier","src":"7420:7:81"},{"name":"headStart","nativeSrc":"7429:9:81","nodeType":"YulIdentifier","src":"7429:9:81"}],"functionName":{"name":"sub","nativeSrc":"7416:3:81","nodeType":"YulIdentifier","src":"7416:3:81"},"nativeSrc":"7416:23:81","nodeType":"YulFunctionCall","src":"7416:23:81"},{"kind":"number","nativeSrc":"7441:2:81","nodeType":"YulLiteral","src":"7441:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7412:3:81","nodeType":"YulIdentifier","src":"7412:3:81"},"nativeSrc":"7412:32:81","nodeType":"YulFunctionCall","src":"7412:32:81"},"nativeSrc":"7409:52:81","nodeType":"YulIf","src":"7409:52:81"},{"nativeSrc":"7470:36:81","nodeType":"YulVariableDeclaration","src":"7470:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7496:9:81","nodeType":"YulIdentifier","src":"7496:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"7483:12:81","nodeType":"YulIdentifier","src":"7483:12:81"},"nativeSrc":"7483:23:81","nodeType":"YulFunctionCall","src":"7483:23:81"},"variables":[{"name":"value","nativeSrc":"7474:5:81","nodeType":"YulTypedName","src":"7474:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7539:5:81","nodeType":"YulIdentifier","src":"7539:5:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"7515:23:81","nodeType":"YulIdentifier","src":"7515:23:81"},"nativeSrc":"7515:30:81","nodeType":"YulFunctionCall","src":"7515:30:81"},"nativeSrc":"7515:30:81","nodeType":"YulExpressionStatement","src":"7515:30:81"},{"nativeSrc":"7554:15:81","nodeType":"YulAssignment","src":"7554:15:81","value":{"name":"value","nativeSrc":"7564:5:81","nodeType":"YulIdentifier","src":"7564:5:81"},"variableNames":[{"name":"value0","nativeSrc":"7554:6:81","nodeType":"YulIdentifier","src":"7554:6:81"}]},{"nativeSrc":"7578:16:81","nodeType":"YulVariableDeclaration","src":"7578:16:81","value":{"kind":"number","nativeSrc":"7593:1:81","nodeType":"YulLiteral","src":"7593:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7582:7:81","nodeType":"YulTypedName","src":"7582:7:81","type":""}]},{"nativeSrc":"7603:43:81","nodeType":"YulAssignment","src":"7603:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7631:9:81","nodeType":"YulIdentifier","src":"7631:9:81"},{"kind":"number","nativeSrc":"7642:2:81","nodeType":"YulLiteral","src":"7642:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7627:3:81","nodeType":"YulIdentifier","src":"7627:3:81"},"nativeSrc":"7627:18:81","nodeType":"YulFunctionCall","src":"7627:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7614:12:81","nodeType":"YulIdentifier","src":"7614:12:81"},"nativeSrc":"7614:32:81","nodeType":"YulFunctionCall","src":"7614:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"7603:7:81","nodeType":"YulIdentifier","src":"7603:7:81"}]},{"nativeSrc":"7655:17:81","nodeType":"YulAssignment","src":"7655:17:81","value":{"name":"value_1","nativeSrc":"7665:7:81","nodeType":"YulIdentifier","src":"7665:7:81"},"variableNames":[{"name":"value1","nativeSrc":"7655:6:81","nodeType":"YulIdentifier","src":"7655:6:81"}]}]},"name":"abi_decode_tuple_t_uint32t_uint256","nativeSrc":"7313:365:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7357:9:81","nodeType":"YulTypedName","src":"7357:9:81","type":""},{"name":"dataEnd","nativeSrc":"7368:7:81","nodeType":"YulTypedName","src":"7368:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7380:6:81","nodeType":"YulTypedName","src":"7380:6:81","type":""},{"name":"value1","nativeSrc":"7388:6:81","nodeType":"YulTypedName","src":"7388:6:81","type":""}],"src":"7313:365:81"},{"body":{"nativeSrc":"7782:93:81","nodeType":"YulBlock","src":"7782:93:81","statements":[{"nativeSrc":"7792:26:81","nodeType":"YulAssignment","src":"7792:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7804:9:81","nodeType":"YulIdentifier","src":"7804:9:81"},{"kind":"number","nativeSrc":"7815:2:81","nodeType":"YulLiteral","src":"7815:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7800:3:81","nodeType":"YulIdentifier","src":"7800:3:81"},"nativeSrc":"7800:18:81","nodeType":"YulFunctionCall","src":"7800:18:81"},"variableNames":[{"name":"tail","nativeSrc":"7792:4:81","nodeType":"YulIdentifier","src":"7792:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7834:9:81","nodeType":"YulIdentifier","src":"7834:9:81"},{"arguments":[{"name":"value0","nativeSrc":"7849:6:81","nodeType":"YulIdentifier","src":"7849:6:81"},{"kind":"number","nativeSrc":"7857:10:81","nodeType":"YulLiteral","src":"7857:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"7845:3:81","nodeType":"YulIdentifier","src":"7845:3:81"},"nativeSrc":"7845:23:81","nodeType":"YulFunctionCall","src":"7845:23:81"}],"functionName":{"name":"mstore","nativeSrc":"7827:6:81","nodeType":"YulIdentifier","src":"7827:6:81"},"nativeSrc":"7827:42:81","nodeType":"YulFunctionCall","src":"7827:42:81"},"nativeSrc":"7827:42:81","nodeType":"YulExpressionStatement","src":"7827:42:81"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"7683:192:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7751:9:81","nodeType":"YulTypedName","src":"7751:9:81","type":""},{"name":"value0","nativeSrc":"7762:6:81","nodeType":"YulTypedName","src":"7762:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7773:4:81","nodeType":"YulTypedName","src":"7773:4:81","type":""}],"src":"7683:192:81"},{"body":{"nativeSrc":"8016:672:81","nodeType":"YulBlock","src":"8016:672:81","statements":[{"body":{"nativeSrc":"8063:16:81","nodeType":"YulBlock","src":"8063:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8072:1:81","nodeType":"YulLiteral","src":"8072:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8075:1:81","nodeType":"YulLiteral","src":"8075:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8065:6:81","nodeType":"YulIdentifier","src":"8065:6:81"},"nativeSrc":"8065:12:81","nodeType":"YulFunctionCall","src":"8065:12:81"},"nativeSrc":"8065:12:81","nodeType":"YulExpressionStatement","src":"8065:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8037:7:81","nodeType":"YulIdentifier","src":"8037:7:81"},{"name":"headStart","nativeSrc":"8046:9:81","nodeType":"YulIdentifier","src":"8046:9:81"}],"functionName":{"name":"sub","nativeSrc":"8033:3:81","nodeType":"YulIdentifier","src":"8033:3:81"},"nativeSrc":"8033:23:81","nodeType":"YulFunctionCall","src":"8033:23:81"},{"kind":"number","nativeSrc":"8058:3:81","nodeType":"YulLiteral","src":"8058:3:81","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"8029:3:81","nodeType":"YulIdentifier","src":"8029:3:81"},"nativeSrc":"8029:33:81","nodeType":"YulFunctionCall","src":"8029:33:81"},"nativeSrc":"8026:53:81","nodeType":"YulIf","src":"8026:53:81"},{"nativeSrc":"8088:36:81","nodeType":"YulVariableDeclaration","src":"8088:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8114:9:81","nodeType":"YulIdentifier","src":"8114:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"8101:12:81","nodeType":"YulIdentifier","src":"8101:12:81"},"nativeSrc":"8101:23:81","nodeType":"YulFunctionCall","src":"8101:23:81"},"variables":[{"name":"value","nativeSrc":"8092:5:81","nodeType":"YulTypedName","src":"8092:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8168:5:81","nodeType":"YulIdentifier","src":"8168:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8133:34:81","nodeType":"YulIdentifier","src":"8133:34:81"},"nativeSrc":"8133:41:81","nodeType":"YulFunctionCall","src":"8133:41:81"},"nativeSrc":"8133:41:81","nodeType":"YulExpressionStatement","src":"8133:41:81"},{"nativeSrc":"8183:15:81","nodeType":"YulAssignment","src":"8183:15:81","value":{"name":"value","nativeSrc":"8193:5:81","nodeType":"YulIdentifier","src":"8193:5:81"},"variableNames":[{"name":"value0","nativeSrc":"8183:6:81","nodeType":"YulIdentifier","src":"8183:6:81"}]},{"nativeSrc":"8207:47:81","nodeType":"YulVariableDeclaration","src":"8207:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8239:9:81","nodeType":"YulIdentifier","src":"8239:9:81"},{"kind":"number","nativeSrc":"8250:2:81","nodeType":"YulLiteral","src":"8250:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8235:3:81","nodeType":"YulIdentifier","src":"8235:3:81"},"nativeSrc":"8235:18:81","nodeType":"YulFunctionCall","src":"8235:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"8222:12:81","nodeType":"YulIdentifier","src":"8222:12:81"},"nativeSrc":"8222:32:81","nodeType":"YulFunctionCall","src":"8222:32:81"},"variables":[{"name":"value_1","nativeSrc":"8211:7:81","nodeType":"YulTypedName","src":"8211:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8287:7:81","nodeType":"YulIdentifier","src":"8287:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"8263:23:81","nodeType":"YulIdentifier","src":"8263:23:81"},"nativeSrc":"8263:32:81","nodeType":"YulFunctionCall","src":"8263:32:81"},"nativeSrc":"8263:32:81","nodeType":"YulExpressionStatement","src":"8263:32:81"},{"nativeSrc":"8304:17:81","nodeType":"YulAssignment","src":"8304:17:81","value":{"name":"value_1","nativeSrc":"8314:7:81","nodeType":"YulIdentifier","src":"8314:7:81"},"variableNames":[{"name":"value1","nativeSrc":"8304:6:81","nodeType":"YulIdentifier","src":"8304:6:81"}]},{"nativeSrc":"8330:47:81","nodeType":"YulVariableDeclaration","src":"8330:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8362:9:81","nodeType":"YulIdentifier","src":"8362:9:81"},{"kind":"number","nativeSrc":"8373:2:81","nodeType":"YulLiteral","src":"8373:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8358:3:81","nodeType":"YulIdentifier","src":"8358:3:81"},"nativeSrc":"8358:18:81","nodeType":"YulFunctionCall","src":"8358:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"8345:12:81","nodeType":"YulIdentifier","src":"8345:12:81"},"nativeSrc":"8345:32:81","nodeType":"YulFunctionCall","src":"8345:32:81"},"variables":[{"name":"value_2","nativeSrc":"8334:7:81","nodeType":"YulTypedName","src":"8334:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"8410:7:81","nodeType":"YulIdentifier","src":"8410:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"8386:23:81","nodeType":"YulIdentifier","src":"8386:23:81"},"nativeSrc":"8386:32:81","nodeType":"YulFunctionCall","src":"8386:32:81"},"nativeSrc":"8386:32:81","nodeType":"YulExpressionStatement","src":"8386:32:81"},{"nativeSrc":"8427:17:81","nodeType":"YulAssignment","src":"8427:17:81","value":{"name":"value_2","nativeSrc":"8437:7:81","nodeType":"YulIdentifier","src":"8437:7:81"},"variableNames":[{"name":"value2","nativeSrc":"8427:6:81","nodeType":"YulIdentifier","src":"8427:6:81"}]},{"nativeSrc":"8453:16:81","nodeType":"YulVariableDeclaration","src":"8453:16:81","value":{"kind":"number","nativeSrc":"8468:1:81","nodeType":"YulLiteral","src":"8468:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"8457:7:81","nodeType":"YulTypedName","src":"8457:7:81","type":""}]},{"nativeSrc":"8478:43:81","nodeType":"YulAssignment","src":"8478:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8506:9:81","nodeType":"YulIdentifier","src":"8506:9:81"},{"kind":"number","nativeSrc":"8517:2:81","nodeType":"YulLiteral","src":"8517:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8502:3:81","nodeType":"YulIdentifier","src":"8502:3:81"},"nativeSrc":"8502:18:81","nodeType":"YulFunctionCall","src":"8502:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"8489:12:81","nodeType":"YulIdentifier","src":"8489:12:81"},"nativeSrc":"8489:32:81","nodeType":"YulFunctionCall","src":"8489:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"8478:7:81","nodeType":"YulIdentifier","src":"8478:7:81"}]},{"nativeSrc":"8530:17:81","nodeType":"YulAssignment","src":"8530:17:81","value":{"name":"value_3","nativeSrc":"8540:7:81","nodeType":"YulIdentifier","src":"8540:7:81"},"variableNames":[{"name":"value3","nativeSrc":"8530:6:81","nodeType":"YulIdentifier","src":"8530:6:81"}]},{"nativeSrc":"8556:48:81","nodeType":"YulVariableDeclaration","src":"8556:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8588:9:81","nodeType":"YulIdentifier","src":"8588:9:81"},{"kind":"number","nativeSrc":"8599:3:81","nodeType":"YulLiteral","src":"8599:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8584:3:81","nodeType":"YulIdentifier","src":"8584:3:81"},"nativeSrc":"8584:19:81","nodeType":"YulFunctionCall","src":"8584:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"8571:12:81","nodeType":"YulIdentifier","src":"8571:12:81"},"nativeSrc":"8571:33:81","nodeType":"YulFunctionCall","src":"8571:33:81"},"variables":[{"name":"value_4","nativeSrc":"8560:7:81","nodeType":"YulTypedName","src":"8560:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"8648:7:81","nodeType":"YulIdentifier","src":"8648:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8613:34:81","nodeType":"YulIdentifier","src":"8613:34:81"},"nativeSrc":"8613:43:81","nodeType":"YulFunctionCall","src":"8613:43:81"},"nativeSrc":"8613:43:81","nodeType":"YulExpressionStatement","src":"8613:43:81"},{"nativeSrc":"8665:17:81","nodeType":"YulAssignment","src":"8665:17:81","value":{"name":"value_4","nativeSrc":"8675:7:81","nodeType":"YulIdentifier","src":"8675:7:81"},"variableNames":[{"name":"value4","nativeSrc":"8665:6:81","nodeType":"YulIdentifier","src":"8665:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address","nativeSrc":"7880:808:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7950:9:81","nodeType":"YulTypedName","src":"7950:9:81","type":""},{"name":"dataEnd","nativeSrc":"7961:7:81","nodeType":"YulTypedName","src":"7961:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7973:6:81","nodeType":"YulTypedName","src":"7973:6:81","type":""},{"name":"value1","nativeSrc":"7981:6:81","nodeType":"YulTypedName","src":"7981:6:81","type":""},{"name":"value2","nativeSrc":"7989:6:81","nodeType":"YulTypedName","src":"7989:6:81","type":""},{"name":"value3","nativeSrc":"7997:6:81","nodeType":"YulTypedName","src":"7997:6:81","type":""},{"name":"value4","nativeSrc":"8005:6:81","nodeType":"YulTypedName","src":"8005:6:81","type":""}],"src":"7880:808:81"},{"body":{"nativeSrc":"8797:424:81","nodeType":"YulBlock","src":"8797:424:81","statements":[{"body":{"nativeSrc":"8843:16:81","nodeType":"YulBlock","src":"8843:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8852:1:81","nodeType":"YulLiteral","src":"8852:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8855:1:81","nodeType":"YulLiteral","src":"8855:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8845:6:81","nodeType":"YulIdentifier","src":"8845:6:81"},"nativeSrc":"8845:12:81","nodeType":"YulFunctionCall","src":"8845:12:81"},"nativeSrc":"8845:12:81","nodeType":"YulExpressionStatement","src":"8845:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8818:7:81","nodeType":"YulIdentifier","src":"8818:7:81"},{"name":"headStart","nativeSrc":"8827:9:81","nodeType":"YulIdentifier","src":"8827:9:81"}],"functionName":{"name":"sub","nativeSrc":"8814:3:81","nodeType":"YulIdentifier","src":"8814:3:81"},"nativeSrc":"8814:23:81","nodeType":"YulFunctionCall","src":"8814:23:81"},{"kind":"number","nativeSrc":"8839:2:81","nodeType":"YulLiteral","src":"8839:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"8810:3:81","nodeType":"YulIdentifier","src":"8810:3:81"},"nativeSrc":"8810:32:81","nodeType":"YulFunctionCall","src":"8810:32:81"},"nativeSrc":"8807:52:81","nodeType":"YulIf","src":"8807:52:81"},{"nativeSrc":"8868:36:81","nodeType":"YulVariableDeclaration","src":"8868:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8894:9:81","nodeType":"YulIdentifier","src":"8894:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"8881:12:81","nodeType":"YulIdentifier","src":"8881:12:81"},"nativeSrc":"8881:23:81","nodeType":"YulFunctionCall","src":"8881:23:81"},"variables":[{"name":"value","nativeSrc":"8872:5:81","nodeType":"YulTypedName","src":"8872:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8948:5:81","nodeType":"YulIdentifier","src":"8948:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8913:34:81","nodeType":"YulIdentifier","src":"8913:34:81"},"nativeSrc":"8913:41:81","nodeType":"YulFunctionCall","src":"8913:41:81"},"nativeSrc":"8913:41:81","nodeType":"YulExpressionStatement","src":"8913:41:81"},{"nativeSrc":"8963:15:81","nodeType":"YulAssignment","src":"8963:15:81","value":{"name":"value","nativeSrc":"8973:5:81","nodeType":"YulIdentifier","src":"8973:5:81"},"variableNames":[{"name":"value0","nativeSrc":"8963:6:81","nodeType":"YulIdentifier","src":"8963:6:81"}]},{"nativeSrc":"8987:47:81","nodeType":"YulVariableDeclaration","src":"8987:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9019:9:81","nodeType":"YulIdentifier","src":"9019:9:81"},{"kind":"number","nativeSrc":"9030:2:81","nodeType":"YulLiteral","src":"9030:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9015:3:81","nodeType":"YulIdentifier","src":"9015:3:81"},"nativeSrc":"9015:18:81","nodeType":"YulFunctionCall","src":"9015:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"9002:12:81","nodeType":"YulIdentifier","src":"9002:12:81"},"nativeSrc":"9002:32:81","nodeType":"YulFunctionCall","src":"9002:32:81"},"variables":[{"name":"value_1","nativeSrc":"8991:7:81","nodeType":"YulTypedName","src":"8991:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9078:7:81","nodeType":"YulIdentifier","src":"9078:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9043:34:81","nodeType":"YulIdentifier","src":"9043:34:81"},"nativeSrc":"9043:43:81","nodeType":"YulFunctionCall","src":"9043:43:81"},"nativeSrc":"9043:43:81","nodeType":"YulExpressionStatement","src":"9043:43:81"},{"nativeSrc":"9095:17:81","nodeType":"YulAssignment","src":"9095:17:81","value":{"name":"value_1","nativeSrc":"9105:7:81","nodeType":"YulIdentifier","src":"9105:7:81"},"variableNames":[{"name":"value1","nativeSrc":"9095:6:81","nodeType":"YulIdentifier","src":"9095:6:81"}]},{"nativeSrc":"9121:16:81","nodeType":"YulVariableDeclaration","src":"9121:16:81","value":{"kind":"number","nativeSrc":"9136:1:81","nodeType":"YulLiteral","src":"9136:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9125:7:81","nodeType":"YulTypedName","src":"9125:7:81","type":""}]},{"nativeSrc":"9146:43:81","nodeType":"YulAssignment","src":"9146:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9174:9:81","nodeType":"YulIdentifier","src":"9174:9:81"},{"kind":"number","nativeSrc":"9185:2:81","nodeType":"YulLiteral","src":"9185:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9170:3:81","nodeType":"YulIdentifier","src":"9170:3:81"},"nativeSrc":"9170:18:81","nodeType":"YulFunctionCall","src":"9170:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"9157:12:81","nodeType":"YulIdentifier","src":"9157:12:81"},"nativeSrc":"9157:32:81","nodeType":"YulFunctionCall","src":"9157:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"9146:7:81","nodeType":"YulIdentifier","src":"9146:7:81"}]},{"nativeSrc":"9198:17:81","nodeType":"YulAssignment","src":"9198:17:81","value":{"name":"value_2","nativeSrc":"9208:7:81","nodeType":"YulIdentifier","src":"9208:7:81"},"variableNames":[{"name":"value2","nativeSrc":"9198:6:81","nodeType":"YulIdentifier","src":"9198:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"8693:528:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8747:9:81","nodeType":"YulTypedName","src":"8747:9:81","type":""},{"name":"dataEnd","nativeSrc":"8758:7:81","nodeType":"YulTypedName","src":"8758:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8770:6:81","nodeType":"YulTypedName","src":"8770:6:81","type":""},{"name":"value1","nativeSrc":"8778:6:81","nodeType":"YulTypedName","src":"8778:6:81","type":""},{"name":"value2","nativeSrc":"8786:6:81","nodeType":"YulTypedName","src":"8786:6:81","type":""}],"src":"8693:528:81"},{"body":{"nativeSrc":"9327:102:81","nodeType":"YulBlock","src":"9327:102:81","statements":[{"nativeSrc":"9337:26:81","nodeType":"YulAssignment","src":"9337:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9349:9:81","nodeType":"YulIdentifier","src":"9349:9:81"},{"kind":"number","nativeSrc":"9360:2:81","nodeType":"YulLiteral","src":"9360:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9345:3:81","nodeType":"YulIdentifier","src":"9345:3:81"},"nativeSrc":"9345:18:81","nodeType":"YulFunctionCall","src":"9345:18:81"},"variableNames":[{"name":"tail","nativeSrc":"9337:4:81","nodeType":"YulIdentifier","src":"9337:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9379:9:81","nodeType":"YulIdentifier","src":"9379:9:81"},{"arguments":[{"name":"value0","nativeSrc":"9394:6:81","nodeType":"YulIdentifier","src":"9394:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9410:3:81","nodeType":"YulLiteral","src":"9410:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"9415:1:81","nodeType":"YulLiteral","src":"9415:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9406:3:81","nodeType":"YulIdentifier","src":"9406:3:81"},"nativeSrc":"9406:11:81","nodeType":"YulFunctionCall","src":"9406:11:81"},{"kind":"number","nativeSrc":"9419:1:81","nodeType":"YulLiteral","src":"9419:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9402:3:81","nodeType":"YulIdentifier","src":"9402:3:81"},"nativeSrc":"9402:19:81","nodeType":"YulFunctionCall","src":"9402:19:81"}],"functionName":{"name":"and","nativeSrc":"9390:3:81","nodeType":"YulIdentifier","src":"9390:3:81"},"nativeSrc":"9390:32:81","nodeType":"YulFunctionCall","src":"9390:32:81"}],"functionName":{"name":"mstore","nativeSrc":"9372:6:81","nodeType":"YulIdentifier","src":"9372:6:81"},"nativeSrc":"9372:51:81","nodeType":"YulFunctionCall","src":"9372:51:81"},"nativeSrc":"9372:51:81","nodeType":"YulExpressionStatement","src":"9372:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"9226:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9296:9:81","nodeType":"YulTypedName","src":"9296:9:81","type":""},{"name":"value0","nativeSrc":"9307:6:81","nodeType":"YulTypedName","src":"9307:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9318:4:81","nodeType":"YulTypedName","src":"9318:4:81","type":""}],"src":"9226:203:81"},{"body":{"nativeSrc":"9531:87:81","nodeType":"YulBlock","src":"9531:87:81","statements":[{"nativeSrc":"9541:26:81","nodeType":"YulAssignment","src":"9541:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9553:9:81","nodeType":"YulIdentifier","src":"9553:9:81"},{"kind":"number","nativeSrc":"9564:2:81","nodeType":"YulLiteral","src":"9564:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9549:3:81","nodeType":"YulIdentifier","src":"9549:3:81"},"nativeSrc":"9549:18:81","nodeType":"YulFunctionCall","src":"9549:18:81"},"variableNames":[{"name":"tail","nativeSrc":"9541:4:81","nodeType":"YulIdentifier","src":"9541:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9583:9:81","nodeType":"YulIdentifier","src":"9583:9:81"},{"arguments":[{"name":"value0","nativeSrc":"9598:6:81","nodeType":"YulIdentifier","src":"9598:6:81"},{"kind":"number","nativeSrc":"9606:4:81","nodeType":"YulLiteral","src":"9606:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9594:3:81","nodeType":"YulIdentifier","src":"9594:3:81"},"nativeSrc":"9594:17:81","nodeType":"YulFunctionCall","src":"9594:17:81"}],"functionName":{"name":"mstore","nativeSrc":"9576:6:81","nodeType":"YulIdentifier","src":"9576:6:81"},"nativeSrc":"9576:36:81","nodeType":"YulFunctionCall","src":"9576:36:81"},"nativeSrc":"9576:36:81","nodeType":"YulExpressionStatement","src":"9576:36:81"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"9434:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9500:9:81","nodeType":"YulTypedName","src":"9500:9:81","type":""},{"name":"value0","nativeSrc":"9511:6:81","nodeType":"YulTypedName","src":"9511:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9522:4:81","nodeType":"YulTypedName","src":"9522:4:81","type":""}],"src":"9434:184:81"},{"body":{"nativeSrc":"9741:546:81","nodeType":"YulBlock","src":"9741:546:81","statements":[{"body":{"nativeSrc":"9788:16:81","nodeType":"YulBlock","src":"9788:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9797:1:81","nodeType":"YulLiteral","src":"9797:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9800:1:81","nodeType":"YulLiteral","src":"9800:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9790:6:81","nodeType":"YulIdentifier","src":"9790:6:81"},"nativeSrc":"9790:12:81","nodeType":"YulFunctionCall","src":"9790:12:81"},"nativeSrc":"9790:12:81","nodeType":"YulExpressionStatement","src":"9790:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9762:7:81","nodeType":"YulIdentifier","src":"9762:7:81"},{"name":"headStart","nativeSrc":"9771:9:81","nodeType":"YulIdentifier","src":"9771:9:81"}],"functionName":{"name":"sub","nativeSrc":"9758:3:81","nodeType":"YulIdentifier","src":"9758:3:81"},"nativeSrc":"9758:23:81","nodeType":"YulFunctionCall","src":"9758:23:81"},{"kind":"number","nativeSrc":"9783:3:81","nodeType":"YulLiteral","src":"9783:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"9754:3:81","nodeType":"YulIdentifier","src":"9754:3:81"},"nativeSrc":"9754:33:81","nodeType":"YulFunctionCall","src":"9754:33:81"},"nativeSrc":"9751:53:81","nodeType":"YulIf","src":"9751:53:81"},{"nativeSrc":"9813:36:81","nodeType":"YulVariableDeclaration","src":"9813:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9839:9:81","nodeType":"YulIdentifier","src":"9839:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"9826:12:81","nodeType":"YulIdentifier","src":"9826:12:81"},"nativeSrc":"9826:23:81","nodeType":"YulFunctionCall","src":"9826:23:81"},"variables":[{"name":"value","nativeSrc":"9817:5:81","nodeType":"YulTypedName","src":"9817:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9893:5:81","nodeType":"YulIdentifier","src":"9893:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9858:34:81","nodeType":"YulIdentifier","src":"9858:34:81"},"nativeSrc":"9858:41:81","nodeType":"YulFunctionCall","src":"9858:41:81"},"nativeSrc":"9858:41:81","nodeType":"YulExpressionStatement","src":"9858:41:81"},{"nativeSrc":"9908:15:81","nodeType":"YulAssignment","src":"9908:15:81","value":{"name":"value","nativeSrc":"9918:5:81","nodeType":"YulIdentifier","src":"9918:5:81"},"variableNames":[{"name":"value0","nativeSrc":"9908:6:81","nodeType":"YulIdentifier","src":"9908:6:81"}]},{"nativeSrc":"9932:47:81","nodeType":"YulVariableDeclaration","src":"9932:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9964:9:81","nodeType":"YulIdentifier","src":"9964:9:81"},{"kind":"number","nativeSrc":"9975:2:81","nodeType":"YulLiteral","src":"9975:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9960:3:81","nodeType":"YulIdentifier","src":"9960:3:81"},"nativeSrc":"9960:18:81","nodeType":"YulFunctionCall","src":"9960:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"9947:12:81","nodeType":"YulIdentifier","src":"9947:12:81"},"nativeSrc":"9947:32:81","nodeType":"YulFunctionCall","src":"9947:32:81"},"variables":[{"name":"value_1","nativeSrc":"9936:7:81","nodeType":"YulTypedName","src":"9936:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10023:7:81","nodeType":"YulIdentifier","src":"10023:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9988:34:81","nodeType":"YulIdentifier","src":"9988:34:81"},"nativeSrc":"9988:43:81","nodeType":"YulFunctionCall","src":"9988:43:81"},"nativeSrc":"9988:43:81","nodeType":"YulExpressionStatement","src":"9988:43:81"},{"nativeSrc":"10040:17:81","nodeType":"YulAssignment","src":"10040:17:81","value":{"name":"value_1","nativeSrc":"10050:7:81","nodeType":"YulIdentifier","src":"10050:7:81"},"variableNames":[{"name":"value1","nativeSrc":"10040:6:81","nodeType":"YulIdentifier","src":"10040:6:81"}]},{"nativeSrc":"10066:16:81","nodeType":"YulVariableDeclaration","src":"10066:16:81","value":{"kind":"number","nativeSrc":"10081:1:81","nodeType":"YulLiteral","src":"10081:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10070:7:81","nodeType":"YulTypedName","src":"10070:7:81","type":""}]},{"nativeSrc":"10091:43:81","nodeType":"YulAssignment","src":"10091:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10119:9:81","nodeType":"YulIdentifier","src":"10119:9:81"},{"kind":"number","nativeSrc":"10130:2:81","nodeType":"YulLiteral","src":"10130:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10115:3:81","nodeType":"YulIdentifier","src":"10115:3:81"},"nativeSrc":"10115:18:81","nodeType":"YulFunctionCall","src":"10115:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"10102:12:81","nodeType":"YulIdentifier","src":"10102:12:81"},"nativeSrc":"10102:32:81","nodeType":"YulFunctionCall","src":"10102:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"10091:7:81","nodeType":"YulIdentifier","src":"10091:7:81"}]},{"nativeSrc":"10143:17:81","nodeType":"YulAssignment","src":"10143:17:81","value":{"name":"value_2","nativeSrc":"10153:7:81","nodeType":"YulIdentifier","src":"10153:7:81"},"variableNames":[{"name":"value2","nativeSrc":"10143:6:81","nodeType":"YulIdentifier","src":"10143:6:81"}]},{"nativeSrc":"10169:47:81","nodeType":"YulVariableDeclaration","src":"10169:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10201:9:81","nodeType":"YulIdentifier","src":"10201:9:81"},{"kind":"number","nativeSrc":"10212:2:81","nodeType":"YulLiteral","src":"10212:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10197:3:81","nodeType":"YulIdentifier","src":"10197:3:81"},"nativeSrc":"10197:18:81","nodeType":"YulFunctionCall","src":"10197:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"10184:12:81","nodeType":"YulIdentifier","src":"10184:12:81"},"nativeSrc":"10184:32:81","nodeType":"YulFunctionCall","src":"10184:32:81"},"variables":[{"name":"value_3","nativeSrc":"10173:7:81","nodeType":"YulTypedName","src":"10173:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"10247:7:81","nodeType":"YulIdentifier","src":"10247:7:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"10225:21:81","nodeType":"YulIdentifier","src":"10225:21:81"},"nativeSrc":"10225:30:81","nodeType":"YulFunctionCall","src":"10225:30:81"},"nativeSrc":"10225:30:81","nodeType":"YulExpressionStatement","src":"10225:30:81"},{"nativeSrc":"10264:17:81","nodeType":"YulAssignment","src":"10264:17:81","value":{"name":"value_3","nativeSrc":"10274:7:81","nodeType":"YulIdentifier","src":"10274:7:81"},"variableNames":[{"name":"value3","nativeSrc":"10264:6:81","nodeType":"YulIdentifier","src":"10264:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bool","nativeSrc":"9623:664:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9683:9:81","nodeType":"YulTypedName","src":"9683:9:81","type":""},{"name":"dataEnd","nativeSrc":"9694:7:81","nodeType":"YulTypedName","src":"9694:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9706:6:81","nodeType":"YulTypedName","src":"9706:6:81","type":""},{"name":"value1","nativeSrc":"9714:6:81","nodeType":"YulTypedName","src":"9714:6:81","type":""},{"name":"value2","nativeSrc":"9722:6:81","nodeType":"YulTypedName","src":"9722:6:81","type":""},{"name":"value3","nativeSrc":"9730:6:81","nodeType":"YulTypedName","src":"9730:6:81","type":""}],"src":"9623:664:81"},{"body":{"nativeSrc":"10411:99:81","nodeType":"YulBlock","src":"10411:99:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10428:9:81","nodeType":"YulIdentifier","src":"10428:9:81"},{"kind":"number","nativeSrc":"10439:2:81","nodeType":"YulLiteral","src":"10439:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"10421:6:81","nodeType":"YulIdentifier","src":"10421:6:81"},"nativeSrc":"10421:21:81","nodeType":"YulFunctionCall","src":"10421:21:81"},"nativeSrc":"10421:21:81","nodeType":"YulExpressionStatement","src":"10421:21:81"},{"nativeSrc":"10451:53:81","nodeType":"YulAssignment","src":"10451:53:81","value":{"arguments":[{"name":"value0","nativeSrc":"10477:6:81","nodeType":"YulIdentifier","src":"10477:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"10489:9:81","nodeType":"YulIdentifier","src":"10489:9:81"},{"kind":"number","nativeSrc":"10500:2:81","nodeType":"YulLiteral","src":"10500:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10485:3:81","nodeType":"YulIdentifier","src":"10485:3:81"},"nativeSrc":"10485:18:81","nodeType":"YulFunctionCall","src":"10485:18:81"}],"functionName":{"name":"abi_encode_string","nativeSrc":"10459:17:81","nodeType":"YulIdentifier","src":"10459:17:81"},"nativeSrc":"10459:45:81","nodeType":"YulFunctionCall","src":"10459:45:81"},"variableNames":[{"name":"tail","nativeSrc":"10451:4:81","nodeType":"YulIdentifier","src":"10451:4:81"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"10292:218:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10380:9:81","nodeType":"YulTypedName","src":"10380:9:81","type":""},{"name":"value0","nativeSrc":"10391:6:81","nodeType":"YulTypedName","src":"10391:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10402:4:81","nodeType":"YulTypedName","src":"10402:4:81","type":""}],"src":"10292:218:81"},{"body":{"nativeSrc":"10621:448:81","nodeType":"YulBlock","src":"10621:448:81","statements":[{"body":{"nativeSrc":"10667:16:81","nodeType":"YulBlock","src":"10667:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10676:1:81","nodeType":"YulLiteral","src":"10676:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10679:1:81","nodeType":"YulLiteral","src":"10679:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10669:6:81","nodeType":"YulIdentifier","src":"10669:6:81"},"nativeSrc":"10669:12:81","nodeType":"YulFunctionCall","src":"10669:12:81"},"nativeSrc":"10669:12:81","nodeType":"YulExpressionStatement","src":"10669:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10642:7:81","nodeType":"YulIdentifier","src":"10642:7:81"},{"name":"headStart","nativeSrc":"10651:9:81","nodeType":"YulIdentifier","src":"10651:9:81"}],"functionName":{"name":"sub","nativeSrc":"10638:3:81","nodeType":"YulIdentifier","src":"10638:3:81"},"nativeSrc":"10638:23:81","nodeType":"YulFunctionCall","src":"10638:23:81"},{"kind":"number","nativeSrc":"10663:2:81","nodeType":"YulLiteral","src":"10663:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10634:3:81","nodeType":"YulIdentifier","src":"10634:3:81"},"nativeSrc":"10634:32:81","nodeType":"YulFunctionCall","src":"10634:32:81"},"nativeSrc":"10631:52:81","nodeType":"YulIf","src":"10631:52:81"},{"nativeSrc":"10692:36:81","nodeType":"YulVariableDeclaration","src":"10692:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10718:9:81","nodeType":"YulIdentifier","src":"10718:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"10705:12:81","nodeType":"YulIdentifier","src":"10705:12:81"},"nativeSrc":"10705:23:81","nodeType":"YulFunctionCall","src":"10705:23:81"},"variables":[{"name":"value","nativeSrc":"10696:5:81","nodeType":"YulTypedName","src":"10696:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10772:5:81","nodeType":"YulIdentifier","src":"10772:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"10737:34:81","nodeType":"YulIdentifier","src":"10737:34:81"},"nativeSrc":"10737:41:81","nodeType":"YulFunctionCall","src":"10737:41:81"},"nativeSrc":"10737:41:81","nodeType":"YulExpressionStatement","src":"10737:41:81"},{"nativeSrc":"10787:15:81","nodeType":"YulAssignment","src":"10787:15:81","value":{"name":"value","nativeSrc":"10797:5:81","nodeType":"YulIdentifier","src":"10797:5:81"},"variableNames":[{"name":"value0","nativeSrc":"10787:6:81","nodeType":"YulIdentifier","src":"10787:6:81"}]},{"nativeSrc":"10811:46:81","nodeType":"YulVariableDeclaration","src":"10811:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10842:9:81","nodeType":"YulIdentifier","src":"10842:9:81"},{"kind":"number","nativeSrc":"10853:2:81","nodeType":"YulLiteral","src":"10853:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10838:3:81","nodeType":"YulIdentifier","src":"10838:3:81"},"nativeSrc":"10838:18:81","nodeType":"YulFunctionCall","src":"10838:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"10825:12:81","nodeType":"YulIdentifier","src":"10825:12:81"},"nativeSrc":"10825:32:81","nodeType":"YulFunctionCall","src":"10825:32:81"},"variables":[{"name":"offset","nativeSrc":"10815:6:81","nodeType":"YulTypedName","src":"10815:6:81","type":""}]},{"body":{"nativeSrc":"10900:16:81","nodeType":"YulBlock","src":"10900:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10909:1:81","nodeType":"YulLiteral","src":"10909:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10912:1:81","nodeType":"YulLiteral","src":"10912:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10902:6:81","nodeType":"YulIdentifier","src":"10902:6:81"},"nativeSrc":"10902:12:81","nodeType":"YulFunctionCall","src":"10902:12:81"},"nativeSrc":"10902:12:81","nodeType":"YulExpressionStatement","src":"10902:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10872:6:81","nodeType":"YulIdentifier","src":"10872:6:81"},{"kind":"number","nativeSrc":"10880:18:81","nodeType":"YulLiteral","src":"10880:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10869:2:81","nodeType":"YulIdentifier","src":"10869:2:81"},"nativeSrc":"10869:30:81","nodeType":"YulFunctionCall","src":"10869:30:81"},"nativeSrc":"10866:50:81","nodeType":"YulIf","src":"10866:50:81"},{"nativeSrc":"10925:84:81","nodeType":"YulVariableDeclaration","src":"10925:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10981:9:81","nodeType":"YulIdentifier","src":"10981:9:81"},{"name":"offset","nativeSrc":"10992:6:81","nodeType":"YulIdentifier","src":"10992:6:81"}],"functionName":{"name":"add","nativeSrc":"10977:3:81","nodeType":"YulIdentifier","src":"10977:3:81"},"nativeSrc":"10977:22:81","nodeType":"YulFunctionCall","src":"10977:22:81"},{"name":"dataEnd","nativeSrc":"11001:7:81","nodeType":"YulIdentifier","src":"11001:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"10951:25:81","nodeType":"YulIdentifier","src":"10951:25:81"},"nativeSrc":"10951:58:81","nodeType":"YulFunctionCall","src":"10951:58:81"},"variables":[{"name":"value1_1","nativeSrc":"10929:8:81","nodeType":"YulTypedName","src":"10929:8:81","type":""},{"name":"value2_1","nativeSrc":"10939:8:81","nodeType":"YulTypedName","src":"10939:8:81","type":""}]},{"nativeSrc":"11018:18:81","nodeType":"YulAssignment","src":"11018:18:81","value":{"name":"value1_1","nativeSrc":"11028:8:81","nodeType":"YulIdentifier","src":"11028:8:81"},"variableNames":[{"name":"value1","nativeSrc":"11018:6:81","nodeType":"YulIdentifier","src":"11018:6:81"}]},{"nativeSrc":"11045:18:81","nodeType":"YulAssignment","src":"11045:18:81","value":{"name":"value2_1","nativeSrc":"11055:8:81","nodeType":"YulIdentifier","src":"11055:8:81"},"variableNames":[{"name":"value2","nativeSrc":"11045:6:81","nodeType":"YulIdentifier","src":"11045:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"10515:554:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10571:9:81","nodeType":"YulTypedName","src":"10571:9:81","type":""},{"name":"dataEnd","nativeSrc":"10582:7:81","nodeType":"YulTypedName","src":"10582:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10594:6:81","nodeType":"YulTypedName","src":"10594:6:81","type":""},{"name":"value1","nativeSrc":"10602:6:81","nodeType":"YulTypedName","src":"10602:6:81","type":""},{"name":"value2","nativeSrc":"10610:6:81","nodeType":"YulTypedName","src":"10610:6:81","type":""}],"src":"10515:554:81"},{"body":{"nativeSrc":"11196:102:81","nodeType":"YulBlock","src":"11196:102:81","statements":[{"nativeSrc":"11206:26:81","nodeType":"YulAssignment","src":"11206:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11218:9:81","nodeType":"YulIdentifier","src":"11218:9:81"},{"kind":"number","nativeSrc":"11229:2:81","nodeType":"YulLiteral","src":"11229:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11214:3:81","nodeType":"YulIdentifier","src":"11214:3:81"},"nativeSrc":"11214:18:81","nodeType":"YulFunctionCall","src":"11214:18:81"},"variableNames":[{"name":"tail","nativeSrc":"11206:4:81","nodeType":"YulIdentifier","src":"11206:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11248:9:81","nodeType":"YulIdentifier","src":"11248:9:81"},{"arguments":[{"name":"value0","nativeSrc":"11263:6:81","nodeType":"YulIdentifier","src":"11263:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11279:3:81","nodeType":"YulLiteral","src":"11279:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"11284:1:81","nodeType":"YulLiteral","src":"11284:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11275:3:81","nodeType":"YulIdentifier","src":"11275:3:81"},"nativeSrc":"11275:11:81","nodeType":"YulFunctionCall","src":"11275:11:81"},{"kind":"number","nativeSrc":"11288:1:81","nodeType":"YulLiteral","src":"11288:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11271:3:81","nodeType":"YulIdentifier","src":"11271:3:81"},"nativeSrc":"11271:19:81","nodeType":"YulFunctionCall","src":"11271:19:81"}],"functionName":{"name":"and","nativeSrc":"11259:3:81","nodeType":"YulIdentifier","src":"11259:3:81"},"nativeSrc":"11259:32:81","nodeType":"YulFunctionCall","src":"11259:32:81"}],"functionName":{"name":"mstore","nativeSrc":"11241:6:81","nodeType":"YulIdentifier","src":"11241:6:81"},"nativeSrc":"11241:51:81","nodeType":"YulFunctionCall","src":"11241:51:81"},"nativeSrc":"11241:51:81","nodeType":"YulExpressionStatement","src":"11241:51:81"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$25555__to_t_address__fromStack_reversed","nativeSrc":"11074:224:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11165:9:81","nodeType":"YulTypedName","src":"11165:9:81","type":""},{"name":"value0","nativeSrc":"11176:6:81","nodeType":"YulTypedName","src":"11176:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11187:4:81","nodeType":"YulTypedName","src":"11187:4:81","type":""}],"src":"11074:224:81"},{"body":{"nativeSrc":"11405:433:81","nodeType":"YulBlock","src":"11405:433:81","statements":[{"body":{"nativeSrc":"11451:16:81","nodeType":"YulBlock","src":"11451:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11460:1:81","nodeType":"YulLiteral","src":"11460:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11463:1:81","nodeType":"YulLiteral","src":"11463:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11453:6:81","nodeType":"YulIdentifier","src":"11453:6:81"},"nativeSrc":"11453:12:81","nodeType":"YulFunctionCall","src":"11453:12:81"},"nativeSrc":"11453:12:81","nodeType":"YulExpressionStatement","src":"11453:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11426:7:81","nodeType":"YulIdentifier","src":"11426:7:81"},{"name":"headStart","nativeSrc":"11435:9:81","nodeType":"YulIdentifier","src":"11435:9:81"}],"functionName":{"name":"sub","nativeSrc":"11422:3:81","nodeType":"YulIdentifier","src":"11422:3:81"},"nativeSrc":"11422:23:81","nodeType":"YulFunctionCall","src":"11422:23:81"},{"kind":"number","nativeSrc":"11447:2:81","nodeType":"YulLiteral","src":"11447:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"11418:3:81","nodeType":"YulIdentifier","src":"11418:3:81"},"nativeSrc":"11418:32:81","nodeType":"YulFunctionCall","src":"11418:32:81"},"nativeSrc":"11415:52:81","nodeType":"YulIf","src":"11415:52:81"},{"nativeSrc":"11476:36:81","nodeType":"YulVariableDeclaration","src":"11476:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11502:9:81","nodeType":"YulIdentifier","src":"11502:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"11489:12:81","nodeType":"YulIdentifier","src":"11489:12:81"},"nativeSrc":"11489:23:81","nodeType":"YulFunctionCall","src":"11489:23:81"},"variables":[{"name":"value","nativeSrc":"11480:5:81","nodeType":"YulTypedName","src":"11480:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11556:5:81","nodeType":"YulIdentifier","src":"11556:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11521:34:81","nodeType":"YulIdentifier","src":"11521:34:81"},"nativeSrc":"11521:41:81","nodeType":"YulFunctionCall","src":"11521:41:81"},"nativeSrc":"11521:41:81","nodeType":"YulExpressionStatement","src":"11521:41:81"},{"nativeSrc":"11571:15:81","nodeType":"YulAssignment","src":"11571:15:81","value":{"name":"value","nativeSrc":"11581:5:81","nodeType":"YulIdentifier","src":"11581:5:81"},"variableNames":[{"name":"value0","nativeSrc":"11571:6:81","nodeType":"YulIdentifier","src":"11571:6:81"}]},{"nativeSrc":"11595:47:81","nodeType":"YulVariableDeclaration","src":"11595:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11627:9:81","nodeType":"YulIdentifier","src":"11627:9:81"},{"kind":"number","nativeSrc":"11638:2:81","nodeType":"YulLiteral","src":"11638:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11623:3:81","nodeType":"YulIdentifier","src":"11623:3:81"},"nativeSrc":"11623:18:81","nodeType":"YulFunctionCall","src":"11623:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11610:12:81","nodeType":"YulIdentifier","src":"11610:12:81"},"nativeSrc":"11610:32:81","nodeType":"YulFunctionCall","src":"11610:32:81"},"variables":[{"name":"value_1","nativeSrc":"11599:7:81","nodeType":"YulTypedName","src":"11599:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"11675:7:81","nodeType":"YulIdentifier","src":"11675:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"11651:23:81","nodeType":"YulIdentifier","src":"11651:23:81"},"nativeSrc":"11651:32:81","nodeType":"YulFunctionCall","src":"11651:32:81"},"nativeSrc":"11651:32:81","nodeType":"YulExpressionStatement","src":"11651:32:81"},{"nativeSrc":"11692:17:81","nodeType":"YulAssignment","src":"11692:17:81","value":{"name":"value_1","nativeSrc":"11702:7:81","nodeType":"YulIdentifier","src":"11702:7:81"},"variableNames":[{"name":"value1","nativeSrc":"11692:6:81","nodeType":"YulIdentifier","src":"11692:6:81"}]},{"nativeSrc":"11718:47:81","nodeType":"YulVariableDeclaration","src":"11718:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11750:9:81","nodeType":"YulIdentifier","src":"11750:9:81"},{"kind":"number","nativeSrc":"11761:2:81","nodeType":"YulLiteral","src":"11761:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11746:3:81","nodeType":"YulIdentifier","src":"11746:3:81"},"nativeSrc":"11746:18:81","nodeType":"YulFunctionCall","src":"11746:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11733:12:81","nodeType":"YulIdentifier","src":"11733:12:81"},"nativeSrc":"11733:32:81","nodeType":"YulFunctionCall","src":"11733:32:81"},"variables":[{"name":"value_2","nativeSrc":"11722:7:81","nodeType":"YulTypedName","src":"11722:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"11798:7:81","nodeType":"YulIdentifier","src":"11798:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"11774:23:81","nodeType":"YulIdentifier","src":"11774:23:81"},"nativeSrc":"11774:32:81","nodeType":"YulFunctionCall","src":"11774:32:81"},"nativeSrc":"11774:32:81","nodeType":"YulExpressionStatement","src":"11774:32:81"},{"nativeSrc":"11815:17:81","nodeType":"YulAssignment","src":"11815:17:81","value":{"name":"value_2","nativeSrc":"11825:7:81","nodeType":"YulIdentifier","src":"11825:7:81"},"variableNames":[{"name":"value2","nativeSrc":"11815:6:81","nodeType":"YulIdentifier","src":"11815:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32","nativeSrc":"11303:535:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11355:9:81","nodeType":"YulTypedName","src":"11355:9:81","type":""},{"name":"dataEnd","nativeSrc":"11366:7:81","nodeType":"YulTypedName","src":"11366:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11378:6:81","nodeType":"YulTypedName","src":"11378:6:81","type":""},{"name":"value1","nativeSrc":"11386:6:81","nodeType":"YulTypedName","src":"11386:6:81","type":""},{"name":"value2","nativeSrc":"11394:6:81","nodeType":"YulTypedName","src":"11394:6:81","type":""}],"src":"11303:535:81"},{"body":{"nativeSrc":"11976:76:81","nodeType":"YulBlock","src":"11976:76:81","statements":[{"nativeSrc":"11986:26:81","nodeType":"YulAssignment","src":"11986:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11998:9:81","nodeType":"YulIdentifier","src":"11998:9:81"},{"kind":"number","nativeSrc":"12009:2:81","nodeType":"YulLiteral","src":"12009:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11994:3:81","nodeType":"YulIdentifier","src":"11994:3:81"},"nativeSrc":"11994:18:81","nodeType":"YulFunctionCall","src":"11994:18:81"},"variableNames":[{"name":"tail","nativeSrc":"11986:4:81","nodeType":"YulIdentifier","src":"11986:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12028:9:81","nodeType":"YulIdentifier","src":"12028:9:81"},{"name":"value0","nativeSrc":"12039:6:81","nodeType":"YulIdentifier","src":"12039:6:81"}],"functionName":{"name":"mstore","nativeSrc":"12021:6:81","nodeType":"YulIdentifier","src":"12021:6:81"},"nativeSrc":"12021:25:81","nodeType":"YulFunctionCall","src":"12021:25:81"},"nativeSrc":"12021:25:81","nodeType":"YulExpressionStatement","src":"12021:25:81"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_TargetSlot_$22993__to_t_bytes32__fromStack_reversed","nativeSrc":"11843:209:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11945:9:81","nodeType":"YulTypedName","src":"11945:9:81","type":""},{"name":"value0","nativeSrc":"11956:6:81","nodeType":"YulTypedName","src":"11956:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11967:4:81","nodeType":"YulTypedName","src":"11967:4:81","type":""}],"src":"11843:209:81"},{"body":{"nativeSrc":"12143:187:81","nodeType":"YulBlock","src":"12143:187:81","statements":[{"body":{"nativeSrc":"12189:16:81","nodeType":"YulBlock","src":"12189:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12198:1:81","nodeType":"YulLiteral","src":"12198:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12201:1:81","nodeType":"YulLiteral","src":"12201:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12191:6:81","nodeType":"YulIdentifier","src":"12191:6:81"},"nativeSrc":"12191:12:81","nodeType":"YulFunctionCall","src":"12191:12:81"},"nativeSrc":"12191:12:81","nodeType":"YulExpressionStatement","src":"12191:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12164:7:81","nodeType":"YulIdentifier","src":"12164:7:81"},{"name":"headStart","nativeSrc":"12173:9:81","nodeType":"YulIdentifier","src":"12173:9:81"}],"functionName":{"name":"sub","nativeSrc":"12160:3:81","nodeType":"YulIdentifier","src":"12160:3:81"},"nativeSrc":"12160:23:81","nodeType":"YulFunctionCall","src":"12160:23:81"},{"kind":"number","nativeSrc":"12185:2:81","nodeType":"YulLiteral","src":"12185:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12156:3:81","nodeType":"YulIdentifier","src":"12156:3:81"},"nativeSrc":"12156:32:81","nodeType":"YulFunctionCall","src":"12156:32:81"},"nativeSrc":"12153:52:81","nodeType":"YulIf","src":"12153:52:81"},{"nativeSrc":"12214:36:81","nodeType":"YulVariableDeclaration","src":"12214:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12240:9:81","nodeType":"YulIdentifier","src":"12240:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"12227:12:81","nodeType":"YulIdentifier","src":"12227:12:81"},"nativeSrc":"12227:23:81","nodeType":"YulFunctionCall","src":"12227:23:81"},"variables":[{"name":"value","nativeSrc":"12218:5:81","nodeType":"YulTypedName","src":"12218:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12294:5:81","nodeType":"YulIdentifier","src":"12294:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12259:34:81","nodeType":"YulIdentifier","src":"12259:34:81"},"nativeSrc":"12259:41:81","nodeType":"YulFunctionCall","src":"12259:41:81"},"nativeSrc":"12259:41:81","nodeType":"YulExpressionStatement","src":"12259:41:81"},{"nativeSrc":"12309:15:81","nodeType":"YulAssignment","src":"12309:15:81","value":{"name":"value","nativeSrc":"12319:5:81","nodeType":"YulIdentifier","src":"12319:5:81"},"variableNames":[{"name":"value0","nativeSrc":"12309:6:81","nodeType":"YulIdentifier","src":"12309:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20_$11065","nativeSrc":"12057:273:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12109:9:81","nodeType":"YulTypedName","src":"12109:9:81","type":""},{"name":"dataEnd","nativeSrc":"12120:7:81","nodeType":"YulTypedName","src":"12120:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12132:6:81","nodeType":"YulTypedName","src":"12132:6:81","type":""}],"src":"12057:273:81"},{"body":{"nativeSrc":"12431:499:81","nodeType":"YulBlock","src":"12431:499:81","statements":[{"body":{"nativeSrc":"12477:16:81","nodeType":"YulBlock","src":"12477:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12486:1:81","nodeType":"YulLiteral","src":"12486:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12489:1:81","nodeType":"YulLiteral","src":"12489:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12479:6:81","nodeType":"YulIdentifier","src":"12479:6:81"},"nativeSrc":"12479:12:81","nodeType":"YulFunctionCall","src":"12479:12:81"},"nativeSrc":"12479:12:81","nodeType":"YulExpressionStatement","src":"12479:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12452:7:81","nodeType":"YulIdentifier","src":"12452:7:81"},{"name":"headStart","nativeSrc":"12461:9:81","nodeType":"YulIdentifier","src":"12461:9:81"}],"functionName":{"name":"sub","nativeSrc":"12448:3:81","nodeType":"YulIdentifier","src":"12448:3:81"},"nativeSrc":"12448:23:81","nodeType":"YulFunctionCall","src":"12448:23:81"},{"kind":"number","nativeSrc":"12473:2:81","nodeType":"YulLiteral","src":"12473:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12444:3:81","nodeType":"YulIdentifier","src":"12444:3:81"},"nativeSrc":"12444:32:81","nodeType":"YulFunctionCall","src":"12444:32:81"},"nativeSrc":"12441:52:81","nodeType":"YulIf","src":"12441:52:81"},{"nativeSrc":"12502:36:81","nodeType":"YulVariableDeclaration","src":"12502:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12528:9:81","nodeType":"YulIdentifier","src":"12528:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"12515:12:81","nodeType":"YulIdentifier","src":"12515:12:81"},"nativeSrc":"12515:23:81","nodeType":"YulFunctionCall","src":"12515:23:81"},"variables":[{"name":"value","nativeSrc":"12506:5:81","nodeType":"YulTypedName","src":"12506:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12582:5:81","nodeType":"YulIdentifier","src":"12582:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12547:34:81","nodeType":"YulIdentifier","src":"12547:34:81"},"nativeSrc":"12547:41:81","nodeType":"YulFunctionCall","src":"12547:41:81"},"nativeSrc":"12547:41:81","nodeType":"YulExpressionStatement","src":"12547:41:81"},{"nativeSrc":"12597:15:81","nodeType":"YulAssignment","src":"12597:15:81","value":{"name":"value","nativeSrc":"12607:5:81","nodeType":"YulIdentifier","src":"12607:5:81"},"variableNames":[{"name":"value0","nativeSrc":"12597:6:81","nodeType":"YulIdentifier","src":"12597:6:81"}]},{"nativeSrc":"12621:46:81","nodeType":"YulVariableDeclaration","src":"12621:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12652:9:81","nodeType":"YulIdentifier","src":"12652:9:81"},{"kind":"number","nativeSrc":"12663:2:81","nodeType":"YulLiteral","src":"12663:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12648:3:81","nodeType":"YulIdentifier","src":"12648:3:81"},"nativeSrc":"12648:18:81","nodeType":"YulFunctionCall","src":"12648:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"12635:12:81","nodeType":"YulIdentifier","src":"12635:12:81"},"nativeSrc":"12635:32:81","nodeType":"YulFunctionCall","src":"12635:32:81"},"variables":[{"name":"offset","nativeSrc":"12625:6:81","nodeType":"YulTypedName","src":"12625:6:81","type":""}]},{"body":{"nativeSrc":"12710:16:81","nodeType":"YulBlock","src":"12710:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12719:1:81","nodeType":"YulLiteral","src":"12719:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12722:1:81","nodeType":"YulLiteral","src":"12722:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12712:6:81","nodeType":"YulIdentifier","src":"12712:6:81"},"nativeSrc":"12712:12:81","nodeType":"YulFunctionCall","src":"12712:12:81"},"nativeSrc":"12712:12:81","nodeType":"YulExpressionStatement","src":"12712:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"12682:6:81","nodeType":"YulIdentifier","src":"12682:6:81"},{"kind":"number","nativeSrc":"12690:18:81","nodeType":"YulLiteral","src":"12690:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"12679:2:81","nodeType":"YulIdentifier","src":"12679:2:81"},"nativeSrc":"12679:30:81","nodeType":"YulFunctionCall","src":"12679:30:81"},"nativeSrc":"12676:50:81","nodeType":"YulIf","src":"12676:50:81"},{"nativeSrc":"12735:32:81","nodeType":"YulVariableDeclaration","src":"12735:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12749:9:81","nodeType":"YulIdentifier","src":"12749:9:81"},{"name":"offset","nativeSrc":"12760:6:81","nodeType":"YulIdentifier","src":"12760:6:81"}],"functionName":{"name":"add","nativeSrc":"12745:3:81","nodeType":"YulIdentifier","src":"12745:3:81"},"nativeSrc":"12745:22:81","nodeType":"YulFunctionCall","src":"12745:22:81"},"variables":[{"name":"_1","nativeSrc":"12739:2:81","nodeType":"YulTypedName","src":"12739:2:81","type":""}]},{"body":{"nativeSrc":"12815:16:81","nodeType":"YulBlock","src":"12815:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12824:1:81","nodeType":"YulLiteral","src":"12824:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12827:1:81","nodeType":"YulLiteral","src":"12827:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12817:6:81","nodeType":"YulIdentifier","src":"12817:6:81"},"nativeSrc":"12817:12:81","nodeType":"YulFunctionCall","src":"12817:12:81"},"nativeSrc":"12817:12:81","nodeType":"YulExpressionStatement","src":"12817:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"12794:2:81","nodeType":"YulIdentifier","src":"12794:2:81"},{"kind":"number","nativeSrc":"12798:4:81","nodeType":"YulLiteral","src":"12798:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"12790:3:81","nodeType":"YulIdentifier","src":"12790:3:81"},"nativeSrc":"12790:13:81","nodeType":"YulFunctionCall","src":"12790:13:81"},{"name":"dataEnd","nativeSrc":"12805:7:81","nodeType":"YulIdentifier","src":"12805:7:81"}],"functionName":{"name":"slt","nativeSrc":"12786:3:81","nodeType":"YulIdentifier","src":"12786:3:81"},"nativeSrc":"12786:27:81","nodeType":"YulFunctionCall","src":"12786:27:81"}],"functionName":{"name":"iszero","nativeSrc":"12779:6:81","nodeType":"YulIdentifier","src":"12779:6:81"},"nativeSrc":"12779:35:81","nodeType":"YulFunctionCall","src":"12779:35:81"},"nativeSrc":"12776:55:81","nodeType":"YulIf","src":"12776:55:81"},{"nativeSrc":"12840:84:81","nodeType":"YulAssignment","src":"12840:84:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"12889:2:81","nodeType":"YulIdentifier","src":"12889:2:81"},{"kind":"number","nativeSrc":"12893:2:81","nodeType":"YulLiteral","src":"12893:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12885:3:81","nodeType":"YulIdentifier","src":"12885:3:81"},"nativeSrc":"12885:11:81","nodeType":"YulFunctionCall","src":"12885:11:81"},{"arguments":[{"name":"_1","nativeSrc":"12911:2:81","nodeType":"YulIdentifier","src":"12911:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"12898:12:81","nodeType":"YulIdentifier","src":"12898:12:81"},"nativeSrc":"12898:16:81","nodeType":"YulFunctionCall","src":"12898:16:81"},{"name":"dataEnd","nativeSrc":"12916:7:81","nodeType":"YulIdentifier","src":"12916:7:81"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"12850:34:81","nodeType":"YulIdentifier","src":"12850:34:81"},"nativeSrc":"12850:74:81","nodeType":"YulFunctionCall","src":"12850:74:81"},"variableNames":[{"name":"value1","nativeSrc":"12840:6:81","nodeType":"YulIdentifier","src":"12840:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"12335:595:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12389:9:81","nodeType":"YulTypedName","src":"12389:9:81","type":""},{"name":"dataEnd","nativeSrc":"12400:7:81","nodeType":"YulTypedName","src":"12400:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12412:6:81","nodeType":"YulTypedName","src":"12412:6:81","type":""},{"name":"value1","nativeSrc":"12420:6:81","nodeType":"YulTypedName","src":"12420:6:81","type":""}],"src":"12335:595:81"},{"body":{"nativeSrc":"13034:101:81","nodeType":"YulBlock","src":"13034:101:81","statements":[{"nativeSrc":"13044:26:81","nodeType":"YulAssignment","src":"13044:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13056:9:81","nodeType":"YulIdentifier","src":"13056:9:81"},{"kind":"number","nativeSrc":"13067:2:81","nodeType":"YulLiteral","src":"13067:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13052:3:81","nodeType":"YulIdentifier","src":"13052:3:81"},"nativeSrc":"13052:18:81","nodeType":"YulFunctionCall","src":"13052:18:81"},"variableNames":[{"name":"tail","nativeSrc":"13044:4:81","nodeType":"YulIdentifier","src":"13044:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13086:9:81","nodeType":"YulIdentifier","src":"13086:9:81"},{"arguments":[{"name":"value0","nativeSrc":"13101:6:81","nodeType":"YulIdentifier","src":"13101:6:81"},{"kind":"number","nativeSrc":"13109:18:81","nodeType":"YulLiteral","src":"13109:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13097:3:81","nodeType":"YulIdentifier","src":"13097:3:81"},"nativeSrc":"13097:31:81","nodeType":"YulFunctionCall","src":"13097:31:81"}],"functionName":{"name":"mstore","nativeSrc":"13079:6:81","nodeType":"YulIdentifier","src":"13079:6:81"},"nativeSrc":"13079:50:81","nodeType":"YulFunctionCall","src":"13079:50:81"},"nativeSrc":"13079:50:81","nodeType":"YulExpressionStatement","src":"13079:50:81"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"12935:200:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13003:9:81","nodeType":"YulTypedName","src":"13003:9:81","type":""},{"name":"value0","nativeSrc":"13014:6:81","nodeType":"YulTypedName","src":"13014:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13025:4:81","nodeType":"YulTypedName","src":"13025:4:81","type":""}],"src":"12935:200:81"},{"body":{"nativeSrc":"13261:528:81","nodeType":"YulBlock","src":"13261:528:81","statements":[{"body":{"nativeSrc":"13308:16:81","nodeType":"YulBlock","src":"13308:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13317:1:81","nodeType":"YulLiteral","src":"13317:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"13320:1:81","nodeType":"YulLiteral","src":"13320:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13310:6:81","nodeType":"YulIdentifier","src":"13310:6:81"},"nativeSrc":"13310:12:81","nodeType":"YulFunctionCall","src":"13310:12:81"},"nativeSrc":"13310:12:81","nodeType":"YulExpressionStatement","src":"13310:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13282:7:81","nodeType":"YulIdentifier","src":"13282:7:81"},{"name":"headStart","nativeSrc":"13291:9:81","nodeType":"YulIdentifier","src":"13291:9:81"}],"functionName":{"name":"sub","nativeSrc":"13278:3:81","nodeType":"YulIdentifier","src":"13278:3:81"},"nativeSrc":"13278:23:81","nodeType":"YulFunctionCall","src":"13278:23:81"},{"kind":"number","nativeSrc":"13303:3:81","nodeType":"YulLiteral","src":"13303:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"13274:3:81","nodeType":"YulIdentifier","src":"13274:3:81"},"nativeSrc":"13274:33:81","nodeType":"YulFunctionCall","src":"13274:33:81"},"nativeSrc":"13271:53:81","nodeType":"YulIf","src":"13271:53:81"},{"nativeSrc":"13333:36:81","nodeType":"YulVariableDeclaration","src":"13333:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13359:9:81","nodeType":"YulIdentifier","src":"13359:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"13346:12:81","nodeType":"YulIdentifier","src":"13346:12:81"},"nativeSrc":"13346:23:81","nodeType":"YulFunctionCall","src":"13346:23:81"},"variables":[{"name":"value","nativeSrc":"13337:5:81","nodeType":"YulTypedName","src":"13337:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13413:5:81","nodeType":"YulIdentifier","src":"13413:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13378:34:81","nodeType":"YulIdentifier","src":"13378:34:81"},"nativeSrc":"13378:41:81","nodeType":"YulFunctionCall","src":"13378:41:81"},"nativeSrc":"13378:41:81","nodeType":"YulExpressionStatement","src":"13378:41:81"},{"nativeSrc":"13428:15:81","nodeType":"YulAssignment","src":"13428:15:81","value":{"name":"value","nativeSrc":"13438:5:81","nodeType":"YulIdentifier","src":"13438:5:81"},"variableNames":[{"name":"value0","nativeSrc":"13428:6:81","nodeType":"YulIdentifier","src":"13428:6:81"}]},{"nativeSrc":"13452:47:81","nodeType":"YulVariableDeclaration","src":"13452:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13484:9:81","nodeType":"YulIdentifier","src":"13484:9:81"},{"kind":"number","nativeSrc":"13495:2:81","nodeType":"YulLiteral","src":"13495:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13480:3:81","nodeType":"YulIdentifier","src":"13480:3:81"},"nativeSrc":"13480:18:81","nodeType":"YulFunctionCall","src":"13480:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13467:12:81","nodeType":"YulIdentifier","src":"13467:12:81"},"nativeSrc":"13467:32:81","nodeType":"YulFunctionCall","src":"13467:32:81"},"variables":[{"name":"value_1","nativeSrc":"13456:7:81","nodeType":"YulTypedName","src":"13456:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13543:7:81","nodeType":"YulIdentifier","src":"13543:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13508:34:81","nodeType":"YulIdentifier","src":"13508:34:81"},"nativeSrc":"13508:43:81","nodeType":"YulFunctionCall","src":"13508:43:81"},"nativeSrc":"13508:43:81","nodeType":"YulExpressionStatement","src":"13508:43:81"},{"nativeSrc":"13560:17:81","nodeType":"YulAssignment","src":"13560:17:81","value":{"name":"value_1","nativeSrc":"13570:7:81","nodeType":"YulIdentifier","src":"13570:7:81"},"variableNames":[{"name":"value1","nativeSrc":"13560:6:81","nodeType":"YulIdentifier","src":"13560:6:81"}]},{"nativeSrc":"13586:16:81","nodeType":"YulVariableDeclaration","src":"13586:16:81","value":{"kind":"number","nativeSrc":"13601:1:81","nodeType":"YulLiteral","src":"13601:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13590:7:81","nodeType":"YulTypedName","src":"13590:7:81","type":""}]},{"nativeSrc":"13611:43:81","nodeType":"YulAssignment","src":"13611:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13639:9:81","nodeType":"YulIdentifier","src":"13639:9:81"},{"kind":"number","nativeSrc":"13650:2:81","nodeType":"YulLiteral","src":"13650:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13635:3:81","nodeType":"YulIdentifier","src":"13635:3:81"},"nativeSrc":"13635:18:81","nodeType":"YulFunctionCall","src":"13635:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13622:12:81","nodeType":"YulIdentifier","src":"13622:12:81"},"nativeSrc":"13622:32:81","nodeType":"YulFunctionCall","src":"13622:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"13611:7:81","nodeType":"YulIdentifier","src":"13611:7:81"}]},{"nativeSrc":"13663:17:81","nodeType":"YulAssignment","src":"13663:17:81","value":{"name":"value_2","nativeSrc":"13673:7:81","nodeType":"YulIdentifier","src":"13673:7:81"},"variableNames":[{"name":"value2","nativeSrc":"13663:6:81","nodeType":"YulIdentifier","src":"13663:6:81"}]},{"nativeSrc":"13689:16:81","nodeType":"YulVariableDeclaration","src":"13689:16:81","value":{"kind":"number","nativeSrc":"13704:1:81","nodeType":"YulLiteral","src":"13704:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13693:7:81","nodeType":"YulTypedName","src":"13693:7:81","type":""}]},{"nativeSrc":"13714:43:81","nodeType":"YulAssignment","src":"13714:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13742:9:81","nodeType":"YulIdentifier","src":"13742:9:81"},{"kind":"number","nativeSrc":"13753:2:81","nodeType":"YulLiteral","src":"13753:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13738:3:81","nodeType":"YulIdentifier","src":"13738:3:81"},"nativeSrc":"13738:18:81","nodeType":"YulFunctionCall","src":"13738:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13725:12:81","nodeType":"YulIdentifier","src":"13725:12:81"},"nativeSrc":"13725:32:81","nodeType":"YulFunctionCall","src":"13725:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"13714:7:81","nodeType":"YulIdentifier","src":"13714:7:81"}]},{"nativeSrc":"13766:17:81","nodeType":"YulAssignment","src":"13766:17:81","value":{"name":"value_3","nativeSrc":"13776:7:81","nodeType":"YulIdentifier","src":"13776:7:81"},"variableNames":[{"name":"value3","nativeSrc":"13766:6:81","nodeType":"YulIdentifier","src":"13766:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"13140:649:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13203:9:81","nodeType":"YulTypedName","src":"13203:9:81","type":""},{"name":"dataEnd","nativeSrc":"13214:7:81","nodeType":"YulTypedName","src":"13214:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13226:6:81","nodeType":"YulTypedName","src":"13226:6:81","type":""},{"name":"value1","nativeSrc":"13234:6:81","nodeType":"YulTypedName","src":"13234:6:81","type":""},{"name":"value2","nativeSrc":"13242:6:81","nodeType":"YulTypedName","src":"13242:6:81","type":""},{"name":"value3","nativeSrc":"13250:6:81","nodeType":"YulTypedName","src":"13250:6:81","type":""}],"src":"13140:649:81"},{"body":{"nativeSrc":"13881:290:81","nodeType":"YulBlock","src":"13881:290:81","statements":[{"body":{"nativeSrc":"13927:16:81","nodeType":"YulBlock","src":"13927:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13936:1:81","nodeType":"YulLiteral","src":"13936:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"13939:1:81","nodeType":"YulLiteral","src":"13939:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13929:6:81","nodeType":"YulIdentifier","src":"13929:6:81"},"nativeSrc":"13929:12:81","nodeType":"YulFunctionCall","src":"13929:12:81"},"nativeSrc":"13929:12:81","nodeType":"YulExpressionStatement","src":"13929:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13902:7:81","nodeType":"YulIdentifier","src":"13902:7:81"},{"name":"headStart","nativeSrc":"13911:9:81","nodeType":"YulIdentifier","src":"13911:9:81"}],"functionName":{"name":"sub","nativeSrc":"13898:3:81","nodeType":"YulIdentifier","src":"13898:3:81"},"nativeSrc":"13898:23:81","nodeType":"YulFunctionCall","src":"13898:23:81"},{"kind":"number","nativeSrc":"13923:2:81","nodeType":"YulLiteral","src":"13923:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13894:3:81","nodeType":"YulIdentifier","src":"13894:3:81"},"nativeSrc":"13894:32:81","nodeType":"YulFunctionCall","src":"13894:32:81"},"nativeSrc":"13891:52:81","nodeType":"YulIf","src":"13891:52:81"},{"nativeSrc":"13952:14:81","nodeType":"YulVariableDeclaration","src":"13952:14:81","value":{"kind":"number","nativeSrc":"13965:1:81","nodeType":"YulLiteral","src":"13965:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"13956:5:81","nodeType":"YulTypedName","src":"13956:5:81","type":""}]},{"nativeSrc":"13975:32:81","nodeType":"YulAssignment","src":"13975:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13997:9:81","nodeType":"YulIdentifier","src":"13997:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"13984:12:81","nodeType":"YulIdentifier","src":"13984:12:81"},"nativeSrc":"13984:23:81","nodeType":"YulFunctionCall","src":"13984:23:81"},"variableNames":[{"name":"value","nativeSrc":"13975:5:81","nodeType":"YulIdentifier","src":"13975:5:81"}]},{"nativeSrc":"14016:15:81","nodeType":"YulAssignment","src":"14016:15:81","value":{"name":"value","nativeSrc":"14026:5:81","nodeType":"YulIdentifier","src":"14026:5:81"},"variableNames":[{"name":"value0","nativeSrc":"14016:6:81","nodeType":"YulIdentifier","src":"14016:6:81"}]},{"nativeSrc":"14040:47:81","nodeType":"YulVariableDeclaration","src":"14040:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14072:9:81","nodeType":"YulIdentifier","src":"14072:9:81"},{"kind":"number","nativeSrc":"14083:2:81","nodeType":"YulLiteral","src":"14083:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14068:3:81","nodeType":"YulIdentifier","src":"14068:3:81"},"nativeSrc":"14068:18:81","nodeType":"YulFunctionCall","src":"14068:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"14055:12:81","nodeType":"YulIdentifier","src":"14055:12:81"},"nativeSrc":"14055:32:81","nodeType":"YulFunctionCall","src":"14055:32:81"},"variables":[{"name":"value_1","nativeSrc":"14044:7:81","nodeType":"YulTypedName","src":"14044:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"14131:7:81","nodeType":"YulIdentifier","src":"14131:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14096:34:81","nodeType":"YulIdentifier","src":"14096:34:81"},"nativeSrc":"14096:43:81","nodeType":"YulFunctionCall","src":"14096:43:81"},"nativeSrc":"14096:43:81","nodeType":"YulExpressionStatement","src":"14096:43:81"},{"nativeSrc":"14148:17:81","nodeType":"YulAssignment","src":"14148:17:81","value":{"name":"value_1","nativeSrc":"14158:7:81","nodeType":"YulIdentifier","src":"14158:7:81"},"variableNames":[{"name":"value1","nativeSrc":"14148:6:81","nodeType":"YulIdentifier","src":"14148:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"13794:377:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13839:9:81","nodeType":"YulTypedName","src":"13839:9:81","type":""},{"name":"dataEnd","nativeSrc":"13850:7:81","nodeType":"YulTypedName","src":"13850:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13862:6:81","nodeType":"YulTypedName","src":"13862:6:81","type":""},{"name":"value1","nativeSrc":"13870:6:81","nodeType":"YulTypedName","src":"13870:6:81","type":""}],"src":"13794:377:81"},{"body":{"nativeSrc":"14275:76:81","nodeType":"YulBlock","src":"14275:76:81","statements":[{"nativeSrc":"14285:26:81","nodeType":"YulAssignment","src":"14285:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14297:9:81","nodeType":"YulIdentifier","src":"14297:9:81"},{"kind":"number","nativeSrc":"14308:2:81","nodeType":"YulLiteral","src":"14308:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14293:3:81","nodeType":"YulIdentifier","src":"14293:3:81"},"nativeSrc":"14293:18:81","nodeType":"YulFunctionCall","src":"14293:18:81"},"variableNames":[{"name":"tail","nativeSrc":"14285:4:81","nodeType":"YulIdentifier","src":"14285:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14327:9:81","nodeType":"YulIdentifier","src":"14327:9:81"},{"name":"value0","nativeSrc":"14338:6:81","nodeType":"YulIdentifier","src":"14338:6:81"}],"functionName":{"name":"mstore","nativeSrc":"14320:6:81","nodeType":"YulIdentifier","src":"14320:6:81"},"nativeSrc":"14320:25:81","nodeType":"YulFunctionCall","src":"14320:25:81"},"nativeSrc":"14320:25:81","nodeType":"YulExpressionStatement","src":"14320:25:81"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"14176:175:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14244:9:81","nodeType":"YulTypedName","src":"14244:9:81","type":""},{"name":"value0","nativeSrc":"14255:6:81","nodeType":"YulTypedName","src":"14255:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14266:4:81","nodeType":"YulTypedName","src":"14266:4:81","type":""}],"src":"14176:175:81"},{"body":{"nativeSrc":"14443:187:81","nodeType":"YulBlock","src":"14443:187:81","statements":[{"body":{"nativeSrc":"14489:16:81","nodeType":"YulBlock","src":"14489:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14498:1:81","nodeType":"YulLiteral","src":"14498:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14501:1:81","nodeType":"YulLiteral","src":"14501:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14491:6:81","nodeType":"YulIdentifier","src":"14491:6:81"},"nativeSrc":"14491:12:81","nodeType":"YulFunctionCall","src":"14491:12:81"},"nativeSrc":"14491:12:81","nodeType":"YulExpressionStatement","src":"14491:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14464:7:81","nodeType":"YulIdentifier","src":"14464:7:81"},{"name":"headStart","nativeSrc":"14473:9:81","nodeType":"YulIdentifier","src":"14473:9:81"}],"functionName":{"name":"sub","nativeSrc":"14460:3:81","nodeType":"YulIdentifier","src":"14460:3:81"},"nativeSrc":"14460:23:81","nodeType":"YulFunctionCall","src":"14460:23:81"},{"kind":"number","nativeSrc":"14485:2:81","nodeType":"YulLiteral","src":"14485:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"14456:3:81","nodeType":"YulIdentifier","src":"14456:3:81"},"nativeSrc":"14456:32:81","nodeType":"YulFunctionCall","src":"14456:32:81"},"nativeSrc":"14453:52:81","nodeType":"YulIf","src":"14453:52:81"},{"nativeSrc":"14514:36:81","nodeType":"YulVariableDeclaration","src":"14514:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14540:9:81","nodeType":"YulIdentifier","src":"14540:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"14527:12:81","nodeType":"YulIdentifier","src":"14527:12:81"},"nativeSrc":"14527:23:81","nodeType":"YulFunctionCall","src":"14527:23:81"},"variables":[{"name":"value","nativeSrc":"14518:5:81","nodeType":"YulTypedName","src":"14518:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14594:5:81","nodeType":"YulIdentifier","src":"14594:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14559:34:81","nodeType":"YulIdentifier","src":"14559:34:81"},"nativeSrc":"14559:41:81","nodeType":"YulFunctionCall","src":"14559:41:81"},"nativeSrc":"14559:41:81","nodeType":"YulExpressionStatement","src":"14559:41:81"},{"nativeSrc":"14609:15:81","nodeType":"YulAssignment","src":"14609:15:81","value":{"name":"value","nativeSrc":"14619:5:81","nodeType":"YulIdentifier","src":"14619:5:81"},"variableNames":[{"name":"value0","nativeSrc":"14609:6:81","nodeType":"YulIdentifier","src":"14609:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$9796","nativeSrc":"14356:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14409:9:81","nodeType":"YulTypedName","src":"14409:9:81","type":""},{"name":"dataEnd","nativeSrc":"14420:7:81","nodeType":"YulTypedName","src":"14420:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14432:6:81","nodeType":"YulTypedName","src":"14432:6:81","type":""}],"src":"14356:274:81"},{"body":{"nativeSrc":"14754:537:81","nodeType":"YulBlock","src":"14754:537:81","statements":[{"body":{"nativeSrc":"14801:16:81","nodeType":"YulBlock","src":"14801:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14810:1:81","nodeType":"YulLiteral","src":"14810:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14813:1:81","nodeType":"YulLiteral","src":"14813:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14803:6:81","nodeType":"YulIdentifier","src":"14803:6:81"},"nativeSrc":"14803:12:81","nodeType":"YulFunctionCall","src":"14803:12:81"},"nativeSrc":"14803:12:81","nodeType":"YulExpressionStatement","src":"14803:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14775:7:81","nodeType":"YulIdentifier","src":"14775:7:81"},{"name":"headStart","nativeSrc":"14784:9:81","nodeType":"YulIdentifier","src":"14784:9:81"}],"functionName":{"name":"sub","nativeSrc":"14771:3:81","nodeType":"YulIdentifier","src":"14771:3:81"},"nativeSrc":"14771:23:81","nodeType":"YulFunctionCall","src":"14771:23:81"},{"kind":"number","nativeSrc":"14796:3:81","nodeType":"YulLiteral","src":"14796:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"14767:3:81","nodeType":"YulIdentifier","src":"14767:3:81"},"nativeSrc":"14767:33:81","nodeType":"YulFunctionCall","src":"14767:33:81"},"nativeSrc":"14764:53:81","nodeType":"YulIf","src":"14764:53:81"},{"nativeSrc":"14826:36:81","nodeType":"YulVariableDeclaration","src":"14826:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14852:9:81","nodeType":"YulIdentifier","src":"14852:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"14839:12:81","nodeType":"YulIdentifier","src":"14839:12:81"},"nativeSrc":"14839:23:81","nodeType":"YulFunctionCall","src":"14839:23:81"},"variables":[{"name":"value","nativeSrc":"14830:5:81","nodeType":"YulTypedName","src":"14830:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14906:5:81","nodeType":"YulIdentifier","src":"14906:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14871:34:81","nodeType":"YulIdentifier","src":"14871:34:81"},"nativeSrc":"14871:41:81","nodeType":"YulFunctionCall","src":"14871:41:81"},"nativeSrc":"14871:41:81","nodeType":"YulExpressionStatement","src":"14871:41:81"},{"nativeSrc":"14921:15:81","nodeType":"YulAssignment","src":"14921:15:81","value":{"name":"value","nativeSrc":"14931:5:81","nodeType":"YulIdentifier","src":"14931:5:81"},"variableNames":[{"name":"value0","nativeSrc":"14921:6:81","nodeType":"YulIdentifier","src":"14921:6:81"}]},{"nativeSrc":"14945:47:81","nodeType":"YulVariableDeclaration","src":"14945:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14977:9:81","nodeType":"YulIdentifier","src":"14977:9:81"},{"kind":"number","nativeSrc":"14988:2:81","nodeType":"YulLiteral","src":"14988:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14973:3:81","nodeType":"YulIdentifier","src":"14973:3:81"},"nativeSrc":"14973:18:81","nodeType":"YulFunctionCall","src":"14973:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"14960:12:81","nodeType":"YulIdentifier","src":"14960:12:81"},"nativeSrc":"14960:32:81","nodeType":"YulFunctionCall","src":"14960:32:81"},"variables":[{"name":"value_1","nativeSrc":"14949:7:81","nodeType":"YulTypedName","src":"14949:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15025:7:81","nodeType":"YulIdentifier","src":"15025:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"15001:23:81","nodeType":"YulIdentifier","src":"15001:23:81"},"nativeSrc":"15001:32:81","nodeType":"YulFunctionCall","src":"15001:32:81"},"nativeSrc":"15001:32:81","nodeType":"YulExpressionStatement","src":"15001:32:81"},{"nativeSrc":"15042:17:81","nodeType":"YulAssignment","src":"15042:17:81","value":{"name":"value_1","nativeSrc":"15052:7:81","nodeType":"YulIdentifier","src":"15052:7:81"},"variableNames":[{"name":"value1","nativeSrc":"15042:6:81","nodeType":"YulIdentifier","src":"15042:6:81"}]},{"nativeSrc":"15068:47:81","nodeType":"YulVariableDeclaration","src":"15068:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15100:9:81","nodeType":"YulIdentifier","src":"15100:9:81"},{"kind":"number","nativeSrc":"15111:2:81","nodeType":"YulLiteral","src":"15111:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15096:3:81","nodeType":"YulIdentifier","src":"15096:3:81"},"nativeSrc":"15096:18:81","nodeType":"YulFunctionCall","src":"15096:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"15083:12:81","nodeType":"YulIdentifier","src":"15083:12:81"},"nativeSrc":"15083:32:81","nodeType":"YulFunctionCall","src":"15083:32:81"},"variables":[{"name":"value_2","nativeSrc":"15072:7:81","nodeType":"YulTypedName","src":"15072:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"15148:7:81","nodeType":"YulIdentifier","src":"15148:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"15124:23:81","nodeType":"YulIdentifier","src":"15124:23:81"},"nativeSrc":"15124:32:81","nodeType":"YulFunctionCall","src":"15124:32:81"},"nativeSrc":"15124:32:81","nodeType":"YulExpressionStatement","src":"15124:32:81"},{"nativeSrc":"15165:17:81","nodeType":"YulAssignment","src":"15165:17:81","value":{"name":"value_2","nativeSrc":"15175:7:81","nodeType":"YulIdentifier","src":"15175:7:81"},"variableNames":[{"name":"value2","nativeSrc":"15165:6:81","nodeType":"YulIdentifier","src":"15165:6:81"}]},{"nativeSrc":"15191:16:81","nodeType":"YulVariableDeclaration","src":"15191:16:81","value":{"kind":"number","nativeSrc":"15206:1:81","nodeType":"YulLiteral","src":"15206:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"15195:7:81","nodeType":"YulTypedName","src":"15195:7:81","type":""}]},{"nativeSrc":"15216:43:81","nodeType":"YulAssignment","src":"15216:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15244:9:81","nodeType":"YulIdentifier","src":"15244:9:81"},{"kind":"number","nativeSrc":"15255:2:81","nodeType":"YulLiteral","src":"15255:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15240:3:81","nodeType":"YulIdentifier","src":"15240:3:81"},"nativeSrc":"15240:18:81","nodeType":"YulFunctionCall","src":"15240:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"15227:12:81","nodeType":"YulIdentifier","src":"15227:12:81"},"nativeSrc":"15227:32:81","nodeType":"YulFunctionCall","src":"15227:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"15216:7:81","nodeType":"YulIdentifier","src":"15216:7:81"}]},{"nativeSrc":"15268:17:81","nodeType":"YulAssignment","src":"15268:17:81","value":{"name":"value_3","nativeSrc":"15278:7:81","nodeType":"YulIdentifier","src":"15278:7:81"},"variableNames":[{"name":"value3","nativeSrc":"15268:6:81","nodeType":"YulIdentifier","src":"15268:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256","nativeSrc":"14635:656:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14696:9:81","nodeType":"YulTypedName","src":"14696:9:81","type":""},{"name":"dataEnd","nativeSrc":"14707:7:81","nodeType":"YulTypedName","src":"14707:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14719:6:81","nodeType":"YulTypedName","src":"14719:6:81","type":""},{"name":"value1","nativeSrc":"14727:6:81","nodeType":"YulTypedName","src":"14727:6:81","type":""},{"name":"value2","nativeSrc":"14735:6:81","nodeType":"YulTypedName","src":"14735:6:81","type":""},{"name":"value3","nativeSrc":"14743:6:81","nodeType":"YulTypedName","src":"14743:6:81","type":""}],"src":"14635:656:81"},{"body":{"nativeSrc":"15365:215:81","nodeType":"YulBlock","src":"15365:215:81","statements":[{"body":{"nativeSrc":"15411:16:81","nodeType":"YulBlock","src":"15411:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15420:1:81","nodeType":"YulLiteral","src":"15420:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15423:1:81","nodeType":"YulLiteral","src":"15423:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15413:6:81","nodeType":"YulIdentifier","src":"15413:6:81"},"nativeSrc":"15413:12:81","nodeType":"YulFunctionCall","src":"15413:12:81"},"nativeSrc":"15413:12:81","nodeType":"YulExpressionStatement","src":"15413:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15386:7:81","nodeType":"YulIdentifier","src":"15386:7:81"},{"name":"headStart","nativeSrc":"15395:9:81","nodeType":"YulIdentifier","src":"15395:9:81"}],"functionName":{"name":"sub","nativeSrc":"15382:3:81","nodeType":"YulIdentifier","src":"15382:3:81"},"nativeSrc":"15382:23:81","nodeType":"YulFunctionCall","src":"15382:23:81"},{"kind":"number","nativeSrc":"15407:2:81","nodeType":"YulLiteral","src":"15407:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15378:3:81","nodeType":"YulIdentifier","src":"15378:3:81"},"nativeSrc":"15378:32:81","nodeType":"YulFunctionCall","src":"15378:32:81"},"nativeSrc":"15375:52:81","nodeType":"YulIf","src":"15375:52:81"},{"nativeSrc":"15436:36:81","nodeType":"YulVariableDeclaration","src":"15436:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"15462:9:81","nodeType":"YulIdentifier","src":"15462:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"15449:12:81","nodeType":"YulIdentifier","src":"15449:12:81"},"nativeSrc":"15449:23:81","nodeType":"YulFunctionCall","src":"15449:23:81"},"variables":[{"name":"value","nativeSrc":"15440:5:81","nodeType":"YulTypedName","src":"15440:5:81","type":""}]},{"body":{"nativeSrc":"15534:16:81","nodeType":"YulBlock","src":"15534:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15543:1:81","nodeType":"YulLiteral","src":"15543:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15546:1:81","nodeType":"YulLiteral","src":"15546:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15536:6:81","nodeType":"YulIdentifier","src":"15536:6:81"},"nativeSrc":"15536:12:81","nodeType":"YulFunctionCall","src":"15536:12:81"},"nativeSrc":"15536:12:81","nodeType":"YulExpressionStatement","src":"15536:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15494:5:81","nodeType":"YulIdentifier","src":"15494:5:81"},{"arguments":[{"name":"value","nativeSrc":"15505:5:81","nodeType":"YulIdentifier","src":"15505:5:81"},{"kind":"number","nativeSrc":"15512:18:81","nodeType":"YulLiteral","src":"15512:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"15501:3:81","nodeType":"YulIdentifier","src":"15501:3:81"},"nativeSrc":"15501:30:81","nodeType":"YulFunctionCall","src":"15501:30:81"}],"functionName":{"name":"eq","nativeSrc":"15491:2:81","nodeType":"YulIdentifier","src":"15491:2:81"},"nativeSrc":"15491:41:81","nodeType":"YulFunctionCall","src":"15491:41:81"}],"functionName":{"name":"iszero","nativeSrc":"15484:6:81","nodeType":"YulIdentifier","src":"15484:6:81"},"nativeSrc":"15484:49:81","nodeType":"YulFunctionCall","src":"15484:49:81"},"nativeSrc":"15481:69:81","nodeType":"YulIf","src":"15481:69:81"},{"nativeSrc":"15559:15:81","nodeType":"YulAssignment","src":"15559:15:81","value":{"name":"value","nativeSrc":"15569:5:81","nodeType":"YulIdentifier","src":"15569:5:81"},"variableNames":[{"name":"value0","nativeSrc":"15559:6:81","nodeType":"YulIdentifier","src":"15559:6:81"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"15296:284:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15331:9:81","nodeType":"YulTypedName","src":"15331:9:81","type":""},{"name":"dataEnd","nativeSrc":"15342:7:81","nodeType":"YulTypedName","src":"15342:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15354:6:81","nodeType":"YulTypedName","src":"15354:6:81","type":""}],"src":"15296:284:81"},{"body":{"nativeSrc":"15723:663:81","nodeType":"YulBlock","src":"15723:663:81","statements":[{"body":{"nativeSrc":"15770:16:81","nodeType":"YulBlock","src":"15770:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15779:1:81","nodeType":"YulLiteral","src":"15779:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15782:1:81","nodeType":"YulLiteral","src":"15782:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15772:6:81","nodeType":"YulIdentifier","src":"15772:6:81"},"nativeSrc":"15772:12:81","nodeType":"YulFunctionCall","src":"15772:12:81"},"nativeSrc":"15772:12:81","nodeType":"YulExpressionStatement","src":"15772:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15744:7:81","nodeType":"YulIdentifier","src":"15744:7:81"},{"name":"headStart","nativeSrc":"15753:9:81","nodeType":"YulIdentifier","src":"15753:9:81"}],"functionName":{"name":"sub","nativeSrc":"15740:3:81","nodeType":"YulIdentifier","src":"15740:3:81"},"nativeSrc":"15740:23:81","nodeType":"YulFunctionCall","src":"15740:23:81"},{"kind":"number","nativeSrc":"15765:3:81","nodeType":"YulLiteral","src":"15765:3:81","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"15736:3:81","nodeType":"YulIdentifier","src":"15736:3:81"},"nativeSrc":"15736:33:81","nodeType":"YulFunctionCall","src":"15736:33:81"},"nativeSrc":"15733:53:81","nodeType":"YulIf","src":"15733:53:81"},{"nativeSrc":"15795:36:81","nodeType":"YulVariableDeclaration","src":"15795:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"15821:9:81","nodeType":"YulIdentifier","src":"15821:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"15808:12:81","nodeType":"YulIdentifier","src":"15808:12:81"},"nativeSrc":"15808:23:81","nodeType":"YulFunctionCall","src":"15808:23:81"},"variables":[{"name":"value","nativeSrc":"15799:5:81","nodeType":"YulTypedName","src":"15799:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15875:5:81","nodeType":"YulIdentifier","src":"15875:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15840:34:81","nodeType":"YulIdentifier","src":"15840:34:81"},"nativeSrc":"15840:41:81","nodeType":"YulFunctionCall","src":"15840:41:81"},"nativeSrc":"15840:41:81","nodeType":"YulExpressionStatement","src":"15840:41:81"},{"nativeSrc":"15890:15:81","nodeType":"YulAssignment","src":"15890:15:81","value":{"name":"value","nativeSrc":"15900:5:81","nodeType":"YulIdentifier","src":"15900:5:81"},"variableNames":[{"name":"value0","nativeSrc":"15890:6:81","nodeType":"YulIdentifier","src":"15890:6:81"}]},{"nativeSrc":"15914:47:81","nodeType":"YulVariableDeclaration","src":"15914:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15946:9:81","nodeType":"YulIdentifier","src":"15946:9:81"},{"kind":"number","nativeSrc":"15957:2:81","nodeType":"YulLiteral","src":"15957:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15942:3:81","nodeType":"YulIdentifier","src":"15942:3:81"},"nativeSrc":"15942:18:81","nodeType":"YulFunctionCall","src":"15942:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"15929:12:81","nodeType":"YulIdentifier","src":"15929:12:81"},"nativeSrc":"15929:32:81","nodeType":"YulFunctionCall","src":"15929:32:81"},"variables":[{"name":"value_1","nativeSrc":"15918:7:81","nodeType":"YulTypedName","src":"15918:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"16005:7:81","nodeType":"YulIdentifier","src":"16005:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15970:34:81","nodeType":"YulIdentifier","src":"15970:34:81"},"nativeSrc":"15970:43:81","nodeType":"YulFunctionCall","src":"15970:43:81"},"nativeSrc":"15970:43:81","nodeType":"YulExpressionStatement","src":"15970:43:81"},{"nativeSrc":"16022:17:81","nodeType":"YulAssignment","src":"16022:17:81","value":{"name":"value_1","nativeSrc":"16032:7:81","nodeType":"YulIdentifier","src":"16032:7:81"},"variableNames":[{"name":"value1","nativeSrc":"16022:6:81","nodeType":"YulIdentifier","src":"16022:6:81"}]},{"nativeSrc":"16048:47:81","nodeType":"YulVariableDeclaration","src":"16048:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16080:9:81","nodeType":"YulIdentifier","src":"16080:9:81"},{"kind":"number","nativeSrc":"16091:2:81","nodeType":"YulLiteral","src":"16091:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16076:3:81","nodeType":"YulIdentifier","src":"16076:3:81"},"nativeSrc":"16076:18:81","nodeType":"YulFunctionCall","src":"16076:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"16063:12:81","nodeType":"YulIdentifier","src":"16063:12:81"},"nativeSrc":"16063:32:81","nodeType":"YulFunctionCall","src":"16063:32:81"},"variables":[{"name":"value_2","nativeSrc":"16052:7:81","nodeType":"YulTypedName","src":"16052:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"16139:7:81","nodeType":"YulIdentifier","src":"16139:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16104:34:81","nodeType":"YulIdentifier","src":"16104:34:81"},"nativeSrc":"16104:43:81","nodeType":"YulFunctionCall","src":"16104:43:81"},"nativeSrc":"16104:43:81","nodeType":"YulExpressionStatement","src":"16104:43:81"},{"nativeSrc":"16156:17:81","nodeType":"YulAssignment","src":"16156:17:81","value":{"name":"value_2","nativeSrc":"16166:7:81","nodeType":"YulIdentifier","src":"16166:7:81"},"variableNames":[{"name":"value2","nativeSrc":"16156:6:81","nodeType":"YulIdentifier","src":"16156:6:81"}]},{"nativeSrc":"16182:16:81","nodeType":"YulVariableDeclaration","src":"16182:16:81","value":{"kind":"number","nativeSrc":"16197:1:81","nodeType":"YulLiteral","src":"16197:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"16186:7:81","nodeType":"YulTypedName","src":"16186:7:81","type":""}]},{"nativeSrc":"16207:43:81","nodeType":"YulAssignment","src":"16207:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16235:9:81","nodeType":"YulIdentifier","src":"16235:9:81"},{"kind":"number","nativeSrc":"16246:2:81","nodeType":"YulLiteral","src":"16246:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16231:3:81","nodeType":"YulIdentifier","src":"16231:3:81"},"nativeSrc":"16231:18:81","nodeType":"YulFunctionCall","src":"16231:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"16218:12:81","nodeType":"YulIdentifier","src":"16218:12:81"},"nativeSrc":"16218:32:81","nodeType":"YulFunctionCall","src":"16218:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"16207:7:81","nodeType":"YulIdentifier","src":"16207:7:81"}]},{"nativeSrc":"16259:17:81","nodeType":"YulAssignment","src":"16259:17:81","value":{"name":"value_3","nativeSrc":"16269:7:81","nodeType":"YulIdentifier","src":"16269:7:81"},"variableNames":[{"name":"value3","nativeSrc":"16259:6:81","nodeType":"YulIdentifier","src":"16259:6:81"}]},{"nativeSrc":"16285:16:81","nodeType":"YulVariableDeclaration","src":"16285:16:81","value":{"kind":"number","nativeSrc":"16300:1:81","nodeType":"YulLiteral","src":"16300:1:81","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"16289:7:81","nodeType":"YulTypedName","src":"16289:7:81","type":""}]},{"nativeSrc":"16310:44:81","nodeType":"YulAssignment","src":"16310:44:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16338:9:81","nodeType":"YulIdentifier","src":"16338:9:81"},{"kind":"number","nativeSrc":"16349:3:81","nodeType":"YulLiteral","src":"16349:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16334:3:81","nodeType":"YulIdentifier","src":"16334:3:81"},"nativeSrc":"16334:19:81","nodeType":"YulFunctionCall","src":"16334:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"16321:12:81","nodeType":"YulIdentifier","src":"16321:12:81"},"nativeSrc":"16321:33:81","nodeType":"YulFunctionCall","src":"16321:33:81"},"variableNames":[{"name":"value_4","nativeSrc":"16310:7:81","nodeType":"YulIdentifier","src":"16310:7:81"}]},{"nativeSrc":"16363:17:81","nodeType":"YulAssignment","src":"16363:17:81","value":{"name":"value_4","nativeSrc":"16373:7:81","nodeType":"YulIdentifier","src":"16373:7:81"},"variableNames":[{"name":"value4","nativeSrc":"16363:6:81","nodeType":"YulIdentifier","src":"16363:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256","nativeSrc":"15585:801:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15657:9:81","nodeType":"YulTypedName","src":"15657:9:81","type":""},{"name":"dataEnd","nativeSrc":"15668:7:81","nodeType":"YulTypedName","src":"15668:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15680:6:81","nodeType":"YulTypedName","src":"15680:6:81","type":""},{"name":"value1","nativeSrc":"15688:6:81","nodeType":"YulTypedName","src":"15688:6:81","type":""},{"name":"value2","nativeSrc":"15696:6:81","nodeType":"YulTypedName","src":"15696:6:81","type":""},{"name":"value3","nativeSrc":"15704:6:81","nodeType":"YulTypedName","src":"15704:6:81","type":""},{"name":"value4","nativeSrc":"15712:6:81","nodeType":"YulTypedName","src":"15712:6:81","type":""}],"src":"15585:801:81"},{"body":{"nativeSrc":"16556:183:81","nodeType":"YulBlock","src":"16556:183:81","statements":[{"nativeSrc":"16566:26:81","nodeType":"YulAssignment","src":"16566:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16578:9:81","nodeType":"YulIdentifier","src":"16578:9:81"},{"kind":"number","nativeSrc":"16589:2:81","nodeType":"YulLiteral","src":"16589:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16574:3:81","nodeType":"YulIdentifier","src":"16574:3:81"},"nativeSrc":"16574:18:81","nodeType":"YulFunctionCall","src":"16574:18:81"},"variableNames":[{"name":"tail","nativeSrc":"16566:4:81","nodeType":"YulIdentifier","src":"16566:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16608:9:81","nodeType":"YulIdentifier","src":"16608:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"16629:6:81","nodeType":"YulIdentifier","src":"16629:6:81"}],"functionName":{"name":"mload","nativeSrc":"16623:5:81","nodeType":"YulIdentifier","src":"16623:5:81"},"nativeSrc":"16623:13:81","nodeType":"YulFunctionCall","src":"16623:13:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16646:3:81","nodeType":"YulLiteral","src":"16646:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"16651:1:81","nodeType":"YulLiteral","src":"16651:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16642:3:81","nodeType":"YulIdentifier","src":"16642:3:81"},"nativeSrc":"16642:11:81","nodeType":"YulFunctionCall","src":"16642:11:81"},{"kind":"number","nativeSrc":"16655:1:81","nodeType":"YulLiteral","src":"16655:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16638:3:81","nodeType":"YulIdentifier","src":"16638:3:81"},"nativeSrc":"16638:19:81","nodeType":"YulFunctionCall","src":"16638:19:81"}],"functionName":{"name":"and","nativeSrc":"16619:3:81","nodeType":"YulIdentifier","src":"16619:3:81"},"nativeSrc":"16619:39:81","nodeType":"YulFunctionCall","src":"16619:39:81"}],"functionName":{"name":"mstore","nativeSrc":"16601:6:81","nodeType":"YulIdentifier","src":"16601:6:81"},"nativeSrc":"16601:58:81","nodeType":"YulFunctionCall","src":"16601:58:81"},"nativeSrc":"16601:58:81","nodeType":"YulExpressionStatement","src":"16601:58:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16679:9:81","nodeType":"YulIdentifier","src":"16679:9:81"},{"kind":"number","nativeSrc":"16690:4:81","nodeType":"YulLiteral","src":"16690:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16675:3:81","nodeType":"YulIdentifier","src":"16675:3:81"},"nativeSrc":"16675:20:81","nodeType":"YulFunctionCall","src":"16675:20:81"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"16711:6:81","nodeType":"YulIdentifier","src":"16711:6:81"},{"kind":"number","nativeSrc":"16719:4:81","nodeType":"YulLiteral","src":"16719:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16707:3:81","nodeType":"YulIdentifier","src":"16707:3:81"},"nativeSrc":"16707:17:81","nodeType":"YulFunctionCall","src":"16707:17:81"}],"functionName":{"name":"mload","nativeSrc":"16701:5:81","nodeType":"YulIdentifier","src":"16701:5:81"},"nativeSrc":"16701:24:81","nodeType":"YulFunctionCall","src":"16701:24:81"},{"kind":"number","nativeSrc":"16727:4:81","nodeType":"YulLiteral","src":"16727:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16697:3:81","nodeType":"YulIdentifier","src":"16697:3:81"},"nativeSrc":"16697:35:81","nodeType":"YulFunctionCall","src":"16697:35:81"}],"functionName":{"name":"mstore","nativeSrc":"16668:6:81","nodeType":"YulIdentifier","src":"16668:6:81"},"nativeSrc":"16668:65:81","nodeType":"YulFunctionCall","src":"16668:65:81"},"nativeSrc":"16668:65:81","nodeType":"YulExpressionStatement","src":"16668:65:81"}]},"name":"abi_encode_tuple_t_struct$_ERC4626Storage_$5994_memory_ptr__to_t_struct$_ERC4626Storage_$5994_memory_ptr__fromStack_reversed","nativeSrc":"16391:348:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16525:9:81","nodeType":"YulTypedName","src":"16525:9:81","type":""},{"name":"value0","nativeSrc":"16536:6:81","nodeType":"YulTypedName","src":"16536:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16547:4:81","nodeType":"YulTypedName","src":"16547:4:81","type":""}],"src":"16391:348:81"},{"body":{"nativeSrc":"16795:56:81","nodeType":"YulBlock","src":"16795:56:81","statements":[{"body":{"nativeSrc":"16829:16:81","nodeType":"YulBlock","src":"16829:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16838:1:81","nodeType":"YulLiteral","src":"16838:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16841:1:81","nodeType":"YulLiteral","src":"16841:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16831:6:81","nodeType":"YulIdentifier","src":"16831:6:81"},"nativeSrc":"16831:12:81","nodeType":"YulFunctionCall","src":"16831:12:81"},"nativeSrc":"16831:12:81","nodeType":"YulExpressionStatement","src":"16831:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"16818:5:81","nodeType":"YulIdentifier","src":"16818:5:81"},{"kind":"number","nativeSrc":"16825:1:81","nodeType":"YulLiteral","src":"16825:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"16815:2:81","nodeType":"YulIdentifier","src":"16815:2:81"},"nativeSrc":"16815:12:81","nodeType":"YulFunctionCall","src":"16815:12:81"}],"functionName":{"name":"iszero","nativeSrc":"16808:6:81","nodeType":"YulIdentifier","src":"16808:6:81"},"nativeSrc":"16808:20:81","nodeType":"YulFunctionCall","src":"16808:20:81"},"nativeSrc":"16805:40:81","nodeType":"YulIf","src":"16805:40:81"}]},"name":"validator_revert_enum_Rounding","nativeSrc":"16744:107:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"16784:5:81","nodeType":"YulTypedName","src":"16784:5:81","type":""}],"src":"16744:107:81"},{"body":{"nativeSrc":"16957:286:81","nodeType":"YulBlock","src":"16957:286:81","statements":[{"body":{"nativeSrc":"17003:16:81","nodeType":"YulBlock","src":"17003:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17012:1:81","nodeType":"YulLiteral","src":"17012:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"17015:1:81","nodeType":"YulLiteral","src":"17015:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17005:6:81","nodeType":"YulIdentifier","src":"17005:6:81"},"nativeSrc":"17005:12:81","nodeType":"YulFunctionCall","src":"17005:12:81"},"nativeSrc":"17005:12:81","nodeType":"YulExpressionStatement","src":"17005:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16978:7:81","nodeType":"YulIdentifier","src":"16978:7:81"},{"name":"headStart","nativeSrc":"16987:9:81","nodeType":"YulIdentifier","src":"16987:9:81"}],"functionName":{"name":"sub","nativeSrc":"16974:3:81","nodeType":"YulIdentifier","src":"16974:3:81"},"nativeSrc":"16974:23:81","nodeType":"YulFunctionCall","src":"16974:23:81"},{"kind":"number","nativeSrc":"16999:2:81","nodeType":"YulLiteral","src":"16999:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"16970:3:81","nodeType":"YulIdentifier","src":"16970:3:81"},"nativeSrc":"16970:32:81","nodeType":"YulFunctionCall","src":"16970:32:81"},"nativeSrc":"16967:52:81","nodeType":"YulIf","src":"16967:52:81"},{"nativeSrc":"17028:14:81","nodeType":"YulVariableDeclaration","src":"17028:14:81","value":{"kind":"number","nativeSrc":"17041:1:81","nodeType":"YulLiteral","src":"17041:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"17032:5:81","nodeType":"YulTypedName","src":"17032:5:81","type":""}]},{"nativeSrc":"17051:32:81","nodeType":"YulAssignment","src":"17051:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"17073:9:81","nodeType":"YulIdentifier","src":"17073:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"17060:12:81","nodeType":"YulIdentifier","src":"17060:12:81"},"nativeSrc":"17060:23:81","nodeType":"YulFunctionCall","src":"17060:23:81"},"variableNames":[{"name":"value","nativeSrc":"17051:5:81","nodeType":"YulIdentifier","src":"17051:5:81"}]},{"nativeSrc":"17092:15:81","nodeType":"YulAssignment","src":"17092:15:81","value":{"name":"value","nativeSrc":"17102:5:81","nodeType":"YulIdentifier","src":"17102:5:81"},"variableNames":[{"name":"value0","nativeSrc":"17092:6:81","nodeType":"YulIdentifier","src":"17092:6:81"}]},{"nativeSrc":"17116:47:81","nodeType":"YulVariableDeclaration","src":"17116:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17148:9:81","nodeType":"YulIdentifier","src":"17148:9:81"},{"kind":"number","nativeSrc":"17159:2:81","nodeType":"YulLiteral","src":"17159:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17144:3:81","nodeType":"YulIdentifier","src":"17144:3:81"},"nativeSrc":"17144:18:81","nodeType":"YulFunctionCall","src":"17144:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"17131:12:81","nodeType":"YulIdentifier","src":"17131:12:81"},"nativeSrc":"17131:32:81","nodeType":"YulFunctionCall","src":"17131:32:81"},"variables":[{"name":"value_1","nativeSrc":"17120:7:81","nodeType":"YulTypedName","src":"17120:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"17203:7:81","nodeType":"YulIdentifier","src":"17203:7:81"}],"functionName":{"name":"validator_revert_enum_Rounding","nativeSrc":"17172:30:81","nodeType":"YulIdentifier","src":"17172:30:81"},"nativeSrc":"17172:39:81","nodeType":"YulFunctionCall","src":"17172:39:81"},"nativeSrc":"17172:39:81","nodeType":"YulExpressionStatement","src":"17172:39:81"},{"nativeSrc":"17220:17:81","nodeType":"YulAssignment","src":"17220:17:81","value":{"name":"value_1","nativeSrc":"17230:7:81","nodeType":"YulIdentifier","src":"17230:7:81"},"variableNames":[{"name":"value1","nativeSrc":"17220:6:81","nodeType":"YulIdentifier","src":"17220:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_enum$_Rounding_$18220","nativeSrc":"16856:387:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16915:9:81","nodeType":"YulTypedName","src":"16915:9:81","type":""},{"name":"dataEnd","nativeSrc":"16926:7:81","nodeType":"YulTypedName","src":"16926:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16938:6:81","nodeType":"YulTypedName","src":"16938:6:81","type":""},{"name":"value1","nativeSrc":"16946:6:81","nodeType":"YulTypedName","src":"16946:6:81","type":""}],"src":"16856:387:81"},{"body":{"nativeSrc":"17411:419:81","nodeType":"YulBlock","src":"17411:419:81","statements":[{"nativeSrc":"17421:27:81","nodeType":"YulAssignment","src":"17421:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"17433:9:81","nodeType":"YulIdentifier","src":"17433:9:81"},{"kind":"number","nativeSrc":"17444:3:81","nodeType":"YulLiteral","src":"17444:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17429:3:81","nodeType":"YulIdentifier","src":"17429:3:81"},"nativeSrc":"17429:19:81","nodeType":"YulFunctionCall","src":"17429:19:81"},"variableNames":[{"name":"tail","nativeSrc":"17421:4:81","nodeType":"YulIdentifier","src":"17421:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17464:9:81","nodeType":"YulIdentifier","src":"17464:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17485:6:81","nodeType":"YulIdentifier","src":"17485:6:81"}],"functionName":{"name":"mload","nativeSrc":"17479:5:81","nodeType":"YulIdentifier","src":"17479:5:81"},"nativeSrc":"17479:13:81","nodeType":"YulFunctionCall","src":"17479:13:81"},{"kind":"number","nativeSrc":"17494:10:81","nodeType":"YulLiteral","src":"17494:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"17475:3:81","nodeType":"YulIdentifier","src":"17475:3:81"},"nativeSrc":"17475:30:81","nodeType":"YulFunctionCall","src":"17475:30:81"}],"functionName":{"name":"mstore","nativeSrc":"17457:6:81","nodeType":"YulIdentifier","src":"17457:6:81"},"nativeSrc":"17457:49:81","nodeType":"YulFunctionCall","src":"17457:49:81"},"nativeSrc":"17457:49:81","nodeType":"YulExpressionStatement","src":"17457:49:81"},{"nativeSrc":"17515:44:81","nodeType":"YulVariableDeclaration","src":"17515:44:81","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17545:6:81","nodeType":"YulIdentifier","src":"17545:6:81"},{"kind":"number","nativeSrc":"17553:4:81","nodeType":"YulLiteral","src":"17553:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17541:3:81","nodeType":"YulIdentifier","src":"17541:3:81"},"nativeSrc":"17541:17:81","nodeType":"YulFunctionCall","src":"17541:17:81"}],"functionName":{"name":"mload","nativeSrc":"17535:5:81","nodeType":"YulIdentifier","src":"17535:5:81"},"nativeSrc":"17535:24:81","nodeType":"YulFunctionCall","src":"17535:24:81"},"variables":[{"name":"memberValue0","nativeSrc":"17519:12:81","nodeType":"YulTypedName","src":"17519:12:81","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"17597:12:81","nodeType":"YulIdentifier","src":"17597:12:81"},{"arguments":[{"name":"headStart","nativeSrc":"17615:9:81","nodeType":"YulIdentifier","src":"17615:9:81"},{"kind":"number","nativeSrc":"17626:4:81","nodeType":"YulLiteral","src":"17626:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17611:3:81","nodeType":"YulIdentifier","src":"17611:3:81"},"nativeSrc":"17611:20:81","nodeType":"YulFunctionCall","src":"17611:20:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"17568:28:81","nodeType":"YulIdentifier","src":"17568:28:81"},"nativeSrc":"17568:64:81","nodeType":"YulFunctionCall","src":"17568:64:81"},"nativeSrc":"17568:64:81","nodeType":"YulExpressionStatement","src":"17568:64:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17652:9:81","nodeType":"YulIdentifier","src":"17652:9:81"},{"kind":"number","nativeSrc":"17663:4:81","nodeType":"YulLiteral","src":"17663:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"17648:3:81","nodeType":"YulIdentifier","src":"17648:3:81"},"nativeSrc":"17648:20:81","nodeType":"YulFunctionCall","src":"17648:20:81"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17684:6:81","nodeType":"YulIdentifier","src":"17684:6:81"},{"kind":"number","nativeSrc":"17692:4:81","nodeType":"YulLiteral","src":"17692:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"17680:3:81","nodeType":"YulIdentifier","src":"17680:3:81"},"nativeSrc":"17680:17:81","nodeType":"YulFunctionCall","src":"17680:17:81"}],"functionName":{"name":"mload","nativeSrc":"17674:5:81","nodeType":"YulIdentifier","src":"17674:5:81"},"nativeSrc":"17674:24:81","nodeType":"YulFunctionCall","src":"17674:24:81"},{"kind":"number","nativeSrc":"17700:26:81","nodeType":"YulLiteral","src":"17700:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17670:3:81","nodeType":"YulIdentifier","src":"17670:3:81"},"nativeSrc":"17670:57:81","nodeType":"YulFunctionCall","src":"17670:57:81"}],"functionName":{"name":"mstore","nativeSrc":"17641:6:81","nodeType":"YulIdentifier","src":"17641:6:81"},"nativeSrc":"17641:87:81","nodeType":"YulFunctionCall","src":"17641:87:81"},"nativeSrc":"17641:87:81","nodeType":"YulExpressionStatement","src":"17641:87:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17748:9:81","nodeType":"YulIdentifier","src":"17748:9:81"},{"kind":"number","nativeSrc":"17759:4:81","nodeType":"YulLiteral","src":"17759:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"17744:3:81","nodeType":"YulIdentifier","src":"17744:3:81"},"nativeSrc":"17744:20:81","nodeType":"YulFunctionCall","src":"17744:20:81"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17780:6:81","nodeType":"YulIdentifier","src":"17780:6:81"},{"kind":"number","nativeSrc":"17788:4:81","nodeType":"YulLiteral","src":"17788:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"17776:3:81","nodeType":"YulIdentifier","src":"17776:3:81"},"nativeSrc":"17776:17:81","nodeType":"YulFunctionCall","src":"17776:17:81"}],"functionName":{"name":"mload","nativeSrc":"17770:5:81","nodeType":"YulIdentifier","src":"17770:5:81"},"nativeSrc":"17770:24:81","nodeType":"YulFunctionCall","src":"17770:24:81"},{"kind":"number","nativeSrc":"17796:26:81","nodeType":"YulLiteral","src":"17796:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17766:3:81","nodeType":"YulIdentifier","src":"17766:3:81"},"nativeSrc":"17766:57:81","nodeType":"YulFunctionCall","src":"17766:57:81"}],"functionName":{"name":"mstore","nativeSrc":"17737:6:81","nodeType":"YulIdentifier","src":"17737:6:81"},"nativeSrc":"17737:87:81","nodeType":"YulFunctionCall","src":"17737:87:81"},"nativeSrc":"17737:87:81","nodeType":"YulExpressionStatement","src":"17737:87:81"}]},"name":"abi_encode_tuple_t_struct$_TargetConfig_$23009_memory_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed","nativeSrc":"17248:582:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17380:9:81","nodeType":"YulTypedName","src":"17380:9:81","type":""},{"name":"value0","nativeSrc":"17391:6:81","nodeType":"YulTypedName","src":"17391:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17402:4:81","nodeType":"YulTypedName","src":"17402:4:81","type":""}],"src":"17248:582:81"},{"body":{"nativeSrc":"17996:715:81","nodeType":"YulBlock","src":"17996:715:81","statements":[{"body":{"nativeSrc":"18042:16:81","nodeType":"YulBlock","src":"18042:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18051:1:81","nodeType":"YulLiteral","src":"18051:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"18054:1:81","nodeType":"YulLiteral","src":"18054:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18044:6:81","nodeType":"YulIdentifier","src":"18044:6:81"},"nativeSrc":"18044:12:81","nodeType":"YulFunctionCall","src":"18044:12:81"},"nativeSrc":"18044:12:81","nodeType":"YulExpressionStatement","src":"18044:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18017:7:81","nodeType":"YulIdentifier","src":"18017:7:81"},{"name":"headStart","nativeSrc":"18026:9:81","nodeType":"YulIdentifier","src":"18026:9:81"}],"functionName":{"name":"sub","nativeSrc":"18013:3:81","nodeType":"YulIdentifier","src":"18013:3:81"},"nativeSrc":"18013:23:81","nodeType":"YulFunctionCall","src":"18013:23:81"},{"kind":"number","nativeSrc":"18038:2:81","nodeType":"YulLiteral","src":"18038:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"18009:3:81","nodeType":"YulIdentifier","src":"18009:3:81"},"nativeSrc":"18009:32:81","nodeType":"YulFunctionCall","src":"18009:32:81"},"nativeSrc":"18006:52:81","nodeType":"YulIf","src":"18006:52:81"},{"nativeSrc":"18067:37:81","nodeType":"YulVariableDeclaration","src":"18067:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18094:9:81","nodeType":"YulIdentifier","src":"18094:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"18081:12:81","nodeType":"YulIdentifier","src":"18081:12:81"},"nativeSrc":"18081:23:81","nodeType":"YulFunctionCall","src":"18081:23:81"},"variables":[{"name":"offset","nativeSrc":"18071:6:81","nodeType":"YulTypedName","src":"18071:6:81","type":""}]},{"body":{"nativeSrc":"18147:16:81","nodeType":"YulBlock","src":"18147:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18156:1:81","nodeType":"YulLiteral","src":"18156:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"18159:1:81","nodeType":"YulLiteral","src":"18159:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18149:6:81","nodeType":"YulIdentifier","src":"18149:6:81"},"nativeSrc":"18149:12:81","nodeType":"YulFunctionCall","src":"18149:12:81"},"nativeSrc":"18149:12:81","nodeType":"YulExpressionStatement","src":"18149:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"18119:6:81","nodeType":"YulIdentifier","src":"18119:6:81"},{"kind":"number","nativeSrc":"18127:18:81","nodeType":"YulLiteral","src":"18127:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"18116:2:81","nodeType":"YulIdentifier","src":"18116:2:81"},"nativeSrc":"18116:30:81","nodeType":"YulFunctionCall","src":"18116:30:81"},"nativeSrc":"18113:50:81","nodeType":"YulIf","src":"18113:50:81"},{"nativeSrc":"18172:84:81","nodeType":"YulVariableDeclaration","src":"18172:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18228:9:81","nodeType":"YulIdentifier","src":"18228:9:81"},{"name":"offset","nativeSrc":"18239:6:81","nodeType":"YulIdentifier","src":"18239:6:81"}],"functionName":{"name":"add","nativeSrc":"18224:3:81","nodeType":"YulIdentifier","src":"18224:3:81"},"nativeSrc":"18224:22:81","nodeType":"YulFunctionCall","src":"18224:22:81"},{"name":"dataEnd","nativeSrc":"18248:7:81","nodeType":"YulIdentifier","src":"18248:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"18198:25:81","nodeType":"YulIdentifier","src":"18198:25:81"},"nativeSrc":"18198:58:81","nodeType":"YulFunctionCall","src":"18198:58:81"},"variables":[{"name":"value0_1","nativeSrc":"18176:8:81","nodeType":"YulTypedName","src":"18176:8:81","type":""},{"name":"value1_1","nativeSrc":"18186:8:81","nodeType":"YulTypedName","src":"18186:8:81","type":""}]},{"nativeSrc":"18265:18:81","nodeType":"YulAssignment","src":"18265:18:81","value":{"name":"value0_1","nativeSrc":"18275:8:81","nodeType":"YulIdentifier","src":"18275:8:81"},"variableNames":[{"name":"value0","nativeSrc":"18265:6:81","nodeType":"YulIdentifier","src":"18265:6:81"}]},{"nativeSrc":"18292:18:81","nodeType":"YulAssignment","src":"18292:18:81","value":{"name":"value1_1","nativeSrc":"18302:8:81","nodeType":"YulIdentifier","src":"18302:8:81"},"variableNames":[{"name":"value1","nativeSrc":"18292:6:81","nodeType":"YulIdentifier","src":"18292:6:81"}]},{"nativeSrc":"18319:48:81","nodeType":"YulVariableDeclaration","src":"18319:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18352:9:81","nodeType":"YulIdentifier","src":"18352:9:81"},{"kind":"number","nativeSrc":"18363:2:81","nodeType":"YulLiteral","src":"18363:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18348:3:81","nodeType":"YulIdentifier","src":"18348:3:81"},"nativeSrc":"18348:18:81","nodeType":"YulFunctionCall","src":"18348:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"18335:12:81","nodeType":"YulIdentifier","src":"18335:12:81"},"nativeSrc":"18335:32:81","nodeType":"YulFunctionCall","src":"18335:32:81"},"variables":[{"name":"offset_1","nativeSrc":"18323:8:81","nodeType":"YulTypedName","src":"18323:8:81","type":""}]},{"body":{"nativeSrc":"18412:16:81","nodeType":"YulBlock","src":"18412:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18421:1:81","nodeType":"YulLiteral","src":"18421:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"18424:1:81","nodeType":"YulLiteral","src":"18424:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18414:6:81","nodeType":"YulIdentifier","src":"18414:6:81"},"nativeSrc":"18414:12:81","nodeType":"YulFunctionCall","src":"18414:12:81"},"nativeSrc":"18414:12:81","nodeType":"YulExpressionStatement","src":"18414:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"18382:8:81","nodeType":"YulIdentifier","src":"18382:8:81"},{"kind":"number","nativeSrc":"18392:18:81","nodeType":"YulLiteral","src":"18392:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"18379:2:81","nodeType":"YulIdentifier","src":"18379:2:81"},"nativeSrc":"18379:32:81","nodeType":"YulFunctionCall","src":"18379:32:81"},"nativeSrc":"18376:52:81","nodeType":"YulIf","src":"18376:52:81"},{"nativeSrc":"18437:86:81","nodeType":"YulVariableDeclaration","src":"18437:86:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18493:9:81","nodeType":"YulIdentifier","src":"18493:9:81"},{"name":"offset_1","nativeSrc":"18504:8:81","nodeType":"YulIdentifier","src":"18504:8:81"}],"functionName":{"name":"add","nativeSrc":"18489:3:81","nodeType":"YulIdentifier","src":"18489:3:81"},"nativeSrc":"18489:24:81","nodeType":"YulFunctionCall","src":"18489:24:81"},{"name":"dataEnd","nativeSrc":"18515:7:81","nodeType":"YulIdentifier","src":"18515:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"18463:25:81","nodeType":"YulIdentifier","src":"18463:25:81"},"nativeSrc":"18463:60:81","nodeType":"YulFunctionCall","src":"18463:60:81"},"variables":[{"name":"value2_1","nativeSrc":"18441:8:81","nodeType":"YulTypedName","src":"18441:8:81","type":""},{"name":"value3_1","nativeSrc":"18451:8:81","nodeType":"YulTypedName","src":"18451:8:81","type":""}]},{"nativeSrc":"18532:18:81","nodeType":"YulAssignment","src":"18532:18:81","value":{"name":"value2_1","nativeSrc":"18542:8:81","nodeType":"YulIdentifier","src":"18542:8:81"},"variableNames":[{"name":"value2","nativeSrc":"18532:6:81","nodeType":"YulIdentifier","src":"18532:6:81"}]},{"nativeSrc":"18559:18:81","nodeType":"YulAssignment","src":"18559:18:81","value":{"name":"value3_1","nativeSrc":"18569:8:81","nodeType":"YulIdentifier","src":"18569:8:81"},"variableNames":[{"name":"value3","nativeSrc":"18559:6:81","nodeType":"YulIdentifier","src":"18559:6:81"}]},{"nativeSrc":"18586:45:81","nodeType":"YulVariableDeclaration","src":"18586:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18616:9:81","nodeType":"YulIdentifier","src":"18616:9:81"},{"kind":"number","nativeSrc":"18627:2:81","nodeType":"YulLiteral","src":"18627:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18612:3:81","nodeType":"YulIdentifier","src":"18612:3:81"},"nativeSrc":"18612:18:81","nodeType":"YulFunctionCall","src":"18612:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"18599:12:81","nodeType":"YulIdentifier","src":"18599:12:81"},"nativeSrc":"18599:32:81","nodeType":"YulFunctionCall","src":"18599:32:81"},"variables":[{"name":"value","nativeSrc":"18590:5:81","nodeType":"YulTypedName","src":"18590:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18675:5:81","nodeType":"YulIdentifier","src":"18675:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"18640:34:81","nodeType":"YulIdentifier","src":"18640:34:81"},"nativeSrc":"18640:41:81","nodeType":"YulFunctionCall","src":"18640:41:81"},"nativeSrc":"18640:41:81","nodeType":"YulExpressionStatement","src":"18640:41:81"},{"nativeSrc":"18690:15:81","nodeType":"YulAssignment","src":"18690:15:81","value":{"name":"value","nativeSrc":"18700:5:81","nodeType":"YulIdentifier","src":"18700:5:81"},"variableNames":[{"name":"value4","nativeSrc":"18690:6:81","nodeType":"YulIdentifier","src":"18690:6:81"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptrt_contract$_IERC4626_$9796","nativeSrc":"17835:876:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17930:9:81","nodeType":"YulTypedName","src":"17930:9:81","type":""},{"name":"dataEnd","nativeSrc":"17941:7:81","nodeType":"YulTypedName","src":"17941:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17953:6:81","nodeType":"YulTypedName","src":"17953:6:81","type":""},{"name":"value1","nativeSrc":"17961:6:81","nodeType":"YulTypedName","src":"17961:6:81","type":""},{"name":"value2","nativeSrc":"17969:6:81","nodeType":"YulTypedName","src":"17969:6:81","type":""},{"name":"value3","nativeSrc":"17977:6:81","nodeType":"YulTypedName","src":"17977:6:81","type":""},{"name":"value4","nativeSrc":"17985:6:81","nodeType":"YulTypedName","src":"17985:6:81","type":""}],"src":"17835:876:81"},{"body":{"nativeSrc":"18834:102:81","nodeType":"YulBlock","src":"18834:102:81","statements":[{"nativeSrc":"18844:26:81","nodeType":"YulAssignment","src":"18844:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18856:9:81","nodeType":"YulIdentifier","src":"18856:9:81"},{"kind":"number","nativeSrc":"18867:2:81","nodeType":"YulLiteral","src":"18867:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18852:3:81","nodeType":"YulIdentifier","src":"18852:3:81"},"nativeSrc":"18852:18:81","nodeType":"YulFunctionCall","src":"18852:18:81"},"variableNames":[{"name":"tail","nativeSrc":"18844:4:81","nodeType":"YulIdentifier","src":"18844:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18886:9:81","nodeType":"YulIdentifier","src":"18886:9:81"},{"arguments":[{"name":"value0","nativeSrc":"18901:6:81","nodeType":"YulIdentifier","src":"18901:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18917:3:81","nodeType":"YulLiteral","src":"18917:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"18922:1:81","nodeType":"YulLiteral","src":"18922:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18913:3:81","nodeType":"YulIdentifier","src":"18913:3:81"},"nativeSrc":"18913:11:81","nodeType":"YulFunctionCall","src":"18913:11:81"},{"kind":"number","nativeSrc":"18926:1:81","nodeType":"YulLiteral","src":"18926:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18909:3:81","nodeType":"YulIdentifier","src":"18909:3:81"},"nativeSrc":"18909:19:81","nodeType":"YulFunctionCall","src":"18909:19:81"}],"functionName":{"name":"and","nativeSrc":"18897:3:81","nodeType":"YulIdentifier","src":"18897:3:81"},"nativeSrc":"18897:32:81","nodeType":"YulFunctionCall","src":"18897:32:81"}],"functionName":{"name":"mstore","nativeSrc":"18879:6:81","nodeType":"YulIdentifier","src":"18879:6:81"},"nativeSrc":"18879:51:81","nodeType":"YulFunctionCall","src":"18879:51:81"},"nativeSrc":"18879:51:81","nodeType":"YulExpressionStatement","src":"18879:51:81"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$9796__to_t_address__fromStack_reversed","nativeSrc":"18716:220:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18803:9:81","nodeType":"YulTypedName","src":"18803:9:81","type":""},{"name":"value0","nativeSrc":"18814:6:81","nodeType":"YulTypedName","src":"18814:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18825:4:81","nodeType":"YulTypedName","src":"18825:4:81","type":""}],"src":"18716:220:81"},{"body":{"nativeSrc":"19045:424:81","nodeType":"YulBlock","src":"19045:424:81","statements":[{"body":{"nativeSrc":"19091:16:81","nodeType":"YulBlock","src":"19091:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19100:1:81","nodeType":"YulLiteral","src":"19100:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"19103:1:81","nodeType":"YulLiteral","src":"19103:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19093:6:81","nodeType":"YulIdentifier","src":"19093:6:81"},"nativeSrc":"19093:12:81","nodeType":"YulFunctionCall","src":"19093:12:81"},"nativeSrc":"19093:12:81","nodeType":"YulExpressionStatement","src":"19093:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19066:7:81","nodeType":"YulIdentifier","src":"19066:7:81"},{"name":"headStart","nativeSrc":"19075:9:81","nodeType":"YulIdentifier","src":"19075:9:81"}],"functionName":{"name":"sub","nativeSrc":"19062:3:81","nodeType":"YulIdentifier","src":"19062:3:81"},"nativeSrc":"19062:23:81","nodeType":"YulFunctionCall","src":"19062:23:81"},{"kind":"number","nativeSrc":"19087:2:81","nodeType":"YulLiteral","src":"19087:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"19058:3:81","nodeType":"YulIdentifier","src":"19058:3:81"},"nativeSrc":"19058:32:81","nodeType":"YulFunctionCall","src":"19058:32:81"},"nativeSrc":"19055:52:81","nodeType":"YulIf","src":"19055:52:81"},{"nativeSrc":"19116:14:81","nodeType":"YulVariableDeclaration","src":"19116:14:81","value":{"kind":"number","nativeSrc":"19129:1:81","nodeType":"YulLiteral","src":"19129:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"19120:5:81","nodeType":"YulTypedName","src":"19120:5:81","type":""}]},{"nativeSrc":"19139:32:81","nodeType":"YulAssignment","src":"19139:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19161:9:81","nodeType":"YulIdentifier","src":"19161:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"19148:12:81","nodeType":"YulIdentifier","src":"19148:12:81"},"nativeSrc":"19148:23:81","nodeType":"YulFunctionCall","src":"19148:23:81"},"variableNames":[{"name":"value","nativeSrc":"19139:5:81","nodeType":"YulIdentifier","src":"19139:5:81"}]},{"nativeSrc":"19180:15:81","nodeType":"YulAssignment","src":"19180:15:81","value":{"name":"value","nativeSrc":"19190:5:81","nodeType":"YulIdentifier","src":"19190:5:81"},"variableNames":[{"name":"value0","nativeSrc":"19180:6:81","nodeType":"YulIdentifier","src":"19180:6:81"}]},{"nativeSrc":"19204:47:81","nodeType":"YulVariableDeclaration","src":"19204:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19236:9:81","nodeType":"YulIdentifier","src":"19236:9:81"},{"kind":"number","nativeSrc":"19247:2:81","nodeType":"YulLiteral","src":"19247:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19232:3:81","nodeType":"YulIdentifier","src":"19232:3:81"},"nativeSrc":"19232:18:81","nodeType":"YulFunctionCall","src":"19232:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"19219:12:81","nodeType":"YulIdentifier","src":"19219:12:81"},"nativeSrc":"19219:32:81","nodeType":"YulFunctionCall","src":"19219:32:81"},"variables":[{"name":"value_1","nativeSrc":"19208:7:81","nodeType":"YulTypedName","src":"19208:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"19295:7:81","nodeType":"YulIdentifier","src":"19295:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19260:34:81","nodeType":"YulIdentifier","src":"19260:34:81"},"nativeSrc":"19260:43:81","nodeType":"YulFunctionCall","src":"19260:43:81"},"nativeSrc":"19260:43:81","nodeType":"YulExpressionStatement","src":"19260:43:81"},{"nativeSrc":"19312:17:81","nodeType":"YulAssignment","src":"19312:17:81","value":{"name":"value_1","nativeSrc":"19322:7:81","nodeType":"YulIdentifier","src":"19322:7:81"},"variableNames":[{"name":"value1","nativeSrc":"19312:6:81","nodeType":"YulIdentifier","src":"19312:6:81"}]},{"nativeSrc":"19338:47:81","nodeType":"YulVariableDeclaration","src":"19338:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19370:9:81","nodeType":"YulIdentifier","src":"19370:9:81"},{"kind":"number","nativeSrc":"19381:2:81","nodeType":"YulLiteral","src":"19381:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19366:3:81","nodeType":"YulIdentifier","src":"19366:3:81"},"nativeSrc":"19366:18:81","nodeType":"YulFunctionCall","src":"19366:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"19353:12:81","nodeType":"YulIdentifier","src":"19353:12:81"},"nativeSrc":"19353:32:81","nodeType":"YulFunctionCall","src":"19353:32:81"},"variables":[{"name":"value_2","nativeSrc":"19342:7:81","nodeType":"YulTypedName","src":"19342:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"19429:7:81","nodeType":"YulIdentifier","src":"19429:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19394:34:81","nodeType":"YulIdentifier","src":"19394:34:81"},"nativeSrc":"19394:43:81","nodeType":"YulFunctionCall","src":"19394:43:81"},"nativeSrc":"19394:43:81","nodeType":"YulExpressionStatement","src":"19394:43:81"},{"nativeSrc":"19446:17:81","nodeType":"YulAssignment","src":"19446:17:81","value":{"name":"value_2","nativeSrc":"19456:7:81","nodeType":"YulIdentifier","src":"19456:7:81"},"variableNames":[{"name":"value2","nativeSrc":"19446:6:81","nodeType":"YulIdentifier","src":"19446:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"18941:528:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18995:9:81","nodeType":"YulTypedName","src":"18995:9:81","type":""},{"name":"dataEnd","nativeSrc":"19006:7:81","nodeType":"YulTypedName","src":"19006:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19018:6:81","nodeType":"YulTypedName","src":"19018:6:81","type":""},{"name":"value1","nativeSrc":"19026:6:81","nodeType":"YulTypedName","src":"19026:6:81","type":""},{"name":"value2","nativeSrc":"19034:6:81","nodeType":"YulTypedName","src":"19034:6:81","type":""}],"src":"18941:528:81"},{"body":{"nativeSrc":"19601:587:81","nodeType":"YulBlock","src":"19601:587:81","statements":[{"body":{"nativeSrc":"19647:16:81","nodeType":"YulBlock","src":"19647:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19656:1:81","nodeType":"YulLiteral","src":"19656:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"19659:1:81","nodeType":"YulLiteral","src":"19659:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19649:6:81","nodeType":"YulIdentifier","src":"19649:6:81"},"nativeSrc":"19649:12:81","nodeType":"YulFunctionCall","src":"19649:12:81"},"nativeSrc":"19649:12:81","nodeType":"YulExpressionStatement","src":"19649:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19622:7:81","nodeType":"YulIdentifier","src":"19622:7:81"},{"name":"headStart","nativeSrc":"19631:9:81","nodeType":"YulIdentifier","src":"19631:9:81"}],"functionName":{"name":"sub","nativeSrc":"19618:3:81","nodeType":"YulIdentifier","src":"19618:3:81"},"nativeSrc":"19618:23:81","nodeType":"YulFunctionCall","src":"19618:23:81"},{"kind":"number","nativeSrc":"19643:2:81","nodeType":"YulLiteral","src":"19643:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"19614:3:81","nodeType":"YulIdentifier","src":"19614:3:81"},"nativeSrc":"19614:32:81","nodeType":"YulFunctionCall","src":"19614:32:81"},"nativeSrc":"19611:52:81","nodeType":"YulIf","src":"19611:52:81"},{"nativeSrc":"19672:37:81","nodeType":"YulVariableDeclaration","src":"19672:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19699:9:81","nodeType":"YulIdentifier","src":"19699:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"19686:12:81","nodeType":"YulIdentifier","src":"19686:12:81"},"nativeSrc":"19686:23:81","nodeType":"YulFunctionCall","src":"19686:23:81"},"variables":[{"name":"offset","nativeSrc":"19676:6:81","nodeType":"YulTypedName","src":"19676:6:81","type":""}]},{"body":{"nativeSrc":"19752:16:81","nodeType":"YulBlock","src":"19752:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19761:1:81","nodeType":"YulLiteral","src":"19761:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"19764:1:81","nodeType":"YulLiteral","src":"19764:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19754:6:81","nodeType":"YulIdentifier","src":"19754:6:81"},"nativeSrc":"19754:12:81","nodeType":"YulFunctionCall","src":"19754:12:81"},"nativeSrc":"19754:12:81","nodeType":"YulExpressionStatement","src":"19754:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"19724:6:81","nodeType":"YulIdentifier","src":"19724:6:81"},{"kind":"number","nativeSrc":"19732:18:81","nodeType":"YulLiteral","src":"19732:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19721:2:81","nodeType":"YulIdentifier","src":"19721:2:81"},"nativeSrc":"19721:30:81","nodeType":"YulFunctionCall","src":"19721:30:81"},"nativeSrc":"19718:50:81","nodeType":"YulIf","src":"19718:50:81"},{"nativeSrc":"19777:84:81","nodeType":"YulVariableDeclaration","src":"19777:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19833:9:81","nodeType":"YulIdentifier","src":"19833:9:81"},{"name":"offset","nativeSrc":"19844:6:81","nodeType":"YulIdentifier","src":"19844:6:81"}],"functionName":{"name":"add","nativeSrc":"19829:3:81","nodeType":"YulIdentifier","src":"19829:3:81"},"nativeSrc":"19829:22:81","nodeType":"YulFunctionCall","src":"19829:22:81"},{"name":"dataEnd","nativeSrc":"19853:7:81","nodeType":"YulIdentifier","src":"19853:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"19803:25:81","nodeType":"YulIdentifier","src":"19803:25:81"},"nativeSrc":"19803:58:81","nodeType":"YulFunctionCall","src":"19803:58:81"},"variables":[{"name":"value0_1","nativeSrc":"19781:8:81","nodeType":"YulTypedName","src":"19781:8:81","type":""},{"name":"value1_1","nativeSrc":"19791:8:81","nodeType":"YulTypedName","src":"19791:8:81","type":""}]},{"nativeSrc":"19870:18:81","nodeType":"YulAssignment","src":"19870:18:81","value":{"name":"value0_1","nativeSrc":"19880:8:81","nodeType":"YulIdentifier","src":"19880:8:81"},"variableNames":[{"name":"value0","nativeSrc":"19870:6:81","nodeType":"YulIdentifier","src":"19870:6:81"}]},{"nativeSrc":"19897:18:81","nodeType":"YulAssignment","src":"19897:18:81","value":{"name":"value1_1","nativeSrc":"19907:8:81","nodeType":"YulIdentifier","src":"19907:8:81"},"variableNames":[{"name":"value1","nativeSrc":"19897:6:81","nodeType":"YulIdentifier","src":"19897:6:81"}]},{"nativeSrc":"19924:48:81","nodeType":"YulVariableDeclaration","src":"19924:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19957:9:81","nodeType":"YulIdentifier","src":"19957:9:81"},{"kind":"number","nativeSrc":"19968:2:81","nodeType":"YulLiteral","src":"19968:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19953:3:81","nodeType":"YulIdentifier","src":"19953:3:81"},"nativeSrc":"19953:18:81","nodeType":"YulFunctionCall","src":"19953:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"19940:12:81","nodeType":"YulIdentifier","src":"19940:12:81"},"nativeSrc":"19940:32:81","nodeType":"YulFunctionCall","src":"19940:32:81"},"variables":[{"name":"offset_1","nativeSrc":"19928:8:81","nodeType":"YulTypedName","src":"19928:8:81","type":""}]},{"body":{"nativeSrc":"20017:16:81","nodeType":"YulBlock","src":"20017:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20026:1:81","nodeType":"YulLiteral","src":"20026:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"20029:1:81","nodeType":"YulLiteral","src":"20029:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20019:6:81","nodeType":"YulIdentifier","src":"20019:6:81"},"nativeSrc":"20019:12:81","nodeType":"YulFunctionCall","src":"20019:12:81"},"nativeSrc":"20019:12:81","nodeType":"YulExpressionStatement","src":"20019:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"19987:8:81","nodeType":"YulIdentifier","src":"19987:8:81"},{"kind":"number","nativeSrc":"19997:18:81","nodeType":"YulLiteral","src":"19997:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19984:2:81","nodeType":"YulIdentifier","src":"19984:2:81"},"nativeSrc":"19984:32:81","nodeType":"YulFunctionCall","src":"19984:32:81"},"nativeSrc":"19981:52:81","nodeType":"YulIf","src":"19981:52:81"},{"nativeSrc":"20042:86:81","nodeType":"YulVariableDeclaration","src":"20042:86:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20098:9:81","nodeType":"YulIdentifier","src":"20098:9:81"},{"name":"offset_1","nativeSrc":"20109:8:81","nodeType":"YulIdentifier","src":"20109:8:81"}],"functionName":{"name":"add","nativeSrc":"20094:3:81","nodeType":"YulIdentifier","src":"20094:3:81"},"nativeSrc":"20094:24:81","nodeType":"YulFunctionCall","src":"20094:24:81"},{"name":"dataEnd","nativeSrc":"20120:7:81","nodeType":"YulIdentifier","src":"20120:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"20068:25:81","nodeType":"YulIdentifier","src":"20068:25:81"},"nativeSrc":"20068:60:81","nodeType":"YulFunctionCall","src":"20068:60:81"},"variables":[{"name":"value2_1","nativeSrc":"20046:8:81","nodeType":"YulTypedName","src":"20046:8:81","type":""},{"name":"value3_1","nativeSrc":"20056:8:81","nodeType":"YulTypedName","src":"20056:8:81","type":""}]},{"nativeSrc":"20137:18:81","nodeType":"YulAssignment","src":"20137:18:81","value":{"name":"value2_1","nativeSrc":"20147:8:81","nodeType":"YulIdentifier","src":"20147:8:81"},"variableNames":[{"name":"value2","nativeSrc":"20137:6:81","nodeType":"YulIdentifier","src":"20137:6:81"}]},{"nativeSrc":"20164:18:81","nodeType":"YulAssignment","src":"20164:18:81","value":{"name":"value3_1","nativeSrc":"20174:8:81","nodeType":"YulIdentifier","src":"20174:8:81"},"variableNames":[{"name":"value3","nativeSrc":"20164:6:81","nodeType":"YulIdentifier","src":"20164:6:81"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptr","nativeSrc":"19474:714:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19543:9:81","nodeType":"YulTypedName","src":"19543:9:81","type":""},{"name":"dataEnd","nativeSrc":"19554:7:81","nodeType":"YulTypedName","src":"19554:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19566:6:81","nodeType":"YulTypedName","src":"19566:6:81","type":""},{"name":"value1","nativeSrc":"19574:6:81","nodeType":"YulTypedName","src":"19574:6:81","type":""},{"name":"value2","nativeSrc":"19582:6:81","nodeType":"YulTypedName","src":"19582:6:81","type":""},{"name":"value3","nativeSrc":"19590:6:81","nodeType":"YulTypedName","src":"19590:6:81","type":""}],"src":"19474:714:81"},{"body":{"nativeSrc":"20297:393:81","nodeType":"YulBlock","src":"20297:393:81","statements":[{"body":{"nativeSrc":"20343:16:81","nodeType":"YulBlock","src":"20343:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20352:1:81","nodeType":"YulLiteral","src":"20352:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"20355:1:81","nodeType":"YulLiteral","src":"20355:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20345:6:81","nodeType":"YulIdentifier","src":"20345:6:81"},"nativeSrc":"20345:12:81","nodeType":"YulFunctionCall","src":"20345:12:81"},"nativeSrc":"20345:12:81","nodeType":"YulExpressionStatement","src":"20345:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20318:7:81","nodeType":"YulIdentifier","src":"20318:7:81"},{"name":"headStart","nativeSrc":"20327:9:81","nodeType":"YulIdentifier","src":"20327:9:81"}],"functionName":{"name":"sub","nativeSrc":"20314:3:81","nodeType":"YulIdentifier","src":"20314:3:81"},"nativeSrc":"20314:23:81","nodeType":"YulFunctionCall","src":"20314:23:81"},{"kind":"number","nativeSrc":"20339:2:81","nodeType":"YulLiteral","src":"20339:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"20310:3:81","nodeType":"YulIdentifier","src":"20310:3:81"},"nativeSrc":"20310:32:81","nodeType":"YulFunctionCall","src":"20310:32:81"},"nativeSrc":"20307:52:81","nodeType":"YulIf","src":"20307:52:81"},{"nativeSrc":"20368:36:81","nodeType":"YulVariableDeclaration","src":"20368:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20394:9:81","nodeType":"YulIdentifier","src":"20394:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"20381:12:81","nodeType":"YulIdentifier","src":"20381:12:81"},"nativeSrc":"20381:23:81","nodeType":"YulFunctionCall","src":"20381:23:81"},"variables":[{"name":"value","nativeSrc":"20372:5:81","nodeType":"YulTypedName","src":"20372:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20448:5:81","nodeType":"YulIdentifier","src":"20448:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20413:34:81","nodeType":"YulIdentifier","src":"20413:34:81"},"nativeSrc":"20413:41:81","nodeType":"YulFunctionCall","src":"20413:41:81"},"nativeSrc":"20413:41:81","nodeType":"YulExpressionStatement","src":"20413:41:81"},{"nativeSrc":"20463:15:81","nodeType":"YulAssignment","src":"20463:15:81","value":{"name":"value","nativeSrc":"20473:5:81","nodeType":"YulIdentifier","src":"20473:5:81"},"variableNames":[{"name":"value0","nativeSrc":"20463:6:81","nodeType":"YulIdentifier","src":"20463:6:81"}]},{"nativeSrc":"20487:16:81","nodeType":"YulVariableDeclaration","src":"20487:16:81","value":{"kind":"number","nativeSrc":"20502:1:81","nodeType":"YulLiteral","src":"20502:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"20491:7:81","nodeType":"YulTypedName","src":"20491:7:81","type":""}]},{"nativeSrc":"20512:43:81","nodeType":"YulAssignment","src":"20512:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20540:9:81","nodeType":"YulIdentifier","src":"20540:9:81"},{"kind":"number","nativeSrc":"20551:2:81","nodeType":"YulLiteral","src":"20551:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20536:3:81","nodeType":"YulIdentifier","src":"20536:3:81"},"nativeSrc":"20536:18:81","nodeType":"YulFunctionCall","src":"20536:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"20523:12:81","nodeType":"YulIdentifier","src":"20523:12:81"},"nativeSrc":"20523:32:81","nodeType":"YulFunctionCall","src":"20523:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"20512:7:81","nodeType":"YulIdentifier","src":"20512:7:81"}]},{"nativeSrc":"20564:17:81","nodeType":"YulAssignment","src":"20564:17:81","value":{"name":"value_1","nativeSrc":"20574:7:81","nodeType":"YulIdentifier","src":"20574:7:81"},"variableNames":[{"name":"value1","nativeSrc":"20564:6:81","nodeType":"YulIdentifier","src":"20564:6:81"}]},{"nativeSrc":"20590:16:81","nodeType":"YulVariableDeclaration","src":"20590:16:81","value":{"kind":"number","nativeSrc":"20605:1:81","nodeType":"YulLiteral","src":"20605:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"20594:7:81","nodeType":"YulTypedName","src":"20594:7:81","type":""}]},{"nativeSrc":"20615:43:81","nodeType":"YulAssignment","src":"20615:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20643:9:81","nodeType":"YulIdentifier","src":"20643:9:81"},{"kind":"number","nativeSrc":"20654:2:81","nodeType":"YulLiteral","src":"20654:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20639:3:81","nodeType":"YulIdentifier","src":"20639:3:81"},"nativeSrc":"20639:18:81","nodeType":"YulFunctionCall","src":"20639:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"20626:12:81","nodeType":"YulIdentifier","src":"20626:12:81"},"nativeSrc":"20626:32:81","nodeType":"YulFunctionCall","src":"20626:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"20615:7:81","nodeType":"YulIdentifier","src":"20615:7:81"}]},{"nativeSrc":"20667:17:81","nodeType":"YulAssignment","src":"20667:17:81","value":{"name":"value_2","nativeSrc":"20677:7:81","nodeType":"YulIdentifier","src":"20677:7:81"},"variableNames":[{"name":"value2","nativeSrc":"20667:6:81","nodeType":"YulIdentifier","src":"20667:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nativeSrc":"20193:497:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20247:9:81","nodeType":"YulTypedName","src":"20247:9:81","type":""},{"name":"dataEnd","nativeSrc":"20258:7:81","nodeType":"YulTypedName","src":"20258:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"20270:6:81","nodeType":"YulTypedName","src":"20270:6:81","type":""},{"name":"value1","nativeSrc":"20278:6:81","nodeType":"YulTypedName","src":"20278:6:81","type":""},{"name":"value2","nativeSrc":"20286:6:81","nodeType":"YulTypedName","src":"20286:6:81","type":""}],"src":"20193:497:81"},{"body":{"nativeSrc":"20815:517:81","nodeType":"YulBlock","src":"20815:517:81","statements":[{"body":{"nativeSrc":"20862:16:81","nodeType":"YulBlock","src":"20862:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20871:1:81","nodeType":"YulLiteral","src":"20871:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"20874:1:81","nodeType":"YulLiteral","src":"20874:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20864:6:81","nodeType":"YulIdentifier","src":"20864:6:81"},"nativeSrc":"20864:12:81","nodeType":"YulFunctionCall","src":"20864:12:81"},"nativeSrc":"20864:12:81","nodeType":"YulExpressionStatement","src":"20864:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20836:7:81","nodeType":"YulIdentifier","src":"20836:7:81"},{"name":"headStart","nativeSrc":"20845:9:81","nodeType":"YulIdentifier","src":"20845:9:81"}],"functionName":{"name":"sub","nativeSrc":"20832:3:81","nodeType":"YulIdentifier","src":"20832:3:81"},"nativeSrc":"20832:23:81","nodeType":"YulFunctionCall","src":"20832:23:81"},{"kind":"number","nativeSrc":"20857:3:81","nodeType":"YulLiteral","src":"20857:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"20828:3:81","nodeType":"YulIdentifier","src":"20828:3:81"},"nativeSrc":"20828:33:81","nodeType":"YulFunctionCall","src":"20828:33:81"},"nativeSrc":"20825:53:81","nodeType":"YulIf","src":"20825:53:81"},{"nativeSrc":"20887:36:81","nodeType":"YulVariableDeclaration","src":"20887:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20913:9:81","nodeType":"YulIdentifier","src":"20913:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"20900:12:81","nodeType":"YulIdentifier","src":"20900:12:81"},"nativeSrc":"20900:23:81","nodeType":"YulFunctionCall","src":"20900:23:81"},"variables":[{"name":"value","nativeSrc":"20891:5:81","nodeType":"YulTypedName","src":"20891:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20967:5:81","nodeType":"YulIdentifier","src":"20967:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20932:34:81","nodeType":"YulIdentifier","src":"20932:34:81"},"nativeSrc":"20932:41:81","nodeType":"YulFunctionCall","src":"20932:41:81"},"nativeSrc":"20932:41:81","nodeType":"YulExpressionStatement","src":"20932:41:81"},{"nativeSrc":"20982:15:81","nodeType":"YulAssignment","src":"20982:15:81","value":{"name":"value","nativeSrc":"20992:5:81","nodeType":"YulIdentifier","src":"20992:5:81"},"variableNames":[{"name":"value0","nativeSrc":"20982:6:81","nodeType":"YulIdentifier","src":"20982:6:81"}]},{"nativeSrc":"21006:47:81","nodeType":"YulVariableDeclaration","src":"21006:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21038:9:81","nodeType":"YulIdentifier","src":"21038:9:81"},{"kind":"number","nativeSrc":"21049:2:81","nodeType":"YulLiteral","src":"21049:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21034:3:81","nodeType":"YulIdentifier","src":"21034:3:81"},"nativeSrc":"21034:18:81","nodeType":"YulFunctionCall","src":"21034:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"21021:12:81","nodeType":"YulIdentifier","src":"21021:12:81"},"nativeSrc":"21021:32:81","nodeType":"YulFunctionCall","src":"21021:32:81"},"variables":[{"name":"value_1","nativeSrc":"21010:7:81","nodeType":"YulTypedName","src":"21010:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"21086:7:81","nodeType":"YulIdentifier","src":"21086:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"21062:23:81","nodeType":"YulIdentifier","src":"21062:23:81"},"nativeSrc":"21062:32:81","nodeType":"YulFunctionCall","src":"21062:32:81"},"nativeSrc":"21062:32:81","nodeType":"YulExpressionStatement","src":"21062:32:81"},{"nativeSrc":"21103:17:81","nodeType":"YulAssignment","src":"21103:17:81","value":{"name":"value_1","nativeSrc":"21113:7:81","nodeType":"YulIdentifier","src":"21113:7:81"},"variableNames":[{"name":"value1","nativeSrc":"21103:6:81","nodeType":"YulIdentifier","src":"21103:6:81"}]},{"nativeSrc":"21129:16:81","nodeType":"YulVariableDeclaration","src":"21129:16:81","value":{"kind":"number","nativeSrc":"21144:1:81","nodeType":"YulLiteral","src":"21144:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"21133:7:81","nodeType":"YulTypedName","src":"21133:7:81","type":""}]},{"nativeSrc":"21154:43:81","nodeType":"YulAssignment","src":"21154:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21182:9:81","nodeType":"YulIdentifier","src":"21182:9:81"},{"kind":"number","nativeSrc":"21193:2:81","nodeType":"YulLiteral","src":"21193:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21178:3:81","nodeType":"YulIdentifier","src":"21178:3:81"},"nativeSrc":"21178:18:81","nodeType":"YulFunctionCall","src":"21178:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"21165:12:81","nodeType":"YulIdentifier","src":"21165:12:81"},"nativeSrc":"21165:32:81","nodeType":"YulFunctionCall","src":"21165:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"21154:7:81","nodeType":"YulIdentifier","src":"21154:7:81"}]},{"nativeSrc":"21206:17:81","nodeType":"YulAssignment","src":"21206:17:81","value":{"name":"value_2","nativeSrc":"21216:7:81","nodeType":"YulIdentifier","src":"21216:7:81"},"variableNames":[{"name":"value2","nativeSrc":"21206:6:81","nodeType":"YulIdentifier","src":"21206:6:81"}]},{"nativeSrc":"21232:16:81","nodeType":"YulVariableDeclaration","src":"21232:16:81","value":{"kind":"number","nativeSrc":"21247:1:81","nodeType":"YulLiteral","src":"21247:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"21236:7:81","nodeType":"YulTypedName","src":"21236:7:81","type":""}]},{"nativeSrc":"21257:43:81","nodeType":"YulAssignment","src":"21257:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21285:9:81","nodeType":"YulIdentifier","src":"21285:9:81"},{"kind":"number","nativeSrc":"21296:2:81","nodeType":"YulLiteral","src":"21296:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21281:3:81","nodeType":"YulIdentifier","src":"21281:3:81"},"nativeSrc":"21281:18:81","nodeType":"YulFunctionCall","src":"21281:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"21268:12:81","nodeType":"YulIdentifier","src":"21268:12:81"},"nativeSrc":"21268:32:81","nodeType":"YulFunctionCall","src":"21268:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"21257:7:81","nodeType":"YulIdentifier","src":"21257:7:81"}]},{"nativeSrc":"21309:17:81","nodeType":"YulAssignment","src":"21309:17:81","value":{"name":"value_3","nativeSrc":"21319:7:81","nodeType":"YulIdentifier","src":"21319:7:81"},"variableNames":[{"name":"value3","nativeSrc":"21309:6:81","nodeType":"YulIdentifier","src":"21309:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256","nativeSrc":"20695:637:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20757:9:81","nodeType":"YulTypedName","src":"20757:9:81","type":""},{"name":"dataEnd","nativeSrc":"20768:7:81","nodeType":"YulTypedName","src":"20768:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"20780:6:81","nodeType":"YulTypedName","src":"20780:6:81","type":""},{"name":"value1","nativeSrc":"20788:6:81","nodeType":"YulTypedName","src":"20788:6:81","type":""},{"name":"value2","nativeSrc":"20796:6:81","nodeType":"YulTypedName","src":"20796:6:81","type":""},{"name":"value3","nativeSrc":"20804:6:81","nodeType":"YulTypedName","src":"20804:6:81","type":""}],"src":"20695:637:81"},{"body":{"nativeSrc":"21423:243:81","nodeType":"YulBlock","src":"21423:243:81","statements":[{"body":{"nativeSrc":"21469:16:81","nodeType":"YulBlock","src":"21469:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21478:1:81","nodeType":"YulLiteral","src":"21478:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"21481:1:81","nodeType":"YulLiteral","src":"21481:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21471:6:81","nodeType":"YulIdentifier","src":"21471:6:81"},"nativeSrc":"21471:12:81","nodeType":"YulFunctionCall","src":"21471:12:81"},"nativeSrc":"21471:12:81","nodeType":"YulExpressionStatement","src":"21471:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21444:7:81","nodeType":"YulIdentifier","src":"21444:7:81"},{"name":"headStart","nativeSrc":"21453:9:81","nodeType":"YulIdentifier","src":"21453:9:81"}],"functionName":{"name":"sub","nativeSrc":"21440:3:81","nodeType":"YulIdentifier","src":"21440:3:81"},"nativeSrc":"21440:23:81","nodeType":"YulFunctionCall","src":"21440:23:81"},{"kind":"number","nativeSrc":"21465:2:81","nodeType":"YulLiteral","src":"21465:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"21436:3:81","nodeType":"YulIdentifier","src":"21436:3:81"},"nativeSrc":"21436:32:81","nodeType":"YulFunctionCall","src":"21436:32:81"},"nativeSrc":"21433:52:81","nodeType":"YulIf","src":"21433:52:81"},{"nativeSrc":"21494:36:81","nodeType":"YulVariableDeclaration","src":"21494:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"21520:9:81","nodeType":"YulIdentifier","src":"21520:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"21507:12:81","nodeType":"YulIdentifier","src":"21507:12:81"},"nativeSrc":"21507:23:81","nodeType":"YulFunctionCall","src":"21507:23:81"},"variables":[{"name":"value","nativeSrc":"21498:5:81","nodeType":"YulTypedName","src":"21498:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21574:5:81","nodeType":"YulIdentifier","src":"21574:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"21539:34:81","nodeType":"YulIdentifier","src":"21539:34:81"},"nativeSrc":"21539:41:81","nodeType":"YulFunctionCall","src":"21539:41:81"},"nativeSrc":"21539:41:81","nodeType":"YulExpressionStatement","src":"21539:41:81"},{"nativeSrc":"21589:15:81","nodeType":"YulAssignment","src":"21589:15:81","value":{"name":"value","nativeSrc":"21599:5:81","nodeType":"YulIdentifier","src":"21599:5:81"},"variableNames":[{"name":"value0","nativeSrc":"21589:6:81","nodeType":"YulIdentifier","src":"21589:6:81"}]},{"nativeSrc":"21613:47:81","nodeType":"YulAssignment","src":"21613:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21645:9:81","nodeType":"YulIdentifier","src":"21645:9:81"},{"kind":"number","nativeSrc":"21656:2:81","nodeType":"YulLiteral","src":"21656:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21641:3:81","nodeType":"YulIdentifier","src":"21641:3:81"},"nativeSrc":"21641:18:81","nodeType":"YulFunctionCall","src":"21641:18:81"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"21623:17:81","nodeType":"YulIdentifier","src":"21623:17:81"},"nativeSrc":"21623:37:81","nodeType":"YulFunctionCall","src":"21623:37:81"},"variableNames":[{"name":"value1","nativeSrc":"21613:6:81","nodeType":"YulIdentifier","src":"21613:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"21337:329:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21381:9:81","nodeType":"YulTypedName","src":"21381:9:81","type":""},{"name":"dataEnd","nativeSrc":"21392:7:81","nodeType":"YulTypedName","src":"21392:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21404:6:81","nodeType":"YulTypedName","src":"21404:6:81","type":""},{"name":"value1","nativeSrc":"21412:6:81","nodeType":"YulTypedName","src":"21412:6:81","type":""}],"src":"21337:329:81"},{"body":{"nativeSrc":"21755:277:81","nodeType":"YulBlock","src":"21755:277:81","statements":[{"body":{"nativeSrc":"21801:16:81","nodeType":"YulBlock","src":"21801:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21810:1:81","nodeType":"YulLiteral","src":"21810:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"21813:1:81","nodeType":"YulLiteral","src":"21813:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21803:6:81","nodeType":"YulIdentifier","src":"21803:6:81"},"nativeSrc":"21803:12:81","nodeType":"YulFunctionCall","src":"21803:12:81"},"nativeSrc":"21803:12:81","nodeType":"YulExpressionStatement","src":"21803:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21776:7:81","nodeType":"YulIdentifier","src":"21776:7:81"},{"name":"headStart","nativeSrc":"21785:9:81","nodeType":"YulIdentifier","src":"21785:9:81"}],"functionName":{"name":"sub","nativeSrc":"21772:3:81","nodeType":"YulIdentifier","src":"21772:3:81"},"nativeSrc":"21772:23:81","nodeType":"YulFunctionCall","src":"21772:23:81"},{"kind":"number","nativeSrc":"21797:2:81","nodeType":"YulLiteral","src":"21797:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"21768:3:81","nodeType":"YulIdentifier","src":"21768:3:81"},"nativeSrc":"21768:32:81","nodeType":"YulFunctionCall","src":"21768:32:81"},"nativeSrc":"21765:52:81","nodeType":"YulIf","src":"21765:52:81"},{"nativeSrc":"21826:14:81","nodeType":"YulVariableDeclaration","src":"21826:14:81","value":{"kind":"number","nativeSrc":"21839:1:81","nodeType":"YulLiteral","src":"21839:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"21830:5:81","nodeType":"YulTypedName","src":"21830:5:81","type":""}]},{"nativeSrc":"21849:32:81","nodeType":"YulAssignment","src":"21849:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"21871:9:81","nodeType":"YulIdentifier","src":"21871:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"21858:12:81","nodeType":"YulIdentifier","src":"21858:12:81"},"nativeSrc":"21858:23:81","nodeType":"YulFunctionCall","src":"21858:23:81"},"variableNames":[{"name":"value","nativeSrc":"21849:5:81","nodeType":"YulIdentifier","src":"21849:5:81"}]},{"nativeSrc":"21890:15:81","nodeType":"YulAssignment","src":"21890:15:81","value":{"name":"value","nativeSrc":"21900:5:81","nodeType":"YulIdentifier","src":"21900:5:81"},"variableNames":[{"name":"value0","nativeSrc":"21890:6:81","nodeType":"YulIdentifier","src":"21890:6:81"}]},{"nativeSrc":"21914:47:81","nodeType":"YulVariableDeclaration","src":"21914:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21946:9:81","nodeType":"YulIdentifier","src":"21946:9:81"},{"kind":"number","nativeSrc":"21957:2:81","nodeType":"YulLiteral","src":"21957:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21942:3:81","nodeType":"YulIdentifier","src":"21942:3:81"},"nativeSrc":"21942:18:81","nodeType":"YulFunctionCall","src":"21942:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"21929:12:81","nodeType":"YulIdentifier","src":"21929:12:81"},"nativeSrc":"21929:32:81","nodeType":"YulFunctionCall","src":"21929:32:81"},"variables":[{"name":"value_1","nativeSrc":"21918:7:81","nodeType":"YulTypedName","src":"21918:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"21992:7:81","nodeType":"YulIdentifier","src":"21992:7:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"21970:21:81","nodeType":"YulIdentifier","src":"21970:21:81"},"nativeSrc":"21970:30:81","nodeType":"YulFunctionCall","src":"21970:30:81"},"nativeSrc":"21970:30:81","nodeType":"YulExpressionStatement","src":"21970:30:81"},{"nativeSrc":"22009:17:81","nodeType":"YulAssignment","src":"22009:17:81","value":{"name":"value_1","nativeSrc":"22019:7:81","nodeType":"YulIdentifier","src":"22019:7:81"},"variableNames":[{"name":"value1","nativeSrc":"22009:6:81","nodeType":"YulIdentifier","src":"22009:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_bool","nativeSrc":"21671:361:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21713:9:81","nodeType":"YulTypedName","src":"21713:9:81","type":""},{"name":"dataEnd","nativeSrc":"21724:7:81","nodeType":"YulTypedName","src":"21724:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21736:6:81","nodeType":"YulTypedName","src":"21736:6:81","type":""},{"name":"value1","nativeSrc":"21744:6:81","nodeType":"YulTypedName","src":"21744:6:81","type":""}],"src":"21671:361:81"},{"body":{"nativeSrc":"22155:485:81","nodeType":"YulBlock","src":"22155:485:81","statements":[{"body":{"nativeSrc":"22202:16:81","nodeType":"YulBlock","src":"22202:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22211:1:81","nodeType":"YulLiteral","src":"22211:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"22214:1:81","nodeType":"YulLiteral","src":"22214:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22204:6:81","nodeType":"YulIdentifier","src":"22204:6:81"},"nativeSrc":"22204:12:81","nodeType":"YulFunctionCall","src":"22204:12:81"},"nativeSrc":"22204:12:81","nodeType":"YulExpressionStatement","src":"22204:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22176:7:81","nodeType":"YulIdentifier","src":"22176:7:81"},{"name":"headStart","nativeSrc":"22185:9:81","nodeType":"YulIdentifier","src":"22185:9:81"}],"functionName":{"name":"sub","nativeSrc":"22172:3:81","nodeType":"YulIdentifier","src":"22172:3:81"},"nativeSrc":"22172:23:81","nodeType":"YulFunctionCall","src":"22172:23:81"},{"kind":"number","nativeSrc":"22197:3:81","nodeType":"YulLiteral","src":"22197:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"22168:3:81","nodeType":"YulIdentifier","src":"22168:3:81"},"nativeSrc":"22168:33:81","nodeType":"YulFunctionCall","src":"22168:33:81"},"nativeSrc":"22165:53:81","nodeType":"YulIf","src":"22165:53:81"},{"nativeSrc":"22227:36:81","nodeType":"YulVariableDeclaration","src":"22227:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22253:9:81","nodeType":"YulIdentifier","src":"22253:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"22240:12:81","nodeType":"YulIdentifier","src":"22240:12:81"},"nativeSrc":"22240:23:81","nodeType":"YulFunctionCall","src":"22240:23:81"},"variables":[{"name":"value","nativeSrc":"22231:5:81","nodeType":"YulTypedName","src":"22231:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22307:5:81","nodeType":"YulIdentifier","src":"22307:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"22272:34:81","nodeType":"YulIdentifier","src":"22272:34:81"},"nativeSrc":"22272:41:81","nodeType":"YulFunctionCall","src":"22272:41:81"},"nativeSrc":"22272:41:81","nodeType":"YulExpressionStatement","src":"22272:41:81"},{"nativeSrc":"22322:15:81","nodeType":"YulAssignment","src":"22322:15:81","value":{"name":"value","nativeSrc":"22332:5:81","nodeType":"YulIdentifier","src":"22332:5:81"},"variableNames":[{"name":"value0","nativeSrc":"22322:6:81","nodeType":"YulIdentifier","src":"22322:6:81"}]},{"nativeSrc":"22346:47:81","nodeType":"YulVariableDeclaration","src":"22346:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22378:9:81","nodeType":"YulIdentifier","src":"22378:9:81"},{"kind":"number","nativeSrc":"22389:2:81","nodeType":"YulLiteral","src":"22389:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22374:3:81","nodeType":"YulIdentifier","src":"22374:3:81"},"nativeSrc":"22374:18:81","nodeType":"YulFunctionCall","src":"22374:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"22361:12:81","nodeType":"YulIdentifier","src":"22361:12:81"},"nativeSrc":"22361:32:81","nodeType":"YulFunctionCall","src":"22361:32:81"},"variables":[{"name":"value_1","nativeSrc":"22350:7:81","nodeType":"YulTypedName","src":"22350:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"22426:7:81","nodeType":"YulIdentifier","src":"22426:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"22402:23:81","nodeType":"YulIdentifier","src":"22402:23:81"},"nativeSrc":"22402:32:81","nodeType":"YulFunctionCall","src":"22402:32:81"},"nativeSrc":"22402:32:81","nodeType":"YulExpressionStatement","src":"22402:32:81"},{"nativeSrc":"22443:17:81","nodeType":"YulAssignment","src":"22443:17:81","value":{"name":"value_1","nativeSrc":"22453:7:81","nodeType":"YulIdentifier","src":"22453:7:81"},"variableNames":[{"name":"value1","nativeSrc":"22443:6:81","nodeType":"YulIdentifier","src":"22443:6:81"}]},{"nativeSrc":"22469:47:81","nodeType":"YulVariableDeclaration","src":"22469:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22501:9:81","nodeType":"YulIdentifier","src":"22501:9:81"},{"kind":"number","nativeSrc":"22512:2:81","nodeType":"YulLiteral","src":"22512:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22497:3:81","nodeType":"YulIdentifier","src":"22497:3:81"},"nativeSrc":"22497:18:81","nodeType":"YulFunctionCall","src":"22497:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"22484:12:81","nodeType":"YulIdentifier","src":"22484:12:81"},"nativeSrc":"22484:32:81","nodeType":"YulFunctionCall","src":"22484:32:81"},"variables":[{"name":"value_2","nativeSrc":"22473:7:81","nodeType":"YulTypedName","src":"22473:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"22549:7:81","nodeType":"YulIdentifier","src":"22549:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"22525:23:81","nodeType":"YulIdentifier","src":"22525:23:81"},"nativeSrc":"22525:32:81","nodeType":"YulFunctionCall","src":"22525:32:81"},"nativeSrc":"22525:32:81","nodeType":"YulExpressionStatement","src":"22525:32:81"},{"nativeSrc":"22566:17:81","nodeType":"YulAssignment","src":"22566:17:81","value":{"name":"value_2","nativeSrc":"22576:7:81","nodeType":"YulIdentifier","src":"22576:7:81"},"variableNames":[{"name":"value2","nativeSrc":"22566:6:81","nodeType":"YulIdentifier","src":"22566:6:81"}]},{"nativeSrc":"22592:42:81","nodeType":"YulAssignment","src":"22592:42:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22619:9:81","nodeType":"YulIdentifier","src":"22619:9:81"},{"kind":"number","nativeSrc":"22630:2:81","nodeType":"YulLiteral","src":"22630:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22615:3:81","nodeType":"YulIdentifier","src":"22615:3:81"},"nativeSrc":"22615:18:81","nodeType":"YulFunctionCall","src":"22615:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"22602:12:81","nodeType":"YulIdentifier","src":"22602:12:81"},"nativeSrc":"22602:32:81","nodeType":"YulFunctionCall","src":"22602:32:81"},"variableNames":[{"name":"value3","nativeSrc":"22592:6:81","nodeType":"YulIdentifier","src":"22592:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_int256","nativeSrc":"22037:603:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22097:9:81","nodeType":"YulTypedName","src":"22097:9:81","type":""},{"name":"dataEnd","nativeSrc":"22108:7:81","nodeType":"YulTypedName","src":"22108:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22120:6:81","nodeType":"YulTypedName","src":"22120:6:81","type":""},{"name":"value1","nativeSrc":"22128:6:81","nodeType":"YulTypedName","src":"22128:6:81","type":""},{"name":"value2","nativeSrc":"22136:6:81","nodeType":"YulTypedName","src":"22136:6:81","type":""},{"name":"value3","nativeSrc":"22144:6:81","nodeType":"YulTypedName","src":"22144:6:81","type":""}],"src":"22037:603:81"},{"body":{"nativeSrc":"22732:321:81","nodeType":"YulBlock","src":"22732:321:81","statements":[{"body":{"nativeSrc":"22778:16:81","nodeType":"YulBlock","src":"22778:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22787:1:81","nodeType":"YulLiteral","src":"22787:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"22790:1:81","nodeType":"YulLiteral","src":"22790:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22780:6:81","nodeType":"YulIdentifier","src":"22780:6:81"},"nativeSrc":"22780:12:81","nodeType":"YulFunctionCall","src":"22780:12:81"},"nativeSrc":"22780:12:81","nodeType":"YulExpressionStatement","src":"22780:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22753:7:81","nodeType":"YulIdentifier","src":"22753:7:81"},{"name":"headStart","nativeSrc":"22762:9:81","nodeType":"YulIdentifier","src":"22762:9:81"}],"functionName":{"name":"sub","nativeSrc":"22749:3:81","nodeType":"YulIdentifier","src":"22749:3:81"},"nativeSrc":"22749:23:81","nodeType":"YulFunctionCall","src":"22749:23:81"},{"kind":"number","nativeSrc":"22774:2:81","nodeType":"YulLiteral","src":"22774:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"22745:3:81","nodeType":"YulIdentifier","src":"22745:3:81"},"nativeSrc":"22745:32:81","nodeType":"YulFunctionCall","src":"22745:32:81"},"nativeSrc":"22742:52:81","nodeType":"YulIf","src":"22742:52:81"},{"nativeSrc":"22803:36:81","nodeType":"YulVariableDeclaration","src":"22803:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22829:9:81","nodeType":"YulIdentifier","src":"22829:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"22816:12:81","nodeType":"YulIdentifier","src":"22816:12:81"},"nativeSrc":"22816:23:81","nodeType":"YulFunctionCall","src":"22816:23:81"},"variables":[{"name":"value","nativeSrc":"22807:5:81","nodeType":"YulTypedName","src":"22807:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22883:5:81","nodeType":"YulIdentifier","src":"22883:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"22848:34:81","nodeType":"YulIdentifier","src":"22848:34:81"},"nativeSrc":"22848:41:81","nodeType":"YulFunctionCall","src":"22848:41:81"},"nativeSrc":"22848:41:81","nodeType":"YulExpressionStatement","src":"22848:41:81"},{"nativeSrc":"22898:15:81","nodeType":"YulAssignment","src":"22898:15:81","value":{"name":"value","nativeSrc":"22908:5:81","nodeType":"YulIdentifier","src":"22908:5:81"},"variableNames":[{"name":"value0","nativeSrc":"22898:6:81","nodeType":"YulIdentifier","src":"22898:6:81"}]},{"nativeSrc":"22922:47:81","nodeType":"YulVariableDeclaration","src":"22922:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22954:9:81","nodeType":"YulIdentifier","src":"22954:9:81"},{"kind":"number","nativeSrc":"22965:2:81","nodeType":"YulLiteral","src":"22965:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22950:3:81","nodeType":"YulIdentifier","src":"22950:3:81"},"nativeSrc":"22950:18:81","nodeType":"YulFunctionCall","src":"22950:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"22937:12:81","nodeType":"YulIdentifier","src":"22937:12:81"},"nativeSrc":"22937:32:81","nodeType":"YulFunctionCall","src":"22937:32:81"},"variables":[{"name":"value_1","nativeSrc":"22926:7:81","nodeType":"YulTypedName","src":"22926:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"23013:7:81","nodeType":"YulIdentifier","src":"23013:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"22978:34:81","nodeType":"YulIdentifier","src":"22978:34:81"},"nativeSrc":"22978:43:81","nodeType":"YulFunctionCall","src":"22978:43:81"},"nativeSrc":"22978:43:81","nodeType":"YulExpressionStatement","src":"22978:43:81"},{"nativeSrc":"23030:17:81","nodeType":"YulAssignment","src":"23030:17:81","value":{"name":"value_1","nativeSrc":"23040:7:81","nodeType":"YulIdentifier","src":"23040:7:81"},"variableNames":[{"name":"value1","nativeSrc":"23030:6:81","nodeType":"YulIdentifier","src":"23030:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"22645:408:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22690:9:81","nodeType":"YulTypedName","src":"22690:9:81","type":""},{"name":"dataEnd","nativeSrc":"22701:7:81","nodeType":"YulTypedName","src":"22701:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22713:6:81","nodeType":"YulTypedName","src":"22713:6:81","type":""},{"name":"value1","nativeSrc":"22721:6:81","nodeType":"YulTypedName","src":"22721:6:81","type":""}],"src":"22645:408:81"},{"body":{"nativeSrc":"23161:377:81","nodeType":"YulBlock","src":"23161:377:81","statements":[{"body":{"nativeSrc":"23207:16:81","nodeType":"YulBlock","src":"23207:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23216:1:81","nodeType":"YulLiteral","src":"23216:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23219:1:81","nodeType":"YulLiteral","src":"23219:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23209:6:81","nodeType":"YulIdentifier","src":"23209:6:81"},"nativeSrc":"23209:12:81","nodeType":"YulFunctionCall","src":"23209:12:81"},"nativeSrc":"23209:12:81","nodeType":"YulExpressionStatement","src":"23209:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23182:7:81","nodeType":"YulIdentifier","src":"23182:7:81"},{"name":"headStart","nativeSrc":"23191:9:81","nodeType":"YulIdentifier","src":"23191:9:81"}],"functionName":{"name":"sub","nativeSrc":"23178:3:81","nodeType":"YulIdentifier","src":"23178:3:81"},"nativeSrc":"23178:23:81","nodeType":"YulFunctionCall","src":"23178:23:81"},{"kind":"number","nativeSrc":"23203:2:81","nodeType":"YulLiteral","src":"23203:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"23174:3:81","nodeType":"YulIdentifier","src":"23174:3:81"},"nativeSrc":"23174:32:81","nodeType":"YulFunctionCall","src":"23174:32:81"},"nativeSrc":"23171:52:81","nodeType":"YulIf","src":"23171:52:81"},{"nativeSrc":"23232:36:81","nodeType":"YulVariableDeclaration","src":"23232:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"23258:9:81","nodeType":"YulIdentifier","src":"23258:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"23245:12:81","nodeType":"YulIdentifier","src":"23245:12:81"},"nativeSrc":"23245:23:81","nodeType":"YulFunctionCall","src":"23245:23:81"},"variables":[{"name":"value","nativeSrc":"23236:5:81","nodeType":"YulTypedName","src":"23236:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23312:5:81","nodeType":"YulIdentifier","src":"23312:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"23277:34:81","nodeType":"YulIdentifier","src":"23277:34:81"},"nativeSrc":"23277:41:81","nodeType":"YulFunctionCall","src":"23277:41:81"},"nativeSrc":"23277:41:81","nodeType":"YulExpressionStatement","src":"23277:41:81"},{"nativeSrc":"23327:15:81","nodeType":"YulAssignment","src":"23327:15:81","value":{"name":"value","nativeSrc":"23337:5:81","nodeType":"YulIdentifier","src":"23337:5:81"},"variableNames":[{"name":"value0","nativeSrc":"23327:6:81","nodeType":"YulIdentifier","src":"23327:6:81"}]},{"nativeSrc":"23351:47:81","nodeType":"YulVariableDeclaration","src":"23351:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23383:9:81","nodeType":"YulIdentifier","src":"23383:9:81"},{"kind":"number","nativeSrc":"23394:2:81","nodeType":"YulLiteral","src":"23394:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23379:3:81","nodeType":"YulIdentifier","src":"23379:3:81"},"nativeSrc":"23379:18:81","nodeType":"YulFunctionCall","src":"23379:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"23366:12:81","nodeType":"YulIdentifier","src":"23366:12:81"},"nativeSrc":"23366:32:81","nodeType":"YulFunctionCall","src":"23366:32:81"},"variables":[{"name":"value_1","nativeSrc":"23355:7:81","nodeType":"YulTypedName","src":"23355:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"23442:7:81","nodeType":"YulIdentifier","src":"23442:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"23407:34:81","nodeType":"YulIdentifier","src":"23407:34:81"},"nativeSrc":"23407:43:81","nodeType":"YulFunctionCall","src":"23407:43:81"},"nativeSrc":"23407:43:81","nodeType":"YulExpressionStatement","src":"23407:43:81"},{"nativeSrc":"23459:17:81","nodeType":"YulAssignment","src":"23459:17:81","value":{"name":"value_1","nativeSrc":"23469:7:81","nodeType":"YulIdentifier","src":"23469:7:81"},"variableNames":[{"name":"value1","nativeSrc":"23459:6:81","nodeType":"YulIdentifier","src":"23459:6:81"}]},{"nativeSrc":"23485:47:81","nodeType":"YulAssignment","src":"23485:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23517:9:81","nodeType":"YulIdentifier","src":"23517:9:81"},{"kind":"number","nativeSrc":"23528:2:81","nodeType":"YulLiteral","src":"23528:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23513:3:81","nodeType":"YulIdentifier","src":"23513:3:81"},"nativeSrc":"23513:18:81","nodeType":"YulFunctionCall","src":"23513:18:81"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"23495:17:81","nodeType":"YulIdentifier","src":"23495:17:81"},"nativeSrc":"23495:37:81","nodeType":"YulFunctionCall","src":"23495:37:81"},"variableNames":[{"name":"value2","nativeSrc":"23485:6:81","nodeType":"YulIdentifier","src":"23485:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"23058:480:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23111:9:81","nodeType":"YulTypedName","src":"23111:9:81","type":""},{"name":"dataEnd","nativeSrc":"23122:7:81","nodeType":"YulTypedName","src":"23122:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23134:6:81","nodeType":"YulTypedName","src":"23134:6:81","type":""},{"name":"value1","nativeSrc":"23142:6:81","nodeType":"YulTypedName","src":"23142:6:81","type":""},{"name":"value2","nativeSrc":"23150:6:81","nodeType":"YulTypedName","src":"23150:6:81","type":""}],"src":"23058:480:81"},{"body":{"nativeSrc":"23676:633:81","nodeType":"YulBlock","src":"23676:633:81","statements":[{"body":{"nativeSrc":"23722:16:81","nodeType":"YulBlock","src":"23722:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23731:1:81","nodeType":"YulLiteral","src":"23731:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23734:1:81","nodeType":"YulLiteral","src":"23734:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23724:6:81","nodeType":"YulIdentifier","src":"23724:6:81"},"nativeSrc":"23724:12:81","nodeType":"YulFunctionCall","src":"23724:12:81"},"nativeSrc":"23724:12:81","nodeType":"YulExpressionStatement","src":"23724:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23697:7:81","nodeType":"YulIdentifier","src":"23697:7:81"},{"name":"headStart","nativeSrc":"23706:9:81","nodeType":"YulIdentifier","src":"23706:9:81"}],"functionName":{"name":"sub","nativeSrc":"23693:3:81","nodeType":"YulIdentifier","src":"23693:3:81"},"nativeSrc":"23693:23:81","nodeType":"YulFunctionCall","src":"23693:23:81"},{"kind":"number","nativeSrc":"23718:2:81","nodeType":"YulLiteral","src":"23718:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"23689:3:81","nodeType":"YulIdentifier","src":"23689:3:81"},"nativeSrc":"23689:32:81","nodeType":"YulFunctionCall","src":"23689:32:81"},"nativeSrc":"23686:52:81","nodeType":"YulIf","src":"23686:52:81"},{"nativeSrc":"23747:36:81","nodeType":"YulVariableDeclaration","src":"23747:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"23773:9:81","nodeType":"YulIdentifier","src":"23773:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"23760:12:81","nodeType":"YulIdentifier","src":"23760:12:81"},"nativeSrc":"23760:23:81","nodeType":"YulFunctionCall","src":"23760:23:81"},"variables":[{"name":"value","nativeSrc":"23751:5:81","nodeType":"YulTypedName","src":"23751:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23827:5:81","nodeType":"YulIdentifier","src":"23827:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"23792:34:81","nodeType":"YulIdentifier","src":"23792:34:81"},"nativeSrc":"23792:41:81","nodeType":"YulFunctionCall","src":"23792:41:81"},"nativeSrc":"23792:41:81","nodeType":"YulExpressionStatement","src":"23792:41:81"},{"nativeSrc":"23842:15:81","nodeType":"YulAssignment","src":"23842:15:81","value":{"name":"value","nativeSrc":"23852:5:81","nodeType":"YulIdentifier","src":"23852:5:81"},"variableNames":[{"name":"value0","nativeSrc":"23842:6:81","nodeType":"YulIdentifier","src":"23842:6:81"}]},{"nativeSrc":"23866:46:81","nodeType":"YulVariableDeclaration","src":"23866:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23897:9:81","nodeType":"YulIdentifier","src":"23897:9:81"},{"kind":"number","nativeSrc":"23908:2:81","nodeType":"YulLiteral","src":"23908:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23893:3:81","nodeType":"YulIdentifier","src":"23893:3:81"},"nativeSrc":"23893:18:81","nodeType":"YulFunctionCall","src":"23893:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"23880:12:81","nodeType":"YulIdentifier","src":"23880:12:81"},"nativeSrc":"23880:32:81","nodeType":"YulFunctionCall","src":"23880:32:81"},"variables":[{"name":"offset","nativeSrc":"23870:6:81","nodeType":"YulTypedName","src":"23870:6:81","type":""}]},{"body":{"nativeSrc":"23955:16:81","nodeType":"YulBlock","src":"23955:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23964:1:81","nodeType":"YulLiteral","src":"23964:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"23967:1:81","nodeType":"YulLiteral","src":"23967:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23957:6:81","nodeType":"YulIdentifier","src":"23957:6:81"},"nativeSrc":"23957:12:81","nodeType":"YulFunctionCall","src":"23957:12:81"},"nativeSrc":"23957:12:81","nodeType":"YulExpressionStatement","src":"23957:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"23927:6:81","nodeType":"YulIdentifier","src":"23927:6:81"},{"kind":"number","nativeSrc":"23935:18:81","nodeType":"YulLiteral","src":"23935:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23924:2:81","nodeType":"YulIdentifier","src":"23924:2:81"},"nativeSrc":"23924:30:81","nodeType":"YulFunctionCall","src":"23924:30:81"},"nativeSrc":"23921:50:81","nodeType":"YulIf","src":"23921:50:81"},{"nativeSrc":"23980:32:81","nodeType":"YulVariableDeclaration","src":"23980:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"23994:9:81","nodeType":"YulIdentifier","src":"23994:9:81"},{"name":"offset","nativeSrc":"24005:6:81","nodeType":"YulIdentifier","src":"24005:6:81"}],"functionName":{"name":"add","nativeSrc":"23990:3:81","nodeType":"YulIdentifier","src":"23990:3:81"},"nativeSrc":"23990:22:81","nodeType":"YulFunctionCall","src":"23990:22:81"},"variables":[{"name":"_1","nativeSrc":"23984:2:81","nodeType":"YulTypedName","src":"23984:2:81","type":""}]},{"body":{"nativeSrc":"24060:16:81","nodeType":"YulBlock","src":"24060:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24069:1:81","nodeType":"YulLiteral","src":"24069:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"24072:1:81","nodeType":"YulLiteral","src":"24072:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24062:6:81","nodeType":"YulIdentifier","src":"24062:6:81"},"nativeSrc":"24062:12:81","nodeType":"YulFunctionCall","src":"24062:12:81"},"nativeSrc":"24062:12:81","nodeType":"YulExpressionStatement","src":"24062:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24039:2:81","nodeType":"YulIdentifier","src":"24039:2:81"},{"kind":"number","nativeSrc":"24043:4:81","nodeType":"YulLiteral","src":"24043:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"24035:3:81","nodeType":"YulIdentifier","src":"24035:3:81"},"nativeSrc":"24035:13:81","nodeType":"YulFunctionCall","src":"24035:13:81"},{"name":"dataEnd","nativeSrc":"24050:7:81","nodeType":"YulIdentifier","src":"24050:7:81"}],"functionName":{"name":"slt","nativeSrc":"24031:3:81","nodeType":"YulIdentifier","src":"24031:3:81"},"nativeSrc":"24031:27:81","nodeType":"YulFunctionCall","src":"24031:27:81"}],"functionName":{"name":"iszero","nativeSrc":"24024:6:81","nodeType":"YulIdentifier","src":"24024:6:81"},"nativeSrc":"24024:35:81","nodeType":"YulFunctionCall","src":"24024:35:81"},"nativeSrc":"24021:55:81","nodeType":"YulIf","src":"24021:55:81"},{"nativeSrc":"24085:30:81","nodeType":"YulVariableDeclaration","src":"24085:30:81","value":{"arguments":[{"name":"_1","nativeSrc":"24112:2:81","nodeType":"YulIdentifier","src":"24112:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"24099:12:81","nodeType":"YulIdentifier","src":"24099:12:81"},"nativeSrc":"24099:16:81","nodeType":"YulFunctionCall","src":"24099:16:81"},"variables":[{"name":"length","nativeSrc":"24089:6:81","nodeType":"YulTypedName","src":"24089:6:81","type":""}]},{"body":{"nativeSrc":"24158:16:81","nodeType":"YulBlock","src":"24158:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24167:1:81","nodeType":"YulLiteral","src":"24167:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"24170:1:81","nodeType":"YulLiteral","src":"24170:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24160:6:81","nodeType":"YulIdentifier","src":"24160:6:81"},"nativeSrc":"24160:12:81","nodeType":"YulFunctionCall","src":"24160:12:81"},"nativeSrc":"24160:12:81","nodeType":"YulExpressionStatement","src":"24160:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"24130:6:81","nodeType":"YulIdentifier","src":"24130:6:81"},{"kind":"number","nativeSrc":"24138:18:81","nodeType":"YulLiteral","src":"24138:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24127:2:81","nodeType":"YulIdentifier","src":"24127:2:81"},"nativeSrc":"24127:30:81","nodeType":"YulFunctionCall","src":"24127:30:81"},"nativeSrc":"24124:50:81","nodeType":"YulIf","src":"24124:50:81"},{"body":{"nativeSrc":"24232:16:81","nodeType":"YulBlock","src":"24232:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24241:1:81","nodeType":"YulLiteral","src":"24241:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"24244:1:81","nodeType":"YulLiteral","src":"24244:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24234:6:81","nodeType":"YulIdentifier","src":"24234:6:81"},"nativeSrc":"24234:12:81","nodeType":"YulFunctionCall","src":"24234:12:81"},"nativeSrc":"24234:12:81","nodeType":"YulExpressionStatement","src":"24234:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24197:2:81","nodeType":"YulIdentifier","src":"24197:2:81"},{"arguments":[{"kind":"number","nativeSrc":"24205:1:81","nodeType":"YulLiteral","src":"24205:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"24208:6:81","nodeType":"YulIdentifier","src":"24208:6:81"}],"functionName":{"name":"shl","nativeSrc":"24201:3:81","nodeType":"YulIdentifier","src":"24201:3:81"},"nativeSrc":"24201:14:81","nodeType":"YulFunctionCall","src":"24201:14:81"}],"functionName":{"name":"add","nativeSrc":"24193:3:81","nodeType":"YulIdentifier","src":"24193:3:81"},"nativeSrc":"24193:23:81","nodeType":"YulFunctionCall","src":"24193:23:81"},{"kind":"number","nativeSrc":"24218:2:81","nodeType":"YulLiteral","src":"24218:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24189:3:81","nodeType":"YulIdentifier","src":"24189:3:81"},"nativeSrc":"24189:32:81","nodeType":"YulFunctionCall","src":"24189:32:81"},{"name":"dataEnd","nativeSrc":"24223:7:81","nodeType":"YulIdentifier","src":"24223:7:81"}],"functionName":{"name":"gt","nativeSrc":"24186:2:81","nodeType":"YulIdentifier","src":"24186:2:81"},"nativeSrc":"24186:45:81","nodeType":"YulFunctionCall","src":"24186:45:81"},"nativeSrc":"24183:65:81","nodeType":"YulIf","src":"24183:65:81"},{"nativeSrc":"24257:21:81","nodeType":"YulAssignment","src":"24257:21:81","value":{"arguments":[{"name":"_1","nativeSrc":"24271:2:81","nodeType":"YulIdentifier","src":"24271:2:81"},{"kind":"number","nativeSrc":"24275:2:81","nodeType":"YulLiteral","src":"24275:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24267:3:81","nodeType":"YulIdentifier","src":"24267:3:81"},"nativeSrc":"24267:11:81","nodeType":"YulFunctionCall","src":"24267:11:81"},"variableNames":[{"name":"value1","nativeSrc":"24257:6:81","nodeType":"YulIdentifier","src":"24257:6:81"}]},{"nativeSrc":"24287:16:81","nodeType":"YulAssignment","src":"24287:16:81","value":{"name":"length","nativeSrc":"24297:6:81","nodeType":"YulIdentifier","src":"24297:6:81"},"variableNames":[{"name":"value2","nativeSrc":"24287:6:81","nodeType":"YulIdentifier","src":"24287:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"23543:766:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23626:9:81","nodeType":"YulTypedName","src":"23626:9:81","type":""},{"name":"dataEnd","nativeSrc":"23637:7:81","nodeType":"YulTypedName","src":"23637:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23649:6:81","nodeType":"YulTypedName","src":"23649:6:81","type":""},{"name":"value1","nativeSrc":"23657:6:81","nodeType":"YulTypedName","src":"23657:6:81","type":""},{"name":"value2","nativeSrc":"23665:6:81","nodeType":"YulTypedName","src":"23665:6:81","type":""}],"src":"23543:766:81"},{"body":{"nativeSrc":"24483:611:81","nodeType":"YulBlock","src":"24483:611:81","statements":[{"nativeSrc":"24493:32:81","nodeType":"YulVariableDeclaration","src":"24493:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"24511:9:81","nodeType":"YulIdentifier","src":"24511:9:81"},{"kind":"number","nativeSrc":"24522:2:81","nodeType":"YulLiteral","src":"24522:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24507:3:81","nodeType":"YulIdentifier","src":"24507:3:81"},"nativeSrc":"24507:18:81","nodeType":"YulFunctionCall","src":"24507:18:81"},"variables":[{"name":"tail_1","nativeSrc":"24497:6:81","nodeType":"YulTypedName","src":"24497:6:81","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24541:9:81","nodeType":"YulIdentifier","src":"24541:9:81"},{"kind":"number","nativeSrc":"24552:2:81","nodeType":"YulLiteral","src":"24552:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24534:6:81","nodeType":"YulIdentifier","src":"24534:6:81"},"nativeSrc":"24534:21:81","nodeType":"YulFunctionCall","src":"24534:21:81"},"nativeSrc":"24534:21:81","nodeType":"YulExpressionStatement","src":"24534:21:81"},{"nativeSrc":"24564:17:81","nodeType":"YulVariableDeclaration","src":"24564:17:81","value":{"name":"tail_1","nativeSrc":"24575:6:81","nodeType":"YulIdentifier","src":"24575:6:81"},"variables":[{"name":"pos","nativeSrc":"24568:3:81","nodeType":"YulTypedName","src":"24568:3:81","type":""}]},{"nativeSrc":"24590:27:81","nodeType":"YulVariableDeclaration","src":"24590:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"24610:6:81","nodeType":"YulIdentifier","src":"24610:6:81"}],"functionName":{"name":"mload","nativeSrc":"24604:5:81","nodeType":"YulIdentifier","src":"24604:5:81"},"nativeSrc":"24604:13:81","nodeType":"YulFunctionCall","src":"24604:13:81"},"variables":[{"name":"length","nativeSrc":"24594:6:81","nodeType":"YulTypedName","src":"24594:6:81","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"24633:6:81","nodeType":"YulIdentifier","src":"24633:6:81"},{"name":"length","nativeSrc":"24641:6:81","nodeType":"YulIdentifier","src":"24641:6:81"}],"functionName":{"name":"mstore","nativeSrc":"24626:6:81","nodeType":"YulIdentifier","src":"24626:6:81"},"nativeSrc":"24626:22:81","nodeType":"YulFunctionCall","src":"24626:22:81"},"nativeSrc":"24626:22:81","nodeType":"YulExpressionStatement","src":"24626:22:81"},{"nativeSrc":"24657:25:81","nodeType":"YulAssignment","src":"24657:25:81","value":{"arguments":[{"name":"headStart","nativeSrc":"24668:9:81","nodeType":"YulIdentifier","src":"24668:9:81"},{"kind":"number","nativeSrc":"24679:2:81","nodeType":"YulLiteral","src":"24679:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24664:3:81","nodeType":"YulIdentifier","src":"24664:3:81"},"nativeSrc":"24664:18:81","nodeType":"YulFunctionCall","src":"24664:18:81"},"variableNames":[{"name":"pos","nativeSrc":"24657:3:81","nodeType":"YulIdentifier","src":"24657:3:81"}]},{"nativeSrc":"24691:53:81","nodeType":"YulVariableDeclaration","src":"24691:53:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24713:9:81","nodeType":"YulIdentifier","src":"24713:9:81"},{"arguments":[{"kind":"number","nativeSrc":"24728:1:81","nodeType":"YulLiteral","src":"24728:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"24731:6:81","nodeType":"YulIdentifier","src":"24731:6:81"}],"functionName":{"name":"shl","nativeSrc":"24724:3:81","nodeType":"YulIdentifier","src":"24724:3:81"},"nativeSrc":"24724:14:81","nodeType":"YulFunctionCall","src":"24724:14:81"}],"functionName":{"name":"add","nativeSrc":"24709:3:81","nodeType":"YulIdentifier","src":"24709:3:81"},"nativeSrc":"24709:30:81","nodeType":"YulFunctionCall","src":"24709:30:81"},{"kind":"number","nativeSrc":"24741:2:81","nodeType":"YulLiteral","src":"24741:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24705:3:81","nodeType":"YulIdentifier","src":"24705:3:81"},"nativeSrc":"24705:39:81","nodeType":"YulFunctionCall","src":"24705:39:81"},"variables":[{"name":"tail_2","nativeSrc":"24695:6:81","nodeType":"YulTypedName","src":"24695:6:81","type":""}]},{"nativeSrc":"24753:29:81","nodeType":"YulVariableDeclaration","src":"24753:29:81","value":{"arguments":[{"name":"value0","nativeSrc":"24771:6:81","nodeType":"YulIdentifier","src":"24771:6:81"},{"kind":"number","nativeSrc":"24779:2:81","nodeType":"YulLiteral","src":"24779:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24767:3:81","nodeType":"YulIdentifier","src":"24767:3:81"},"nativeSrc":"24767:15:81","nodeType":"YulFunctionCall","src":"24767:15:81"},"variables":[{"name":"srcPtr","nativeSrc":"24757:6:81","nodeType":"YulTypedName","src":"24757:6:81","type":""}]},{"nativeSrc":"24791:10:81","nodeType":"YulVariableDeclaration","src":"24791:10:81","value":{"kind":"number","nativeSrc":"24800:1:81","nodeType":"YulLiteral","src":"24800:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"24795:1:81","nodeType":"YulTypedName","src":"24795:1:81","type":""}]},{"body":{"nativeSrc":"24859:206:81","nodeType":"YulBlock","src":"24859:206:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"24880:3:81","nodeType":"YulIdentifier","src":"24880:3:81"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"24893:6:81","nodeType":"YulIdentifier","src":"24893:6:81"},{"name":"headStart","nativeSrc":"24901:9:81","nodeType":"YulIdentifier","src":"24901:9:81"}],"functionName":{"name":"sub","nativeSrc":"24889:3:81","nodeType":"YulIdentifier","src":"24889:3:81"},"nativeSrc":"24889:22:81","nodeType":"YulFunctionCall","src":"24889:22:81"},{"arguments":[{"kind":"number","nativeSrc":"24917:2:81","nodeType":"YulLiteral","src":"24917:2:81","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"24913:3:81","nodeType":"YulIdentifier","src":"24913:3:81"},"nativeSrc":"24913:7:81","nodeType":"YulFunctionCall","src":"24913:7:81"}],"functionName":{"name":"add","nativeSrc":"24885:3:81","nodeType":"YulIdentifier","src":"24885:3:81"},"nativeSrc":"24885:36:81","nodeType":"YulFunctionCall","src":"24885:36:81"}],"functionName":{"name":"mstore","nativeSrc":"24873:6:81","nodeType":"YulIdentifier","src":"24873:6:81"},"nativeSrc":"24873:49:81","nodeType":"YulFunctionCall","src":"24873:49:81"},"nativeSrc":"24873:49:81","nodeType":"YulExpressionStatement","src":"24873:49:81"},{"nativeSrc":"24935:50:81","nodeType":"YulAssignment","src":"24935:50:81","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"24969:6:81","nodeType":"YulIdentifier","src":"24969:6:81"}],"functionName":{"name":"mload","nativeSrc":"24963:5:81","nodeType":"YulIdentifier","src":"24963:5:81"},"nativeSrc":"24963:13:81","nodeType":"YulFunctionCall","src":"24963:13:81"},{"name":"tail_2","nativeSrc":"24978:6:81","nodeType":"YulIdentifier","src":"24978:6:81"}],"functionName":{"name":"abi_encode_string","nativeSrc":"24945:17:81","nodeType":"YulIdentifier","src":"24945:17:81"},"nativeSrc":"24945:40:81","nodeType":"YulFunctionCall","src":"24945:40:81"},"variableNames":[{"name":"tail_2","nativeSrc":"24935:6:81","nodeType":"YulIdentifier","src":"24935:6:81"}]},{"nativeSrc":"24998:25:81","nodeType":"YulAssignment","src":"24998:25:81","value":{"arguments":[{"name":"srcPtr","nativeSrc":"25012:6:81","nodeType":"YulIdentifier","src":"25012:6:81"},{"kind":"number","nativeSrc":"25020:2:81","nodeType":"YulLiteral","src":"25020:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25008:3:81","nodeType":"YulIdentifier","src":"25008:3:81"},"nativeSrc":"25008:15:81","nodeType":"YulFunctionCall","src":"25008:15:81"},"variableNames":[{"name":"srcPtr","nativeSrc":"24998:6:81","nodeType":"YulIdentifier","src":"24998:6:81"}]},{"nativeSrc":"25036:19:81","nodeType":"YulAssignment","src":"25036:19:81","value":{"arguments":[{"name":"pos","nativeSrc":"25047:3:81","nodeType":"YulIdentifier","src":"25047:3:81"},{"kind":"number","nativeSrc":"25052:2:81","nodeType":"YulLiteral","src":"25052:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25043:3:81","nodeType":"YulIdentifier","src":"25043:3:81"},"nativeSrc":"25043:12:81","nodeType":"YulFunctionCall","src":"25043:12:81"},"variableNames":[{"name":"pos","nativeSrc":"25036:3:81","nodeType":"YulIdentifier","src":"25036:3:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"24821:1:81","nodeType":"YulIdentifier","src":"24821:1:81"},{"name":"length","nativeSrc":"24824:6:81","nodeType":"YulIdentifier","src":"24824:6:81"}],"functionName":{"name":"lt","nativeSrc":"24818:2:81","nodeType":"YulIdentifier","src":"24818:2:81"},"nativeSrc":"24818:13:81","nodeType":"YulFunctionCall","src":"24818:13:81"},"nativeSrc":"24810:255:81","nodeType":"YulForLoop","post":{"nativeSrc":"24832:18:81","nodeType":"YulBlock","src":"24832:18:81","statements":[{"nativeSrc":"24834:14:81","nodeType":"YulAssignment","src":"24834:14:81","value":{"arguments":[{"name":"i","nativeSrc":"24843:1:81","nodeType":"YulIdentifier","src":"24843:1:81"},{"kind":"number","nativeSrc":"24846:1:81","nodeType":"YulLiteral","src":"24846:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"24839:3:81","nodeType":"YulIdentifier","src":"24839:3:81"},"nativeSrc":"24839:9:81","nodeType":"YulFunctionCall","src":"24839:9:81"},"variableNames":[{"name":"i","nativeSrc":"24834:1:81","nodeType":"YulIdentifier","src":"24834:1:81"}]}]},"pre":{"nativeSrc":"24814:3:81","nodeType":"YulBlock","src":"24814:3:81","statements":[]},"src":"24810:255:81"},{"nativeSrc":"25074:14:81","nodeType":"YulAssignment","src":"25074:14:81","value":{"name":"tail_2","nativeSrc":"25082:6:81","nodeType":"YulIdentifier","src":"25082:6:81"},"variableNames":[{"name":"tail","nativeSrc":"25074:4:81","nodeType":"YulIdentifier","src":"25074:4:81"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"24314:780:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24452:9:81","nodeType":"YulTypedName","src":"24452:9:81","type":""},{"name":"value0","nativeSrc":"24463:6:81","nodeType":"YulTypedName","src":"24463:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24474:4:81","nodeType":"YulTypedName","src":"24474:4:81","type":""}],"src":"24314:780:81"},{"body":{"nativeSrc":"25204:317:81","nodeType":"YulBlock","src":"25204:317:81","statements":[{"body":{"nativeSrc":"25250:16:81","nodeType":"YulBlock","src":"25250:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25259:1:81","nodeType":"YulLiteral","src":"25259:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"25262:1:81","nodeType":"YulLiteral","src":"25262:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"25252:6:81","nodeType":"YulIdentifier","src":"25252:6:81"},"nativeSrc":"25252:12:81","nodeType":"YulFunctionCall","src":"25252:12:81"},"nativeSrc":"25252:12:81","nodeType":"YulExpressionStatement","src":"25252:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"25225:7:81","nodeType":"YulIdentifier","src":"25225:7:81"},{"name":"headStart","nativeSrc":"25234:9:81","nodeType":"YulIdentifier","src":"25234:9:81"}],"functionName":{"name":"sub","nativeSrc":"25221:3:81","nodeType":"YulIdentifier","src":"25221:3:81"},"nativeSrc":"25221:23:81","nodeType":"YulFunctionCall","src":"25221:23:81"},{"kind":"number","nativeSrc":"25246:2:81","nodeType":"YulLiteral","src":"25246:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"25217:3:81","nodeType":"YulIdentifier","src":"25217:3:81"},"nativeSrc":"25217:32:81","nodeType":"YulFunctionCall","src":"25217:32:81"},"nativeSrc":"25214:52:81","nodeType":"YulIf","src":"25214:52:81"},{"nativeSrc":"25275:36:81","nodeType":"YulVariableDeclaration","src":"25275:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"25301:9:81","nodeType":"YulIdentifier","src":"25301:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"25288:12:81","nodeType":"YulIdentifier","src":"25288:12:81"},"nativeSrc":"25288:23:81","nodeType":"YulFunctionCall","src":"25288:23:81"},"variables":[{"name":"value","nativeSrc":"25279:5:81","nodeType":"YulTypedName","src":"25279:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"25355:5:81","nodeType":"YulIdentifier","src":"25355:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"25320:34:81","nodeType":"YulIdentifier","src":"25320:34:81"},"nativeSrc":"25320:41:81","nodeType":"YulFunctionCall","src":"25320:41:81"},"nativeSrc":"25320:41:81","nodeType":"YulExpressionStatement","src":"25320:41:81"},{"nativeSrc":"25370:15:81","nodeType":"YulAssignment","src":"25370:15:81","value":{"name":"value","nativeSrc":"25380:5:81","nodeType":"YulIdentifier","src":"25380:5:81"},"variableNames":[{"name":"value0","nativeSrc":"25370:6:81","nodeType":"YulIdentifier","src":"25370:6:81"}]},{"nativeSrc":"25394:47:81","nodeType":"YulVariableDeclaration","src":"25394:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25426:9:81","nodeType":"YulIdentifier","src":"25426:9:81"},{"kind":"number","nativeSrc":"25437:2:81","nodeType":"YulLiteral","src":"25437:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25422:3:81","nodeType":"YulIdentifier","src":"25422:3:81"},"nativeSrc":"25422:18:81","nodeType":"YulFunctionCall","src":"25422:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"25409:12:81","nodeType":"YulIdentifier","src":"25409:12:81"},"nativeSrc":"25409:32:81","nodeType":"YulFunctionCall","src":"25409:32:81"},"variables":[{"name":"value_1","nativeSrc":"25398:7:81","nodeType":"YulTypedName","src":"25398:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"25481:7:81","nodeType":"YulIdentifier","src":"25481:7:81"}],"functionName":{"name":"validator_revert_enum_Rounding","nativeSrc":"25450:30:81","nodeType":"YulIdentifier","src":"25450:30:81"},"nativeSrc":"25450:39:81","nodeType":"YulFunctionCall","src":"25450:39:81"},"nativeSrc":"25450:39:81","nodeType":"YulExpressionStatement","src":"25450:39:81"},{"nativeSrc":"25498:17:81","nodeType":"YulAssignment","src":"25498:17:81","value":{"name":"value_1","nativeSrc":"25508:7:81","nodeType":"YulIdentifier","src":"25508:7:81"},"variableNames":[{"name":"value1","nativeSrc":"25498:6:81","nodeType":"YulIdentifier","src":"25498:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_TargetStatus_$22999","nativeSrc":"25099:422:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25162:9:81","nodeType":"YulTypedName","src":"25162:9:81","type":""},{"name":"dataEnd","nativeSrc":"25173:7:81","nodeType":"YulTypedName","src":"25173:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"25185:6:81","nodeType":"YulTypedName","src":"25185:6:81","type":""},{"name":"value1","nativeSrc":"25193:6:81","nodeType":"YulTypedName","src":"25193:6:81","type":""}],"src":"25099:422:81"},{"body":{"nativeSrc":"25607:103:81","nodeType":"YulBlock","src":"25607:103:81","statements":[{"body":{"nativeSrc":"25653:16:81","nodeType":"YulBlock","src":"25653:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25662:1:81","nodeType":"YulLiteral","src":"25662:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"25665:1:81","nodeType":"YulLiteral","src":"25665:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"25655:6:81","nodeType":"YulIdentifier","src":"25655:6:81"},"nativeSrc":"25655:12:81","nodeType":"YulFunctionCall","src":"25655:12:81"},"nativeSrc":"25655:12:81","nodeType":"YulExpressionStatement","src":"25655:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"25628:7:81","nodeType":"YulIdentifier","src":"25628:7:81"},{"name":"headStart","nativeSrc":"25637:9:81","nodeType":"YulIdentifier","src":"25637:9:81"}],"functionName":{"name":"sub","nativeSrc":"25624:3:81","nodeType":"YulIdentifier","src":"25624:3:81"},"nativeSrc":"25624:23:81","nodeType":"YulFunctionCall","src":"25624:23:81"},{"kind":"number","nativeSrc":"25649:2:81","nodeType":"YulLiteral","src":"25649:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"25620:3:81","nodeType":"YulIdentifier","src":"25620:3:81"},"nativeSrc":"25620:32:81","nodeType":"YulFunctionCall","src":"25620:32:81"},"nativeSrc":"25617:52:81","nodeType":"YulIf","src":"25617:52:81"},{"nativeSrc":"25678:26:81","nodeType":"YulAssignment","src":"25678:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"25694:9:81","nodeType":"YulIdentifier","src":"25694:9:81"}],"functionName":{"name":"mload","nativeSrc":"25688:5:81","nodeType":"YulIdentifier","src":"25688:5:81"},"nativeSrc":"25688:16:81","nodeType":"YulFunctionCall","src":"25688:16:81"},"variableNames":[{"name":"value0","nativeSrc":"25678:6:81","nodeType":"YulIdentifier","src":"25678:6:81"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"25526:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25573:9:81","nodeType":"YulTypedName","src":"25573:9:81","type":""},{"name":"dataEnd","nativeSrc":"25584:7:81","nodeType":"YulTypedName","src":"25584:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"25596:6:81","nodeType":"YulTypedName","src":"25596:6:81","type":""}],"src":"25526:184:81"},{"body":{"nativeSrc":"25747:95:81","nodeType":"YulBlock","src":"25747:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25764:1:81","nodeType":"YulLiteral","src":"25764:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"25771:3:81","nodeType":"YulLiteral","src":"25771:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"25776:10:81","nodeType":"YulLiteral","src":"25776:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"25767:3:81","nodeType":"YulIdentifier","src":"25767:3:81"},"nativeSrc":"25767:20:81","nodeType":"YulFunctionCall","src":"25767:20:81"}],"functionName":{"name":"mstore","nativeSrc":"25757:6:81","nodeType":"YulIdentifier","src":"25757:6:81"},"nativeSrc":"25757:31:81","nodeType":"YulFunctionCall","src":"25757:31:81"},"nativeSrc":"25757:31:81","nodeType":"YulExpressionStatement","src":"25757:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"25804:1:81","nodeType":"YulLiteral","src":"25804:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"25807:4:81","nodeType":"YulLiteral","src":"25807:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"25797:6:81","nodeType":"YulIdentifier","src":"25797:6:81"},"nativeSrc":"25797:15:81","nodeType":"YulFunctionCall","src":"25797:15:81"},"nativeSrc":"25797:15:81","nodeType":"YulExpressionStatement","src":"25797:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"25828:1:81","nodeType":"YulLiteral","src":"25828:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"25831:4:81","nodeType":"YulLiteral","src":"25831:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"25821:6:81","nodeType":"YulIdentifier","src":"25821:6:81"},"nativeSrc":"25821:15:81","nodeType":"YulFunctionCall","src":"25821:15:81"},"nativeSrc":"25821:15:81","nodeType":"YulExpressionStatement","src":"25821:15:81"}]},"name":"panic_error_0x11","nativeSrc":"25715:127:81","nodeType":"YulFunctionDefinition","src":"25715:127:81"},{"body":{"nativeSrc":"25895:77:81","nodeType":"YulBlock","src":"25895:77:81","statements":[{"nativeSrc":"25905:16:81","nodeType":"YulAssignment","src":"25905:16:81","value":{"arguments":[{"name":"x","nativeSrc":"25916:1:81","nodeType":"YulIdentifier","src":"25916:1:81"},{"name":"y","nativeSrc":"25919:1:81","nodeType":"YulIdentifier","src":"25919:1:81"}],"functionName":{"name":"add","nativeSrc":"25912:3:81","nodeType":"YulIdentifier","src":"25912:3:81"},"nativeSrc":"25912:9:81","nodeType":"YulFunctionCall","src":"25912:9:81"},"variableNames":[{"name":"sum","nativeSrc":"25905:3:81","nodeType":"YulIdentifier","src":"25905:3:81"}]},{"body":{"nativeSrc":"25944:22:81","nodeType":"YulBlock","src":"25944:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"25946:16:81","nodeType":"YulIdentifier","src":"25946:16:81"},"nativeSrc":"25946:18:81","nodeType":"YulFunctionCall","src":"25946:18:81"},"nativeSrc":"25946:18:81","nodeType":"YulExpressionStatement","src":"25946:18:81"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"25936:1:81","nodeType":"YulIdentifier","src":"25936:1:81"},{"name":"sum","nativeSrc":"25939:3:81","nodeType":"YulIdentifier","src":"25939:3:81"}],"functionName":{"name":"gt","nativeSrc":"25933:2:81","nodeType":"YulIdentifier","src":"25933:2:81"},"nativeSrc":"25933:10:81","nodeType":"YulFunctionCall","src":"25933:10:81"},"nativeSrc":"25930:36:81","nodeType":"YulIf","src":"25930:36:81"}]},"name":"checked_add_t_uint256","nativeSrc":"25847:125:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"25878:1:81","nodeType":"YulTypedName","src":"25878:1:81","type":""},{"name":"y","nativeSrc":"25881:1:81","nodeType":"YulTypedName","src":"25881:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"25887:3:81","nodeType":"YulTypedName","src":"25887:3:81","type":""}],"src":"25847:125:81"},{"body":{"nativeSrc":"26020:93:81","nodeType":"YulBlock","src":"26020:93:81","statements":[{"body":{"nativeSrc":"26056:22:81","nodeType":"YulBlock","src":"26056:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"26058:16:81","nodeType":"YulIdentifier","src":"26058:16:81"},"nativeSrc":"26058:18:81","nodeType":"YulFunctionCall","src":"26058:18:81"},"nativeSrc":"26058:18:81","nodeType":"YulExpressionStatement","src":"26058:18:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"26036:5:81","nodeType":"YulIdentifier","src":"26036:5:81"},{"arguments":[{"kind":"number","nativeSrc":"26047:3:81","nodeType":"YulLiteral","src":"26047:3:81","type":"","value":"255"},{"kind":"number","nativeSrc":"26052:1:81","nodeType":"YulLiteral","src":"26052:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"26043:3:81","nodeType":"YulIdentifier","src":"26043:3:81"},"nativeSrc":"26043:11:81","nodeType":"YulFunctionCall","src":"26043:11:81"}],"functionName":{"name":"eq","nativeSrc":"26033:2:81","nodeType":"YulIdentifier","src":"26033:2:81"},"nativeSrc":"26033:22:81","nodeType":"YulFunctionCall","src":"26033:22:81"},"nativeSrc":"26030:48:81","nodeType":"YulIf","src":"26030:48:81"},{"nativeSrc":"26087:20:81","nodeType":"YulAssignment","src":"26087:20:81","value":{"arguments":[{"kind":"number","nativeSrc":"26098:1:81","nodeType":"YulLiteral","src":"26098:1:81","type":"","value":"0"},{"name":"value","nativeSrc":"26101:5:81","nodeType":"YulIdentifier","src":"26101:5:81"}],"functionName":{"name":"sub","nativeSrc":"26094:3:81","nodeType":"YulIdentifier","src":"26094:3:81"},"nativeSrc":"26094:13:81","nodeType":"YulFunctionCall","src":"26094:13:81"},"variableNames":[{"name":"ret","nativeSrc":"26087:3:81","nodeType":"YulIdentifier","src":"26087:3:81"}]}]},"name":"negate_t_int256","nativeSrc":"25977:136:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"26002:5:81","nodeType":"YulTypedName","src":"26002:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"26012:3:81","nodeType":"YulTypedName","src":"26012:3:81","type":""}],"src":"25977:136:81"},{"body":{"nativeSrc":"26167:79:81","nodeType":"YulBlock","src":"26167:79:81","statements":[{"nativeSrc":"26177:17:81","nodeType":"YulAssignment","src":"26177:17:81","value":{"arguments":[{"name":"x","nativeSrc":"26189:1:81","nodeType":"YulIdentifier","src":"26189:1:81"},{"name":"y","nativeSrc":"26192:1:81","nodeType":"YulIdentifier","src":"26192:1:81"}],"functionName":{"name":"sub","nativeSrc":"26185:3:81","nodeType":"YulIdentifier","src":"26185:3:81"},"nativeSrc":"26185:9:81","nodeType":"YulFunctionCall","src":"26185:9:81"},"variableNames":[{"name":"diff","nativeSrc":"26177:4:81","nodeType":"YulIdentifier","src":"26177:4:81"}]},{"body":{"nativeSrc":"26218:22:81","nodeType":"YulBlock","src":"26218:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"26220:16:81","nodeType":"YulIdentifier","src":"26220:16:81"},"nativeSrc":"26220:18:81","nodeType":"YulFunctionCall","src":"26220:18:81"},"nativeSrc":"26220:18:81","nodeType":"YulExpressionStatement","src":"26220:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"26209:4:81","nodeType":"YulIdentifier","src":"26209:4:81"},{"name":"x","nativeSrc":"26215:1:81","nodeType":"YulIdentifier","src":"26215:1:81"}],"functionName":{"name":"gt","nativeSrc":"26206:2:81","nodeType":"YulIdentifier","src":"26206:2:81"},"nativeSrc":"26206:11:81","nodeType":"YulFunctionCall","src":"26206:11:81"},"nativeSrc":"26203:37:81","nodeType":"YulIf","src":"26203:37:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"26118:128:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"26149:1:81","nodeType":"YulTypedName","src":"26149:1:81","type":""},{"name":"y","nativeSrc":"26152:1:81","nodeType":"YulTypedName","src":"26152:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"26158:4:81","nodeType":"YulTypedName","src":"26158:4:81","type":""}],"src":"26118:128:81"},{"body":{"nativeSrc":"26306:325:81","nodeType":"YulBlock","src":"26306:325:81","statements":[{"nativeSrc":"26316:22:81","nodeType":"YulAssignment","src":"26316:22:81","value":{"arguments":[{"kind":"number","nativeSrc":"26330:1:81","nodeType":"YulLiteral","src":"26330:1:81","type":"","value":"1"},{"name":"data","nativeSrc":"26333:4:81","nodeType":"YulIdentifier","src":"26333:4:81"}],"functionName":{"name":"shr","nativeSrc":"26326:3:81","nodeType":"YulIdentifier","src":"26326:3:81"},"nativeSrc":"26326:12:81","nodeType":"YulFunctionCall","src":"26326:12:81"},"variableNames":[{"name":"length","nativeSrc":"26316:6:81","nodeType":"YulIdentifier","src":"26316:6:81"}]},{"nativeSrc":"26347:38:81","nodeType":"YulVariableDeclaration","src":"26347:38:81","value":{"arguments":[{"name":"data","nativeSrc":"26377:4:81","nodeType":"YulIdentifier","src":"26377:4:81"},{"kind":"number","nativeSrc":"26383:1:81","nodeType":"YulLiteral","src":"26383:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"26373:3:81","nodeType":"YulIdentifier","src":"26373:3:81"},"nativeSrc":"26373:12:81","nodeType":"YulFunctionCall","src":"26373:12:81"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"26351:18:81","nodeType":"YulTypedName","src":"26351:18:81","type":""}]},{"body":{"nativeSrc":"26424:31:81","nodeType":"YulBlock","src":"26424:31:81","statements":[{"nativeSrc":"26426:27:81","nodeType":"YulAssignment","src":"26426:27:81","value":{"arguments":[{"name":"length","nativeSrc":"26440:6:81","nodeType":"YulIdentifier","src":"26440:6:81"},{"kind":"number","nativeSrc":"26448:4:81","nodeType":"YulLiteral","src":"26448:4:81","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"26436:3:81","nodeType":"YulIdentifier","src":"26436:3:81"},"nativeSrc":"26436:17:81","nodeType":"YulFunctionCall","src":"26436:17:81"},"variableNames":[{"name":"length","nativeSrc":"26426:6:81","nodeType":"YulIdentifier","src":"26426:6:81"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"26404:18:81","nodeType":"YulIdentifier","src":"26404:18:81"}],"functionName":{"name":"iszero","nativeSrc":"26397:6:81","nodeType":"YulIdentifier","src":"26397:6:81"},"nativeSrc":"26397:26:81","nodeType":"YulFunctionCall","src":"26397:26:81"},"nativeSrc":"26394:61:81","nodeType":"YulIf","src":"26394:61:81"},{"body":{"nativeSrc":"26514:111:81","nodeType":"YulBlock","src":"26514:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26535:1:81","nodeType":"YulLiteral","src":"26535:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"26542:3:81","nodeType":"YulLiteral","src":"26542:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"26547:10:81","nodeType":"YulLiteral","src":"26547:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"26538:3:81","nodeType":"YulIdentifier","src":"26538:3:81"},"nativeSrc":"26538:20:81","nodeType":"YulFunctionCall","src":"26538:20:81"}],"functionName":{"name":"mstore","nativeSrc":"26528:6:81","nodeType":"YulIdentifier","src":"26528:6:81"},"nativeSrc":"26528:31:81","nodeType":"YulFunctionCall","src":"26528:31:81"},"nativeSrc":"26528:31:81","nodeType":"YulExpressionStatement","src":"26528:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26579:1:81","nodeType":"YulLiteral","src":"26579:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"26582:4:81","nodeType":"YulLiteral","src":"26582:4:81","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"26572:6:81","nodeType":"YulIdentifier","src":"26572:6:81"},"nativeSrc":"26572:15:81","nodeType":"YulFunctionCall","src":"26572:15:81"},"nativeSrc":"26572:15:81","nodeType":"YulExpressionStatement","src":"26572:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26607:1:81","nodeType":"YulLiteral","src":"26607:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"26610:4:81","nodeType":"YulLiteral","src":"26610:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"26600:6:81","nodeType":"YulIdentifier","src":"26600:6:81"},"nativeSrc":"26600:15:81","nodeType":"YulFunctionCall","src":"26600:15:81"},"nativeSrc":"26600:15:81","nodeType":"YulExpressionStatement","src":"26600:15:81"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"26470:18:81","nodeType":"YulIdentifier","src":"26470:18:81"},{"arguments":[{"name":"length","nativeSrc":"26493:6:81","nodeType":"YulIdentifier","src":"26493:6:81"},{"kind":"number","nativeSrc":"26501:2:81","nodeType":"YulLiteral","src":"26501:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"26490:2:81","nodeType":"YulIdentifier","src":"26490:2:81"},"nativeSrc":"26490:14:81","nodeType":"YulFunctionCall","src":"26490:14:81"}],"functionName":{"name":"eq","nativeSrc":"26467:2:81","nodeType":"YulIdentifier","src":"26467:2:81"},"nativeSrc":"26467:38:81","nodeType":"YulFunctionCall","src":"26467:38:81"},"nativeSrc":"26464:161:81","nodeType":"YulIf","src":"26464:161:81"}]},"name":"extract_byte_array_length","nativeSrc":"26251:380:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"26286:4:81","nodeType":"YulTypedName","src":"26286:4:81","type":""}],"returnVariables":[{"name":"length","nativeSrc":"26295:6:81","nodeType":"YulTypedName","src":"26295:6:81","type":""}],"src":"26251:380:81"},{"body":{"nativeSrc":"26744:101:81","nodeType":"YulBlock","src":"26744:101:81","statements":[{"nativeSrc":"26754:26:81","nodeType":"YulAssignment","src":"26754:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"26766:9:81","nodeType":"YulIdentifier","src":"26766:9:81"},{"kind":"number","nativeSrc":"26777:2:81","nodeType":"YulLiteral","src":"26777:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26762:3:81","nodeType":"YulIdentifier","src":"26762:3:81"},"nativeSrc":"26762:18:81","nodeType":"YulFunctionCall","src":"26762:18:81"},"variableNames":[{"name":"tail","nativeSrc":"26754:4:81","nodeType":"YulIdentifier","src":"26754:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26796:9:81","nodeType":"YulIdentifier","src":"26796:9:81"},{"arguments":[{"name":"value0","nativeSrc":"26811:6:81","nodeType":"YulIdentifier","src":"26811:6:81"},{"kind":"number","nativeSrc":"26819:18:81","nodeType":"YulLiteral","src":"26819:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"26807:3:81","nodeType":"YulIdentifier","src":"26807:3:81"},"nativeSrc":"26807:31:81","nodeType":"YulFunctionCall","src":"26807:31:81"}],"functionName":{"name":"mstore","nativeSrc":"26789:6:81","nodeType":"YulIdentifier","src":"26789:6:81"},"nativeSrc":"26789:50:81","nodeType":"YulFunctionCall","src":"26789:50:81"},"nativeSrc":"26789:50:81","nodeType":"YulExpressionStatement","src":"26789:50:81"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"26636:209:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26713:9:81","nodeType":"YulTypedName","src":"26713:9:81","type":""},{"name":"value0","nativeSrc":"26724:6:81","nodeType":"YulTypedName","src":"26724:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26735:4:81","nodeType":"YulTypedName","src":"26735:4:81","type":""}],"src":"26636:209:81"},{"body":{"nativeSrc":"26975:153:81","nodeType":"YulBlock","src":"26975:153:81","statements":[{"nativeSrc":"26985:26:81","nodeType":"YulAssignment","src":"26985:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"26997:9:81","nodeType":"YulIdentifier","src":"26997:9:81"},{"kind":"number","nativeSrc":"27008:2:81","nodeType":"YulLiteral","src":"27008:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26993:3:81","nodeType":"YulIdentifier","src":"26993:3:81"},"nativeSrc":"26993:18:81","nodeType":"YulFunctionCall","src":"26993:18:81"},"variableNames":[{"name":"tail","nativeSrc":"26985:4:81","nodeType":"YulIdentifier","src":"26985:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27027:9:81","nodeType":"YulIdentifier","src":"27027:9:81"},{"arguments":[{"name":"value0","nativeSrc":"27042:6:81","nodeType":"YulIdentifier","src":"27042:6:81"},{"kind":"number","nativeSrc":"27050:10:81","nodeType":"YulLiteral","src":"27050:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"27038:3:81","nodeType":"YulIdentifier","src":"27038:3:81"},"nativeSrc":"27038:23:81","nodeType":"YulFunctionCall","src":"27038:23:81"}],"functionName":{"name":"mstore","nativeSrc":"27020:6:81","nodeType":"YulIdentifier","src":"27020:6:81"},"nativeSrc":"27020:42:81","nodeType":"YulFunctionCall","src":"27020:42:81"},"nativeSrc":"27020:42:81","nodeType":"YulExpressionStatement","src":"27020:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27082:9:81","nodeType":"YulIdentifier","src":"27082:9:81"},{"kind":"number","nativeSrc":"27093:2:81","nodeType":"YulLiteral","src":"27093:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27078:3:81","nodeType":"YulIdentifier","src":"27078:3:81"},"nativeSrc":"27078:18:81","nodeType":"YulFunctionCall","src":"27078:18:81"},{"arguments":[{"name":"value1","nativeSrc":"27102:6:81","nodeType":"YulIdentifier","src":"27102:6:81"},{"kind":"number","nativeSrc":"27110:10:81","nodeType":"YulLiteral","src":"27110:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"27098:3:81","nodeType":"YulIdentifier","src":"27098:3:81"},"nativeSrc":"27098:23:81","nodeType":"YulFunctionCall","src":"27098:23:81"}],"functionName":{"name":"mstore","nativeSrc":"27071:6:81","nodeType":"YulIdentifier","src":"27071:6:81"},"nativeSrc":"27071:51:81","nodeType":"YulFunctionCall","src":"27071:51:81"},"nativeSrc":"27071:51:81","nodeType":"YulExpressionStatement","src":"27071:51:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed","nativeSrc":"26850:278:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26936:9:81","nodeType":"YulTypedName","src":"26936:9:81","type":""},{"name":"value1","nativeSrc":"26947:6:81","nodeType":"YulTypedName","src":"26947:6:81","type":""},{"name":"value0","nativeSrc":"26955:6:81","nodeType":"YulTypedName","src":"26955:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26966:4:81","nodeType":"YulTypedName","src":"26966:4:81","type":""}],"src":"26850:278:81"},{"body":{"nativeSrc":"27260:119:81","nodeType":"YulBlock","src":"27260:119:81","statements":[{"nativeSrc":"27270:26:81","nodeType":"YulAssignment","src":"27270:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"27282:9:81","nodeType":"YulIdentifier","src":"27282:9:81"},{"kind":"number","nativeSrc":"27293:2:81","nodeType":"YulLiteral","src":"27293:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27278:3:81","nodeType":"YulIdentifier","src":"27278:3:81"},"nativeSrc":"27278:18:81","nodeType":"YulFunctionCall","src":"27278:18:81"},"variableNames":[{"name":"tail","nativeSrc":"27270:4:81","nodeType":"YulIdentifier","src":"27270:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27312:9:81","nodeType":"YulIdentifier","src":"27312:9:81"},{"name":"value0","nativeSrc":"27323:6:81","nodeType":"YulIdentifier","src":"27323:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27305:6:81","nodeType":"YulIdentifier","src":"27305:6:81"},"nativeSrc":"27305:25:81","nodeType":"YulFunctionCall","src":"27305:25:81"},"nativeSrc":"27305:25:81","nodeType":"YulExpressionStatement","src":"27305:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27350:9:81","nodeType":"YulIdentifier","src":"27350:9:81"},{"kind":"number","nativeSrc":"27361:2:81","nodeType":"YulLiteral","src":"27361:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27346:3:81","nodeType":"YulIdentifier","src":"27346:3:81"},"nativeSrc":"27346:18:81","nodeType":"YulFunctionCall","src":"27346:18:81"},{"name":"value1","nativeSrc":"27366:6:81","nodeType":"YulIdentifier","src":"27366:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27339:6:81","nodeType":"YulIdentifier","src":"27339:6:81"},"nativeSrc":"27339:34:81","nodeType":"YulFunctionCall","src":"27339:34:81"},"nativeSrc":"27339:34:81","nodeType":"YulExpressionStatement","src":"27339:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed","nativeSrc":"27133:246:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27221:9:81","nodeType":"YulTypedName","src":"27221:9:81","type":""},{"name":"value1","nativeSrc":"27232:6:81","nodeType":"YulTypedName","src":"27232:6:81","type":""},{"name":"value0","nativeSrc":"27240:6:81","nodeType":"YulTypedName","src":"27240:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27251:4:81","nodeType":"YulTypedName","src":"27251:4:81","type":""}],"src":"27133:246:81"},{"body":{"nativeSrc":"27591:310:81","nodeType":"YulBlock","src":"27591:310:81","statements":[{"nativeSrc":"27601:27:81","nodeType":"YulAssignment","src":"27601:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"27613:9:81","nodeType":"YulIdentifier","src":"27613:9:81"},{"kind":"number","nativeSrc":"27624:3:81","nodeType":"YulLiteral","src":"27624:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"27609:3:81","nodeType":"YulIdentifier","src":"27609:3:81"},"nativeSrc":"27609:19:81","nodeType":"YulFunctionCall","src":"27609:19:81"},"variableNames":[{"name":"tail","nativeSrc":"27601:4:81","nodeType":"YulIdentifier","src":"27601:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27644:9:81","nodeType":"YulIdentifier","src":"27644:9:81"},{"arguments":[{"name":"value0","nativeSrc":"27659:6:81","nodeType":"YulIdentifier","src":"27659:6:81"},{"kind":"number","nativeSrc":"27667:10:81","nodeType":"YulLiteral","src":"27667:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"27655:3:81","nodeType":"YulIdentifier","src":"27655:3:81"},"nativeSrc":"27655:23:81","nodeType":"YulFunctionCall","src":"27655:23:81"}],"functionName":{"name":"mstore","nativeSrc":"27637:6:81","nodeType":"YulIdentifier","src":"27637:6:81"},"nativeSrc":"27637:42:81","nodeType":"YulFunctionCall","src":"27637:42:81"},"nativeSrc":"27637:42:81","nodeType":"YulExpressionStatement","src":"27637:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27699:9:81","nodeType":"YulIdentifier","src":"27699:9:81"},{"kind":"number","nativeSrc":"27710:2:81","nodeType":"YulLiteral","src":"27710:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27695:3:81","nodeType":"YulIdentifier","src":"27695:3:81"},"nativeSrc":"27695:18:81","nodeType":"YulFunctionCall","src":"27695:18:81"},{"arguments":[{"name":"value1","nativeSrc":"27719:6:81","nodeType":"YulIdentifier","src":"27719:6:81"},{"kind":"number","nativeSrc":"27727:10:81","nodeType":"YulLiteral","src":"27727:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"27715:3:81","nodeType":"YulIdentifier","src":"27715:3:81"},"nativeSrc":"27715:23:81","nodeType":"YulFunctionCall","src":"27715:23:81"}],"functionName":{"name":"mstore","nativeSrc":"27688:6:81","nodeType":"YulIdentifier","src":"27688:6:81"},"nativeSrc":"27688:51:81","nodeType":"YulFunctionCall","src":"27688:51:81"},"nativeSrc":"27688:51:81","nodeType":"YulExpressionStatement","src":"27688:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27759:9:81","nodeType":"YulIdentifier","src":"27759:9:81"},{"kind":"number","nativeSrc":"27770:2:81","nodeType":"YulLiteral","src":"27770:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27755:3:81","nodeType":"YulIdentifier","src":"27755:3:81"},"nativeSrc":"27755:18:81","nodeType":"YulFunctionCall","src":"27755:18:81"},{"name":"value2","nativeSrc":"27775:6:81","nodeType":"YulIdentifier","src":"27775:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27748:6:81","nodeType":"YulIdentifier","src":"27748:6:81"},"nativeSrc":"27748:34:81","nodeType":"YulFunctionCall","src":"27748:34:81"},"nativeSrc":"27748:34:81","nodeType":"YulExpressionStatement","src":"27748:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27802:9:81","nodeType":"YulIdentifier","src":"27802:9:81"},{"kind":"number","nativeSrc":"27813:2:81","nodeType":"YulLiteral","src":"27813:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27798:3:81","nodeType":"YulIdentifier","src":"27798:3:81"},"nativeSrc":"27798:18:81","nodeType":"YulFunctionCall","src":"27798:18:81"},{"name":"value3","nativeSrc":"27818:6:81","nodeType":"YulIdentifier","src":"27818:6:81"}],"functionName":{"name":"mstore","nativeSrc":"27791:6:81","nodeType":"YulIdentifier","src":"27791:6:81"},"nativeSrc":"27791:34:81","nodeType":"YulFunctionCall","src":"27791:34:81"},"nativeSrc":"27791:34:81","nodeType":"YulExpressionStatement","src":"27791:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27845:9:81","nodeType":"YulIdentifier","src":"27845:9:81"},{"kind":"number","nativeSrc":"27856:3:81","nodeType":"YulLiteral","src":"27856:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"27841:3:81","nodeType":"YulIdentifier","src":"27841:3:81"},"nativeSrc":"27841:19:81","nodeType":"YulFunctionCall","src":"27841:19:81"},{"arguments":[{"name":"value4","nativeSrc":"27866:6:81","nodeType":"YulIdentifier","src":"27866:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27882:3:81","nodeType":"YulLiteral","src":"27882:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"27887:1:81","nodeType":"YulLiteral","src":"27887:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"27878:3:81","nodeType":"YulIdentifier","src":"27878:3:81"},"nativeSrc":"27878:11:81","nodeType":"YulFunctionCall","src":"27878:11:81"},{"kind":"number","nativeSrc":"27891:1:81","nodeType":"YulLiteral","src":"27891:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"27874:3:81","nodeType":"YulIdentifier","src":"27874:3:81"},"nativeSrc":"27874:19:81","nodeType":"YulFunctionCall","src":"27874:19:81"}],"functionName":{"name":"and","nativeSrc":"27862:3:81","nodeType":"YulIdentifier","src":"27862:3:81"},"nativeSrc":"27862:32:81","nodeType":"YulFunctionCall","src":"27862:32:81"}],"functionName":{"name":"mstore","nativeSrc":"27834:6:81","nodeType":"YulIdentifier","src":"27834:6:81"},"nativeSrc":"27834:61:81","nodeType":"YulFunctionCall","src":"27834:61:81"},"nativeSrc":"27834:61:81","nodeType":"YulExpressionStatement","src":"27834:61:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed","nativeSrc":"27384:517:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27528:9:81","nodeType":"YulTypedName","src":"27528:9:81","type":""},{"name":"value4","nativeSrc":"27539:6:81","nodeType":"YulTypedName","src":"27539:6:81","type":""},{"name":"value3","nativeSrc":"27547:6:81","nodeType":"YulTypedName","src":"27547:6:81","type":""},{"name":"value2","nativeSrc":"27555:6:81","nodeType":"YulTypedName","src":"27555:6:81","type":""},{"name":"value1","nativeSrc":"27563:6:81","nodeType":"YulTypedName","src":"27563:6:81","type":""},{"name":"value0","nativeSrc":"27571:6:81","nodeType":"YulTypedName","src":"27571:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27582:4:81","nodeType":"YulTypedName","src":"27582:4:81","type":""}],"src":"27384:517:81"},{"body":{"nativeSrc":"28051:167:81","nodeType":"YulBlock","src":"28051:167:81","statements":[{"nativeSrc":"28061:26:81","nodeType":"YulAssignment","src":"28061:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"28073:9:81","nodeType":"YulIdentifier","src":"28073:9:81"},{"kind":"number","nativeSrc":"28084:2:81","nodeType":"YulLiteral","src":"28084:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28069:3:81","nodeType":"YulIdentifier","src":"28069:3:81"},"nativeSrc":"28069:18:81","nodeType":"YulFunctionCall","src":"28069:18:81"},"variableNames":[{"name":"tail","nativeSrc":"28061:4:81","nodeType":"YulIdentifier","src":"28061:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28103:9:81","nodeType":"YulIdentifier","src":"28103:9:81"},{"arguments":[{"name":"value0","nativeSrc":"28118:6:81","nodeType":"YulIdentifier","src":"28118:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28134:3:81","nodeType":"YulLiteral","src":"28134:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"28139:1:81","nodeType":"YulLiteral","src":"28139:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"28130:3:81","nodeType":"YulIdentifier","src":"28130:3:81"},"nativeSrc":"28130:11:81","nodeType":"YulFunctionCall","src":"28130:11:81"},{"kind":"number","nativeSrc":"28143:1:81","nodeType":"YulLiteral","src":"28143:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"28126:3:81","nodeType":"YulIdentifier","src":"28126:3:81"},"nativeSrc":"28126:19:81","nodeType":"YulFunctionCall","src":"28126:19:81"}],"functionName":{"name":"and","nativeSrc":"28114:3:81","nodeType":"YulIdentifier","src":"28114:3:81"},"nativeSrc":"28114:32:81","nodeType":"YulFunctionCall","src":"28114:32:81"}],"functionName":{"name":"mstore","nativeSrc":"28096:6:81","nodeType":"YulIdentifier","src":"28096:6:81"},"nativeSrc":"28096:51:81","nodeType":"YulFunctionCall","src":"28096:51:81"},"nativeSrc":"28096:51:81","nodeType":"YulExpressionStatement","src":"28096:51:81"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"28185:6:81","nodeType":"YulIdentifier","src":"28185:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"28197:9:81","nodeType":"YulIdentifier","src":"28197:9:81"},{"kind":"number","nativeSrc":"28208:2:81","nodeType":"YulLiteral","src":"28208:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28193:3:81","nodeType":"YulIdentifier","src":"28193:3:81"},"nativeSrc":"28193:18:81","nodeType":"YulFunctionCall","src":"28193:18:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"28156:28:81","nodeType":"YulIdentifier","src":"28156:28:81"},"nativeSrc":"28156:56:81","nodeType":"YulFunctionCall","src":"28156:56:81"},"nativeSrc":"28156:56:81","nodeType":"YulExpressionStatement","src":"28156:56:81"}]},"name":"abi_encode_tuple_t_address_t_enum$_TargetStatus_$22999__to_t_address_t_uint8__fromStack_reversed","nativeSrc":"27906:312:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28012:9:81","nodeType":"YulTypedName","src":"28012:9:81","type":""},{"name":"value1","nativeSrc":"28023:6:81","nodeType":"YulTypedName","src":"28023:6:81","type":""},{"name":"value0","nativeSrc":"28031:6:81","nodeType":"YulTypedName","src":"28031:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28042:4:81","nodeType":"YulTypedName","src":"28042:4:81","type":""}],"src":"27906:312:81"},{"body":{"nativeSrc":"28269:102:81","nodeType":"YulBlock","src":"28269:102:81","statements":[{"nativeSrc":"28279:38:81","nodeType":"YulAssignment","src":"28279:38:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"28294:1:81","nodeType":"YulIdentifier","src":"28294:1:81"},{"kind":"number","nativeSrc":"28297:4:81","nodeType":"YulLiteral","src":"28297:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"28290:3:81","nodeType":"YulIdentifier","src":"28290:3:81"},"nativeSrc":"28290:12:81","nodeType":"YulFunctionCall","src":"28290:12:81"},{"arguments":[{"name":"y","nativeSrc":"28308:1:81","nodeType":"YulIdentifier","src":"28308:1:81"},{"kind":"number","nativeSrc":"28311:4:81","nodeType":"YulLiteral","src":"28311:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"28304:3:81","nodeType":"YulIdentifier","src":"28304:3:81"},"nativeSrc":"28304:12:81","nodeType":"YulFunctionCall","src":"28304:12:81"}],"functionName":{"name":"add","nativeSrc":"28286:3:81","nodeType":"YulIdentifier","src":"28286:3:81"},"nativeSrc":"28286:31:81","nodeType":"YulFunctionCall","src":"28286:31:81"},"variableNames":[{"name":"sum","nativeSrc":"28279:3:81","nodeType":"YulIdentifier","src":"28279:3:81"}]},{"body":{"nativeSrc":"28343:22:81","nodeType":"YulBlock","src":"28343:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"28345:16:81","nodeType":"YulIdentifier","src":"28345:16:81"},"nativeSrc":"28345:18:81","nodeType":"YulFunctionCall","src":"28345:18:81"},"nativeSrc":"28345:18:81","nodeType":"YulExpressionStatement","src":"28345:18:81"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"28332:3:81","nodeType":"YulIdentifier","src":"28332:3:81"},{"kind":"number","nativeSrc":"28337:4:81","nodeType":"YulLiteral","src":"28337:4:81","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"28329:2:81","nodeType":"YulIdentifier","src":"28329:2:81"},"nativeSrc":"28329:13:81","nodeType":"YulFunctionCall","src":"28329:13:81"},"nativeSrc":"28326:39:81","nodeType":"YulIf","src":"28326:39:81"}]},"name":"checked_add_t_uint8","nativeSrc":"28223:148:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"28252:1:81","nodeType":"YulTypedName","src":"28252:1:81","type":""},{"name":"y","nativeSrc":"28255:1:81","nodeType":"YulTypedName","src":"28255:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"28261:3:81","nodeType":"YulTypedName","src":"28261:3:81","type":""}],"src":"28223:148:81"},{"body":{"nativeSrc":"28506:201:81","nodeType":"YulBlock","src":"28506:201:81","statements":[{"body":{"nativeSrc":"28544:16:81","nodeType":"YulBlock","src":"28544:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28553:1:81","nodeType":"YulLiteral","src":"28553:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"28556:1:81","nodeType":"YulLiteral","src":"28556:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28546:6:81","nodeType":"YulIdentifier","src":"28546:6:81"},"nativeSrc":"28546:12:81","nodeType":"YulFunctionCall","src":"28546:12:81"},"nativeSrc":"28546:12:81","nodeType":"YulExpressionStatement","src":"28546:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"28522:10:81","nodeType":"YulIdentifier","src":"28522:10:81"},{"name":"endIndex","nativeSrc":"28534:8:81","nodeType":"YulIdentifier","src":"28534:8:81"}],"functionName":{"name":"gt","nativeSrc":"28519:2:81","nodeType":"YulIdentifier","src":"28519:2:81"},"nativeSrc":"28519:24:81","nodeType":"YulFunctionCall","src":"28519:24:81"},"nativeSrc":"28516:44:81","nodeType":"YulIf","src":"28516:44:81"},{"body":{"nativeSrc":"28593:16:81","nodeType":"YulBlock","src":"28593:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28602:1:81","nodeType":"YulLiteral","src":"28602:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"28605:1:81","nodeType":"YulLiteral","src":"28605:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28595:6:81","nodeType":"YulIdentifier","src":"28595:6:81"},"nativeSrc":"28595:12:81","nodeType":"YulFunctionCall","src":"28595:12:81"},"nativeSrc":"28595:12:81","nodeType":"YulExpressionStatement","src":"28595:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"28575:8:81","nodeType":"YulIdentifier","src":"28575:8:81"},{"name":"length","nativeSrc":"28585:6:81","nodeType":"YulIdentifier","src":"28585:6:81"}],"functionName":{"name":"gt","nativeSrc":"28572:2:81","nodeType":"YulIdentifier","src":"28572:2:81"},"nativeSrc":"28572:20:81","nodeType":"YulFunctionCall","src":"28572:20:81"},"nativeSrc":"28569:40:81","nodeType":"YulIf","src":"28569:40:81"},{"nativeSrc":"28618:36:81","nodeType":"YulAssignment","src":"28618:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"28635:6:81","nodeType":"YulIdentifier","src":"28635:6:81"},{"name":"startIndex","nativeSrc":"28643:10:81","nodeType":"YulIdentifier","src":"28643:10:81"}],"functionName":{"name":"add","nativeSrc":"28631:3:81","nodeType":"YulIdentifier","src":"28631:3:81"},"nativeSrc":"28631:23:81","nodeType":"YulFunctionCall","src":"28631:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"28618:9:81","nodeType":"YulIdentifier","src":"28618:9:81"}]},{"nativeSrc":"28663:38:81","nodeType":"YulAssignment","src":"28663:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"28680:8:81","nodeType":"YulIdentifier","src":"28680:8:81"},{"name":"startIndex","nativeSrc":"28690:10:81","nodeType":"YulIdentifier","src":"28690:10:81"}],"functionName":{"name":"sub","nativeSrc":"28676:3:81","nodeType":"YulIdentifier","src":"28676:3:81"},"nativeSrc":"28676:25:81","nodeType":"YulFunctionCall","src":"28676:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"28663:9:81","nodeType":"YulIdentifier","src":"28663:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"28376:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"28440:6:81","nodeType":"YulTypedName","src":"28440:6:81","type":""},{"name":"length","nativeSrc":"28448:6:81","nodeType":"YulTypedName","src":"28448:6:81","type":""},{"name":"startIndex","nativeSrc":"28456:10:81","nodeType":"YulTypedName","src":"28456:10:81","type":""},{"name":"endIndex","nativeSrc":"28468:8:81","nodeType":"YulTypedName","src":"28468:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"28481:9:81","nodeType":"YulTypedName","src":"28481:9:81","type":""},{"name":"lengthOut","nativeSrc":"28492:9:81","nodeType":"YulTypedName","src":"28492:9:81","type":""}],"src":"28376:331:81"},{"body":{"nativeSrc":"28812:238:81","nodeType":"YulBlock","src":"28812:238:81","statements":[{"nativeSrc":"28822:29:81","nodeType":"YulVariableDeclaration","src":"28822:29:81","value":{"arguments":[{"name":"array","nativeSrc":"28845:5:81","nodeType":"YulIdentifier","src":"28845:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"28832:12:81","nodeType":"YulIdentifier","src":"28832:12:81"},"nativeSrc":"28832:19:81","nodeType":"YulFunctionCall","src":"28832:19:81"},"variables":[{"name":"_1","nativeSrc":"28826:2:81","nodeType":"YulTypedName","src":"28826:2:81","type":""}]},{"nativeSrc":"28860:38:81","nodeType":"YulAssignment","src":"28860:38:81","value":{"arguments":[{"name":"_1","nativeSrc":"28873:2:81","nodeType":"YulIdentifier","src":"28873:2:81"},{"arguments":[{"kind":"number","nativeSrc":"28881:3:81","nodeType":"YulLiteral","src":"28881:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"28886:10:81","nodeType":"YulLiteral","src":"28886:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"28877:3:81","nodeType":"YulIdentifier","src":"28877:3:81"},"nativeSrc":"28877:20:81","nodeType":"YulFunctionCall","src":"28877:20:81"}],"functionName":{"name":"and","nativeSrc":"28869:3:81","nodeType":"YulIdentifier","src":"28869:3:81"},"nativeSrc":"28869:29:81","nodeType":"YulFunctionCall","src":"28869:29:81"},"variableNames":[{"name":"value","nativeSrc":"28860:5:81","nodeType":"YulIdentifier","src":"28860:5:81"}]},{"body":{"nativeSrc":"28929:115:81","nodeType":"YulBlock","src":"28929:115:81","statements":[{"nativeSrc":"28943:91:81","nodeType":"YulAssignment","src":"28943:91:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"28960:2:81","nodeType":"YulIdentifier","src":"28960:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28972:1:81","nodeType":"YulLiteral","src":"28972:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"28979:1:81","nodeType":"YulLiteral","src":"28979:1:81","type":"","value":"4"},{"name":"len","nativeSrc":"28982:3:81","nodeType":"YulIdentifier","src":"28982:3:81"}],"functionName":{"name":"sub","nativeSrc":"28975:3:81","nodeType":"YulIdentifier","src":"28975:3:81"},"nativeSrc":"28975:11:81","nodeType":"YulFunctionCall","src":"28975:11:81"}],"functionName":{"name":"shl","nativeSrc":"28968:3:81","nodeType":"YulIdentifier","src":"28968:3:81"},"nativeSrc":"28968:19:81","nodeType":"YulFunctionCall","src":"28968:19:81"},{"arguments":[{"kind":"number","nativeSrc":"28993:3:81","nodeType":"YulLiteral","src":"28993:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"28998:10:81","nodeType":"YulLiteral","src":"28998:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"28989:3:81","nodeType":"YulIdentifier","src":"28989:3:81"},"nativeSrc":"28989:20:81","nodeType":"YulFunctionCall","src":"28989:20:81"}],"functionName":{"name":"shl","nativeSrc":"28964:3:81","nodeType":"YulIdentifier","src":"28964:3:81"},"nativeSrc":"28964:46:81","nodeType":"YulFunctionCall","src":"28964:46:81"}],"functionName":{"name":"and","nativeSrc":"28956:3:81","nodeType":"YulIdentifier","src":"28956:3:81"},"nativeSrc":"28956:55:81","nodeType":"YulFunctionCall","src":"28956:55:81"},{"arguments":[{"kind":"number","nativeSrc":"29017:3:81","nodeType":"YulLiteral","src":"29017:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"29022:10:81","nodeType":"YulLiteral","src":"29022:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"29013:3:81","nodeType":"YulIdentifier","src":"29013:3:81"},"nativeSrc":"29013:20:81","nodeType":"YulFunctionCall","src":"29013:20:81"}],"functionName":{"name":"and","nativeSrc":"28952:3:81","nodeType":"YulIdentifier","src":"28952:3:81"},"nativeSrc":"28952:82:81","nodeType":"YulFunctionCall","src":"28952:82:81"},"variableNames":[{"name":"value","nativeSrc":"28943:5:81","nodeType":"YulIdentifier","src":"28943:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"28913:3:81","nodeType":"YulIdentifier","src":"28913:3:81"},{"kind":"number","nativeSrc":"28918:1:81","nodeType":"YulLiteral","src":"28918:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"28910:2:81","nodeType":"YulIdentifier","src":"28910:2:81"},"nativeSrc":"28910:10:81","nodeType":"YulFunctionCall","src":"28910:10:81"},"nativeSrc":"28907:137:81","nodeType":"YulIf","src":"28907:137:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"28712:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"28787:5:81","nodeType":"YulTypedName","src":"28787:5:81","type":""},{"name":"len","nativeSrc":"28794:3:81","nodeType":"YulTypedName","src":"28794:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"28802:5:81","nodeType":"YulTypedName","src":"28802:5:81","type":""}],"src":"28712:338:81"},{"body":{"nativeSrc":"29136:180:81","nodeType":"YulBlock","src":"29136:180:81","statements":[{"body":{"nativeSrc":"29182:16:81","nodeType":"YulBlock","src":"29182:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29191:1:81","nodeType":"YulLiteral","src":"29191:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"29194:1:81","nodeType":"YulLiteral","src":"29194:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29184:6:81","nodeType":"YulIdentifier","src":"29184:6:81"},"nativeSrc":"29184:12:81","nodeType":"YulFunctionCall","src":"29184:12:81"},"nativeSrc":"29184:12:81","nodeType":"YulExpressionStatement","src":"29184:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29157:7:81","nodeType":"YulIdentifier","src":"29157:7:81"},{"name":"headStart","nativeSrc":"29166:9:81","nodeType":"YulIdentifier","src":"29166:9:81"}],"functionName":{"name":"sub","nativeSrc":"29153:3:81","nodeType":"YulIdentifier","src":"29153:3:81"},"nativeSrc":"29153:23:81","nodeType":"YulFunctionCall","src":"29153:23:81"},{"kind":"number","nativeSrc":"29178:2:81","nodeType":"YulLiteral","src":"29178:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29149:3:81","nodeType":"YulIdentifier","src":"29149:3:81"},"nativeSrc":"29149:32:81","nodeType":"YulFunctionCall","src":"29149:32:81"},"nativeSrc":"29146:52:81","nodeType":"YulIf","src":"29146:52:81"},{"nativeSrc":"29207:29:81","nodeType":"YulVariableDeclaration","src":"29207:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29226:9:81","nodeType":"YulIdentifier","src":"29226:9:81"}],"functionName":{"name":"mload","nativeSrc":"29220:5:81","nodeType":"YulIdentifier","src":"29220:5:81"},"nativeSrc":"29220:16:81","nodeType":"YulFunctionCall","src":"29220:16:81"},"variables":[{"name":"value","nativeSrc":"29211:5:81","nodeType":"YulTypedName","src":"29211:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29280:5:81","nodeType":"YulIdentifier","src":"29280:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"29245:34:81","nodeType":"YulIdentifier","src":"29245:34:81"},"nativeSrc":"29245:41:81","nodeType":"YulFunctionCall","src":"29245:41:81"},"nativeSrc":"29245:41:81","nodeType":"YulExpressionStatement","src":"29245:41:81"},{"nativeSrc":"29295:15:81","nodeType":"YulAssignment","src":"29295:15:81","value":{"name":"value","nativeSrc":"29305:5:81","nodeType":"YulIdentifier","src":"29305:5:81"},"variableNames":[{"name":"value0","nativeSrc":"29295:6:81","nodeType":"YulIdentifier","src":"29295:6:81"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"29055:261:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29102:9:81","nodeType":"YulTypedName","src":"29102:9:81","type":""},{"name":"dataEnd","nativeSrc":"29113:7:81","nodeType":"YulTypedName","src":"29113:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29125:6:81","nodeType":"YulTypedName","src":"29125:6:81","type":""}],"src":"29055:261:81"},{"body":{"nativeSrc":"29446:152:81","nodeType":"YulBlock","src":"29446:152:81","statements":[{"nativeSrc":"29456:26:81","nodeType":"YulAssignment","src":"29456:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29468:9:81","nodeType":"YulIdentifier","src":"29468:9:81"},{"kind":"number","nativeSrc":"29479:2:81","nodeType":"YulLiteral","src":"29479:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29464:3:81","nodeType":"YulIdentifier","src":"29464:3:81"},"nativeSrc":"29464:18:81","nodeType":"YulFunctionCall","src":"29464:18:81"},"variableNames":[{"name":"tail","nativeSrc":"29456:4:81","nodeType":"YulIdentifier","src":"29456:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29498:9:81","nodeType":"YulIdentifier","src":"29498:9:81"},{"name":"value0","nativeSrc":"29509:6:81","nodeType":"YulIdentifier","src":"29509:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29491:6:81","nodeType":"YulIdentifier","src":"29491:6:81"},"nativeSrc":"29491:25:81","nodeType":"YulFunctionCall","src":"29491:25:81"},"nativeSrc":"29491:25:81","nodeType":"YulExpressionStatement","src":"29491:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29536:9:81","nodeType":"YulIdentifier","src":"29536:9:81"},{"kind":"number","nativeSrc":"29547:2:81","nodeType":"YulLiteral","src":"29547:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29532:3:81","nodeType":"YulIdentifier","src":"29532:3:81"},"nativeSrc":"29532:18:81","nodeType":"YulFunctionCall","src":"29532:18:81"},{"arguments":[{"name":"value1","nativeSrc":"29556:6:81","nodeType":"YulIdentifier","src":"29556:6:81"},{"kind":"number","nativeSrc":"29564:26:81","nodeType":"YulLiteral","src":"29564:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"29552:3:81","nodeType":"YulIdentifier","src":"29552:3:81"},"nativeSrc":"29552:39:81","nodeType":"YulFunctionCall","src":"29552:39:81"}],"functionName":{"name":"mstore","nativeSrc":"29525:6:81","nodeType":"YulIdentifier","src":"29525:6:81"},"nativeSrc":"29525:67:81","nodeType":"YulFunctionCall","src":"29525:67:81"},"nativeSrc":"29525:67:81","nodeType":"YulExpressionStatement","src":"29525:67:81"}]},"name":"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed","nativeSrc":"29321:277:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29407:9:81","nodeType":"YulTypedName","src":"29407:9:81","type":""},{"name":"value1","nativeSrc":"29418:6:81","nodeType":"YulTypedName","src":"29418:6:81","type":""},{"name":"value0","nativeSrc":"29426:6:81","nodeType":"YulTypedName","src":"29426:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29437:4:81","nodeType":"YulTypedName","src":"29437:4:81","type":""}],"src":"29321:277:81"},{"body":{"nativeSrc":"29760:188:81","nodeType":"YulBlock","src":"29760:188:81","statements":[{"nativeSrc":"29770:26:81","nodeType":"YulAssignment","src":"29770:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29782:9:81","nodeType":"YulIdentifier","src":"29782:9:81"},{"kind":"number","nativeSrc":"29793:2:81","nodeType":"YulLiteral","src":"29793:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29778:3:81","nodeType":"YulIdentifier","src":"29778:3:81"},"nativeSrc":"29778:18:81","nodeType":"YulFunctionCall","src":"29778:18:81"},"variableNames":[{"name":"tail","nativeSrc":"29770:4:81","nodeType":"YulIdentifier","src":"29770:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29812:9:81","nodeType":"YulIdentifier","src":"29812:9:81"},{"arguments":[{"name":"value0","nativeSrc":"29827:6:81","nodeType":"YulIdentifier","src":"29827:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29843:3:81","nodeType":"YulLiteral","src":"29843:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"29848:1:81","nodeType":"YulLiteral","src":"29848:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29839:3:81","nodeType":"YulIdentifier","src":"29839:3:81"},"nativeSrc":"29839:11:81","nodeType":"YulFunctionCall","src":"29839:11:81"},{"kind":"number","nativeSrc":"29852:1:81","nodeType":"YulLiteral","src":"29852:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29835:3:81","nodeType":"YulIdentifier","src":"29835:3:81"},"nativeSrc":"29835:19:81","nodeType":"YulFunctionCall","src":"29835:19:81"}],"functionName":{"name":"and","nativeSrc":"29823:3:81","nodeType":"YulIdentifier","src":"29823:3:81"},"nativeSrc":"29823:32:81","nodeType":"YulFunctionCall","src":"29823:32:81"}],"functionName":{"name":"mstore","nativeSrc":"29805:6:81","nodeType":"YulIdentifier","src":"29805:6:81"},"nativeSrc":"29805:51:81","nodeType":"YulFunctionCall","src":"29805:51:81"},"nativeSrc":"29805:51:81","nodeType":"YulExpressionStatement","src":"29805:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29876:9:81","nodeType":"YulIdentifier","src":"29876:9:81"},{"kind":"number","nativeSrc":"29887:2:81","nodeType":"YulLiteral","src":"29887:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29872:3:81","nodeType":"YulIdentifier","src":"29872:3:81"},"nativeSrc":"29872:18:81","nodeType":"YulFunctionCall","src":"29872:18:81"},{"name":"value1","nativeSrc":"29892:6:81","nodeType":"YulIdentifier","src":"29892:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29865:6:81","nodeType":"YulIdentifier","src":"29865:6:81"},"nativeSrc":"29865:34:81","nodeType":"YulFunctionCall","src":"29865:34:81"},"nativeSrc":"29865:34:81","nodeType":"YulExpressionStatement","src":"29865:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29919:9:81","nodeType":"YulIdentifier","src":"29919:9:81"},{"kind":"number","nativeSrc":"29930:2:81","nodeType":"YulLiteral","src":"29930:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29915:3:81","nodeType":"YulIdentifier","src":"29915:3:81"},"nativeSrc":"29915:18:81","nodeType":"YulFunctionCall","src":"29915:18:81"},{"name":"value2","nativeSrc":"29935:6:81","nodeType":"YulIdentifier","src":"29935:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29908:6:81","nodeType":"YulIdentifier","src":"29908:6:81"},"nativeSrc":"29908:34:81","nodeType":"YulFunctionCall","src":"29908:34:81"},"nativeSrc":"29908:34:81","nodeType":"YulExpressionStatement","src":"29908:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"29603:345:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29713:9:81","nodeType":"YulTypedName","src":"29713:9:81","type":""},{"name":"value2","nativeSrc":"29724:6:81","nodeType":"YulTypedName","src":"29724:6:81","type":""},{"name":"value1","nativeSrc":"29732:6:81","nodeType":"YulTypedName","src":"29732:6:81","type":""},{"name":"value0","nativeSrc":"29740:6:81","nodeType":"YulTypedName","src":"29740:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29751:4:81","nodeType":"YulTypedName","src":"29751:4:81","type":""}],"src":"29603:345:81"},{"body":{"nativeSrc":"30082:145:81","nodeType":"YulBlock","src":"30082:145:81","statements":[{"nativeSrc":"30092:26:81","nodeType":"YulAssignment","src":"30092:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"30104:9:81","nodeType":"YulIdentifier","src":"30104:9:81"},{"kind":"number","nativeSrc":"30115:2:81","nodeType":"YulLiteral","src":"30115:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30100:3:81","nodeType":"YulIdentifier","src":"30100:3:81"},"nativeSrc":"30100:18:81","nodeType":"YulFunctionCall","src":"30100:18:81"},"variableNames":[{"name":"tail","nativeSrc":"30092:4:81","nodeType":"YulIdentifier","src":"30092:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30134:9:81","nodeType":"YulIdentifier","src":"30134:9:81"},{"name":"value0","nativeSrc":"30145:6:81","nodeType":"YulIdentifier","src":"30145:6:81"}],"functionName":{"name":"mstore","nativeSrc":"30127:6:81","nodeType":"YulIdentifier","src":"30127:6:81"},"nativeSrc":"30127:25:81","nodeType":"YulFunctionCall","src":"30127:25:81"},"nativeSrc":"30127:25:81","nodeType":"YulExpressionStatement","src":"30127:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30172:9:81","nodeType":"YulIdentifier","src":"30172:9:81"},{"kind":"number","nativeSrc":"30183:2:81","nodeType":"YulLiteral","src":"30183:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30168:3:81","nodeType":"YulIdentifier","src":"30168:3:81"},"nativeSrc":"30168:18:81","nodeType":"YulFunctionCall","src":"30168:18:81"},{"arguments":[{"name":"value1","nativeSrc":"30192:6:81","nodeType":"YulIdentifier","src":"30192:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30208:3:81","nodeType":"YulLiteral","src":"30208:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"30213:1:81","nodeType":"YulLiteral","src":"30213:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30204:3:81","nodeType":"YulIdentifier","src":"30204:3:81"},"nativeSrc":"30204:11:81","nodeType":"YulFunctionCall","src":"30204:11:81"},{"kind":"number","nativeSrc":"30217:1:81","nodeType":"YulLiteral","src":"30217:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30200:3:81","nodeType":"YulIdentifier","src":"30200:3:81"},"nativeSrc":"30200:19:81","nodeType":"YulFunctionCall","src":"30200:19:81"}],"functionName":{"name":"and","nativeSrc":"30188:3:81","nodeType":"YulIdentifier","src":"30188:3:81"},"nativeSrc":"30188:32:81","nodeType":"YulFunctionCall","src":"30188:32:81"}],"functionName":{"name":"mstore","nativeSrc":"30161:6:81","nodeType":"YulIdentifier","src":"30161:6:81"},"nativeSrc":"30161:60:81","nodeType":"YulFunctionCall","src":"30161:60:81"},"nativeSrc":"30161:60:81","nodeType":"YulExpressionStatement","src":"30161:60:81"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"29953:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30043:9:81","nodeType":"YulTypedName","src":"30043:9:81","type":""},{"name":"value1","nativeSrc":"30054:6:81","nodeType":"YulTypedName","src":"30054:6:81","type":""},{"name":"value0","nativeSrc":"30062:6:81","nodeType":"YulTypedName","src":"30062:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30073:4:81","nodeType":"YulTypedName","src":"30073:4:81","type":""}],"src":"29953:274:81"},{"body":{"nativeSrc":"30415:272:81","nodeType":"YulBlock","src":"30415:272:81","statements":[{"nativeSrc":"30425:27:81","nodeType":"YulAssignment","src":"30425:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"30437:9:81","nodeType":"YulIdentifier","src":"30437:9:81"},{"kind":"number","nativeSrc":"30448:3:81","nodeType":"YulLiteral","src":"30448:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30433:3:81","nodeType":"YulIdentifier","src":"30433:3:81"},"nativeSrc":"30433:19:81","nodeType":"YulFunctionCall","src":"30433:19:81"},"variableNames":[{"name":"tail","nativeSrc":"30425:4:81","nodeType":"YulIdentifier","src":"30425:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30468:9:81","nodeType":"YulIdentifier","src":"30468:9:81"},{"arguments":[{"name":"value0","nativeSrc":"30483:6:81","nodeType":"YulIdentifier","src":"30483:6:81"},{"kind":"number","nativeSrc":"30491:26:81","nodeType":"YulLiteral","src":"30491:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"30479:3:81","nodeType":"YulIdentifier","src":"30479:3:81"},"nativeSrc":"30479:39:81","nodeType":"YulFunctionCall","src":"30479:39:81"}],"functionName":{"name":"mstore","nativeSrc":"30461:6:81","nodeType":"YulIdentifier","src":"30461:6:81"},"nativeSrc":"30461:58:81","nodeType":"YulFunctionCall","src":"30461:58:81"},"nativeSrc":"30461:58:81","nodeType":"YulExpressionStatement","src":"30461:58:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30539:9:81","nodeType":"YulIdentifier","src":"30539:9:81"},{"kind":"number","nativeSrc":"30550:2:81","nodeType":"YulLiteral","src":"30550:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30535:3:81","nodeType":"YulIdentifier","src":"30535:3:81"},"nativeSrc":"30535:18:81","nodeType":"YulFunctionCall","src":"30535:18:81"},{"name":"value1","nativeSrc":"30555:6:81","nodeType":"YulIdentifier","src":"30555:6:81"}],"functionName":{"name":"mstore","nativeSrc":"30528:6:81","nodeType":"YulIdentifier","src":"30528:6:81"},"nativeSrc":"30528:34:81","nodeType":"YulFunctionCall","src":"30528:34:81"},"nativeSrc":"30528:34:81","nodeType":"YulExpressionStatement","src":"30528:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30582:9:81","nodeType":"YulIdentifier","src":"30582:9:81"},{"kind":"number","nativeSrc":"30593:2:81","nodeType":"YulLiteral","src":"30593:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30578:3:81","nodeType":"YulIdentifier","src":"30578:3:81"},"nativeSrc":"30578:18:81","nodeType":"YulFunctionCall","src":"30578:18:81"},{"arguments":[{"name":"value2","nativeSrc":"30602:6:81","nodeType":"YulIdentifier","src":"30602:6:81"},{"kind":"number","nativeSrc":"30610:26:81","nodeType":"YulLiteral","src":"30610:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"30598:3:81","nodeType":"YulIdentifier","src":"30598:3:81"},"nativeSrc":"30598:39:81","nodeType":"YulFunctionCall","src":"30598:39:81"}],"functionName":{"name":"mstore","nativeSrc":"30571:6:81","nodeType":"YulIdentifier","src":"30571:6:81"},"nativeSrc":"30571:67:81","nodeType":"YulFunctionCall","src":"30571:67:81"},"nativeSrc":"30571:67:81","nodeType":"YulExpressionStatement","src":"30571:67:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30658:9:81","nodeType":"YulIdentifier","src":"30658:9:81"},{"kind":"number","nativeSrc":"30669:2:81","nodeType":"YulLiteral","src":"30669:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30654:3:81","nodeType":"YulIdentifier","src":"30654:3:81"},"nativeSrc":"30654:18:81","nodeType":"YulFunctionCall","src":"30654:18:81"},{"name":"value3","nativeSrc":"30674:6:81","nodeType":"YulIdentifier","src":"30674:6:81"}],"functionName":{"name":"mstore","nativeSrc":"30647:6:81","nodeType":"YulIdentifier","src":"30647:6:81"},"nativeSrc":"30647:34:81","nodeType":"YulFunctionCall","src":"30647:34:81"},"nativeSrc":"30647:34:81","nodeType":"YulExpressionStatement","src":"30647:34:81"}]},"name":"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"30232:455:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30360:9:81","nodeType":"YulTypedName","src":"30360:9:81","type":""},{"name":"value3","nativeSrc":"30371:6:81","nodeType":"YulTypedName","src":"30371:6:81","type":""},{"name":"value2","nativeSrc":"30379:6:81","nodeType":"YulTypedName","src":"30379:6:81","type":""},{"name":"value1","nativeSrc":"30387:6:81","nodeType":"YulTypedName","src":"30387:6:81","type":""},{"name":"value0","nativeSrc":"30395:6:81","nodeType":"YulTypedName","src":"30395:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30406:4:81","nodeType":"YulTypedName","src":"30406:4:81","type":""}],"src":"30232:455:81"},{"body":{"nativeSrc":"30856:405:81","nodeType":"YulBlock","src":"30856:405:81","statements":[{"nativeSrc":"30866:27:81","nodeType":"YulAssignment","src":"30866:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"30878:9:81","nodeType":"YulIdentifier","src":"30878:9:81"},{"kind":"number","nativeSrc":"30889:3:81","nodeType":"YulLiteral","src":"30889:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30874:3:81","nodeType":"YulIdentifier","src":"30874:3:81"},"nativeSrc":"30874:19:81","nodeType":"YulFunctionCall","src":"30874:19:81"},"variableNames":[{"name":"tail","nativeSrc":"30866:4:81","nodeType":"YulIdentifier","src":"30866:4:81"}]},{"nativeSrc":"30902:30:81","nodeType":"YulVariableDeclaration","src":"30902:30:81","value":{"arguments":[{"name":"value0","nativeSrc":"30925:6:81","nodeType":"YulIdentifier","src":"30925:6:81"}],"functionName":{"name":"sload","nativeSrc":"30919:5:81","nodeType":"YulIdentifier","src":"30919:5:81"},"nativeSrc":"30919:13:81","nodeType":"YulFunctionCall","src":"30919:13:81"},"variables":[{"name":"slotValue","nativeSrc":"30906:9:81","nodeType":"YulTypedName","src":"30906:9:81","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30948:9:81","nodeType":"YulIdentifier","src":"30948:9:81"},{"arguments":[{"name":"slotValue","nativeSrc":"30963:9:81","nodeType":"YulIdentifier","src":"30963:9:81"},{"kind":"number","nativeSrc":"30974:10:81","nodeType":"YulLiteral","src":"30974:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"30959:3:81","nodeType":"YulIdentifier","src":"30959:3:81"},"nativeSrc":"30959:26:81","nodeType":"YulFunctionCall","src":"30959:26:81"}],"functionName":{"name":"mstore","nativeSrc":"30941:6:81","nodeType":"YulIdentifier","src":"30941:6:81"},"nativeSrc":"30941:45:81","nodeType":"YulFunctionCall","src":"30941:45:81"},"nativeSrc":"30941:45:81","nodeType":"YulExpressionStatement","src":"30941:45:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31032:2:81","nodeType":"YulLiteral","src":"31032:2:81","type":"","value":"32"},{"name":"slotValue","nativeSrc":"31036:9:81","nodeType":"YulIdentifier","src":"31036:9:81"}],"functionName":{"name":"shr","nativeSrc":"31028:3:81","nodeType":"YulIdentifier","src":"31028:3:81"},"nativeSrc":"31028:18:81","nodeType":"YulFunctionCall","src":"31028:18:81"},{"kind":"number","nativeSrc":"31048:4:81","nodeType":"YulLiteral","src":"31048:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"31024:3:81","nodeType":"YulIdentifier","src":"31024:3:81"},"nativeSrc":"31024:29:81","nodeType":"YulFunctionCall","src":"31024:29:81"},{"arguments":[{"name":"headStart","nativeSrc":"31059:9:81","nodeType":"YulIdentifier","src":"31059:9:81"},{"kind":"number","nativeSrc":"31070:2:81","nodeType":"YulLiteral","src":"31070:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31055:3:81","nodeType":"YulIdentifier","src":"31055:3:81"},"nativeSrc":"31055:18:81","nodeType":"YulFunctionCall","src":"31055:18:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"30995:28:81","nodeType":"YulIdentifier","src":"30995:28:81"},"nativeSrc":"30995:79:81","nodeType":"YulFunctionCall","src":"30995:79:81"},"nativeSrc":"30995:79:81","nodeType":"YulExpressionStatement","src":"30995:79:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31094:9:81","nodeType":"YulIdentifier","src":"31094:9:81"},{"kind":"number","nativeSrc":"31105:4:81","nodeType":"YulLiteral","src":"31105:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31090:3:81","nodeType":"YulIdentifier","src":"31090:3:81"},"nativeSrc":"31090:20:81","nodeType":"YulFunctionCall","src":"31090:20:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31120:2:81","nodeType":"YulLiteral","src":"31120:2:81","type":"","value":"40"},{"name":"slotValue","nativeSrc":"31124:9:81","nodeType":"YulIdentifier","src":"31124:9:81"}],"functionName":{"name":"shr","nativeSrc":"31116:3:81","nodeType":"YulIdentifier","src":"31116:3:81"},"nativeSrc":"31116:18:81","nodeType":"YulFunctionCall","src":"31116:18:81"},{"kind":"number","nativeSrc":"31136:26:81","nodeType":"YulLiteral","src":"31136:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"31112:3:81","nodeType":"YulIdentifier","src":"31112:3:81"},"nativeSrc":"31112:51:81","nodeType":"YulFunctionCall","src":"31112:51:81"}],"functionName":{"name":"mstore","nativeSrc":"31083:6:81","nodeType":"YulIdentifier","src":"31083:6:81"},"nativeSrc":"31083:81:81","nodeType":"YulFunctionCall","src":"31083:81:81"},"nativeSrc":"31083:81:81","nodeType":"YulExpressionStatement","src":"31083:81:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31184:9:81","nodeType":"YulIdentifier","src":"31184:9:81"},{"kind":"number","nativeSrc":"31195:4:81","nodeType":"YulLiteral","src":"31195:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31180:3:81","nodeType":"YulIdentifier","src":"31180:3:81"},"nativeSrc":"31180:20:81","nodeType":"YulFunctionCall","src":"31180:20:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31210:3:81","nodeType":"YulLiteral","src":"31210:3:81","type":"","value":"136"},{"name":"slotValue","nativeSrc":"31215:9:81","nodeType":"YulIdentifier","src":"31215:9:81"}],"functionName":{"name":"shr","nativeSrc":"31206:3:81","nodeType":"YulIdentifier","src":"31206:3:81"},"nativeSrc":"31206:19:81","nodeType":"YulFunctionCall","src":"31206:19:81"},{"kind":"number","nativeSrc":"31227:26:81","nodeType":"YulLiteral","src":"31227:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"31202:3:81","nodeType":"YulIdentifier","src":"31202:3:81"},"nativeSrc":"31202:52:81","nodeType":"YulFunctionCall","src":"31202:52:81"}],"functionName":{"name":"mstore","nativeSrc":"31173:6:81","nodeType":"YulIdentifier","src":"31173:6:81"},"nativeSrc":"31173:82:81","nodeType":"YulFunctionCall","src":"31173:82:81"},"nativeSrc":"31173:82:81","nodeType":"YulExpressionStatement","src":"31173:82:81"}]},"name":"abi_encode_tuple_t_struct$_TargetConfig_$23009_storage_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed","nativeSrc":"30692:569:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30825:9:81","nodeType":"YulTypedName","src":"30825:9:81","type":""},{"name":"value0","nativeSrc":"30836:6:81","nodeType":"YulTypedName","src":"30836:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30847:4:81","nodeType":"YulTypedName","src":"30847:4:81","type":""}],"src":"30692:569:81"},{"body":{"nativeSrc":"31411:174:81","nodeType":"YulBlock","src":"31411:174:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"31428:3:81","nodeType":"YulIdentifier","src":"31428:3:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31441:2:81","nodeType":"YulLiteral","src":"31441:2:81","type":"","value":"96"},{"name":"value0","nativeSrc":"31445:6:81","nodeType":"YulIdentifier","src":"31445:6:81"}],"functionName":{"name":"shl","nativeSrc":"31437:3:81","nodeType":"YulIdentifier","src":"31437:3:81"},"nativeSrc":"31437:15:81","nodeType":"YulFunctionCall","src":"31437:15:81"},{"arguments":[{"kind":"number","nativeSrc":"31458:26:81","nodeType":"YulLiteral","src":"31458:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"31454:3:81","nodeType":"YulIdentifier","src":"31454:3:81"},"nativeSrc":"31454:31:81","nodeType":"YulFunctionCall","src":"31454:31:81"}],"functionName":{"name":"and","nativeSrc":"31433:3:81","nodeType":"YulIdentifier","src":"31433:3:81"},"nativeSrc":"31433:53:81","nodeType":"YulFunctionCall","src":"31433:53:81"}],"functionName":{"name":"mstore","nativeSrc":"31421:6:81","nodeType":"YulIdentifier","src":"31421:6:81"},"nativeSrc":"31421:66:81","nodeType":"YulFunctionCall","src":"31421:66:81"},"nativeSrc":"31421:66:81","nodeType":"YulExpressionStatement","src":"31421:66:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31507:3:81","nodeType":"YulIdentifier","src":"31507:3:81"},{"kind":"number","nativeSrc":"31512:2:81","nodeType":"YulLiteral","src":"31512:2:81","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"31503:3:81","nodeType":"YulIdentifier","src":"31503:3:81"},"nativeSrc":"31503:12:81","nodeType":"YulFunctionCall","src":"31503:12:81"},{"arguments":[{"name":"value1","nativeSrc":"31521:6:81","nodeType":"YulIdentifier","src":"31521:6:81"},{"arguments":[{"kind":"number","nativeSrc":"31533:3:81","nodeType":"YulLiteral","src":"31533:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"31538:10:81","nodeType":"YulLiteral","src":"31538:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"31529:3:81","nodeType":"YulIdentifier","src":"31529:3:81"},"nativeSrc":"31529:20:81","nodeType":"YulFunctionCall","src":"31529:20:81"}],"functionName":{"name":"and","nativeSrc":"31517:3:81","nodeType":"YulIdentifier","src":"31517:3:81"},"nativeSrc":"31517:33:81","nodeType":"YulFunctionCall","src":"31517:33:81"}],"functionName":{"name":"mstore","nativeSrc":"31496:6:81","nodeType":"YulIdentifier","src":"31496:6:81"},"nativeSrc":"31496:55:81","nodeType":"YulFunctionCall","src":"31496:55:81"},"nativeSrc":"31496:55:81","nodeType":"YulExpressionStatement","src":"31496:55:81"},{"nativeSrc":"31560:19:81","nodeType":"YulAssignment","src":"31560:19:81","value":{"arguments":[{"name":"pos","nativeSrc":"31571:3:81","nodeType":"YulIdentifier","src":"31571:3:81"},{"kind":"number","nativeSrc":"31576:2:81","nodeType":"YulLiteral","src":"31576:2:81","type":"","value":"24"}],"functionName":{"name":"add","nativeSrc":"31567:3:81","nodeType":"YulIdentifier","src":"31567:3:81"},"nativeSrc":"31567:12:81","nodeType":"YulFunctionCall","src":"31567:12:81"},"variableNames":[{"name":"end","nativeSrc":"31560:3:81","nodeType":"YulIdentifier","src":"31560:3:81"}]}]},"name":"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed","nativeSrc":"31266:319:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"31379:3:81","nodeType":"YulTypedName","src":"31379:3:81","type":""},{"name":"value1","nativeSrc":"31384:6:81","nodeType":"YulTypedName","src":"31384:6:81","type":""},{"name":"value0","nativeSrc":"31392:6:81","nodeType":"YulTypedName","src":"31392:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"31403:3:81","nodeType":"YulTypedName","src":"31403:3:81","type":""}],"src":"31266:319:81"},{"body":{"nativeSrc":"31695:180:81","nodeType":"YulBlock","src":"31695:180:81","statements":[{"body":{"nativeSrc":"31741:16:81","nodeType":"YulBlock","src":"31741:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31750:1:81","nodeType":"YulLiteral","src":"31750:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"31753:1:81","nodeType":"YulLiteral","src":"31753:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31743:6:81","nodeType":"YulIdentifier","src":"31743:6:81"},"nativeSrc":"31743:12:81","nodeType":"YulFunctionCall","src":"31743:12:81"},"nativeSrc":"31743:12:81","nodeType":"YulExpressionStatement","src":"31743:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"31716:7:81","nodeType":"YulIdentifier","src":"31716:7:81"},{"name":"headStart","nativeSrc":"31725:9:81","nodeType":"YulIdentifier","src":"31725:9:81"}],"functionName":{"name":"sub","nativeSrc":"31712:3:81","nodeType":"YulIdentifier","src":"31712:3:81"},"nativeSrc":"31712:23:81","nodeType":"YulFunctionCall","src":"31712:23:81"},{"kind":"number","nativeSrc":"31737:2:81","nodeType":"YulLiteral","src":"31737:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"31708:3:81","nodeType":"YulIdentifier","src":"31708:3:81"},"nativeSrc":"31708:32:81","nodeType":"YulFunctionCall","src":"31708:32:81"},"nativeSrc":"31705:52:81","nodeType":"YulIf","src":"31705:52:81"},{"nativeSrc":"31766:29:81","nodeType":"YulVariableDeclaration","src":"31766:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"31785:9:81","nodeType":"YulIdentifier","src":"31785:9:81"}],"functionName":{"name":"mload","nativeSrc":"31779:5:81","nodeType":"YulIdentifier","src":"31779:5:81"},"nativeSrc":"31779:16:81","nodeType":"YulFunctionCall","src":"31779:16:81"},"variables":[{"name":"value","nativeSrc":"31770:5:81","nodeType":"YulTypedName","src":"31770:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"31839:5:81","nodeType":"YulIdentifier","src":"31839:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"31804:34:81","nodeType":"YulIdentifier","src":"31804:34:81"},"nativeSrc":"31804:41:81","nodeType":"YulFunctionCall","src":"31804:41:81"},"nativeSrc":"31804:41:81","nodeType":"YulExpressionStatement","src":"31804:41:81"},{"nativeSrc":"31854:15:81","nodeType":"YulAssignment","src":"31854:15:81","value":{"name":"value","nativeSrc":"31864:5:81","nodeType":"YulIdentifier","src":"31864:5:81"},"variableNames":[{"name":"value0","nativeSrc":"31854:6:81","nodeType":"YulIdentifier","src":"31854:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$11776_fromMemory","nativeSrc":"31590:285:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31661:9:81","nodeType":"YulTypedName","src":"31661:9:81","type":""},{"name":"dataEnd","nativeSrc":"31672:7:81","nodeType":"YulTypedName","src":"31672:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"31684:6:81","nodeType":"YulTypedName","src":"31684:6:81","type":""}],"src":"31590:285:81"},{"body":{"nativeSrc":"32017:145:81","nodeType":"YulBlock","src":"32017:145:81","statements":[{"nativeSrc":"32027:26:81","nodeType":"YulAssignment","src":"32027:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"32039:9:81","nodeType":"YulIdentifier","src":"32039:9:81"},{"kind":"number","nativeSrc":"32050:2:81","nodeType":"YulLiteral","src":"32050:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32035:3:81","nodeType":"YulIdentifier","src":"32035:3:81"},"nativeSrc":"32035:18:81","nodeType":"YulFunctionCall","src":"32035:18:81"},"variableNames":[{"name":"tail","nativeSrc":"32027:4:81","nodeType":"YulIdentifier","src":"32027:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32069:9:81","nodeType":"YulIdentifier","src":"32069:9:81"},{"arguments":[{"name":"value0","nativeSrc":"32084:6:81","nodeType":"YulIdentifier","src":"32084:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32100:3:81","nodeType":"YulLiteral","src":"32100:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"32105:1:81","nodeType":"YulLiteral","src":"32105:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"32096:3:81","nodeType":"YulIdentifier","src":"32096:3:81"},"nativeSrc":"32096:11:81","nodeType":"YulFunctionCall","src":"32096:11:81"},{"kind":"number","nativeSrc":"32109:1:81","nodeType":"YulLiteral","src":"32109:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"32092:3:81","nodeType":"YulIdentifier","src":"32092:3:81"},"nativeSrc":"32092:19:81","nodeType":"YulFunctionCall","src":"32092:19:81"}],"functionName":{"name":"and","nativeSrc":"32080:3:81","nodeType":"YulIdentifier","src":"32080:3:81"},"nativeSrc":"32080:32:81","nodeType":"YulFunctionCall","src":"32080:32:81"}],"functionName":{"name":"mstore","nativeSrc":"32062:6:81","nodeType":"YulIdentifier","src":"32062:6:81"},"nativeSrc":"32062:51:81","nodeType":"YulFunctionCall","src":"32062:51:81"},"nativeSrc":"32062:51:81","nodeType":"YulExpressionStatement","src":"32062:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32133:9:81","nodeType":"YulIdentifier","src":"32133:9:81"},{"kind":"number","nativeSrc":"32144:2:81","nodeType":"YulLiteral","src":"32144:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32129:3:81","nodeType":"YulIdentifier","src":"32129:3:81"},"nativeSrc":"32129:18:81","nodeType":"YulFunctionCall","src":"32129:18:81"},{"name":"value1","nativeSrc":"32149:6:81","nodeType":"YulIdentifier","src":"32149:6:81"}],"functionName":{"name":"mstore","nativeSrc":"32122:6:81","nodeType":"YulIdentifier","src":"32122:6:81"},"nativeSrc":"32122:34:81","nodeType":"YulFunctionCall","src":"32122:34:81"},"nativeSrc":"32122:34:81","nodeType":"YulExpressionStatement","src":"32122:34:81"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"31880:282:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31978:9:81","nodeType":"YulTypedName","src":"31978:9:81","type":""},{"name":"value1","nativeSrc":"31989:6:81","nodeType":"YulTypedName","src":"31989:6:81","type":""},{"name":"value0","nativeSrc":"31997:6:81","nodeType":"YulTypedName","src":"31997:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32008:4:81","nodeType":"YulTypedName","src":"32008:4:81","type":""}],"src":"31880:282:81"},{"body":{"nativeSrc":"32245:167:81","nodeType":"YulBlock","src":"32245:167:81","statements":[{"body":{"nativeSrc":"32291:16:81","nodeType":"YulBlock","src":"32291:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32300:1:81","nodeType":"YulLiteral","src":"32300:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"32303:1:81","nodeType":"YulLiteral","src":"32303:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32293:6:81","nodeType":"YulIdentifier","src":"32293:6:81"},"nativeSrc":"32293:12:81","nodeType":"YulFunctionCall","src":"32293:12:81"},"nativeSrc":"32293:12:81","nodeType":"YulExpressionStatement","src":"32293:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"32266:7:81","nodeType":"YulIdentifier","src":"32266:7:81"},{"name":"headStart","nativeSrc":"32275:9:81","nodeType":"YulIdentifier","src":"32275:9:81"}],"functionName":{"name":"sub","nativeSrc":"32262:3:81","nodeType":"YulIdentifier","src":"32262:3:81"},"nativeSrc":"32262:23:81","nodeType":"YulFunctionCall","src":"32262:23:81"},{"kind":"number","nativeSrc":"32287:2:81","nodeType":"YulLiteral","src":"32287:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"32258:3:81","nodeType":"YulIdentifier","src":"32258:3:81"},"nativeSrc":"32258:32:81","nodeType":"YulFunctionCall","src":"32258:32:81"},"nativeSrc":"32255:52:81","nodeType":"YulIf","src":"32255:52:81"},{"nativeSrc":"32316:29:81","nodeType":"YulVariableDeclaration","src":"32316:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"32335:9:81","nodeType":"YulIdentifier","src":"32335:9:81"}],"functionName":{"name":"mload","nativeSrc":"32329:5:81","nodeType":"YulIdentifier","src":"32329:5:81"},"nativeSrc":"32329:16:81","nodeType":"YulFunctionCall","src":"32329:16:81"},"variables":[{"name":"value","nativeSrc":"32320:5:81","nodeType":"YulTypedName","src":"32320:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"32376:5:81","nodeType":"YulIdentifier","src":"32376:5:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"32354:21:81","nodeType":"YulIdentifier","src":"32354:21:81"},"nativeSrc":"32354:28:81","nodeType":"YulFunctionCall","src":"32354:28:81"},"nativeSrc":"32354:28:81","nodeType":"YulExpressionStatement","src":"32354:28:81"},{"nativeSrc":"32391:15:81","nodeType":"YulAssignment","src":"32391:15:81","value":{"name":"value","nativeSrc":"32401:5:81","nodeType":"YulIdentifier","src":"32401:5:81"},"variableNames":[{"name":"value0","nativeSrc":"32391:6:81","nodeType":"YulIdentifier","src":"32391:6:81"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"32167:245:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32211:9:81","nodeType":"YulTypedName","src":"32211:9:81","type":""},{"name":"dataEnd","nativeSrc":"32222:7:81","nodeType":"YulTypedName","src":"32222:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"32234:6:81","nodeType":"YulTypedName","src":"32234:6:81","type":""}],"src":"32167:245:81"},{"body":{"nativeSrc":"32546:145:81","nodeType":"YulBlock","src":"32546:145:81","statements":[{"nativeSrc":"32556:26:81","nodeType":"YulAssignment","src":"32556:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"32568:9:81","nodeType":"YulIdentifier","src":"32568:9:81"},{"kind":"number","nativeSrc":"32579:2:81","nodeType":"YulLiteral","src":"32579:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32564:3:81","nodeType":"YulIdentifier","src":"32564:3:81"},"nativeSrc":"32564:18:81","nodeType":"YulFunctionCall","src":"32564:18:81"},"variableNames":[{"name":"tail","nativeSrc":"32556:4:81","nodeType":"YulIdentifier","src":"32556:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32598:9:81","nodeType":"YulIdentifier","src":"32598:9:81"},{"arguments":[{"name":"value0","nativeSrc":"32613:6:81","nodeType":"YulIdentifier","src":"32613:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32629:3:81","nodeType":"YulLiteral","src":"32629:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"32634:1:81","nodeType":"YulLiteral","src":"32634:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"32625:3:81","nodeType":"YulIdentifier","src":"32625:3:81"},"nativeSrc":"32625:11:81","nodeType":"YulFunctionCall","src":"32625:11:81"},{"kind":"number","nativeSrc":"32638:1:81","nodeType":"YulLiteral","src":"32638:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"32621:3:81","nodeType":"YulIdentifier","src":"32621:3:81"},"nativeSrc":"32621:19:81","nodeType":"YulFunctionCall","src":"32621:19:81"}],"functionName":{"name":"and","nativeSrc":"32609:3:81","nodeType":"YulIdentifier","src":"32609:3:81"},"nativeSrc":"32609:32:81","nodeType":"YulFunctionCall","src":"32609:32:81"}],"functionName":{"name":"mstore","nativeSrc":"32591:6:81","nodeType":"YulIdentifier","src":"32591:6:81"},"nativeSrc":"32591:51:81","nodeType":"YulFunctionCall","src":"32591:51:81"},"nativeSrc":"32591:51:81","nodeType":"YulExpressionStatement","src":"32591:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32662:9:81","nodeType":"YulIdentifier","src":"32662:9:81"},{"kind":"number","nativeSrc":"32673:2:81","nodeType":"YulLiteral","src":"32673:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32658:3:81","nodeType":"YulIdentifier","src":"32658:3:81"},"nativeSrc":"32658:18:81","nodeType":"YulFunctionCall","src":"32658:18:81"},{"name":"value1","nativeSrc":"32678:6:81","nodeType":"YulIdentifier","src":"32678:6:81"}],"functionName":{"name":"mstore","nativeSrc":"32651:6:81","nodeType":"YulIdentifier","src":"32651:6:81"},"nativeSrc":"32651:34:81","nodeType":"YulFunctionCall","src":"32651:34:81"},"nativeSrc":"32651:34:81","nodeType":"YulExpressionStatement","src":"32651:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"32417:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32507:9:81","nodeType":"YulTypedName","src":"32507:9:81","type":""},{"name":"value1","nativeSrc":"32518:6:81","nodeType":"YulTypedName","src":"32518:6:81","type":""},{"name":"value0","nativeSrc":"32526:6:81","nodeType":"YulTypedName","src":"32526:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32537:4:81","nodeType":"YulTypedName","src":"32537:4:81","type":""}],"src":"32417:274:81"},{"body":{"nativeSrc":"32825:171:81","nodeType":"YulBlock","src":"32825:171:81","statements":[{"nativeSrc":"32835:26:81","nodeType":"YulAssignment","src":"32835:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"32847:9:81","nodeType":"YulIdentifier","src":"32847:9:81"},{"kind":"number","nativeSrc":"32858:2:81","nodeType":"YulLiteral","src":"32858:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32843:3:81","nodeType":"YulIdentifier","src":"32843:3:81"},"nativeSrc":"32843:18:81","nodeType":"YulFunctionCall","src":"32843:18:81"},"variableNames":[{"name":"tail","nativeSrc":"32835:4:81","nodeType":"YulIdentifier","src":"32835:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32877:9:81","nodeType":"YulIdentifier","src":"32877:9:81"},{"arguments":[{"name":"value0","nativeSrc":"32892:6:81","nodeType":"YulIdentifier","src":"32892:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32908:3:81","nodeType":"YulLiteral","src":"32908:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"32913:1:81","nodeType":"YulLiteral","src":"32913:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"32904:3:81","nodeType":"YulIdentifier","src":"32904:3:81"},"nativeSrc":"32904:11:81","nodeType":"YulFunctionCall","src":"32904:11:81"},{"kind":"number","nativeSrc":"32917:1:81","nodeType":"YulLiteral","src":"32917:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"32900:3:81","nodeType":"YulIdentifier","src":"32900:3:81"},"nativeSrc":"32900:19:81","nodeType":"YulFunctionCall","src":"32900:19:81"}],"functionName":{"name":"and","nativeSrc":"32888:3:81","nodeType":"YulIdentifier","src":"32888:3:81"},"nativeSrc":"32888:32:81","nodeType":"YulFunctionCall","src":"32888:32:81"}],"functionName":{"name":"mstore","nativeSrc":"32870:6:81","nodeType":"YulIdentifier","src":"32870:6:81"},"nativeSrc":"32870:51:81","nodeType":"YulFunctionCall","src":"32870:51:81"},"nativeSrc":"32870:51:81","nodeType":"YulExpressionStatement","src":"32870:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32941:9:81","nodeType":"YulIdentifier","src":"32941:9:81"},{"kind":"number","nativeSrc":"32952:2:81","nodeType":"YulLiteral","src":"32952:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32937:3:81","nodeType":"YulIdentifier","src":"32937:3:81"},"nativeSrc":"32937:18:81","nodeType":"YulFunctionCall","src":"32937:18:81"},{"arguments":[{"name":"value1","nativeSrc":"32961:6:81","nodeType":"YulIdentifier","src":"32961:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32977:3:81","nodeType":"YulLiteral","src":"32977:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"32982:1:81","nodeType":"YulLiteral","src":"32982:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"32973:3:81","nodeType":"YulIdentifier","src":"32973:3:81"},"nativeSrc":"32973:11:81","nodeType":"YulFunctionCall","src":"32973:11:81"},{"kind":"number","nativeSrc":"32986:1:81","nodeType":"YulLiteral","src":"32986:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"32969:3:81","nodeType":"YulIdentifier","src":"32969:3:81"},"nativeSrc":"32969:19:81","nodeType":"YulFunctionCall","src":"32969:19:81"}],"functionName":{"name":"and","nativeSrc":"32957:3:81","nodeType":"YulIdentifier","src":"32957:3:81"},"nativeSrc":"32957:32:81","nodeType":"YulFunctionCall","src":"32957:32:81"}],"functionName":{"name":"mstore","nativeSrc":"32930:6:81","nodeType":"YulIdentifier","src":"32930:6:81"},"nativeSrc":"32930:60:81","nodeType":"YulFunctionCall","src":"32930:60:81"},"nativeSrc":"32930:60:81","nodeType":"YulExpressionStatement","src":"32930:60:81"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"32696:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32786:9:81","nodeType":"YulTypedName","src":"32786:9:81","type":""},{"name":"value1","nativeSrc":"32797:6:81","nodeType":"YulTypedName","src":"32797:6:81","type":""},{"name":"value0","nativeSrc":"32805:6:81","nodeType":"YulTypedName","src":"32805:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32816:4:81","nodeType":"YulTypedName","src":"32816:4:81","type":""}],"src":"32696:300:81"},{"body":{"nativeSrc":"33033:95:81","nodeType":"YulBlock","src":"33033:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33050:1:81","nodeType":"YulLiteral","src":"33050:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"33057:3:81","nodeType":"YulLiteral","src":"33057:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"33062:10:81","nodeType":"YulLiteral","src":"33062:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"33053:3:81","nodeType":"YulIdentifier","src":"33053:3:81"},"nativeSrc":"33053:20:81","nodeType":"YulFunctionCall","src":"33053:20:81"}],"functionName":{"name":"mstore","nativeSrc":"33043:6:81","nodeType":"YulIdentifier","src":"33043:6:81"},"nativeSrc":"33043:31:81","nodeType":"YulFunctionCall","src":"33043:31:81"},"nativeSrc":"33043:31:81","nodeType":"YulExpressionStatement","src":"33043:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"33090:1:81","nodeType":"YulLiteral","src":"33090:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"33093:4:81","nodeType":"YulLiteral","src":"33093:4:81","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"33083:6:81","nodeType":"YulIdentifier","src":"33083:6:81"},"nativeSrc":"33083:15:81","nodeType":"YulFunctionCall","src":"33083:15:81"},"nativeSrc":"33083:15:81","nodeType":"YulExpressionStatement","src":"33083:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"33114:1:81","nodeType":"YulLiteral","src":"33114:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"33117:4:81","nodeType":"YulLiteral","src":"33117:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"33107:6:81","nodeType":"YulIdentifier","src":"33107:6:81"},"nativeSrc":"33107:15:81","nodeType":"YulFunctionCall","src":"33107:15:81"},"nativeSrc":"33107:15:81","nodeType":"YulExpressionStatement","src":"33107:15:81"}]},"name":"panic_error_0x32","nativeSrc":"33001:127:81","nodeType":"YulFunctionDefinition","src":"33001:127:81"},{"body":{"nativeSrc":"33227:427:81","nodeType":"YulBlock","src":"33227:427:81","statements":[{"nativeSrc":"33237:51:81","nodeType":"YulVariableDeclaration","src":"33237:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"33276:11:81","nodeType":"YulIdentifier","src":"33276:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"33263:12:81","nodeType":"YulIdentifier","src":"33263:12:81"},"nativeSrc":"33263:25:81","nodeType":"YulFunctionCall","src":"33263:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"33241:18:81","nodeType":"YulTypedName","src":"33241:18:81","type":""}]},{"body":{"nativeSrc":"33377:16:81","nodeType":"YulBlock","src":"33377:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33386:1:81","nodeType":"YulLiteral","src":"33386:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"33389:1:81","nodeType":"YulLiteral","src":"33389:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33379:6:81","nodeType":"YulIdentifier","src":"33379:6:81"},"nativeSrc":"33379:12:81","nodeType":"YulFunctionCall","src":"33379:12:81"},"nativeSrc":"33379:12:81","nodeType":"YulExpressionStatement","src":"33379:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"33311:18:81","nodeType":"YulIdentifier","src":"33311:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"33339:12:81","nodeType":"YulIdentifier","src":"33339:12:81"},"nativeSrc":"33339:14:81","nodeType":"YulFunctionCall","src":"33339:14:81"},{"name":"base_ref","nativeSrc":"33355:8:81","nodeType":"YulIdentifier","src":"33355:8:81"}],"functionName":{"name":"sub","nativeSrc":"33335:3:81","nodeType":"YulIdentifier","src":"33335:3:81"},"nativeSrc":"33335:29:81","nodeType":"YulFunctionCall","src":"33335:29:81"},{"arguments":[{"kind":"number","nativeSrc":"33370:2:81","nodeType":"YulLiteral","src":"33370:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"33366:3:81","nodeType":"YulIdentifier","src":"33366:3:81"},"nativeSrc":"33366:7:81","nodeType":"YulFunctionCall","src":"33366:7:81"}],"functionName":{"name":"add","nativeSrc":"33331:3:81","nodeType":"YulIdentifier","src":"33331:3:81"},"nativeSrc":"33331:43:81","nodeType":"YulFunctionCall","src":"33331:43:81"}],"functionName":{"name":"slt","nativeSrc":"33307:3:81","nodeType":"YulIdentifier","src":"33307:3:81"},"nativeSrc":"33307:68:81","nodeType":"YulFunctionCall","src":"33307:68:81"}],"functionName":{"name":"iszero","nativeSrc":"33300:6:81","nodeType":"YulIdentifier","src":"33300:6:81"},"nativeSrc":"33300:76:81","nodeType":"YulFunctionCall","src":"33300:76:81"},"nativeSrc":"33297:96:81","nodeType":"YulIf","src":"33297:96:81"},{"nativeSrc":"33402:47:81","nodeType":"YulVariableDeclaration","src":"33402:47:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"33420:8:81","nodeType":"YulIdentifier","src":"33420:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"33430:18:81","nodeType":"YulIdentifier","src":"33430:18:81"}],"functionName":{"name":"add","nativeSrc":"33416:3:81","nodeType":"YulIdentifier","src":"33416:3:81"},"nativeSrc":"33416:33:81","nodeType":"YulFunctionCall","src":"33416:33:81"},"variables":[{"name":"addr_1","nativeSrc":"33406:6:81","nodeType":"YulTypedName","src":"33406:6:81","type":""}]},{"nativeSrc":"33458:30:81","nodeType":"YulAssignment","src":"33458:30:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"33481:6:81","nodeType":"YulIdentifier","src":"33481:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"33468:12:81","nodeType":"YulIdentifier","src":"33468:12:81"},"nativeSrc":"33468:20:81","nodeType":"YulFunctionCall","src":"33468:20:81"},"variableNames":[{"name":"length","nativeSrc":"33458:6:81","nodeType":"YulIdentifier","src":"33458:6:81"}]},{"body":{"nativeSrc":"33531:16:81","nodeType":"YulBlock","src":"33531:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33540:1:81","nodeType":"YulLiteral","src":"33540:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"33543:1:81","nodeType":"YulLiteral","src":"33543:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33533:6:81","nodeType":"YulIdentifier","src":"33533:6:81"},"nativeSrc":"33533:12:81","nodeType":"YulFunctionCall","src":"33533:12:81"},"nativeSrc":"33533:12:81","nodeType":"YulExpressionStatement","src":"33533:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"33503:6:81","nodeType":"YulIdentifier","src":"33503:6:81"},{"kind":"number","nativeSrc":"33511:18:81","nodeType":"YulLiteral","src":"33511:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"33500:2:81","nodeType":"YulIdentifier","src":"33500:2:81"},"nativeSrc":"33500:30:81","nodeType":"YulFunctionCall","src":"33500:30:81"},"nativeSrc":"33497:50:81","nodeType":"YulIf","src":"33497:50:81"},{"nativeSrc":"33556:25:81","nodeType":"YulAssignment","src":"33556:25:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"33568:6:81","nodeType":"YulIdentifier","src":"33568:6:81"},{"kind":"number","nativeSrc":"33576:4:81","nodeType":"YulLiteral","src":"33576:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"33564:3:81","nodeType":"YulIdentifier","src":"33564:3:81"},"nativeSrc":"33564:17:81","nodeType":"YulFunctionCall","src":"33564:17:81"},"variableNames":[{"name":"addr","nativeSrc":"33556:4:81","nodeType":"YulIdentifier","src":"33556:4:81"}]},{"body":{"nativeSrc":"33632:16:81","nodeType":"YulBlock","src":"33632:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33641:1:81","nodeType":"YulLiteral","src":"33641:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"33644:1:81","nodeType":"YulLiteral","src":"33644:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33634:6:81","nodeType":"YulIdentifier","src":"33634:6:81"},"nativeSrc":"33634:12:81","nodeType":"YulFunctionCall","src":"33634:12:81"},"nativeSrc":"33634:12:81","nodeType":"YulExpressionStatement","src":"33634:12:81"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"33597:4:81","nodeType":"YulIdentifier","src":"33597:4:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"33607:12:81","nodeType":"YulIdentifier","src":"33607:12:81"},"nativeSrc":"33607:14:81","nodeType":"YulFunctionCall","src":"33607:14:81"},{"name":"length","nativeSrc":"33623:6:81","nodeType":"YulIdentifier","src":"33623:6:81"}],"functionName":{"name":"sub","nativeSrc":"33603:3:81","nodeType":"YulIdentifier","src":"33603:3:81"},"nativeSrc":"33603:27:81","nodeType":"YulFunctionCall","src":"33603:27:81"}],"functionName":{"name":"sgt","nativeSrc":"33593:3:81","nodeType":"YulIdentifier","src":"33593:3:81"},"nativeSrc":"33593:38:81","nodeType":"YulFunctionCall","src":"33593:38:81"},"nativeSrc":"33590:58:81","nodeType":"YulIf","src":"33590:58:81"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"33133:521:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"33184:8:81","nodeType":"YulTypedName","src":"33184:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"33194:11:81","nodeType":"YulTypedName","src":"33194:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"33210:4:81","nodeType":"YulTypedName","src":"33210:4:81","type":""},{"name":"length","nativeSrc":"33216:6:81","nodeType":"YulTypedName","src":"33216:6:81","type":""}],"src":"33133:521:81"},{"body":{"nativeSrc":"33820:163:81","nodeType":"YulBlock","src":"33820:163:81","statements":[{"nativeSrc":"33830:26:81","nodeType":"YulAssignment","src":"33830:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"33842:9:81","nodeType":"YulIdentifier","src":"33842:9:81"},{"kind":"number","nativeSrc":"33853:2:81","nodeType":"YulLiteral","src":"33853:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33838:3:81","nodeType":"YulIdentifier","src":"33838:3:81"},"nativeSrc":"33838:18:81","nodeType":"YulFunctionCall","src":"33838:18:81"},"variableNames":[{"name":"tail","nativeSrc":"33830:4:81","nodeType":"YulIdentifier","src":"33830:4:81"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"33894:6:81","nodeType":"YulIdentifier","src":"33894:6:81"},{"name":"headStart","nativeSrc":"33902:9:81","nodeType":"YulIdentifier","src":"33902:9:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"33865:28:81","nodeType":"YulIdentifier","src":"33865:28:81"},"nativeSrc":"33865:47:81","nodeType":"YulFunctionCall","src":"33865:47:81"},"nativeSrc":"33865:47:81","nodeType":"YulExpressionStatement","src":"33865:47:81"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"33950:6:81","nodeType":"YulIdentifier","src":"33950:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"33962:9:81","nodeType":"YulIdentifier","src":"33962:9:81"},{"kind":"number","nativeSrc":"33973:2:81","nodeType":"YulLiteral","src":"33973:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33958:3:81","nodeType":"YulIdentifier","src":"33958:3:81"},"nativeSrc":"33958:18:81","nodeType":"YulFunctionCall","src":"33958:18:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"33921:28:81","nodeType":"YulIdentifier","src":"33921:28:81"},"nativeSrc":"33921:56:81","nodeType":"YulFunctionCall","src":"33921:56:81"},"nativeSrc":"33921:56:81","nodeType":"YulExpressionStatement","src":"33921:56:81"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$22999_t_enum$_TargetStatus_$22999__to_t_uint8_t_uint8__fromStack_reversed","nativeSrc":"33659:324:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33781:9:81","nodeType":"YulTypedName","src":"33781:9:81","type":""},{"name":"value1","nativeSrc":"33792:6:81","nodeType":"YulTypedName","src":"33792:6:81","type":""},{"name":"value0","nativeSrc":"33800:6:81","nodeType":"YulTypedName","src":"33800:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33811:4:81","nodeType":"YulTypedName","src":"33811:4:81","type":""}],"src":"33659:324:81"},{"body":{"nativeSrc":"34057:306:81","nodeType":"YulBlock","src":"34057:306:81","statements":[{"nativeSrc":"34067:10:81","nodeType":"YulAssignment","src":"34067:10:81","value":{"kind":"number","nativeSrc":"34076:1:81","nodeType":"YulLiteral","src":"34076:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"34067:5:81","nodeType":"YulIdentifier","src":"34067:5:81"}]},{"nativeSrc":"34086:13:81","nodeType":"YulAssignment","src":"34086:13:81","value":{"name":"_base","nativeSrc":"34094:5:81","nodeType":"YulIdentifier","src":"34094:5:81"},"variableNames":[{"name":"base","nativeSrc":"34086:4:81","nodeType":"YulIdentifier","src":"34086:4:81"}]},{"body":{"nativeSrc":"34144:213:81","nodeType":"YulBlock","src":"34144:213:81","statements":[{"body":{"nativeSrc":"34186:22:81","nodeType":"YulBlock","src":"34186:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"34188:16:81","nodeType":"YulIdentifier","src":"34188:16:81"},"nativeSrc":"34188:18:81","nodeType":"YulFunctionCall","src":"34188:18:81"},"nativeSrc":"34188:18:81","nodeType":"YulExpressionStatement","src":"34188:18:81"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"34164:4:81","nodeType":"YulIdentifier","src":"34164:4:81"},{"arguments":[{"name":"max","nativeSrc":"34174:3:81","nodeType":"YulIdentifier","src":"34174:3:81"},{"name":"base","nativeSrc":"34179:4:81","nodeType":"YulIdentifier","src":"34179:4:81"}],"functionName":{"name":"div","nativeSrc":"34170:3:81","nodeType":"YulIdentifier","src":"34170:3:81"},"nativeSrc":"34170:14:81","nodeType":"YulFunctionCall","src":"34170:14:81"}],"functionName":{"name":"gt","nativeSrc":"34161:2:81","nodeType":"YulIdentifier","src":"34161:2:81"},"nativeSrc":"34161:24:81","nodeType":"YulFunctionCall","src":"34161:24:81"},"nativeSrc":"34158:50:81","nodeType":"YulIf","src":"34158:50:81"},{"body":{"nativeSrc":"34241:29:81","nodeType":"YulBlock","src":"34241:29:81","statements":[{"nativeSrc":"34243:25:81","nodeType":"YulAssignment","src":"34243:25:81","value":{"arguments":[{"name":"power","nativeSrc":"34256:5:81","nodeType":"YulIdentifier","src":"34256:5:81"},{"name":"base","nativeSrc":"34263:4:81","nodeType":"YulIdentifier","src":"34263:4:81"}],"functionName":{"name":"mul","nativeSrc":"34252:3:81","nodeType":"YulIdentifier","src":"34252:3:81"},"nativeSrc":"34252:16:81","nodeType":"YulFunctionCall","src":"34252:16:81"},"variableNames":[{"name":"power","nativeSrc":"34243:5:81","nodeType":"YulIdentifier","src":"34243:5:81"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"34228:8:81","nodeType":"YulIdentifier","src":"34228:8:81"},{"kind":"number","nativeSrc":"34238:1:81","nodeType":"YulLiteral","src":"34238:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"34224:3:81","nodeType":"YulIdentifier","src":"34224:3:81"},"nativeSrc":"34224:16:81","nodeType":"YulFunctionCall","src":"34224:16:81"},"nativeSrc":"34221:49:81","nodeType":"YulIf","src":"34221:49:81"},{"nativeSrc":"34283:23:81","nodeType":"YulAssignment","src":"34283:23:81","value":{"arguments":[{"name":"base","nativeSrc":"34295:4:81","nodeType":"YulIdentifier","src":"34295:4:81"},{"name":"base","nativeSrc":"34301:4:81","nodeType":"YulIdentifier","src":"34301:4:81"}],"functionName":{"name":"mul","nativeSrc":"34291:3:81","nodeType":"YulIdentifier","src":"34291:3:81"},"nativeSrc":"34291:15:81","nodeType":"YulFunctionCall","src":"34291:15:81"},"variableNames":[{"name":"base","nativeSrc":"34283:4:81","nodeType":"YulIdentifier","src":"34283:4:81"}]},{"nativeSrc":"34319:28:81","nodeType":"YulAssignment","src":"34319:28:81","value":{"arguments":[{"kind":"number","nativeSrc":"34335:1:81","nodeType":"YulLiteral","src":"34335:1:81","type":"","value":"1"},{"name":"exponent","nativeSrc":"34338:8:81","nodeType":"YulIdentifier","src":"34338:8:81"}],"functionName":{"name":"shr","nativeSrc":"34331:3:81","nodeType":"YulIdentifier","src":"34331:3:81"},"nativeSrc":"34331:16:81","nodeType":"YulFunctionCall","src":"34331:16:81"},"variableNames":[{"name":"exponent","nativeSrc":"34319:8:81","nodeType":"YulIdentifier","src":"34319:8:81"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"34119:8:81","nodeType":"YulIdentifier","src":"34119:8:81"},{"kind":"number","nativeSrc":"34129:1:81","nodeType":"YulLiteral","src":"34129:1:81","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"34116:2:81","nodeType":"YulIdentifier","src":"34116:2:81"},"nativeSrc":"34116:15:81","nodeType":"YulFunctionCall","src":"34116:15:81"},"nativeSrc":"34108:249:81","nodeType":"YulForLoop","post":{"nativeSrc":"34132:3:81","nodeType":"YulBlock","src":"34132:3:81","statements":[]},"pre":{"nativeSrc":"34112:3:81","nodeType":"YulBlock","src":"34112:3:81","statements":[]},"src":"34108:249:81"}]},"name":"checked_exp_helper","nativeSrc":"33988:375:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"34016:5:81","nodeType":"YulTypedName","src":"34016:5:81","type":""},{"name":"exponent","nativeSrc":"34023:8:81","nodeType":"YulTypedName","src":"34023:8:81","type":""},{"name":"max","nativeSrc":"34033:3:81","nodeType":"YulTypedName","src":"34033:3:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"34041:5:81","nodeType":"YulTypedName","src":"34041:5:81","type":""},{"name":"base","nativeSrc":"34048:4:81","nodeType":"YulTypedName","src":"34048:4:81","type":""}],"src":"33988:375:81"},{"body":{"nativeSrc":"34427:843:81","nodeType":"YulBlock","src":"34427:843:81","statements":[{"body":{"nativeSrc":"34465:52:81","nodeType":"YulBlock","src":"34465:52:81","statements":[{"nativeSrc":"34479:10:81","nodeType":"YulAssignment","src":"34479:10:81","value":{"kind":"number","nativeSrc":"34488:1:81","nodeType":"YulLiteral","src":"34488:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"34479:5:81","nodeType":"YulIdentifier","src":"34479:5:81"}]},{"nativeSrc":"34502:5:81","nodeType":"YulLeave","src":"34502:5:81"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"34447:8:81","nodeType":"YulIdentifier","src":"34447:8:81"}],"functionName":{"name":"iszero","nativeSrc":"34440:6:81","nodeType":"YulIdentifier","src":"34440:6:81"},"nativeSrc":"34440:16:81","nodeType":"YulFunctionCall","src":"34440:16:81"},"nativeSrc":"34437:80:81","nodeType":"YulIf","src":"34437:80:81"},{"body":{"nativeSrc":"34550:52:81","nodeType":"YulBlock","src":"34550:52:81","statements":[{"nativeSrc":"34564:10:81","nodeType":"YulAssignment","src":"34564:10:81","value":{"kind":"number","nativeSrc":"34573:1:81","nodeType":"YulLiteral","src":"34573:1:81","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"34564:5:81","nodeType":"YulIdentifier","src":"34564:5:81"}]},{"nativeSrc":"34587:5:81","nodeType":"YulLeave","src":"34587:5:81"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"34536:4:81","nodeType":"YulIdentifier","src":"34536:4:81"}],"functionName":{"name":"iszero","nativeSrc":"34529:6:81","nodeType":"YulIdentifier","src":"34529:6:81"},"nativeSrc":"34529:12:81","nodeType":"YulFunctionCall","src":"34529:12:81"},"nativeSrc":"34526:76:81","nodeType":"YulIf","src":"34526:76:81"},{"cases":[{"body":{"nativeSrc":"34638:52:81","nodeType":"YulBlock","src":"34638:52:81","statements":[{"nativeSrc":"34652:10:81","nodeType":"YulAssignment","src":"34652:10:81","value":{"kind":"number","nativeSrc":"34661:1:81","nodeType":"YulLiteral","src":"34661:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"34652:5:81","nodeType":"YulIdentifier","src":"34652:5:81"}]},{"nativeSrc":"34675:5:81","nodeType":"YulLeave","src":"34675:5:81"}]},"nativeSrc":"34631:59:81","nodeType":"YulCase","src":"34631:59:81","value":{"kind":"number","nativeSrc":"34636:1:81","nodeType":"YulLiteral","src":"34636:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"34706:167:81","nodeType":"YulBlock","src":"34706:167:81","statements":[{"body":{"nativeSrc":"34741:22:81","nodeType":"YulBlock","src":"34741:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"34743:16:81","nodeType":"YulIdentifier","src":"34743:16:81"},"nativeSrc":"34743:18:81","nodeType":"YulFunctionCall","src":"34743:18:81"},"nativeSrc":"34743:18:81","nodeType":"YulExpressionStatement","src":"34743:18:81"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"34726:8:81","nodeType":"YulIdentifier","src":"34726:8:81"},{"kind":"number","nativeSrc":"34736:3:81","nodeType":"YulLiteral","src":"34736:3:81","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"34723:2:81","nodeType":"YulIdentifier","src":"34723:2:81"},"nativeSrc":"34723:17:81","nodeType":"YulFunctionCall","src":"34723:17:81"},"nativeSrc":"34720:43:81","nodeType":"YulIf","src":"34720:43:81"},{"nativeSrc":"34776:25:81","nodeType":"YulAssignment","src":"34776:25:81","value":{"arguments":[{"name":"exponent","nativeSrc":"34789:8:81","nodeType":"YulIdentifier","src":"34789:8:81"},{"kind":"number","nativeSrc":"34799:1:81","nodeType":"YulLiteral","src":"34799:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34785:3:81","nodeType":"YulIdentifier","src":"34785:3:81"},"nativeSrc":"34785:16:81","nodeType":"YulFunctionCall","src":"34785:16:81"},"variableNames":[{"name":"power","nativeSrc":"34776:5:81","nodeType":"YulIdentifier","src":"34776:5:81"}]},{"nativeSrc":"34814:11:81","nodeType":"YulVariableDeclaration","src":"34814:11:81","value":{"kind":"number","nativeSrc":"34824:1:81","nodeType":"YulLiteral","src":"34824:1:81","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"34818:2:81","nodeType":"YulTypedName","src":"34818:2:81","type":""}]},{"nativeSrc":"34838:7:81","nodeType":"YulAssignment","src":"34838:7:81","value":{"kind":"number","nativeSrc":"34844:1:81","nodeType":"YulLiteral","src":"34844:1:81","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"34838:2:81","nodeType":"YulIdentifier","src":"34838:2:81"}]},{"nativeSrc":"34858:5:81","nodeType":"YulLeave","src":"34858:5:81"}]},"nativeSrc":"34699:174:81","nodeType":"YulCase","src":"34699:174:81","value":{"kind":"number","nativeSrc":"34704:1:81","nodeType":"YulLiteral","src":"34704:1:81","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"34618:4:81","nodeType":"YulIdentifier","src":"34618:4:81"},"nativeSrc":"34611:262:81","nodeType":"YulSwitch","src":"34611:262:81"},{"body":{"nativeSrc":"34971:114:81","nodeType":"YulBlock","src":"34971:114:81","statements":[{"nativeSrc":"34985:28:81","nodeType":"YulAssignment","src":"34985:28:81","value":{"arguments":[{"name":"base","nativeSrc":"34998:4:81","nodeType":"YulIdentifier","src":"34998:4:81"},{"name":"exponent","nativeSrc":"35004:8:81","nodeType":"YulIdentifier","src":"35004:8:81"}],"functionName":{"name":"exp","nativeSrc":"34994:3:81","nodeType":"YulIdentifier","src":"34994:3:81"},"nativeSrc":"34994:19:81","nodeType":"YulFunctionCall","src":"34994:19:81"},"variableNames":[{"name":"power","nativeSrc":"34985:5:81","nodeType":"YulIdentifier","src":"34985:5:81"}]},{"nativeSrc":"35026:11:81","nodeType":"YulVariableDeclaration","src":"35026:11:81","value":{"kind":"number","nativeSrc":"35036:1:81","nodeType":"YulLiteral","src":"35036:1:81","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"35030:2:81","nodeType":"YulTypedName","src":"35030:2:81","type":""}]},{"nativeSrc":"35050:7:81","nodeType":"YulAssignment","src":"35050:7:81","value":{"kind":"number","nativeSrc":"35056:1:81","nodeType":"YulLiteral","src":"35056:1:81","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"35050:2:81","nodeType":"YulIdentifier","src":"35050:2:81"}]},{"nativeSrc":"35070:5:81","nodeType":"YulLeave","src":"35070:5:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"34895:4:81","nodeType":"YulIdentifier","src":"34895:4:81"},{"kind":"number","nativeSrc":"34901:2:81","nodeType":"YulLiteral","src":"34901:2:81","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"34892:2:81","nodeType":"YulIdentifier","src":"34892:2:81"},"nativeSrc":"34892:12:81","nodeType":"YulFunctionCall","src":"34892:12:81"},{"arguments":[{"name":"exponent","nativeSrc":"34909:8:81","nodeType":"YulIdentifier","src":"34909:8:81"},{"kind":"number","nativeSrc":"34919:2:81","nodeType":"YulLiteral","src":"34919:2:81","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"34906:2:81","nodeType":"YulIdentifier","src":"34906:2:81"},"nativeSrc":"34906:16:81","nodeType":"YulFunctionCall","src":"34906:16:81"}],"functionName":{"name":"and","nativeSrc":"34888:3:81","nodeType":"YulIdentifier","src":"34888:3:81"},"nativeSrc":"34888:35:81","nodeType":"YulFunctionCall","src":"34888:35:81"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"34932:4:81","nodeType":"YulIdentifier","src":"34932:4:81"},{"kind":"number","nativeSrc":"34938:3:81","nodeType":"YulLiteral","src":"34938:3:81","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"34929:2:81","nodeType":"YulIdentifier","src":"34929:2:81"},"nativeSrc":"34929:13:81","nodeType":"YulFunctionCall","src":"34929:13:81"},{"arguments":[{"name":"exponent","nativeSrc":"34947:8:81","nodeType":"YulIdentifier","src":"34947:8:81"},{"kind":"number","nativeSrc":"34957:2:81","nodeType":"YulLiteral","src":"34957:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"34944:2:81","nodeType":"YulIdentifier","src":"34944:2:81"},"nativeSrc":"34944:16:81","nodeType":"YulFunctionCall","src":"34944:16:81"}],"functionName":{"name":"and","nativeSrc":"34925:3:81","nodeType":"YulIdentifier","src":"34925:3:81"},"nativeSrc":"34925:36:81","nodeType":"YulFunctionCall","src":"34925:36:81"}],"functionName":{"name":"or","nativeSrc":"34885:2:81","nodeType":"YulIdentifier","src":"34885:2:81"},"nativeSrc":"34885:77:81","nodeType":"YulFunctionCall","src":"34885:77:81"},"nativeSrc":"34882:203:81","nodeType":"YulIf","src":"34882:203:81"},{"nativeSrc":"35094:65:81","nodeType":"YulVariableDeclaration","src":"35094:65:81","value":{"arguments":[{"name":"base","nativeSrc":"35136:4:81","nodeType":"YulIdentifier","src":"35136:4:81"},{"name":"exponent","nativeSrc":"35142:8:81","nodeType":"YulIdentifier","src":"35142:8:81"},{"arguments":[{"kind":"number","nativeSrc":"35156:1:81","nodeType":"YulLiteral","src":"35156:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35152:3:81","nodeType":"YulIdentifier","src":"35152:3:81"},"nativeSrc":"35152:6:81","nodeType":"YulFunctionCall","src":"35152:6:81"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"35117:18:81","nodeType":"YulIdentifier","src":"35117:18:81"},"nativeSrc":"35117:42:81","nodeType":"YulFunctionCall","src":"35117:42:81"},"variables":[{"name":"power_1","nativeSrc":"35098:7:81","nodeType":"YulTypedName","src":"35098:7:81","type":""},{"name":"base_1","nativeSrc":"35107:6:81","nodeType":"YulTypedName","src":"35107:6:81","type":""}]},{"body":{"nativeSrc":"35204:22:81","nodeType":"YulBlock","src":"35204:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"35206:16:81","nodeType":"YulIdentifier","src":"35206:16:81"},"nativeSrc":"35206:18:81","nodeType":"YulFunctionCall","src":"35206:18:81"},"nativeSrc":"35206:18:81","nodeType":"YulExpressionStatement","src":"35206:18:81"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"35174:7:81","nodeType":"YulIdentifier","src":"35174:7:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35191:1:81","nodeType":"YulLiteral","src":"35191:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35187:3:81","nodeType":"YulIdentifier","src":"35187:3:81"},"nativeSrc":"35187:6:81","nodeType":"YulFunctionCall","src":"35187:6:81"},{"name":"base_1","nativeSrc":"35195:6:81","nodeType":"YulIdentifier","src":"35195:6:81"}],"functionName":{"name":"div","nativeSrc":"35183:3:81","nodeType":"YulIdentifier","src":"35183:3:81"},"nativeSrc":"35183:19:81","nodeType":"YulFunctionCall","src":"35183:19:81"}],"functionName":{"name":"gt","nativeSrc":"35171:2:81","nodeType":"YulIdentifier","src":"35171:2:81"},"nativeSrc":"35171:32:81","nodeType":"YulFunctionCall","src":"35171:32:81"},"nativeSrc":"35168:58:81","nodeType":"YulIf","src":"35168:58:81"},{"nativeSrc":"35235:29:81","nodeType":"YulAssignment","src":"35235:29:81","value":{"arguments":[{"name":"power_1","nativeSrc":"35248:7:81","nodeType":"YulIdentifier","src":"35248:7:81"},{"name":"base_1","nativeSrc":"35257:6:81","nodeType":"YulIdentifier","src":"35257:6:81"}],"functionName":{"name":"mul","nativeSrc":"35244:3:81","nodeType":"YulIdentifier","src":"35244:3:81"},"nativeSrc":"35244:20:81","nodeType":"YulFunctionCall","src":"35244:20:81"},"variableNames":[{"name":"power","nativeSrc":"35235:5:81","nodeType":"YulIdentifier","src":"35235:5:81"}]}]},"name":"checked_exp_unsigned","nativeSrc":"34368:902:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"34398:4:81","nodeType":"YulTypedName","src":"34398:4:81","type":""},{"name":"exponent","nativeSrc":"34404:8:81","nodeType":"YulTypedName","src":"34404:8:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"34417:5:81","nodeType":"YulTypedName","src":"34417:5:81","type":""}],"src":"34368:902:81"},{"body":{"nativeSrc":"35343:72:81","nodeType":"YulBlock","src":"35343:72:81","statements":[{"nativeSrc":"35353:56:81","nodeType":"YulAssignment","src":"35353:56:81","value":{"arguments":[{"name":"base","nativeSrc":"35383:4:81","nodeType":"YulIdentifier","src":"35383:4:81"},{"arguments":[{"name":"exponent","nativeSrc":"35393:8:81","nodeType":"YulIdentifier","src":"35393:8:81"},{"kind":"number","nativeSrc":"35403:4:81","nodeType":"YulLiteral","src":"35403:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"35389:3:81","nodeType":"YulIdentifier","src":"35389:3:81"},"nativeSrc":"35389:19:81","nodeType":"YulFunctionCall","src":"35389:19:81"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"35362:20:81","nodeType":"YulIdentifier","src":"35362:20:81"},"nativeSrc":"35362:47:81","nodeType":"YulFunctionCall","src":"35362:47:81"},"variableNames":[{"name":"power","nativeSrc":"35353:5:81","nodeType":"YulIdentifier","src":"35353:5:81"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"35275:140:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"35314:4:81","nodeType":"YulTypedName","src":"35314:4:81","type":""},{"name":"exponent","nativeSrc":"35320:8:81","nodeType":"YulTypedName","src":"35320:8:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"35333:5:81","nodeType":"YulTypedName","src":"35333:5:81","type":""}],"src":"35275:140:81"},{"body":{"nativeSrc":"35577:214:81","nodeType":"YulBlock","src":"35577:214:81","statements":[{"nativeSrc":"35587:26:81","nodeType":"YulAssignment","src":"35587:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"35599:9:81","nodeType":"YulIdentifier","src":"35599:9:81"},{"kind":"number","nativeSrc":"35610:2:81","nodeType":"YulLiteral","src":"35610:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35595:3:81","nodeType":"YulIdentifier","src":"35595:3:81"},"nativeSrc":"35595:18:81","nodeType":"YulFunctionCall","src":"35595:18:81"},"variableNames":[{"name":"tail","nativeSrc":"35587:4:81","nodeType":"YulIdentifier","src":"35587:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35629:9:81","nodeType":"YulIdentifier","src":"35629:9:81"},{"name":"value0","nativeSrc":"35640:6:81","nodeType":"YulIdentifier","src":"35640:6:81"}],"functionName":{"name":"mstore","nativeSrc":"35622:6:81","nodeType":"YulIdentifier","src":"35622:6:81"},"nativeSrc":"35622:25:81","nodeType":"YulFunctionCall","src":"35622:25:81"},"nativeSrc":"35622:25:81","nodeType":"YulExpressionStatement","src":"35622:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35667:9:81","nodeType":"YulIdentifier","src":"35667:9:81"},{"kind":"number","nativeSrc":"35678:2:81","nodeType":"YulLiteral","src":"35678:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35663:3:81","nodeType":"YulIdentifier","src":"35663:3:81"},"nativeSrc":"35663:18:81","nodeType":"YulFunctionCall","src":"35663:18:81"},{"arguments":[{"name":"value1","nativeSrc":"35687:6:81","nodeType":"YulIdentifier","src":"35687:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35703:3:81","nodeType":"YulLiteral","src":"35703:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"35708:1:81","nodeType":"YulLiteral","src":"35708:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35699:3:81","nodeType":"YulIdentifier","src":"35699:3:81"},"nativeSrc":"35699:11:81","nodeType":"YulFunctionCall","src":"35699:11:81"},{"kind":"number","nativeSrc":"35712:1:81","nodeType":"YulLiteral","src":"35712:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35695:3:81","nodeType":"YulIdentifier","src":"35695:3:81"},"nativeSrc":"35695:19:81","nodeType":"YulFunctionCall","src":"35695:19:81"}],"functionName":{"name":"and","nativeSrc":"35683:3:81","nodeType":"YulIdentifier","src":"35683:3:81"},"nativeSrc":"35683:32:81","nodeType":"YulFunctionCall","src":"35683:32:81"}],"functionName":{"name":"mstore","nativeSrc":"35656:6:81","nodeType":"YulIdentifier","src":"35656:6:81"},"nativeSrc":"35656:60:81","nodeType":"YulFunctionCall","src":"35656:60:81"},"nativeSrc":"35656:60:81","nodeType":"YulExpressionStatement","src":"35656:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35736:9:81","nodeType":"YulIdentifier","src":"35736:9:81"},{"kind":"number","nativeSrc":"35747:2:81","nodeType":"YulLiteral","src":"35747:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35732:3:81","nodeType":"YulIdentifier","src":"35732:3:81"},"nativeSrc":"35732:18:81","nodeType":"YulFunctionCall","src":"35732:18:81"},{"arguments":[{"name":"value2","nativeSrc":"35756:6:81","nodeType":"YulIdentifier","src":"35756:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35772:3:81","nodeType":"YulLiteral","src":"35772:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"35777:1:81","nodeType":"YulLiteral","src":"35777:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35768:3:81","nodeType":"YulIdentifier","src":"35768:3:81"},"nativeSrc":"35768:11:81","nodeType":"YulFunctionCall","src":"35768:11:81"},{"kind":"number","nativeSrc":"35781:1:81","nodeType":"YulLiteral","src":"35781:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35764:3:81","nodeType":"YulIdentifier","src":"35764:3:81"},"nativeSrc":"35764:19:81","nodeType":"YulFunctionCall","src":"35764:19:81"}],"functionName":{"name":"and","nativeSrc":"35752:3:81","nodeType":"YulIdentifier","src":"35752:3:81"},"nativeSrc":"35752:32:81","nodeType":"YulFunctionCall","src":"35752:32:81"}],"functionName":{"name":"mstore","nativeSrc":"35725:6:81","nodeType":"YulIdentifier","src":"35725:6:81"},"nativeSrc":"35725:60:81","nodeType":"YulFunctionCall","src":"35725:60:81"},"nativeSrc":"35725:60:81","nodeType":"YulExpressionStatement","src":"35725:60:81"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"35420:371:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35530:9:81","nodeType":"YulTypedName","src":"35530:9:81","type":""},{"name":"value2","nativeSrc":"35541:6:81","nodeType":"YulTypedName","src":"35541:6:81","type":""},{"name":"value1","nativeSrc":"35549:6:81","nodeType":"YulTypedName","src":"35549:6:81","type":""},{"name":"value0","nativeSrc":"35557:6:81","nodeType":"YulTypedName","src":"35557:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35568:4:81","nodeType":"YulTypedName","src":"35568:4:81","type":""}],"src":"35420:371:81"},{"body":{"nativeSrc":"35959:171:81","nodeType":"YulBlock","src":"35959:171:81","statements":[{"nativeSrc":"35969:26:81","nodeType":"YulAssignment","src":"35969:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"35981:9:81","nodeType":"YulIdentifier","src":"35981:9:81"},{"kind":"number","nativeSrc":"35992:2:81","nodeType":"YulLiteral","src":"35992:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35977:3:81","nodeType":"YulIdentifier","src":"35977:3:81"},"nativeSrc":"35977:18:81","nodeType":"YulFunctionCall","src":"35977:18:81"},"variableNames":[{"name":"tail","nativeSrc":"35969:4:81","nodeType":"YulIdentifier","src":"35969:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36011:9:81","nodeType":"YulIdentifier","src":"36011:9:81"},{"arguments":[{"name":"value0","nativeSrc":"36026:6:81","nodeType":"YulIdentifier","src":"36026:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36042:3:81","nodeType":"YulLiteral","src":"36042:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"36047:1:81","nodeType":"YulLiteral","src":"36047:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"36038:3:81","nodeType":"YulIdentifier","src":"36038:3:81"},"nativeSrc":"36038:11:81","nodeType":"YulFunctionCall","src":"36038:11:81"},{"kind":"number","nativeSrc":"36051:1:81","nodeType":"YulLiteral","src":"36051:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"36034:3:81","nodeType":"YulIdentifier","src":"36034:3:81"},"nativeSrc":"36034:19:81","nodeType":"YulFunctionCall","src":"36034:19:81"}],"functionName":{"name":"and","nativeSrc":"36022:3:81","nodeType":"YulIdentifier","src":"36022:3:81"},"nativeSrc":"36022:32:81","nodeType":"YulFunctionCall","src":"36022:32:81"}],"functionName":{"name":"mstore","nativeSrc":"36004:6:81","nodeType":"YulIdentifier","src":"36004:6:81"},"nativeSrc":"36004:51:81","nodeType":"YulFunctionCall","src":"36004:51:81"},"nativeSrc":"36004:51:81","nodeType":"YulExpressionStatement","src":"36004:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36075:9:81","nodeType":"YulIdentifier","src":"36075:9:81"},{"kind":"number","nativeSrc":"36086:2:81","nodeType":"YulLiteral","src":"36086:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36071:3:81","nodeType":"YulIdentifier","src":"36071:3:81"},"nativeSrc":"36071:18:81","nodeType":"YulFunctionCall","src":"36071:18:81"},{"arguments":[{"name":"value1","nativeSrc":"36095:6:81","nodeType":"YulIdentifier","src":"36095:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36111:3:81","nodeType":"YulLiteral","src":"36111:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"36116:1:81","nodeType":"YulLiteral","src":"36116:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"36107:3:81","nodeType":"YulIdentifier","src":"36107:3:81"},"nativeSrc":"36107:11:81","nodeType":"YulFunctionCall","src":"36107:11:81"},{"kind":"number","nativeSrc":"36120:1:81","nodeType":"YulLiteral","src":"36120:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"36103:3:81","nodeType":"YulIdentifier","src":"36103:3:81"},"nativeSrc":"36103:19:81","nodeType":"YulFunctionCall","src":"36103:19:81"}],"functionName":{"name":"and","nativeSrc":"36091:3:81","nodeType":"YulIdentifier","src":"36091:3:81"},"nativeSrc":"36091:32:81","nodeType":"YulFunctionCall","src":"36091:32:81"}],"functionName":{"name":"mstore","nativeSrc":"36064:6:81","nodeType":"YulIdentifier","src":"36064:6:81"},"nativeSrc":"36064:60:81","nodeType":"YulFunctionCall","src":"36064:60:81"},"nativeSrc":"36064:60:81","nodeType":"YulExpressionStatement","src":"36064:60:81"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$9796_t_contract$_IERC4626_$9796__to_t_address_t_address__fromStack_reversed","nativeSrc":"35796:334:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35920:9:81","nodeType":"YulTypedName","src":"35920:9:81","type":""},{"name":"value1","nativeSrc":"35931:6:81","nodeType":"YulTypedName","src":"35931:6:81","type":""},{"name":"value0","nativeSrc":"35939:6:81","nodeType":"YulTypedName","src":"35939:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35950:4:81","nodeType":"YulTypedName","src":"35950:4:81","type":""}],"src":"35796:334:81"},{"body":{"nativeSrc":"36167:95:81","nodeType":"YulBlock","src":"36167:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36184:1:81","nodeType":"YulLiteral","src":"36184:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"36191:3:81","nodeType":"YulLiteral","src":"36191:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"36196:10:81","nodeType":"YulLiteral","src":"36196:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"36187:3:81","nodeType":"YulIdentifier","src":"36187:3:81"},"nativeSrc":"36187:20:81","nodeType":"YulFunctionCall","src":"36187:20:81"}],"functionName":{"name":"mstore","nativeSrc":"36177:6:81","nodeType":"YulIdentifier","src":"36177:6:81"},"nativeSrc":"36177:31:81","nodeType":"YulFunctionCall","src":"36177:31:81"},"nativeSrc":"36177:31:81","nodeType":"YulExpressionStatement","src":"36177:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"36224:1:81","nodeType":"YulLiteral","src":"36224:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"36227:4:81","nodeType":"YulLiteral","src":"36227:4:81","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"36217:6:81","nodeType":"YulIdentifier","src":"36217:6:81"},"nativeSrc":"36217:15:81","nodeType":"YulFunctionCall","src":"36217:15:81"},"nativeSrc":"36217:15:81","nodeType":"YulExpressionStatement","src":"36217:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"36248:1:81","nodeType":"YulLiteral","src":"36248:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"36251:4:81","nodeType":"YulLiteral","src":"36251:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"36241:6:81","nodeType":"YulIdentifier","src":"36241:6:81"},"nativeSrc":"36241:15:81","nodeType":"YulFunctionCall","src":"36241:15:81"},"nativeSrc":"36241:15:81","nodeType":"YulExpressionStatement","src":"36241:15:81"}]},"name":"panic_error_0x12","nativeSrc":"36135:127:81","nodeType":"YulFunctionDefinition","src":"36135:127:81"},{"body":{"nativeSrc":"36313:74:81","nodeType":"YulBlock","src":"36313:74:81","statements":[{"body":{"nativeSrc":"36336:22:81","nodeType":"YulBlock","src":"36336:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"36338:16:81","nodeType":"YulIdentifier","src":"36338:16:81"},"nativeSrc":"36338:18:81","nodeType":"YulFunctionCall","src":"36338:18:81"},"nativeSrc":"36338:18:81","nodeType":"YulExpressionStatement","src":"36338:18:81"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"36333:1:81","nodeType":"YulIdentifier","src":"36333:1:81"}],"functionName":{"name":"iszero","nativeSrc":"36326:6:81","nodeType":"YulIdentifier","src":"36326:6:81"},"nativeSrc":"36326:9:81","nodeType":"YulFunctionCall","src":"36326:9:81"},"nativeSrc":"36323:35:81","nodeType":"YulIf","src":"36323:35:81"},{"nativeSrc":"36367:14:81","nodeType":"YulAssignment","src":"36367:14:81","value":{"arguments":[{"name":"x","nativeSrc":"36376:1:81","nodeType":"YulIdentifier","src":"36376:1:81"},{"name":"y","nativeSrc":"36379:1:81","nodeType":"YulIdentifier","src":"36379:1:81"}],"functionName":{"name":"div","nativeSrc":"36372:3:81","nodeType":"YulIdentifier","src":"36372:3:81"},"nativeSrc":"36372:9:81","nodeType":"YulFunctionCall","src":"36372:9:81"},"variableNames":[{"name":"r","nativeSrc":"36367:1:81","nodeType":"YulIdentifier","src":"36367:1:81"}]}]},"name":"checked_div_t_uint256","nativeSrc":"36267:120:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36298:1:81","nodeType":"YulTypedName","src":"36298:1:81","type":""},{"name":"y","nativeSrc":"36301:1:81","nodeType":"YulTypedName","src":"36301:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"36307:1:81","nodeType":"YulTypedName","src":"36307:1:81","type":""}],"src":"36267:120:81"},{"body":{"nativeSrc":"36439:169:81","nodeType":"YulBlock","src":"36439:169:81","statements":[{"nativeSrc":"36449:16:81","nodeType":"YulAssignment","src":"36449:16:81","value":{"arguments":[{"name":"x","nativeSrc":"36460:1:81","nodeType":"YulIdentifier","src":"36460:1:81"},{"name":"y","nativeSrc":"36463:1:81","nodeType":"YulIdentifier","src":"36463:1:81"}],"functionName":{"name":"add","nativeSrc":"36456:3:81","nodeType":"YulIdentifier","src":"36456:3:81"},"nativeSrc":"36456:9:81","nodeType":"YulFunctionCall","src":"36456:9:81"},"variableNames":[{"name":"sum","nativeSrc":"36449:3:81","nodeType":"YulIdentifier","src":"36449:3:81"}]},{"nativeSrc":"36474:21:81","nodeType":"YulVariableDeclaration","src":"36474:21:81","value":{"arguments":[{"name":"sum","nativeSrc":"36488:3:81","nodeType":"YulIdentifier","src":"36488:3:81"},{"name":"y","nativeSrc":"36493:1:81","nodeType":"YulIdentifier","src":"36493:1:81"}],"functionName":{"name":"slt","nativeSrc":"36484:3:81","nodeType":"YulIdentifier","src":"36484:3:81"},"nativeSrc":"36484:11:81","nodeType":"YulFunctionCall","src":"36484:11:81"},"variables":[{"name":"_1","nativeSrc":"36478:2:81","nodeType":"YulTypedName","src":"36478:2:81","type":""}]},{"nativeSrc":"36504:19:81","nodeType":"YulVariableDeclaration","src":"36504:19:81","value":{"arguments":[{"name":"x","nativeSrc":"36518:1:81","nodeType":"YulIdentifier","src":"36518:1:81"},{"kind":"number","nativeSrc":"36521:1:81","nodeType":"YulLiteral","src":"36521:1:81","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"36514:3:81","nodeType":"YulIdentifier","src":"36514:3:81"},"nativeSrc":"36514:9:81","nodeType":"YulFunctionCall","src":"36514:9:81"},"variables":[{"name":"_2","nativeSrc":"36508:2:81","nodeType":"YulTypedName","src":"36508:2:81","type":""}]},{"body":{"nativeSrc":"36580:22:81","nodeType":"YulBlock","src":"36580:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36582:16:81","nodeType":"YulIdentifier","src":"36582:16:81"},"nativeSrc":"36582:18:81","nodeType":"YulFunctionCall","src":"36582:18:81"},"nativeSrc":"36582:18:81","nodeType":"YulExpressionStatement","src":"36582:18:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"36549:2:81","nodeType":"YulIdentifier","src":"36549:2:81"}],"functionName":{"name":"iszero","nativeSrc":"36542:6:81","nodeType":"YulIdentifier","src":"36542:6:81"},"nativeSrc":"36542:10:81","nodeType":"YulFunctionCall","src":"36542:10:81"},{"name":"_1","nativeSrc":"36554:2:81","nodeType":"YulIdentifier","src":"36554:2:81"}],"functionName":{"name":"and","nativeSrc":"36538:3:81","nodeType":"YulIdentifier","src":"36538:3:81"},"nativeSrc":"36538:19:81","nodeType":"YulFunctionCall","src":"36538:19:81"},{"arguments":[{"name":"_2","nativeSrc":"36563:2:81","nodeType":"YulIdentifier","src":"36563:2:81"},{"arguments":[{"name":"_1","nativeSrc":"36574:2:81","nodeType":"YulIdentifier","src":"36574:2:81"}],"functionName":{"name":"iszero","nativeSrc":"36567:6:81","nodeType":"YulIdentifier","src":"36567:6:81"},"nativeSrc":"36567:10:81","nodeType":"YulFunctionCall","src":"36567:10:81"}],"functionName":{"name":"and","nativeSrc":"36559:3:81","nodeType":"YulIdentifier","src":"36559:3:81"},"nativeSrc":"36559:19:81","nodeType":"YulFunctionCall","src":"36559:19:81"}],"functionName":{"name":"or","nativeSrc":"36535:2:81","nodeType":"YulIdentifier","src":"36535:2:81"},"nativeSrc":"36535:44:81","nodeType":"YulFunctionCall","src":"36535:44:81"},"nativeSrc":"36532:70:81","nodeType":"YulIf","src":"36532:70:81"}]},"name":"checked_add_t_int256","nativeSrc":"36392:216:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36422:1:81","nodeType":"YulTypedName","src":"36422:1:81","type":""},{"name":"y","nativeSrc":"36425:1:81","nodeType":"YulTypedName","src":"36425:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36431:3:81","nodeType":"YulTypedName","src":"36431:3:81","type":""}],"src":"36392:216:81"},{"body":{"nativeSrc":"36659:182:81","nodeType":"YulBlock","src":"36659:182:81","statements":[{"nativeSrc":"36669:48:81","nodeType":"YulAssignment","src":"36669:48:81","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36691:2:81","nodeType":"YulLiteral","src":"36691:2:81","type":"","value":"11"},{"name":"x","nativeSrc":"36695:1:81","nodeType":"YulIdentifier","src":"36695:1:81"}],"functionName":{"name":"signextend","nativeSrc":"36680:10:81","nodeType":"YulIdentifier","src":"36680:10:81"},"nativeSrc":"36680:17:81","nodeType":"YulFunctionCall","src":"36680:17:81"},{"arguments":[{"kind":"number","nativeSrc":"36710:2:81","nodeType":"YulLiteral","src":"36710:2:81","type":"","value":"11"},{"name":"y","nativeSrc":"36714:1:81","nodeType":"YulIdentifier","src":"36714:1:81"}],"functionName":{"name":"signextend","nativeSrc":"36699:10:81","nodeType":"YulIdentifier","src":"36699:10:81"},"nativeSrc":"36699:17:81","nodeType":"YulFunctionCall","src":"36699:17:81"}],"functionName":{"name":"add","nativeSrc":"36676:3:81","nodeType":"YulIdentifier","src":"36676:3:81"},"nativeSrc":"36676:41:81","nodeType":"YulFunctionCall","src":"36676:41:81"},"variableNames":[{"name":"sum","nativeSrc":"36669:3:81","nodeType":"YulIdentifier","src":"36669:3:81"}]},{"body":{"nativeSrc":"36813:22:81","nodeType":"YulBlock","src":"36813:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36815:16:81","nodeType":"YulIdentifier","src":"36815:16:81"},"nativeSrc":"36815:18:81","nodeType":"YulFunctionCall","src":"36815:18:81"},"nativeSrc":"36815:18:81","nodeType":"YulExpressionStatement","src":"36815:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"sum","nativeSrc":"36736:3:81","nodeType":"YulIdentifier","src":"36736:3:81"},{"kind":"number","nativeSrc":"36741:26:81","nodeType":"YulLiteral","src":"36741:26:81","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"sgt","nativeSrc":"36732:3:81","nodeType":"YulIdentifier","src":"36732:3:81"},"nativeSrc":"36732:36:81","nodeType":"YulFunctionCall","src":"36732:36:81"},{"arguments":[{"name":"sum","nativeSrc":"36774:3:81","nodeType":"YulIdentifier","src":"36774:3:81"},{"arguments":[{"kind":"number","nativeSrc":"36783:26:81","nodeType":"YulLiteral","src":"36783:26:81","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"36779:3:81","nodeType":"YulIdentifier","src":"36779:3:81"},"nativeSrc":"36779:31:81","nodeType":"YulFunctionCall","src":"36779:31:81"}],"functionName":{"name":"slt","nativeSrc":"36770:3:81","nodeType":"YulIdentifier","src":"36770:3:81"},"nativeSrc":"36770:41:81","nodeType":"YulFunctionCall","src":"36770:41:81"}],"functionName":{"name":"or","nativeSrc":"36729:2:81","nodeType":"YulIdentifier","src":"36729:2:81"},"nativeSrc":"36729:83:81","nodeType":"YulFunctionCall","src":"36729:83:81"},"nativeSrc":"36726:109:81","nodeType":"YulIf","src":"36726:109:81"}]},"name":"checked_add_t_int96","nativeSrc":"36613:228:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36642:1:81","nodeType":"YulTypedName","src":"36642:1:81","type":""},{"name":"y","nativeSrc":"36645:1:81","nodeType":"YulTypedName","src":"36645:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36651:3:81","nodeType":"YulTypedName","src":"36651:3:81","type":""}],"src":"36613:228:81"},{"body":{"nativeSrc":"37048:300:81","nodeType":"YulBlock","src":"37048:300:81","statements":[{"nativeSrc":"37058:27:81","nodeType":"YulAssignment","src":"37058:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37070:9:81","nodeType":"YulIdentifier","src":"37070:9:81"},{"kind":"number","nativeSrc":"37081:3:81","nodeType":"YulLiteral","src":"37081:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"37066:3:81","nodeType":"YulIdentifier","src":"37066:3:81"},"nativeSrc":"37066:19:81","nodeType":"YulFunctionCall","src":"37066:19:81"},"variableNames":[{"name":"tail","nativeSrc":"37058:4:81","nodeType":"YulIdentifier","src":"37058:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37101:9:81","nodeType":"YulIdentifier","src":"37101:9:81"},{"arguments":[{"name":"value0","nativeSrc":"37116:6:81","nodeType":"YulIdentifier","src":"37116:6:81"},{"kind":"number","nativeSrc":"37124:10:81","nodeType":"YulLiteral","src":"37124:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"37112:3:81","nodeType":"YulIdentifier","src":"37112:3:81"},"nativeSrc":"37112:23:81","nodeType":"YulFunctionCall","src":"37112:23:81"}],"functionName":{"name":"mstore","nativeSrc":"37094:6:81","nodeType":"YulIdentifier","src":"37094:6:81"},"nativeSrc":"37094:42:81","nodeType":"YulFunctionCall","src":"37094:42:81"},"nativeSrc":"37094:42:81","nodeType":"YulExpressionStatement","src":"37094:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37156:9:81","nodeType":"YulIdentifier","src":"37156:9:81"},{"kind":"number","nativeSrc":"37167:2:81","nodeType":"YulLiteral","src":"37167:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37152:3:81","nodeType":"YulIdentifier","src":"37152:3:81"},"nativeSrc":"37152:18:81","nodeType":"YulFunctionCall","src":"37152:18:81"},{"arguments":[{"name":"value1","nativeSrc":"37176:6:81","nodeType":"YulIdentifier","src":"37176:6:81"},{"kind":"number","nativeSrc":"37184:10:81","nodeType":"YulLiteral","src":"37184:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"37172:3:81","nodeType":"YulIdentifier","src":"37172:3:81"},"nativeSrc":"37172:23:81","nodeType":"YulFunctionCall","src":"37172:23:81"}],"functionName":{"name":"mstore","nativeSrc":"37145:6:81","nodeType":"YulIdentifier","src":"37145:6:81"},"nativeSrc":"37145:51:81","nodeType":"YulFunctionCall","src":"37145:51:81"},"nativeSrc":"37145:51:81","nodeType":"YulExpressionStatement","src":"37145:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37216:9:81","nodeType":"YulIdentifier","src":"37216:9:81"},{"kind":"number","nativeSrc":"37227:2:81","nodeType":"YulLiteral","src":"37227:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37212:3:81","nodeType":"YulIdentifier","src":"37212:3:81"},"nativeSrc":"37212:18:81","nodeType":"YulFunctionCall","src":"37212:18:81"},{"name":"value2","nativeSrc":"37232:6:81","nodeType":"YulIdentifier","src":"37232:6:81"}],"functionName":{"name":"mstore","nativeSrc":"37205:6:81","nodeType":"YulIdentifier","src":"37205:6:81"},"nativeSrc":"37205:34:81","nodeType":"YulFunctionCall","src":"37205:34:81"},"nativeSrc":"37205:34:81","nodeType":"YulExpressionStatement","src":"37205:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37259:9:81","nodeType":"YulIdentifier","src":"37259:9:81"},{"kind":"number","nativeSrc":"37270:2:81","nodeType":"YulLiteral","src":"37270:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37255:3:81","nodeType":"YulIdentifier","src":"37255:3:81"},"nativeSrc":"37255:18:81","nodeType":"YulFunctionCall","src":"37255:18:81"},{"name":"value3","nativeSrc":"37275:6:81","nodeType":"YulIdentifier","src":"37275:6:81"}],"functionName":{"name":"mstore","nativeSrc":"37248:6:81","nodeType":"YulIdentifier","src":"37248:6:81"},"nativeSrc":"37248:34:81","nodeType":"YulFunctionCall","src":"37248:34:81"},"nativeSrc":"37248:34:81","nodeType":"YulExpressionStatement","src":"37248:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37302:9:81","nodeType":"YulIdentifier","src":"37302:9:81"},{"kind":"number","nativeSrc":"37313:3:81","nodeType":"YulLiteral","src":"37313:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37298:3:81","nodeType":"YulIdentifier","src":"37298:3:81"},"nativeSrc":"37298:19:81","nodeType":"YulFunctionCall","src":"37298:19:81"},{"arguments":[{"kind":"number","nativeSrc":"37330:2:81","nodeType":"YulLiteral","src":"37330:2:81","type":"","value":"11"},{"name":"value4","nativeSrc":"37334:6:81","nodeType":"YulIdentifier","src":"37334:6:81"}],"functionName":{"name":"signextend","nativeSrc":"37319:10:81","nodeType":"YulIdentifier","src":"37319:10:81"},"nativeSrc":"37319:22:81","nodeType":"YulFunctionCall","src":"37319:22:81"}],"functionName":{"name":"mstore","nativeSrc":"37291:6:81","nodeType":"YulIdentifier","src":"37291:6:81"},"nativeSrc":"37291:51:81","nodeType":"YulFunctionCall","src":"37291:51:81"},"nativeSrc":"37291:51:81","nodeType":"YulExpressionStatement","src":"37291:51:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed","nativeSrc":"36846:502:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36985:9:81","nodeType":"YulTypedName","src":"36985:9:81","type":""},{"name":"value4","nativeSrc":"36996:6:81","nodeType":"YulTypedName","src":"36996:6:81","type":""},{"name":"value3","nativeSrc":"37004:6:81","nodeType":"YulTypedName","src":"37004:6:81","type":""},{"name":"value2","nativeSrc":"37012:6:81","nodeType":"YulTypedName","src":"37012:6:81","type":""},{"name":"value1","nativeSrc":"37020:6:81","nodeType":"YulTypedName","src":"37020:6:81","type":""},{"name":"value0","nativeSrc":"37028:6:81","nodeType":"YulTypedName","src":"37028:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37039:4:81","nodeType":"YulTypedName","src":"37039:4:81","type":""}],"src":"36846:502:81"},{"body":{"nativeSrc":"37457:180:81","nodeType":"YulBlock","src":"37457:180:81","statements":[{"body":{"nativeSrc":"37503:16:81","nodeType":"YulBlock","src":"37503:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37512:1:81","nodeType":"YulLiteral","src":"37512:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"37515:1:81","nodeType":"YulLiteral","src":"37515:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37505:6:81","nodeType":"YulIdentifier","src":"37505:6:81"},"nativeSrc":"37505:12:81","nodeType":"YulFunctionCall","src":"37505:12:81"},"nativeSrc":"37505:12:81","nodeType":"YulExpressionStatement","src":"37505:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37478:7:81","nodeType":"YulIdentifier","src":"37478:7:81"},{"name":"headStart","nativeSrc":"37487:9:81","nodeType":"YulIdentifier","src":"37487:9:81"}],"functionName":{"name":"sub","nativeSrc":"37474:3:81","nodeType":"YulIdentifier","src":"37474:3:81"},"nativeSrc":"37474:23:81","nodeType":"YulFunctionCall","src":"37474:23:81"},{"kind":"number","nativeSrc":"37499:2:81","nodeType":"YulLiteral","src":"37499:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"37470:3:81","nodeType":"YulIdentifier","src":"37470:3:81"},"nativeSrc":"37470:32:81","nodeType":"YulFunctionCall","src":"37470:32:81"},"nativeSrc":"37467:52:81","nodeType":"YulIf","src":"37467:52:81"},{"nativeSrc":"37528:29:81","nodeType":"YulVariableDeclaration","src":"37528:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37547:9:81","nodeType":"YulIdentifier","src":"37547:9:81"}],"functionName":{"name":"mload","nativeSrc":"37541:5:81","nodeType":"YulIdentifier","src":"37541:5:81"},"nativeSrc":"37541:16:81","nodeType":"YulFunctionCall","src":"37541:16:81"},"variables":[{"name":"value","nativeSrc":"37532:5:81","nodeType":"YulTypedName","src":"37532:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"37601:5:81","nodeType":"YulIdentifier","src":"37601:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"37566:34:81","nodeType":"YulIdentifier","src":"37566:34:81"},"nativeSrc":"37566:41:81","nodeType":"YulFunctionCall","src":"37566:41:81"},"nativeSrc":"37566:41:81","nodeType":"YulExpressionStatement","src":"37566:41:81"},{"nativeSrc":"37616:15:81","nodeType":"YulAssignment","src":"37616:15:81","value":{"name":"value","nativeSrc":"37626:5:81","nodeType":"YulIdentifier","src":"37626:5:81"},"variableNames":[{"name":"value0","nativeSrc":"37616:6:81","nodeType":"YulIdentifier","src":"37616:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IAccessManager_$9511_fromMemory","nativeSrc":"37353:284:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37423:9:81","nodeType":"YulTypedName","src":"37423:9:81","type":""},{"name":"dataEnd","nativeSrc":"37434:7:81","nodeType":"YulTypedName","src":"37434:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37446:6:81","nodeType":"YulTypedName","src":"37446:6:81","type":""}],"src":"37353:284:81"},{"body":{"nativeSrc":"37797:241:81","nodeType":"YulBlock","src":"37797:241:81","statements":[{"nativeSrc":"37807:26:81","nodeType":"YulAssignment","src":"37807:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"37819:9:81","nodeType":"YulIdentifier","src":"37819:9:81"},{"kind":"number","nativeSrc":"37830:2:81","nodeType":"YulLiteral","src":"37830:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37815:3:81","nodeType":"YulIdentifier","src":"37815:3:81"},"nativeSrc":"37815:18:81","nodeType":"YulFunctionCall","src":"37815:18:81"},"variableNames":[{"name":"tail","nativeSrc":"37807:4:81","nodeType":"YulIdentifier","src":"37807:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37849:9:81","nodeType":"YulIdentifier","src":"37849:9:81"},{"arguments":[{"name":"value0","nativeSrc":"37864:6:81","nodeType":"YulIdentifier","src":"37864:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37880:3:81","nodeType":"YulLiteral","src":"37880:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"37885:1:81","nodeType":"YulLiteral","src":"37885:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37876:3:81","nodeType":"YulIdentifier","src":"37876:3:81"},"nativeSrc":"37876:11:81","nodeType":"YulFunctionCall","src":"37876:11:81"},{"kind":"number","nativeSrc":"37889:1:81","nodeType":"YulLiteral","src":"37889:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37872:3:81","nodeType":"YulIdentifier","src":"37872:3:81"},"nativeSrc":"37872:19:81","nodeType":"YulFunctionCall","src":"37872:19:81"}],"functionName":{"name":"and","nativeSrc":"37860:3:81","nodeType":"YulIdentifier","src":"37860:3:81"},"nativeSrc":"37860:32:81","nodeType":"YulFunctionCall","src":"37860:32:81"}],"functionName":{"name":"mstore","nativeSrc":"37842:6:81","nodeType":"YulIdentifier","src":"37842:6:81"},"nativeSrc":"37842:51:81","nodeType":"YulFunctionCall","src":"37842:51:81"},"nativeSrc":"37842:51:81","nodeType":"YulExpressionStatement","src":"37842:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37913:9:81","nodeType":"YulIdentifier","src":"37913:9:81"},{"kind":"number","nativeSrc":"37924:2:81","nodeType":"YulLiteral","src":"37924:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37909:3:81","nodeType":"YulIdentifier","src":"37909:3:81"},"nativeSrc":"37909:18:81","nodeType":"YulFunctionCall","src":"37909:18:81"},{"arguments":[{"name":"value1","nativeSrc":"37933:6:81","nodeType":"YulIdentifier","src":"37933:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37949:3:81","nodeType":"YulLiteral","src":"37949:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"37954:1:81","nodeType":"YulLiteral","src":"37954:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37945:3:81","nodeType":"YulIdentifier","src":"37945:3:81"},"nativeSrc":"37945:11:81","nodeType":"YulFunctionCall","src":"37945:11:81"},{"kind":"number","nativeSrc":"37958:1:81","nodeType":"YulLiteral","src":"37958:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37941:3:81","nodeType":"YulIdentifier","src":"37941:3:81"},"nativeSrc":"37941:19:81","nodeType":"YulFunctionCall","src":"37941:19:81"}],"functionName":{"name":"and","nativeSrc":"37929:3:81","nodeType":"YulIdentifier","src":"37929:3:81"},"nativeSrc":"37929:32:81","nodeType":"YulFunctionCall","src":"37929:32:81"}],"functionName":{"name":"mstore","nativeSrc":"37902:6:81","nodeType":"YulIdentifier","src":"37902:6:81"},"nativeSrc":"37902:60:81","nodeType":"YulFunctionCall","src":"37902:60:81"},"nativeSrc":"37902:60:81","nodeType":"YulExpressionStatement","src":"37902:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37982:9:81","nodeType":"YulIdentifier","src":"37982:9:81"},{"kind":"number","nativeSrc":"37993:2:81","nodeType":"YulLiteral","src":"37993:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37978:3:81","nodeType":"YulIdentifier","src":"37978:3:81"},"nativeSrc":"37978:18:81","nodeType":"YulFunctionCall","src":"37978:18:81"},{"arguments":[{"name":"value2","nativeSrc":"38002:6:81","nodeType":"YulIdentifier","src":"38002:6:81"},{"arguments":[{"kind":"number","nativeSrc":"38014:3:81","nodeType":"YulLiteral","src":"38014:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"38019:10:81","nodeType":"YulLiteral","src":"38019:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"38010:3:81","nodeType":"YulIdentifier","src":"38010:3:81"},"nativeSrc":"38010:20:81","nodeType":"YulFunctionCall","src":"38010:20:81"}],"functionName":{"name":"and","nativeSrc":"37998:3:81","nodeType":"YulIdentifier","src":"37998:3:81"},"nativeSrc":"37998:33:81","nodeType":"YulFunctionCall","src":"37998:33:81"}],"functionName":{"name":"mstore","nativeSrc":"37971:6:81","nodeType":"YulIdentifier","src":"37971:6:81"},"nativeSrc":"37971:61:81","nodeType":"YulFunctionCall","src":"37971:61:81"},"nativeSrc":"37971:61:81","nodeType":"YulExpressionStatement","src":"37971:61:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"37642:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37750:9:81","nodeType":"YulTypedName","src":"37750:9:81","type":""},{"name":"value2","nativeSrc":"37761:6:81","nodeType":"YulTypedName","src":"37761:6:81","type":""},{"name":"value1","nativeSrc":"37769:6:81","nodeType":"YulTypedName","src":"37769:6:81","type":""},{"name":"value0","nativeSrc":"37777:6:81","nodeType":"YulTypedName","src":"37777:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37788:4:81","nodeType":"YulTypedName","src":"37788:4:81","type":""}],"src":"37642:396:81"},{"body":{"nativeSrc":"38137:283:81","nodeType":"YulBlock","src":"38137:283:81","statements":[{"body":{"nativeSrc":"38183:16:81","nodeType":"YulBlock","src":"38183:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"38192:1:81","nodeType":"YulLiteral","src":"38192:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"38195:1:81","nodeType":"YulLiteral","src":"38195:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"38185:6:81","nodeType":"YulIdentifier","src":"38185:6:81"},"nativeSrc":"38185:12:81","nodeType":"YulFunctionCall","src":"38185:12:81"},"nativeSrc":"38185:12:81","nodeType":"YulExpressionStatement","src":"38185:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"38158:7:81","nodeType":"YulIdentifier","src":"38158:7:81"},{"name":"headStart","nativeSrc":"38167:9:81","nodeType":"YulIdentifier","src":"38167:9:81"}],"functionName":{"name":"sub","nativeSrc":"38154:3:81","nodeType":"YulIdentifier","src":"38154:3:81"},"nativeSrc":"38154:23:81","nodeType":"YulFunctionCall","src":"38154:23:81"},{"kind":"number","nativeSrc":"38179:2:81","nodeType":"YulLiteral","src":"38179:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"38150:3:81","nodeType":"YulIdentifier","src":"38150:3:81"},"nativeSrc":"38150:32:81","nodeType":"YulFunctionCall","src":"38150:32:81"},"nativeSrc":"38147:52:81","nodeType":"YulIf","src":"38147:52:81"},{"nativeSrc":"38208:29:81","nodeType":"YulVariableDeclaration","src":"38208:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"38227:9:81","nodeType":"YulIdentifier","src":"38227:9:81"}],"functionName":{"name":"mload","nativeSrc":"38221:5:81","nodeType":"YulIdentifier","src":"38221:5:81"},"nativeSrc":"38221:16:81","nodeType":"YulFunctionCall","src":"38221:16:81"},"variables":[{"name":"value","nativeSrc":"38212:5:81","nodeType":"YulTypedName","src":"38212:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"38268:5:81","nodeType":"YulIdentifier","src":"38268:5:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"38246:21:81","nodeType":"YulIdentifier","src":"38246:21:81"},"nativeSrc":"38246:28:81","nodeType":"YulFunctionCall","src":"38246:28:81"},"nativeSrc":"38246:28:81","nodeType":"YulExpressionStatement","src":"38246:28:81"},{"nativeSrc":"38283:15:81","nodeType":"YulAssignment","src":"38283:15:81","value":{"name":"value","nativeSrc":"38293:5:81","nodeType":"YulIdentifier","src":"38293:5:81"},"variableNames":[{"name":"value0","nativeSrc":"38283:6:81","nodeType":"YulIdentifier","src":"38283:6:81"}]},{"nativeSrc":"38307:40:81","nodeType":"YulVariableDeclaration","src":"38307:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38332:9:81","nodeType":"YulIdentifier","src":"38332:9:81"},{"kind":"number","nativeSrc":"38343:2:81","nodeType":"YulLiteral","src":"38343:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38328:3:81","nodeType":"YulIdentifier","src":"38328:3:81"},"nativeSrc":"38328:18:81","nodeType":"YulFunctionCall","src":"38328:18:81"}],"functionName":{"name":"mload","nativeSrc":"38322:5:81","nodeType":"YulIdentifier","src":"38322:5:81"},"nativeSrc":"38322:25:81","nodeType":"YulFunctionCall","src":"38322:25:81"},"variables":[{"name":"value_1","nativeSrc":"38311:7:81","nodeType":"YulTypedName","src":"38311:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"38380:7:81","nodeType":"YulIdentifier","src":"38380:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"38356:23:81","nodeType":"YulIdentifier","src":"38356:23:81"},"nativeSrc":"38356:32:81","nodeType":"YulFunctionCall","src":"38356:32:81"},"nativeSrc":"38356:32:81","nodeType":"YulExpressionStatement","src":"38356:32:81"},{"nativeSrc":"38397:17:81","nodeType":"YulAssignment","src":"38397:17:81","value":{"name":"value_1","nativeSrc":"38407:7:81","nodeType":"YulIdentifier","src":"38407:7:81"},"variableNames":[{"name":"value1","nativeSrc":"38397:6:81","nodeType":"YulIdentifier","src":"38397:6:81"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"38043:377:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38095:9:81","nodeType":"YulTypedName","src":"38095:9:81","type":""},{"name":"dataEnd","nativeSrc":"38106:7:81","nodeType":"YulTypedName","src":"38106:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"38118:6:81","nodeType":"YulTypedName","src":"38118:6:81","type":""},{"name":"value1","nativeSrc":"38126:6:81","nodeType":"YulTypedName","src":"38126:6:81","type":""}],"src":"38043:377:81"},{"body":{"nativeSrc":"38471:142:81","nodeType":"YulBlock","src":"38471:142:81","statements":[{"nativeSrc":"38481:37:81","nodeType":"YulVariableDeclaration","src":"38481:37:81","value":{"arguments":[{"name":"value","nativeSrc":"38500:5:81","nodeType":"YulIdentifier","src":"38500:5:81"},{"kind":"number","nativeSrc":"38507:10:81","nodeType":"YulLiteral","src":"38507:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"38496:3:81","nodeType":"YulIdentifier","src":"38496:3:81"},"nativeSrc":"38496:22:81","nodeType":"YulFunctionCall","src":"38496:22:81"},"variables":[{"name":"value_1","nativeSrc":"38485:7:81","nodeType":"YulTypedName","src":"38485:7:81","type":""}]},{"body":{"nativeSrc":"38554:22:81","nodeType":"YulBlock","src":"38554:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"38556:16:81","nodeType":"YulIdentifier","src":"38556:16:81"},"nativeSrc":"38556:18:81","nodeType":"YulFunctionCall","src":"38556:18:81"},"nativeSrc":"38556:18:81","nodeType":"YulExpressionStatement","src":"38556:18:81"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"38533:7:81","nodeType":"YulIdentifier","src":"38533:7:81"},{"kind":"number","nativeSrc":"38542:10:81","nodeType":"YulLiteral","src":"38542:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"38530:2:81","nodeType":"YulIdentifier","src":"38530:2:81"},"nativeSrc":"38530:23:81","nodeType":"YulFunctionCall","src":"38530:23:81"},"nativeSrc":"38527:49:81","nodeType":"YulIf","src":"38527:49:81"},{"nativeSrc":"38585:22:81","nodeType":"YulAssignment","src":"38585:22:81","value":{"arguments":[{"name":"value_1","nativeSrc":"38596:7:81","nodeType":"YulIdentifier","src":"38596:7:81"},{"kind":"number","nativeSrc":"38605:1:81","nodeType":"YulLiteral","src":"38605:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"38592:3:81","nodeType":"YulIdentifier","src":"38592:3:81"},"nativeSrc":"38592:15:81","nodeType":"YulFunctionCall","src":"38592:15:81"},"variableNames":[{"name":"ret","nativeSrc":"38585:3:81","nodeType":"YulIdentifier","src":"38585:3:81"}]}]},"name":"increment_t_uint32","nativeSrc":"38425:188:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"38453:5:81","nodeType":"YulTypedName","src":"38453:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"38463:3:81","nodeType":"YulTypedName","src":"38463:3:81","type":""}],"src":"38425:188:81"},{"body":{"nativeSrc":"38655:133:81","nodeType":"YulBlock","src":"38655:133:81","statements":[{"nativeSrc":"38665:29:81","nodeType":"YulVariableDeclaration","src":"38665:29:81","value":{"arguments":[{"name":"y","nativeSrc":"38680:1:81","nodeType":"YulIdentifier","src":"38680:1:81"},{"kind":"number","nativeSrc":"38683:10:81","nodeType":"YulLiteral","src":"38683:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"38676:3:81","nodeType":"YulIdentifier","src":"38676:3:81"},"nativeSrc":"38676:18:81","nodeType":"YulFunctionCall","src":"38676:18:81"},"variables":[{"name":"y_1","nativeSrc":"38669:3:81","nodeType":"YulTypedName","src":"38669:3:81","type":""}]},{"body":{"nativeSrc":"38718:22:81","nodeType":"YulBlock","src":"38718:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"38720:16:81","nodeType":"YulIdentifier","src":"38720:16:81"},"nativeSrc":"38720:18:81","nodeType":"YulFunctionCall","src":"38720:18:81"},"nativeSrc":"38720:18:81","nodeType":"YulExpressionStatement","src":"38720:18:81"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"38713:3:81","nodeType":"YulIdentifier","src":"38713:3:81"}],"functionName":{"name":"iszero","nativeSrc":"38706:6:81","nodeType":"YulIdentifier","src":"38706:6:81"},"nativeSrc":"38706:11:81","nodeType":"YulFunctionCall","src":"38706:11:81"},"nativeSrc":"38703:37:81","nodeType":"YulIf","src":"38703:37:81"},{"nativeSrc":"38749:33:81","nodeType":"YulAssignment","src":"38749:33:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"38762:1:81","nodeType":"YulIdentifier","src":"38762:1:81"},{"kind":"number","nativeSrc":"38765:10:81","nodeType":"YulLiteral","src":"38765:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"38758:3:81","nodeType":"YulIdentifier","src":"38758:3:81"},"nativeSrc":"38758:18:81","nodeType":"YulFunctionCall","src":"38758:18:81"},{"name":"y_1","nativeSrc":"38778:3:81","nodeType":"YulIdentifier","src":"38778:3:81"}],"functionName":{"name":"mod","nativeSrc":"38754:3:81","nodeType":"YulIdentifier","src":"38754:3:81"},"nativeSrc":"38754:28:81","nodeType":"YulFunctionCall","src":"38754:28:81"},"variableNames":[{"name":"r","nativeSrc":"38749:1:81","nodeType":"YulIdentifier","src":"38749:1:81"}]}]},"name":"mod_t_uint32","nativeSrc":"38618:170:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"38640:1:81","nodeType":"YulTypedName","src":"38640:1:81","type":""},{"name":"y","nativeSrc":"38643:1:81","nodeType":"YulTypedName","src":"38643:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"38649:1:81","nodeType":"YulTypedName","src":"38649:1:81","type":""}],"src":"38618:170:81"},{"body":{"nativeSrc":"38844:193:81","nodeType":"YulBlock","src":"38844:193:81","statements":[{"nativeSrc":"38854:62:81","nodeType":"YulVariableDeclaration","src":"38854:62:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"38881:1:81","nodeType":"YulIdentifier","src":"38881:1:81"},{"kind":"number","nativeSrc":"38884:10:81","nodeType":"YulLiteral","src":"38884:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"38877:3:81","nodeType":"YulIdentifier","src":"38877:3:81"},"nativeSrc":"38877:18:81","nodeType":"YulFunctionCall","src":"38877:18:81"},{"arguments":[{"name":"y","nativeSrc":"38901:1:81","nodeType":"YulIdentifier","src":"38901:1:81"},{"kind":"number","nativeSrc":"38904:10:81","nodeType":"YulLiteral","src":"38904:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"38897:3:81","nodeType":"YulIdentifier","src":"38897:3:81"},"nativeSrc":"38897:18:81","nodeType":"YulFunctionCall","src":"38897:18:81"}],"functionName":{"name":"mul","nativeSrc":"38873:3:81","nodeType":"YulIdentifier","src":"38873:3:81"},"nativeSrc":"38873:43:81","nodeType":"YulFunctionCall","src":"38873:43:81"},"variables":[{"name":"product_raw","nativeSrc":"38858:11:81","nodeType":"YulTypedName","src":"38858:11:81","type":""}]},{"nativeSrc":"38925:39:81","nodeType":"YulAssignment","src":"38925:39:81","value":{"arguments":[{"name":"product_raw","nativeSrc":"38940:11:81","nodeType":"YulIdentifier","src":"38940:11:81"},{"kind":"number","nativeSrc":"38953:10:81","nodeType":"YulLiteral","src":"38953:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"38936:3:81","nodeType":"YulIdentifier","src":"38936:3:81"},"nativeSrc":"38936:28:81","nodeType":"YulFunctionCall","src":"38936:28:81"},"variableNames":[{"name":"product","nativeSrc":"38925:7:81","nodeType":"YulIdentifier","src":"38925:7:81"}]},{"body":{"nativeSrc":"39009:22:81","nodeType":"YulBlock","src":"39009:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"39011:16:81","nodeType":"YulIdentifier","src":"39011:16:81"},"nativeSrc":"39011:18:81","nodeType":"YulFunctionCall","src":"39011:18:81"},"nativeSrc":"39011:18:81","nodeType":"YulExpressionStatement","src":"39011:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"product","nativeSrc":"38986:7:81","nodeType":"YulIdentifier","src":"38986:7:81"},{"name":"product_raw","nativeSrc":"38995:11:81","nodeType":"YulIdentifier","src":"38995:11:81"}],"functionName":{"name":"eq","nativeSrc":"38983:2:81","nodeType":"YulIdentifier","src":"38983:2:81"},"nativeSrc":"38983:24:81","nodeType":"YulFunctionCall","src":"38983:24:81"}],"functionName":{"name":"iszero","nativeSrc":"38976:6:81","nodeType":"YulIdentifier","src":"38976:6:81"},"nativeSrc":"38976:32:81","nodeType":"YulFunctionCall","src":"38976:32:81"},"nativeSrc":"38973:58:81","nodeType":"YulIf","src":"38973:58:81"}]},"name":"checked_mul_t_uint32","nativeSrc":"38793:244:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"38823:1:81","nodeType":"YulTypedName","src":"38823:1:81","type":""},{"name":"y","nativeSrc":"38826:1:81","nodeType":"YulTypedName","src":"38826:1:81","type":""}],"returnVariables":[{"name":"product","nativeSrc":"38832:7:81","nodeType":"YulTypedName","src":"38832:7:81","type":""}],"src":"38793:244:81"},{"body":{"nativeSrc":"39123:103:81","nodeType":"YulBlock","src":"39123:103:81","statements":[{"body":{"nativeSrc":"39169:16:81","nodeType":"YulBlock","src":"39169:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39178:1:81","nodeType":"YulLiteral","src":"39178:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"39181:1:81","nodeType":"YulLiteral","src":"39181:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39171:6:81","nodeType":"YulIdentifier","src":"39171:6:81"},"nativeSrc":"39171:12:81","nodeType":"YulFunctionCall","src":"39171:12:81"},"nativeSrc":"39171:12:81","nodeType":"YulExpressionStatement","src":"39171:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"39144:7:81","nodeType":"YulIdentifier","src":"39144:7:81"},{"name":"headStart","nativeSrc":"39153:9:81","nodeType":"YulIdentifier","src":"39153:9:81"}],"functionName":{"name":"sub","nativeSrc":"39140:3:81","nodeType":"YulIdentifier","src":"39140:3:81"},"nativeSrc":"39140:23:81","nodeType":"YulFunctionCall","src":"39140:23:81"},{"kind":"number","nativeSrc":"39165:2:81","nodeType":"YulLiteral","src":"39165:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"39136:3:81","nodeType":"YulIdentifier","src":"39136:3:81"},"nativeSrc":"39136:32:81","nodeType":"YulFunctionCall","src":"39136:32:81"},"nativeSrc":"39133:52:81","nodeType":"YulIf","src":"39133:52:81"},{"nativeSrc":"39194:26:81","nodeType":"YulAssignment","src":"39194:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"39210:9:81","nodeType":"YulIdentifier","src":"39210:9:81"}],"functionName":{"name":"mload","nativeSrc":"39204:5:81","nodeType":"YulIdentifier","src":"39204:5:81"},"nativeSrc":"39204:16:81","nodeType":"YulFunctionCall","src":"39204:16:81"},"variableNames":[{"name":"value0","nativeSrc":"39194:6:81","nodeType":"YulIdentifier","src":"39194:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"39042:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39089:9:81","nodeType":"YulTypedName","src":"39089:9:81","type":""},{"name":"dataEnd","nativeSrc":"39100:7:81","nodeType":"YulTypedName","src":"39100:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"39112:6:81","nodeType":"YulTypedName","src":"39112:6:81","type":""}],"src":"39042:184:81"},{"body":{"nativeSrc":"39360:119:81","nodeType":"YulBlock","src":"39360:119:81","statements":[{"nativeSrc":"39370:26:81","nodeType":"YulAssignment","src":"39370:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"39382:9:81","nodeType":"YulIdentifier","src":"39382:9:81"},{"kind":"number","nativeSrc":"39393:2:81","nodeType":"YulLiteral","src":"39393:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39378:3:81","nodeType":"YulIdentifier","src":"39378:3:81"},"nativeSrc":"39378:18:81","nodeType":"YulFunctionCall","src":"39378:18:81"},"variableNames":[{"name":"tail","nativeSrc":"39370:4:81","nodeType":"YulIdentifier","src":"39370:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39412:9:81","nodeType":"YulIdentifier","src":"39412:9:81"},{"name":"value0","nativeSrc":"39423:6:81","nodeType":"YulIdentifier","src":"39423:6:81"}],"functionName":{"name":"mstore","nativeSrc":"39405:6:81","nodeType":"YulIdentifier","src":"39405:6:81"},"nativeSrc":"39405:25:81","nodeType":"YulFunctionCall","src":"39405:25:81"},"nativeSrc":"39405:25:81","nodeType":"YulExpressionStatement","src":"39405:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39450:9:81","nodeType":"YulIdentifier","src":"39450:9:81"},{"kind":"number","nativeSrc":"39461:2:81","nodeType":"YulLiteral","src":"39461:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39446:3:81","nodeType":"YulIdentifier","src":"39446:3:81"},"nativeSrc":"39446:18:81","nodeType":"YulFunctionCall","src":"39446:18:81"},{"name":"value1","nativeSrc":"39466:6:81","nodeType":"YulIdentifier","src":"39466:6:81"}],"functionName":{"name":"mstore","nativeSrc":"39439:6:81","nodeType":"YulIdentifier","src":"39439:6:81"},"nativeSrc":"39439:34:81","nodeType":"YulFunctionCall","src":"39439:34:81"},"nativeSrc":"39439:34:81","nodeType":"YulExpressionStatement","src":"39439:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"39231:248:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39321:9:81","nodeType":"YulTypedName","src":"39321:9:81","type":""},{"name":"value1","nativeSrc":"39332:6:81","nodeType":"YulTypedName","src":"39332:6:81","type":""},{"name":"value0","nativeSrc":"39340:6:81","nodeType":"YulTypedName","src":"39340:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39351:4:81","nodeType":"YulTypedName","src":"39351:4:81","type":""}],"src":"39231:248:81"},{"body":{"nativeSrc":"39641:214:81","nodeType":"YulBlock","src":"39641:214:81","statements":[{"nativeSrc":"39651:26:81","nodeType":"YulAssignment","src":"39651:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"39663:9:81","nodeType":"YulIdentifier","src":"39663:9:81"},{"kind":"number","nativeSrc":"39674:2:81","nodeType":"YulLiteral","src":"39674:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39659:3:81","nodeType":"YulIdentifier","src":"39659:3:81"},"nativeSrc":"39659:18:81","nodeType":"YulFunctionCall","src":"39659:18:81"},"variableNames":[{"name":"tail","nativeSrc":"39651:4:81","nodeType":"YulIdentifier","src":"39651:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39693:9:81","nodeType":"YulIdentifier","src":"39693:9:81"},{"arguments":[{"name":"value0","nativeSrc":"39708:6:81","nodeType":"YulIdentifier","src":"39708:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39724:3:81","nodeType":"YulLiteral","src":"39724:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"39729:1:81","nodeType":"YulLiteral","src":"39729:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"39720:3:81","nodeType":"YulIdentifier","src":"39720:3:81"},"nativeSrc":"39720:11:81","nodeType":"YulFunctionCall","src":"39720:11:81"},{"kind":"number","nativeSrc":"39733:1:81","nodeType":"YulLiteral","src":"39733:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39716:3:81","nodeType":"YulIdentifier","src":"39716:3:81"},"nativeSrc":"39716:19:81","nodeType":"YulFunctionCall","src":"39716:19:81"}],"functionName":{"name":"and","nativeSrc":"39704:3:81","nodeType":"YulIdentifier","src":"39704:3:81"},"nativeSrc":"39704:32:81","nodeType":"YulFunctionCall","src":"39704:32:81"}],"functionName":{"name":"mstore","nativeSrc":"39686:6:81","nodeType":"YulIdentifier","src":"39686:6:81"},"nativeSrc":"39686:51:81","nodeType":"YulFunctionCall","src":"39686:51:81"},"nativeSrc":"39686:51:81","nodeType":"YulExpressionStatement","src":"39686:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39757:9:81","nodeType":"YulIdentifier","src":"39757:9:81"},{"kind":"number","nativeSrc":"39768:2:81","nodeType":"YulLiteral","src":"39768:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39753:3:81","nodeType":"YulIdentifier","src":"39753:3:81"},"nativeSrc":"39753:18:81","nodeType":"YulFunctionCall","src":"39753:18:81"},{"arguments":[{"name":"value1","nativeSrc":"39777:6:81","nodeType":"YulIdentifier","src":"39777:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39793:3:81","nodeType":"YulLiteral","src":"39793:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"39798:1:81","nodeType":"YulLiteral","src":"39798:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"39789:3:81","nodeType":"YulIdentifier","src":"39789:3:81"},"nativeSrc":"39789:11:81","nodeType":"YulFunctionCall","src":"39789:11:81"},{"kind":"number","nativeSrc":"39802:1:81","nodeType":"YulLiteral","src":"39802:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39785:3:81","nodeType":"YulIdentifier","src":"39785:3:81"},"nativeSrc":"39785:19:81","nodeType":"YulFunctionCall","src":"39785:19:81"}],"functionName":{"name":"and","nativeSrc":"39773:3:81","nodeType":"YulIdentifier","src":"39773:3:81"},"nativeSrc":"39773:32:81","nodeType":"YulFunctionCall","src":"39773:32:81"}],"functionName":{"name":"mstore","nativeSrc":"39746:6:81","nodeType":"YulIdentifier","src":"39746:6:81"},"nativeSrc":"39746:60:81","nodeType":"YulFunctionCall","src":"39746:60:81"},"nativeSrc":"39746:60:81","nodeType":"YulExpressionStatement","src":"39746:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39826:9:81","nodeType":"YulIdentifier","src":"39826:9:81"},{"kind":"number","nativeSrc":"39837:2:81","nodeType":"YulLiteral","src":"39837:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39822:3:81","nodeType":"YulIdentifier","src":"39822:3:81"},"nativeSrc":"39822:18:81","nodeType":"YulFunctionCall","src":"39822:18:81"},{"name":"value2","nativeSrc":"39842:6:81","nodeType":"YulIdentifier","src":"39842:6:81"}],"functionName":{"name":"mstore","nativeSrc":"39815:6:81","nodeType":"YulIdentifier","src":"39815:6:81"},"nativeSrc":"39815:34:81","nodeType":"YulFunctionCall","src":"39815:34:81"},"nativeSrc":"39815:34:81","nodeType":"YulExpressionStatement","src":"39815:34:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"39484:371:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39594:9:81","nodeType":"YulTypedName","src":"39594:9:81","type":""},{"name":"value2","nativeSrc":"39605:6:81","nodeType":"YulTypedName","src":"39605:6:81","type":""},{"name":"value1","nativeSrc":"39613:6:81","nodeType":"YulTypedName","src":"39613:6:81","type":""},{"name":"value0","nativeSrc":"39621:6:81","nodeType":"YulTypedName","src":"39621:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39632:4:81","nodeType":"YulTypedName","src":"39632:4:81","type":""}],"src":"39484:371:81"},{"body":{"nativeSrc":"39996:130:81","nodeType":"YulBlock","src":"39996:130:81","statements":[{"nativeSrc":"40006:26:81","nodeType":"YulAssignment","src":"40006:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"40018:9:81","nodeType":"YulIdentifier","src":"40018:9:81"},{"kind":"number","nativeSrc":"40029:2:81","nodeType":"YulLiteral","src":"40029:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40014:3:81","nodeType":"YulIdentifier","src":"40014:3:81"},"nativeSrc":"40014:18:81","nodeType":"YulFunctionCall","src":"40014:18:81"},"variableNames":[{"name":"tail","nativeSrc":"40006:4:81","nodeType":"YulIdentifier","src":"40006:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40048:9:81","nodeType":"YulIdentifier","src":"40048:9:81"},{"arguments":[{"name":"value0","nativeSrc":"40063:6:81","nodeType":"YulIdentifier","src":"40063:6:81"},{"kind":"number","nativeSrc":"40071:4:81","nodeType":"YulLiteral","src":"40071:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"40059:3:81","nodeType":"YulIdentifier","src":"40059:3:81"},"nativeSrc":"40059:17:81","nodeType":"YulFunctionCall","src":"40059:17:81"}],"functionName":{"name":"mstore","nativeSrc":"40041:6:81","nodeType":"YulIdentifier","src":"40041:6:81"},"nativeSrc":"40041:36:81","nodeType":"YulFunctionCall","src":"40041:36:81"},"nativeSrc":"40041:36:81","nodeType":"YulExpressionStatement","src":"40041:36:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40097:9:81","nodeType":"YulIdentifier","src":"40097:9:81"},{"kind":"number","nativeSrc":"40108:2:81","nodeType":"YulLiteral","src":"40108:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40093:3:81","nodeType":"YulIdentifier","src":"40093:3:81"},"nativeSrc":"40093:18:81","nodeType":"YulFunctionCall","src":"40093:18:81"},{"name":"value1","nativeSrc":"40113:6:81","nodeType":"YulIdentifier","src":"40113:6:81"}],"functionName":{"name":"mstore","nativeSrc":"40086:6:81","nodeType":"YulIdentifier","src":"40086:6:81"},"nativeSrc":"40086:34:81","nodeType":"YulFunctionCall","src":"40086:34:81"},"nativeSrc":"40086:34:81","nodeType":"YulExpressionStatement","src":"40086:34:81"}]},"name":"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"39860:266:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39957:9:81","nodeType":"YulTypedName","src":"39957:9:81","type":""},{"name":"value1","nativeSrc":"39968:6:81","nodeType":"YulTypedName","src":"39968:6:81","type":""},{"name":"value0","nativeSrc":"39976:6:81","nodeType":"YulTypedName","src":"39976:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39987:4:81","nodeType":"YulTypedName","src":"39987:4:81","type":""}],"src":"39860:266:81"},{"body":{"nativeSrc":"40178:89:81","nodeType":"YulBlock","src":"40178:89:81","statements":[{"body":{"nativeSrc":"40205:22:81","nodeType":"YulBlock","src":"40205:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"40207:16:81","nodeType":"YulIdentifier","src":"40207:16:81"},"nativeSrc":"40207:18:81","nodeType":"YulFunctionCall","src":"40207:18:81"},"nativeSrc":"40207:18:81","nodeType":"YulExpressionStatement","src":"40207:18:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"40198:5:81","nodeType":"YulIdentifier","src":"40198:5:81"}],"functionName":{"name":"iszero","nativeSrc":"40191:6:81","nodeType":"YulIdentifier","src":"40191:6:81"},"nativeSrc":"40191:13:81","nodeType":"YulFunctionCall","src":"40191:13:81"},"nativeSrc":"40188:39:81","nodeType":"YulIf","src":"40188:39:81"},{"nativeSrc":"40236:25:81","nodeType":"YulAssignment","src":"40236:25:81","value":{"arguments":[{"name":"value","nativeSrc":"40247:5:81","nodeType":"YulIdentifier","src":"40247:5:81"},{"arguments":[{"kind":"number","nativeSrc":"40258:1:81","nodeType":"YulLiteral","src":"40258:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40254:3:81","nodeType":"YulIdentifier","src":"40254:3:81"},"nativeSrc":"40254:6:81","nodeType":"YulFunctionCall","src":"40254:6:81"}],"functionName":{"name":"add","nativeSrc":"40243:3:81","nodeType":"YulIdentifier","src":"40243:3:81"},"nativeSrc":"40243:18:81","nodeType":"YulFunctionCall","src":"40243:18:81"},"variableNames":[{"name":"ret","nativeSrc":"40236:3:81","nodeType":"YulIdentifier","src":"40236:3:81"}]}]},"name":"decrement_t_uint256","nativeSrc":"40131:136:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"40160:5:81","nodeType":"YulTypedName","src":"40160:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"40170:3:81","nodeType":"YulTypedName","src":"40170:3:81","type":""}],"src":"40131:136:81"},{"body":{"nativeSrc":"40328:65:81","nodeType":"YulBlock","src":"40328:65:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"40345:1:81","nodeType":"YulLiteral","src":"40345:1:81","type":"","value":"0"},{"name":"ptr","nativeSrc":"40348:3:81","nodeType":"YulIdentifier","src":"40348:3:81"}],"functionName":{"name":"mstore","nativeSrc":"40338:6:81","nodeType":"YulIdentifier","src":"40338:6:81"},"nativeSrc":"40338:14:81","nodeType":"YulFunctionCall","src":"40338:14:81"},"nativeSrc":"40338:14:81","nodeType":"YulExpressionStatement","src":"40338:14:81"},{"nativeSrc":"40361:26:81","nodeType":"YulAssignment","src":"40361:26:81","value":{"arguments":[{"kind":"number","nativeSrc":"40379:1:81","nodeType":"YulLiteral","src":"40379:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"40382:4:81","nodeType":"YulLiteral","src":"40382:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"40369:9:81","nodeType":"YulIdentifier","src":"40369:9:81"},"nativeSrc":"40369:18:81","nodeType":"YulFunctionCall","src":"40369:18:81"},"variableNames":[{"name":"data","nativeSrc":"40361:4:81","nodeType":"YulIdentifier","src":"40361:4:81"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"40272:121:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"40311:3:81","nodeType":"YulTypedName","src":"40311:3:81","type":""}],"returnVariables":[{"name":"data","nativeSrc":"40319:4:81","nodeType":"YulTypedName","src":"40319:4:81","type":""}],"src":"40272:121:81"},{"body":{"nativeSrc":"40479:437:81","nodeType":"YulBlock","src":"40479:437:81","statements":[{"body":{"nativeSrc":"40512:398:81","nodeType":"YulBlock","src":"40512:398:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"40533:1:81","nodeType":"YulLiteral","src":"40533:1:81","type":"","value":"0"},{"name":"array","nativeSrc":"40536:5:81","nodeType":"YulIdentifier","src":"40536:5:81"}],"functionName":{"name":"mstore","nativeSrc":"40526:6:81","nodeType":"YulIdentifier","src":"40526:6:81"},"nativeSrc":"40526:16:81","nodeType":"YulFunctionCall","src":"40526:16:81"},"nativeSrc":"40526:16:81","nodeType":"YulExpressionStatement","src":"40526:16:81"},{"nativeSrc":"40555:30:81","nodeType":"YulVariableDeclaration","src":"40555:30:81","value":{"arguments":[{"kind":"number","nativeSrc":"40577:1:81","nodeType":"YulLiteral","src":"40577:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"40580:4:81","nodeType":"YulLiteral","src":"40580:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"40567:9:81","nodeType":"YulIdentifier","src":"40567:9:81"},"nativeSrc":"40567:18:81","nodeType":"YulFunctionCall","src":"40567:18:81"},"variables":[{"name":"data","nativeSrc":"40559:4:81","nodeType":"YulTypedName","src":"40559:4:81","type":""}]},{"nativeSrc":"40598:57:81","nodeType":"YulVariableDeclaration","src":"40598:57:81","value":{"arguments":[{"name":"data","nativeSrc":"40621:4:81","nodeType":"YulIdentifier","src":"40621:4:81"},{"arguments":[{"kind":"number","nativeSrc":"40631:1:81","nodeType":"YulLiteral","src":"40631:1:81","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"40638:10:81","nodeType":"YulIdentifier","src":"40638:10:81"},{"kind":"number","nativeSrc":"40650:2:81","nodeType":"YulLiteral","src":"40650:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"40634:3:81","nodeType":"YulIdentifier","src":"40634:3:81"},"nativeSrc":"40634:19:81","nodeType":"YulFunctionCall","src":"40634:19:81"}],"functionName":{"name":"shr","nativeSrc":"40627:3:81","nodeType":"YulIdentifier","src":"40627:3:81"},"nativeSrc":"40627:27:81","nodeType":"YulFunctionCall","src":"40627:27:81"}],"functionName":{"name":"add","nativeSrc":"40617:3:81","nodeType":"YulIdentifier","src":"40617:3:81"},"nativeSrc":"40617:38:81","nodeType":"YulFunctionCall","src":"40617:38:81"},"variables":[{"name":"deleteStart","nativeSrc":"40602:11:81","nodeType":"YulTypedName","src":"40602:11:81","type":""}]},{"body":{"nativeSrc":"40692:23:81","nodeType":"YulBlock","src":"40692:23:81","statements":[{"nativeSrc":"40694:19:81","nodeType":"YulAssignment","src":"40694:19:81","value":{"name":"data","nativeSrc":"40709:4:81","nodeType":"YulIdentifier","src":"40709:4:81"},"variableNames":[{"name":"deleteStart","nativeSrc":"40694:11:81","nodeType":"YulIdentifier","src":"40694:11:81"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"40674:10:81","nodeType":"YulIdentifier","src":"40674:10:81"},{"kind":"number","nativeSrc":"40686:4:81","nodeType":"YulLiteral","src":"40686:4:81","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"40671:2:81","nodeType":"YulIdentifier","src":"40671:2:81"},"nativeSrc":"40671:20:81","nodeType":"YulFunctionCall","src":"40671:20:81"},"nativeSrc":"40668:47:81","nodeType":"YulIf","src":"40668:47:81"},{"nativeSrc":"40728:41:81","nodeType":"YulVariableDeclaration","src":"40728:41:81","value":{"arguments":[{"name":"data","nativeSrc":"40742:4:81","nodeType":"YulIdentifier","src":"40742:4:81"},{"arguments":[{"kind":"number","nativeSrc":"40752:1:81","nodeType":"YulLiteral","src":"40752:1:81","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"40759:3:81","nodeType":"YulIdentifier","src":"40759:3:81"},{"kind":"number","nativeSrc":"40764:2:81","nodeType":"YulLiteral","src":"40764:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"40755:3:81","nodeType":"YulIdentifier","src":"40755:3:81"},"nativeSrc":"40755:12:81","nodeType":"YulFunctionCall","src":"40755:12:81"}],"functionName":{"name":"shr","nativeSrc":"40748:3:81","nodeType":"YulIdentifier","src":"40748:3:81"},"nativeSrc":"40748:20:81","nodeType":"YulFunctionCall","src":"40748:20:81"}],"functionName":{"name":"add","nativeSrc":"40738:3:81","nodeType":"YulIdentifier","src":"40738:3:81"},"nativeSrc":"40738:31:81","nodeType":"YulFunctionCall","src":"40738:31:81"},"variables":[{"name":"_1","nativeSrc":"40732:2:81","nodeType":"YulTypedName","src":"40732:2:81","type":""}]},{"nativeSrc":"40782:24:81","nodeType":"YulVariableDeclaration","src":"40782:24:81","value":{"name":"deleteStart","nativeSrc":"40795:11:81","nodeType":"YulIdentifier","src":"40795:11:81"},"variables":[{"name":"start","nativeSrc":"40786:5:81","nodeType":"YulTypedName","src":"40786:5:81","type":""}]},{"body":{"nativeSrc":"40880:20:81","nodeType":"YulBlock","src":"40880:20:81","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"40889:5:81","nodeType":"YulIdentifier","src":"40889:5:81"},{"kind":"number","nativeSrc":"40896:1:81","nodeType":"YulLiteral","src":"40896:1:81","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"40882:6:81","nodeType":"YulIdentifier","src":"40882:6:81"},"nativeSrc":"40882:16:81","nodeType":"YulFunctionCall","src":"40882:16:81"},"nativeSrc":"40882:16:81","nodeType":"YulExpressionStatement","src":"40882:16:81"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"40830:5:81","nodeType":"YulIdentifier","src":"40830:5:81"},{"name":"_1","nativeSrc":"40837:2:81","nodeType":"YulIdentifier","src":"40837:2:81"}],"functionName":{"name":"lt","nativeSrc":"40827:2:81","nodeType":"YulIdentifier","src":"40827:2:81"},"nativeSrc":"40827:13:81","nodeType":"YulFunctionCall","src":"40827:13:81"},"nativeSrc":"40819:81:81","nodeType":"YulForLoop","post":{"nativeSrc":"40841:26:81","nodeType":"YulBlock","src":"40841:26:81","statements":[{"nativeSrc":"40843:22:81","nodeType":"YulAssignment","src":"40843:22:81","value":{"arguments":[{"name":"start","nativeSrc":"40856:5:81","nodeType":"YulIdentifier","src":"40856:5:81"},{"kind":"number","nativeSrc":"40863:1:81","nodeType":"YulLiteral","src":"40863:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"40852:3:81","nodeType":"YulIdentifier","src":"40852:3:81"},"nativeSrc":"40852:13:81","nodeType":"YulFunctionCall","src":"40852:13:81"},"variableNames":[{"name":"start","nativeSrc":"40843:5:81","nodeType":"YulIdentifier","src":"40843:5:81"}]}]},"pre":{"nativeSrc":"40823:3:81","nodeType":"YulBlock","src":"40823:3:81","statements":[]},"src":"40819:81:81"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"40495:3:81","nodeType":"YulIdentifier","src":"40495:3:81"},{"kind":"number","nativeSrc":"40500:2:81","nodeType":"YulLiteral","src":"40500:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"40492:2:81","nodeType":"YulIdentifier","src":"40492:2:81"},"nativeSrc":"40492:11:81","nodeType":"YulFunctionCall","src":"40492:11:81"},"nativeSrc":"40489:421:81","nodeType":"YulIf","src":"40489:421:81"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"40398:518:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"40451:5:81","nodeType":"YulTypedName","src":"40451:5:81","type":""},{"name":"len","nativeSrc":"40458:3:81","nodeType":"YulTypedName","src":"40458:3:81","type":""},{"name":"startIndex","nativeSrc":"40463:10:81","nodeType":"YulTypedName","src":"40463:10:81","type":""}],"src":"40398:518:81"},{"body":{"nativeSrc":"41006:81:81","nodeType":"YulBlock","src":"41006:81:81","statements":[{"nativeSrc":"41016:65:81","nodeType":"YulAssignment","src":"41016:65:81","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"41031:4:81","nodeType":"YulIdentifier","src":"41031:4:81"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41049:1:81","nodeType":"YulLiteral","src":"41049:1:81","type":"","value":"3"},{"name":"len","nativeSrc":"41052:3:81","nodeType":"YulIdentifier","src":"41052:3:81"}],"functionName":{"name":"shl","nativeSrc":"41045:3:81","nodeType":"YulIdentifier","src":"41045:3:81"},"nativeSrc":"41045:11:81","nodeType":"YulFunctionCall","src":"41045:11:81"},{"arguments":[{"kind":"number","nativeSrc":"41062:1:81","nodeType":"YulLiteral","src":"41062:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41058:3:81","nodeType":"YulIdentifier","src":"41058:3:81"},"nativeSrc":"41058:6:81","nodeType":"YulFunctionCall","src":"41058:6:81"}],"functionName":{"name":"shr","nativeSrc":"41041:3:81","nodeType":"YulIdentifier","src":"41041:3:81"},"nativeSrc":"41041:24:81","nodeType":"YulFunctionCall","src":"41041:24:81"}],"functionName":{"name":"not","nativeSrc":"41037:3:81","nodeType":"YulIdentifier","src":"41037:3:81"},"nativeSrc":"41037:29:81","nodeType":"YulFunctionCall","src":"41037:29:81"}],"functionName":{"name":"and","nativeSrc":"41027:3:81","nodeType":"YulIdentifier","src":"41027:3:81"},"nativeSrc":"41027:40:81","nodeType":"YulFunctionCall","src":"41027:40:81"},{"arguments":[{"kind":"number","nativeSrc":"41073:1:81","nodeType":"YulLiteral","src":"41073:1:81","type":"","value":"1"},{"name":"len","nativeSrc":"41076:3:81","nodeType":"YulIdentifier","src":"41076:3:81"}],"functionName":{"name":"shl","nativeSrc":"41069:3:81","nodeType":"YulIdentifier","src":"41069:3:81"},"nativeSrc":"41069:11:81","nodeType":"YulFunctionCall","src":"41069:11:81"}],"functionName":{"name":"or","nativeSrc":"41024:2:81","nodeType":"YulIdentifier","src":"41024:2:81"},"nativeSrc":"41024:57:81","nodeType":"YulFunctionCall","src":"41024:57:81"},"variableNames":[{"name":"used","nativeSrc":"41016:4:81","nodeType":"YulIdentifier","src":"41016:4:81"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"40921:166:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"40983:4:81","nodeType":"YulTypedName","src":"40983:4:81","type":""},{"name":"len","nativeSrc":"40989:3:81","nodeType":"YulTypedName","src":"40989:3:81","type":""}],"returnVariables":[{"name":"used","nativeSrc":"40997:4:81","nodeType":"YulTypedName","src":"40997:4:81","type":""}],"src":"40921:166:81"},{"body":{"nativeSrc":"41188:1203:81","nodeType":"YulBlock","src":"41188:1203:81","statements":[{"nativeSrc":"41198:24:81","nodeType":"YulVariableDeclaration","src":"41198:24:81","value":{"arguments":[{"name":"src","nativeSrc":"41218:3:81","nodeType":"YulIdentifier","src":"41218:3:81"}],"functionName":{"name":"mload","nativeSrc":"41212:5:81","nodeType":"YulIdentifier","src":"41212:5:81"},"nativeSrc":"41212:10:81","nodeType":"YulFunctionCall","src":"41212:10:81"},"variables":[{"name":"newLen","nativeSrc":"41202:6:81","nodeType":"YulTypedName","src":"41202:6:81","type":""}]},{"body":{"nativeSrc":"41265:22:81","nodeType":"YulBlock","src":"41265:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"41267:16:81","nodeType":"YulIdentifier","src":"41267:16:81"},"nativeSrc":"41267:18:81","nodeType":"YulFunctionCall","src":"41267:18:81"},"nativeSrc":"41267:18:81","nodeType":"YulExpressionStatement","src":"41267:18:81"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"41237:6:81","nodeType":"YulIdentifier","src":"41237:6:81"},{"kind":"number","nativeSrc":"41245:18:81","nodeType":"YulLiteral","src":"41245:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"41234:2:81","nodeType":"YulIdentifier","src":"41234:2:81"},"nativeSrc":"41234:30:81","nodeType":"YulFunctionCall","src":"41234:30:81"},"nativeSrc":"41231:56:81","nodeType":"YulIf","src":"41231:56:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41340:4:81","nodeType":"YulIdentifier","src":"41340:4:81"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"41378:4:81","nodeType":"YulIdentifier","src":"41378:4:81"}],"functionName":{"name":"sload","nativeSrc":"41372:5:81","nodeType":"YulIdentifier","src":"41372:5:81"},"nativeSrc":"41372:11:81","nodeType":"YulFunctionCall","src":"41372:11:81"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"41346:25:81","nodeType":"YulIdentifier","src":"41346:25:81"},"nativeSrc":"41346:38:81","nodeType":"YulFunctionCall","src":"41346:38:81"},{"name":"newLen","nativeSrc":"41386:6:81","nodeType":"YulIdentifier","src":"41386:6:81"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"41296:43:81","nodeType":"YulIdentifier","src":"41296:43:81"},"nativeSrc":"41296:97:81","nodeType":"YulFunctionCall","src":"41296:97:81"},"nativeSrc":"41296:97:81","nodeType":"YulExpressionStatement","src":"41296:97:81"},{"nativeSrc":"41402:18:81","nodeType":"YulVariableDeclaration","src":"41402:18:81","value":{"kind":"number","nativeSrc":"41419:1:81","nodeType":"YulLiteral","src":"41419:1:81","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"41406:9:81","nodeType":"YulTypedName","src":"41406:9:81","type":""}]},{"nativeSrc":"41429:17:81","nodeType":"YulAssignment","src":"41429:17:81","value":{"kind":"number","nativeSrc":"41442:4:81","nodeType":"YulLiteral","src":"41442:4:81","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"41429:9:81","nodeType":"YulIdentifier","src":"41429:9:81"}]},{"cases":[{"body":{"nativeSrc":"41492:642:81","nodeType":"YulBlock","src":"41492:642:81","statements":[{"nativeSrc":"41506:35:81","nodeType":"YulVariableDeclaration","src":"41506:35:81","value":{"arguments":[{"name":"newLen","nativeSrc":"41525:6:81","nodeType":"YulIdentifier","src":"41525:6:81"},{"arguments":[{"kind":"number","nativeSrc":"41537:2:81","nodeType":"YulLiteral","src":"41537:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"41533:3:81","nodeType":"YulIdentifier","src":"41533:3:81"},"nativeSrc":"41533:7:81","nodeType":"YulFunctionCall","src":"41533:7:81"}],"functionName":{"name":"and","nativeSrc":"41521:3:81","nodeType":"YulIdentifier","src":"41521:3:81"},"nativeSrc":"41521:20:81","nodeType":"YulFunctionCall","src":"41521:20:81"},"variables":[{"name":"loopEnd","nativeSrc":"41510:7:81","nodeType":"YulTypedName","src":"41510:7:81","type":""}]},{"nativeSrc":"41554:49:81","nodeType":"YulVariableDeclaration","src":"41554:49:81","value":{"arguments":[{"name":"slot","nativeSrc":"41598:4:81","nodeType":"YulIdentifier","src":"41598:4:81"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"41568:29:81","nodeType":"YulIdentifier","src":"41568:29:81"},"nativeSrc":"41568:35:81","nodeType":"YulFunctionCall","src":"41568:35:81"},"variables":[{"name":"dstPtr","nativeSrc":"41558:6:81","nodeType":"YulTypedName","src":"41558:6:81","type":""}]},{"nativeSrc":"41616:10:81","nodeType":"YulVariableDeclaration","src":"41616:10:81","value":{"kind":"number","nativeSrc":"41625:1:81","nodeType":"YulLiteral","src":"41625:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"41620:1:81","nodeType":"YulTypedName","src":"41620:1:81","type":""}]},{"body":{"nativeSrc":"41696:165:81","nodeType":"YulBlock","src":"41696:165:81","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41721:6:81","nodeType":"YulIdentifier","src":"41721:6:81"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41739:3:81","nodeType":"YulIdentifier","src":"41739:3:81"},{"name":"srcOffset","nativeSrc":"41744:9:81","nodeType":"YulIdentifier","src":"41744:9:81"}],"functionName":{"name":"add","nativeSrc":"41735:3:81","nodeType":"YulIdentifier","src":"41735:3:81"},"nativeSrc":"41735:19:81","nodeType":"YulFunctionCall","src":"41735:19:81"}],"functionName":{"name":"mload","nativeSrc":"41729:5:81","nodeType":"YulIdentifier","src":"41729:5:81"},"nativeSrc":"41729:26:81","nodeType":"YulFunctionCall","src":"41729:26:81"}],"functionName":{"name":"sstore","nativeSrc":"41714:6:81","nodeType":"YulIdentifier","src":"41714:6:81"},"nativeSrc":"41714:42:81","nodeType":"YulFunctionCall","src":"41714:42:81"},"nativeSrc":"41714:42:81","nodeType":"YulExpressionStatement","src":"41714:42:81"},{"nativeSrc":"41773:24:81","nodeType":"YulAssignment","src":"41773:24:81","value":{"arguments":[{"name":"dstPtr","nativeSrc":"41787:6:81","nodeType":"YulIdentifier","src":"41787:6:81"},{"kind":"number","nativeSrc":"41795:1:81","nodeType":"YulLiteral","src":"41795:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41783:3:81","nodeType":"YulIdentifier","src":"41783:3:81"},"nativeSrc":"41783:14:81","nodeType":"YulFunctionCall","src":"41783:14:81"},"variableNames":[{"name":"dstPtr","nativeSrc":"41773:6:81","nodeType":"YulIdentifier","src":"41773:6:81"}]},{"nativeSrc":"41814:33:81","nodeType":"YulAssignment","src":"41814:33:81","value":{"arguments":[{"name":"srcOffset","nativeSrc":"41831:9:81","nodeType":"YulIdentifier","src":"41831:9:81"},{"kind":"number","nativeSrc":"41842:4:81","nodeType":"YulLiteral","src":"41842:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41827:3:81","nodeType":"YulIdentifier","src":"41827:3:81"},"nativeSrc":"41827:20:81","nodeType":"YulFunctionCall","src":"41827:20:81"},"variableNames":[{"name":"srcOffset","nativeSrc":"41814:9:81","nodeType":"YulIdentifier","src":"41814:9:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"41650:1:81","nodeType":"YulIdentifier","src":"41650:1:81"},{"name":"loopEnd","nativeSrc":"41653:7:81","nodeType":"YulIdentifier","src":"41653:7:81"}],"functionName":{"name":"lt","nativeSrc":"41647:2:81","nodeType":"YulIdentifier","src":"41647:2:81"},"nativeSrc":"41647:14:81","nodeType":"YulFunctionCall","src":"41647:14:81"},"nativeSrc":"41639:222:81","nodeType":"YulForLoop","post":{"nativeSrc":"41662:21:81","nodeType":"YulBlock","src":"41662:21:81","statements":[{"nativeSrc":"41664:17:81","nodeType":"YulAssignment","src":"41664:17:81","value":{"arguments":[{"name":"i","nativeSrc":"41673:1:81","nodeType":"YulIdentifier","src":"41673:1:81"},{"kind":"number","nativeSrc":"41676:4:81","nodeType":"YulLiteral","src":"41676:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41669:3:81","nodeType":"YulIdentifier","src":"41669:3:81"},"nativeSrc":"41669:12:81","nodeType":"YulFunctionCall","src":"41669:12:81"},"variableNames":[{"name":"i","nativeSrc":"41664:1:81","nodeType":"YulIdentifier","src":"41664:1:81"}]}]},"pre":{"nativeSrc":"41643:3:81","nodeType":"YulBlock","src":"41643:3:81","statements":[]},"src":"41639:222:81"},{"body":{"nativeSrc":"41909:166:81","nodeType":"YulBlock","src":"41909:166:81","statements":[{"nativeSrc":"41927:43:81","nodeType":"YulVariableDeclaration","src":"41927:43:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41954:3:81","nodeType":"YulIdentifier","src":"41954:3:81"},{"name":"srcOffset","nativeSrc":"41959:9:81","nodeType":"YulIdentifier","src":"41959:9:81"}],"functionName":{"name":"add","nativeSrc":"41950:3:81","nodeType":"YulIdentifier","src":"41950:3:81"},"nativeSrc":"41950:19:81","nodeType":"YulFunctionCall","src":"41950:19:81"}],"functionName":{"name":"mload","nativeSrc":"41944:5:81","nodeType":"YulIdentifier","src":"41944:5:81"},"nativeSrc":"41944:26:81","nodeType":"YulFunctionCall","src":"41944:26:81"},"variables":[{"name":"lastValue","nativeSrc":"41931:9:81","nodeType":"YulTypedName","src":"41931:9:81","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41994:6:81","nodeType":"YulIdentifier","src":"41994:6:81"},{"arguments":[{"name":"lastValue","nativeSrc":"42006:9:81","nodeType":"YulIdentifier","src":"42006:9:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42033:1:81","nodeType":"YulLiteral","src":"42033:1:81","type":"","value":"3"},{"name":"newLen","nativeSrc":"42036:6:81","nodeType":"YulIdentifier","src":"42036:6:81"}],"functionName":{"name":"shl","nativeSrc":"42029:3:81","nodeType":"YulIdentifier","src":"42029:3:81"},"nativeSrc":"42029:14:81","nodeType":"YulFunctionCall","src":"42029:14:81"},{"kind":"number","nativeSrc":"42045:3:81","nodeType":"YulLiteral","src":"42045:3:81","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"42025:3:81","nodeType":"YulIdentifier","src":"42025:3:81"},"nativeSrc":"42025:24:81","nodeType":"YulFunctionCall","src":"42025:24:81"},{"arguments":[{"kind":"number","nativeSrc":"42055:1:81","nodeType":"YulLiteral","src":"42055:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42051:3:81","nodeType":"YulIdentifier","src":"42051:3:81"},"nativeSrc":"42051:6:81","nodeType":"YulFunctionCall","src":"42051:6:81"}],"functionName":{"name":"shr","nativeSrc":"42021:3:81","nodeType":"YulIdentifier","src":"42021:3:81"},"nativeSrc":"42021:37:81","nodeType":"YulFunctionCall","src":"42021:37:81"}],"functionName":{"name":"not","nativeSrc":"42017:3:81","nodeType":"YulIdentifier","src":"42017:3:81"},"nativeSrc":"42017:42:81","nodeType":"YulFunctionCall","src":"42017:42:81"}],"functionName":{"name":"and","nativeSrc":"42002:3:81","nodeType":"YulIdentifier","src":"42002:3:81"},"nativeSrc":"42002:58:81","nodeType":"YulFunctionCall","src":"42002:58:81"}],"functionName":{"name":"sstore","nativeSrc":"41987:6:81","nodeType":"YulIdentifier","src":"41987:6:81"},"nativeSrc":"41987:74:81","nodeType":"YulFunctionCall","src":"41987:74:81"},"nativeSrc":"41987:74:81","nodeType":"YulExpressionStatement","src":"41987:74:81"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"41880:7:81","nodeType":"YulIdentifier","src":"41880:7:81"},{"name":"newLen","nativeSrc":"41889:6:81","nodeType":"YulIdentifier","src":"41889:6:81"}],"functionName":{"name":"lt","nativeSrc":"41877:2:81","nodeType":"YulIdentifier","src":"41877:2:81"},"nativeSrc":"41877:19:81","nodeType":"YulFunctionCall","src":"41877:19:81"},"nativeSrc":"41874:201:81","nodeType":"YulIf","src":"41874:201:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"42095:4:81","nodeType":"YulIdentifier","src":"42095:4:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42109:1:81","nodeType":"YulLiteral","src":"42109:1:81","type":"","value":"1"},{"name":"newLen","nativeSrc":"42112:6:81","nodeType":"YulIdentifier","src":"42112:6:81"}],"functionName":{"name":"shl","nativeSrc":"42105:3:81","nodeType":"YulIdentifier","src":"42105:3:81"},"nativeSrc":"42105:14:81","nodeType":"YulFunctionCall","src":"42105:14:81"},{"kind":"number","nativeSrc":"42121:1:81","nodeType":"YulLiteral","src":"42121:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"42101:3:81","nodeType":"YulIdentifier","src":"42101:3:81"},"nativeSrc":"42101:22:81","nodeType":"YulFunctionCall","src":"42101:22:81"}],"functionName":{"name":"sstore","nativeSrc":"42088:6:81","nodeType":"YulIdentifier","src":"42088:6:81"},"nativeSrc":"42088:36:81","nodeType":"YulFunctionCall","src":"42088:36:81"},"nativeSrc":"42088:36:81","nodeType":"YulExpressionStatement","src":"42088:36:81"}]},"nativeSrc":"41485:649:81","nodeType":"YulCase","src":"41485:649:81","value":{"kind":"number","nativeSrc":"41490:1:81","nodeType":"YulLiteral","src":"41490:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"42151:234:81","nodeType":"YulBlock","src":"42151:234:81","statements":[{"nativeSrc":"42165:14:81","nodeType":"YulVariableDeclaration","src":"42165:14:81","value":{"kind":"number","nativeSrc":"42178:1:81","nodeType":"YulLiteral","src":"42178:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"42169:5:81","nodeType":"YulTypedName","src":"42169:5:81","type":""}]},{"body":{"nativeSrc":"42214:67:81","nodeType":"YulBlock","src":"42214:67:81","statements":[{"nativeSrc":"42232:35:81","nodeType":"YulAssignment","src":"42232:35:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"42251:3:81","nodeType":"YulIdentifier","src":"42251:3:81"},{"name":"srcOffset","nativeSrc":"42256:9:81","nodeType":"YulIdentifier","src":"42256:9:81"}],"functionName":{"name":"add","nativeSrc":"42247:3:81","nodeType":"YulIdentifier","src":"42247:3:81"},"nativeSrc":"42247:19:81","nodeType":"YulFunctionCall","src":"42247:19:81"}],"functionName":{"name":"mload","nativeSrc":"42241:5:81","nodeType":"YulIdentifier","src":"42241:5:81"},"nativeSrc":"42241:26:81","nodeType":"YulFunctionCall","src":"42241:26:81"},"variableNames":[{"name":"value","nativeSrc":"42232:5:81","nodeType":"YulIdentifier","src":"42232:5:81"}]}]},"condition":{"name":"newLen","nativeSrc":"42195:6:81","nodeType":"YulIdentifier","src":"42195:6:81"},"nativeSrc":"42192:89:81","nodeType":"YulIf","src":"42192:89:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"42301:4:81","nodeType":"YulIdentifier","src":"42301:4:81"},{"arguments":[{"name":"value","nativeSrc":"42360:5:81","nodeType":"YulIdentifier","src":"42360:5:81"},{"name":"newLen","nativeSrc":"42367:6:81","nodeType":"YulIdentifier","src":"42367:6:81"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"42307:52:81","nodeType":"YulIdentifier","src":"42307:52:81"},"nativeSrc":"42307:67:81","nodeType":"YulFunctionCall","src":"42307:67:81"}],"functionName":{"name":"sstore","nativeSrc":"42294:6:81","nodeType":"YulIdentifier","src":"42294:6:81"},"nativeSrc":"42294:81:81","nodeType":"YulFunctionCall","src":"42294:81:81"},"nativeSrc":"42294:81:81","nodeType":"YulExpressionStatement","src":"42294:81:81"}]},"nativeSrc":"42143:242:81","nodeType":"YulCase","src":"42143:242:81","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"41465:6:81","nodeType":"YulIdentifier","src":"41465:6:81"},{"kind":"number","nativeSrc":"41473:2:81","nodeType":"YulLiteral","src":"41473:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"41462:2:81","nodeType":"YulIdentifier","src":"41462:2:81"},"nativeSrc":"41462:14:81","nodeType":"YulFunctionCall","src":"41462:14:81"},"nativeSrc":"41455:930:81","nodeType":"YulSwitch","src":"41455:930:81"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"41092:1299:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"41173:4:81","nodeType":"YulTypedName","src":"41173:4:81","type":""},{"name":"src","nativeSrc":"41179:3:81","nodeType":"YulTypedName","src":"41179:3:81","type":""}],"src":"41092:1299:81"},{"body":{"nativeSrc":"42497:273:81","nodeType":"YulBlock","src":"42497:273:81","statements":[{"nativeSrc":"42507:29:81","nodeType":"YulVariableDeclaration","src":"42507:29:81","value":{"arguments":[{"name":"array","nativeSrc":"42530:5:81","nodeType":"YulIdentifier","src":"42530:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"42517:12:81","nodeType":"YulIdentifier","src":"42517:12:81"},"nativeSrc":"42517:19:81","nodeType":"YulFunctionCall","src":"42517:19:81"},"variables":[{"name":"_1","nativeSrc":"42511:2:81","nodeType":"YulTypedName","src":"42511:2:81","type":""}]},{"nativeSrc":"42545:49:81","nodeType":"YulAssignment","src":"42545:49:81","value":{"arguments":[{"name":"_1","nativeSrc":"42558:2:81","nodeType":"YulIdentifier","src":"42558:2:81"},{"arguments":[{"kind":"number","nativeSrc":"42566:26:81","nodeType":"YulLiteral","src":"42566:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"42562:3:81","nodeType":"YulIdentifier","src":"42562:3:81"},"nativeSrc":"42562:31:81","nodeType":"YulFunctionCall","src":"42562:31:81"}],"functionName":{"name":"and","nativeSrc":"42554:3:81","nodeType":"YulIdentifier","src":"42554:3:81"},"nativeSrc":"42554:40:81","nodeType":"YulFunctionCall","src":"42554:40:81"},"variableNames":[{"name":"value","nativeSrc":"42545:5:81","nodeType":"YulIdentifier","src":"42545:5:81"}]},{"body":{"nativeSrc":"42626:138:81","nodeType":"YulBlock","src":"42626:138:81","statements":[{"nativeSrc":"42640:114:81","nodeType":"YulAssignment","src":"42640:114:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"42657:2:81","nodeType":"YulIdentifier","src":"42657:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42669:1:81","nodeType":"YulLiteral","src":"42669:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"42676:2:81","nodeType":"YulLiteral","src":"42676:2:81","type":"","value":"20"},{"name":"len","nativeSrc":"42680:3:81","nodeType":"YulIdentifier","src":"42680:3:81"}],"functionName":{"name":"sub","nativeSrc":"42672:3:81","nodeType":"YulIdentifier","src":"42672:3:81"},"nativeSrc":"42672:12:81","nodeType":"YulFunctionCall","src":"42672:12:81"}],"functionName":{"name":"shl","nativeSrc":"42665:3:81","nodeType":"YulIdentifier","src":"42665:3:81"},"nativeSrc":"42665:20:81","nodeType":"YulFunctionCall","src":"42665:20:81"},{"arguments":[{"kind":"number","nativeSrc":"42691:26:81","nodeType":"YulLiteral","src":"42691:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"42687:3:81","nodeType":"YulIdentifier","src":"42687:3:81"},"nativeSrc":"42687:31:81","nodeType":"YulFunctionCall","src":"42687:31:81"}],"functionName":{"name":"shl","nativeSrc":"42661:3:81","nodeType":"YulIdentifier","src":"42661:3:81"},"nativeSrc":"42661:58:81","nodeType":"YulFunctionCall","src":"42661:58:81"}],"functionName":{"name":"and","nativeSrc":"42653:3:81","nodeType":"YulIdentifier","src":"42653:3:81"},"nativeSrc":"42653:67:81","nodeType":"YulFunctionCall","src":"42653:67:81"},{"arguments":[{"kind":"number","nativeSrc":"42726:26:81","nodeType":"YulLiteral","src":"42726:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"42722:3:81","nodeType":"YulIdentifier","src":"42722:3:81"},"nativeSrc":"42722:31:81","nodeType":"YulFunctionCall","src":"42722:31:81"}],"functionName":{"name":"and","nativeSrc":"42649:3:81","nodeType":"YulIdentifier","src":"42649:3:81"},"nativeSrc":"42649:105:81","nodeType":"YulFunctionCall","src":"42649:105:81"},"variableNames":[{"name":"value","nativeSrc":"42640:5:81","nodeType":"YulIdentifier","src":"42640:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"42609:3:81","nodeType":"YulIdentifier","src":"42609:3:81"},{"kind":"number","nativeSrc":"42614:2:81","nodeType":"YulLiteral","src":"42614:2:81","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"42606:2:81","nodeType":"YulIdentifier","src":"42606:2:81"},"nativeSrc":"42606:11:81","nodeType":"YulFunctionCall","src":"42606:11:81"},"nativeSrc":"42603:161:81","nodeType":"YulIf","src":"42603:161:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"42396:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"42472:5:81","nodeType":"YulTypedName","src":"42472:5:81","type":""},{"name":"len","nativeSrc":"42479:3:81","nodeType":"YulTypedName","src":"42479:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"42487:5:81","nodeType":"YulTypedName","src":"42487:5:81","type":""}],"src":"42396:374:81"},{"body":{"nativeSrc":"42912:164:81","nodeType":"YulBlock","src":"42912:164:81","statements":[{"nativeSrc":"42922:27:81","nodeType":"YulVariableDeclaration","src":"42922:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"42942:6:81","nodeType":"YulIdentifier","src":"42942:6:81"}],"functionName":{"name":"mload","nativeSrc":"42936:5:81","nodeType":"YulIdentifier","src":"42936:5:81"},"nativeSrc":"42936:13:81","nodeType":"YulFunctionCall","src":"42936:13:81"},"variables":[{"name":"length","nativeSrc":"42926:6:81","nodeType":"YulTypedName","src":"42926:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"42964:3:81","nodeType":"YulIdentifier","src":"42964:3:81"},{"arguments":[{"name":"value0","nativeSrc":"42973:6:81","nodeType":"YulIdentifier","src":"42973:6:81"},{"kind":"number","nativeSrc":"42981:4:81","nodeType":"YulLiteral","src":"42981:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"42969:3:81","nodeType":"YulIdentifier","src":"42969:3:81"},"nativeSrc":"42969:17:81","nodeType":"YulFunctionCall","src":"42969:17:81"},{"name":"length","nativeSrc":"42988:6:81","nodeType":"YulIdentifier","src":"42988:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"42958:5:81","nodeType":"YulIdentifier","src":"42958:5:81"},"nativeSrc":"42958:37:81","nodeType":"YulFunctionCall","src":"42958:37:81"},"nativeSrc":"42958:37:81","nodeType":"YulExpressionStatement","src":"42958:37:81"},{"nativeSrc":"43004:26:81","nodeType":"YulVariableDeclaration","src":"43004:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"43018:3:81","nodeType":"YulIdentifier","src":"43018:3:81"},{"name":"length","nativeSrc":"43023:6:81","nodeType":"YulIdentifier","src":"43023:6:81"}],"functionName":{"name":"add","nativeSrc":"43014:3:81","nodeType":"YulIdentifier","src":"43014:3:81"},"nativeSrc":"43014:16:81","nodeType":"YulFunctionCall","src":"43014:16:81"},"variables":[{"name":"_1","nativeSrc":"43008:2:81","nodeType":"YulTypedName","src":"43008:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"43046:2:81","nodeType":"YulIdentifier","src":"43046:2:81"},{"kind":"number","nativeSrc":"43050:1:81","nodeType":"YulLiteral","src":"43050:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"43039:6:81","nodeType":"YulIdentifier","src":"43039:6:81"},"nativeSrc":"43039:13:81","nodeType":"YulFunctionCall","src":"43039:13:81"},"nativeSrc":"43039:13:81","nodeType":"YulExpressionStatement","src":"43039:13:81"},{"nativeSrc":"43061:9:81","nodeType":"YulAssignment","src":"43061:9:81","value":{"name":"_1","nativeSrc":"43068:2:81","nodeType":"YulIdentifier","src":"43068:2:81"},"variableNames":[{"name":"end","nativeSrc":"43061:3:81","nodeType":"YulIdentifier","src":"43061:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"42775:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"42888:3:81","nodeType":"YulTypedName","src":"42888:3:81","type":""},{"name":"value0","nativeSrc":"42893:6:81","nodeType":"YulTypedName","src":"42893:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"42904:3:81","nodeType":"YulTypedName","src":"42904:3:81","type":""}],"src":"42775:301:81"},{"body":{"nativeSrc":"43117:121:81","nodeType":"YulBlock","src":"43117:121:81","statements":[{"nativeSrc":"43127:23:81","nodeType":"YulVariableDeclaration","src":"43127:23:81","value":{"arguments":[{"name":"y","nativeSrc":"43142:1:81","nodeType":"YulIdentifier","src":"43142:1:81"},{"kind":"number","nativeSrc":"43145:4:81","nodeType":"YulLiteral","src":"43145:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"43138:3:81","nodeType":"YulIdentifier","src":"43138:3:81"},"nativeSrc":"43138:12:81","nodeType":"YulFunctionCall","src":"43138:12:81"},"variables":[{"name":"y_1","nativeSrc":"43131:3:81","nodeType":"YulTypedName","src":"43131:3:81","type":""}]},{"body":{"nativeSrc":"43174:22:81","nodeType":"YulBlock","src":"43174:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"43176:16:81","nodeType":"YulIdentifier","src":"43176:16:81"},"nativeSrc":"43176:18:81","nodeType":"YulFunctionCall","src":"43176:18:81"},"nativeSrc":"43176:18:81","nodeType":"YulExpressionStatement","src":"43176:18:81"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"43169:3:81","nodeType":"YulIdentifier","src":"43169:3:81"}],"functionName":{"name":"iszero","nativeSrc":"43162:6:81","nodeType":"YulIdentifier","src":"43162:6:81"},"nativeSrc":"43162:11:81","nodeType":"YulFunctionCall","src":"43162:11:81"},"nativeSrc":"43159:37:81","nodeType":"YulIf","src":"43159:37:81"},{"nativeSrc":"43205:27:81","nodeType":"YulAssignment","src":"43205:27:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"43218:1:81","nodeType":"YulIdentifier","src":"43218:1:81"},{"kind":"number","nativeSrc":"43221:4:81","nodeType":"YulLiteral","src":"43221:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"43214:3:81","nodeType":"YulIdentifier","src":"43214:3:81"},"nativeSrc":"43214:12:81","nodeType":"YulFunctionCall","src":"43214:12:81"},{"name":"y_1","nativeSrc":"43228:3:81","nodeType":"YulIdentifier","src":"43228:3:81"}],"functionName":{"name":"mod","nativeSrc":"43210:3:81","nodeType":"YulIdentifier","src":"43210:3:81"},"nativeSrc":"43210:22:81","nodeType":"YulFunctionCall","src":"43210:22:81"},"variableNames":[{"name":"r","nativeSrc":"43205:1:81","nodeType":"YulIdentifier","src":"43205:1:81"}]}]},"name":"mod_t_uint8","nativeSrc":"43081:157:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"43102:1:81","nodeType":"YulTypedName","src":"43102:1:81","type":""},{"name":"y","nativeSrc":"43105:1:81","nodeType":"YulTypedName","src":"43105:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"43111:1:81","nodeType":"YulTypedName","src":"43111:1:81","type":""}],"src":"43081:157:81"}]},"contents":"{\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_bytes4(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_bytes4(headStart)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_available_length_string(src, length, end) -> array\n    {\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        array := abi_decode_available_length_string(add(offset, 0x20), calldataload(offset), end)\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$9796(headStart, dataEnd) -> value0, value1, value2\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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\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_contract_IERC4626(value)\n        value0 := value\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_enum_TargetStatus(value, pos)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_TargetStatus_$22999__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_TargetStatus(value0, headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_bytes_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, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$9796t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint32t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_contract_IERC4626(value_4)\n        value4 := value_4\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\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_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bool(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_bool(value_3)\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$25555__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_decode_tuple_t_addresst_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_userDefinedValueType$_TargetSlot_$22993__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$11065(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        value1 := abi_decode_available_length_string(add(_1, 32), calldataload(_1), dataEnd)\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$9796(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 128))\n        value4 := value_4\n    }\n    function abi_encode_tuple_t_struct$_ERC4626Storage_$5994_memory_ptr__to_t_struct$_ERC4626Storage_$5994_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(mload(value0), sub(shl(160, 1), 1)))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xff))\n    }\n    function validator_revert_enum_Rounding(value)\n    {\n        if iszero(lt(value, 4)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint256t_enum$_Rounding_$18220(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_enum_Rounding(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_struct$_TargetConfig_$23009_memory_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(mload(value0), 0xffffffff))\n        let memberValue0 := mload(add(value0, 0x20))\n        abi_encode_enum_TargetStatus(memberValue0, add(headStart, 0x20))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffffffffffffffffffffff))\n    }\n    function abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptrt_contract$_IERC4626_$9796(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_bytes_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_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n        let value := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value)\n        value4 := value\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$9796__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_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_string_calldata_ptrt_string_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_bytes_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_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_bytes4(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        value1 := abi_decode_bytes4(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_int256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        value3 := calldataload(add(headStart, 96))\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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_bytes4(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        value2 := abi_decode_bytes4(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_1, 32)\n        value2 := length\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            tail_2 := abi_encode_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_enum$_TargetStatus_$22999(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_enum_Rounding(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_enum$_TargetStatus_$22999__to_t_address_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { panic_error_0x11() }\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\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_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_struct$_TargetConfig_$23009_storage_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        let slotValue := sload(value0)\n        mstore(headStart, and(slotValue, 0xffffffff))\n        abi_encode_enum_TargetStatus(and(shr(32, slotValue), 0xff), add(headStart, 32))\n        mstore(add(headStart, 0x40), and(shr(40, slotValue), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(shr(136, slotValue), 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), not(0xffffffffffffffffffffffff)))\n        mstore(add(pos, 20), and(value1, shl(224, 0xffffffff)))\n        end := add(pos, 24)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$11776_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_t_enum$_TargetStatus_$22999_t_enum$_TargetStatus_$22999__to_t_uint8_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_enum_TargetStatus(value0, headStart)\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$9796_t_contract$_IERC4626_$9796__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_add_t_int96(x, y) -> sum\n    {\n        sum := add(signextend(11, x), signextend(11, y))\n        if or(sgt(sum, 0x7fffffffffffffffffffffff), slt(sum, not(0x7fffffffffffffffffffffff))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), signextend(11, value4))\n    }\n    function abi_decode_tuple_t_contract$_IAccessManager_$9511_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffff)\n        if eq(value_1, 0xffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function mod_t_uint32(x, y) -> r\n    {\n        let y_1 := and(y, 0xffffffff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xffffffff), y_1)\n    }\n    function checked_mul_t_uint32(x, y) -> product\n    {\n        let product_raw := mul(and(x, 0xffffffff), and(y, 0xffffffff))\n        product := and(product_raw, 0xffffffff)\n        if iszero(eq(product, product_raw)) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function decrement_t_uint256(value) -> ret\n    {\n        if iszero(value) { panic_error_0x11() }\n        ret := add(value, not(0))\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffff))\n        if lt(len, 20)\n        {\n            value := and(and(_1, shl(shl(3, sub(20, len)), not(0xffffffffffffffffffffffff))), not(0xffffffffffffffffffffffff))\n        }\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xff), y_1)\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"4775":[{"length":32,"start":3310},{"length":32,"start":8221}],"5182":[{"length":32,"start":15719},{"length":32,"start":16438},{"length":32,"start":16479}],"22991":[{"length":32,"start":2685},{"length":32,"start":6105},{"length":32,"start":7548},{"length":32,"start":8281},{"length":32,"start":11446},{"length":32,"start":12115},{"length":32,"start":12259},{"length":32,"start":12906},{"length":32,"start":13889},{"length":32,"start":14074},{"length":32,"start":14694},{"length":32,"start":15213},{"length":32,"start":18714},{"length":32,"start":18863}]},"linkReferences":{},"object":"6080604052600436106106e2575f3560e01c806384c6af0c1161037f578063c63d75b6116101d3578063e047838d11610108578063efb43b07116100a8578063f7a3933311610078578063f7a39333146112e3578063fa171c9214611302578063fa3045d014611316578063fbf9c9ce14611329575f5ffd5b8063efb43b07146112c0578063f14b624b146112d3578063f15476a214610bd2578063f5f1bec0146112db575f5ffd5b8063e8e617b7116100e3578063e8e617b714611270578063ee07abbb1461128f578063ef4f78d1146112ae578063ef8b30f7146110c1575f5ffd5b8063e047838d14611212578063e483b6e114611225578063e77659fd14611244575f5ffd5b8063ce96cb7711610173578063d336078c1161014e578063d336078c14611196578063d6281d3e146111b5578063d905777e146111d4578063dd62ed3e146111f3575f5ffd5b8063ce96cb7714611164578063d2e26fe414611183578063d2e888ec14610bd2575f5ffd5b8063c9eb0571116101ae578063c9eb0571146110f4578063ca10eca01461111e578063cc461d621461113d578063cc671a1814611150575f5ffd5b8063c63d75b614610b18578063c6e6f592146110c1578063c8030873146110e0575f5ffd5b8063a9059cbb116102b4578063b3d7f6b911610254578063bdb5371d11610224578063bdb5371d14611045578063bfdb20da14611064578063c0c5121714611083578063c3ba11f5146110a2575f5ffd5b8063b3d7f6b914610fd5578063b460af9414610ff4578063b7e44f4e14611013578063ba08765214611026575f5ffd5b8063ad3cb1cc1161028f578063ad3cb1cc14610f7e578063adfdfe2e14610bd2578063aeabd32914610fae578063b2331d7d14610fc2575f5ffd5b8063a9059cbb14610f25578063a9ed148714610f44578063ac860f7414610f5f575f5ffd5b806394bf804d1161031f5780639c0b90c7116102fa5780639c0b90c714610ecc5780639db0391f14610edf578063a3ac939014610ef2578063a7f8a5e214610f11575f5ffd5b806394bf804d14610e8657806395d89b4114610ea557806397f8423e14610eb9575f5ffd5b80638963227f1161035a5780638963227f14610e205780638b4e914a14610e285780638d94d57514610e475780638f79246514610e5a575f5ffd5b806384c6af0c14610d85578063861e3d3d14610dee57806386b4408314610e01575f5ffd5b80633edeb257116105365780635ee0c7dd1161046b57806375b58c951161040b578063818f5673116103db578063818f567314610d3857806382dbbd7114610d40578063833d816d14610d5f57806383b9557914610d72575f5ffd5b806375b58c9514610ccd5780637da0a87714610ce057806380da0a1c14610d12578063811eecf514610d25575f5ffd5b80636855a178116104465780636855a17814610c525780636e553f6514610c6557806370a0823114610c84578063759076e514610ca3575f5ffd5b80635ee0c7dd14610c18578063657ab2b314610c3757806367354a8414610c3f575f5ffd5b80634f1ef286116104d657806353c42f88116104b157806353c42f8814610bbd57806355c0729b14610bd2578063572b6c0514610bda5780635997ee3614610bf9575f5ffd5b80634f1ef28614610b6a5780634fd5303d14610b7d57806352d1902d14610ba9575f5ffd5b80634092b0c1116105115780634092b0c114610b385780634879872014610b575780634cdad5061461079b5780634d15eb0314610a6f575f5ffd5b80633edeb25714610af9578063401022ef14610b10578063402d267d14610b18575f5ffd5b8063194448e511610617578063313ce567116105b757806333f965ce1161058757806333f965ce14610a6f578063342db73914610aa157806338d52e0f14610ac65780633e15a35714610ada575f5ffd5b8063313ce56714610a0357806332bc74aa14610a2957806332cadf3c14610a3c57806333bded3c14610a50575f5ffd5b8063225c531e116105f2578063225c531e1461098657806323b872dd146109a55780632904df29146109c45780632f9cf0aa146109f0575f5ffd5b8063194448e51461091f5780631a7e80141461093e5780631c93944f14610952575f5ffd5b8063091ea8a6116106825780630aecc0931161065d5780630aecc093146108815780630cabf23114610895578063150b7a02146108b457806318160ddd146108ec575f5ffd5b8063091ea8a6146107d9578063095ea7b3146108435780630a28a47714610862575f5ffd5b806306fdde03116106bd57806306fdde0314610759578063077f224a1461077a57806307a2d13a1461079b57806308742d90146107ba575f5ffd5b806301e1d114146106ed57806301ffc9a714610714578063025ca58e14610743575f5ffd5b366106e957005b5f5ffd5b3480156106f8575f5ffd5b50610701611346565b6040519081526020015b60405180910390f35b34801561071f575f5ffd5b5061073361072e366004615516565b611488565b604051901515815260200161070b565b34801561074e575f5ffd5b506367748580610701565b348015610764575f5ffd5b5061076d611545565b60405161070b919061555d565b348015610785575f5ffd5b5061079961079436600461562a565b611605565b005b3480156107a6575f5ffd5b506107016107b53660046156a0565b6116ef565b3480156107c5575f5ffd5b506107996107d43660046156c8565b6116fa565b3480156107e4575f5ffd5b506108366107f33660046156ff565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b60405161070b919061574e565b34801561084e575f5ffd5b5061073361085d36600461575c565b611796565b34801561086d575f5ffd5b5061070161087c3660046156a0565b6117b7565b34801561088c575f5ffd5b506107996117c3565b3480156108a0575f5ffd5b505f5160206165ca5f395f51905f52610701565b3480156108bf575f5ffd5b506108d36108ce3660046157ca565b6117cd565b6040516001600160e01b0319909116815260200161070b565b3480156108f7575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254610701565b34801561092a575f5ffd5b50610799610939366004615844565b61183c565b348015610949575f5ffd5b5061079961195f565b34801561095d575f5ffd5b5061097161096c366004615870565b611967565b60405163ffffffff909116815260200161070b565b348015610991575f5ffd5b506107996109a036600461588c565b611979565b3480156109b0575f5ffd5b506107336109bf3660046158f0565b611a9d565b3480156109cf575f5ffd5b506109d8611aca565b6040516001600160a01b03909116815260200161070b565b6107996109fe3660046156ff565b611ad8565b348015610a0e575f5ffd5b50610a17611ba8565b60405160ff909116815260200161070b565b610799610a3736600461592e565b611bd1565b348015610a47575f5ffd5b5061076d611bdd565b348015610a5b575f5ffd5b5061076d610a6a36600461597e565b611c20565b348015610a7a575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006109d8565b348015610aac575f5ffd5b506107016e1a185c991a185d0b595e1c1bdcd959608a1b81565b348015610ad1575f5ffd5b506109d8611ea6565b348015610ae5575f5ffd5b50610701610af43660046159ce565b611ec1565b348015610b04575f5ffd5b5061097163ffffffff81565b610799611ed5565b348015610b23575f5ffd5b50610701610b323660046156ff565b505f1990565b348015610b43575f5ffd5b50610971610b523660046156a0565b611fb0565b610799610b653660046156ff565b611fba565b610799610b78366004615a0b565b611fc3565b348015610b88575f5ffd5b50610b91611fd9565b6040516001600160401b03909116815260200161070b565b348015610bb4575f5ffd5b50610701611ff8565b348015610bc8575f5ffd5b5062015180610701565b610799612013565b348015610be5575f5ffd5b50610733610bf43660046156ff565b61201b565b348015610c04575f5ffd5b505f5160206165ea5f395f51905f52610701565b348015610c23575f5ffd5b506108d3610c32366004615a6a565b61204d565b61079961195f565b348015610c4a575f5ffd5b506014610701565b610799610c603660046158f0565b6120b6565b348015610c70575f5ffd5b50610701610c7f366004615aad565b6120c6565b348015610c8f575f5ffd5b50610701610c9e3660046156ff565b6120e8565b348015610cae575f5ffd5b505f5160206165ca5f395f51905f5254600160a01b9004600b0b610701565b610799610cdb3660046156ff565b61210e565b348015610ceb575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006109d8565b610799610d203660046156ff565b612117565b610701610d333660046156a0565b612120565b6107996117c3565b348015610d4b575f5ffd5b50610799610d5a366004615ad0565b61216a565b610799610d6d366004615b1e565b61225d565b610799610d80366004615b44565b612300565b348015610d90575f5ffd5b506040805180820182525f808252602091820152815180830183525f5160206165ea5f395f51905f52546001600160a01b03811680835260ff600160a01b90920482169284019283528451908152915116918101919091520161070b565b610799610dfc3660046158f0565b61230d565b348015610e0c575f5ffd5b5061076d610e1b36600461597e565b612318565b61079961241d565b348015610e33575f5ffd5b50610701610e42366004615ba7565b612425565b610799610e553660046156ff565b612430565b348015610e65575f5ffd5b50610e79610e743660046156ff565b612439565b60405161070b9190615bca565b348015610e91575f5ffd5b50610701610ea0366004615aad565b6124de565b348015610eb0575f5ffd5b5061076d612500565b610799610ec7366004615c18565b61253e565b610799610eda366004615a6a565b6125b1565b610799610eed3660046156ff565b6125bd565b348015610efd575f5ffd5b50610701610f0c3660046159ce565b6126e4565b348015610f1c575f5ffd5b506109d8612738565b348015610f30575f5ffd5b50610733610f3f36600461575c565b612757565b348015610f4f575f5ffd5b506108d36001600160e01b031981565b348015610f6a575f5ffd5b50610799610f793660046156a0565b61276e565b348015610f89575f5ffd5b5061076d604051806040016040528060058152602001640352e302e360dc1b81525081565b348015610fb9575f5ffd5b5061070161282e565b610799610fd03660046158f0565b612837565b348015610fe0575f5ffd5b50610701610fef3660046156a0565b612842565b348015610fff575f5ffd5b5061070161100e366004615c8b565b61284e565b610799611021366004615cbf565b6128ab565b348015611031575f5ffd5b50610701611040366004615c8b565b61291c565b348015611050575f5ffd5b5061079961105f366004615d29565b612970565b34801561106f575f5ffd5b5061079961107e366004615d5b565b612a5a565b34801561108e575f5ffd5b506108d361109d366004615d89565b612c46565b3480156110ad575f5ffd5b506107016110bc366004615dbc565b612c92565b3480156110cc575f5ffd5b506107016110db3660046156a0565b612c9d565b3480156110eb575f5ffd5b50610799612ca8565b3480156110ff575f5ffd5b505f51602061660a5f395f51905f5254600160401b900460ff16610733565b348015611129575f5ffd5b50610701611138366004615ba7565b6130a6565b61079961114b36600461575c565b6130b1565b34801561115b575f5ffd5b506107016130bb565b34801561116f575f5ffd5b5061070161117e3660046156ff565b613147565b610701611191366004615ad0565b613161565b3480156111a1575f5ffd5b506107996111b03660046156a0565b6131b1565b3480156111c0575f5ffd5b506108d36111cf366004615a6a565b61325e565b3480156111df575f5ffd5b506107016111ee3660046156ff565b61336e565b3480156111fe575f5ffd5b5061070161120d366004615ddf565b613386565b61079961122036600461575c565b6133cf565b348015611230575f5ffd5b5061079961123f366004615e0b565b6133d9565b34801561124f575f5ffd5b5061126361125e366004615e4f565b6133e4565b60405161070b9190615ed0565b34801561127b575f5ffd5b506108d361128a3660046158f0565b6136ee565b34801561129a575f5ffd5b506112636112a9366004615e4f565b613756565b3480156112b9575f5ffd5b505f610a17565b6107996112ce3660046158f0565b613950565b61079961395b565b6107996139b1565b3480156112ee575f5ffd5b506107996112fd366004615f33565b6139b9565b34801561130d575f5ffd5b5061079961241d565b610799611324366004615cbf565b613a78565b348015611334575f5ffd5b506107996113433660046156ff565b50565b5f5f5160206165ca5f395f51905f5261135d613ae9565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa1580156113ab573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113cf9190615f5f565b6040518263ffffffff1660e01b81526004016113ed91815260200190565b602060405180830381865afa158015611408573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142c9190615f5f565b6114369083615f8a565b81549092505f600160a01b909104600b0b121561147257805461146290600160a01b9004600b0b615f9d565b61146c9083615fb7565b91505090565b805461146c90600160a01b9004600b0b83615f8a565b5f6001600160e01b03198216630a85bd0160e11b14806114b857506001600160e01b03198216633ece0a8960e01b145b806114d357506001600160e01b03198216635ee0c7dd60e01b145b806114ee57506001600160e01b031982166336372b0760e01b145b8061150957506001600160e01b0319821663a219a02560e01b145b8061152457506001600160e01b0319821663043eff2d60e51b145b8061153f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f51602061656a5f395f51905f529161158390615fca565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90615fca565b80156115fa5780601f106115d1576101008083540402835291602001916115fa565b820191905f5260205f20905b8154815290600101906020018083116115dd57829003601f168201915b505050505091505090565b5f51602061660a5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156116365750825b90505f826001600160401b031660011480156116515750303b155b90508115801561165f575080155b1561167d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116a757845460ff60401b1916600160401b1785555b6116b2888888613b5a565b83156116e557845460ff60401b19168555604051600181525f51602061658a5f395f51905f529060200160405180910390a15b5050505050505050565b5f61153f825f613c09565b8063ffffffff165f036117205760405163294da6c760e21b815260040160405180910390fd5b5f61172a83613c60565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f6117a0613cf8565b90506117ad818585613d01565b5060019392505050565b5f61153f826001613d0e565b6117cb613d5c565b565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146118295760405163950d88bf60e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b50630a85bd0160e11b9695505050505050565b5f5f5160206165ca5f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa15801561189d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118c19190615f5f565b6040518263ffffffff1660e01b81526004016118df91815260200190565b602060405180830381865afa1580156118fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061191e9190615f5f565b90508061192a82613da5565b14806119335750825b6119505760405163292d4c4b60e11b815260040160405180910390fd5b61195984613e9e565b50505050565b6117cb61402b565b5f61197283836140b9565b9392505050565b61198285613c60565b505f611998868686611993876140e5565b614115565b905082815f8113156119c657604051630c97a6bf60e41b815260048101929092526024820152604401611820565b50505f6119d1613ae9565b905083811015611a15576119e58185615fb7565b6119f76119f28387615fb7565b613da5565b14611a155760405163af8075e960e01b815260040160405180910390fd5b611a328385611a22611ea6565b6001600160a01b03169190614214565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f611aa7613cf8565b9050611ab4858285614273565b611abf8585856142be565b506001949350505050565b5f611ad3613cf8565b905090565b805f611ae382613c60565b905060018154600160201b900460ff166003811115611b0457611b0461571a565b1480611b2c575060028154600160201b900460ff166003811115611b2a57611b2a61571a565b145b81548391600160201b90910460ff1690611b5b57604051630e851c7960e31b8152600401611820929190616002565b50505f611b66613ae9565b90505f611b71613ae9565b905081811015611ba157611b858183615fb7565b6040516351f5977560e11b815260040161182091815260200190565b5050505050565b5f805f5160206165ea5f395f51905f5290505f815461146c9190600160a01b900460ff1661601f565b61195984848484614310565b6060611be76143f3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525092949350505050565b6060835f611c2d82613c60565b905060018154600160201b900460ff166003811115611c4e57611c4e61571a565b82548492600160201b90910460ff169114611c7e57604051630e851c7960e31b8152600401611820929190616002565b50505f611c89613ae9565b8254909150600160881b90046001600160601b0316811015611cd2578154611cc6906119f2908390600160881b90046001600160601b0316615fb7565b50611ccf613ae9565b90505b611cf9611cdd613cf8565b88611ceb60045f8a8c616038565b611cf49161605f565b614405565b611d4286868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614507565b93505f84806020019051810190611d599190615f5f565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611dc1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de59190616097565b6001600160a01b031614611e0d57611e0d611dfe613cf8565b896001600160e01b0319614405565b505f611e17613ae9565b905081811015611e9b5782545f90611e4d90869063ffffffff16611e3b81426140b9565b611993611e488789615fb7565b6140e5565b84549091508190600160281b90046001600160601b031680821315611e975760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611820565b5050505b505050509392505050565b5f5160206165ea5f395f51905f52546001600160a01b031690565b5f611ecd848484614514565b949350505050565b5f51602061660a5f395f51905f528054600160401b810460ff1615906001600160401b03165f81158015611f065750825b90505f826001600160401b03166001148015611f215750303b155b905081158015611f2f575080155b15611f4d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611f7757845460ff60401b1916600160401b1785555b8315611ba157845460ff60401b19168555604051600181525f51602061658a5f395f51905f529060200160405180910390a15050505050565b5f61153f8261455c565b61134381614639565b611fcb61402b565b611fd582826146a9565b5050565b5f611ad35f51602061660a5f395f51905f52546001600160401b031690565b5f612001613d5c565b505f5160206165aa5f395f51905f5290565b6117cb61241d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146120a45760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b50635ee0c7dd60e01b95945050505050565b6120c1838383614765565b505050565b5f5f195f6120d385612c9d565b9050611ecd6120e0613cf8565b85878461488b565b6001600160a01b03165f9081525f51602061656a5f395f51905f52602052604090205490565b61134381614908565b61134381614910565b5f61212a82613da5565b90507f3a221b9176b65b4a4850e63cd182357e93d2ad08e8951daa0904244dc82df4608160405161215d91815260200190565b60405180910390a1919050565b61217384613c60565b505f61218d858585612184866140e5565b61199390615f9d565b905081815f8112156121bb5760405163239de57160e11b815260048101929092526024820152604401611820565b50506121e36121c8613cf8565b30846121d2611ea6565b6001600160a01b0316929190614a34565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c8585858561221a613cf8565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b5f51602061660a5f395f51905f528054829190600160401b900460ff1680612292575080546001600160401b03808416911610155b156122b05760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b038316908117600160401b1760ff60401b191682556040519081525f51602061658a5f395f51905f52906020015b60405180910390a1505050565b611ba18585858585614a6d565b6120c1838383613d01565b6060835f61232582613c60565b905060018154600160201b900460ff1660038111156123465761234661571a565b148061236e575060028154600160201b900460ff16600381111561236c5761236c61571a565b145b81548391600160201b90910460ff169061239d57604051630e851c7960e31b8152600401611820929190616002565b50505f6123a8613ae9565b90506123b5611cdd613cf8565b6123fe86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614507565b93505f612409613ae9565b905081811015611e9b57611b858183615fb7565b6117cb614bc0565b5f6119728383613d0e565b61134381613e9e565b604080516080810182525f80825260208201819052918101829052606081019190915261246582613c60565b6040805160808101909152815463ffffffff811682529091906020830190600160201b900460ff16600381111561249e5761249e61571a565b60038111156124af576124af61571a565b815290546001600160601b03600160281b820481166020840152600160881b9091041660409091015292915050565b5f5f195f6124eb85612842565b9050611ecd6124f8613cf8565b85838861488b565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f51602061656a5f395f51905f529161158390615fca565b611ba185858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f890181900481028201810190925287815292508791508690819084018382808284375f92019190915250869250613b5a915050565b6119598484848461488b565b805f6125c882613c60565b905060018154600160201b900460ff1660038111156125e9576125e961571a565b82548492600160201b90910460ff16911461261957604051630e851c7960e31b8152600401611820929190616002565b50505f612624613ae9565b8254909150600160881b90046001600160601b031681101561266d578154612661906119f2908390600160881b90046001600160601b0316615fb7565b5061266a613ae9565b90505b5f612676613ae9565b905081811015611ba15782545f9061269a90869063ffffffff16611e3b81426140b9565b84549091508190600160281b90046001600160601b0316808213156116e55760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611820565b5f5f5160206165ca5f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0282612720878787614514565b81526020019081526020015f20549150509392505050565b5f5f5160206165ca5f395f51905f525b546001600160a01b0316919050565b5f5f612761613cf8565b90506117ad8185856142be565b5f1981036127855761277e613ae9565b90506127ad565b61278d613ae9565b8111156127ad5760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206165ca5f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af115801561280a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120c19190615f5f565b5f611ad3613ae9565b6120c1838383614273565b5f61153f826001613c09565b5f5f61285983613147565b90508085111561288257828582604051633fa733bb60e21b8152600401611820939291906160b2565b5f61288c866117b7565b90506128a2612899613cf8565b86868985614a6d565b95945050505050565b61195984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614bf692505050565b5f5f6129278361336e565b90508085111561295057828582604051632e52afbb60e21b8152600401611820939291906160b2565b5f61295a866116ef565b90506128a2612967613cf8565b8686848a614a6d565b5f61297a84613c60565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a26129f483614c08565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155612a2a82614c08565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206165ca5f395f51905f529290600160201b900460ff166003811115612abd57612abd61571a565b14612adb5760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03612b015760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101612b2786614c08565b6001600160601b03168152602001612b3e85614c08565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115612ba557612ba561571a565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90612c369084906160d3565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f9061197290603801604051602081830303815290604052805190602001205f614c3b565b5f6119728383614c73565b5f61153f825f613d0e565b5f612cb1611ea6565b90505f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d10573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d349190616097565b9050806001600160a01b0316826001600160a01b031603612d685760405163252fa83d60e21b815260040160405180910390fd5b612d70613ae9565b15612d8e5760405163902dd39b60e01b815260040160405180910390fd5b5f5160206165ca5f395f51905f528054604080516338d52e0f60e01b815290516001600160a01b038581169316916338d52e0f9160048083019260209291908290030181865afa158015612de4573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e089190616097565b6001600160a01b031614612e2f5760405163233f856360e11b815260040160405180910390fd5b5f5f5160206165ea5f395f51905f5280546001600160a01b0319166001600160a01b03858116919091178255835460405163095ea7b360e01b815290821660048201525f602482015291925085169063095ea7b3906044016020604051808303815f875af1158015612ea3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ec79190616123565b50815460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529084169063095ea7b3906044016020604051808303815f875af1158015612f17573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f3b9190616123565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f602483015285169063095ea7b3906044016020604051808303815f875af1158015612fa7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fcb9190616123565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f19602483015284169063095ea7b3906044016020604051808303815f875af1158015613038573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061305c9190616123565b50604080516001600160a01b038087168252851660208201527f37465ce4c247e78514460560da0bcc785fff559503ce6c3d87a6e84352437392910160405180910390a150505050565b5f6119728383613c09565b611fd58282614d56565b5f805f5160206165ca5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613111573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131359190615f5f565b61313d613ae9565b61146c9190615f8a565b5f61153f61315483614d8a565b61315c6130bb565b614d9d565b5f61316e85858585614115565b90507f7281c4a6d49c3bb62269fed398306788c6b3b4fce8789168aa0ab94ec0dd9ec9816040516131a191815260200190565b60405180910390a1949350505050565b5f198103613236575f5f5160206165ca5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561320e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132329190615f5f565b9150505b8061324082613da5565b146113435760405163af8075e960e01b815260040160405180910390fd5b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146132b55760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b505f6132c086613c60565b905060018154600160201b900460ff1660038111156132e1576132e161571a565b1480613309575060028154600160201b900460ff1660038111156133075761330761571a565b145b81548791600160201b90910460ff169061333857604051630e851c7960e31b8152600401611820929190616002565b5050805461335b90879063ffffffff1661335281426140b9565b612184876140e5565b50636b140e9f60e11b9695505050505050565b5f61153f61337b83614dac565b61315c6110db6130bb565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b611fd58282614db6565b6120c1838383614405565b6060835f6133f182613c60565b905060018154600160201b900460ff1660038111156134125761341261571a565b82548492600160201b90910460ff16911461344257604051630e851c7960e31b8152600401611820929190616002565b50505f61344d613ae9565b8254909150600160881b90046001600160601b031681101561349657815461348a906119f2908390600160881b90046001600160601b0316615fb7565b50613493613ae9565b90505b5f80866001600160401b038111156134b0576134b061556f565b6040519080825280602002602001820160405280156134e357816020015b60608152602001906001900390816134ce5790505b5095505f5b878110156136e2575f8989838181106135035761350361613e565b90506020028101906135159190616152565b613523916004915f91616038565b61352c9161605f565b905081158061354857506001600160e01b031981811690851614155b156135635761355f613558613cf8565b8c83614405565b8093505b6135ce8a8a848181106135785761357861613e565b905060200281019061358a9190616152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f1692915050614507565b8883815181106135e0576135e061613e565b6020026020010181905250826136d9575f8883815181106136035761360361613e565b602002602001015180602001905181019061361e9190615f5f565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015613686573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136aa9190616097565b6001600160a01b0316146136d7576136d26136c3613cf8565b8d6001600160e01b0319614405565b600193505b505b506001016134e8565b5050505f611e17613ae9565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146137455760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b5063e8e617b760e01b949350505050565b6060835f61376382613c60565b905060018154600160201b900460ff1660038111156137845761378461571a565b14806137ac575060028154600160201b900460ff1660038111156137aa576137aa61571a565b145b81548391600160201b90910460ff16906137db57604051630e851c7960e31b8152600401611820929190616002565b50505f6137e6613ae9565b90505f856001600160401b038111156138015761380161556f565b60405190808252806020026020018201604052801561383457816020015b606081526020019060019003908161381f5790505b5094505f5b86811015613945575f8888838181106138545761385461613e565b90506020028101906138669190616152565b613874916004915f91616038565b61387d9161605f565b905081158061389957506001600160e01b031981811690841614155b156138b4576138b06138a9613cf8565b8b83614405565b8092505b61391f8989848181106138c9576138c961613e565b90506020028101906138db9190616152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e1692915050614507565b8783815181106139315761393161613e565b602090810291909101015250600101613839565b50505f612409613ae9565b6120c18383836142be565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146113435760405163950d88bf60e01b81526001600160a01b039091166004820152602401611820565b6117cb614dea565b5f8160038111156139cc576139cc61571a565b036139ea57604051635e64536560e11b815260040160405180910390fd5b5f6139f483613c60565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff1684604051613a41929190616194565b60405180910390a280548290829064ff000000001916600160201b836003811115613a6e57613a6e61571a565b0217905550505050565b61195984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614e7192505050565b5f613af2611ea6565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015613b36573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ad39190615f5f565b613b62614bc0565b613b6a61241d565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bc7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613beb9190616097565b9050613bf681614908565b613c008484614bf6565b61195982614910565b5f611972613c15611346565b613c20906001615f8a565b613c2b5f600a616292565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613c579190615f8a565b85919085614ec1565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206165ca5f395f51905f5291600160201b900460ff166003811115613cc457613cc461571a565b14158390613cf157604051632dad902160e01b81526001600160a01b039091166004820152602401611820565b5050919050565b5f611ad3614f03565b6120c18383836001614310565b5f611972613d1d82600a616292565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613d499190615f8a565b613d51611346565b613c57906001615f8a565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146117cb5760405163703e46dd60e11b815260040160405180910390fd5b5f805f5160206165ca5f395f51905f52805460405163ce96cb7760e01b8152306004820152919250613e259185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613e01573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061315c9190615f5f565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015613e7a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cf19190615f5f565b6001600160a01b038116613ec5576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206165ca5f395f51905f5280546001600160a01b038381166001600160a01b03198316178355168015613f7057613efd611ea6565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af1158015613f4a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f6e9190616123565b505b613f78611ea6565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015613fc6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fea9190616123565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a91016122f3565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061409b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661408f614f53565b6001600160a01b031614155b156117cb5760405163703e46dd60e11b815260040160405180910390fd5b5f63ffffffff838116146140dc576140d763ffffffff8416836162b4565b611972565b6119728261455c565b5f6001600160ff1b038211156141115760405163123baf0360e11b815260048101839052602401611820565b5090565b5f5f5160206165ca5f395f51905f5281614130878787614514565b905083826002015f8381526020019081526020015f205f82825461415491906162c7565b91829055508354909450859150839060149061417b908490600160a01b9004600b0b6162ee565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6040516001600160a01b038381166024830152604482018390526120c191859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050614f67565b5f61427e8484613386565b90505f1981101561195957818110156142b057828183604051637dc7a0d960e11b8152600401611820939291906160b2565b61195984848484035f614310565b6001600160a01b0383166142e757604051634b637e8f60e11b81525f6004820152602401611820565b6001600160a01b0382166120b65760405163ec442f0560e01b81525f6004820152602401611820565b5f51602061656a5f395f51905f526001600160a01b0385166143475760405163e602df0560e01b81525f6004820152602401611820565b6001600160a01b03841661437057604051634a1406b160e11b81525f6004820152602401611820565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115611ba157836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516143e491815260200190565b60405180910390a35050505050565b365f6143fd614fd3565b915091509091565b5f6144108383612c46565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144739190616097565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b81526004016144a293929190616325565b6040805180830381865afa1580156144bc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144e09190616352565b509050848483836116e55760405163c294136d60e01b815260040161182093929190616325565b606061197283835f61501d565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b6107e95f8062015180614573636774858086615fb7565b61457d91906162b4565b90505b8161458d5761016d614591565b61016e5b61ffff16811061461457816145a85761016d6145ac565b61016e5b6145ba9061ffff1682615fb7565b90506145c58361637f565b92506145d26004846163a3565b63ffffffff1615801561460d57506145eb6064846163a3565b63ffffffff1615158061460d5750614605610190846163a3565b63ffffffff16155b9150614580565b61461e8183614c73565b6146298460646163ca565b63ffffffff16611ecd9190615f8a565b614641614bc0565b5f5160206165ea5f395f51905f525f8061465a846150bd565b915091508161466a57601261466c565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015614703575060408051601f3d908101601f1916820190925261470091810190615f5f565b60015b61472b57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611820565b5f5160206165aa5f395f51905f52811461475b57604051632a87526960e21b815260048101829052602401611820565b6120c18383615193565b5f51602061656a5f395f51905f526001600160a01b03841661479f5781816002015f8282546147949190615f8a565b909155506147fc9050565b6001600160a01b0384165f90815260208290526040902054828110156147de5784818460405163391434e360e21b8152600401611820939291906160b2565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b03831661481a576002810180548390039055614838565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161487d91815260200190565b60405180910390a350505050565b5f5160206165ea5f395f51905f5280546148b0906001600160a01b0316863086614a34565b6148ba8483614d56565b836001600160a01b0316856001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d785856040516143e4929190918252602082015260400190565b611fba614bc0565b614918614bc0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614974573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149989190616097565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015614a06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a2a9190616123565b5061134381613e9e565b6040516001600160a01b0384811660248301528381166044830152606482018390526119599186918216906323b872dd90608401614241565b5f614a76613ae9565b905082811015614bab575f5f5160206165ca5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015614ad5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614af99190615f5f565b614b038386615fb7565b1115614b225760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af94614b3c8487615fb7565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af1158015614b84573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614ba89190615f5f565b50505b614bb886868686866151e8565b505050505050565b5f51602061660a5f395f51905f5254600160401b900460ff166117cb57604051631afcd79f60e31b815260040160405180910390fd5b614bfe614bc0565b611fd58282614e71565b5f6001600160601b03821115614111576040516306dfcc6560e41b81526060600482015260248101839052604401611820565b5f601c8260ff161115614c6157604051631dd4bb1b60e11b815260040160405180910390fd5b506008021b6001600160e01b03191690565b5f601f831015614c855750600161153f565b8115614cae57603c831015614c9c5750600261153f565b82614ca6816163e9565b935050614cbf565b603b831015614cbf5750600261153f565b605a8310614d495760788310614d425760978310614d3b5760b58310614d345760d48310614d2d5760f38310614d26576101118310614d1f576101308310614d185761014e8310614d1157600c614d4c565b600b614d4c565b600a614d4c565b6009614d4c565b6008614d4c565b6007614d4c565b6006614d4c565b6005614d4c565b6004614d4c565b60035b60ff169392505050565b6001600160a01b038216614d7f5760405163ec442f0560e01b81525f6004820152602401611820565b611fd55f8383614765565b5f61153f614d97836120e8565b5f613c09565b5f828218828410028218611972565b5f61153f826120e8565b6001600160a01b038216614ddf57604051634b637e8f60e11b81525f6004820152602401611820565b611fd5825f83614765565b5f51602061660a5f395f51905f528054600160401b900460ff1615614e225760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161461134357805467ffffffffffffffff19166001600160401b0390811782556040519081525f51602061658a5f395f51905f529060200160405180910390a150565b614e79614bc0565b5f51602061656a5f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614eb28482616442565b50600481016119598382616442565b5f614eee614ece8361529c565b8015614ee957505f8480614ee457614ee46162a0565b868809115b151590565b614ef98686866152c8565b6128a29190615f8a565b5f366014614f103361201b565b8015614f1c5750808210155b15614f4b575f36614f2d8385615fb7565b614f38928290616038565b614f41916164fc565b60601c9250505090565b339250505090565b5f5f5160206165aa5f395f51905f52612748565b5f5f60205f8451602086015f885af180614f86576040513d5f823e3d81fd5b50505f513d91508115614f9d578060011415614faa565b6001600160a01b0384163b155b1561195957604051635274afe760e01b81526001600160a01b0385166004820152602401611820565b365f816014614fe13361201b565b8015614fed5750808210155b15615016575f8036614fff8486615fb7565b9261500c93929190616038565b9350935050509091565b5f3661500c565b6060814710156150495760405163cf47918160e01b815247600482015260248101839052604401611820565b5f5f856001600160a01b031684866040516150649190616532565b5f6040518083038185875af1925050503d805f811461509e576040519150601f19603f3d011682016040523d82523d5f602084013e6150a3565b606091505b50915091506150b386838361537e565b9695505050505050565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b17905290515f918291829182916001600160a01b0387169161510391616532565b5f60405180830381855afa9150503d805f811461513b576040519150601f19603f3d011682016040523d82523d5f602084013e615140565b606091505b509150915081801561515457506020815110155b15615187575f8180602001905181019061516e9190615f5f565b905060ff8111615185576001969095509350505050565b505b505f9485945092505050565b61519c826153d5565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156151e0576120c18282615438565b611fd56154a1565b5f5160206165ea5f395f51905f526001600160a01b038681169085161461521457615214848784614273565b61521e8483614db6565b8054615234906001600160a01b03168685614214565b836001600160a01b0316856001600160a01b0316876001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db868660405161528c929190918252602082015260400190565b60405180910390a4505050505050565b5f60028260038111156152b1576152b161571a565b6152bb9190616548565b60ff166001149050919050565b5f838302815f1985870982811083820303915050805f036152fc578382816152f2576152f26162a0565b0492505050611972565b8084116153135761531360038515026011186154c0565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b60608261538e576140d7826154d1565b81511580156153a557506001600160a01b0384163b155b156153ce57604051639996b31560e01b81526001600160a01b0385166004820152602401611820565b5080611972565b806001600160a01b03163b5f0361540a57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611820565b5f5160206165aa5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b0316846040516154549190616532565b5f60405180830381855af49150503d805f811461548c576040519150601f19603f3d011682016040523d82523d5f602084013e615491565b606091505b50915091506128a285838361537e565b34156117cb5760405163b398979f60e01b815260040160405180910390fd5b634e487b715f52806020526024601cfd5b8051156154e15780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b80356001600160e01b031981168114615511575f5ffd5b919050565b5f60208284031215615526575f5ffd5b611972826154fa565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611972602083018461552f565b634e487b7160e01b5f52604160045260245ffd5b5f5f6001600160401b0384111561559c5761559c61556f565b50604051601f19601f85018116603f011681018181106001600160401b03821117156155ca576155ca61556f565b6040528381529050808284018510156155e1575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f830112615607575f5ffd5b61197283833560208501615583565b6001600160a01b0381168114611343575f5ffd5b5f5f5f6060848603121561563c575f5ffd5b83356001600160401b03811115615651575f5ffd5b61565d868287016155f8565b93505060208401356001600160401b03811115615678575f5ffd5b615684868287016155f8565b925050604084013561569581615616565b809150509250925092565b5f602082840312156156b0575f5ffd5b5035919050565b63ffffffff81168114611343575f5ffd5b5f5f604083850312156156d9575f5ffd5b82356156e481615616565b915060208301356156f4816156b7565b809150509250929050565b5f6020828403121561570f575f5ffd5b813561197281615616565b634e487b7160e01b5f52602160045260245ffd5b6004811061574a57634e487b7160e01b5f52602160045260245ffd5b9052565b6020810161153f828461572e565b5f5f6040838503121561576d575f5ffd5b823561577881615616565b946020939093013593505050565b5f5f83601f840112615796575f5ffd5b5081356001600160401b038111156157ac575f5ffd5b6020830191508360208285010111156157c3575f5ffd5b9250929050565b5f5f5f5f5f608086880312156157de575f5ffd5b85356157e981615616565b945060208601356157f981615616565b93506040860135925060608601356001600160401b0381111561581a575f5ffd5b61582688828901615786565b969995985093965092949392505050565b8015158114611343575f5ffd5b5f5f60408385031215615855575f5ffd5b823561586081615616565b915060208301356156f481615837565b5f5f60408385031215615881575f5ffd5b8235615778816156b7565b5f5f5f5f5f60a086880312156158a0575f5ffd5b85356158ab81615616565b945060208601356158bb816156b7565b935060408601356158cb816156b7565b92506060860135915060808601356158e281615616565b809150509295509295909350565b5f5f5f60608486031215615902575f5ffd5b833561590d81615616565b9250602084013561591d81615616565b929592945050506040919091013590565b5f5f5f5f60808587031215615941575f5ffd5b843561594c81615616565b9350602085013561595c81615616565b925060408501359150606085013561597381615837565b939692955090935050565b5f5f5f60408486031215615990575f5ffd5b833561599b81615616565b925060208401356001600160401b038111156159b5575f5ffd5b6159c186828701615786565b9497909650939450505050565b5f5f5f606084860312156159e0575f5ffd5b83356159eb81615616565b925060208401356159fb816156b7565b91506040840135615695816156b7565b5f5f60408385031215615a1c575f5ffd5b8235615a2781615616565b915060208301356001600160401b03811115615a41575f5ffd5b8301601f81018513615a51575f5ffd5b615a6085823560208401615583565b9150509250929050565b5f5f5f5f60808587031215615a7d575f5ffd5b8435615a8881615616565b93506020850135615a9881615616565b93969395505050506040820135916060013590565b5f5f60408385031215615abe575f5ffd5b8235915060208301356156f481615616565b5f5f5f5f60808587031215615ae3575f5ffd5b8435615aee81615616565b93506020850135615afe816156b7565b92506040850135615b0e816156b7565b9396929550929360600135925050565b5f60208284031215615b2e575f5ffd5b81356001600160401b0381168114611972575f5ffd5b5f5f5f5f5f60a08688031215615b58575f5ffd5b8535615b6381615616565b94506020860135615b7381615616565b93506040860135615b8381615616565b94979396509394606081013594506080013592915050565b60048110611343575f5ffd5b5f5f60408385031215615bb8575f5ffd5b8235915060208301356156f481615b9b565b815163ffffffff1681526020808301516080830191615beb9084018261572e565b506001600160601b0360408401511660408301526001600160601b03606084015116606083015292915050565b5f5f5f5f5f60608688031215615c2c575f5ffd5b85356001600160401b03811115615c41575f5ffd5b615c4d88828901615786565b90965094505060208601356001600160401b03811115615c6b575f5ffd5b615c7788828901615786565b90945092505060408601356158e281615616565b5f5f5f60608486031215615c9d575f5ffd5b833592506020840135615caf81615616565b9150604084013561569581615616565b5f5f5f5f60408587031215615cd2575f5ffd5b84356001600160401b03811115615ce7575f5ffd5b615cf387828801615786565b90955093505060208501356001600160401b03811115615d11575f5ffd5b615d1d87828801615786565b95989497509550505050565b5f5f5f60608486031215615d3b575f5ffd5b8335615d4681615616565b95602085013595506040909401359392505050565b5f5f5f5f60808587031215615d6e575f5ffd5b8435615d7981615616565b93506020850135615a98816156b7565b5f5f60408385031215615d9a575f5ffd5b8235615da581615616565b9150615db3602084016154fa565b90509250929050565b5f5f60408385031215615dcd575f5ffd5b8235915060208301356156f481615837565b5f5f60408385031215615df0575f5ffd5b8235615dfb81615616565b915060208301356156f481615616565b5f5f5f60608486031215615e1d575f5ffd5b8335615e2881615616565b92506020840135615e3881615616565b9150615e46604085016154fa565b90509250925092565b5f5f5f60408486031215615e61575f5ffd5b8335615e6c81615616565b925060208401356001600160401b03811115615e86575f5ffd5b8401601f81018613615e96575f5ffd5b80356001600160401b03811115615eab575f5ffd5b8660208260051b8401011115615ebf575f5ffd5b939660209190910195509293505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015615f2757603f19878603018452615f1285835161552f565b94506020938401939190910190600101615ef6565b50929695505050505050565b5f5f60408385031215615f44575f5ffd5b8235615f4f81615616565b915060208301356156f481615b9b565b5f60208284031215615f6f575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561153f5761153f615f76565b5f600160ff1b8201615fb157615fb1615f76565b505f0390565b8181038181111561153f5761153f615f76565b600181811c90821680615fde57607f821691505b602082108103615ffc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b038316815260408101611972602083018461572e565b60ff818116838216019081111561153f5761153f615f76565b5f5f85851115616046575f5ffd5b83861115616052575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015616090576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f602082840312156160a7575f5ffd5b815161197281615616565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff811683526160f86020840160ff8360201c1661572e565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b5f60208284031215616133575f5ffd5b815161197281615837565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112616167575f5ffd5b8301803591506001600160401b03821115616180575f5ffd5b6020019150368190038213156157c3575f5ffd5b604081016161a2828561572e565b611972602083018461572e565b6001815b60018411156161ea578085048111156161ce576161ce615f76565b60018416156161dc57908102905b60019390931c9280026161b3565b935093915050565b5f826162005750600161153f565b8161620c57505f61153f565b8160018114616222576002811461622c57616248565b600191505061153f565b60ff84111561623d5761623d615f76565b50506001821b61153f565b5060208310610133831016604e8410600b841016171561626b575081810a61153f565b6162775f1984846161af565b805f190482111561628a5761628a615f76565b029392505050565b5f61197260ff8416836161f2565b634e487b7160e01b5f52601260045260245ffd5b5f826162c2576162c26162a0565b500490565b8082018281125f8312801582168215821617156162e6576162e6615f76565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff198212171561153f5761153f615f76565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f60408385031215616363575f5ffd5b825161636e81615837565b60208401519092506156f4816156b7565b5f63ffffffff821663ffffffff810361639a5761639a615f76565b60010192915050565b5f63ffffffff8316806163b8576163b86162a0565b8063ffffffff84160691505092915050565b63ffffffff818116838216029081169081811461609057616090615f76565b5f816163f7576163f7615f76565b505f190190565b601f8211156120c157805f5260205f20601f840160051c810160208510156164235750805b601f840160051c820191505b81811015611ba1575f815560010161642f565b81516001600160401b0381111561645b5761645b61556f565b61646f816164698454615fca565b846163fe565b6020601f8211600181146164a1575f831561648a5750848201515b5f19600385901b1c1916600184901b178455611ba1565b5f84815260208120601f198516915b828110156164d057878501518255602094850194600190920191016164b0565b50848210156164ed57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b80356001600160601b03198116906014841015616090576001600160601b031960149490940360031b84901b1690921692915050565b5f82518060208501845e5f920191825250919050565b5f60ff83168061655a5761655a6162a0565b8060ff8416069150509291505056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af000773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212206aa3f0d8d053b499a480a75acfdd285f381a4c96d7c2bfa20c5b1d23cc3ab75964736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x6E2 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x84C6AF0C GT PUSH2 0x37F JUMPI DUP1 PUSH4 0xC63D75B6 GT PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xE047838D GT PUSH2 0x108 JUMPI DUP1 PUSH4 0xEFB43B07 GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xF7A39333 GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0x12E3 JUMPI DUP1 PUSH4 0xFA171C92 EQ PUSH2 0x1302 JUMPI DUP1 PUSH4 0xFA3045D0 EQ PUSH2 0x1316 JUMPI DUP1 PUSH4 0xFBF9C9CE EQ PUSH2 0x1329 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xEFB43B07 EQ PUSH2 0x12C0 JUMPI DUP1 PUSH4 0xF14B624B EQ PUSH2 0x12D3 JUMPI DUP1 PUSH4 0xF15476A2 EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0xF5F1BEC0 EQ PUSH2 0x12DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE8E617B7 GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0x1270 JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0x128F JUMPI DUP1 PUSH4 0xEF4F78D1 EQ PUSH2 0x12AE JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x10C1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE047838D EQ PUSH2 0x1212 JUMPI DUP1 PUSH4 0xE483B6E1 EQ PUSH2 0x1225 JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0x1244 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCE96CB77 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0xD336078C GT PUSH2 0x14E JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x1196 JUMPI DUP1 PUSH4 0xD6281D3E EQ PUSH2 0x11B5 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x11D4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x11F3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x1164 JUMPI DUP1 PUSH4 0xD2E26FE4 EQ PUSH2 0x1183 JUMPI DUP1 PUSH4 0xD2E888EC EQ PUSH2 0xBD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC9EB0571 GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0xC9EB0571 EQ PUSH2 0x10F4 JUMPI DUP1 PUSH4 0xCA10ECA0 EQ PUSH2 0x111E JUMPI DUP1 PUSH4 0xCC461D62 EQ PUSH2 0x113D JUMPI DUP1 PUSH4 0xCC671A18 EQ PUSH2 0x1150 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0xB18 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x10C1 JUMPI DUP1 PUSH4 0xC8030873 EQ PUSH2 0x10E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB GT PUSH2 0x2B4 JUMPI DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0x254 JUMPI DUP1 PUSH4 0xBDB5371D GT PUSH2 0x224 JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x1045 JUMPI DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x1064 JUMPI DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x1083 JUMPI DUP1 PUSH4 0xC3BA11F5 EQ PUSH2 0x10A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0xFD5 JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0xFF4 JUMPI DUP1 PUSH4 0xB7E44F4E EQ PUSH2 0x1013 JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x1026 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x28F JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0xF7E JUMPI DUP1 PUSH4 0xADFDFE2E EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0xAEABD329 EQ PUSH2 0xFAE JUMPI DUP1 PUSH4 0xB2331D7D EQ PUSH2 0xFC2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xF25 JUMPI DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0xF44 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0xF5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D GT PUSH2 0x31F JUMPI DUP1 PUSH4 0x9C0B90C7 GT PUSH2 0x2FA JUMPI DUP1 PUSH4 0x9C0B90C7 EQ PUSH2 0xECC JUMPI DUP1 PUSH4 0x9DB0391F EQ PUSH2 0xEDF JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0xEF2 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0xF11 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D EQ PUSH2 0xE86 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0xEA5 JUMPI DUP1 PUSH4 0x97F8423E EQ PUSH2 0xEB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8963227F GT PUSH2 0x35A JUMPI DUP1 PUSH4 0x8963227F EQ PUSH2 0xE20 JUMPI DUP1 PUSH4 0x8B4E914A EQ PUSH2 0xE28 JUMPI DUP1 PUSH4 0x8D94D575 EQ PUSH2 0xE47 JUMPI DUP1 PUSH4 0x8F792465 EQ PUSH2 0xE5A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x84C6AF0C EQ PUSH2 0xD85 JUMPI DUP1 PUSH4 0x861E3D3D EQ PUSH2 0xDEE JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 GT PUSH2 0x536 JUMPI DUP1 PUSH4 0x5EE0C7DD GT PUSH2 0x46B JUMPI DUP1 PUSH4 0x75B58C95 GT PUSH2 0x40B JUMPI DUP1 PUSH4 0x818F5673 GT PUSH2 0x3DB JUMPI DUP1 PUSH4 0x818F5673 EQ PUSH2 0xD38 JUMPI DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0xD40 JUMPI DUP1 PUSH4 0x833D816D EQ PUSH2 0xD5F JUMPI DUP1 PUSH4 0x83B95579 EQ PUSH2 0xD72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x75B58C95 EQ PUSH2 0xCCD JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0xCE0 JUMPI DUP1 PUSH4 0x80DA0A1C EQ PUSH2 0xD12 JUMPI DUP1 PUSH4 0x811EECF5 EQ PUSH2 0xD25 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6855A178 GT PUSH2 0x446 JUMPI DUP1 PUSH4 0x6855A178 EQ PUSH2 0xC52 JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0xC65 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0xC84 JUMPI DUP1 PUSH4 0x759076E5 EQ PUSH2 0xCA3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0xC18 JUMPI DUP1 PUSH4 0x657AB2B3 EQ PUSH2 0xC37 JUMPI DUP1 PUSH4 0x67354A84 EQ PUSH2 0xC3F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x4D6 JUMPI DUP1 PUSH4 0x53C42F88 GT PUSH2 0x4B1 JUMPI DUP1 PUSH4 0x53C42F88 EQ PUSH2 0xBBD JUMPI DUP1 PUSH4 0x55C0729B EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0xBDA JUMPI DUP1 PUSH4 0x5997EE36 EQ PUSH2 0xBF9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0xB6A JUMPI DUP1 PUSH4 0x4FD5303D EQ PUSH2 0xB7D JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0xBA9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4092B0C1 GT PUSH2 0x511 JUMPI DUP1 PUSH4 0x4092B0C1 EQ PUSH2 0xB38 JUMPI DUP1 PUSH4 0x48798720 EQ PUSH2 0xB57 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0xA6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0xAF9 JUMPI DUP1 PUSH4 0x401022EF EQ PUSH2 0xB10 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0xB18 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x194448E5 GT PUSH2 0x617 JUMPI DUP1 PUSH4 0x313CE567 GT PUSH2 0x5B7 JUMPI DUP1 PUSH4 0x33F965CE GT PUSH2 0x587 JUMPI DUP1 PUSH4 0x33F965CE EQ PUSH2 0xA6F JUMPI DUP1 PUSH4 0x342DB739 EQ PUSH2 0xAA1 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0xAC6 JUMPI DUP1 PUSH4 0x3E15A357 EQ PUSH2 0xADA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0xA03 JUMPI DUP1 PUSH4 0x32BC74AA EQ PUSH2 0xA29 JUMPI DUP1 PUSH4 0x32CADF3C EQ PUSH2 0xA3C JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0xA50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x225C531E GT PUSH2 0x5F2 JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x986 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x9A5 JUMPI DUP1 PUSH4 0x2904DF29 EQ PUSH2 0x9C4 JUMPI DUP1 PUSH4 0x2F9CF0AA EQ PUSH2 0x9F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x194448E5 EQ PUSH2 0x91F JUMPI DUP1 PUSH4 0x1A7E8014 EQ PUSH2 0x93E JUMPI DUP1 PUSH4 0x1C93944F EQ PUSH2 0x952 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 GT PUSH2 0x682 JUMPI DUP1 PUSH4 0xAECC093 GT PUSH2 0x65D JUMPI DUP1 PUSH4 0xAECC093 EQ PUSH2 0x881 JUMPI DUP1 PUSH4 0xCABF231 EQ PUSH2 0x895 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x8B4 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x8EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x7D9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x843 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x862 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 GT PUSH2 0x6BD JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x759 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x77A JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0x8742D90 EQ PUSH2 0x7BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x6ED JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x714 JUMPI DUP1 PUSH4 0x25CA58E EQ PUSH2 0x743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x6E9 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1346 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0x72E CALLDATASIZE PUSH1 0x4 PUSH2 0x5516 JUMP JUMPDEST PUSH2 0x1488 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH4 0x67748580 PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0x1545 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x555D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x785 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x794 CALLDATASIZE PUSH1 0x4 PUSH2 0x562A JUMP JUMPDEST PUSH2 0x1605 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x7B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x16EF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x7D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x56C8 JUMP JUMPDEST PUSH2 0x16FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x836 PUSH2 0x7F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x574E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0x85D CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x1796 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x86D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x87C CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x17B7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x17C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8A0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x8CE CALLDATASIZE PUSH1 0x4 PUSH2 0x57CA JUMP JUMPDEST PUSH2 0x17CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x92A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x939 CALLDATASIZE PUSH1 0x4 PUSH2 0x5844 JUMP JUMPDEST PUSH2 0x183C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x949 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x195F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x971 PUSH2 0x96C CALLDATASIZE PUSH1 0x4 PUSH2 0x5870 JUMP JUMPDEST PUSH2 0x1967 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x991 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x9A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x588C JUMP JUMPDEST PUSH2 0x1979 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9B0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0x9BF CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x1A9D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9D8 PUSH2 0x1ACA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST PUSH2 0x799 PUSH2 0x9FE CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x1AD8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA17 PUSH2 0x1BA8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST PUSH2 0x799 PUSH2 0xA37 CALLDATASIZE PUSH1 0x4 PUSH2 0x592E JUMP JUMPDEST PUSH2 0x1BD1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA47 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0x1BDD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0xA6A CALLDATASIZE PUSH1 0x4 PUSH2 0x597E JUMP JUMPDEST PUSH2 0x1C20 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x9D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH15 0x1A185C991A185D0B595E1C1BDCD959 PUSH1 0x8A SHL DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAD1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9D8 PUSH2 0x1EA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xAF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x59CE JUMP JUMPDEST PUSH2 0x1EC1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB04 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x971 PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1ED5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB23 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xB32 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB43 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x971 PUSH2 0xB52 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x1FB0 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xB65 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x1FBA JUMP JUMPDEST PUSH2 0x799 PUSH2 0xB78 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A0B JUMP JUMPDEST PUSH2 0x1FC3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB88 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB91 PUSH2 0x1FD9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x70B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1FF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBC8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x15180 PUSH2 0x701 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x2013 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBE5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0xBF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x201B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC04 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x701 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC23 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0xC32 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x204D JUMP JUMPDEST PUSH2 0x799 PUSH2 0x195F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x14 PUSH2 0x701 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xC60 CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x20B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xC7F CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAD JUMP JUMPDEST PUSH2 0x20C6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xC9E CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x20E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCAE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x701 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xCDB CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x210E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x9D8 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xD20 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x2117 JUMP JUMPDEST PUSH2 0x701 PUSH2 0xD33 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x2120 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x17C3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD4B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0xD5A CALLDATASIZE PUSH1 0x4 PUSH2 0x5AD0 JUMP JUMPDEST PUSH2 0x216A JUMP JUMPDEST PUSH2 0x799 PUSH2 0xD6D CALLDATASIZE PUSH1 0x4 PUSH2 0x5B1E JUMP JUMPDEST PUSH2 0x225D JUMP JUMPDEST PUSH2 0x799 PUSH2 0xD80 CALLDATASIZE PUSH1 0x4 PUSH2 0x5B44 JUMP JUMPDEST PUSH2 0x2300 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD90 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP2 MLOAD DUP1 DUP4 ADD DUP4 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP1 DUP4 MSTORE PUSH1 0xFF PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV DUP3 AND SWAP3 DUP5 ADD SWAP3 DUP4 MSTORE DUP5 MLOAD SWAP1 DUP2 MSTORE SWAP2 MLOAD AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x70B JUMP JUMPDEST PUSH2 0x799 PUSH2 0xDFC CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x230D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0xE1B CALLDATASIZE PUSH1 0x4 PUSH2 0x597E JUMP JUMPDEST PUSH2 0x2318 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x241D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xE42 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BA7 JUMP JUMPDEST PUSH2 0x2425 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xE55 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x2430 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE65 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE79 PUSH2 0xE74 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x2439 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x5BCA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE91 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xEA0 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAD JUMP JUMPDEST PUSH2 0x24DE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH2 0x2500 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xEC7 CALLDATASIZE PUSH1 0x4 PUSH2 0x5C18 JUMP JUMPDEST PUSH2 0x253E JUMP JUMPDEST PUSH2 0x799 PUSH2 0xEDA CALLDATASIZE PUSH1 0x4 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x25B1 JUMP JUMPDEST PUSH2 0x799 PUSH2 0xEED CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x25BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xF0C CALLDATASIZE PUSH1 0x4 PUSH2 0x59CE JUMP JUMPDEST PUSH2 0x26E4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9D8 PUSH2 0x2738 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF30 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x733 PUSH2 0xF3F CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x2757 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF4F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0xF79 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x276E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF89 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x76D PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x282E JUMP JUMPDEST PUSH2 0x799 PUSH2 0xFD0 CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x2837 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFE0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0xFEF CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x2842 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x100E CALLDATASIZE PUSH1 0x4 PUSH2 0x5C8B JUMP JUMPDEST PUSH2 0x284E JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1021 CALLDATASIZE PUSH1 0x4 PUSH2 0x5CBF JUMP JUMPDEST PUSH2 0x28AB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1031 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1040 CALLDATASIZE PUSH1 0x4 PUSH2 0x5C8B JUMP JUMPDEST PUSH2 0x291C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1050 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x105F CALLDATASIZE PUSH1 0x4 PUSH2 0x5D29 JUMP JUMPDEST PUSH2 0x2970 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x107E CALLDATASIZE PUSH1 0x4 PUSH2 0x5D5B JUMP JUMPDEST PUSH2 0x2A5A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x108E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x109D CALLDATASIZE PUSH1 0x4 PUSH2 0x5D89 JUMP JUMPDEST PUSH2 0x2C46 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x10BC CALLDATASIZE PUSH1 0x4 PUSH2 0x5DBC JUMP JUMPDEST PUSH2 0x2C92 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x10DB CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x2C9D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x2CA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x733 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1129 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x1138 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BA7 JUMP JUMPDEST PUSH2 0x30A6 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x114B CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x30B1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x115B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x30BB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x117E CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x3147 JUMP JUMPDEST PUSH2 0x701 PUSH2 0x1191 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AD0 JUMP JUMPDEST PUSH2 0x3161 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x11B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x56A0 JUMP JUMPDEST PUSH2 0x31B1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x11CF CALLDATASIZE PUSH1 0x4 PUSH2 0x5A6A JUMP JUMPDEST PUSH2 0x325E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x11EE CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST PUSH2 0x336E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x701 PUSH2 0x120D CALLDATASIZE PUSH1 0x4 PUSH2 0x5DDF JUMP JUMPDEST PUSH2 0x3386 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1220 CALLDATASIZE PUSH1 0x4 PUSH2 0x575C JUMP JUMPDEST PUSH2 0x33CF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1230 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x123F CALLDATASIZE PUSH1 0x4 PUSH2 0x5E0B JUMP JUMPDEST PUSH2 0x33D9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x124F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1263 PUSH2 0x125E CALLDATASIZE PUSH1 0x4 PUSH2 0x5E4F JUMP JUMPDEST PUSH2 0x33E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x70B SWAP2 SWAP1 PUSH2 0x5ED0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x127B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8D3 PUSH2 0x128A CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x36EE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x129A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1263 PUSH2 0x12A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x5E4F JUMP JUMPDEST PUSH2 0x3756 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 PUSH2 0xA17 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x12CE CALLDATASIZE PUSH1 0x4 PUSH2 0x58F0 JUMP JUMPDEST PUSH2 0x3950 JUMP JUMPDEST PUSH2 0x799 PUSH2 0x395B JUMP JUMPDEST PUSH2 0x799 PUSH2 0x39B1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x12FD CALLDATASIZE PUSH1 0x4 PUSH2 0x5F33 JUMP JUMPDEST PUSH2 0x39B9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x130D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x241D JUMP JUMPDEST PUSH2 0x799 PUSH2 0x1324 CALLDATASIZE PUSH1 0x4 PUSH2 0x5CBF JUMP JUMPDEST PUSH2 0x3A78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x799 PUSH2 0x1343 CALLDATASIZE PUSH1 0x4 PUSH2 0x56FF JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x135D PUSH2 0x3AE9 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13AB JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x13CF SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13ED SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1408 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x142C SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x1436 SWAP1 DUP4 PUSH2 0x5F8A JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0x1472 JUMPI DUP1 SLOAD PUSH2 0x1462 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x5F9D JUMP JUMPDEST PUSH2 0x146C SWAP1 DUP4 PUSH2 0x5FB7 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0x146C SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x5F8A JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x14B8 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3ECE0A89 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x14D3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x14EE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1509 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1524 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0x153F JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x5FCA JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x15AF SWAP1 PUSH2 0x5FCA JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15FA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x15D1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15FA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x15DD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 DIV PUSH1 0xFF AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1636 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1651 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x165F JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x16A7 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x16B2 DUP9 DUP9 DUP9 PUSH2 0x3B5A JUMP JUMPDEST DUP4 ISZERO PUSH2 0x16E5 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3C09 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1720 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x172A DUP4 PUSH2 0x3C60 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x17A0 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP PUSH2 0x17AD DUP2 DUP6 DUP6 PUSH2 0x3D01 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3D0E JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x3D5C JUMP JUMPDEST JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1829 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x189D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x18C1 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18DF SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18FA JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x191E SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x192A DUP3 PUSH2 0x3DA5 JUMP JUMPDEST EQ DUP1 PUSH2 0x1933 JUMPI POP DUP3 JUMPDEST PUSH2 0x1950 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1959 DUP5 PUSH2 0x3E9E JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x402B JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x40B9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1982 DUP6 PUSH2 0x3C60 JUMP JUMPDEST POP PUSH0 PUSH2 0x1998 DUP7 DUP7 DUP7 PUSH2 0x1993 DUP8 PUSH2 0x40E5 JUMP JUMPDEST PUSH2 0x4115 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x19C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x19D1 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1A15 JUMPI PUSH2 0x19E5 DUP2 DUP6 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x19F7 PUSH2 0x19F2 DUP4 DUP8 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x3DA5 JUMP JUMPDEST EQ PUSH2 0x1A15 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A32 DUP4 DUP6 PUSH2 0x1A22 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x4214 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1AA7 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP PUSH2 0x1AB4 DUP6 DUP3 DUP6 PUSH2 0x4273 JUMP JUMPDEST PUSH2 0x1ABF DUP6 DUP6 DUP6 PUSH2 0x42BE JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x1AE3 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1B04 JUMPI PUSH2 0x1B04 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x1B2C JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1B2A JUMPI PUSH2 0x1B2A PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x1B5B JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1B66 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1B71 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1BA1 JUMPI PUSH2 0x1B85 DUP2 DUP4 PUSH2 0x5FB7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0x146C SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x601F JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP5 DUP5 PUSH2 0x4310 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1BE7 PUSH2 0x43F3 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP SWAP3 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1C2D DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C4E JUMPI PUSH2 0x1C4E PUSH2 0x571A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x1C7E JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1C89 PUSH2 0x3AE9 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1CD2 JUMPI DUP2 SLOAD PUSH2 0x1CC6 SWAP1 PUSH2 0x19F2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x5FB7 JUMP JUMPDEST POP PUSH2 0x1CCF PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x1CF9 PUSH2 0x1CDD PUSH2 0x3CF8 JUMP JUMPDEST DUP9 PUSH2 0x1CEB PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x1CF4 SWAP2 PUSH2 0x605F JUMP JUMPDEST PUSH2 0x4405 JUMP JUMPDEST PUSH2 0x1D42 DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1D59 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1DC1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1DE5 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1E0D JUMPI PUSH2 0x1E0D PUSH2 0x1DFE PUSH2 0x3CF8 JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x4405 JUMP JUMPDEST POP PUSH0 PUSH2 0x1E17 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1E9B JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x1E4D SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1E3B DUP2 TIMESTAMP PUSH2 0x40B9 JUMP JUMPDEST PUSH2 0x1993 PUSH2 0x1E48 DUP8 DUP10 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x40E5 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x1E97 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1ECD DUP5 DUP5 DUP5 PUSH2 0x4514 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 DIV PUSH1 0xFF AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1F06 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1F21 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1F2F JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1F4D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x1F77 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP4 ISZERO PUSH2 0x1BA1 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x455C JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x4639 JUMP JUMPDEST PUSH2 0x1FCB PUSH2 0x402B JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x46A9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2001 PUSH2 0x3D5C JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x241D JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x20A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x4765 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x20D3 DUP6 PUSH2 0x2C9D JUMP JUMPDEST SWAP1 POP PUSH2 0x1ECD PUSH2 0x20E0 PUSH2 0x3CF8 JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x488B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x4908 JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x4910 JUMP JUMPDEST PUSH0 PUSH2 0x212A DUP3 PUSH2 0x3DA5 JUMP JUMPDEST SWAP1 POP PUSH32 0x3A221B9176B65B4A4850E63CD182357E93D2AD08E8951DAA0904244DC82DF460 DUP2 PUSH1 0x40 MLOAD PUSH2 0x215D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2173 DUP5 PUSH2 0x3C60 JUMP JUMPDEST POP PUSH0 PUSH2 0x218D DUP6 DUP6 DUP6 PUSH2 0x2184 DUP7 PUSH2 0x40E5 JUMP JUMPDEST PUSH2 0x1993 SWAP1 PUSH2 0x5F9D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x21BB JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP PUSH2 0x21E3 PUSH2 0x21C8 PUSH2 0x3CF8 JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x21D2 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x4A34 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x221A PUSH2 0x3CF8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0x2292 JUMPI POP DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP5 AND SWAP2 AND LT ISZERO JUMPDEST ISZERO PUSH2 0x22B0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH9 0xFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP1 DUP2 OR PUSH1 0x1 PUSH1 0x40 SHL OR PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH2 0x1BA1 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x3D01 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x2325 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2346 JUMPI PUSH2 0x2346 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x236E JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x236C JUMPI PUSH2 0x236C PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x239D JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x23A8 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH2 0x23B5 PUSH2 0x1CDD PUSH2 0x3CF8 JUMP JUMPDEST PUSH2 0x23FE DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x2409 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1E9B JUMPI PUSH2 0x1B85 DUP2 DUP4 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x4BC0 JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x3D0E JUMP JUMPDEST PUSH2 0x1343 DUP2 PUSH2 0x3E9E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2465 DUP3 PUSH2 0x3C60 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE DUP2 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP3 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x249E JUMPI PUSH2 0x249E PUSH2 0x571A JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x24AF JUMPI PUSH2 0x24AF PUSH2 0x571A JUMP JUMPDEST DUP2 MSTORE SWAP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP2 DIV AND PUSH1 0x40 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x24EB DUP6 PUSH2 0x2842 JUMP JUMPDEST SWAP1 POP PUSH2 0x1ECD PUSH2 0x24F8 PUSH2 0x3CF8 JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x488B JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x5FCA JUMP JUMPDEST PUSH2 0x1BA1 DUP6 DUP6 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP10 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP8 DUP2 MSTORE SWAP3 POP DUP8 SWAP2 POP DUP7 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP7 SWAP3 POP PUSH2 0x3B5A SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP5 DUP5 PUSH2 0x488B JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x25C8 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x25E9 JUMPI PUSH2 0x25E9 PUSH2 0x571A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x2619 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x2624 PUSH2 0x3AE9 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x266D JUMPI DUP2 SLOAD PUSH2 0x2661 SWAP1 PUSH2 0x19F2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x5FB7 JUMP JUMPDEST POP PUSH2 0x266A PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 PUSH2 0x2676 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1BA1 JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x269A SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1E3B DUP2 TIMESTAMP PUSH2 0x40B9 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x16E5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x2720 DUP8 DUP8 DUP8 PUSH2 0x4514 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2761 PUSH2 0x3CF8 JUMP JUMPDEST SWAP1 POP PUSH2 0x17AD DUP2 DUP6 DUP6 PUSH2 0x42BE JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2785 JUMPI PUSH2 0x277E PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH2 0x27AD JUMP JUMPDEST PUSH2 0x278D PUSH2 0x3AE9 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x27AD JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x280A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x20C1 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH2 0x3AE9 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x4273 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3C09 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2859 DUP4 PUSH2 0x3147 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x2882 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH0 PUSH2 0x288C DUP7 PUSH2 0x17B7 JUMP JUMPDEST SWAP1 POP PUSH2 0x28A2 PUSH2 0x2899 PUSH2 0x3CF8 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x4A6D JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4BF6 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2927 DUP4 PUSH2 0x336E JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x2950 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH0 PUSH2 0x295A DUP7 PUSH2 0x16EF JUMP JUMPDEST SWAP1 POP PUSH2 0x28A2 PUSH2 0x2967 PUSH2 0x3CF8 JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x4A6D JUMP JUMPDEST PUSH0 PUSH2 0x297A DUP5 PUSH2 0x3C60 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x29F4 DUP4 PUSH2 0x4C08 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x2A2A DUP3 PUSH2 0x4C08 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2ABD JUMPI PUSH2 0x2ABD PUSH2 0x571A JUMP JUMPDEST EQ PUSH2 0x2ADB JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x2B01 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x2B27 DUP7 PUSH2 0x4C08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2B3E DUP6 PUSH2 0x4C08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2BA5 JUMPI PUSH2 0x2BA5 PUSH2 0x571A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x2C36 SWAP1 DUP5 SWAP1 PUSH2 0x60D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x1972 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH0 PUSH2 0x4C3B JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x4C73 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3D0E JUMP JUMPDEST PUSH0 PUSH2 0x2CB1 PUSH2 0x1EA6 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x2D10 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2D34 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x2D68 JUMPI PUSH1 0x40 MLOAD PUSH4 0x252FA83D PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2D70 PUSH2 0x3AE9 JUMP JUMPDEST ISZERO PUSH2 0x2D8E JUMPI PUSH1 0x40 MLOAD PUSH4 0x902DD39B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0x38D52E0F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP4 AND SWAP2 PUSH4 0x38D52E0F SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2DE4 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2E08 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2E2F JUMPI PUSH1 0x40 MLOAD PUSH4 0x233F8563 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 SWAP1 SWAP2 OR DUP3 SSTORE DUP4 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2EA3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2EC7 SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP3 ADD MSTORE SWAP1 DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F17 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2F3B SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2FA7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2FCB SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3038 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x305C SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x37465CE4C247E78514460560DA0BCC785FFF559503CE6C3D87A6E84352437392 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1972 DUP4 DUP4 PUSH2 0x3C09 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x4D56 JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3111 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3135 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x313D PUSH2 0x3AE9 JUMP JUMPDEST PUSH2 0x146C SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x3154 DUP4 PUSH2 0x4D8A JUMP JUMPDEST PUSH2 0x315C PUSH2 0x30BB JUMP JUMPDEST PUSH2 0x4D9D JUMP JUMPDEST PUSH0 PUSH2 0x316E DUP6 DUP6 DUP6 DUP6 PUSH2 0x4115 JUMP JUMPDEST SWAP1 POP PUSH32 0x7281C4A6D49C3BB62269FED398306788C6B3B4FCE8789168AA0AB94EC0DD9EC9 DUP2 PUSH1 0x40 MLOAD PUSH2 0x31A1 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x3236 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x320E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3232 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x3240 DUP3 PUSH2 0x3DA5 JUMP JUMPDEST EQ PUSH2 0x1343 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x32B5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP PUSH0 PUSH2 0x32C0 DUP7 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x32E1 JUMPI PUSH2 0x32E1 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x3309 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3307 JUMPI PUSH2 0x3307 PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x3338 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x335B SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x3352 DUP2 TIMESTAMP PUSH2 0x40B9 JUMP JUMPDEST PUSH2 0x2184 DUP8 PUSH2 0x40E5 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x337B DUP4 PUSH2 0x4DAC JUMP JUMPDEST PUSH2 0x315C PUSH2 0x10DB PUSH2 0x30BB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x4DB6 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x4405 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x33F1 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3412 JUMPI PUSH2 0x3412 PUSH2 0x571A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x3442 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x344D PUSH2 0x3AE9 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x3496 JUMPI DUP2 SLOAD PUSH2 0x348A SWAP1 PUSH2 0x19F2 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x5FB7 JUMP JUMPDEST POP PUSH2 0x3493 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x34B0 JUMPI PUSH2 0x34B0 PUSH2 0x556F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x34E3 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x34CE JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x36E2 JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x3503 JUMPI PUSH2 0x3503 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3515 SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST PUSH2 0x3523 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x352C SWAP2 PUSH2 0x605F JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x3548 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x3563 JUMPI PUSH2 0x355F PUSH2 0x3558 PUSH2 0x3CF8 JUMP JUMPDEST DUP13 DUP4 PUSH2 0x4405 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x35CE DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x3578 JUMPI PUSH2 0x3578 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x358A SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x35E0 JUMPI PUSH2 0x35E0 PUSH2 0x613E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x36D9 JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3603 JUMPI PUSH2 0x3603 PUSH2 0x613E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x361E SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3686 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x36AA SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x36D7 JUMPI PUSH2 0x36D2 PUSH2 0x36C3 PUSH2 0x3CF8 JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x4405 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x34E8 JUMP JUMPDEST POP POP POP PUSH0 PUSH2 0x1E17 PUSH2 0x3AE9 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x3745 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x3763 DUP3 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3784 JUMPI PUSH2 0x3784 PUSH2 0x571A JUMP JUMPDEST EQ DUP1 PUSH2 0x37AC JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x37AA JUMPI PUSH2 0x37AA PUSH2 0x571A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x37DB JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP3 SWAP2 SWAP1 PUSH2 0x6002 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x37E6 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3801 JUMPI PUSH2 0x3801 PUSH2 0x556F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3834 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x381F JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x3945 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x3854 JUMPI PUSH2 0x3854 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3866 SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST PUSH2 0x3874 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x387D SWAP2 PUSH2 0x605F JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x3899 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x38B4 JUMPI PUSH2 0x38B0 PUSH2 0x38A9 PUSH2 0x3CF8 JUMP JUMPDEST DUP12 DUP4 PUSH2 0x4405 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x391F DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x38C9 JUMPI PUSH2 0x38C9 PUSH2 0x613E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x38DB SWAP2 SWAP1 PUSH2 0x6152 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x4507 JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3931 JUMPI PUSH2 0x3931 PUSH2 0x613E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x3839 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x2409 PUSH2 0x3AE9 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH2 0x42BE JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1343 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x17CB PUSH2 0x4DEA JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x39CC JUMPI PUSH2 0x39CC PUSH2 0x571A JUMP JUMPDEST SUB PUSH2 0x39EA JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x39F4 DUP4 PUSH2 0x3C60 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x3A41 SWAP3 SWAP2 SWAP1 PUSH2 0x6194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3A6E JUMPI PUSH2 0x3A6E PUSH2 0x571A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4E71 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3AF2 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB 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 0x3B36 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1AD3 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x3B62 PUSH2 0x4BC0 JUMP JUMPDEST PUSH2 0x3B6A PUSH2 0x241D JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x3BC7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3BEB SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST SWAP1 POP PUSH2 0x3BF6 DUP2 PUSH2 0x4908 JUMP JUMPDEST PUSH2 0x3C00 DUP5 DUP5 PUSH2 0x4BF6 JUMP JUMPDEST PUSH2 0x1959 DUP3 PUSH2 0x4910 JUMP JUMPDEST PUSH0 PUSH2 0x1972 PUSH2 0x3C15 PUSH2 0x1346 JUMP JUMPDEST PUSH2 0x3C20 SWAP1 PUSH1 0x1 PUSH2 0x5F8A JUMP JUMPDEST PUSH2 0x3C2B PUSH0 PUSH1 0xA PUSH2 0x6292 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3C57 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x4EC1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3CC4 JUMPI PUSH2 0x3CC4 PUSH2 0x571A JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x3CF1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1AD3 PUSH2 0x4F03 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4310 JUMP JUMPDEST PUSH0 PUSH2 0x1972 PUSH2 0x3D1D DUP3 PUSH1 0xA PUSH2 0x6292 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3D49 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH2 0x3D51 PUSH2 0x1346 JUMP JUMPDEST PUSH2 0x3C57 SWAP1 PUSH1 0x1 PUSH2 0x5F8A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x3E25 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3E01 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x315C SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3E7A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3CF1 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3EC5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x3F70 JUMPI PUSH2 0x3EFD PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3F4A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3F6E SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP JUMPDEST PUSH2 0x3F78 PUSH2 0x1EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3FC6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3FEA SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH2 0x22F3 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x409B JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x408F PUSH2 0x4F53 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x40DC JUMPI PUSH2 0x40D7 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x62B4 JUMP JUMPDEST PUSH2 0x1972 JUMP JUMPDEST PUSH2 0x1972 DUP3 PUSH2 0x455C JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x4111 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x4130 DUP8 DUP8 DUP8 PUSH2 0x4514 JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x4154 SWAP2 SWAP1 PUSH2 0x62C7 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x417B SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x62EE JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x20C1 SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x4F67 JUMP JUMPDEST PUSH0 PUSH2 0x427E DUP5 DUP5 PUSH2 0x3386 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1959 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x42B0 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH2 0x1959 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x4310 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x42E7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x20B6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x4347 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x4370 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x1BA1 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x43E4 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH2 0x43FD PUSH2 0x4FD3 JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 PUSH2 0x4410 DUP4 DUP4 PUSH2 0x2C46 JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 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 0x444F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4473 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x44A2 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x6325 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x44BC JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x44E0 SWAP2 SWAP1 PUSH2 0x6352 JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0x16E5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x6325 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1972 DUP4 DUP4 PUSH0 PUSH2 0x501D JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x4573 PUSH4 0x67748580 DUP7 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x457D SWAP2 SWAP1 PUSH2 0x62B4 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x458D JUMPI PUSH2 0x16D PUSH2 0x4591 JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x4614 JUMPI DUP2 PUSH2 0x45A8 JUMPI PUSH2 0x16D PUSH2 0x45AC JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x45BA SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x5FB7 JUMP JUMPDEST SWAP1 POP PUSH2 0x45C5 DUP4 PUSH2 0x637F JUMP JUMPDEST SWAP3 POP PUSH2 0x45D2 PUSH1 0x4 DUP5 PUSH2 0x63A3 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x460D JUMPI POP PUSH2 0x45EB PUSH1 0x64 DUP5 PUSH2 0x63A3 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x460D JUMPI POP PUSH2 0x4605 PUSH2 0x190 DUP5 PUSH2 0x63A3 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x4580 JUMP JUMPDEST PUSH2 0x461E DUP2 DUP4 PUSH2 0x4C73 JUMP JUMPDEST PUSH2 0x4629 DUP5 PUSH1 0x64 PUSH2 0x63CA JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1ECD SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH2 0x4641 PUSH2 0x4BC0 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH0 DUP1 PUSH2 0x465A DUP5 PUSH2 0x50BD JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x466A JUMPI PUSH1 0x12 PUSH2 0x466C JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D 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 SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x4703 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x4700 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x472B JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x475B JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x20C1 DUP4 DUP4 PUSH2 0x5193 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x479F JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x4794 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x47FC SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x47DE JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1820 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x60B2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x481A JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x4838 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x487D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH2 0x48B0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 ADDRESS DUP7 PUSH2 0x4A34 JUMP JUMPDEST PUSH2 0x48BA DUP5 DUP4 PUSH2 0x4D56 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x43E4 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH2 0x1FBA PUSH2 0x4BC0 JUMP JUMPDEST PUSH2 0x4918 PUSH2 0x4BC0 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x4974 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4998 SWAP2 SWAP1 PUSH2 0x6097 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4A06 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4A2A SWAP2 SWAP1 PUSH2 0x6123 JUMP JUMPDEST POP PUSH2 0x1343 DUP2 PUSH2 0x3E9E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x1959 SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD PUSH2 0x4241 JUMP JUMPDEST PUSH0 PUSH2 0x4A76 PUSH2 0x3AE9 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x4BAB JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65CA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4AD5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4AF9 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST PUSH2 0x4B03 DUP4 DUP7 PUSH2 0x5FB7 JUMP JUMPDEST GT ISZERO PUSH2 0x4B22 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x4B3C DUP5 DUP8 PUSH2 0x5FB7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4B84 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4BA8 SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x4BB8 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x51E8 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4BFE PUSH2 0x4BC0 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 DUP3 PUSH2 0x4E71 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x4111 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 PUSH1 0x1C DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x4C61 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1DD4BB1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x8 MUL SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x4C85 JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 ISZERO PUSH2 0x4CAE JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x4C9C JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST DUP3 PUSH2 0x4CA6 DUP2 PUSH2 0x63E9 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x4CBF JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x4CBF JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x4D49 JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x4D42 JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4D3B JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x4D34 JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x4D2D JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x4D26 JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x4D1F JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x4D18 JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x4D11 JUMPI PUSH1 0xC PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0xB PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0xA PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4D4C JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D7F JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x1FD5 PUSH0 DUP4 DUP4 PUSH2 0x4765 JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x4D97 DUP4 PUSH2 0x20E8 JUMP JUMPDEST PUSH0 PUSH2 0x3C09 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x1972 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x20E8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4DDF JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH2 0x1FD5 DUP3 PUSH0 DUP4 PUSH2 0x4765 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x660A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x4E22 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x1343 JUMPI DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x658A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x4E79 PUSH2 0x4BC0 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x656A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4EB2 DUP5 DUP3 PUSH2 0x6442 JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1959 DUP4 DUP3 PUSH2 0x6442 JUMP JUMPDEST PUSH0 PUSH2 0x4EEE PUSH2 0x4ECE DUP4 PUSH2 0x529C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4EE9 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x4EE4 JUMPI PUSH2 0x4EE4 PUSH2 0x62A0 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x4EF9 DUP7 DUP7 DUP7 PUSH2 0x52C8 JUMP JUMPDEST PUSH2 0x28A2 SWAP2 SWAP1 PUSH2 0x5F8A JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 PUSH2 0x4F10 CALLER PUSH2 0x201B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4F1C JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x4F4B JUMPI PUSH0 CALLDATASIZE PUSH2 0x4F2D DUP4 DUP6 PUSH2 0x5FB7 JUMP JUMPDEST PUSH2 0x4F38 SWAP3 DUP3 SWAP1 PUSH2 0x6038 JUMP JUMPDEST PUSH2 0x4F41 SWAP2 PUSH2 0x64FC JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x2748 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH0 DUP9 GAS CALL DUP1 PUSH2 0x4F86 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x4F9D JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x4FAA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1959 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST CALLDATASIZE PUSH0 DUP2 PUSH1 0x14 PUSH2 0x4FE1 CALLER PUSH2 0x201B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FED JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x5016 JUMPI PUSH0 DUP1 CALLDATASIZE PUSH2 0x4FFF DUP5 DUP7 PUSH2 0x5FB7 JUMP JUMPDEST SWAP3 PUSH2 0x500C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x6038 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH2 0x500C JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x5049 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x5064 SWAP2 SWAP1 PUSH2 0x6532 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x509E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x50A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x50B3 DUP7 DUP4 DUP4 PUSH2 0x537E JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD DUP3 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 MLOAD PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 PUSH2 0x5103 SWAP2 PUSH2 0x6532 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x513B JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x5140 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x5154 JUMPI POP PUSH1 0x20 DUP2 MLOAD LT ISZERO JUMPDEST ISZERO PUSH2 0x5187 JUMPI PUSH0 DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x516E SWAP2 SWAP1 PUSH2 0x5F5F JUMP JUMPDEST SWAP1 POP PUSH1 0xFF DUP2 GT PUSH2 0x5185 JUMPI PUSH1 0x1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMPDEST POP PUSH0 SWAP5 DUP6 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x519C DUP3 PUSH2 0x53D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x51E0 JUMPI PUSH2 0x20C1 DUP3 DUP3 PUSH2 0x5438 JUMP JUMPDEST PUSH2 0x1FD5 PUSH2 0x54A1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65EA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP1 DUP6 AND EQ PUSH2 0x5214 JUMPI PUSH2 0x5214 DUP5 DUP8 DUP5 PUSH2 0x4273 JUMP JUMPDEST PUSH2 0x521E DUP5 DUP4 PUSH2 0x4DB6 JUMP JUMPDEST DUP1 SLOAD PUSH2 0x5234 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 DUP6 PUSH2 0x4214 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP7 DUP7 PUSH1 0x40 MLOAD PUSH2 0x528C SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x52B1 JUMPI PUSH2 0x52B1 PUSH2 0x571A JUMP JUMPDEST PUSH2 0x52BB SWAP2 SWAP1 PUSH2 0x6548 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP4 DUP4 MUL DUP2 PUSH0 NOT DUP6 DUP8 MULMOD DUP3 DUP2 LT DUP4 DUP3 SUB SUB SWAP2 POP POP DUP1 PUSH0 SUB PUSH2 0x52FC JUMPI DUP4 DUP3 DUP2 PUSH2 0x52F2 JUMPI PUSH2 0x52F2 PUSH2 0x62A0 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x1972 JUMP JUMPDEST DUP1 DUP5 GT PUSH2 0x5313 JUMPI PUSH2 0x5313 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x54C0 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP7 DUP5 GT SWAP1 SWAP6 SUB SWAP5 SWAP1 SWAP5 MUL SWAP2 SWAP1 SWAP5 SUB SWAP3 SWAP1 SWAP3 DIV SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x538E JUMPI PUSH2 0x40D7 DUP3 PUSH2 0x54D1 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x53A5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x53CE JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST POP DUP1 PUSH2 0x1972 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x540A JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1820 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x65AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x5454 SWAP2 SWAP1 PUSH2 0x6532 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x548C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x5491 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x28A2 DUP6 DUP4 DUP4 PUSH2 0x537E JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x17CB JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x54E1 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x5511 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5526 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1972 DUP3 PUSH2 0x54FA JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1972 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x552F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x559C JUMPI PUSH2 0x559C PUSH2 0x556F JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x55CA JUMPI PUSH2 0x55CA PUSH2 0x556F JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x55E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x5607 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1972 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x5583 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x563C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5651 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x565D DUP7 DUP3 DUP8 ADD PUSH2 0x55F8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5678 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5684 DUP7 DUP3 DUP8 ADD PUSH2 0x55F8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5695 DUP2 PUSH2 0x5616 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x56B0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x56D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x56E4 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x56B7 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x570F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1972 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x574A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x153F DUP3 DUP5 PUSH2 0x572E JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x576D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5778 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x5796 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x57AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x57C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x57DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x57E9 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x57F9 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x581A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5826 DUP9 DUP3 DUP10 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5855 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5860 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5881 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5778 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x58A0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x58AB DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x58BB DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x58CB DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x58E2 DUP2 PUSH2 0x5616 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5902 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x590D DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x591D DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5941 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x594C DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x595C DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x5973 DUP2 PUSH2 0x5837 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5990 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x599B DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x59B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x59C1 DUP7 DUP3 DUP8 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x59E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x59EB DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x59FB DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5695 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5A1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5A27 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5A41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x5A51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5A60 DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x5583 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5A7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5A88 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5A98 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5ABE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5AE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5AEE DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5AFE DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x5B0E DUP2 PUSH2 0x56B7 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5B2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1972 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5B58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x5B63 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x5B73 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x5B83 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x1343 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5BB8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5B9B JUMP JUMPDEST DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD SWAP2 PUSH2 0x5BEB SWAP1 DUP5 ADD DUP3 PUSH2 0x572E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5C2C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5C41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5C4D DUP9 DUP3 DUP10 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5C6B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5C77 DUP9 DUP3 DUP10 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x58E2 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5C9D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5CAF DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5695 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5CD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5CE7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5CF3 DUP8 DUP3 DUP9 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5D11 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5D1D DUP8 DUP3 DUP9 ADD PUSH2 0x5786 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5D3B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5D46 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5D6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5D79 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5A98 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5D9A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5DA5 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH2 0x5DB3 PUSH1 0x20 DUP5 ADD PUSH2 0x54FA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5DCD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5DF0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5DFB DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5E1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5E28 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5E38 DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH2 0x5E46 PUSH1 0x40 DUP6 ADD PUSH2 0x54FA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5E61 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5E6C DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5E86 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x5E96 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5EAB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x5EBF JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5F27 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x5F12 DUP6 DUP4 MLOAD PUSH2 0x552F JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x5EF6 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5F44 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5F4F DUP2 PUSH2 0x5616 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x56F4 DUP2 PUSH2 0x5B9B JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x5FB1 JUMPI PUSH2 0x5FB1 PUSH2 0x5F76 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x5FDE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x5FFC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x1972 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x572E JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x6046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x6052 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x6090 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x60A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1972 DUP2 PUSH2 0x5616 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x60F8 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x572E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6133 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1972 DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x6167 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x6180 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x57C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x61A2 DUP3 DUP6 PUSH2 0x572E JUMP JUMPDEST PUSH2 0x1972 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x572E JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x61EA JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x61CE JUMPI PUSH2 0x61CE PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x61DC JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x61B3 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x6200 JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH2 0x620C JUMPI POP PUSH0 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x6222 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x622C JUMPI PUSH2 0x6248 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x153F JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x623D JUMPI PUSH2 0x623D PUSH2 0x5F76 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x153F JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x626B JUMPI POP DUP2 DUP2 EXP PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6277 PUSH0 NOT DUP5 DUP5 PUSH2 0x61AF JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x628A JUMPI PUSH2 0x628A PUSH2 0x5F76 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1972 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x61F2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x62C2 JUMPI PUSH2 0x62C2 PUSH2 0x62A0 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x62E6 JUMPI PUSH2 0x62E6 PUSH2 0x5F76 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6363 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x636E DUP2 PUSH2 0x5837 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x56F4 DUP2 PUSH2 0x56B7 JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x639A JUMPI PUSH2 0x639A PUSH2 0x5F76 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x63B8 JUMPI PUSH2 0x63B8 PUSH2 0x62A0 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x6090 JUMPI PUSH2 0x6090 PUSH2 0x5F76 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x63F7 JUMPI PUSH2 0x63F7 PUSH2 0x5F76 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x20C1 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x6423 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1BA1 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x642F JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x645B JUMPI PUSH2 0x645B PUSH2 0x556F JUMP JUMPDEST PUSH2 0x646F DUP2 PUSH2 0x6469 DUP5 SLOAD PUSH2 0x5FCA JUMP JUMPDEST DUP5 PUSH2 0x63FE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x64A1 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x648A JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x1BA1 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x64D0 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x64B0 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x64ED JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x6090 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x655A JUMPI PUSH2 0x655A PUSH2 0x62A0 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE 0xE1 DELEGATECALL PUSH30 0xB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE00C7F505B2F3 PUSH18 0xAE2175EE4913F4499E1F2633A7B5936321EE 0xD1 0xCD 0xAE 0xB6 GT MLOAD DUP2 0xD2 CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF000773E5 ORIGIN 0xDF 0xED 0xE9 0x1F DIV 0xB1 0x2A PUSH20 0xD3D2ACD361424F41F76B4FB79F090161E36B4E00 CREATE 0xC5 PUSH31 0x16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00A264 PUSH10 0x706673582212206AA3F0 0xD8 0xD0 MSTORE8 0xB4 SWAP10 LOG4 DUP1 0xA7 GAS 0xCF 0xDD 0x28 PUSH0 CODESIZE BYTE 0x4C SWAP7 0xD7 0xC2 0xBF LOG2 0xC JUMPDEST SAR 0x23 0xCC GASPRICE 0xB7 MSIZE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"2621:7590:71:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30956:393:73;;;;;;;;;;;;;:::i;:::-;;;160:25:81;;;148:2;133:18;30956:393:73;;;;;;;;17037:480;;;;;;;;;;-1:-1:-1;17037:480:73;;;;;:::i;:::-;;:::i;:::-;;;728:14:81;;721:22;703:41;;691:2;676:18;17037:480:73;563:187:81;2982:93:71;;;;;;;;;;-1:-1:-1;3816:10:73;2982:93:71;;2716:144:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10416:174:73:-;;;;;;;;;;-1:-1:-1;10416:174:73;;;;;:::i;:::-;;:::i;:::-;;7511:148:25;;;;;;;;;;-1:-1:-1;7511:148:25;;;;;:::i;:::-;;:::i;16698:310:73:-;;;;;;;;;;-1:-1:-1;16698:310:73;;;;;:::i;:::-;;:::i;16174:188::-;;;;;;;;;;-1:-1:-1;16174:188:73;;;;;:::i;:::-;-1:-1:-1;;;;;16332:18:73;16238:12;16332:18;;;:10;:18;;;;;:25;-1:-1:-1;;;16332:25:73;;;;;16174:188;;;;;;;;:::i;5210:186:24:-;;;;;;;;;;-1:-1:-1;5210:186:24;;;;;:::i;:::-;;:::i;8777:147:25:-;;;;;;;;;;-1:-1:-1;8777:147:25;;;;;:::i;:::-;;:::i;9443:88:71:-;;;;;;;;;;;;;:::i;3287:127::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;3287:127:71;;18811:203:73;;;;;;;;;;-1:-1:-1;18811:203:73;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;6731:33:81;;;6713:52;;6701:2;6686:18;18811:203:73;6569:202:81;3896:152:24;;;;;;;;;;-1:-1:-1;4027:14:24;;3896:152;;12420:357:73;;;;;;;;;;-1:-1:-1;12420:357:73;;;;;:::i;:::-;;:::i;9363:74:71:-;;;;;;;;;;;;;:::i;5847:172::-;;;;;;;;;;-1:-1:-1;5847:172:71;;;;;:::i;:::-;;:::i;:::-;;;7857:10:81;7845:23;;;7827:42;;7815:2;7800:18;5847:172:71;7683:192:81;34395:703:73;;;;;;;;;;-1:-1:-1;34395:703:73;;;;;:::i;:::-;;:::i;5988:244:24:-;;;;;;;;;;-1:-1:-1;5988:244:24;;;;;:::i;:::-;;:::i;5200:104:71:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;9390:32:81;;;9372:51;;9360:2;9345:18;5200:104:71;9226:203:81;3715:109:71;;;;;;:::i;:::-;;:::i;6612:221:25:-;;;;;;;;;;;;;:::i;:::-;;;9606:4:81;9594:17;;;9576:36;;9564:2;9549:18;6612:221:25;9434:184:81;8816:158:71;;;;;;:::i;:::-;;:::i;5310:105::-;;;;;;;;;;;;;:::i;25782:534:73:-;;;;;;;;;;-1:-1:-1;25782:534:73;;;;;:::i;:::-;;:::i;3186:95:71:-;;;;;;;;;;-1:-1:-1;3263:11:71;3186:95;;2670:72;;;;;;;;;;;;-1:-1:-1;;;2670:72:71;;6877:153:25;;;;;;;;;;;;;:::i;6025:189:71:-;;;;;;;;;;-1:-1:-1;6025:189:71;;;;;:::i;:::-;;:::i;3705:65:73:-;;;;;;;;;;;;3754:16;3705:65;;3954:57:71;;;:::i;7708:108:25:-;;;;;;;;;;-1:-1:-1;7708:108:25;;;;;:::i;:::-;-1:-1:-1;;;7792:17:25;7708:108;5680:161:71;;;;;;;;;;-1:-1:-1;5680:161:71;;;;;:::i;:::-;;:::i;7130:122::-;;;;;;:::i;:::-;;:::i;4161:214:23:-;;;;;;:::i;:::-;;:::i;9930:127:71:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;13097:31:81;;;13079:50;;13067:2;13052:18;9930:127:71;12935:200:81;3708:134:23;;;;;;;;;;;;;:::i;3081:99:71:-;;;;;;;;;;-1:-1:-1;3874:5:73;3081:99:71;;9238:119;;;:::i;1955:137:21:-;;;;;;;;;;-1:-1:-1;1955:137:21;;;;;:::i;:::-;;:::i;3420:113:71:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;3420:113:71;;20041:176:73;;;;;;;;;;-1:-1:-1;20041:176:73;;;;;:::i;:::-;;:::i;3830:53:71:-;;;:::i;5070:124::-;;;;;;;;;;-1:-1:-1;3606:2:21;5070:124:71;5200:104;8326:119;;;;;;:::i;:::-;;:::i;9168:392:25:-;;;;;;;;;;-1:-1:-1;9168:392:25;;;;;:::i;:::-;;:::i;4106:171:24:-;;;;;;;;;;-1:-1:-1;4106:171:24;;;;;:::i;:::-;;:::i;30498:159:73:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;30639:12:73;-1:-1:-1;;;30639:12:73;;;;30498:159;;7022:102:71;;;;;;:::i;:::-;;:::i;1747:107:21:-;;;;;;;;;;-1:-1:-1;1830:17:21;1747:107;;4512:148:71;;;;;;:::i;:::-;;:::i;6220:180::-;;;;;;:::i;:::-;;:::i;3889:59::-;;;:::i;35641:476:73:-;;;;;;;;;;-1:-1:-1;35641:476:73;;;;;:::i;:::-;;:::i;4017:82:71:-;;;;;;:::i;:::-;;:::i;6833:183::-;;;;;;:::i;:::-;;:::i;4178:134::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;4270:35:71;;;;;;;-1:-1:-1;;;;;;;;;;;4270:35:71;-1:-1:-1;;;;;4270:35:71;;;;;;-1:-1:-1;;;4270:35:71;;;;;;;;;;;4178:134;;16601:58:81;;;16701:24;;16697:35;16675:20;;;16668:65;;;;16574:18;4178:134:71;16391:348:81;8677:133:71;;;;;;:::i;:::-;;:::i;29035:262:73:-;;;;;;;;;;-1:-1:-1;29035:262:73;;;;;:::i;:::-;;:::i;4105:67:71:-;;;:::i;7258:168::-;;;;;;;;;;-1:-1:-1;7258:168:71;;;;;:::i;:::-;;:::i;4666:114::-;;;;;;:::i;:::-;;:::i;4786:164::-;;;;;;;;;;-1:-1:-1;4786:164:71;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9603:380:25:-;;;;;;;;;;-1:-1:-1;9603:380:25;;;;;:::i;:::-;;:::i;2973:148:24:-;;;;;;;;;;;;;:::i;4318:188:71:-;;;;;;:::i;:::-;;:::i;7606:161::-;;;;;;:::i;:::-;;:::i;3608:101::-;;;;;;:::i;:::-;;:::i;30661:254:73:-;;;;;;;;;;-1:-1:-1;30661:254:73;;;;;:::i;:::-;;:::i;12781:112::-;;;;;;;;;;;;;:::i;4472:178:24:-;;;;;;;;;;-1:-1:-1;4472:178:24;;;;;:::i;:::-;;:::i;3512:55:73:-;;;;;;;;;;-1:-1:-1;3512:55:73;-1:-1:-1;;;;;;3512:55:73;;33375:317;;;;;;;;;;-1:-1:-1;33375:317:73;;;;;:::i;:::-;;:::i;1819:58:23:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1819:58:23;;;;;5421:100:71;;;;;;;;;;;;;:::i;8980:147::-;;;;;;:::i;:::-;;:::i;8580:143:25:-;;;;;;;;;;-1:-1:-1;8580:143:25;;;;;:::i;:::-;;:::i;10030:413::-;;;;;;;;;;-1:-1:-1;10030:413:25;;;;;:::i;:::-;;:::i;7891:137:71:-;;;;;;:::i;:::-;;:::i;10488:405:25:-;;;;;;;;;;-1:-1:-1;10488:405:25;;;;;:::i;:::-;;:::i;15080:384:73:-;;;;;;;;;;-1:-1:-1;15080:384:73;;;;;:::i;:::-;;:::i;13937:599::-;;;;;;;;;;-1:-1:-1;13937:599:73;;;;;:::i;:::-;;:::i;24066:176::-;;;;;;;;;;-1:-1:-1;24066:176:73;;;;;:::i;:::-;;:::i;5527:147:71:-;;;;;;;;;;-1:-1:-1;5527:147:71;;;;;:::i;:::-;;:::i;7309:148:25:-;;;;;;;;;;-1:-1:-1;7309:148:25;;;;;:::i;:::-;;:::i;17871:902:73:-;;;;;;;;;;;;;:::i;10063:111:71:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;8560:40:22;-1:-1:-1;;;8560:40:22;;;;10063:111:71;5200:104;7432:168;;;;;;;;;;-1:-1:-1;7432:168:71;;;;;:::i;:::-;;:::i;8451:107::-;;;;;;:::i;:::-;;:::i;31353:196:73:-;;;;;;;;;;;;;:::i;31799:155::-;;;;;;;;;;-1:-1:-1;31799:155:73;;;;;:::i;:::-;;:::i;6406:264:71:-;;;;;;:::i;:::-;;:::i;32813:292:73:-;;;;;;;;;;-1:-1:-1;32813:292:73;;;;;:::i;:::-;;:::i;19249:754::-;;;;;;;;;;-1:-1:-1;19249:754:73;;;;;:::i;:::-;;:::i;31590:168::-;;;;;;;;;;-1:-1:-1;31590:168:73;;;;;:::i;:::-;;:::i;4708:195:24:-;;;;;;;;;;-1:-1:-1;4708:195:24;;;;;:::i;:::-;;:::i;8564:107:71:-;;;;;;:::i;:::-;;:::i;6676:151::-;;;;;;;;;;-1:-1:-1;6676:151:71;;;;;:::i;:::-;;:::i;27509:965:73:-;;;;;;;;;;-1:-1:-1;27509:965:73;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19050:163::-;;;;;;;;;;-1:-1:-1;19050:163:73;;;;;:::i;:::-;;:::i;29900:594::-;;;;;;;;;;-1:-1:-1;29900:594:73;;;;;:::i;:::-;;:::i;7773:112:71:-;;;;;;;;;;-1:-1:-1;7824:10:71;7773:112;5200:104;8197:123;;;;;;:::i;:::-;;:::i;3539:63::-;;;:::i;9829:95::-;;;:::i;15749:421:73:-;;;;;;;;;;-1:-1:-1;15749:421:73;;;;;:::i;:::-;;:::i;9735:88:71:-;;;;;;;;;;;;;:::i;8034:157::-;;;;;;:::i;:::-;;:::i;4956:108::-;;;;;;;;;;-1:-1:-1;4956:108:71;;;;;:::i;:::-;7130:122;;30956:393:73;31009:14;-1:-1:-1;;;;;;;;;;;31107:10:73;:8;:10::i;:::-;31133:13;;31163:38;;-1:-1:-1;;;31163:38:73;;31195:4;31163:38;;;9372:51:81;31098:19:73;;-1:-1:-1;;;;;;31133:13:73;;:29;;:13;;31163:23;;9345:18:81;;31163:38:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31133:69;;;;;;;;;;;;;160:25:81;;148:2;133:18;;14:177;31133:69:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31123:79;;;;:::i;:::-;31212:12;;31123:79;;-1:-1:-1;31227:1:73;-1:-1:-1;;;31212:12:73;;;;;:16;31208:137;;;31264:12;;31256:21;;-1:-1:-1;;;31264:12:73;;;;31256:21;:::i;:::-;31238:40;;;;:::i;:::-;;;31025:324;30956:393;:::o;31208:137::-;31324:12;;31299:39;;-1:-1:-1;;;31324:12:73;;;;31299:39;;:::i;17037:480::-;17122:4;-1:-1:-1;;;;;;17147:48:73;;-1:-1:-1;;;17147:48:73;;:104;;-1:-1:-1;;;;;;;17205:46:73;;-1:-1:-1;;;17205:46:73;17147:104;:162;;;-1:-1:-1;;;;;;;17261:48:73;;-1:-1:-1;;;17261:48:73;17147:162;:211;;;-1:-1:-1;;;;;;;17319:39:73;;-1:-1:-1;;;17319:39:73;17147:211;:268;;;-1:-1:-1;;;;;;;17368:47:73;;-1:-1:-1;;;17368:47:73;17147:268;:319;;;-1:-1:-1;;;;;;;17425:41:73;;-1:-1:-1;;;17425:41:73;17147:319;:365;;;-1:-1:-1;;;;;;;;;;862:40:65;;;17476:36:73;17134:378;17037:480;-1:-1:-1;;17037:480:73:o;2716:144:24:-;2846:7;2839:14;;2761:13;;-1:-1:-1;;;;;;;;;;;2064:20:24;2839:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2716:144;:::o;10416:174:73:-;-1:-1:-1;;;;;;;;;;;4302:15:22;;-1:-1:-1;;;4302:15:22;;;;4301:16;;-1:-1:-1;;;;;4348:14:22;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;-1:-1:-1;;;;;4790:16:22;4805:1;4790:16;:50;;;;-1:-1:-1;4818:4:22;4810:25;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;-1:-1:-1;;;4908:23:22;;;;;;;;;;;4851:91;4951:18;;-1:-1:-1;;4951:18:22;4968:1;4951:18;;;4979:67;;;;5013:22;;-1:-1:-1;;;;5013:22:22;-1:-1:-1;;;5013:22:22;;;4979:67;10535:50:73::1;10557:5;10564:7;10573:11;10535:21;:50::i;:::-;5070:14:22::0;5066:101;;;5100:23;;-1:-1:-1;;;;5100:23:22;;;5142:14;;-1:-1:-1;13079:50:81;;-1:-1:-1;;;;;;;;;;;5142:14:22;13067:2:81;13052:18;5142:14:22;;;;;;;5066:101;4092:1081;;;;;10416:174:73;;;:::o;7511:148:25:-;7581:7;7607:45;7624:6;7632:19;7607:16;:45::i;16698:310:73:-;16784:11;:16;;16799:1;16784:16;16776:44;;;;-1:-1:-1;;;16776:44:73;;;;;;;;;;;;16826:33;16862:24;16879:6;16862:16;:24::i;:::-;16927:21;;16897:65;;;16927:21;;;;27020:42:81;;27098:23;;;27093:2;27078:18;;27071:51;16927:21:73;;-1:-1:-1;;;;;;16897:65:73;;;;;26993:18:81;16897:65:73;;;;;;;16968:35;;-1:-1:-1;;16968:35:73;;;;;;;;;;;;-1:-1:-1;16698:310:73:o;5210:186:24:-;5283:4;5299:13;5315:12;:10;:12::i;:::-;5299:28;;5337:31;5346:5;5353:7;5362:5;5337:8;:31::i;:::-;-1:-1:-1;5385:4:24;;5210:186;-1:-1:-1;;;5210:186:24:o;8777:147:25:-;8847:7;8873:44;8890:6;8898:18;8873:16;:44::i;9443:88:71:-;9498:26;:24;:26::i;:::-;9443:88::o;18811:203:73:-;18947:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9390:32:81;;;8269:71:73;;;9372:51:81;9345:18;;8269:71:73;;;;;;;;;-1:-1:-1;;;;18968:41:73;18811:203;-1:-1:-1;;;;;;18811:203:73:o;12420:357::-;12492:31;-1:-1:-1;;;;;;;;;;;12581:13:73;;12611:38;;-1:-1:-1;;;12611:38:73;;12643:4;12611:38;;;9372:51:81;12581:13:73;;-1:-1:-1;12559:19:73;;-1:-1:-1;;;;;12581:13:73;;;;:29;;:13;;12611:23;;9345:18:81;;12611:38:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12581:69;;;;;;;;;;;;;160:25:81;;148:2;133:18;;14:177;12581:69:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12559:91;;12690:11;12664:22;12674:11;12664:9;:22::i;:::-;:37;:46;;;;12705:5;12664:46;12656:83;;;;-1:-1:-1;;;12656:83:73;;;;;;;;;;;;12745:27;12760:11;12745:14;:27::i;:::-;12486:291;;12420:357;;:::o;9363:74:71:-;9411:19;:17;:19::i;5847:172::-;5930:16;5972:40;5993:8;6002:9;5972:20;:40::i;:::-;5958:54;5847:172;-1:-1:-1;;;5847:172:71:o;34395:703:73:-;34546:24;34563:6;34546:16;:24::i;:::-;;34599:16;34618:59;34630:6;34638:8;34648:9;34659:17;:6;:15;:17::i;:::-;34618:11;:59::i;:::-;34599:78;-1:-1:-1;34727:6:73;34599:78;34704:1;34691:14;;;34683:63;;;;-1:-1:-1;;;34683:63:73;;;;;27305:25:81;;;;27346:18;;;27339:34;27278:18;;34683:63:73;27133:246:81;34683:63:73;;;34800:15;34818:10;:8;:10::i;:::-;34800:28;;34848:6;34838:7;:16;34834:112;;;34904:16;34913:7;34904:6;:16;:::i;:::-;34872:27;34882:16;34891:7;34882:6;:16;:::i;:::-;34872:9;:27::i;:::-;:49;34864:75;;;;-1:-1:-1;;;34864:75:73;;;;;;;;;;;;34951:57;34988:11;35001:6;34966:7;:5;:7::i;:::-;-1:-1:-1;;;;;34951:36:73;;:57;:36;:57::i;:::-;35019:74;;;27667:10:81;27655:23;;;27637:42;;27715:23;;27710:2;27695:18;;27688:51;27755:18;;;27748:34;;;27813:2;27798:18;;27791:34;;;-1:-1:-1;;;;;27862:32:81;;;27856:3;27841:19;;27834:61;35019:74:73;;;;;27624:3:81;27609:19;35019:74:73;;;;;;;34540:558;;34395:703;;;;;:::o;5988:244:24:-;6075:4;6091:15;6109:12;:10;:12::i;:::-;6091:30;;6131:37;6147:4;6153:7;6162:5;6131:15;:37::i;:::-;6178:26;6188:4;6194:2;6198:5;6178:9;:26::i;:::-;-1:-1:-1;6221:4:24;;5988:244;-1:-1:-1;;;;5988:244:24:o;5200:104:71:-;5246:12;5279:18;:16;:18::i;:::-;5270:27;;5200:104;:::o;3715:109::-;3814:6;9372:33:73;9408:24;9425:6;9408:16;:24::i;:::-;9372:60;-1:-1:-1;9476:19:73;9453;;-1:-1:-1;;;9453:19:73;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;9522:23:73;9499:19;;-1:-1:-1;;;9499:19:73;;;;:46;;;;;;;;:::i;:::-;;9453:92;9577:19;;9569:6;;-1:-1:-1;;;9577:19:73;;;;;;9438:165;;;;-1:-1:-1;;;9438:165:73;;;;;;;;;:::i;:::-;;;9674:21;9698:10;:8;:10::i;:::-;9674:34;;9721:20;9744:10;:8;:10::i;:::-;9721:33;;9780:13;9765:12;:28;9761:111;;;9836:28;9852:12;9836:13;:28;:::i;:::-;9810:55;;-1:-1:-1;;;9810:55:73;;;;;;160:25:81;;148:2;133:18;;14:177;9761:111:73;9366:510;;;3715:109:71;;:::o;6612:221:25:-;6704:5;;-1:-1:-1;;;;;;;;;;;6721:47:25;-1:-1:-1;13626:5:25;6785:21;;:41;;;-1:-1:-1;;;6785:21:25;;;;:41;:::i;8816:158:71:-;8922:45;8937:5;8943:7;8951:5;8957:9;8922:14;:45::i;5310:105::-;5354:17;5392:16;:14;:16::i;:::-;5383:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5383:25:71;;5310:105;-1:-1:-1;;;;5310:105:71:o;25782:534:73:-;25907:19;25890:6;8411:33;8447:24;8464:6;8447:16;:24::i;:::-;8411:60;-1:-1:-1;8508:19:73;8485;;-1:-1:-1;;;8485:19:73;;;;:42;;;;;;;;:::i;:::-;8553:19;;8545:6;;-1:-1:-1;;;8553:19:73;;;;;;8485:42;8477:97;;;;-1:-1:-1;;;8477:97:73;;;;;;;;;:::i;:::-;;;8615:21;8639:10;:8;:10::i;:::-;8684:25;;8615:34;;-1:-1:-1;;;;8684:25:73;;-1:-1:-1;;;;;8684:25:73;8660:50;;8656:166;;;8738:25;;8720:61;;8730:50;;8767:13;;-1:-1:-1;;;8738:25:73;;-1:-1:-1;;;;;8738:25:73;8730:50;:::i;8720:61::-;;8805:10;:8;:10::i;:::-;8789:26;;8656:166;25934:57:::1;25951:12;:10;:12::i;:::-;25965:6:::0;25980:9:::1;25987:1;25985;25980:4:::0;;:9:::1;:::i;:::-;25973:17;::::0;::::1;:::i;:::-;25934:16;:57::i;:::-;26006:25;26026:4;;26006:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;26006:19:73;::::1;::::0;:25;-1:-1:-1;;26006:19:73::1;:25::i;:::-;25997:34;;26037:16;26067:6;26056:29;;;;;;;;;;;;:::i;:::-;26095:47;::::0;-1:-1:-1;;;26095:47:73;;::::1;::::0;::::1;160:25:81::0;;;26037:48:73;;-1:-1:-1;26154:4:73::1;::::0;-1:-1:-1;;;;;26111:11:73::1;26095:37;::::0;::::1;::::0;133:18:81;;26095:47:73::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26095:64:73::1;;26091:221;;26246:59;26263:12;:10;:12::i;:::-;26277:6:::0;-1:-1:-1;;;;;;26246:16:73::1;:59::i;:::-;25928:388;8834:20:::0;8857:10;:8;:10::i;:::-;8834:33;;8893:13;8878:12;:28;8874:431;;;9033:21;;8978:15;;8996:181;;9017:6;;9033:21;;9064:54;9033:21;9102:15;9064:14;:54::i;:::-;9128:41;9129:28;9145:12;9129:13;:28;:::i;:::-;9128:39;:41::i;8996:181::-;9220:22;;8978:199;;-1:-1:-1;8978:199:73;;-1:-1:-1;;;9220:22:73;;-1:-1:-1;;;;;9220:22:73;9193:51;;;;9185:113;;;;-1:-1:-1;;;9185:113:73;;;;;29491:25:81;;;;-1:-1:-1;;;;;29552:39:81;29532:18;;;29525:67;29464:18;;9185:113:73;29321:277:81;9185:113:73;;;8908:397;8874:431;8405:904;;;25782:534;;;;;;:::o;6877:153:25:-;-1:-1:-1;;;;;;;;;;;7014:8:25;-1:-1:-1;;;;;7014:8:25;;6877:153::o;6025:189:71:-;6123:15;6159:48;6181:6;6188:8;6197:9;6159:21;:48::i;:::-;6150:57;6025:189;-1:-1:-1;;;;6025:189:71:o;3954:57::-;-1:-1:-1;;;;;;;;;;;4302:15:22;;-1:-1:-1;;;4302:15:22;;;;4301:16;;-1:-1:-1;;;;;4348:14:22;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;-1:-1:-1;;;;;4790:16:22;4805:1;4790:16;:50;;;;-1:-1:-1;4818:4:22;4810:25;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;-1:-1:-1;;;4908:23:22;;;;;;;;;;;4851:91;4951:18;;-1:-1:-1;;4951:18:22;4968:1;4951:18;;;4979:67;;;;5013:22;;-1:-1:-1;;;;5013:22:22;-1:-1:-1;;;5013:22:22;;;4979:67;5070:14;5066:101;;;5100:23;;-1:-1:-1;;;;5100:23:22;;;5142:14;;-1:-1:-1;13079:50:81;;-1:-1:-1;;;;;;;;;;;5142:14:22;13067:2:81;13052:18;5142:14:22;;;;;;;4092:1081;;;;;3954:57:71:o;5680:161::-;5754:16;5796:38;5824:9;5796:27;:38::i;7130:122::-;7207:38;7238:6;7207:30;:38::i;4161:214:23:-;2655:13;:11;:13::i;:::-;4322:46:::1;4344:17;4363:4;4322:21;:46::i;:::-;4161:214:::0;;:::o;9930:127:71:-;9988:11;10020:30;-1:-1:-1;;;;;;;;;;;8325:39:22;-1:-1:-1;;;;;8325:39:22;;8243:128;3708:134:23;3777:7;2926:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3708:134:23;:::o;9238:119:71:-;9310:40;:38;:40::i;1955:137:21:-;1830:17;-1:-1:-1;;;;;2054:31:21;;;;;;;1955:137::o;20041:176:73:-;20150:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9390:32:81;;;8269:71:73;;;9372:51:81;9345:18;;8269:71:73;9226:203:81;8269:71:73;-1:-1:-1;;;;20171:41:73;20041:176;-1:-1:-1;;;;;20041:176:73:o;8326:119:71:-;8410:28;8424:4;8429:2;8432:5;8410:13;:28::i;:::-;8326:119;;;:::o;9168:392:25:-;9243:7;-1:-1:-1;;9432:14:25;9449:22;9464:6;9449:14;:22::i;:::-;9432:39;;9481:48;9490:12;:10;:12::i;:::-;9504:8;9514:6;9522;9481:8;:48::i;4106:171:24:-;-1:-1:-1;;;;;4250:20:24;4171:7;4250:20;;;-1:-1:-1;;;;;;;;;;;4250:20:24;;;;;;;4106:171::o;7022:102:71:-;7089:28;7110:6;7089:20;:28::i;4512:148::-;4603:50;4641:11;4603:37;:50::i;6220:180::-;6282:18;6327:23;6343:6;6327:15;:23::i;:::-;6312:38;;6365:28;6382:10;6365:28;;;;160:25:81;;148:2;133:18;;14:177;6365:28:71;;;;;;;;6220:180;;;:::o;35641:476:73:-;35742:24;35759:6;35742:16;:24::i;:::-;;35796:16;35815:60;35827:6;35835:8;35845:9;35857:17;:6;:15;:17::i;:::-;35856:18;;;:::i;35815:60::-;35796:79;-1:-1:-1;35927:6:73;35796:79;35902:1;35889:14;;;35881:65;;;;-1:-1:-1;;;35881:65:73;;;;;27305:25:81;;;;27346:18;;;27339:34;27278:18;;35881:65:73;27133:246:81;35881:65:73;;;35953:77;35994:12;:10;:12::i;:::-;36016:4;36023:6;35968:7;:5;:7::i;:::-;-1:-1:-1;;;;;35953:40:73;;:77;;:40;:77::i;:::-;36051:6;-1:-1:-1;;;;;36041:71:73;;36059:8;36069:9;36080:6;36088:9;36099:12;:10;:12::i;:::-;36041:71;;;27667:10:81;27655:23;;;27637:42;;27715:23;;;;27710:2;27695:18;;27688:51;27755:18;;;27748:34;;;;27813:2;27798:18;;27791:34;-1:-1:-1;;;;;27862:32:81;27856:3;27841:19;;27834:61;27624:3;27609:19;36041:71:73;;;;;;;35736:381;35641:476;;;;:::o;4017:82:71:-;-1:-1:-1;;;;;;;;;;;6431:15:22;;4088:7:71;;8870:21:22;-1:-1:-1;;;6431:15:22;;;;;:44;;-1:-1:-1;6450:14:22;;-1:-1:-1;;;;;6450:25:22;;;:14;;:25;;6431:44;6427:105;;;6498:23;;-1:-1:-1;;;6498:23:22;;;;;;;;;;;6427:105;6541:24;;-1:-1:-1;;6575:22:22;-1:-1:-1;;;;;6541:24:22;;6575:22;;;-1:-1:-1;;;6575:22:22;-1:-1:-1;;;;6618:23:22;;;6656:20;;13079:50:81;;;-1:-1:-1;;;;;;;;;;;6656:20:22;13067:2:81;13052:18;6656:20:22;;;;;;;;6291:392;4017:82:71;;:::o;6833:183::-;6957:52;6973:6;6980:8;6989:5;6995:6;7002;6957:15;:52::i;8677:133::-;8768:35;8783:5;8789:7;8797:5;8768:14;:35::i;29035:262:73:-;29168:19;29151:6;9372:33;9408:24;9425:6;9408:16;:24::i;:::-;9372:60;-1:-1:-1;9476:19:73;9453;;-1:-1:-1;;;9453:19:73;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;9522:23:73;9499:19;;-1:-1:-1;;;9499:19:73;;;;:46;;;;;;;;:::i;:::-;;9453:92;9577:19;;9569:6;;-1:-1:-1;;;9577:19:73;;;;;;9438:165;;;;-1:-1:-1;;;9438:165:73;;;;;;;;;:::i;:::-;;;9674:21;9698:10;:8;:10::i;:::-;9674:34;;29195:57:::1;29212:12;:10;:12::i;29195:57::-;29267:25;29287:4;;29267:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;29267:19:73;::::1;::::0;:25;-1:-1:-1;;29267:19:73::1;:25::i;:::-;29258:34;;9721:20:::0;9744:10;:8;:10::i;:::-;9721:33;;9780:13;9765:12;:28;9761:111;;;9836:28;9852:12;9836:13;:28;:::i;4105:67:71:-;6931:20:22;:18;:20::i;7258:168:71:-;7347:12;7380:39;7403:6;7410:8;7380:22;:39::i;4666:114::-;4740:33;4761:11;4740:20;:33::i;4786:164::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4913:30:71;4936:6;4913:22;:30::i;:::-;4896:47;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4896:47:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;;;4896:47:71;;;;;;;;-1:-1:-1;;;4896:47:71;;;;;;;;;;4786:164;-1:-1:-1;;4786:164:71:o;9603:380:25:-;9675:7;-1:-1:-1;;9858:14:25;9875:19;9887:6;9875:11;:19::i;:::-;9858:36;;9904:48;9913:12;:10;:12::i;:::-;9927:8;9937:6;9945;9904:8;:48::i;2973:148:24:-;3105:9;3098:16;;3020:13;;-1:-1:-1;;;;;;;;;;;2064:20:24;3098:16;;;:::i;4318:188:71:-;4445:54;4473:5;;4445:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4445:54:71;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4479:7:71;;-1:-1:-1;4479:7:71;;;;4445:54;;4479:7;;;;4445:54;;;;;;;;;-1:-1:-1;4487:11:71;;-1:-1:-1;4445:27:71;;-1:-1:-1;;4445:54:71:i;7606:161::-;7715:45;7730:6;7737:8;7746:6;7753;7715:14;:45::i;3608:101::-;3699:6;8411:33:73;8447:24;8464:6;8447:16;:24::i;:::-;8411:60;-1:-1:-1;8508:19:73;8485;;-1:-1:-1;;;8485:19:73;;;;:42;;;;;;;;:::i;:::-;8553:19;;8545:6;;-1:-1:-1;;;8553:19:73;;;;;;8485:42;8477:97;;;;-1:-1:-1;;;8477:97:73;;;;;;;;;:::i;:::-;;;8615:21;8639:10;:8;:10::i;:::-;8684:25;;8615:34;;-1:-1:-1;;;;8684:25:73;;-1:-1:-1;;;;;8684:25:73;8660:50;;8656:166;;;8738:25;;8720:61;;8730:50;;8767:13;;-1:-1:-1;;;8738:25:73;;-1:-1:-1;;;;;8738:25:73;8730:50;:::i;8720:61::-;;8805:10;:8;:10::i;:::-;8789:26;;8656:166;8834:20;8857:10;:8;:10::i;:::-;8834:33;;8893:13;8878:12;:28;8874:431;;;9033:21;;8978:15;;8996:181;;9017:6;;9033:21;;9064:54;9033:21;9102:15;9064:14;:54::i;8996:181::-;9220:22;;8978:199;;-1:-1:-1;8978:199:73;;-1:-1:-1;;;9220:22:73;;-1:-1:-1;;;;;9220:22:73;9193:51;;;;9185:113;;;;-1:-1:-1;;;9185:113:73;;;;;29491:25:81;;;;-1:-1:-1;;;;;29552:39:81;29532:18;;;29525:67;29464:18;;9185:113:73;29321:277:81;30661:254:73;30761:6;-1:-1:-1;;;;;;;;;;;30849:15:73;30761:6;30865:44;30881:6;30889:8;30899:9;30865:15;:44::i;:::-;30849:61;;;;;;;;;;;;30842:68;;;30661:254;;;;;:::o;12781:112::-;12826:8;-1:-1:-1;;;;;;;;;;;12849:27:73;:39;-1:-1:-1;;;;;12849:39:73;;12781:112;-1:-1:-1;12781:112:73:o;4472:178:24:-;4541:4;4557:13;4573:12;:10;:12::i;:::-;4557:28;;4595:27;4605:5;4612:2;4616:5;4595:9;:27::i;33375:317:73:-;-1:-1:-1;;33441:6:73;:27;33437:134;;33487:10;:8;:10::i;:::-;33478:19;;33437:134;;;33536:10;:8;:10::i;:::-;33526:6;:20;;33518:46;;;;-1:-1:-1;;;33518:46:73;;;;;;;;;;;;33576:31;-1:-1:-1;;;;;;;;;;;33643:13:73;;:44;;-1:-1:-1;;;33643:44:73;;;;;30127:25:81;;;33681:4:73;30168:18:81;;;30161:60;33643:13:73;;-1:-1:-1;;;;;;33643:13:73;;:21;;30100:18:81;;33643:44:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5421:100:71:-;5465:12;5498:16;:14;:16::i;8980:147::-;9078:42;9100:5;9106:7;9114:5;9078:21;:42::i;8580:143:25:-;8646:7;8672:44;8689:6;8697:18;8672:16;:44::i;10030:413::-;10121:7;10140:17;10160:18;10172:5;10160:11;:18::i;:::-;10140:38;;10201:9;10192:6;:18;10188:108;;;10260:5;10267:6;10275:9;10233:52;;-1:-1:-1;;;10233:52:25;;;;;;;;;;:::i;10188:108::-;10306:14;10323:23;10339:6;10323:15;:23::i;:::-;10306:40;;10356:56;10366:12;:10;:12::i;:::-;10380:8;10390:5;10397:6;10405;10356:9;:56::i;:::-;10430:6;10030:413;-1:-1:-1;;;;;10030:413:25:o;7891:137:71:-;7988:33;8007:5;;7988:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7988:33:71;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8013:7:71;;-1:-1:-1;8013:7:71;;;;7988:33;;8013:7;;;;7988:33;;;;;;;;;-1:-1:-1;7988:18:71;;-1:-1:-1;;;7988:33:71:i;10488:405:25:-;10577:7;10596:17;10616:16;10626:5;10616:9;:16::i;:::-;10596:36;;10655:9;10646:6;:18;10642:106;;;10712:5;10719:6;10727:9;10687:50;;-1:-1:-1;;;10687:50:25;;;;;;;;;;:::i;10642:106::-;10758:14;10775:21;10789:6;10775:13;:21::i;:::-;10758:38;;10806:56;10816:12;:10;:12::i;:::-;10830:8;10840:5;10847:6;10855;10806:9;:56::i;15080:384:73:-;15177:33;15213:24;15230:6;15213:16;:24::i;:::-;15276:22;;15248:103;;;-1:-1:-1;;;;;;;;15276:22:73;;;;30461:58:81;;30550:2;30535:18;;30528:34;;;-1:-1:-1;;;15311:25:73;;;;;;30578:18:81;;;30571:67;30669:2;30654:18;;30647:34;;;15276:22:73;;-1:-1:-1;;;;;;15248:103:73;;;;;30448:3:81;30433:19;15248:103:73;;;;;;;15382:20;:9;:18;:20::i;:::-;15357:45;;-1:-1:-1;;;;;15357:45:73;;;;-1:-1:-1;;;15357:45:73;-1:-1:-1;;15357:45:73;;;;;;15436:23;:12;:21;:23::i;:::-;15408:51;;-1:-1:-1;;;;;15408:51:73;;;;-1:-1:-1;;;15408:51:73;-1:-1:-1;;;;15408:51:73;;;;;;-1:-1:-1;;;15080:384:73:o;13937:599::-;-1:-1:-1;;;;;14148:18:73;;14045:31;14148:18;;;:10;:18;;;;;14180:19;;-1:-1:-1;;;;;;;;;;;5631:29:73;14045:31;-1:-1:-1;;;14180:19:73;;;;:44;;;;;;;;:::i;:::-;;14172:76;;;;-1:-1:-1;;;14172:76:73;;;;;;;;;;;;14262:8;:13;;14274:1;14262:13;14254:41;;;;-1:-1:-1;;;14254:41:73;;;;;;;;;;;;14322:165;;;;;;;;;;;;;14351:19;14322:165;;;;;;;14415:20;:9;:18;:20::i;:::-;-1:-1:-1;;;;;14322:165:73;;;;;14457:23;:12;:21;:23::i;:::-;-1:-1:-1;;;;;14322:165:73;;;-1:-1:-1;;;;;14301:18:73;;;;;;:10;;;:18;;;;;;;;:186;;;;;;;;-1:-1:-1;;14301:186:73;;;;;;;;;;:18;;;;-1:-1:-1;;14301:186:73;;-1:-1:-1;;;14301:186:73;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;14301:186:73;;;;;;;;;;;;-1:-1:-1;;;;;;14301:186:73;;;-1:-1:-1;;;;;;;;14301:186:73;;;;-1:-1:-1;;;;14301:186:73;;-1:-1:-1;;;14301:186:73;;;;;;;;;;;14498:33;-1:-1:-1;;;;;14498:33:73;;;;;;;14518:12;;14498:33;:::i;:::-;;;;;;;;14039:497;;13937:599;;;;:::o;24066:176::-;24198:34;;-1:-1:-1;;;;;;31441:2:81;31437:15;;;31433:53;24198:34:73;;;31421:66:81;-1:-1:-1;;;;;;31517:33:81;;31503:12;;;31496:55;24146:6:73;;24167:70;;31567:12:81;;24198:34:73;;;;;;;;;;;;24188:45;;;;;;24235:1;24167:20;:70::i;5527:147:71:-;5601:12;5634:33;5650:9;5660:6;5634:15;:33::i;7309:148:25:-;7379:7;7405:45;7422:6;7430:19;7405:16;:45::i;17871:902:73:-;17910:16;17929:7;:5;:7::i;:::-;17910:26;;17942:16;17969:11;-1:-1:-1;;;;;17969:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17942:50;;18018:8;-1:-1:-1;;;;;18006:20:73;:8;-1:-1:-1;;;;;18006:20:73;;17998:49;;;;-1:-1:-1;;;17998:49:73;;;;;;;;;;;;18061:10;:8;:10::i;:::-;:15;18053:54;;;;-1:-1:-1;;;18053:54:73;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18188:13:73;;:21;;;-1:-1:-1;;;18188:21:73;;;;-1:-1:-1;;;;;18188:33:73;;;;:13;;:19;;:21;;;;;;;;;;;;;;:13;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;18188:33:73;;18180:79;;;;-1:-1:-1;;;18180:79:73;;;;;;;;;;;;18265:31;-1:-1:-1;;;;;;;;;;;18328:34:73;;-1:-1:-1;;;;;;18328:34:73;-1:-1:-1;;;;;18328:34:73;;;;;;;;;18484:13;;18443:59;;-1:-1:-1;;;18443:59:73;;18484:13;;;18443:59;;;32062:51:81;-1:-1:-1;32129:18:81;;;32122:34;18328::73;;-1:-1:-1;18443:32:73;;;;;32035:18:81;;18443:59:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18549:13:73;;18508:75;;-1:-1:-1;;;18508:75:73;;-1:-1:-1;;;;;18549:13:73;;;18508:75;;;32062:51:81;-1:-1:-1;;32129:18:81;;;32122:34;18508:32:73;;;;;;32035:18:81;;18508:75:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18589:57:73;;-1:-1:-1;;;18589:57:73;;-1:-1:-1;;;;;18630:11:73;32080:32:81;;18589:57:73;;;32062:51:81;-1:-1:-1;32129:18:81;;;32122:34;18589:32:73;;;;;32035:18:81;;18589:57:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18652:73:73;;-1:-1:-1;;;18652:73:73;;-1:-1:-1;;;;;18693:11:73;32080:32:81;;18652:73:73;;;32062:51:81;-1:-1:-1;;32129:18:81;;;32122:34;18652:32:73;;;;;32035:18:81;;18652:73:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18736:32:73;;;-1:-1:-1;;;;;32888:32:81;;;32870:51;;32957:32;;32952:2;32937:18;;32930:60;18736:32:73;;32843:18:81;18736:32:73;;;;;;;17904:869;;;;17871:902::o;7432:168:71:-;7521:12;7554:39;7577:6;7584:8;7554:22;:39::i;8451:107::-;8525:26;8537:7;8545:5;8525:11;:26::i;31353:196:73:-;31402:7;;-1:-1:-1;;;;;;;;;;;31504:13:73;;:40;;-1:-1:-1;;;31504:40:73;;31538:4;31504:40;;;9372:51:81;31504:13:73;;-1:-1:-1;;;;;;31504:13:73;;:25;;9345:18:81;;31504:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31491:10;:8;:10::i;:::-;:53;;;;:::i;31799:155::-;31873:7;31895:54;31904:24;31922:5;31904:17;:24::i;:::-;31930:18;:16;:18::i;:::-;31895:8;:54::i;6406:264:71:-;6517:19;6565:51;6583:6;6590:8;6599:9;6609:6;6565:17;:51::i;:::-;6548:68;;6631:32;6650:12;6631:32;;;;160:25:81;;148:2;133:18;;14:177;6631:32:71;;;;;;;;6406:264;;;;;;:::o;32813:292:73:-;-1:-1:-1;;32880:6:73;:27;32876:166;;32917:31;-1:-1:-1;;;;;;;;;;;32995:13:73;;:40;;-1:-1:-1;;;32995:40:73;;33029:4;32995:40;;;9372:51:81;32995:13:73;;-1:-1:-1;;;;;;32995:13:73;;:25;;9345:18:81;;32995:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32986:49;;32909:133;32876:166;33076:6;33055:17;33065:6;33055:9;:17::i;:::-;:27;33047:53;;;;-1:-1:-1;;;33047:53:73;;;;;;;;;;;19249:754;19389:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9390:32:81;;;8269:71:73;;;9372:51:81;9345:18;;8269:71:73;9226:203:81;8269:71:73;;19555:33:::1;19591:26;19608:8;19591:16;:26::i;:::-;19555:62:::0;-1:-1:-1;19661:19:73::1;19638::::0;;-1:-1:-1;;;19638:19:73;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;:92;;;-1:-1:-1::0;19707:23:73::1;19684:19:::0;;-1:-1:-1;;;19684:19:73;::::1;;;:46;::::0;::::1;;;;;;:::i;:::-;;19638:92;19764:19:::0;;19754:8;;-1:-1:-1;;;19764:19:73;;::::1;;;::::0;19623:167:::1;;;;-1:-1:-1::0;;;19623:167:73::1;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19831:21:73;;19796:150:::1;::::0;19815:8;;19831:21:::1;;19860:54;19831:21:::0;19898:15:::1;19860:14;:54::i;:::-;19923:17;:6;:15;:17::i;19796:150::-;-1:-1:-1::0;;;;19959:39:73;19249:754;-1:-1:-1;;;;;;19249:754:73:o;31590:168::-;31662:7;31684:69;31693:22;31709:5;31693:15;:22::i;:::-;31717:35;31733:18;:16;:18::i;4708:195:24:-;-1:-1:-1;;;;;4867:20:24;;;4788:7;4867:20;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;4708:195::o;8564:107:71:-;8638:26;8650:7;8658:5;8638:11;:26::i;6676:151::-;6774:46;6797:6;6804;6811:8;6774:22;:46::i;27509:965:73:-;27641:21;27624:6;8411:33;8447:24;8464:6;8447:16;:24::i;:::-;8411:60;-1:-1:-1;8508:19:73;8485;;-1:-1:-1;;;8485:19:73;;;;:42;;;;;;;;:::i;:::-;8553:19;;8545:6;;-1:-1:-1;;;8553:19:73;;;;;;8485:42;8477:97;;;;-1:-1:-1;;;8477:97:73;;;;;;;;;:::i;:::-;;;8615:21;8639:10;:8;:10::i;:::-;8684:25;;8615:34;;-1:-1:-1;;;;8684:25:73;;-1:-1:-1;;;;;8684:25:73;8660:50;;8656:166;;;8738:25;;8720:61;;8730:50;;8767:13;;-1:-1:-1;;;8738:25:73;;-1:-1:-1;;;;;8738:25:73;8730:50;:::i;8720:61::-;;8805:10;:8;:10::i;:::-;8789:26;;8656:166;27670:19:::1;::::0;27740:4;-1:-1:-1;;;;;27728:24:73;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27719:33;;27763:9;27758:712;27774:15:::0;;::::1;27758:712;;;27804:15;27829:4;;27834:1;27829:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;27839:1:::1;::::0;27837::::1;::::0;27829:12:::1;:::i;:::-;27822:20;::::0;::::1;:::i;:::-;27804:38:::0;-1:-1:-1;27854:6:73;;;:34:::1;;-1:-1:-1::0;;;;;;;27864:24:73;;::::1;::::0;;::::1;;;27854:34;27850:211;;;27971:48;27988:12;:10;:12::i;:::-;28002:6;28010:8;27971:16;:48::i;:::-;28044:8;28029:23;;27850:211;28080:28;28100:4;;28105:1;28100:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;28080:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;28080:19:73;::::1;::::0;:28;-1:-1:-1;;28080:19:73::1;:28::i;:::-;28068:6;28075:1;28068:9;;;;;;;;:::i;:::-;;;;;;:40;;;;28121:5;28116:348;;28138:16;28168:6;28175:1;28168:9;;;;;;;;:::i;:::-;;;;;;;28157:32;;;;;;;;;;;;:::i;:::-;28203:47;::::0;-1:-1:-1;;;28203:47:73;;::::1;::::0;::::1;160:25:81::0;;;28138:51:73;;-1:-1:-1;28262:4:73::1;::::0;-1:-1:-1;;;;;28219:11:73::1;28203:37;::::0;::::1;::::0;133:18:81;;28203:47:73::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28203:64:73::1;;28199:257;;28362:59;28379:12;:10;:12::i;:::-;28393:6:::0;-1:-1:-1;;;;;;28362:16:73::1;:59::i;:::-;28441:4;28433:12;;28199:257;28128:336;28116:348;-1:-1:-1::0;27791:3:73::1;;27758:712;;;;27664:810;;8834:20:::0;8857:10;:8;:10::i;19050:163::-;19149:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9390:32:81;;;8269:71:73;;;9372:51:81;9345:18;;8269:71:73;9226:203:81;8269:71:73;-1:-1:-1;;;;19170:38:73;19050:163;-1:-1:-1;;;;19050:163:73:o;29900:594::-;30040:21;30023:6;9372:33;9408:24;9425:6;9408:16;:24::i;:::-;9372:60;-1:-1:-1;9476:19:73;9453;;-1:-1:-1;;;9453:19:73;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;9522:23:73;9499:19;;-1:-1:-1;;;9499:19:73;;;;:46;;;;;;;;:::i;:::-;;9453:92;9577:19;;9569:6;;-1:-1:-1;;;9577:19:73;;;;;;9438:165;;;;-1:-1:-1;;;9438:165:73;;;;;;;;;:::i;:::-;;;9674:21;9698:10;:8;:10::i;:::-;9674:34;-1:-1:-1;30069:19:73::1;30115:4:::0;-1:-1:-1;;;;;30103:24:73;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30094:33;;30138:9;30133:357;30149:15:::0;;::::1;30133:357;;;30179:15;30204:4;;30209:1;30204:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;30214:1:::1;::::0;30212::::1;::::0;30204:12:::1;:::i;:::-;30197:20;::::0;::::1;:::i;:::-;30179:38:::0;-1:-1:-1;30229:6:73;;;:34:::1;;-1:-1:-1::0;;;;;;;30239:24:73;;::::1;::::0;;::::1;;;30229:34;30225:211;;;30346:48;30363:12;:10;:12::i;:::-;30377:6;30385:8;30346:16;:48::i;:::-;30419:8;30404:23;;30225:211;30455:28;30475:4;;30480:1;30475:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;30455:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;30455:19:73;::::1;::::0;:28;-1:-1:-1;;30455:19:73::1;:28::i;:::-;30443:6;30450:1;30443:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:40;-1:-1:-1;30166:3:73::1;;30133:357;;;;30063:431;9721:20:::0;9744:10;:8;:10::i;8197:123:71:-;8283:30;8299:4;8304:2;8307:5;8283:15;:30::i;3539:63::-;8277:10:73;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9390:32:81;;;8269:71:73;;;9372:51:81;9345:18;;8269:71:73;9226:203:81;9829:95:71;9889:28;:26;:28::i;15749:421:73:-;15944:21;15931:9;:34;;;;;;;;:::i;:::-;;15923:69;;;;-1:-1:-1;;;15923:69:73;;;;;;;;;;;;15998:33;16034:24;16051:6;16034:16;:24::i;:::-;15998:60;;16089:6;-1:-1:-1;;;;;16069:59:73;;16097:12;:19;;;;;;;;;;;;16118:9;16069:59;;;;;;;:::i;:::-;;;;;;;;16134:31;;16156:9;;16134:12;;-1:-1:-1;;16134:31:73;-1:-1:-1;;;16156:9:73;16134:31;;;;;;;;:::i;:::-;;;;;;15823:347;15749:421;;:::o;8034:157:71:-;8141:43;8170:5;;8141:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8141:43:71;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8176:7:71;;-1:-1:-1;8176:7:71;;;;8141:43;;8176:7;;;;8141:43;;;;;;;;;-1:-1:-1;8141:28:71;;-1:-1:-1;;;8141:43:71:i;20947:118:73:-;20990:7;21027;:5;:7::i;:::-;21012:48;;-1:-1:-1;;;21012:48:73;;21054:4;21012:48;;;9372:51:81;-1:-1:-1;;;;;21012:33:73;;;;;;;9345:18:81;;21012:48:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10645:348::-;6931:20:22;:18;:20::i;:::-;10790:24:73::1;:22;:24::i;:::-;10820:14;10845:11;-1:-1:-1::0;;;;;10845:20:73::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10820:48;;10874:30;10896:6;10874:14;:30::i;:::-;10910:28;10923:5;10930:7;10910:12;:28::i;:::-;10944:44;10976:11;10944:31;:44::i;11354:213:25:-:0;11451:7;11477:83;11491:13;:11;:13::i;:::-;:17;;11507:1;11491:17;:::i;:::-;11526:23;13626:5;11526:2;:23;:::i;:::-;4027:14:24;;11510:39:25;;;;:::i;:::-;11477:6;;:83;11551:8;11477:13;:83::i;12988:294:73:-;-1:-1:-1;;;;;13176:18:73;;13053:33;13176:18;;;:10;:18;;;;;13208:19;;13176:18;;-1:-1:-1;;;;;;;;;;;5631:29:73;-1:-1:-1;;;13208:19:73;;;;:44;;;;;;;;:::i;:::-;;;13269:6;13200:77;;;;;-1:-1:-1;;;13200:77:73;;-1:-1:-1;;;;;9390:32:81;;;13200:77:73;;;9372:51:81;9345:18;;13200:77:73;9226:203:81;13200:77:73;;13088:194;12988:294;;;:::o;20560:166::-;20661:7;20683:38;:36;:38::i;10001:128:24:-;10085:37;10094:5;10101:7;10110:5;10117:4;10085:8;:37::i;11017:213:25:-;11114:7;11140:83;11170:23;11114:7;11170:2;:23;:::i;:::-;4027:14:24;;11154:39:25;;;;:::i;:::-;11195:13;:11;:13::i;:::-;:17;;11211:1;11195:17;:::i;5032:213:23:-;5106:4;-1:-1:-1;;;;;5115:6:23;5098:23;;5094:145;;5199:29;;-1:-1:-1;;;5199:29:23;;;;;;;;;;;22973:292:73;23026:18;;-1:-1:-1;;;;;;;;;;;23149:13:73;;:40;;-1:-1:-1;;;23149:40:73;;23183:4;23149:40;;;9372:51:81;23149:13:73;;-1:-1:-1;23132:58:73;;23141:6;;-1:-1:-1;;;;;23149:13:73;;:25;;9345:18:81;;23149:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23132:58::-;23196:13;;:64;;-1:-1:-1;;;23196:64:73;;;;;35622:25:81;;;23239:4:73;35663:18:81;;;35656:60;;;35732:18;;;35725:60;23119:71:73;;-1:-1:-1;;;;;;23196:13:73;;:22;;35595:18:81;;23196:64:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11319:745::-;-1:-1:-1;;;;;11388:34:73;;11380:67;;;;-1:-1:-1;;;11380:67:73;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;11788:13:73;;-1:-1:-1;;;;;11807:27:73;;;-1:-1:-1;;;;;;11807:27:73;;;;;11788:13;11844:31;;11840:90;;11892:7;:5;:7::i;:::-;11877:53;;-1:-1:-1;;;11877:53:73;;-1:-1:-1;;;;;32080:32:81;;;11877:53:73;;;32062:51:81;11928:1:73;32129:18:81;;;32122:34;11877:31:73;;;;;;;32035:18:81;;11877:53:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11840:90;11951:7;:5;:7::i;:::-;11936:72;;-1:-1:-1;;;11936:72:73;;-1:-1:-1;;;;;32080:32:81;;;11936:72:73;;;32062:51:81;-1:-1:-1;;32129:18:81;;;32122:34;11936:31:73;;;;;;;32035:18:81;;11936:72:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;12019:40:73;;;-1:-1:-1;;;;;32888:32:81;;;32870:51;;32957:32;;32952:2;32937:18;;32930:60;12019:40:73;;32843:18:81;12019:40:73;32696:300:81;4603:312:23;4683:4;-1:-1:-1;;;;;4692:6:23;4675:23;;;:120;;;4789:6;-1:-1:-1;;;;;4753:42:23;:32;:30;:32::i;:::-;-1:-1:-1;;;;;4753:42:23;;;4675:120;4658:251;;;4869:29;;-1:-1:-1;;;4869:29:23;;;;;;;;;;;22503:222:73;22586:16;3754;22618:35;;;;22617:103;;22699:20;;;;:9;:20;:::i;:::-;22617:103;;;22657:32;22679:9;22657:21;:32::i;34380:314:68:-;34436:6;-1:-1:-1;;;;;34557:5:68;:33;34553:105;;;34613:34;;-1:-1:-1;;;34613:34:68;;;;;160:25:81;;;133:18;;34613:34:68;14:177:81;34553:105:68;-1:-1:-1;34681:5:68;34380:314::o;23269:468:73:-;23394:19;-1:-1:-1;;;;;;;;;;;23394:19:73;23506:44;23522:6;23530:8;23540:9;23506:15;:44::i;:::-;23488:62;;23596:6;23571:1;:15;;:21;23587:4;23571:21;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;-1:-1:-1;23608:29:73;;23571:31;;-1:-1:-1;23630:6:73;;-1:-1:-1;23608:1:73;;:12;;:29;;23630:6;;-1:-1:-1;;;23608:29:73;;;;;:::i;:::-;;;-1:-1:-1;;;;;23608:29:73;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23719:12:73;;23648:84;;;37124:10:81;37112:23;;;37094:42;;37172:23;;37167:2;37152:18;;37145:51;37212:18;;;37205:34;;;37270:2;37255:18;;37248:34;;;-1:-1:-1;;;23719:12:73;;;23608:29;23719:12;37313:3:81;37298:19;;37291:51;-1:-1:-1;;;;;23648:84:73;;;;;37081:3:81;37066:19;23648:84:73;;;;;;;23415:322;;23269:468;;;;;;:::o;1219:160:51:-;1328:43;;-1:-1:-1;;;;;32080:32:81;;;1328:43:51;;;32062:51:81;32129:18;;;32122:34;;;1301:71:51;;1321:5;;1343:14;;;;;32035:18:81;;1328:43:51;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1328:43:51;;;;;;;;;;;1301:19;:71::i;11745:476:24:-;11844:24;11871:25;11881:5;11888:7;11871:9;:25::i;:::-;11844:52;;-1:-1:-1;;11910:16:24;:36;11906:309;;;11985:5;11966:16;:24;11962:130;;;12044:7;12053:16;12071:5;12017:60;;-1:-1:-1;;;12017:60:24;;;;;;;;;;:::i;11962:130::-;12133:57;12142:5;12149:7;12177:5;12158:16;:24;12184:5;12133:8;:57::i;6605:300::-;-1:-1:-1;;;;;6688:18:24;;6684:86;;6729:30;;-1:-1:-1;;;6729:30:24;;6756:1;6729:30;;;9372:51:81;9345:18;;6729:30:24;9226:203:81;6684:86:24;-1:-1:-1;;;;;6783:16:24;;6779:86;;6822:32;;-1:-1:-1;;;6822:32:24;;6851:1;6822:32;;;9372:51:81;9345:18;;6822:32:24;9226:203:81;10976:487:24;-1:-1:-1;;;;;;;;;;;;;;;;11141:19:24;;11137:89;;11183:32;;-1:-1:-1;;;11183:32:24;;11212:1;11183:32;;;9372:51:81;9345:18;;11183:32:24;9226:203:81;11137:89:24;-1:-1:-1;;;;;11239:21:24;;11235:90;;11283:31;;-1:-1:-1;;;11283:31:24;;11311:1;11283:31;;;9372:51:81;9345:18;;11283:31:24;9226:203:81;11235:90:24;-1:-1:-1;;;;;11334:20:24;;;;;;;:13;;;:20;;;;;;;;:29;;;;;;;;;:37;;;11381:76;;;;11431:7;-1:-1:-1;;;;;11415:31:24;11424:5;-1:-1:-1;;;;;11415:31:24;;11440:5;11415:31;;;;160:25:81;;148:2;133:18;;14:177;11415:31:24;;;;;;;;11074:389;10976:487;;;;:::o;20774:169:73:-;20873:14;;20902:36;:34;:36::i;:::-;20895:43;;;;20774:169;;:::o;24246:386::-;24341:19;24363:34;24380:6;24388:8;24363:16;:34::i;:::-;24341:56;;24404:14;24459:4;-1:-1:-1;;;;;24424:57:73;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24424:67:73;;24499:6;24521:4;24534:12;24424:128;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;24403:149:73;-1:-1:-1;24597:6:73;24605;24613:12;24403:149;24558:69;;;;-1:-1:-1;;;24558:69:73;;;;;;;;;;:::i;2500:151:54:-;2575:12;2606:38;2628:6;2636:4;2642:1;2606:21;:38::i;22729:240:73:-;15254:15:58;-1:-1:-1;;;;;;22926:16:73;;;;;3877:27:58;;;;3986:14;;;;;-1:-1:-1;;;3986:14:58;3977:24;15258:3;15254:15;;22892::73;;;;;-1:-1:-1;;;;;;15146:26:58;15245:25;;22729:240:73:o;21959:540::-;22085:4;22032:16;;3874:5;22120:24;3816:10;22120:9;:24;:::i;:::-;22119:44;;;;:::i;:::-;22095:68;;22224:200;22249:6;:18;;22264:3;22249:18;;;22258:3;22249:18;22231:37;;:13;:37;22224:200;;22295:6;:18;;22310:3;22295:18;;;22304:3;22295:18;22278:35;;;;;;:::i;:::-;;-1:-1:-1;22321:11:73;;;:::i;:::-;;-1:-1:-1;22349:13:73;22361:1;22321:11;22349:13;:::i;:::-;:18;;;:68;;;;-1:-1:-1;22372:15:73;22384:3;22372:9;:15;:::i;:::-;:20;;;;;:44;;-1:-1:-1;22396:15:73;22408:3;22396:9;:15;:::i;:::-;:20;;;22372:44;22340:77;;22224:200;;;22461:32;22471:13;22486:6;22461:9;:32::i;:::-;22443:15;:9;22455:3;22443:15;:::i;:::-;:50;;;;;;:::i;5210:304:25:-;6931:20:22;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;5295:24:25::1;::::0;5390:28:::1;5411:6:::0;5390:20:::1;:28::i;:::-;5352:66;;;;5452:7;:28;;5478:2;5452:28;;;5462:13;5452:28;5428:52:::0;;-1:-1:-1;;;;;;5490:17:25;-1:-1:-1;;;5428:52:25::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;;5490:17:25;;-1:-1:-1;;;;;5490:17:25;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;5210:304:25:o;6057:538:23:-;6174:17;-1:-1:-1;;;;;6156:50:23;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6156:52:23;;;;;;;;-1:-1:-1;;6156:52:23;;;;;;;;;;;;:::i;:::-;;;6152:437;;6518:60;;-1:-1:-1;;;6518:60:23;;-1:-1:-1;;;;;9390:32:81;;6518:60:23;;;9372:51:81;9345:18;;6518:60:23;9226:203:81;6152:437:23;-1:-1:-1;;;;;;;;;;;6250:40:23;;6246:120;;6317:34;;-1:-1:-1;;;6317:34:23;;;;;160:25:81;;;133:18;;6317:34:23;14:177:81;6246:120:23;6379:54;6409:17;6428:4;6379:29;:54::i;7220:1170:24:-;-1:-1:-1;;;;;;;;;;;;;;;;7362:18:24;;7358:546;;7516:5;7498:1;:14;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;7358:546:24;;-1:-1:-1;7358:546:24;;-1:-1:-1;;;;;7574:17:24;;7552:19;7574:17;;;;;;;;;;;7609:19;;;7605:115;;;7680:4;7686:11;7699:5;7655:50;;-1:-1:-1;;;7655:50:24;;;;;;;;;;:::i;7605:115::-;-1:-1:-1;;;;;7840:17:24;;:11;:17;;;;;;;;;;7860:19;;;;7840:39;;7358:546;-1:-1:-1;;;;;7918:16:24;;7914:429;;8081:14;;;:23;;;;;;;7914:429;;;-1:-1:-1;;;;;8294:15:24;;:11;:15;;;;;;;;;;:24;;;;;;7914:429;8373:2;-1:-1:-1;;;;;8358:25:24;8367:4;-1:-1:-1;;;;;8358:25:24;;8377:5;8358:25;;;;160::81;;148:2;133:18;;14:177;8358:25:24;;;;;;;;7295:1095;7220:1170;;;:::o;11631:890:25:-;-1:-1:-1;;;;;;;;;;;12384:8:25;;12357:67;;-1:-1:-1;;;;;12384:8:25;12394:6;12410:4;12417:6;12357:26;:67::i;:::-;12434:23;12440:8;12450:6;12434:5;:23::i;:::-;12489:8;-1:-1:-1;;;;;12473:41:25;12481:6;-1:-1:-1;;;;;12473:41:25;;12499:6;12507;12473:41;;;;;;27305:25:81;;;27361:2;27346:18;;27339:34;27293:2;27278:18;;27133:246;5090:114:25;6931:20:22;:18;:20::i;11048:267:73:-;6931:20:22;:18;:20::i;:::-;11206:11:73::1;-1:-1:-1::0;;;;;11206:20:73::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:71;::::0;-1:-1:-1;;;11206:71:73;;-1:-1:-1;;;;;11245:11:73::1;32080:32:81::0;;11206:71:73::1;::::0;::::1;32062:51:81::0;-1:-1:-1;;32129:18:81;;;32122:34;11206:30:73;;;::::1;::::0;::::1;::::0;32035:18:81;;11206:71:73::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11283:27;11298:11;11283:14;:27::i;1618:188:51:-:0;1745:53;;-1:-1:-1;;;;;39704:32:81;;;1745:53:51;;;39686:51:81;39773:32;;;39753:18;;;39746:60;39822:18;;;39815:34;;;1718:81:51;;1738:5;;1760:18;;;;;39659::81;;1745:53:51;39484:371:81;31958:606:73;32114:15;32132:10;:8;:10::i;:::-;32114:28;;32162:6;32152:7;:16;32148:350;;;32256:31;-1:-1:-1;;;;;;;;;;;32355:13:73;;:40;;-1:-1:-1;;;32355:40:73;;32389:4;32355:40;;;9372:51:81;32355:13:73;;-1:-1:-1;;;;;;32355:13:73;;:25;;9345:18:81;;32355:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32334:16;32343:7;32334:6;:16;:::i;:::-;32333:62;;32325:88;;;;-1:-1:-1;;;32325:88:73;;;;;;;;;;;;32421:13;;-1:-1:-1;;;;;32421:13:73;:22;32444:16;32453:7;32444:6;:16;:::i;:::-;32421:70;;-1:-1:-1;;;;;;32421:70:73;;;;;;;;;;35622:25:81;;;;32470:4:73;35663:18:81;;;35656:60;;;35732:18;;;35725:60;35595:18;;32421:70:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32170:328;32148:350;32503:56;32519:6;32527:8;32537:5;32544:6;32552;32503:15;:56::i;:::-;32108:456;31958:606;;;;;:::o;7084:141:22:-;-1:-1:-1;;;;;;;;;;;8560:40:22;-1:-1:-1;;;8560:40:22;;;;7146:73;;7191:17;;-1:-1:-1;;;7191:17:22;;;;;;;;;;;2282:147:24;6931:20:22;:18;:20::i;:::-;2384:38:24::1;2407:5;2414:7;2384:22;:38::i;11296:213:68:-:0;11352:6;-1:-1:-1;;;;;11374:24:68;;11370:103;;;11421:41;;-1:-1:-1;;;11421:41:68;;11452:2;11421:41;;;40041:36:81;40093:18;;;40086:34;;;40014:18;;11421:41:68;39860:266:81;58753:263:58;58826:13;58864:2;58855:6;:11;;;58851:42;;;58875:18;;-1:-1:-1;;;58875:18:58;;;;;;;;;;;58851:42;-1:-1:-1;58964:1:58;58960:14;58956:25;-1:-1:-1;;;;;;58952:48:58;;58753:263::o;21069:886:73:-;21143:7;21284:2;21272:9;:14;21268:28;;;-1:-1:-1;21295:1:73;21288:8;;21268:28;21306:6;21302:123;;;21338:2;21326:9;:14;21322:28;;;-1:-1:-1;21349:1:73;21342:8;;21322:28;21358:11;;;;:::i;:::-;;;;21302:123;;;21406:2;21394:9;:14;21390:28;;;-1:-1:-1;21417:1:73;21410:8;;21390:28;21456:2;21444:9;:14;21443:507;;21495:3;21483:9;:15;21482:468;;21539:3;21527:9;:15;21526:424;;21587:3;21575:9;:15;21574:376;;21639:3;21627:9;:15;21626:324;;21695:3;21683:9;:15;21682:268;;21755:3;21743:9;:15;21742:208;;21819:3;21807:9;:15;21806:144;;21888:3;21876:9;:15;21875:75;;21948:2;21443:507;;21875:75;21919:2;21443:507;;21806:144;21848:2;21443:507;;21742:208;21782:1;21443:507;;21682:268;21720:1;21443:507;;21626:324;21662:1;21443:507;;21574:376;21608:1;21443:507;;21526:424;21558:1;21443:507;;21482:468;21512:1;21443:507;;;21470:1;21443:507;21430:520;;;21069:886;-1:-1:-1;;;21069:886:73:o;8733:208:24:-;-1:-1:-1;;;;;8803:21:24;;8799:91;;8847:32;;-1:-1:-1;;;8847:32:24;;8876:1;8847:32;;;9372:51:81;9345:18;;8847:32:24;9226:203:81;8799:91:24;8899:35;8915:1;8919:7;8928:5;8899:7;:35::i;8017:153:25:-;8082:7;8108:55;8125:16;8135:5;8125:9;:16::i;:::-;8143:19;8108:16;:55::i;3371:111:67:-;3429:7;3066:5;;;3463;;;3065:36;3060:42;;3455:20;2825:294;8218:112:25;8281:7;8307:16;8317:5;8307:9;:16::i;9259:206:24:-;-1:-1:-1;;;;;9329:21:24;;9325:89;;9373:30;;-1:-1:-1;;;9373:30:24;;9400:1;9373:30;;;9372:51:81;9345:18;;9373:30:24;9226:203:81;9325:89:24;9423:35;9431:7;9448:1;9452:5;9423:7;:35::i;7711:422:22:-;-1:-1:-1;;;;;;;;;;;7900:15:22;;-1:-1:-1;;;7900:15:22;;;;7896:76;;;7938:23;;-1:-1:-1;;;7938:23:22;;;;;;;;;;;7896:76;7985:14;;-1:-1:-1;;;;;7985:14:22;;;:34;7981:146;;8035:33;;-1:-1:-1;;8035:33:22;-1:-1:-1;;;;;8035:33:22;;;;;8087:29;;13079:50:81;;;-1:-1:-1;;;;;;;;;;;8087:29:22;13067:2:81;13052:18;8087:29:22;;;;;;;7760:373;7711:422::o;2435:216:24:-;6931:20:22;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2600:7:24;:15:::1;2610:5:::0;2600:7;:15:::1;:::i;:::-;-1:-1:-1::0;2625:9:24::1;::::0;::::1;:19;2637:7:::0;2625:9;:19:::1;:::i;9351:238:67:-:0;9452:7;9506:76;9522:26;9539:8;9522:16;:26::i;:::-;:59;;;;;9580:1;9565:11;9552:25;;;;;:::i;:::-;9562:1;9559;9552:25;:29;9522:59;34914:9:68;34907:17;;34795:145;9506:76:67;9478:25;9485:1;9488;9491:11;9478:6;:25::i;:::-;:104;;;;:::i;2329:429:21:-;2391:7;2435:8;3606:2;2526:30;2545:10;2526:18;:30::i;:::-;:71;;;;;2578:19;2560:14;:37;;2526:71;2522:230;;;2636:8;;2645:36;2662:19;2645:14;:36;:::i;:::-;2636:47;;;;;:::i;:::-;2628:56;;;:::i;:::-;2620:65;;2613:72;;;;2329:429;:::o;2522:230::-;966:10:26;2716:25:21;;;;2329:429;:::o;1441:138:44:-;1493:7;-1:-1:-1;;;;;;;;;;;1519:47:44;1899:163:61;7686:720:51;7766:18;7794:19;7932:4;7929:1;7922:4;7916:11;7909:4;7903;7899:15;7896:1;7889:5;7882;7877:60;7989:7;7979:176;;8033:4;8027:11;8078:16;8075:1;8070:3;8055:40;8124:16;8119:3;8112:29;7979:176;-1:-1:-1;;8232:1:51;8226:8;8182:16;;-1:-1:-1;8258:15:51;;:68;;8310:11;8325:1;8310:16;;8258:68;;;-1:-1:-1;;;;;8276:26:51;;;:31;8258:68;8254:146;;;8349:40;;-1:-1:-1;;;8349:40:51;;-1:-1:-1;;;;;9390:32:81;;8349:40:51;;;9372:51:81;9345:18;;8349:40:51;9226:203:81;2991:414:21;3051:14;;;3606:2;3193:30;3212:10;3193:18;:30::i;:::-;:71;;;;;3245:19;3227:14;:37;;3193:71;3189:210;;;3287:8;;;3297:36;3314:19;3297:14;:36;:::i;:::-;3287:47;;;;;;;:::i;:::-;3280:54;;;;;;2991:414;;:::o;3189:210::-;1040:14:26;;3372:16:21;989:99:26;2975:407:54;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:54;;3181:21;3154:56;;;27305:25:81;27346:18;;;27339:34;;;27278:18;;3154:56:54;27133:246:81;3098:123:54;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:54;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;:::-;3313:62;2975:407;-1:-1:-1;;;;;;2975:407:54:o;5657:550:25:-;5851:43;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5851:43:25;-1:-1:-1;;;5851:43:25;;;5811:93;;5724:7;;;;;;;;-1:-1:-1;;;;;5811:26:25;;;:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5764:140;;;;5918:7;:39;;;;;5955:2;5929:15;:22;:28;;5918:39;5914:260;;;5973:24;6011:15;6000:38;;;;;;;;;;;;:::i;:::-;5973:65;-1:-1:-1;6076:15:25;6056:35;;6052:112;;6119:4;;6131:16;;-1:-1:-1;5657:550:25;-1:-1:-1;;;;5657:550:25:o;6052:112::-;5959:215;5914:260;-1:-1:-1;6191:5:25;;;;-1:-1:-1;5657:550:25;-1:-1:-1;;;5657:550:25:o;2264:344:44:-;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:44;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;12588:974:25:-;-1:-1:-1;;;;;;;;;;;;;;;;12822:15:25;;;;;;;12818:84;;12853:38;12869:5;12876:6;12884;12853:15;:38::i;:::-;13410:20;13416:5;13423:6;13410:5;:20::i;:::-;13463:8;;13440:50;;-1:-1:-1;;;;;13463:8:25;13473;13483:6;13440:22;:50::i;:::-;13533:5;-1:-1:-1;;;;;13506:49:25;13523:8;-1:-1:-1;;;;;13506:49:25;13515:6;-1:-1:-1;;;;;13506:49:25;;13540:6;13548;13506:49;;;;;;27305:25:81;;;27361:2;27346:18;;27339:34;27293:2;27278:18;;27133:246;13506:49:25;;;;;;;;12751:811;12588:974;;;;;:::o;28183:122:67:-;28251:4;28292:1;28280:8;28274:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;28297:1;28274:24;28267:31;;28183:122;;;:::o;4996:4226::-;5078:14;5449:5;;;5078:14;-1:-1:-1;;5453:1:67;5449;5621:20;5694:5;5690:2;5687:13;5679:5;5675:2;5671:14;5667:34;5658:43;;;5796:5;5805:1;5796:10;5792:368;;6134:11;6126:5;:19;;;;;:::i;:::-;;6119:26;;;;;;5792:368;6285:5;6270:11;:20;6266:143;;6310:84;3066:5;6330:16;;3065:36;940:4:59;3060:42:67;6310:11;:84::i;:::-;6664:17;6799:11;6796:1;6793;6786:25;7199:12;7229:15;;;7214:31;;7348:22;;;;;8094:1;8075;:15;;8074:21;;8327;;;8323:25;;8312:36;8397:21;;;8393:25;;8382:36;8469:21;;;8465:25;;8454:36;8540:21;;;8536:25;;8525:36;8613:21;;;8609:25;;8598:36;8687:21;;;8683:25;;;8672:36;7597:12;;;;7593:23;;;7618:1;7589:31;6913:20;;;6902:32;;;7709:12;;;;6960:21;;;;7446:16;;;;7700:21;;;;9163:15;;;;;-1:-1:-1;;4996:4226:67;;;;;:::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;4605:408::-;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;9390:32:81;;4933:24:54;;;9372:51:81;9345:18;;4933:24:54;9226:203:81;4853:119:54;-1:-1:-1;4992:10:54;4985:17;;1671:281:44;1748:17;-1:-1:-1;;;;;1748:29:44;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:44;;-1:-1:-1;;;;;9390:32:81;;1805:47:44;;;9372:51:81;9345:18;;1805:47:44;9226:203:81;1744:119:44;-1:-1:-1;;;;;;;;;;;1872:73:44;;-1:-1:-1;;;;;;1872:73:44;-1:-1:-1;;;;;1872:73:44;;;;;;;;;;1671:281::o;3916:253:54:-;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:54;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4023:67;;;;4107:55;4134:6;4142:7;4151:10;4107:26;:55::i;6113:122:44:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:44;;;;;;;;;;;1776:194:59;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;5559:487:54;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;196:173:81;263:20;;-1:-1:-1;;;;;;312:32:81;;302:43;;292:71;;359:1;356;349:12;292:71;196:173;;;:::o;374:184::-;432:6;485:2;473:9;464:7;460:23;456:32;453:52;;;501:1;498;491:12;453:52;524:28;542:9;524:28;:::i;755:289::-;797:3;835:5;829:12;862:6;857:3;850:19;918:6;911:4;904:5;900:16;893:4;888:3;884:14;878:47;970:1;963:4;954:6;949:3;945:16;941:27;934:38;1033:4;1026:2;1022:7;1017:2;1009:6;1005:15;1001:29;996:3;992:39;988:50;981:57;;;755:289;;;;:::o;1049:220::-;1198:2;1187:9;1180:21;1161:4;1218:45;1259:2;1248:9;1244:18;1236:6;1218:45;:::i;1274:127::-;1335:10;1330:3;1326:20;1323:1;1316:31;1366:4;1363:1;1356:15;1390:4;1387:1;1380:15;1406:716;1471:5;1503:1;-1:-1:-1;;;;;1519:6:81;1516:30;1513:56;;;1549:18;;:::i;:::-;-1:-1:-1;1704:2:81;1698:9;-1:-1:-1;;1617:2:81;1596:15;;1592:29;;1762:2;1750:15;1746:29;1734:42;;1827:22;;;-1:-1:-1;;;;;1791:34:81;;1788:62;1785:88;;;1853:18;;:::i;:::-;1889:2;1882:22;1937;;;1922:6;-1:-1:-1;1922:6:81;1974:16;;;1971:25;-1:-1:-1;1968:45:81;;;2009:1;2006;1999:12;1968:45;2059:6;2054:3;2047:4;2039:6;2035:17;2022:44;2114:1;2107:4;2098:6;2090;2086:19;2082:30;2075:41;;1406:716;;;;;:::o;2127:222::-;2170:5;2223:3;2216:4;2208:6;2204:17;2200:27;2190:55;;2241:1;2238;2231:12;2190:55;2263:80;2339:3;2330:6;2317:20;2310:4;2302:6;2298:17;2263:80;:::i;2354:141::-;-1:-1:-1;;;;;2439:31:81;;2429:42;;2419:70;;2485:1;2482;2475:12;2500:700;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2739:9;2726:23;-1:-1:-1;;;;;2764:6:81;2761:30;2758:50;;;2804:1;2801;2794:12;2758:50;2827;2869:7;2860:6;2849:9;2845:22;2827:50;:::i;:::-;2817:60;;;2930:2;2919:9;2915:18;2902:32;-1:-1:-1;;;;;2949:8:81;2946:32;2943:52;;;2991:1;2988;2981:12;2943:52;3014;3058:7;3047:8;3036:9;3032:24;3014:52;:::i;:::-;3004:62;;;3116:2;3105:9;3101:18;3088:32;3129:41;3164:5;3129:41;:::i;:::-;3189:5;3179:15;;;2500:700;;;;;:::o;3205:226::-;3264:6;3317:2;3305:9;3296:7;3292:23;3288:32;3285:52;;;3333:1;3330;3323:12;3285:52;-1:-1:-1;3378:23:81;;3205:226;-1:-1:-1;3205:226:81:o;3436:121::-;3521:10;3514:5;3510:22;3503:5;3500:33;3490:61;;3547:1;3544;3537:12;3562:396;3629:6;3637;3690:2;3678:9;3669:7;3665:23;3661:32;3658:52;;;3706:1;3703;3696:12;3658:52;3745:9;3732:23;3764:41;3799:5;3764:41;:::i;:::-;3824:5;-1:-1:-1;3881:2:81;3866:18;;3853:32;3894;3853;3894;:::i;:::-;3945:7;3935:17;;;3562:396;;;;;:::o;3963:257::-;4022:6;4075:2;4063:9;4054:7;4050:23;4046:32;4043:52;;;4091:1;4088;4081:12;4043:52;4130:9;4117:23;4149:41;4184:5;4149:41;:::i;4225:127::-;4286:10;4281:3;4277:20;4274:1;4267:31;4317:4;4314:1;4307:15;4341:4;4338:1;4331:15;4357:240;4441:1;4434:5;4431:12;4421:143;;4486:10;4481:3;4477:20;4474:1;4467:31;4521:4;4518:1;4511:15;4549:4;4546:1;4539:15;4421:143;4573:18;;4357:240::o;4602:215::-;4752:2;4737:18;;4764:47;4741:9;4793:6;4764:47;:::i;4822:377::-;4890:6;4898;4951:2;4939:9;4930:7;4926:23;4922:32;4919:52;;;4967:1;4964;4957:12;4919:52;5006:9;4993:23;5025:41;5060:5;5025:41;:::i;:::-;5085:5;5163:2;5148:18;;;;5135:32;;-1:-1:-1;;;4822:377:81:o;5386:347::-;5437:8;5447:6;5501:3;5494:4;5486:6;5482:17;5478:27;5468:55;;5519:1;5516;5509:12;5468:55;-1:-1:-1;5542:20:81;;-1:-1:-1;;;;;5574:30:81;;5571:50;;;5617:1;5614;5607:12;5571:50;5654:4;5646:6;5642:17;5630:29;;5706:3;5699:4;5690:6;5682;5678:19;5674:30;5671:39;5668:59;;;5723:1;5720;5713:12;5668:59;5386:347;;;;;:::o;5738:826::-;5835:6;5843;5851;5859;5867;5920:3;5908:9;5899:7;5895:23;5891:33;5888:53;;;5937:1;5934;5927:12;5888:53;5976:9;5963:23;5995:41;6030:5;5995:41;:::i;:::-;6055:5;-1:-1:-1;6112:2:81;6097:18;;6084:32;6125:43;6084:32;6125:43;:::i;:::-;6187:7;-1:-1:-1;6267:2:81;6252:18;;6239:32;;-1:-1:-1;6348:2:81;6333:18;;6320:32;-1:-1:-1;;;;;6364:30:81;;6361:50;;;6407:1;6404;6397:12;6361:50;6446:58;6496:7;6487:6;6476:9;6472:22;6446:58;:::i;:::-;5738:826;;;;-1:-1:-1;5738:826:81;;-1:-1:-1;6523:8:81;;6420:84;5738:826;-1:-1:-1;;;5738:826:81:o;6776:118::-;6862:5;6855:13;6848:21;6841:5;6838:32;6828:60;;6884:1;6881;6874:12;6899:409;6981:6;6989;7042:2;7030:9;7021:7;7017:23;7013:32;7010:52;;;7058:1;7055;7048:12;7010:52;7097:9;7084:23;7116:41;7151:5;7116:41;:::i;:::-;7176:5;-1:-1:-1;7233:2:81;7218:18;;7205:32;7246:30;7205:32;7246:30;:::i;7313:365::-;7380:6;7388;7441:2;7429:9;7420:7;7416:23;7412:32;7409:52;;;7457:1;7454;7447:12;7409:52;7496:9;7483:23;7515:30;7539:5;7515:30;:::i;7880:808::-;7973:6;7981;7989;7997;8005;8058:3;8046:9;8037:7;8033:23;8029:33;8026:53;;;8075:1;8072;8065:12;8026:53;8114:9;8101:23;8133:41;8168:5;8133:41;:::i;:::-;8193:5;-1:-1:-1;8250:2:81;8235:18;;8222:32;8263;8222;8263;:::i;:::-;8314:7;-1:-1:-1;8373:2:81;8358:18;;8345:32;8386;8345;8386;:::i;:::-;8437:7;-1:-1:-1;8517:2:81;8502:18;;8489:32;;-1:-1:-1;8599:3:81;8584:19;;8571:33;8613:43;8571:33;8613:43;:::i;:::-;8675:7;8665:17;;;7880:808;;;;;;;;:::o;8693:528::-;8770:6;8778;8786;8839:2;8827:9;8818:7;8814:23;8810:32;8807:52;;;8855:1;8852;8845:12;8807:52;8894:9;8881:23;8913:41;8948:5;8913:41;:::i;:::-;8973:5;-1:-1:-1;9030:2:81;9015:18;;9002:32;9043:43;9002:32;9043:43;:::i;:::-;8693:528;;9105:7;;-1:-1:-1;;;9185:2:81;9170:18;;;;9157:32;;8693:528::o;9623:664::-;9706:6;9714;9722;9730;9783:3;9771:9;9762:7;9758:23;9754:33;9751:53;;;9800:1;9797;9790:12;9751:53;9839:9;9826:23;9858:41;9893:5;9858:41;:::i;:::-;9918:5;-1:-1:-1;9975:2:81;9960:18;;9947:32;9988:43;9947:32;9988:43;:::i;:::-;10050:7;-1:-1:-1;10130:2:81;10115:18;;10102:32;;-1:-1:-1;10212:2:81;10197:18;;10184:32;10225:30;10184:32;10225:30;:::i;:::-;9623:664;;;;-1:-1:-1;9623:664:81;;-1:-1:-1;;9623:664:81:o;10515:554::-;10594:6;10602;10610;10663:2;10651:9;10642:7;10638:23;10634:32;10631:52;;;10679:1;10676;10669:12;10631:52;10718:9;10705:23;10737:41;10772:5;10737:41;:::i;:::-;10797:5;-1:-1:-1;10853:2:81;10838:18;;10825:32;-1:-1:-1;;;;;10869:30:81;;10866:50;;;10912:1;10909;10902:12;10866:50;10951:58;11001:7;10992:6;10981:9;10977:22;10951:58;:::i;:::-;10515:554;;11028:8;;-1:-1:-1;10925:84:81;;-1:-1:-1;;;;10515:554:81:o;11303:535::-;11378:6;11386;11394;11447:2;11435:9;11426:7;11422:23;11418:32;11415:52;;;11463:1;11460;11453:12;11415:52;11502:9;11489:23;11521:41;11556:5;11521:41;:::i;:::-;11581:5;-1:-1:-1;11638:2:81;11623:18;;11610:32;11651;11610;11651;:::i;:::-;11702:7;-1:-1:-1;11761:2:81;11746:18;;11733:32;11774;11733;11774;:::i;12335:595::-;12412:6;12420;12473:2;12461:9;12452:7;12448:23;12444:32;12441:52;;;12489:1;12486;12479:12;12441:52;12528:9;12515:23;12547:41;12582:5;12547:41;:::i;:::-;12607:5;-1:-1:-1;12663:2:81;12648:18;;12635:32;-1:-1:-1;;;;;12679:30:81;;12676:50;;;12722:1;12719;12712:12;12676:50;12745:22;;12798:4;12790:13;;12786:27;-1:-1:-1;12776:55:81;;12827:1;12824;12817:12;12776:55;12850:74;12916:7;12911:2;12898:16;12893:2;12889;12885:11;12850:74;:::i;:::-;12840:84;;;12335:595;;;;;:::o;13140:649::-;13226:6;13234;13242;13250;13303:3;13291:9;13282:7;13278:23;13274:33;13271:53;;;13320:1;13317;13310:12;13271:53;13359:9;13346:23;13378:41;13413:5;13378:41;:::i;:::-;13438:5;-1:-1:-1;13495:2:81;13480:18;;13467:32;13508:43;13467:32;13508:43;:::i;:::-;13140:649;;13570:7;;-1:-1:-1;;;;13650:2:81;13635:18;;13622:32;;13753:2;13738:18;13725:32;;13140:649::o;13794:377::-;13862:6;13870;13923:2;13911:9;13902:7;13898:23;13894:32;13891:52;;;13939:1;13936;13929:12;13891:52;13984:23;;;-1:-1:-1;14083:2:81;14068:18;;14055:32;14096:43;14055:32;14096:43;:::i;14635:656::-;14719:6;14727;14735;14743;14796:3;14784:9;14775:7;14771:23;14767:33;14764:53;;;14813:1;14810;14803:12;14764:53;14852:9;14839:23;14871:41;14906:5;14871:41;:::i;:::-;14931:5;-1:-1:-1;14988:2:81;14973:18;;14960:32;15001;14960;15001;:::i;:::-;15052:7;-1:-1:-1;15111:2:81;15096:18;;15083:32;15124;15083;15124;:::i;:::-;14635:656;;;;-1:-1:-1;15175:7:81;;15255:2;15240:18;15227:32;;-1:-1:-1;;14635:656:81:o;15296:284::-;15354:6;15407:2;15395:9;15386:7;15382:23;15378:32;15375:52;;;15423:1;15420;15413:12;15375:52;15462:9;15449:23;-1:-1:-1;;;;;15505:5:81;15501:30;15494:5;15491:41;15481:69;;15546:1;15543;15536:12;15585:801;15680:6;15688;15696;15704;15712;15765:3;15753:9;15744:7;15740:23;15736:33;15733:53;;;15782:1;15779;15772:12;15733:53;15821:9;15808:23;15840:41;15875:5;15840:41;:::i;:::-;15900:5;-1:-1:-1;15957:2:81;15942:18;;15929:32;15970:43;15929:32;15970:43;:::i;:::-;16032:7;-1:-1:-1;16091:2:81;16076:18;;16063:32;16104:43;16063:32;16104:43;:::i;:::-;15585:801;;;;-1:-1:-1;16166:7:81;;16246:2;16231:18;;16218:32;;-1:-1:-1;16349:3:81;16334:19;16321:33;;15585:801;-1:-1:-1;;15585:801:81:o;16744:107::-;16825:1;16818:5;16815:12;16805:40;;16841:1;16838;16831:12;16856:387;16938:6;16946;16999:2;16987:9;16978:7;16974:23;16970:32;16967:52;;;17015:1;17012;17005:12;16967:52;17060:23;;;-1:-1:-1;17159:2:81;17144:18;;17131:32;17172:39;17131:32;17172:39;:::i;17248:582::-;17479:13;;17494:10;17475:30;17457:49;;17553:4;17541:17;;;17535:24;17444:3;17429:19;;;17568:64;;17611:20;;17535:24;17568:64;:::i;:::-;;-1:-1:-1;;;;;17692:4:81;17684:6;17680:17;17674:24;17670:57;17663:4;17652:9;17648:20;17641:87;-1:-1:-1;;;;;17788:4:81;17780:6;17776:17;17770:24;17766:57;17759:4;17748:9;17744:20;17737:87;17248:582;;;;:::o;17835:876::-;17953:6;17961;17969;17977;17985;18038:2;18026:9;18017:7;18013:23;18009:32;18006:52;;;18054:1;18051;18044:12;18006:52;18094:9;18081:23;-1:-1:-1;;;;;18119:6:81;18116:30;18113:50;;;18159:1;18156;18149:12;18113:50;18198:58;18248:7;18239:6;18228:9;18224:22;18198:58;:::i;:::-;18275:8;;-1:-1:-1;18172:84:81;-1:-1:-1;;18363:2:81;18348:18;;18335:32;-1:-1:-1;;;;;18379:32:81;;18376:52;;;18424:1;18421;18414:12;18376:52;18463:60;18515:7;18504:8;18493:9;18489:24;18463:60;:::i;:::-;18542:8;;-1:-1:-1;18437:86:81;-1:-1:-1;;18627:2:81;18612:18;;18599:32;18640:41;18599:32;18640:41;:::i;18941:528::-;19018:6;19026;19034;19087:2;19075:9;19066:7;19062:23;19058:32;19055:52;;;19103:1;19100;19093:12;19055:52;19148:23;;;-1:-1:-1;19247:2:81;19232:18;;19219:32;19260:43;19219:32;19260:43;:::i;:::-;19322:7;-1:-1:-1;19381:2:81;19366:18;;19353:32;19394:43;19353:32;19394:43;:::i;19474:714::-;19566:6;19574;19582;19590;19643:2;19631:9;19622:7;19618:23;19614:32;19611:52;;;19659:1;19656;19649:12;19611:52;19699:9;19686:23;-1:-1:-1;;;;;19724:6:81;19721:30;19718:50;;;19764:1;19761;19754:12;19718:50;19803:58;19853:7;19844:6;19833:9;19829:22;19803:58;:::i;:::-;19880:8;;-1:-1:-1;19777:84:81;-1:-1:-1;;19968:2:81;19953:18;;19940:32;-1:-1:-1;;;;;19984:32:81;;19981:52;;;20029:1;20026;20019:12;19981:52;20068:60;20120:7;20109:8;20098:9;20094:24;20068:60;:::i;:::-;19474:714;;;;-1:-1:-1;20147:8:81;-1:-1:-1;;;;19474:714:81:o;20193:497::-;20270:6;20278;20286;20339:2;20327:9;20318:7;20314:23;20310:32;20307:52;;;20355:1;20352;20345:12;20307:52;20394:9;20381:23;20413:41;20448:5;20413:41;:::i;:::-;20473:5;20551:2;20536:18;;20523:32;;-1:-1:-1;20654:2:81;20639:18;;;20626:32;;20193:497;-1:-1:-1;;;20193:497:81:o;20695:637::-;20780:6;20788;20796;20804;20857:3;20845:9;20836:7;20832:23;20828:33;20825:53;;;20874:1;20871;20864:12;20825:53;20913:9;20900:23;20932:41;20967:5;20932:41;:::i;:::-;20992:5;-1:-1:-1;21049:2:81;21034:18;;21021:32;21062;21021;21062;:::i;21337:329::-;21404:6;21412;21465:2;21453:9;21444:7;21440:23;21436:32;21433:52;;;21481:1;21478;21471:12;21433:52;21520:9;21507:23;21539:41;21574:5;21539:41;:::i;:::-;21599:5;-1:-1:-1;21623:37:81;21656:2;21641:18;;21623:37;:::i;:::-;21613:47;;21337:329;;;;;:::o;21671:361::-;21736:6;21744;21797:2;21785:9;21776:7;21772:23;21768:32;21765:52;;;21813:1;21810;21803:12;21765:52;21858:23;;;-1:-1:-1;21957:2:81;21942:18;;21929:32;21970:30;21929:32;21970:30;:::i;22645:408::-;22713:6;22721;22774:2;22762:9;22753:7;22749:23;22745:32;22742:52;;;22790:1;22787;22780:12;22742:52;22829:9;22816:23;22848:41;22883:5;22848:41;:::i;:::-;22908:5;-1:-1:-1;22965:2:81;22950:18;;22937:32;22978:43;22937:32;22978:43;:::i;23058:480::-;23134:6;23142;23150;23203:2;23191:9;23182:7;23178:23;23174:32;23171:52;;;23219:1;23216;23209:12;23171:52;23258:9;23245:23;23277:41;23312:5;23277:41;:::i;:::-;23337:5;-1:-1:-1;23394:2:81;23379:18;;23366:32;23407:43;23366:32;23407:43;:::i;:::-;23469:7;-1:-1:-1;23495:37:81;23528:2;23513:18;;23495:37;:::i;:::-;23485:47;;23058:480;;;;;:::o;23543:766::-;23649:6;23657;23665;23718:2;23706:9;23697:7;23693:23;23689:32;23686:52;;;23734:1;23731;23724:12;23686:52;23773:9;23760:23;23792:41;23827:5;23792:41;:::i;:::-;23852:5;-1:-1:-1;23908:2:81;23893:18;;23880:32;-1:-1:-1;;;;;23924:30:81;;23921:50;;;23967:1;23964;23957:12;23921:50;23990:22;;24043:4;24035:13;;24031:27;-1:-1:-1;24021:55:81;;24072:1;24069;24062:12;24021:55;24112:2;24099:16;-1:-1:-1;;;;;24130:6:81;24127:30;24124:50;;;24170:1;24167;24160:12;24124:50;24223:7;24218:2;24208:6;24205:1;24201:14;24197:2;24193:23;24189:32;24186:45;24183:65;;;24244:1;24241;24234:12;24183:65;23543:766;;24275:2;24267:11;;;;;-1:-1:-1;24297:6:81;;-1:-1:-1;;;23543:766:81:o;24314:780::-;24474:4;24522:2;24511:9;24507:18;24552:2;24541:9;24534:21;24575:6;24610;24604:13;24641:6;24633;24626:22;24679:2;24668:9;24664:18;24657:25;;24741:2;24731:6;24728:1;24724:14;24713:9;24709:30;24705:39;24691:53;;24779:2;24771:6;24767:15;24800:1;24810:255;24824:6;24821:1;24818:13;24810:255;;;24917:2;24913:7;24901:9;24893:6;24889:22;24885:36;24880:3;24873:49;24945:40;24978:6;24969;24963:13;24945:40;:::i;:::-;24935:50;-1:-1:-1;25020:2:81;25043:12;;;;25008:15;;;;;24846:1;24839:9;24810:255;;;-1:-1:-1;25082:6:81;;24314:780;-1:-1:-1;;;;;;24314:780:81:o;25099:422::-;25185:6;25193;25246:2;25234:9;25225:7;25221:23;25217:32;25214:52;;;25262:1;25259;25252:12;25214:52;25301:9;25288:23;25320:41;25355:5;25320:41;:::i;:::-;25380:5;-1:-1:-1;25437:2:81;25422:18;;25409:32;25450:39;25409:32;25450:39;:::i;25526:184::-;25596:6;25649:2;25637:9;25628:7;25624:23;25620:32;25617:52;;;25665:1;25662;25655:12;25617:52;-1:-1:-1;25688:16:81;;25526:184;-1:-1:-1;25526:184:81:o;25715:127::-;25776:10;25771:3;25767:20;25764:1;25757:31;25807:4;25804:1;25797:15;25831:4;25828:1;25821:15;25847:125;25912:9;;;25933:10;;;25930:36;;;25946:18;;:::i;25977:136::-;26012:3;-1:-1:-1;;;26033:22:81;;26030:48;;26058:18;;:::i;:::-;-1:-1:-1;26098:1:81;26094:13;;25977:136::o;26118:128::-;26185:9;;;26206:11;;;26203:37;;;26220:18;;:::i;26251:380::-;26330:1;26326:12;;;;26373;;;26394:61;;26448:4;26440:6;26436:17;26426:27;;26394:61;26501:2;26493:6;26490:14;26470:18;26467:38;26464:161;;26547:10;26542:3;26538:20;26535:1;26528:31;26582:4;26579:1;26572:15;26610:4;26607:1;26600:15;26464:161;;26251:380;;;:::o;27906:312::-;-1:-1:-1;;;;;28114:32:81;;28096:51;;28084:2;28069:18;;28156:56;28208:2;28193:18;;28185:6;28156:56;:::i;28223:148::-;28311:4;28290:12;;;28304;;;28286:31;;28329:13;;28326:39;;;28345:18;;:::i;28376:331::-;28481:9;28492;28534:8;28522:10;28519:24;28516:44;;;28556:1;28553;28546:12;28516:44;28585:6;28575:8;28572:20;28569:40;;;28605:1;28602;28595:12;28569:40;-1:-1:-1;;28631:23:81;;;28676:25;;;;;-1:-1:-1;28376:331:81:o;28712:338::-;28832:19;;-1:-1:-1;;;;;;28869:29:81;;;28918:1;28910:10;;28907:137;;;-1:-1:-1;;;;;;28979:1:81;28975:11;;;28972:1;28968:19;28964:46;;;28956:55;;28952:82;;-1:-1:-1;28907:137:81;;28712:338;;;;:::o;29055:261::-;29125:6;29178:2;29166:9;29157:7;29153:23;29149:32;29146:52;;;29194:1;29191;29184:12;29146:52;29226:9;29220:16;29245:41;29280:5;29245:41;:::i;29603:345::-;-1:-1:-1;;;;;29823:32:81;;;;29805:51;;29887:2;29872:18;;29865:34;;;;29930:2;29915:18;;29908:34;29793:2;29778:18;;29603:345::o;30692:569::-;30847:4;30889:3;30878:9;30874:19;30866:27;;30925:6;30919:13;30974:10;30963:9;30959:26;30948:9;30941:45;30995:79;31070:2;31059:9;31055:18;31048:4;31036:9;31032:2;31028:18;31024:29;30995:79;:::i;:::-;-1:-1:-1;;;;;31124:9:81;31120:2;31116:18;31112:51;31105:4;31094:9;31090:20;31083:81;-1:-1:-1;;;;;31215:9:81;31210:3;31206:19;31202:52;31195:4;31184:9;31180:20;31173:82;;30692:569;;;;:::o;32167:245::-;32234:6;32287:2;32275:9;32266:7;32262:23;32258:32;32255:52;;;32303:1;32300;32293:12;32255:52;32335:9;32329:16;32354:28;32376:5;32354:28;:::i;33001:127::-;33062:10;33057:3;33053:20;33050:1;33043:31;33093:4;33090:1;33083:15;33117:4;33114:1;33107:15;33133:521;33210:4;33216:6;33276:11;33263:25;33370:2;33366:7;33355:8;33339:14;33335:29;33331:43;33311:18;33307:68;33297:96;;33389:1;33386;33379:12;33297:96;33416:33;;33468:20;;;-1:-1:-1;;;;;;33500:30:81;;33497:50;;;33543:1;33540;33533:12;33497:50;33576:4;33564:17;;-1:-1:-1;33607:14:81;33603:27;;;33593:38;;33590:58;;;33644:1;33641;33634:12;33659:324;33853:2;33838:18;;33865:47;33842:9;33894:6;33865:47;:::i;:::-;33921:56;33973:2;33962:9;33958:18;33950:6;33921:56;:::i;33988:375::-;34076:1;34094:5;34108:249;34129:1;34119:8;34116:15;34108:249;;;34179:4;34174:3;34170:14;34164:4;34161:24;34158:50;;;34188:18;;:::i;:::-;34238:1;34228:8;34224:16;34221:49;;;34252:16;;;;34221:49;34335:1;34331:16;;;;;34291:15;;34108:249;;;33988:375;;;;;;:::o;34368:902::-;34417:5;34447:8;34437:80;;-1:-1:-1;34488:1:81;34502:5;;34437:80;34536:4;34526:76;;-1:-1:-1;34573:1:81;34587:5;;34526:76;34618:4;34636:1;34631:59;;;;34704:1;34699:174;;;;34611:262;;34631:59;34661:1;34652:10;;34675:5;;;34699:174;34736:3;34726:8;34723:17;34720:43;;;34743:18;;:::i;:::-;-1:-1:-1;;34799:1:81;34785:16;;34858:5;;34611:262;;34957:2;34947:8;34944:16;34938:3;34932:4;34929:13;34925:36;34919:2;34909:8;34906:16;34901:2;34895:4;34892:12;34888:35;34885:77;34882:203;;;-1:-1:-1;34994:19:81;;;35070:5;;34882:203;35117:42;-1:-1:-1;;35142:8:81;35136:4;35117:42;:::i;:::-;35195:6;35191:1;35187:6;35183:19;35174:7;35171:32;35168:58;;;35206:18;;:::i;:::-;35244:20;;34368:902;-1:-1:-1;;;34368:902:81:o;35275:140::-;35333:5;35362:47;35403:4;35393:8;35389:19;35383:4;35362:47;:::i;36135:127::-;36196:10;36191:3;36187:20;36184:1;36177:31;36227:4;36224:1;36217:15;36251:4;36248:1;36241:15;36267:120;36307:1;36333;36323:35;;36338:18;;:::i;:::-;-1:-1:-1;36372:9:81;;36267:120::o;36392:216::-;36456:9;;;36484:11;;;36431:3;36514:9;;36542:10;;36538:19;;36567:10;;36559:19;;36535:44;36532:70;;;36582:18;;:::i;:::-;36532:70;;36392:216;;;;:::o;36613:228::-;36710:2;36680:17;;;36699;;;;36676:41;36783:26;36732:36;;-1:-1:-1;;36770:41:81;;36729:83;36726:109;;;36815:18;;:::i;37642:396::-;-1:-1:-1;;;;;37860:32:81;;;37842:51;;37929:32;;;;37924:2;37909:18;;37902:60;-1:-1:-1;;;;;;37998:33:81;;;37993:2;37978:18;;37971:61;37830:2;37815:18;;37642:396::o;38043:377::-;38118:6;38126;38179:2;38167:9;38158:7;38154:23;38150:32;38147:52;;;38195:1;38192;38185:12;38147:52;38227:9;38221:16;38246:28;38268:5;38246:28;:::i;:::-;38343:2;38328:18;;38322:25;38293:5;;-1:-1:-1;38356:32:81;38322:25;38356:32;:::i;38425:188::-;38463:3;38507:10;38500:5;38496:22;38542:10;38533:7;38530:23;38527:49;;38556:18;;:::i;:::-;38605:1;38592:15;;38425:188;-1:-1:-1;;38425:188:81:o;38618:170::-;38649:1;38683:10;38680:1;38676:18;38713:3;38703:37;;38720:18;;:::i;:::-;38778:3;38765:10;38762:1;38758:18;38754:28;38749:33;;;38618:170;;;;:::o;38793:244::-;38904:10;38877:18;;;38897;;;38873:43;38936:28;;;;38983:24;;;38973:58;;39011:18;;:::i;40131:136::-;40170:3;40198:5;40188:39;;40207:18;;:::i;:::-;-1:-1:-1;;;40243:18:81;;40131:136::o;40398:518::-;40500:2;40495:3;40492:11;40489:421;;;40536:5;40533:1;40526:16;40580:4;40577:1;40567:18;40650:2;40638:10;40634:19;40631:1;40627:27;40621:4;40617:38;40686:4;40674:10;40671:20;40668:47;;;-1:-1:-1;40709:4:81;40668:47;40764:2;40759:3;40755:12;40752:1;40748:20;40742:4;40738:31;40728:41;;40819:81;40837:2;40830:5;40827:13;40819:81;;;40896:1;40882:16;;40863:1;40852:13;40819:81;;41092:1299;41218:3;41212:10;-1:-1:-1;;;;;41237:6:81;41234:30;41231:56;;;41267:18;;:::i;:::-;41296:97;41386:6;41346:38;41378:4;41372:11;41346:38;:::i;:::-;41340:4;41296:97;:::i;:::-;41442:4;41473:2;41462:14;;41490:1;41485:649;;;;42178:1;42195:6;42192:89;;;-1:-1:-1;42247:19:81;;;42241:26;42192:89;-1:-1:-1;;41049:1:81;41045:11;;;41041:24;41037:29;41027:40;41073:1;41069:11;;;41024:57;42294:81;;41455:930;;41485:649;40345:1;40338:14;;;40382:4;40369:18;;-1:-1:-1;;41521:20:81;;;41639:222;41653:7;41650:1;41647:14;41639:222;;;41735:19;;;41729:26;41714:42;;41842:4;41827:20;;;;41795:1;41783:14;;;;41669:12;41639:222;;;41643:3;41889:6;41880:7;41877:19;41874:201;;;41950:19;;;41944:26;-1:-1:-1;;42033:1:81;42029:14;;;42045:3;42025:24;42021:37;42017:42;42002:58;41987:74;;41874:201;-1:-1:-1;;;;42121:1:81;42105:14;;;42101:22;42088:36;;-1:-1:-1;41092:1299:81:o;42396:374::-;42517:19;;-1:-1:-1;;;;;;42554:40:81;;;42614:2;42606:11;;42603:161;;;-1:-1:-1;;;;;;42676:2:81;42672:12;;;;42669:1;42665:20;42661:58;;;42653:67;42649:105;;;;42396:374;-1:-1:-1;;42396:374:81:o;42775:301::-;42904:3;42942:6;42936:13;42988:6;42981:4;42973:6;42969:17;42964:3;42958:37;43050:1;43014:16;;43039:13;;;-1:-1:-1;43014:16:81;42775:301;-1:-1:-1;42775:301:81:o;43081:157::-;43111:1;43145:4;43142:1;43138:12;43169:3;43159:37;;43176:18;;:::i;:::-;43228:3;43221:4;43218:1;43214:12;43210:22;43205:27;;;43081:157;;;;:::o"},"methodIdentifiers":{"$CashFlowLenderStorageLocation()":"0cabf231","$ERC4626StorageLocation()":"5997ee36","$JAN_1ST_2025()":"025ca58e","$SECONDS_PER_DAY()":"53c42f88","$__CashFlowLender_init(string,string,address)":"97f8423e","$__CashFlowLender_init_unchained(address)":"80da0a1c","$__Context_init()":"adfdfe2e","$__Context_init_unchained()":"f15476a2","$__ERC20_init(string,string)":"b7e44f4e","$__ERC20_init_unchained(string,string)":"fa3045d0","$__ERC4626_init(address)":"75b58c95","$__ERC4626_init_unchained(address)":"48798720","$__UUPSUpgradeable_init()":"d2e888ec","$__UUPSUpgradeable_init_unchained()":"55c0729b","$_approve(address,address,uint256)":"861e3d3d","$_approve(address,address,uint256,bool)":"32bc74aa","$_authorizeUpgrade(address)":"fbf9c9ce","$_balance()":"aeabd329","$_burn(address,uint256)":"e047838d","$_changeDebt(address,uint32,uint32,int256)":"d2e26fe4","$_checkCanForward(address,address,bytes4)":"e483b6e1","$_checkInitializing()":"fa171c92","$_checkNotDelegated()":"0aecc093","$_checkProxy()":"1a7e8014","$_computeCalendarMonth(uint256)":"4092b0c1","$_contextSuffixLength()":"67354a84","$_convertToAssets(uint256,uint8)":"ca10eca0","$_convertToShares(uint256,uint8)":"8b4e914a","$_decimalsOffset()":"ef4f78d1","$_deinvest(uint256)":"811eecf5","$_deposit(address,address,uint256,uint256)":"9c0b90c7","$_disableInitializers()":"f5f1bec0","$_getERC4626StorageCFL()":"84c6af0c","$_getInitializedVersion()":"4fd5303d","$_getMonth(uint256,bool)":"c3ba11f5","$_getTargetConfig(address)":"8f792465","$_isInitializing()":"c9eb0571","$_makeSlotIndex(uint32,uint256)":"1c93944f","$_makeTargetSlot(address,uint32,uint32)":"3e15a357","$_mint(address,uint256)":"cc461d62","$_msgData()":"32cadf3c","$_msgSender()":"2904df29","$_policyPool()":"33f965ce","$_setYieldVault(address)":"8d94d575","$_spendAllowance(address,address,uint256)":"b2331d7d","$_transfer(address,address,uint256)":"efb43b07","$_update(address,address,uint256)":"6855a178","$_withdraw(address,address,address,uint256,uint256)":"83b95579","$forwardNewPolicyWrapper(address)":"9db0391f","$forwardResolvePolicyWrapper(address)":"2f9cf0aa","$initializer()":"401022ef","$notDelegated()":"818f5673","$onlyInitializing()":"8963227f","$onlyPolicyPool()":"f14b624b","$onlyProxy()":"657ab2b3","$reinitializer(uint64)":"833d816d","OWN_POLICY_SELECTOR()":"a9ed1487","SLOTSIZE_CALENDAR_MONTH()":"3edeb257","UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","__hh_exposed_bytecode_marker()":"342db739","addTarget(address,uint32,uint256,uint256)":"bfdb20da","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","cashOutPayouts(address,uint32,uint32,uint256,address)":"225c531e","cashWithdrawable()":"cc671a18","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","currentDebt()":"759076e5","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","depositIntoYieldVault(uint256)":"ac860f74","forwardNewPolicy(address,bytes)":"33bded3c","forwardNewPolicyBatch(address,bytes[])":"e77659fd","forwardResolvePolicy(address,bytes)":"86b44083","forwardResolvePolicyBatch(address,bytes[])":"ee07abbb","getDebtForPeriod(address,uint32,uint32)":"a3ac9390","getTargetStatus(address)":"091ea8a6","initialize(string,string,address)":"077f224a","isTrustedForwarder(address)":"572b6c05","makeFakeSelector(address,bytes4)":"c0c51217","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd","policyPool()":"4d15eb03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","proxiableUUID()":"52d1902d","redeem(uint256,address,address)":"ba087652","refreshAsset()":"c8030873","repayDebt(address,uint32,uint32,uint256)":"82dbbd71","setTargetLimits(address,uint256,uint256)":"bdb5371d","setTargetSlotSize(address,uint32)":"08742d90","setTargetStatus(address,uint8)":"f7a39333","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","trustedForwarder()":"7da0a877","upgradeToAndCall(address,bytes)":"4f1ef286","withdraw(uint256,address,address)":"b460af94","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"trustedForwarder_\",\"type\":\"address\"},{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceReduction\",\"type\":\"uint256\"}],\"name\":\"BalanceDecreasedOnResolve\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeactivateTarget\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeinvestYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotRefreshAssetWithCash\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"CashOutExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"currentDebt\",\"type\":\"int256\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"}],\"name\":\"DebtLimitExceeded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSlotSize\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"MustChangeYieldAssetBeforeRefresh\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NothingToRefresh\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OutOfRangeAccess\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"RepaymentExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"TargetAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"}],\"name\":\"TargetNotActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"TargetNotFound\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"requiredSelector\",\"type\":\"bytes4\"}],\"name\":\"UnauthorizedForward\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"YieldVaultIsRequired\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"address\",\"name\":\"oldAsset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAsset\",\"type\":\"address\"}],\"name\":\"AssetChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"CashOutPayout\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"totalDebtAfterChange\",\"type\":\"int256\"}],\"name\":\"DebtChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"}],\"name\":\"RepayDebt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"},{\"internalType\":\"uint96\",\"name\":\"minLiquidity\",\"type\":\"uint96\"}],\"indexed\":false,\"internalType\":\"struct CashFlowLender.TargetConfig\",\"name\":\"config\",\"type\":\"tuple\"}],\"name\":\"TargetAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldMinLiquidity\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newMinLiquidity\",\"type\":\"uint256\"}],\"name\":\"TargetLimitsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"oldSlotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"TargetSlotSizeChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"oldStatus\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"TargetStatusChanged\",\"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\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"currentDebt_\",\"type\":\"int256\"}],\"name\":\"return$_changeDebt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"name\":\"return$_deinvest\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"$CashFlowLenderStorageLocation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$ERC4626StorageLocation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$JAN_1ST_2025\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$SECONDS_PER_DAY\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"$__CashFlowLender_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"$__CashFlowLender_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$__Context_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$__Context_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"name\":\"$__ERC20_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"name\":\"$__ERC20_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"asset_\",\"type\":\"address\"}],\"name\":\"$__ERC4626_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"asset_\",\"type\":\"address\"}],\"name\":\"$__ERC4626_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$__UUPSUpgradeable_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$__UUPSUpgradeable_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"emitEvent\",\"type\":\"bool\"}],\"name\":\"$_approve\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_approve\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImpl\",\"type\":\"address\"}],\"name\":\"$_authorizeUpgrade\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_burn\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"int256\",\"name\":\"amount\",\"type\":\"int256\"}],\"name\":\"$_changeDebt\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"currentDebt_\",\"type\":\"int256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"$_checkCanForward\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_checkInitializing\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_checkNotDelegated\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_checkProxy\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"name\":\"$_computeCalendarMonth\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_contextSuffixLength\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"enum Math.Rounding\",\"name\":\"rounding\",\"type\":\"uint8\"}],\"name\":\"$_convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"enum Math.Rounding\",\"name\":\"rounding\",\"type\":\"uint8\"}],\"name\":\"$_convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_decimalsOffset\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"ret0\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"$_deinvest\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"$_deposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_disableInitializers\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_getERC4626StorageCFL\",\"outputs\":[{\"components\":[{\"internalType\":\"contract IERC20\",\"name\":\"_asset\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"_underlyingDecimals\",\"type\":\"uint8\"}],\"internalType\":\"struct ERC4626Upgradeable.ERC4626Storage\",\"name\":\"$\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_getInitializedVersion\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"ret0\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"dayInYear\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isLeap\",\"type\":\"bool\"}],\"name\":\"$_getMonth\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"$_getTargetConfig\",\"outputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"},{\"internalType\":\"uint96\",\"name\":\"minLiquidity\",\"type\":\"uint96\"}],\"internalType\":\"struct CashFlowLender.TargetConfig\",\"name\":\"targetConfig\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_isInitializing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"ret0\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"name\":\"$_makeSlotIndex\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"name\":\"$_makeTargetSlot\",\"outputs\":[{\"internalType\":\"CashFlowLender.TargetSlot\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_mint\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_msgData\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"ret0\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_msgSender\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"ret0\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"$_setYieldVault\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_spendAllowance\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_transfer\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_update\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"$_withdraw\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"$forwardNewPolicyWrapper\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"$forwardResolvePolicyWrapper\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$initializer\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$notDelegated\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$onlyInitializing\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$onlyPolicyPool\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$onlyProxy\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"$reinitializer\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"OWN_POLICY_SELECTOR\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLOTSIZE_CALENDAR_MONTH\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"__hh_exposed_bytecode_marker\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"addTarget\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"cashOutPayouts\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cashWithdrawable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentDebt\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardNewPolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardNewPolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardResolvePolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardResolvePolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"name\":\"getDebtForPeriod\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetStatus\",\"outputs\":[{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"makeFakeSelector\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"refreshAsset\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"repayDebt\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"setTargetLimits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"setTargetSlotSize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"setTargetStatus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"addTarget(address,uint32,uint256,uint256)\":{\"details\":\"Adds a new target that can be used later to forward policies and track the debt.\",\"params\":{\"debtLimit\":\"Limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetAdded} event\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It should be an Ensuro's RiskModule\"}},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"asset()\":{\"details\":\"See {IERC4626-asset}. \"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"cashOutPayouts(address,uint32,uint32,uint256,address)\":{\"details\":\"Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)      in a given slot      Requires the debt of the slot <= -amount      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)      emits {CashOutPayout}\",\"params\":{\"amount\":\"Amount to cash out\",\"destination\":\"Address that will receive the funds\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"convertToAssets(uint256)\":{\"details\":\"See {IERC4626-convertToAssets}. \"},\"convertToShares(uint256)\":{\"details\":\"See {IERC4626-convertToShares}. \"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"See {IERC4626-deposit}. \"},\"depositIntoYieldVault(uint256)\":{\"details\":\"Moves money that's liquid in the contract to the yield vault, to generate yields      Requires _balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"forwardNewPolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"The call to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardNewPolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot). Batch version (multiple calls at once).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called. Batch version (multiple calls at once).      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"initialize(string,string,address)\":{\"details\":\"Initializes the CashFlowLender\",\"params\":{\"name_\":\"Name of the accounting token (ERC20) for the LPs\",\"symbol_\":\"Symbol of the accounting token (ERC20) for the LPs\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"makeFakeSelector(address,bytes4)\":{\"details\":\"Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable      a given call (selector) to a given target\",\"params\":{\"selector\":\"The 4-bytes method selector of the method to be called in the target\",\"target\":\"Address of the target contract.\"}},\"maxDeposit(address)\":{\"details\":\"See {IERC4626-maxDeposit}. \"},\"maxMint(address)\":{\"details\":\"See {IERC4626-maxMint}. \"},\"maxRedeem(address)\":{\"details\":\"See {IERC4626-maxRedeem}. \"},\"maxWithdraw(address)\":{\"details\":\"See {IERC4626-maxWithdraw}. \"},\"mint(uint256,address)\":{\"details\":\"See {IERC4626-mint}. \"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolderV2.onPolicyReplaced.selector`.\"},\"previewDeposit(uint256)\":{\"details\":\"See {IERC4626-previewDeposit}. \"},\"previewMint(uint256)\":{\"details\":\"See {IERC4626-previewMint}. \"},\"previewRedeem(uint256)\":{\"details\":\"See {IERC4626-previewRedeem}. \"},\"previewWithdraw(uint256)\":{\"details\":\"See {IERC4626-previewWithdraw}. \"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"redeem(uint256,address,address)\":{\"details\":\"See {IERC4626-redeem}. \"},\"refreshAsset()\":{\"details\":\"Refreshes the asset of the vault, when the currency() of the PolicyPool changes Requires _balance() = 0 and yieldVault.asset() = _policyPool.currency() Emits a {TargetStatusChanged} event\"},\"repayDebt(address,uint32,uint32,uint256)\":{\"details\":\"Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)      in a given slot      Requires the debt of the slot >= amount      emits {RepayDebt}\",\"params\":{\"amount\":\"Amount to pay\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetLimits(address,uint256,uint256)\":{\"details\":\"Changes debtLimit and minLiquidity for a given target.\",\"params\":{\"debtLimit\":\"New limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetLimitsChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetSlotSize(address,uint32)\":{\"details\":\"Changes the slotSize of a given target.\",\"params\":{\"newSlotSize\":\"New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots. Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetStatus(address,uint8)\":{\"details\":\"Changes status of a given target. See {TargetStatus}.\",\"params\":{\"newStatus\":\"The new status of the contract Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setYieldVault(address,bool)\":{\"details\":\"Changes the Yield Vault, deinvesting all the funds before doing it.\",\"params\":{\"force\":\"If true, it continues the operation even if some of the funds aren't withdrawable. Emits a {YieldVaultChanged} event\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"See {IERC4626-totalAssets}. \"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"trustedForwarder()\":{\"details\":\"Returns the address of the trusted forwarder.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdraw(uint256,address,address)\":{\"details\":\"See {IERC4626-withdraw}. \"},\"withdrawFromYieldVault(uint256)\":{\"details\":\"Deinvest from the vault a given amount.      Requires $._yieldVault.maxWithdraw() <= amount\",\"params\":{\"amount\":\"Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts-exposed/CashFlowLender.sol\":\"$CashFlowLender\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xddf0d346e5ee68e7ae051048112384409797d7e094a47ab404c6fb6bdf8827c1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://98a041a857a99cda900188969283dbf941ec034b641c7abea399c3e4ee94cb64\",\"dweb:/ipfs/QmdjuJipt2jAapKAk2APC1BTcsgajnbkQTthd4LiwA8F7r\"]},\"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol\":{\"keccak256\":\"0x978c37bf3a9dfa2942a53ff10d0b6a4ac16510b6f3231ee2415ea6ea5349512f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://9b777c52b8697624c3504156f409b5238de8ebc778ccdadb5dafb42d6293a559\",\"dweb:/ipfs/QmVgGMPkpCL3ompGN4tHG5jdopkTuGaHQvK7eZUcxCDvh6\"]},\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":{\"keccak256\":\"0x290ba719fd784ff406a8de038c10dc2d0914794c8b016781712fcbb36ca7bffb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b5764ef1dab80c115c14e307c5cbd5845320a653a2d8a3658d20dfba6bc7758\",\"dweb:/ipfs/QmSPSasRTVtYyAEnEVCBPZwoQzgKU7gu7q8NeT9AMMpmmx\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0xd861907d1168dcaec2a7846edbaed12feb8bad2d6781dba987be01374f90b495\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://12ff809243040419e2fc2aa7ef0aaa60b3e6ebc901553ba1de970ceeef208c4c\",\"dweb:/ipfs/QmX2dwMVNrQAahqVzEx94gqcVB6Z8ovifPYdEfHZzj7aEb\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0x5c54228bbb2f1f8616179c51bdb90b7960f4a3414c390ad5c6ead6763eb55a59\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://745fe72596bb8fde5f294d9d6b943db942202e4445536ee00da3ba011f876e86\",\"dweb:/ipfs/QmcjeESkk4rbhUVaSBfyq5f8rY56Jms1TwcJXaRD55K3UH\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":{\"keccak256\":\"0xa683afe511eb3a2e8a039c5aa18feda651c6de04b92e101532ac76661fdaad8f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d2117b118221d039e98d77bef9b0b68e95b600403f16aa1b565e3d6c0bcd6384\",\"dweb:/ipfs/QmZAhSMkC257uzT16gLkkuS1q7sLRos1Euj1oPMJXg8rSh\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\":{\"keccak256\":\"0x00c23b80f74717a6765b606001c5c633116020d488ee8f53600685b8200e4bf3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73d0bd5ff47377a97d52149a805d82112f88c9f4ae853ef246a536bd31ce1da\",\"dweb:/ipfs/QmagG3Yup65JQPSMZScubYTCeyuUyvKLxBM3X1er6xWWxf\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0x666c704c58d4cf404eecd6e4a898a87e25b00b45416678de914e160582c3ff17\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6def3cc823ae3f155da28a241a8ff91538222053ed9d78f415758a9133e211a1\",\"dweb:/ipfs/QmSriniszojh4UP4WQqxCJhq2XsbCAULcB4qRij4EYw9Gi\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xc4d7ebf63eb2f6bf3fee1b6c0ee775efa9f31b4843a5511d07eea147e212932d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://01c66a2fad66bc710db7510419a7eee569b40b67cd9f01b70a3fc90d6f76c03b\",\"dweb:/ipfs/QmT1CjJZq4eTNA4nu8E9ZrWfaZu6ReUsDbjcK8DbEFqwx5\"]},\"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\":{\"keccak256\":\"0x12808acc0c2cbc0b9068755711fd79483b4f002e850d25e0e72e735765b6cd99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fd1ab9e3091d4c4fc4b34c25b54df5c092c849c8c09d722a34186bd051b0890\",\"dweb:/ipfs/QmUqykAZfKRHEkYVRmXKsFqvLwyUFPrukdWdAmXDkixJAL\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0xc3f2ec76a3de8ed7a7007c46166f5550c72c7709e3fc7e8bb3111a7191cdedbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73efb4c2ca655882dc237c6b4f234a9bd36d97159d8fcaa837eb01171f726ac\",\"dweb:/ipfs/QmTNnnv7Gu5fs5G1ZMh7Fexp8N4XUs3XrNAngjcxgiss3e\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x4ea01544758fd2c7045961904686bfe232d2220a04ecaa2d6b08dac17827febf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fabe6bef5167ae741dd8c22d7f81d3f9120bd61b290762a2e8f176712567d329\",\"dweb:/ipfs/QmSnEitJ6xmf1SSAUeZozD7Gx7h8bNnX3a1ZBzqeivsvVg\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Packing.sol\":{\"keccak256\":\"0xea9f5d3cdd11b7af7d8662a5c0e952f3666145cb4c9fe1452bd15c30abc462dd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fcae95be7077d103530c4e6a5f1248aa64102dad62d642e2530316ab002e02c\",\"dweb:/ipfs/QmWCr2qicfaqsTbpgq7CJhedUHcPQv34k8HNs4f5kGjVnw\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts-exposed/CashFlowLender.sol\":{\"keccak256\":\"0x3a12a9e6ab49662d6351094f255a518914aa4dd073834bf276464bef7ff25c6c\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://f23dfda91c318ef0bbc4f2d3f031afa078b392413f2352eb8493b8f45dd37786\",\"dweb:/ipfs/QmQcKCqAQPzo4HF2ZNDA3vymisBrmtCPR7qP8bMzFCamsr\"]},\"contracts/CashFlowLender.sol\":{\"keccak256\":\"0xb8a67b85d0d66b34eab1cf6b5da76f81db6786884640aaa1324d5e5d6554f896\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://475ac67705e6e4f65412633d11fe6d6bf19998d7529f6dc9990ab24a2fa1c8c9\",\"dweb:/ipfs/QmTkLatDELxKHNpUi75mKvqHLkhKaWQAp9jpGN1Jis8ACk\"]},\"contracts/dependencies/AccessManagedProxy.sol\":{\"keccak256\":\"0x406f4c8b0ace277c677d2d95ceba9b63b92597a81db3f894a037fc0c7294cc97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fba6a5a820fbc56ed11c268b5c97ca3bcad3b66aa4d01ab028be91a6ac05623\",\"dweb:/ipfs/QmSiR8VZr5wPwuXddfGV1dM3QKW94nP9ZForWgnpNHnqYC\"]},\"contracts/dependencies/IPolicyPool.sol\":{\"keccak256\":\"0x2cd6afa72791cac7be2cd930ebadec4e906207076960778e59a1160f66a91a0e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe5b8ee24484498806a9b5034ba0b7c33668bb1f52fbb72fc5831b2e71836a86\",\"dweb:/ipfs/QmUmxGeCGZWp1zWFLYGrjychqxzCrLY18MhRkKvviVa3BE\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts-exposed/dependencies/AccessManagedProxy.sol":{"$AccessManagedProxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"contract IAccessManager","name":"manager","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"$_delegate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_fallback","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_implementation","outputs":[{"internalType":"address","name":"ret0","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__hh_exposed_bytecode_marker","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_10119":{"entryPoint":null,"id":10119,"parameterSlots":2,"returnSlots":0},"@_22865":{"entryPoint":null,"id":22865,"parameterSlots":3,"returnSlots":0},"@_25499":{"entryPoint":null,"id":25499,"parameterSlots":3,"returnSlots":0},"@_checkNonPayable_10425":{"entryPoint":406,"id":10425,"parameterSlots":0,"returnSlots":0},"@_revert_12579":{"entryPoint":534,"id":12579,"parameterSlots":1,"returnSlots":0},"@_setImplementation_10205":{"entryPoint":168,"id":10205,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_12497":{"entryPoint":291,"id":12497,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_10241":{"entryPoint":74,"id":10241,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_12537":{"entryPoint":439,"id":12537,"parameterSlots":3,"returnSlots":1},"abi_decode_contract_IAccessManager_fromMemory":{"entryPoint":618,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$9511_fromMemory":{"entryPoint":634,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":845,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":598,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":578,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:2143:81","nodeType":"YulBlock","src":"0:2143:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"59:86:81","nodeType":"YulBlock","src":"59:86:81","statements":[{"body":{"nativeSrc":"123:16:81","nodeType":"YulBlock","src":"123:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:81","nodeType":"YulLiteral","src":"132:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:81","nodeType":"YulLiteral","src":"135:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:81","nodeType":"YulIdentifier","src":"125:6:81"},"nativeSrc":"125:12:81","nodeType":"YulFunctionCall","src":"125:12:81"},"nativeSrc":"125:12:81","nodeType":"YulExpressionStatement","src":"125:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:81","nodeType":"YulIdentifier","src":"82:5:81"},{"arguments":[{"name":"value","nativeSrc":"93:5:81","nodeType":"YulIdentifier","src":"93:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:81","nodeType":"YulLiteral","src":"108:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:81","nodeType":"YulLiteral","src":"113:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:81","nodeType":"YulIdentifier","src":"104:3:81"},"nativeSrc":"104:11:81","nodeType":"YulFunctionCall","src":"104:11:81"},{"kind":"number","nativeSrc":"117:1:81","nodeType":"YulLiteral","src":"117:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:19:81","nodeType":"YulFunctionCall","src":"100:19:81"}],"functionName":{"name":"and","nativeSrc":"89:3:81","nodeType":"YulIdentifier","src":"89:3:81"},"nativeSrc":"89:31:81","nodeType":"YulFunctionCall","src":"89:31:81"}],"functionName":{"name":"eq","nativeSrc":"79:2:81","nodeType":"YulIdentifier","src":"79:2:81"},"nativeSrc":"79:42:81","nodeType":"YulFunctionCall","src":"79:42:81"}],"functionName":{"name":"iszero","nativeSrc":"72:6:81","nodeType":"YulIdentifier","src":"72:6:81"},"nativeSrc":"72:50:81","nodeType":"YulFunctionCall","src":"72:50:81"},"nativeSrc":"69:70:81","nodeType":"YulIf","src":"69:70:81"}]},"name":"validator_revert_address","nativeSrc":"14:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:81","nodeType":"YulTypedName","src":"48:5:81","type":""}],"src":"14:131:81"},{"body":{"nativeSrc":"182:95:81","nodeType":"YulBlock","src":"182:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"199:1:81","nodeType":"YulLiteral","src":"199:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"206:3:81","nodeType":"YulLiteral","src":"206:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"211:10:81","nodeType":"YulLiteral","src":"211:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"202:3:81","nodeType":"YulIdentifier","src":"202:3:81"},"nativeSrc":"202:20:81","nodeType":"YulFunctionCall","src":"202:20:81"}],"functionName":{"name":"mstore","nativeSrc":"192:6:81","nodeType":"YulIdentifier","src":"192:6:81"},"nativeSrc":"192:31:81","nodeType":"YulFunctionCall","src":"192:31:81"},"nativeSrc":"192:31:81","nodeType":"YulExpressionStatement","src":"192:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"239:1:81","nodeType":"YulLiteral","src":"239:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"242:4:81","nodeType":"YulLiteral","src":"242:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"232:6:81","nodeType":"YulIdentifier","src":"232:6:81"},"nativeSrc":"232:15:81","nodeType":"YulFunctionCall","src":"232:15:81"},"nativeSrc":"232:15:81","nodeType":"YulExpressionStatement","src":"232:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:81","nodeType":"YulLiteral","src":"263:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"266:4:81","nodeType":"YulLiteral","src":"266:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"256:6:81","nodeType":"YulIdentifier","src":"256:6:81"},"nativeSrc":"256:15:81","nodeType":"YulFunctionCall","src":"256:15:81"},"nativeSrc":"256:15:81","nodeType":"YulExpressionStatement","src":"256:15:81"}]},"name":"panic_error_0x41","nativeSrc":"150:127:81","nodeType":"YulFunctionDefinition","src":"150:127:81"},{"body":{"nativeSrc":"358:78:81","nodeType":"YulBlock","src":"358:78:81","statements":[{"nativeSrc":"368:22:81","nodeType":"YulAssignment","src":"368:22:81","value":{"arguments":[{"name":"offset","nativeSrc":"383:6:81","nodeType":"YulIdentifier","src":"383:6:81"}],"functionName":{"name":"mload","nativeSrc":"377:5:81","nodeType":"YulIdentifier","src":"377:5:81"},"nativeSrc":"377:13:81","nodeType":"YulFunctionCall","src":"377:13:81"},"variableNames":[{"name":"value","nativeSrc":"368:5:81","nodeType":"YulIdentifier","src":"368:5:81"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"424:5:81","nodeType":"YulIdentifier","src":"424:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"399:24:81","nodeType":"YulIdentifier","src":"399:24:81"},"nativeSrc":"399:31:81","nodeType":"YulFunctionCall","src":"399:31:81"},"nativeSrc":"399:31:81","nodeType":"YulExpressionStatement","src":"399:31:81"}]},"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"282:154:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"337:6:81","nodeType":"YulTypedName","src":"337:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"348:5:81","nodeType":"YulTypedName","src":"348:5:81","type":""}],"src":"282:154:81"},{"body":{"nativeSrc":"588:1039:81","nodeType":"YulBlock","src":"588:1039:81","statements":[{"body":{"nativeSrc":"634:16:81","nodeType":"YulBlock","src":"634:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"643:1:81","nodeType":"YulLiteral","src":"643:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"646:1:81","nodeType":"YulLiteral","src":"646:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"636:6:81","nodeType":"YulIdentifier","src":"636:6:81"},"nativeSrc":"636:12:81","nodeType":"YulFunctionCall","src":"636:12:81"},"nativeSrc":"636:12:81","nodeType":"YulExpressionStatement","src":"636:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"609:7:81","nodeType":"YulIdentifier","src":"609:7:81"},{"name":"headStart","nativeSrc":"618:9:81","nodeType":"YulIdentifier","src":"618:9:81"}],"functionName":{"name":"sub","nativeSrc":"605:3:81","nodeType":"YulIdentifier","src":"605:3:81"},"nativeSrc":"605:23:81","nodeType":"YulFunctionCall","src":"605:23:81"},{"kind":"number","nativeSrc":"630:2:81","nodeType":"YulLiteral","src":"630:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"601:3:81","nodeType":"YulIdentifier","src":"601:3:81"},"nativeSrc":"601:32:81","nodeType":"YulFunctionCall","src":"601:32:81"},"nativeSrc":"598:52:81","nodeType":"YulIf","src":"598:52:81"},{"nativeSrc":"659:29:81","nodeType":"YulVariableDeclaration","src":"659:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"678:9:81","nodeType":"YulIdentifier","src":"678:9:81"}],"functionName":{"name":"mload","nativeSrc":"672:5:81","nodeType":"YulIdentifier","src":"672:5:81"},"nativeSrc":"672:16:81","nodeType":"YulFunctionCall","src":"672:16:81"},"variables":[{"name":"value","nativeSrc":"663:5:81","nodeType":"YulTypedName","src":"663:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"722:5:81","nodeType":"YulIdentifier","src":"722:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"697:24:81","nodeType":"YulIdentifier","src":"697:24:81"},"nativeSrc":"697:31:81","nodeType":"YulFunctionCall","src":"697:31:81"},"nativeSrc":"697:31:81","nodeType":"YulExpressionStatement","src":"697:31:81"},{"nativeSrc":"737:15:81","nodeType":"YulAssignment","src":"737:15:81","value":{"name":"value","nativeSrc":"747:5:81","nodeType":"YulIdentifier","src":"747:5:81"},"variableNames":[{"name":"value0","nativeSrc":"737:6:81","nodeType":"YulIdentifier","src":"737:6:81"}]},{"nativeSrc":"761:39:81","nodeType":"YulVariableDeclaration","src":"761:39:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"785:9:81","nodeType":"YulIdentifier","src":"785:9:81"},{"kind":"number","nativeSrc":"796:2:81","nodeType":"YulLiteral","src":"796:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"781:3:81","nodeType":"YulIdentifier","src":"781:3:81"},"nativeSrc":"781:18:81","nodeType":"YulFunctionCall","src":"781:18:81"}],"functionName":{"name":"mload","nativeSrc":"775:5:81","nodeType":"YulIdentifier","src":"775:5:81"},"nativeSrc":"775:25:81","nodeType":"YulFunctionCall","src":"775:25:81"},"variables":[{"name":"offset","nativeSrc":"765:6:81","nodeType":"YulTypedName","src":"765:6:81","type":""}]},{"body":{"nativeSrc":"843:16:81","nodeType":"YulBlock","src":"843:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"852:1:81","nodeType":"YulLiteral","src":"852:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"855:1:81","nodeType":"YulLiteral","src":"855:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"845:6:81","nodeType":"YulIdentifier","src":"845:6:81"},"nativeSrc":"845:12:81","nodeType":"YulFunctionCall","src":"845:12:81"},"nativeSrc":"845:12:81","nodeType":"YulExpressionStatement","src":"845:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"815:6:81","nodeType":"YulIdentifier","src":"815:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"831:2:81","nodeType":"YulLiteral","src":"831:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"835:1:81","nodeType":"YulLiteral","src":"835:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"827:3:81","nodeType":"YulIdentifier","src":"827:3:81"},"nativeSrc":"827:10:81","nodeType":"YulFunctionCall","src":"827:10:81"},{"kind":"number","nativeSrc":"839:1:81","nodeType":"YulLiteral","src":"839:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"823:3:81","nodeType":"YulIdentifier","src":"823:3:81"},"nativeSrc":"823:18:81","nodeType":"YulFunctionCall","src":"823:18:81"}],"functionName":{"name":"gt","nativeSrc":"812:2:81","nodeType":"YulIdentifier","src":"812:2:81"},"nativeSrc":"812:30:81","nodeType":"YulFunctionCall","src":"812:30:81"},"nativeSrc":"809:50:81","nodeType":"YulIf","src":"809:50:81"},{"nativeSrc":"868:32:81","nodeType":"YulVariableDeclaration","src":"868:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"882:9:81","nodeType":"YulIdentifier","src":"882:9:81"},{"name":"offset","nativeSrc":"893:6:81","nodeType":"YulIdentifier","src":"893:6:81"}],"functionName":{"name":"add","nativeSrc":"878:3:81","nodeType":"YulIdentifier","src":"878:3:81"},"nativeSrc":"878:22:81","nodeType":"YulFunctionCall","src":"878:22:81"},"variables":[{"name":"_1","nativeSrc":"872:2:81","nodeType":"YulTypedName","src":"872:2:81","type":""}]},{"body":{"nativeSrc":"948:16:81","nodeType":"YulBlock","src":"948:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"957:1:81","nodeType":"YulLiteral","src":"957:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"960:1:81","nodeType":"YulLiteral","src":"960:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"950:6:81","nodeType":"YulIdentifier","src":"950:6:81"},"nativeSrc":"950:12:81","nodeType":"YulFunctionCall","src":"950:12:81"},"nativeSrc":"950:12:81","nodeType":"YulExpressionStatement","src":"950:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"927:2:81","nodeType":"YulIdentifier","src":"927:2:81"},{"kind":"number","nativeSrc":"931:4:81","nodeType":"YulLiteral","src":"931:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"923:3:81","nodeType":"YulIdentifier","src":"923:3:81"},"nativeSrc":"923:13:81","nodeType":"YulFunctionCall","src":"923:13:81"},{"name":"dataEnd","nativeSrc":"938:7:81","nodeType":"YulIdentifier","src":"938:7:81"}],"functionName":{"name":"slt","nativeSrc":"919:3:81","nodeType":"YulIdentifier","src":"919:3:81"},"nativeSrc":"919:27:81","nodeType":"YulFunctionCall","src":"919:27:81"}],"functionName":{"name":"iszero","nativeSrc":"912:6:81","nodeType":"YulIdentifier","src":"912:6:81"},"nativeSrc":"912:35:81","nodeType":"YulFunctionCall","src":"912:35:81"},"nativeSrc":"909:55:81","nodeType":"YulIf","src":"909:55:81"},{"nativeSrc":"973:23:81","nodeType":"YulVariableDeclaration","src":"973:23:81","value":{"arguments":[{"name":"_1","nativeSrc":"993:2:81","nodeType":"YulIdentifier","src":"993:2:81"}],"functionName":{"name":"mload","nativeSrc":"987:5:81","nodeType":"YulIdentifier","src":"987:5:81"},"nativeSrc":"987:9:81","nodeType":"YulFunctionCall","src":"987:9:81"},"variables":[{"name":"length","nativeSrc":"977:6:81","nodeType":"YulTypedName","src":"977:6:81","type":""}]},{"body":{"nativeSrc":"1039:22:81","nodeType":"YulBlock","src":"1039:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1041:16:81","nodeType":"YulIdentifier","src":"1041:16:81"},"nativeSrc":"1041:18:81","nodeType":"YulFunctionCall","src":"1041:18:81"},"nativeSrc":"1041:18:81","nodeType":"YulExpressionStatement","src":"1041:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1011:6:81","nodeType":"YulIdentifier","src":"1011:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1027:2:81","nodeType":"YulLiteral","src":"1027:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1031:1:81","nodeType":"YulLiteral","src":"1031:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1023:3:81","nodeType":"YulIdentifier","src":"1023:3:81"},"nativeSrc":"1023:10:81","nodeType":"YulFunctionCall","src":"1023:10:81"},{"kind":"number","nativeSrc":"1035:1:81","nodeType":"YulLiteral","src":"1035:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1019:3:81","nodeType":"YulIdentifier","src":"1019:3:81"},"nativeSrc":"1019:18:81","nodeType":"YulFunctionCall","src":"1019:18:81"}],"functionName":{"name":"gt","nativeSrc":"1008:2:81","nodeType":"YulIdentifier","src":"1008:2:81"},"nativeSrc":"1008:30:81","nodeType":"YulFunctionCall","src":"1008:30:81"},"nativeSrc":"1005:56:81","nodeType":"YulIf","src":"1005:56:81"},{"nativeSrc":"1070:23:81","nodeType":"YulVariableDeclaration","src":"1070:23:81","value":{"arguments":[{"kind":"number","nativeSrc":"1090:2:81","nodeType":"YulLiteral","src":"1090:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1084:5:81","nodeType":"YulIdentifier","src":"1084:5:81"},"nativeSrc":"1084:9:81","nodeType":"YulFunctionCall","src":"1084:9:81"},"variables":[{"name":"memPtr","nativeSrc":"1074:6:81","nodeType":"YulTypedName","src":"1074:6:81","type":""}]},{"nativeSrc":"1102:85:81","nodeType":"YulVariableDeclaration","src":"1102:85:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"1124:6:81","nodeType":"YulIdentifier","src":"1124:6:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1148:6:81","nodeType":"YulIdentifier","src":"1148:6:81"},{"kind":"number","nativeSrc":"1156:4:81","nodeType":"YulLiteral","src":"1156:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1144:3:81","nodeType":"YulIdentifier","src":"1144:3:81"},"nativeSrc":"1144:17:81","nodeType":"YulFunctionCall","src":"1144:17:81"},{"arguments":[{"kind":"number","nativeSrc":"1167:2:81","nodeType":"YulLiteral","src":"1167:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1163:3:81","nodeType":"YulIdentifier","src":"1163:3:81"},"nativeSrc":"1163:7:81","nodeType":"YulFunctionCall","src":"1163:7:81"}],"functionName":{"name":"and","nativeSrc":"1140:3:81","nodeType":"YulIdentifier","src":"1140:3:81"},"nativeSrc":"1140:31:81","nodeType":"YulFunctionCall","src":"1140:31:81"},{"kind":"number","nativeSrc":"1173:2:81","nodeType":"YulLiteral","src":"1173:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1136:3:81","nodeType":"YulIdentifier","src":"1136:3:81"},"nativeSrc":"1136:40:81","nodeType":"YulFunctionCall","src":"1136:40:81"},{"arguments":[{"kind":"number","nativeSrc":"1182:2:81","nodeType":"YulLiteral","src":"1182:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1178:3:81","nodeType":"YulIdentifier","src":"1178:3:81"},"nativeSrc":"1178:7:81","nodeType":"YulFunctionCall","src":"1178:7:81"}],"functionName":{"name":"and","nativeSrc":"1132:3:81","nodeType":"YulIdentifier","src":"1132:3:81"},"nativeSrc":"1132:54:81","nodeType":"YulFunctionCall","src":"1132:54:81"}],"functionName":{"name":"add","nativeSrc":"1120:3:81","nodeType":"YulIdentifier","src":"1120:3:81"},"nativeSrc":"1120:67:81","nodeType":"YulFunctionCall","src":"1120:67:81"},"variables":[{"name":"newFreePtr","nativeSrc":"1106:10:81","nodeType":"YulTypedName","src":"1106:10:81","type":""}]},{"body":{"nativeSrc":"1262:22:81","nodeType":"YulBlock","src":"1262:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1264:16:81","nodeType":"YulIdentifier","src":"1264:16:81"},"nativeSrc":"1264:18:81","nodeType":"YulFunctionCall","src":"1264:18:81"},"nativeSrc":"1264:18:81","nodeType":"YulExpressionStatement","src":"1264:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1205:10:81","nodeType":"YulIdentifier","src":"1205:10:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1225:2:81","nodeType":"YulLiteral","src":"1225:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1229:1:81","nodeType":"YulLiteral","src":"1229:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1221:3:81","nodeType":"YulIdentifier","src":"1221:3:81"},"nativeSrc":"1221:10:81","nodeType":"YulFunctionCall","src":"1221:10:81"},{"kind":"number","nativeSrc":"1233:1:81","nodeType":"YulLiteral","src":"1233:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1217:3:81","nodeType":"YulIdentifier","src":"1217:3:81"},"nativeSrc":"1217:18:81","nodeType":"YulFunctionCall","src":"1217:18:81"}],"functionName":{"name":"gt","nativeSrc":"1202:2:81","nodeType":"YulIdentifier","src":"1202:2:81"},"nativeSrc":"1202:34:81","nodeType":"YulFunctionCall","src":"1202:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1241:10:81","nodeType":"YulIdentifier","src":"1241:10:81"},{"name":"memPtr","nativeSrc":"1253:6:81","nodeType":"YulIdentifier","src":"1253:6:81"}],"functionName":{"name":"lt","nativeSrc":"1238:2:81","nodeType":"YulIdentifier","src":"1238:2:81"},"nativeSrc":"1238:22:81","nodeType":"YulFunctionCall","src":"1238:22:81"}],"functionName":{"name":"or","nativeSrc":"1199:2:81","nodeType":"YulIdentifier","src":"1199:2:81"},"nativeSrc":"1199:62:81","nodeType":"YulFunctionCall","src":"1199:62:81"},"nativeSrc":"1196:88:81","nodeType":"YulIf","src":"1196:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1300:2:81","nodeType":"YulLiteral","src":"1300:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1304:10:81","nodeType":"YulIdentifier","src":"1304:10:81"}],"functionName":{"name":"mstore","nativeSrc":"1293:6:81","nodeType":"YulIdentifier","src":"1293:6:81"},"nativeSrc":"1293:22:81","nodeType":"YulFunctionCall","src":"1293:22:81"},"nativeSrc":"1293:22:81","nodeType":"YulExpressionStatement","src":"1293:22:81"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1331:6:81","nodeType":"YulIdentifier","src":"1331:6:81"},{"name":"length","nativeSrc":"1339:6:81","nodeType":"YulIdentifier","src":"1339:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1324:6:81","nodeType":"YulIdentifier","src":"1324:6:81"},"nativeSrc":"1324:22:81","nodeType":"YulFunctionCall","src":"1324:22:81"},"nativeSrc":"1324:22:81","nodeType":"YulExpressionStatement","src":"1324:22:81"},{"body":{"nativeSrc":"1396:16:81","nodeType":"YulBlock","src":"1396:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1405:1:81","nodeType":"YulLiteral","src":"1405:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1408:1:81","nodeType":"YulLiteral","src":"1408:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1398:6:81","nodeType":"YulIdentifier","src":"1398:6:81"},"nativeSrc":"1398:12:81","nodeType":"YulFunctionCall","src":"1398:12:81"},"nativeSrc":"1398:12:81","nodeType":"YulExpressionStatement","src":"1398:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1369:2:81","nodeType":"YulIdentifier","src":"1369:2:81"},{"name":"length","nativeSrc":"1373:6:81","nodeType":"YulIdentifier","src":"1373:6:81"}],"functionName":{"name":"add","nativeSrc":"1365:3:81","nodeType":"YulIdentifier","src":"1365:3:81"},"nativeSrc":"1365:15:81","nodeType":"YulFunctionCall","src":"1365:15:81"},{"kind":"number","nativeSrc":"1382:2:81","nodeType":"YulLiteral","src":"1382:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1361:3:81","nodeType":"YulIdentifier","src":"1361:3:81"},"nativeSrc":"1361:24:81","nodeType":"YulFunctionCall","src":"1361:24:81"},{"name":"dataEnd","nativeSrc":"1387:7:81","nodeType":"YulIdentifier","src":"1387:7:81"}],"functionName":{"name":"gt","nativeSrc":"1358:2:81","nodeType":"YulIdentifier","src":"1358:2:81"},"nativeSrc":"1358:37:81","nodeType":"YulFunctionCall","src":"1358:37:81"},"nativeSrc":"1355:57:81","nodeType":"YulIf","src":"1355:57:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1431:6:81","nodeType":"YulIdentifier","src":"1431:6:81"},{"kind":"number","nativeSrc":"1439:2:81","nodeType":"YulLiteral","src":"1439:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1427:3:81","nodeType":"YulIdentifier","src":"1427:3:81"},"nativeSrc":"1427:15:81","nodeType":"YulFunctionCall","src":"1427:15:81"},{"arguments":[{"name":"_1","nativeSrc":"1448:2:81","nodeType":"YulIdentifier","src":"1448:2:81"},{"kind":"number","nativeSrc":"1452:2:81","nodeType":"YulLiteral","src":"1452:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1444:3:81","nodeType":"YulIdentifier","src":"1444:3:81"},"nativeSrc":"1444:11:81","nodeType":"YulFunctionCall","src":"1444:11:81"},{"name":"length","nativeSrc":"1457:6:81","nodeType":"YulIdentifier","src":"1457:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"1421:5:81","nodeType":"YulIdentifier","src":"1421:5:81"},"nativeSrc":"1421:43:81","nodeType":"YulFunctionCall","src":"1421:43:81"},"nativeSrc":"1421:43:81","nodeType":"YulExpressionStatement","src":"1421:43:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1488:6:81","nodeType":"YulIdentifier","src":"1488:6:81"},{"name":"length","nativeSrc":"1496:6:81","nodeType":"YulIdentifier","src":"1496:6:81"}],"functionName":{"name":"add","nativeSrc":"1484:3:81","nodeType":"YulIdentifier","src":"1484:3:81"},"nativeSrc":"1484:19:81","nodeType":"YulFunctionCall","src":"1484:19:81"},{"kind":"number","nativeSrc":"1505:2:81","nodeType":"YulLiteral","src":"1505:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1480:3:81","nodeType":"YulIdentifier","src":"1480:3:81"},"nativeSrc":"1480:28:81","nodeType":"YulFunctionCall","src":"1480:28:81"},{"kind":"number","nativeSrc":"1510:1:81","nodeType":"YulLiteral","src":"1510:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"1473:6:81","nodeType":"YulIdentifier","src":"1473:6:81"},"nativeSrc":"1473:39:81","nodeType":"YulFunctionCall","src":"1473:39:81"},"nativeSrc":"1473:39:81","nodeType":"YulExpressionStatement","src":"1473:39:81"},{"nativeSrc":"1521:16:81","nodeType":"YulAssignment","src":"1521:16:81","value":{"name":"memPtr","nativeSrc":"1531:6:81","nodeType":"YulIdentifier","src":"1531:6:81"},"variableNames":[{"name":"value1","nativeSrc":"1521:6:81","nodeType":"YulIdentifier","src":"1521:6:81"}]},{"nativeSrc":"1546:75:81","nodeType":"YulAssignment","src":"1546:75:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1606:9:81","nodeType":"YulIdentifier","src":"1606:9:81"},{"kind":"number","nativeSrc":"1617:2:81","nodeType":"YulLiteral","src":"1617:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1602:3:81","nodeType":"YulIdentifier","src":"1602:3:81"},"nativeSrc":"1602:18:81","nodeType":"YulFunctionCall","src":"1602:18:81"}],"functionName":{"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"1556:45:81","nodeType":"YulIdentifier","src":"1556:45:81"},"nativeSrc":"1556:65:81","nodeType":"YulFunctionCall","src":"1556:65:81"},"variableNames":[{"name":"value2","nativeSrc":"1546:6:81","nodeType":"YulIdentifier","src":"1546:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$9511_fromMemory","nativeSrc":"441:1186:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"538:9:81","nodeType":"YulTypedName","src":"538:9:81","type":""},{"name":"dataEnd","nativeSrc":"549:7:81","nodeType":"YulTypedName","src":"549:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"561:6:81","nodeType":"YulTypedName","src":"561:6:81","type":""},{"name":"value1","nativeSrc":"569:6:81","nodeType":"YulTypedName","src":"569:6:81","type":""},{"name":"value2","nativeSrc":"577:6:81","nodeType":"YulTypedName","src":"577:6:81","type":""}],"src":"441:1186:81"},{"body":{"nativeSrc":"1733:102:81","nodeType":"YulBlock","src":"1733:102:81","statements":[{"nativeSrc":"1743:26:81","nodeType":"YulAssignment","src":"1743:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1755:9:81","nodeType":"YulIdentifier","src":"1755:9:81"},{"kind":"number","nativeSrc":"1766:2:81","nodeType":"YulLiteral","src":"1766:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1751:3:81","nodeType":"YulIdentifier","src":"1751:3:81"},"nativeSrc":"1751:18:81","nodeType":"YulFunctionCall","src":"1751:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1743:4:81","nodeType":"YulIdentifier","src":"1743:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1785:9:81","nodeType":"YulIdentifier","src":"1785:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1800:6:81","nodeType":"YulIdentifier","src":"1800:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1816:3:81","nodeType":"YulLiteral","src":"1816:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1821:1:81","nodeType":"YulLiteral","src":"1821:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1812:3:81","nodeType":"YulIdentifier","src":"1812:3:81"},"nativeSrc":"1812:11:81","nodeType":"YulFunctionCall","src":"1812:11:81"},{"kind":"number","nativeSrc":"1825:1:81","nodeType":"YulLiteral","src":"1825:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1808:3:81","nodeType":"YulIdentifier","src":"1808:3:81"},"nativeSrc":"1808:19:81","nodeType":"YulFunctionCall","src":"1808:19:81"}],"functionName":{"name":"and","nativeSrc":"1796:3:81","nodeType":"YulIdentifier","src":"1796:3:81"},"nativeSrc":"1796:32:81","nodeType":"YulFunctionCall","src":"1796:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1778:6:81","nodeType":"YulIdentifier","src":"1778:6:81"},"nativeSrc":"1778:51:81","nodeType":"YulFunctionCall","src":"1778:51:81"},"nativeSrc":"1778:51:81","nodeType":"YulExpressionStatement","src":"1778:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1632:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1702:9:81","nodeType":"YulTypedName","src":"1702:9:81","type":""},{"name":"value0","nativeSrc":"1713:6:81","nodeType":"YulTypedName","src":"1713:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1724:4:81","nodeType":"YulTypedName","src":"1724:4:81","type":""}],"src":"1632:203:81"},{"body":{"nativeSrc":"1977:164:81","nodeType":"YulBlock","src":"1977:164:81","statements":[{"nativeSrc":"1987:27:81","nodeType":"YulVariableDeclaration","src":"1987:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"2007:6:81","nodeType":"YulIdentifier","src":"2007:6:81"}],"functionName":{"name":"mload","nativeSrc":"2001:5:81","nodeType":"YulIdentifier","src":"2001:5:81"},"nativeSrc":"2001:13:81","nodeType":"YulFunctionCall","src":"2001:13:81"},"variables":[{"name":"length","nativeSrc":"1991:6:81","nodeType":"YulTypedName","src":"1991:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"2029:3:81","nodeType":"YulIdentifier","src":"2029:3:81"},{"arguments":[{"name":"value0","nativeSrc":"2038:6:81","nodeType":"YulIdentifier","src":"2038:6:81"},{"kind":"number","nativeSrc":"2046:4:81","nodeType":"YulLiteral","src":"2046:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2034:3:81","nodeType":"YulIdentifier","src":"2034:3:81"},"nativeSrc":"2034:17:81","nodeType":"YulFunctionCall","src":"2034:17:81"},{"name":"length","nativeSrc":"2053:6:81","nodeType":"YulIdentifier","src":"2053:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"2023:5:81","nodeType":"YulIdentifier","src":"2023:5:81"},"nativeSrc":"2023:37:81","nodeType":"YulFunctionCall","src":"2023:37:81"},"nativeSrc":"2023:37:81","nodeType":"YulExpressionStatement","src":"2023:37:81"},{"nativeSrc":"2069:26:81","nodeType":"YulVariableDeclaration","src":"2069:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"2083:3:81","nodeType":"YulIdentifier","src":"2083:3:81"},{"name":"length","nativeSrc":"2088:6:81","nodeType":"YulIdentifier","src":"2088:6:81"}],"functionName":{"name":"add","nativeSrc":"2079:3:81","nodeType":"YulIdentifier","src":"2079:3:81"},"nativeSrc":"2079:16:81","nodeType":"YulFunctionCall","src":"2079:16:81"},"variables":[{"name":"_1","nativeSrc":"2073:2:81","nodeType":"YulTypedName","src":"2073:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"2111:2:81","nodeType":"YulIdentifier","src":"2111:2:81"},{"kind":"number","nativeSrc":"2115:1:81","nodeType":"YulLiteral","src":"2115:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2104:6:81","nodeType":"YulIdentifier","src":"2104:6:81"},"nativeSrc":"2104:13:81","nodeType":"YulFunctionCall","src":"2104:13:81"},"nativeSrc":"2104:13:81","nodeType":"YulExpressionStatement","src":"2104:13:81"},{"nativeSrc":"2126:9:81","nodeType":"YulAssignment","src":"2126:9:81","value":{"name":"_1","nativeSrc":"2133:2:81","nodeType":"YulIdentifier","src":"2133:2:81"},"variableNames":[{"name":"end","nativeSrc":"2126:3:81","nodeType":"YulIdentifier","src":"2126:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"1840:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"1953:3:81","nodeType":"YulTypedName","src":"1953:3:81","type":""},{"name":"value0","nativeSrc":"1958:6:81","nodeType":"YulTypedName","src":"1958:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"1969:3:81","nodeType":"YulTypedName","src":"1969:3:81","type":""}],"src":"1840:301:81"}]},"contents":"{\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 panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_contract_IAccessManager_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$9511_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value1 := memPtr\n        value2 := abi_decode_contract_IAccessManager_fromMemory(add(headStart, 64))\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_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405260405161070c38038061070c8339810160408190526100229161027a565b8282828282610031828261004a565b50506001600160a01b0316608052506103639350505050565b610053826100a8565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561009c576100978282610123565b505050565b6100a4610196565b5050565b806001600160a01b03163b5f036100e257604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b03168460405161013f919061034d565b5f60405180830381855af49150503d805f8114610177576040519150601f19603f3d011682016040523d82523d5f602084013e61017c565b606091505b50909250905061018d8583836101b7565b95945050505050565b34156101b55760405163b398979f60e01b815260040160405180910390fd5b565b6060826101cc576101c782610216565b61020f565b81511580156101e357506001600160a01b0384163b155b1561020c57604051639996b31560e01b81526001600160a01b03851660048201526024016100d9565b50805b9392505050565b8051156102265780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b50565b6001600160a01b038116811461023f575f5ffd5b634e487b7160e01b5f52604160045260245ffd5b805161027581610242565b919050565b5f5f5f6060848603121561028c575f5ffd5b835161029781610242565b60208501519093506001600160401b038111156102b2575f5ffd5b8401601f810186136102c2575f5ffd5b80516001600160401b038111156102db576102db610256565b604051601f8201601f19908116603f011681016001600160401b038111828210171561030957610309610256565b604052818152828201602001881015610320575f5ffd5b8160208401602083015e5f602083830101528094505050506103446040850161026a565b90509250925092565b5f82518060208501845e5f920191825250919050565b60805161038b6103815f395f818160a70152610181015261038b5ff3fe60806040526004361061004d575f3560e01c8063342db7391461005e5780633a7b7a3914610096578063515f8df0146100e1578063ee8d6399146100f5578063f49367aa146100fd57610054565b3661005457005b61005c610110565b005b348015610069575f5ffd5b506100836e1a185c991a185d0b595e1c1bdcd959608a1b81565b6040519081526020015b60405180910390f35b3480156100a1575f5ffd5b506100c97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161008d565b3480156100ec575f5ffd5b506100c9610122565b61005c610130565b61005c61010b366004610285565b610138565b61012061011b610144565b610176565b565b5f61012b610144565b905090565b610120610110565b61014181610176565b50565b5f61012b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b5f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663b700961333306101b560048636816102b2565b6101be916102d9565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610210573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102349190610311565b5090508061025a5760405162d1953b60e31b815233600482015260240160405180910390fd5b61026382610267565b5050565b365f5f375f5f365f845af43d5f5f3e808015610281573d5ff35b3d5ffd5b5f60208284031215610295575f5ffd5b81356001600160a01b03811681146102ab575f5ffd5b9392505050565b5f5f858511156102c0575f5ffd5b838611156102cc575f5ffd5b5050820193919092039150565b80356001600160e01b0319811690600484101561030a576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f60408385031215610322575f5ffd5b82518015158114610331575f5ffd5b602084015190925063ffffffff8116811461034a575f5ffd5b80915050925092905056fea2646970667358221220bcecc2e216de574b407f28b373e73f83cd19ff17b29ea8064cbad4ddda7592ce64736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x70C CODESIZE SUB DUP1 PUSH2 0x70C DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x27A JUMP JUMPDEST DUP3 DUP3 DUP3 DUP3 DUP3 PUSH2 0x31 DUP3 DUP3 PUSH2 0x4A JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE POP PUSH2 0x363 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x53 DUP3 PUSH2 0xA8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x9C JUMPI PUSH2 0x97 DUP3 DUP3 PUSH2 0x123 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xA4 PUSH2 0x196 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xE2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x34D JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x177 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x17C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x18D DUP6 DUP4 DUP4 PUSH2 0x1B7 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x1B5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1CC JUMPI PUSH2 0x1C7 DUP3 PUSH2 0x216 JUMP JUMPDEST PUSH2 0x20F JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1E3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x20C JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xD9 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x226 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x275 DUP2 PUSH2 0x242 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x28C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x297 DUP2 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x2C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2DB JUMPI PUSH2 0x2DB PUSH2 0x256 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x309 JUMPI PUSH2 0x309 PUSH2 0x256 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP9 LT ISZERO PUSH2 0x320 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP PUSH2 0x344 PUSH1 0x40 DUP6 ADD PUSH2 0x26A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x38B PUSH2 0x381 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH1 0xA7 ADD MSTORE PUSH2 0x181 ADD MSTORE PUSH2 0x38B PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4D JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x342DB739 EQ PUSH2 0x5E JUMPI DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x515F8DF0 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xEE8D6399 EQ PUSH2 0xF5 JUMPI DUP1 PUSH4 0xF49367AA EQ PUSH2 0xFD JUMPI PUSH2 0x54 JUMP JUMPDEST CALLDATASIZE PUSH2 0x54 JUMPI STOP JUMPDEST PUSH2 0x5C PUSH2 0x110 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x69 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x83 PUSH15 0x1A185C991A185D0B595E1C1BDCD959 PUSH1 0x8A SHL DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xC9 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 0x8D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xC9 PUSH2 0x122 JUMP JUMPDEST PUSH2 0x5C PUSH2 0x130 JUMP JUMPDEST PUSH2 0x5C PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x285 JUMP JUMPDEST PUSH2 0x138 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x11B PUSH2 0x144 JUMP JUMPDEST PUSH2 0x176 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x12B PUSH2 0x144 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x110 JUMP JUMPDEST PUSH2 0x141 DUP2 PUSH2 0x176 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x12B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xB7009613 CALLER ADDRESS PUSH2 0x1B5 PUSH1 0x4 DUP7 CALLDATASIZE DUP2 PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x1BE SWAP2 PUSH2 0x2D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP6 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH1 0x24 DUP5 ADD MSTORE AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x210 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x234 SWAP2 SWAP1 PUSH2 0x311 JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x25A JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x263 DUP3 PUSH2 0x267 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x281 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x2C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x30A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x322 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x331 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x34A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBC 0xEC 0xC2 0xE2 AND 0xDE JUMPI 0x4B BLOCKHASH PUSH32 0x28B373E73F83CD19FF17B29EA8064CBAD4DDDA7592CE64736F6C634300081C00 CALLER ","sourceMap":"870:633:72:-:0;;;1006:146;;;;;;;;;;;;;;;;;;:::i;:::-;1105:14;1121:5;1128:7;1105:14;1121:5;1155:52:43;1105:14:72;1121:5;1155:29:43;:52::i;:::-;-1:-1:-1;;;;;;;568:24:74::1;;::::0;-1:-1:-1;870:633:72;;-1:-1:-1;;;;870:633:72;2264:344:44;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:44;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1671:281::-;1748:17;-1:-1:-1;;;;;1748:29:44;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:44;;-1:-1:-1;;;;;1796:32:81;;1805:47:44;;;1778:51:81;1751:18;;1805:47:44;;;;;;;;1744:119;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:44;-1:-1:-1;;;;;1872:73:44;;;;;;;;;;1671:281::o;3916:253:54:-;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:54;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4023:67:54;;-1:-1:-1;4023:67:54;-1:-1:-1;4107:55:54;4134:6;4023:67;;4107:26;:55::i;:::-;4100:62;3916:253;-1:-1:-1;;;;;3916:253:54:o;6113:122:44:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:44;;;;;;;;;;;6159:70;6113:122::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;1796:32:81;;4933:24:54;;;1778:51:81;1751:18;;4933:24:54;1632:203:81;4853:119:54;-1:-1:-1;4992:10:54;4605:408;4437:582;;;;;:::o;5559:487::-;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;5686:354;5559:487;:::o;14:131:81:-;-1:-1:-1;;;;;89:31:81;;79:42;;69:70;;135:1;132;125:12;150:127;211:10;206:3;202:20;199:1;192:31;242:4;239:1;232:15;266:4;263:1;256:15;282:154;377:13;;399:31;377:13;399:31;:::i;:::-;282:154;;;:::o;441:1186::-;561:6;569;577;630:2;618:9;609:7;605:23;601:32;598:52;;;646:1;643;636:12;598:52;678:9;672:16;697:31;722:5;697:31;:::i;:::-;796:2;781:18;;775:25;747:5;;-1:-1:-1;;;;;;812:30:81;;809:50;;;855:1;852;845:12;809:50;878:22;;931:4;923:13;;919:27;-1:-1:-1;909:55:81;;960:1;957;950:12;909:55;987:9;;-1:-1:-1;;;;;1008:30:81;;1005:56;;;1041:18;;:::i;:::-;1090:2;1084:9;1182:2;1144:17;;-1:-1:-1;;1140:31:81;;;1173:2;1136:40;1132:54;1120:67;;-1:-1:-1;;;;;1202:34:81;;1238:22;;;1199:62;1196:88;;;1264:18;;:::i;:::-;1300:2;1293:22;1324;;;1365:15;;;1382:2;1361:24;1358:37;-1:-1:-1;1355:57:81;;;1408:1;1405;1398:12;1355:57;1457:6;1452:2;1448;1444:11;1439:2;1431:6;1427:15;1421:43;1510:1;1505:2;1496:6;1488;1484:19;1480:28;1473:39;1531:6;1521:16;;;;;1556:65;1617:2;1606:9;1602:18;1556:65;:::i;:::-;1546:75;;441:1186;;;;;:::o;1840:301::-;1969:3;2007:6;2001:13;2053:6;2046:4;2038:6;2034:17;2029:3;2023:37;2115:1;2079:16;;2104:13;;;-1:-1:-1;2079:16:81;1840:301;-1:-1:-1;1840:301:81:o;:::-;870:633:72;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@$_delegate_22877":{"entryPoint":312,"id":22877,"parameterSlots":1,"returnSlots":0},"@$_fallback_22899":{"entryPoint":304,"id":22899,"parameterSlots":0,"returnSlots":0},"@$_implementation_22890":{"entryPoint":290,"id":22890,"parameterSlots":0,"returnSlots":1},"@ACCESS_MANAGER_25476":{"entryPoint":null,"id":25476,"parameterSlots":0,"returnSlots":0},"@_10461":{"entryPoint":null,"id":10461,"parameterSlots":0,"returnSlots":0},"@_22903":{"entryPoint":null,"id":22903,"parameterSlots":0,"returnSlots":0},"@__hh_exposed_bytecode_marker_22849":{"entryPoint":null,"id":22849,"parameterSlots":0,"returnSlots":0},"@_delegate_10437":{"entryPoint":615,"id":10437,"parameterSlots":1,"returnSlots":0},"@_delegate_25541":{"entryPoint":374,"id":25541,"parameterSlots":1,"returnSlots":0},"@_fallback_10453":{"entryPoint":272,"id":10453,"parameterSlots":0,"returnSlots":0},"@_implementation_10131":{"entryPoint":324,"id":10131,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@getImplementation_10178":{"entryPoint":null,"id":10178,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":645,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":785,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IAccessManager_$9511__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":690,"id":null,"parameterSlots":4,"returnSlots":2},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":729,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:2450:81","nodeType":"YulBlock","src":"0:2450:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"115:76:81","nodeType":"YulBlock","src":"115:76:81","statements":[{"nativeSrc":"125:26:81","nodeType":"YulAssignment","src":"125:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:81","nodeType":"YulIdentifier","src":"137:9:81"},{"kind":"number","nativeSrc":"148:2:81","nodeType":"YulLiteral","src":"148:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:81","nodeType":"YulIdentifier","src":"133:3:81"},"nativeSrc":"133:18:81","nodeType":"YulFunctionCall","src":"133:18:81"},"variableNames":[{"name":"tail","nativeSrc":"125:4:81","nodeType":"YulIdentifier","src":"125:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:81","nodeType":"YulIdentifier","src":"167:9:81"},{"name":"value0","nativeSrc":"178:6:81","nodeType":"YulIdentifier","src":"178:6:81"}],"functionName":{"name":"mstore","nativeSrc":"160:6:81","nodeType":"YulIdentifier","src":"160:6:81"},"nativeSrc":"160:25:81","nodeType":"YulFunctionCall","src":"160:25:81"},"nativeSrc":"160:25:81","nodeType":"YulExpressionStatement","src":"160:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"14:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:81","nodeType":"YulTypedName","src":"84:9:81","type":""},{"name":"value0","nativeSrc":"95:6:81","nodeType":"YulTypedName","src":"95:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:81","nodeType":"YulTypedName","src":"106:4:81","type":""}],"src":"14:177:81"},{"body":{"nativeSrc":"320:102:81","nodeType":"YulBlock","src":"320:102:81","statements":[{"nativeSrc":"330:26:81","nodeType":"YulAssignment","src":"330:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"342:9:81","nodeType":"YulIdentifier","src":"342:9:81"},{"kind":"number","nativeSrc":"353:2:81","nodeType":"YulLiteral","src":"353:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"338:3:81","nodeType":"YulIdentifier","src":"338:3:81"},"nativeSrc":"338:18:81","nodeType":"YulFunctionCall","src":"338:18:81"},"variableNames":[{"name":"tail","nativeSrc":"330:4:81","nodeType":"YulIdentifier","src":"330:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"372:9:81","nodeType":"YulIdentifier","src":"372:9:81"},{"arguments":[{"name":"value0","nativeSrc":"387:6:81","nodeType":"YulIdentifier","src":"387:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"403:3:81","nodeType":"YulLiteral","src":"403:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"408:1:81","nodeType":"YulLiteral","src":"408:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"399:3:81","nodeType":"YulIdentifier","src":"399:3:81"},"nativeSrc":"399:11:81","nodeType":"YulFunctionCall","src":"399:11:81"},{"kind":"number","nativeSrc":"412:1:81","nodeType":"YulLiteral","src":"412:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"395:3:81","nodeType":"YulIdentifier","src":"395:3:81"},"nativeSrc":"395:19:81","nodeType":"YulFunctionCall","src":"395:19:81"}],"functionName":{"name":"and","nativeSrc":"383:3:81","nodeType":"YulIdentifier","src":"383:3:81"},"nativeSrc":"383:32:81","nodeType":"YulFunctionCall","src":"383:32:81"}],"functionName":{"name":"mstore","nativeSrc":"365:6:81","nodeType":"YulIdentifier","src":"365:6:81"},"nativeSrc":"365:51:81","nodeType":"YulFunctionCall","src":"365:51:81"},"nativeSrc":"365:51:81","nodeType":"YulExpressionStatement","src":"365:51:81"}]},"name":"abi_encode_tuple_t_contract$_IAccessManager_$9511__to_t_address__fromStack_reversed","nativeSrc":"196:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"289:9:81","nodeType":"YulTypedName","src":"289:9:81","type":""},{"name":"value0","nativeSrc":"300:6:81","nodeType":"YulTypedName","src":"300:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"311:4:81","nodeType":"YulTypedName","src":"311:4:81","type":""}],"src":"196:226:81"},{"body":{"nativeSrc":"528:102:81","nodeType":"YulBlock","src":"528:102:81","statements":[{"nativeSrc":"538:26:81","nodeType":"YulAssignment","src":"538:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"550:9:81","nodeType":"YulIdentifier","src":"550:9:81"},{"kind":"number","nativeSrc":"561:2:81","nodeType":"YulLiteral","src":"561:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"546:3:81","nodeType":"YulIdentifier","src":"546:3:81"},"nativeSrc":"546:18:81","nodeType":"YulFunctionCall","src":"546:18:81"},"variableNames":[{"name":"tail","nativeSrc":"538:4:81","nodeType":"YulIdentifier","src":"538:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"580:9:81","nodeType":"YulIdentifier","src":"580:9:81"},{"arguments":[{"name":"value0","nativeSrc":"595:6:81","nodeType":"YulIdentifier","src":"595:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"611:3:81","nodeType":"YulLiteral","src":"611:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"616:1:81","nodeType":"YulLiteral","src":"616:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"607:3:81","nodeType":"YulIdentifier","src":"607:3:81"},"nativeSrc":"607:11:81","nodeType":"YulFunctionCall","src":"607:11:81"},{"kind":"number","nativeSrc":"620:1:81","nodeType":"YulLiteral","src":"620:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"603:3:81","nodeType":"YulIdentifier","src":"603:3:81"},"nativeSrc":"603:19:81","nodeType":"YulFunctionCall","src":"603:19:81"}],"functionName":{"name":"and","nativeSrc":"591:3:81","nodeType":"YulIdentifier","src":"591:3:81"},"nativeSrc":"591:32:81","nodeType":"YulFunctionCall","src":"591:32:81"}],"functionName":{"name":"mstore","nativeSrc":"573:6:81","nodeType":"YulIdentifier","src":"573:6:81"},"nativeSrc":"573:51:81","nodeType":"YulFunctionCall","src":"573:51:81"},"nativeSrc":"573:51:81","nodeType":"YulExpressionStatement","src":"573:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"427:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"497:9:81","nodeType":"YulTypedName","src":"497:9:81","type":""},{"name":"value0","nativeSrc":"508:6:81","nodeType":"YulTypedName","src":"508:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"519:4:81","nodeType":"YulTypedName","src":"519:4:81","type":""}],"src":"427:203:81"},{"body":{"nativeSrc":"705:216:81","nodeType":"YulBlock","src":"705:216:81","statements":[{"body":{"nativeSrc":"751:16:81","nodeType":"YulBlock","src":"751:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"760:1:81","nodeType":"YulLiteral","src":"760:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"763:1:81","nodeType":"YulLiteral","src":"763:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"753:6:81","nodeType":"YulIdentifier","src":"753:6:81"},"nativeSrc":"753:12:81","nodeType":"YulFunctionCall","src":"753:12:81"},"nativeSrc":"753:12:81","nodeType":"YulExpressionStatement","src":"753:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"726:7:81","nodeType":"YulIdentifier","src":"726:7:81"},{"name":"headStart","nativeSrc":"735:9:81","nodeType":"YulIdentifier","src":"735:9:81"}],"functionName":{"name":"sub","nativeSrc":"722:3:81","nodeType":"YulIdentifier","src":"722:3:81"},"nativeSrc":"722:23:81","nodeType":"YulFunctionCall","src":"722:23:81"},{"kind":"number","nativeSrc":"747:2:81","nodeType":"YulLiteral","src":"747:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"718:3:81","nodeType":"YulIdentifier","src":"718:3:81"},"nativeSrc":"718:32:81","nodeType":"YulFunctionCall","src":"718:32:81"},"nativeSrc":"715:52:81","nodeType":"YulIf","src":"715:52:81"},{"nativeSrc":"776:36:81","nodeType":"YulVariableDeclaration","src":"776:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"802:9:81","nodeType":"YulIdentifier","src":"802:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"789:12:81","nodeType":"YulIdentifier","src":"789:12:81"},"nativeSrc":"789:23:81","nodeType":"YulFunctionCall","src":"789:23:81"},"variables":[{"name":"value","nativeSrc":"780:5:81","nodeType":"YulTypedName","src":"780:5:81","type":""}]},{"body":{"nativeSrc":"875:16:81","nodeType":"YulBlock","src":"875:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"884:1:81","nodeType":"YulLiteral","src":"884:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"887:1:81","nodeType":"YulLiteral","src":"887:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"877:6:81","nodeType":"YulIdentifier","src":"877:6:81"},"nativeSrc":"877:12:81","nodeType":"YulFunctionCall","src":"877:12:81"},"nativeSrc":"877:12:81","nodeType":"YulExpressionStatement","src":"877:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"834:5:81","nodeType":"YulIdentifier","src":"834:5:81"},{"arguments":[{"name":"value","nativeSrc":"845:5:81","nodeType":"YulIdentifier","src":"845:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"860:3:81","nodeType":"YulLiteral","src":"860:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"865:1:81","nodeType":"YulLiteral","src":"865:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"856:3:81","nodeType":"YulIdentifier","src":"856:3:81"},"nativeSrc":"856:11:81","nodeType":"YulFunctionCall","src":"856:11:81"},{"kind":"number","nativeSrc":"869:1:81","nodeType":"YulLiteral","src":"869:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"852:3:81","nodeType":"YulIdentifier","src":"852:3:81"},"nativeSrc":"852:19:81","nodeType":"YulFunctionCall","src":"852:19:81"}],"functionName":{"name":"and","nativeSrc":"841:3:81","nodeType":"YulIdentifier","src":"841:3:81"},"nativeSrc":"841:31:81","nodeType":"YulFunctionCall","src":"841:31:81"}],"functionName":{"name":"eq","nativeSrc":"831:2:81","nodeType":"YulIdentifier","src":"831:2:81"},"nativeSrc":"831:42:81","nodeType":"YulFunctionCall","src":"831:42:81"}],"functionName":{"name":"iszero","nativeSrc":"824:6:81","nodeType":"YulIdentifier","src":"824:6:81"},"nativeSrc":"824:50:81","nodeType":"YulFunctionCall","src":"824:50:81"},"nativeSrc":"821:70:81","nodeType":"YulIf","src":"821:70:81"},{"nativeSrc":"900:15:81","nodeType":"YulAssignment","src":"900:15:81","value":{"name":"value","nativeSrc":"910:5:81","nodeType":"YulIdentifier","src":"910:5:81"},"variableNames":[{"name":"value0","nativeSrc":"900:6:81","nodeType":"YulIdentifier","src":"900:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"635:286:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"671:9:81","nodeType":"YulTypedName","src":"671:9:81","type":""},{"name":"dataEnd","nativeSrc":"682:7:81","nodeType":"YulTypedName","src":"682:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"694:6:81","nodeType":"YulTypedName","src":"694:6:81","type":""}],"src":"635:286:81"},{"body":{"nativeSrc":"1056:201:81","nodeType":"YulBlock","src":"1056:201:81","statements":[{"body":{"nativeSrc":"1094:16:81","nodeType":"YulBlock","src":"1094:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1103:1:81","nodeType":"YulLiteral","src":"1103:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1106:1:81","nodeType":"YulLiteral","src":"1106:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1096:6:81","nodeType":"YulIdentifier","src":"1096:6:81"},"nativeSrc":"1096:12:81","nodeType":"YulFunctionCall","src":"1096:12:81"},"nativeSrc":"1096:12:81","nodeType":"YulExpressionStatement","src":"1096:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"1072:10:81","nodeType":"YulIdentifier","src":"1072:10:81"},{"name":"endIndex","nativeSrc":"1084:8:81","nodeType":"YulIdentifier","src":"1084:8:81"}],"functionName":{"name":"gt","nativeSrc":"1069:2:81","nodeType":"YulIdentifier","src":"1069:2:81"},"nativeSrc":"1069:24:81","nodeType":"YulFunctionCall","src":"1069:24:81"},"nativeSrc":"1066:44:81","nodeType":"YulIf","src":"1066:44:81"},{"body":{"nativeSrc":"1143:16:81","nodeType":"YulBlock","src":"1143:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1152:1:81","nodeType":"YulLiteral","src":"1152:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1155:1:81","nodeType":"YulLiteral","src":"1155:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1145:6:81","nodeType":"YulIdentifier","src":"1145:6:81"},"nativeSrc":"1145:12:81","nodeType":"YulFunctionCall","src":"1145:12:81"},"nativeSrc":"1145:12:81","nodeType":"YulExpressionStatement","src":"1145:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"1125:8:81","nodeType":"YulIdentifier","src":"1125:8:81"},{"name":"length","nativeSrc":"1135:6:81","nodeType":"YulIdentifier","src":"1135:6:81"}],"functionName":{"name":"gt","nativeSrc":"1122:2:81","nodeType":"YulIdentifier","src":"1122:2:81"},"nativeSrc":"1122:20:81","nodeType":"YulFunctionCall","src":"1122:20:81"},"nativeSrc":"1119:40:81","nodeType":"YulIf","src":"1119:40:81"},{"nativeSrc":"1168:36:81","nodeType":"YulAssignment","src":"1168:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"1185:6:81","nodeType":"YulIdentifier","src":"1185:6:81"},{"name":"startIndex","nativeSrc":"1193:10:81","nodeType":"YulIdentifier","src":"1193:10:81"}],"functionName":{"name":"add","nativeSrc":"1181:3:81","nodeType":"YulIdentifier","src":"1181:3:81"},"nativeSrc":"1181:23:81","nodeType":"YulFunctionCall","src":"1181:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"1168:9:81","nodeType":"YulIdentifier","src":"1168:9:81"}]},{"nativeSrc":"1213:38:81","nodeType":"YulAssignment","src":"1213:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"1230:8:81","nodeType":"YulIdentifier","src":"1230:8:81"},{"name":"startIndex","nativeSrc":"1240:10:81","nodeType":"YulIdentifier","src":"1240:10:81"}],"functionName":{"name":"sub","nativeSrc":"1226:3:81","nodeType":"YulIdentifier","src":"1226:3:81"},"nativeSrc":"1226:25:81","nodeType":"YulFunctionCall","src":"1226:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"1213:9:81","nodeType":"YulIdentifier","src":"1213:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"926:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"990:6:81","nodeType":"YulTypedName","src":"990:6:81","type":""},{"name":"length","nativeSrc":"998:6:81","nodeType":"YulTypedName","src":"998:6:81","type":""},{"name":"startIndex","nativeSrc":"1006:10:81","nodeType":"YulTypedName","src":"1006:10:81","type":""},{"name":"endIndex","nativeSrc":"1018:8:81","nodeType":"YulTypedName","src":"1018:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"1031:9:81","nodeType":"YulTypedName","src":"1031:9:81","type":""},{"name":"lengthOut","nativeSrc":"1042:9:81","nodeType":"YulTypedName","src":"1042:9:81","type":""}],"src":"926:331:81"},{"body":{"nativeSrc":"1362:238:81","nodeType":"YulBlock","src":"1362:238:81","statements":[{"nativeSrc":"1372:29:81","nodeType":"YulVariableDeclaration","src":"1372:29:81","value":{"arguments":[{"name":"array","nativeSrc":"1395:5:81","nodeType":"YulIdentifier","src":"1395:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"1382:12:81","nodeType":"YulIdentifier","src":"1382:12:81"},"nativeSrc":"1382:19:81","nodeType":"YulFunctionCall","src":"1382:19:81"},"variables":[{"name":"_1","nativeSrc":"1376:2:81","nodeType":"YulTypedName","src":"1376:2:81","type":""}]},{"nativeSrc":"1410:38:81","nodeType":"YulAssignment","src":"1410:38:81","value":{"arguments":[{"name":"_1","nativeSrc":"1423:2:81","nodeType":"YulIdentifier","src":"1423:2:81"},{"arguments":[{"kind":"number","nativeSrc":"1431:3:81","nodeType":"YulLiteral","src":"1431:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1436:10:81","nodeType":"YulLiteral","src":"1436:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1427:3:81","nodeType":"YulIdentifier","src":"1427:3:81"},"nativeSrc":"1427:20:81","nodeType":"YulFunctionCall","src":"1427:20:81"}],"functionName":{"name":"and","nativeSrc":"1419:3:81","nodeType":"YulIdentifier","src":"1419:3:81"},"nativeSrc":"1419:29:81","nodeType":"YulFunctionCall","src":"1419:29:81"},"variableNames":[{"name":"value","nativeSrc":"1410:5:81","nodeType":"YulIdentifier","src":"1410:5:81"}]},{"body":{"nativeSrc":"1479:115:81","nodeType":"YulBlock","src":"1479:115:81","statements":[{"nativeSrc":"1493:91:81","nodeType":"YulAssignment","src":"1493:91:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1510:2:81","nodeType":"YulIdentifier","src":"1510:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1522:1:81","nodeType":"YulLiteral","src":"1522:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"1529:1:81","nodeType":"YulLiteral","src":"1529:1:81","type":"","value":"4"},{"name":"len","nativeSrc":"1532:3:81","nodeType":"YulIdentifier","src":"1532:3:81"}],"functionName":{"name":"sub","nativeSrc":"1525:3:81","nodeType":"YulIdentifier","src":"1525:3:81"},"nativeSrc":"1525:11:81","nodeType":"YulFunctionCall","src":"1525:11:81"}],"functionName":{"name":"shl","nativeSrc":"1518:3:81","nodeType":"YulIdentifier","src":"1518:3:81"},"nativeSrc":"1518:19:81","nodeType":"YulFunctionCall","src":"1518:19:81"},{"arguments":[{"kind":"number","nativeSrc":"1543:3:81","nodeType":"YulLiteral","src":"1543:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1548:10:81","nodeType":"YulLiteral","src":"1548:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1539:3:81","nodeType":"YulIdentifier","src":"1539:3:81"},"nativeSrc":"1539:20:81","nodeType":"YulFunctionCall","src":"1539:20:81"}],"functionName":{"name":"shl","nativeSrc":"1514:3:81","nodeType":"YulIdentifier","src":"1514:3:81"},"nativeSrc":"1514:46:81","nodeType":"YulFunctionCall","src":"1514:46:81"}],"functionName":{"name":"and","nativeSrc":"1506:3:81","nodeType":"YulIdentifier","src":"1506:3:81"},"nativeSrc":"1506:55:81","nodeType":"YulFunctionCall","src":"1506:55:81"},{"arguments":[{"kind":"number","nativeSrc":"1567:3:81","nodeType":"YulLiteral","src":"1567:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1572:10:81","nodeType":"YulLiteral","src":"1572:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1563:3:81","nodeType":"YulIdentifier","src":"1563:3:81"},"nativeSrc":"1563:20:81","nodeType":"YulFunctionCall","src":"1563:20:81"}],"functionName":{"name":"and","nativeSrc":"1502:3:81","nodeType":"YulIdentifier","src":"1502:3:81"},"nativeSrc":"1502:82:81","nodeType":"YulFunctionCall","src":"1502:82:81"},"variableNames":[{"name":"value","nativeSrc":"1493:5:81","nodeType":"YulIdentifier","src":"1493:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1463:3:81","nodeType":"YulIdentifier","src":"1463:3:81"},{"kind":"number","nativeSrc":"1468:1:81","nodeType":"YulLiteral","src":"1468:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"1460:2:81","nodeType":"YulIdentifier","src":"1460:2:81"},"nativeSrc":"1460:10:81","nodeType":"YulFunctionCall","src":"1460:10:81"},"nativeSrc":"1457:137:81","nodeType":"YulIf","src":"1457:137:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"1262:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"1337:5:81","nodeType":"YulTypedName","src":"1337:5:81","type":""},{"name":"len","nativeSrc":"1344:3:81","nodeType":"YulTypedName","src":"1344:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1352:5:81","nodeType":"YulTypedName","src":"1352:5:81","type":""}],"src":"1262:338:81"},{"body":{"nativeSrc":"1760:241:81","nodeType":"YulBlock","src":"1760:241:81","statements":[{"nativeSrc":"1770:26:81","nodeType":"YulAssignment","src":"1770:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1782:9:81","nodeType":"YulIdentifier","src":"1782:9:81"},{"kind":"number","nativeSrc":"1793:2:81","nodeType":"YulLiteral","src":"1793:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1778:3:81","nodeType":"YulIdentifier","src":"1778:3:81"},"nativeSrc":"1778:18:81","nodeType":"YulFunctionCall","src":"1778:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1770:4:81","nodeType":"YulIdentifier","src":"1770:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1812:9:81","nodeType":"YulIdentifier","src":"1812:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1827:6:81","nodeType":"YulIdentifier","src":"1827:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1843:3:81","nodeType":"YulLiteral","src":"1843:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1848:1:81","nodeType":"YulLiteral","src":"1848:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1839:3:81","nodeType":"YulIdentifier","src":"1839:3:81"},"nativeSrc":"1839:11:81","nodeType":"YulFunctionCall","src":"1839:11:81"},{"kind":"number","nativeSrc":"1852:1:81","nodeType":"YulLiteral","src":"1852:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1835:3:81","nodeType":"YulIdentifier","src":"1835:3:81"},"nativeSrc":"1835:19:81","nodeType":"YulFunctionCall","src":"1835:19:81"}],"functionName":{"name":"and","nativeSrc":"1823:3:81","nodeType":"YulIdentifier","src":"1823:3:81"},"nativeSrc":"1823:32:81","nodeType":"YulFunctionCall","src":"1823:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1805:6:81","nodeType":"YulIdentifier","src":"1805:6:81"},"nativeSrc":"1805:51:81","nodeType":"YulFunctionCall","src":"1805:51:81"},"nativeSrc":"1805:51:81","nodeType":"YulExpressionStatement","src":"1805:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1876:9:81","nodeType":"YulIdentifier","src":"1876:9:81"},{"kind":"number","nativeSrc":"1887:2:81","nodeType":"YulLiteral","src":"1887:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1872:3:81","nodeType":"YulIdentifier","src":"1872:3:81"},"nativeSrc":"1872:18:81","nodeType":"YulFunctionCall","src":"1872:18:81"},{"arguments":[{"name":"value1","nativeSrc":"1896:6:81","nodeType":"YulIdentifier","src":"1896:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1912:3:81","nodeType":"YulLiteral","src":"1912:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1917:1:81","nodeType":"YulLiteral","src":"1917:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1908:3:81","nodeType":"YulIdentifier","src":"1908:3:81"},"nativeSrc":"1908:11:81","nodeType":"YulFunctionCall","src":"1908:11:81"},{"kind":"number","nativeSrc":"1921:1:81","nodeType":"YulLiteral","src":"1921:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1904:3:81","nodeType":"YulIdentifier","src":"1904:3:81"},"nativeSrc":"1904:19:81","nodeType":"YulFunctionCall","src":"1904:19:81"}],"functionName":{"name":"and","nativeSrc":"1892:3:81","nodeType":"YulIdentifier","src":"1892:3:81"},"nativeSrc":"1892:32:81","nodeType":"YulFunctionCall","src":"1892:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1865:6:81","nodeType":"YulIdentifier","src":"1865:6:81"},"nativeSrc":"1865:60:81","nodeType":"YulFunctionCall","src":"1865:60:81"},"nativeSrc":"1865:60:81","nodeType":"YulExpressionStatement","src":"1865:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1945:9:81","nodeType":"YulIdentifier","src":"1945:9:81"},{"kind":"number","nativeSrc":"1956:2:81","nodeType":"YulLiteral","src":"1956:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1941:3:81","nodeType":"YulIdentifier","src":"1941:3:81"},"nativeSrc":"1941:18:81","nodeType":"YulFunctionCall","src":"1941:18:81"},{"arguments":[{"name":"value2","nativeSrc":"1965:6:81","nodeType":"YulIdentifier","src":"1965:6:81"},{"arguments":[{"kind":"number","nativeSrc":"1977:3:81","nodeType":"YulLiteral","src":"1977:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1982:10:81","nodeType":"YulLiteral","src":"1982:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1973:3:81","nodeType":"YulIdentifier","src":"1973:3:81"},"nativeSrc":"1973:20:81","nodeType":"YulFunctionCall","src":"1973:20:81"}],"functionName":{"name":"and","nativeSrc":"1961:3:81","nodeType":"YulIdentifier","src":"1961:3:81"},"nativeSrc":"1961:33:81","nodeType":"YulFunctionCall","src":"1961:33:81"}],"functionName":{"name":"mstore","nativeSrc":"1934:6:81","nodeType":"YulIdentifier","src":"1934:6:81"},"nativeSrc":"1934:61:81","nodeType":"YulFunctionCall","src":"1934:61:81"},"nativeSrc":"1934:61:81","nodeType":"YulExpressionStatement","src":"1934:61:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"1605:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1713:9:81","nodeType":"YulTypedName","src":"1713:9:81","type":""},{"name":"value2","nativeSrc":"1724:6:81","nodeType":"YulTypedName","src":"1724:6:81","type":""},{"name":"value1","nativeSrc":"1732:6:81","nodeType":"YulTypedName","src":"1732:6:81","type":""},{"name":"value0","nativeSrc":"1740:6:81","nodeType":"YulTypedName","src":"1740:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1751:4:81","nodeType":"YulTypedName","src":"1751:4:81","type":""}],"src":"1605:396:81"},{"body":{"nativeSrc":"2100:348:81","nodeType":"YulBlock","src":"2100:348:81","statements":[{"body":{"nativeSrc":"2146:16:81","nodeType":"YulBlock","src":"2146:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2155:1:81","nodeType":"YulLiteral","src":"2155:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2158:1:81","nodeType":"YulLiteral","src":"2158:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2148:6:81","nodeType":"YulIdentifier","src":"2148:6:81"},"nativeSrc":"2148:12:81","nodeType":"YulFunctionCall","src":"2148:12:81"},"nativeSrc":"2148:12:81","nodeType":"YulExpressionStatement","src":"2148:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2121:7:81","nodeType":"YulIdentifier","src":"2121:7:81"},{"name":"headStart","nativeSrc":"2130:9:81","nodeType":"YulIdentifier","src":"2130:9:81"}],"functionName":{"name":"sub","nativeSrc":"2117:3:81","nodeType":"YulIdentifier","src":"2117:3:81"},"nativeSrc":"2117:23:81","nodeType":"YulFunctionCall","src":"2117:23:81"},{"kind":"number","nativeSrc":"2142:2:81","nodeType":"YulLiteral","src":"2142:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2113:3:81","nodeType":"YulIdentifier","src":"2113:3:81"},"nativeSrc":"2113:32:81","nodeType":"YulFunctionCall","src":"2113:32:81"},"nativeSrc":"2110:52:81","nodeType":"YulIf","src":"2110:52:81"},{"nativeSrc":"2171:29:81","nodeType":"YulVariableDeclaration","src":"2171:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2190:9:81","nodeType":"YulIdentifier","src":"2190:9:81"}],"functionName":{"name":"mload","nativeSrc":"2184:5:81","nodeType":"YulIdentifier","src":"2184:5:81"},"nativeSrc":"2184:16:81","nodeType":"YulFunctionCall","src":"2184:16:81"},"variables":[{"name":"value","nativeSrc":"2175:5:81","nodeType":"YulTypedName","src":"2175:5:81","type":""}]},{"body":{"nativeSrc":"2253:16:81","nodeType":"YulBlock","src":"2253:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2262:1:81","nodeType":"YulLiteral","src":"2262:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2265:1:81","nodeType":"YulLiteral","src":"2265:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2255:6:81","nodeType":"YulIdentifier","src":"2255:6:81"},"nativeSrc":"2255:12:81","nodeType":"YulFunctionCall","src":"2255:12:81"},"nativeSrc":"2255:12:81","nodeType":"YulExpressionStatement","src":"2255:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2222:5:81","nodeType":"YulIdentifier","src":"2222:5:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2243:5:81","nodeType":"YulIdentifier","src":"2243:5:81"}],"functionName":{"name":"iszero","nativeSrc":"2236:6:81","nodeType":"YulIdentifier","src":"2236:6:81"},"nativeSrc":"2236:13:81","nodeType":"YulFunctionCall","src":"2236:13:81"}],"functionName":{"name":"iszero","nativeSrc":"2229:6:81","nodeType":"YulIdentifier","src":"2229:6:81"},"nativeSrc":"2229:21:81","nodeType":"YulFunctionCall","src":"2229:21:81"}],"functionName":{"name":"eq","nativeSrc":"2219:2:81","nodeType":"YulIdentifier","src":"2219:2:81"},"nativeSrc":"2219:32:81","nodeType":"YulFunctionCall","src":"2219:32:81"}],"functionName":{"name":"iszero","nativeSrc":"2212:6:81","nodeType":"YulIdentifier","src":"2212:6:81"},"nativeSrc":"2212:40:81","nodeType":"YulFunctionCall","src":"2212:40:81"},"nativeSrc":"2209:60:81","nodeType":"YulIf","src":"2209:60:81"},{"nativeSrc":"2278:15:81","nodeType":"YulAssignment","src":"2278:15:81","value":{"name":"value","nativeSrc":"2288:5:81","nodeType":"YulIdentifier","src":"2288:5:81"},"variableNames":[{"name":"value0","nativeSrc":"2278:6:81","nodeType":"YulIdentifier","src":"2278:6:81"}]},{"nativeSrc":"2302:40:81","nodeType":"YulVariableDeclaration","src":"2302:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2327:9:81","nodeType":"YulIdentifier","src":"2327:9:81"},{"kind":"number","nativeSrc":"2338:2:81","nodeType":"YulLiteral","src":"2338:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2323:3:81","nodeType":"YulIdentifier","src":"2323:3:81"},"nativeSrc":"2323:18:81","nodeType":"YulFunctionCall","src":"2323:18:81"}],"functionName":{"name":"mload","nativeSrc":"2317:5:81","nodeType":"YulIdentifier","src":"2317:5:81"},"nativeSrc":"2317:25:81","nodeType":"YulFunctionCall","src":"2317:25:81"},"variables":[{"name":"value_1","nativeSrc":"2306:7:81","nodeType":"YulTypedName","src":"2306:7:81","type":""}]},{"body":{"nativeSrc":"2400:16:81","nodeType":"YulBlock","src":"2400:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2409:1:81","nodeType":"YulLiteral","src":"2409:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2412:1:81","nodeType":"YulLiteral","src":"2412:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2402:6:81","nodeType":"YulIdentifier","src":"2402:6:81"},"nativeSrc":"2402:12:81","nodeType":"YulFunctionCall","src":"2402:12:81"},"nativeSrc":"2402:12:81","nodeType":"YulExpressionStatement","src":"2402:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2364:7:81","nodeType":"YulIdentifier","src":"2364:7:81"},{"arguments":[{"name":"value_1","nativeSrc":"2377:7:81","nodeType":"YulIdentifier","src":"2377:7:81"},{"kind":"number","nativeSrc":"2386:10:81","nodeType":"YulLiteral","src":"2386:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"2373:3:81","nodeType":"YulIdentifier","src":"2373:3:81"},"nativeSrc":"2373:24:81","nodeType":"YulFunctionCall","src":"2373:24:81"}],"functionName":{"name":"eq","nativeSrc":"2361:2:81","nodeType":"YulIdentifier","src":"2361:2:81"},"nativeSrc":"2361:37:81","nodeType":"YulFunctionCall","src":"2361:37:81"}],"functionName":{"name":"iszero","nativeSrc":"2354:6:81","nodeType":"YulIdentifier","src":"2354:6:81"},"nativeSrc":"2354:45:81","nodeType":"YulFunctionCall","src":"2354:45:81"},"nativeSrc":"2351:65:81","nodeType":"YulIf","src":"2351:65:81"},{"nativeSrc":"2425:17:81","nodeType":"YulAssignment","src":"2425:17:81","value":{"name":"value_1","nativeSrc":"2435:7:81","nodeType":"YulIdentifier","src":"2435:7:81"},"variableNames":[{"name":"value1","nativeSrc":"2425:6:81","nodeType":"YulIdentifier","src":"2425:6:81"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"2006:442:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2058:9:81","nodeType":"YulTypedName","src":"2058:9:81","type":""},{"name":"dataEnd","nativeSrc":"2069:7:81","nodeType":"YulTypedName","src":"2069:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2081:6:81","nodeType":"YulTypedName","src":"2081:6:81","type":""},{"name":"value1","nativeSrc":"2089:6:81","nodeType":"YulTypedName","src":"2089:6:81","type":""}],"src":"2006:442:81"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_contract$_IAccessManager_$9511__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_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_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_boolt_uint32_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, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffff))) { revert(0, 0) }\n        value1 := value_1\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"25476":[{"length":32,"start":167},{"length":32,"start":385}]},"linkReferences":{},"object":"60806040526004361061004d575f3560e01c8063342db7391461005e5780633a7b7a3914610096578063515f8df0146100e1578063ee8d6399146100f5578063f49367aa146100fd57610054565b3661005457005b61005c610110565b005b348015610069575f5ffd5b506100836e1a185c991a185d0b595e1c1bdcd959608a1b81565b6040519081526020015b60405180910390f35b3480156100a1575f5ffd5b506100c97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161008d565b3480156100ec575f5ffd5b506100c9610122565b61005c610130565b61005c61010b366004610285565b610138565b61012061011b610144565b610176565b565b5f61012b610144565b905090565b610120610110565b61014181610176565b50565b5f61012b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b5f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663b700961333306101b560048636816102b2565b6101be916102d9565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610210573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102349190610311565b5090508061025a5760405162d1953b60e31b815233600482015260240160405180910390fd5b61026382610267565b5050565b365f5f375f5f365f845af43d5f5f3e808015610281573d5ff35b3d5ffd5b5f60208284031215610295575f5ffd5b81356001600160a01b03811681146102ab575f5ffd5b9392505050565b5f5f858511156102c0575f5ffd5b838611156102cc575f5ffd5b5050820193919092039150565b80356001600160e01b0319811690600484101561030a576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f60408385031215610322575f5ffd5b82518015158114610331575f5ffd5b602084015190925063ffffffff8116811461034a575f5ffd5b80915050925092905056fea2646970667358221220bcecc2e216de574b407f28b373e73f83cd19ff17b29ea8064cbad4ddda7592ce64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4D JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x342DB739 EQ PUSH2 0x5E JUMPI DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x515F8DF0 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xEE8D6399 EQ PUSH2 0xF5 JUMPI DUP1 PUSH4 0xF49367AA EQ PUSH2 0xFD JUMPI PUSH2 0x54 JUMP JUMPDEST CALLDATASIZE PUSH2 0x54 JUMPI STOP JUMPDEST PUSH2 0x5C PUSH2 0x110 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x69 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x83 PUSH15 0x1A185C991A185D0B595E1C1BDCD959 PUSH1 0x8A SHL DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xC9 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 0x8D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xC9 PUSH2 0x122 JUMP JUMPDEST PUSH2 0x5C PUSH2 0x130 JUMP JUMPDEST PUSH2 0x5C PUSH2 0x10B CALLDATASIZE PUSH1 0x4 PUSH2 0x285 JUMP JUMPDEST PUSH2 0x138 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x11B PUSH2 0x144 JUMP JUMPDEST PUSH2 0x176 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x12B PUSH2 0x144 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x110 JUMP JUMPDEST PUSH2 0x141 DUP2 PUSH2 0x176 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x12B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xB7009613 CALLER ADDRESS PUSH2 0x1B5 PUSH1 0x4 DUP7 CALLDATASIZE DUP2 PUSH2 0x2B2 JUMP JUMPDEST PUSH2 0x1BE SWAP2 PUSH2 0x2D9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP6 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH1 0x24 DUP5 ADD MSTORE AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x210 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x234 SWAP2 SWAP1 PUSH2 0x311 JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x25A JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x263 DUP3 PUSH2 0x267 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x281 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x2C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x30A JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x322 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x331 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x34A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBC 0xEC 0xC2 0xE2 AND 0xDE JUMPI 0x4B BLOCKHASH PUSH32 0x28B373E73F83CD19FF17B29EA8064CBAD4DDDA7592CE64736F6C634300081C00 CALLER ","sourceMap":"870:633:72:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2649:11:45;:9;:11::i;:::-;870:633:72;927:72;;;;;;;;;;;;-1:-1:-1;;;927:72:72;;;;;160:25:81;;;148:2;133:18;927:72:72;;;;;;;;281:46:74;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;383:32:81;;;365:51;;353:2;338:18;281:46:74;196:226:81;1273:114:72;;;;;;;;;;;;;:::i;1393:73::-;;;:::i;1158:109::-;;;;;;:::i;:::-;;:::i;2323:83:45:-;2371:28;2381:17;:15;:17::i;:::-;2371:9;:28::i;:::-;2323:83::o;1273:114:72:-;1324:12;1357:23;:21;:23::i;:::-;1348:32;;1273:114;:::o;1393:73::-;1442:17;:15;:17::i;1158:109::-;1229:31;1245:14;1229:15;:31::i;:::-;1158:109;:::o;1583:132:43:-;1650:7;1676:32;811:66:44;1519:53;-1:-1:-1;;;;;1519:53:44;;1441:138;898:276:74;974:14;-1:-1:-1;;;;;994:14:74;:22;;1017:10;1037:4;1051:13;1062:1;974:14;1051:8;974:14;1051:13;:::i;:::-;1044:21;;;:::i;:::-;994:72;;;;;;-1:-1:-1;;;;;;994:72:74;;;;;-1:-1:-1;;;;;1823:32:81;;;994:72:74;;;1805:51:81;1892:32;;;;1872:18;;;1865:60;1961:33;1941:18;;;1934:61;1778:18;;994:72:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;973:93;;;1077:9;1072:60;;1095:37;;-1:-1:-1;;;1095:37:74;;1121:10;1095:37;;;365:51:81;338:18;;1095:37:74;;;;;;;1072:60;1138:31;1154:14;1138:15;:31::i;:::-;967:207;898:276;:::o;949:895:45:-;1287:14;1284:1;1281;1268:34;1501:1;1498;1482:14;1479:1;1463:14;1456:5;1443:60;1577:16;1574:1;1571;1556:38;1615:6;1682:66;;;;1797:16;1794:1;1787:27;1682:66;1717:16;1714:1;1707:27;635:286:81;694:6;747:2;735:9;726:7;722:23;718:32;715:52;;;763:1;760;753:12;715:52;789:23;;-1:-1:-1;;;;;841:31:81;;831:42;;821:70;;887:1;884;877:12;821:70;910:5;635:286;-1:-1:-1;;;635:286:81:o;926:331::-;1031:9;1042;1084:8;1072:10;1069:24;1066:44;;;1106:1;1103;1096:12;1066:44;1135:6;1125:8;1122:20;1119:40;;;1155:1;1152;1145:12;1119:40;-1:-1:-1;;1181:23:81;;;1226:25;;;;;-1:-1:-1;926:331:81:o;1262:338::-;1382:19;;-1:-1:-1;;;;;;1419:29:81;;;1468:1;1460:10;;1457:137;;;-1:-1:-1;;;;;;1529:1:81;1525:11;;;1522:1;1518:19;1514:46;;;1506:55;;1502:82;;-1:-1:-1;1457:137:81;;1262:338;;;;:::o;2006:442::-;2081:6;2089;2142:2;2130:9;2121:7;2117:23;2113:32;2110:52;;;2158:1;2155;2148:12;2110:52;2190:9;2184:16;2243:5;2236:13;2229:21;2222:5;2219:32;2209:60;;2265:1;2262;2255:12;2209:60;2338:2;2323:18;;2317:25;2288:5;;-1:-1:-1;2386:10:81;2373:24;;2361:37;;2351:65;;2412:1;2409;2402:12;2351:65;2435:7;2425:17;;;2006:442;;;;;:::o"},"methodIdentifiers":{"$_delegate(address)":"f49367aa","$_fallback()":"ee8d6399","$_implementation()":"515f8df0","ACCESS_MANAGER()":"3a7b7a39","__hh_exposed_bytecode_marker()":"342db739"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"},{\"internalType\":\"contract IAccessManager\",\"name\":\"manager\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"$_delegate\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_fallback\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"ret0\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"__hh_exposed_bytecode_marker\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts-exposed/dependencies/AccessManagedProxy.sol\":\"$AccessManagedProxy\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0xc3f2ec76a3de8ed7a7007c46166f5550c72c7709e3fc7e8bb3111a7191cdedbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73efb4c2ca655882dc237c6b4f234a9bd36d97159d8fcaa837eb01171f726ac\",\"dweb:/ipfs/QmTNnnv7Gu5fs5G1ZMh7Fexp8N4XUs3XrNAngjcxgiss3e\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts-exposed/dependencies/AccessManagedProxy.sol\":{\"keccak256\":\"0xc3e4268d1b573f571c31dbf45293f7f738a23d7c6ef77ab0300d2860fe17ff39\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://ac45955a9050ea40606365dbaade69902950316da2647b41cdb811ba986f48a5\",\"dweb:/ipfs/QmeQDKCa9M6ptVNhDPkFkgjroj1KkPkm8R2BJUWGvfsRgG\"]},\"contracts/dependencies/AccessManagedProxy.sol\":{\"keccak256\":\"0x406f4c8b0ace277c677d2d95ceba9b63b92597a81db3f894a037fc0c7294cc97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fba6a5a820fbc56ed11c268b5c97ca3bcad3b66aa4d01ab028be91a6ac05623\",\"dweb:/ipfs/QmSiR8VZr5wPwuXddfGV1dM3QKW94nP9ZForWgnpNHnqYC\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/CashFlowLender.sol":{"CashFlowLender":{"abi":[{"inputs":[{"internalType":"address","name":"trustedForwarder_","type":"address"},{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"uint256","name":"balanceReduction","type":"uint256"}],"name":"BalanceDecreasedOnResolve","type":"error"},{"inputs":[],"name":"CannotDeactivateTarget","type":"error"},{"inputs":[],"name":"CannotDeinvestYieldVault","type":"error"},{"inputs":[],"name":"CannotRefreshAssetWithCash","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"CashOutExceedsLimit","type":"error"},{"inputs":[{"internalType":"int256","name":"currentDebt","type":"int256"},{"internalType":"uint96","name":"debtLimit","type":"uint96"}],"name":"DebtLimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidPolicyPool","type":"error"},{"inputs":[],"name":"InvalidSlotSize","type":"error"},{"inputs":[],"name":"MustChangeYieldAssetBeforeRefresh","type":"error"},{"inputs":[],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"NothingToRefresh","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"OnlyPolicyPool","type":"error"},{"inputs":[],"name":"OutOfRangeAccess","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"RepaymentExceedsLimit","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TargetAlreadyExists","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"}],"name":"TargetNotActive","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"TargetNotFound","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"requiredSelector","type":"bytes4"}],"name":"UnauthorizedForward","type":"error"},{"inputs":[],"name":"YieldVaultIsRequired","type":"error"},{"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":false,"internalType":"address","name":"oldAsset","type":"address"},{"indexed":false,"internalType":"address","name":"newAsset","type":"address"}],"name":"AssetChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"destination","type":"address"}],"name":"CashOutPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"int256","name":"value","type":"int256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"int256","name":"totalDebtAfterChange","type":"int256"}],"name":"DebtChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"payer","type":"address"}],"name":"RepayDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"components":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"},{"internalType":"uint96","name":"debtLimit","type":"uint96"},{"internalType":"uint96","name":"minLiquidity","type":"uint96"}],"indexed":false,"internalType":"struct CashFlowLender.TargetConfig","name":"config","type":"tuple"}],"name":"TargetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldMinLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMinLiquidity","type":"uint256"}],"name":"TargetLimitsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"oldSlotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"TargetSlotSizeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"oldStatus","type":"uint8"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"TargetStatusChanged","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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"contract IERC4626","name":"newVault","type":"address"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"OWN_POLICY_SELECTOR","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOTSIZE_CALENDAR_MONTH","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"addTarget","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"cashOutPayouts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cashWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDebt","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardNewPolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardNewPolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardResolvePolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardResolvePolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"name":"getDebtForPeriod","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetStatus","outputs":[{"internalType":"enum CashFlowLender.TargetStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"makeFakeSelector","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refreshAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"repayDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"setTargetLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"setTargetSlotSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"setTargetStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"assets","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_23400":{"entryPoint":null,"id":23400,"parameterSlots":2,"returnSlots":0},"@_4786":{"entryPoint":null,"id":4786,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_5130":{"entryPoint":84,"id":5130,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_5161":{"entryPoint":null,"id":5161,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$25555_fromMemory":{"entryPoint":282,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_address":{"entryPoint":262,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:763:81","nodeType":"YulBlock","src":"0:763:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"59:86:81","nodeType":"YulBlock","src":"59:86:81","statements":[{"body":{"nativeSrc":"123:16:81","nodeType":"YulBlock","src":"123:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:81","nodeType":"YulLiteral","src":"132:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:81","nodeType":"YulLiteral","src":"135:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:81","nodeType":"YulIdentifier","src":"125:6:81"},"nativeSrc":"125:12:81","nodeType":"YulFunctionCall","src":"125:12:81"},"nativeSrc":"125:12:81","nodeType":"YulExpressionStatement","src":"125:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:81","nodeType":"YulIdentifier","src":"82:5:81"},{"arguments":[{"name":"value","nativeSrc":"93:5:81","nodeType":"YulIdentifier","src":"93:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:81","nodeType":"YulLiteral","src":"108:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:81","nodeType":"YulLiteral","src":"113:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:81","nodeType":"YulIdentifier","src":"104:3:81"},"nativeSrc":"104:11:81","nodeType":"YulFunctionCall","src":"104:11:81"},{"kind":"number","nativeSrc":"117:1:81","nodeType":"YulLiteral","src":"117:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:19:81","nodeType":"YulFunctionCall","src":"100:19:81"}],"functionName":{"name":"and","nativeSrc":"89:3:81","nodeType":"YulIdentifier","src":"89:3:81"},"nativeSrc":"89:31:81","nodeType":"YulFunctionCall","src":"89:31:81"}],"functionName":{"name":"eq","nativeSrc":"79:2:81","nodeType":"YulIdentifier","src":"79:2:81"},"nativeSrc":"79:42:81","nodeType":"YulFunctionCall","src":"79:42:81"}],"functionName":{"name":"iszero","nativeSrc":"72:6:81","nodeType":"YulIdentifier","src":"72:6:81"},"nativeSrc":"72:50:81","nodeType":"YulFunctionCall","src":"72:50:81"},"nativeSrc":"69:70:81","nodeType":"YulIf","src":"69:70:81"}]},"name":"validator_revert_address","nativeSrc":"14:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:81","nodeType":"YulTypedName","src":"48:5:81","type":""}],"src":"14:131:81"},{"body":{"nativeSrc":"269:287:81","nodeType":"YulBlock","src":"269:287:81","statements":[{"body":{"nativeSrc":"315:16:81","nodeType":"YulBlock","src":"315:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"324:1:81","nodeType":"YulLiteral","src":"324:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"327:1:81","nodeType":"YulLiteral","src":"327:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"317:6:81","nodeType":"YulIdentifier","src":"317:6:81"},"nativeSrc":"317:12:81","nodeType":"YulFunctionCall","src":"317:12:81"},"nativeSrc":"317:12:81","nodeType":"YulExpressionStatement","src":"317:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"290:7:81","nodeType":"YulIdentifier","src":"290:7:81"},{"name":"headStart","nativeSrc":"299:9:81","nodeType":"YulIdentifier","src":"299:9:81"}],"functionName":{"name":"sub","nativeSrc":"286:3:81","nodeType":"YulIdentifier","src":"286:3:81"},"nativeSrc":"286:23:81","nodeType":"YulFunctionCall","src":"286:23:81"},{"kind":"number","nativeSrc":"311:2:81","nodeType":"YulLiteral","src":"311:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"282:3:81","nodeType":"YulIdentifier","src":"282:3:81"},"nativeSrc":"282:32:81","nodeType":"YulFunctionCall","src":"282:32:81"},"nativeSrc":"279:52:81","nodeType":"YulIf","src":"279:52:81"},{"nativeSrc":"340:29:81","nodeType":"YulVariableDeclaration","src":"340:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"359:9:81","nodeType":"YulIdentifier","src":"359:9:81"}],"functionName":{"name":"mload","nativeSrc":"353:5:81","nodeType":"YulIdentifier","src":"353:5:81"},"nativeSrc":"353:16:81","nodeType":"YulFunctionCall","src":"353:16:81"},"variables":[{"name":"value","nativeSrc":"344:5:81","nodeType":"YulTypedName","src":"344:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"403:5:81","nodeType":"YulIdentifier","src":"403:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"378:24:81","nodeType":"YulIdentifier","src":"378:24:81"},"nativeSrc":"378:31:81","nodeType":"YulFunctionCall","src":"378:31:81"},"nativeSrc":"378:31:81","nodeType":"YulExpressionStatement","src":"378:31:81"},{"nativeSrc":"418:15:81","nodeType":"YulAssignment","src":"418:15:81","value":{"name":"value","nativeSrc":"428:5:81","nodeType":"YulIdentifier","src":"428:5:81"},"variableNames":[{"name":"value0","nativeSrc":"418:6:81","nodeType":"YulIdentifier","src":"418:6:81"}]},{"nativeSrc":"442:40:81","nodeType":"YulVariableDeclaration","src":"442:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"467:9:81","nodeType":"YulIdentifier","src":"467:9:81"},{"kind":"number","nativeSrc":"478:2:81","nodeType":"YulLiteral","src":"478:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"463:3:81","nodeType":"YulIdentifier","src":"463:3:81"},"nativeSrc":"463:18:81","nodeType":"YulFunctionCall","src":"463:18:81"}],"functionName":{"name":"mload","nativeSrc":"457:5:81","nodeType":"YulIdentifier","src":"457:5:81"},"nativeSrc":"457:25:81","nodeType":"YulFunctionCall","src":"457:25:81"},"variables":[{"name":"value_1","nativeSrc":"446:7:81","nodeType":"YulTypedName","src":"446:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"516:7:81","nodeType":"YulIdentifier","src":"516:7:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"491:24:81","nodeType":"YulIdentifier","src":"491:24:81"},"nativeSrc":"491:33:81","nodeType":"YulFunctionCall","src":"491:33:81"},"nativeSrc":"491:33:81","nodeType":"YulExpressionStatement","src":"491:33:81"},{"nativeSrc":"533:17:81","nodeType":"YulAssignment","src":"533:17:81","value":{"name":"value_1","nativeSrc":"543:7:81","nodeType":"YulIdentifier","src":"543:7:81"},"variableNames":[{"name":"value1","nativeSrc":"533:6:81","nodeType":"YulIdentifier","src":"533:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$25555_fromMemory","nativeSrc":"150:406:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"227:9:81","nodeType":"YulTypedName","src":"227:9:81","type":""},{"name":"dataEnd","nativeSrc":"238:7:81","nodeType":"YulTypedName","src":"238:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"250:6:81","nodeType":"YulTypedName","src":"250:6:81","type":""},{"name":"value1","nativeSrc":"258:6:81","nodeType":"YulTypedName","src":"258:6:81","type":""}],"src":"150:406:81"},{"body":{"nativeSrc":"660:101:81","nodeType":"YulBlock","src":"660:101:81","statements":[{"nativeSrc":"670:26:81","nodeType":"YulAssignment","src":"670:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"682:9:81","nodeType":"YulIdentifier","src":"682:9:81"},{"kind":"number","nativeSrc":"693:2:81","nodeType":"YulLiteral","src":"693:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"678:3:81","nodeType":"YulIdentifier","src":"678:3:81"},"nativeSrc":"678:18:81","nodeType":"YulFunctionCall","src":"678:18:81"},"variableNames":[{"name":"tail","nativeSrc":"670:4:81","nodeType":"YulIdentifier","src":"670:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"712:9:81","nodeType":"YulIdentifier","src":"712:9:81"},{"arguments":[{"name":"value0","nativeSrc":"727:6:81","nodeType":"YulIdentifier","src":"727:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"743:2:81","nodeType":"YulLiteral","src":"743:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"747:1:81","nodeType":"YulLiteral","src":"747:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"739:3:81","nodeType":"YulIdentifier","src":"739:3:81"},"nativeSrc":"739:10:81","nodeType":"YulFunctionCall","src":"739:10:81"},{"kind":"number","nativeSrc":"751:1:81","nodeType":"YulLiteral","src":"751:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"735:3:81","nodeType":"YulIdentifier","src":"735:3:81"},"nativeSrc":"735:18:81","nodeType":"YulFunctionCall","src":"735:18:81"}],"functionName":{"name":"and","nativeSrc":"723:3:81","nodeType":"YulIdentifier","src":"723:3:81"},"nativeSrc":"723:31:81","nodeType":"YulFunctionCall","src":"723:31:81"}],"functionName":{"name":"mstore","nativeSrc":"705:6:81","nodeType":"YulIdentifier","src":"705:6:81"},"nativeSrc":"705:50:81","nodeType":"YulFunctionCall","src":"705:50:81"},"nativeSrc":"705:50:81","nodeType":"YulExpressionStatement","src":"705:50:81"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"561:200:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"629:9:81","nodeType":"YulTypedName","src":"629:9:81","type":""},{"name":"value0","nativeSrc":"640:6:81","nodeType":"YulTypedName","src":"640:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"651:4:81","nodeType":"YulTypedName","src":"651:4:81","type":""}],"src":"561:200:81"}]},"contents":"{\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_addresst_contract$_IPolicyPool_$25555_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e06040523060a052348015610013575f5ffd5b5060405161550c38038061550c8339810160408190526100329161011a565b6001600160a01b03808316608052811660c05261004d610054565b5050610152565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100a45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101035780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b0381168114610103575f5ffd5b5f5f6040838503121561012b575f5ffd5b825161013681610106565b602084015190925061014781610106565b809150509250929050565b60805160a05160c0516153206101ec5f395f818161069101528181610fe201528181611440015281816115c201528181611e2a015281816120c7015281816121570152818161237c0152818161273e015281816127f701528181612b950152818161388d015261392201525f818161338e015281816133b701526134da01525f81816106f8015281816107bd01526139f801526153205ff3fe60806040526004361061037c575f3560e01c806382dbbd71116101d3578063c0c51217116100fd578063d6281d3e1161009d578063e8e617b71161006d578063e8e617b714610ad6578063ee07abbb14610af5578063ef8b30f7146109c8578063f7a3933314610b14575f5ffd5b8063d6281d3e14610a4d578063d905777e14610a6c578063dd62ed3e14610a8b578063e77659fd14610aaa575f5ffd5b8063c8030873116100d8578063c8030873146109e7578063cc671a18146109fb578063ce96cb7714610a0f578063d336078c14610a2e575f5ffd5b8063c0c51217146109a9578063c63d75b614610663578063c6e6f592146109c8575f5ffd5b8063a9ed148711610173578063b460af9411610143578063b460af941461092d578063ba0876521461094c578063bdb5371d1461096b578063bfdb20da1461098a575f5ffd5b8063a9ed1487146108a4578063ac860f74146108bf578063ad3cb1cc146108de578063b3d7f6b91461090e575f5ffd5b806395d89b41116101ae57806395d89b411461083e578063a3ac939014610852578063a7f8a5e214610871578063a9059cbb14610885575f5ffd5b806382dbbd71146107e157806386b440831461080057806394bf804d1461081f575f5ffd5b8063313ce567116102b45780634f1ef286116102545780636e553f65116102245780636e553f651461074757806370a0823114610766578063759076e5146107855780637da0a877146107af575f5ffd5b80634f1ef286146106b557806352d1902d146106c8578063572b6c05146106dc5780635ee0c7dd14610728575f5ffd5b80633edeb2571161028f5780633edeb25714610637578063402d267d146106635780634cdad506146104185780634d15eb0314610683575f5ffd5b8063313ce567146105c657806333bded3c146105ec57806338d52e0f1461060b575f5ffd5b8063095ea7b31161031f57806318160ddd116102fa57806318160ddd14610536578063194448e514610569578063225c531e1461058857806323b872dd146105a7575f5ffd5b8063095ea7b3146104c05780630a28a477146104df578063150b7a02146104fe575f5ffd5b8063077f224a1161035a578063077f224a146103f757806307a2d13a1461041857806308742d9014610437578063091ea8a614610456575f5ffd5b806301e1d1141461038057806301ffc9a7146103a757806306fdde03146103d6575b5f5ffd5b34801561038b575f5ffd5b50610394610b33565b6040519081526020015b60405180910390f35b3480156103b2575f5ffd5b506103c66103c13660046144be565b610c75565b604051901515815260200161039e565b3480156103e1575f5ffd5b506103ea610d32565b60405161039e9190614505565b348015610402575f5ffd5b506104166104113660046145d2565b610df2565b005b348015610423575f5ffd5b50610394610432366004614648565b610f02565b348015610442575f5ffd5b50610416610451366004614670565b610f0d565b348015610461575f5ffd5b506104b36104703660046146a7565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b60405161039e91906146f6565b3480156104cb575f5ffd5b506103c66104da366004614704565b610fa9565b3480156104ea575f5ffd5b506103946104f9366004614648565b610fca565b348015610509575f5ffd5b5061051d610518366004614772565b610fd6565b6040516001600160e01b0319909116815260200161039e565b348015610541575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254610394565b348015610574575f5ffd5b506104166105833660046147ec565b611045565b348015610593575f5ffd5b506104166105a2366004614818565b611168565b3480156105b2575f5ffd5b506103c66105c136600461487c565b61128c565b3480156105d1575f5ffd5b506105da6112bb565b60405160ff909116815260200161039e565b3480156105f7575f5ffd5b506103ea6106063660046148ba565b6112e4565b348015610616575f5ffd5b5061061f61156a565b6040516001600160a01b03909116815260200161039e565b348015610642575f5ffd5b5061064e63ffffffff81565b60405163ffffffff909116815260200161039e565b34801561066e575f5ffd5b5061039461067d3660046146a7565b505f1990565b34801561068e575f5ffd5b507f000000000000000000000000000000000000000000000000000000000000000061061f565b6104166106c336600461490a565b611585565b3480156106d3575f5ffd5b5061039461159b565b3480156106e7575f5ffd5b506103c66106f63660046146a7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b348015610733575f5ffd5b5061051d610742366004614969565b6115b6565b348015610752575f5ffd5b506103946107613660046149ac565b61161f565b348015610771575f5ffd5b506103946107803660046146a7565b611649565b348015610790575f5ffd5b505f5160206152ab5f395f51905f5254600160a01b9004600b0b610394565b3480156107ba575f5ffd5b507f000000000000000000000000000000000000000000000000000000000000000061061f565b3480156107ec575f5ffd5b506104166107fb3660046149cf565b61166f565b34801561080b575f5ffd5b506103ea61081a3660046148ba565b611762565b34801561082a575f5ffd5b506103946108393660046149ac565b611883565b348015610849575f5ffd5b506103ea6118a5565b34801561085d575f5ffd5b5061039461086c366004614a1d565b6118e3565b34801561087c575f5ffd5b5061061f611937565b348015610890575f5ffd5b506103c661089f366004614704565b611956565b3480156108af575f5ffd5b5061051d6001600160e01b031981565b3480156108ca575f5ffd5b506104166108d9366004614648565b61196d565b3480156108e9575f5ffd5b506103ea604051806040016040528060058152602001640352e302e360dc1b81525081565b348015610919575f5ffd5b50610394610928366004614648565b611a32565b348015610938575f5ffd5b50610394610947366004614a5a565b611a3e565b348015610957575f5ffd5b50610394610966366004614a5a565b611a9b565b348015610976575f5ffd5b50610416610985366004614a8e565b611aef565b348015610995575f5ffd5b506104166109a4366004614ac0565b611bd9565b3480156109b4575f5ffd5b5061051d6109c3366004614aee565b611dc5565b3480156109d3575f5ffd5b506103946109e2366004614648565b611e11565b3480156109f2575f5ffd5b50610416611e1c565b348015610a06575f5ffd5b5061039461221a565b348015610a1a575f5ffd5b50610394610a293660046146a7565b6122a6565b348015610a39575f5ffd5b50610416610a48366004614648565b6122c0565b348015610a58575f5ffd5b5061051d610a67366004614969565b612370565b348015610a77575f5ffd5b50610394610a863660046146a7565b612480565b348015610a96575f5ffd5b50610394610aa5366004614b21565b612498565b348015610ab5575f5ffd5b50610ac9610ac4366004614b4d565b6124e1565b60405161039e9190614bce565b348015610ae1575f5ffd5b5061051d610af036600461487c565b6127eb565b348015610b00575f5ffd5b50610ac9610b0f366004614b4d565b612853565b348015610b1f575f5ffd5b50610416610b2e366004614c31565b612a4d565b5f5f5160206152ab5f395f51905f52610b4a612b0c565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610b98573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bbc9190614c60565b6040518263ffffffff1660e01b8152600401610bda91815260200190565b602060405180830381865afa158015610bf5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c199190614c60565b610c239083614c8b565b81549092505f600160a01b909104600b0b1215610c5f578054610c4f90600160a01b9004600b0b614c9e565b610c599083614cb8565b91505090565b8054610c5990600160a01b9004600b0b83614c8b565b5f6001600160e01b03198216630a85bd0160e11b1480610ca557506001600160e01b03198216633ece0a8960e01b145b80610cc057506001600160e01b03198216635ee0c7dd60e01b145b80610cdb57506001600160e01b031982166336372b0760e01b145b80610cf657506001600160e01b0319821663a219a02560e01b145b80610d1157506001600160e01b0319821663043eff2d60e51b145b80610d2c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f51602061526b5f395f51905f5291610d7090614ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9c90614ccb565b8015610de75780601f10610dbe57610100808354040283529160200191610de7565b820191905f5260205f20905b815481529060010190602001808311610dca57829003601f168201915b505050505091505090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015610e365750825b90505f826001600160401b03166001148015610e515750303b155b905081158015610e5f575080155b15610e7d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ea757845460ff60401b1916600160401b1785555b610eb2888888612b82565b8315610ef857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610d2c825f612c31565b8063ffffffff165f03610f335760405163294da6c760e21b815260040160405180910390fd5b5f610f3d83612c88565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f610fb3612d20565b9050610fc0818585612d29565b5060019392505050565b5f610d2c826001612d36565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146110325760405163950d88bf60e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b50630a85bd0160e11b9695505050505050565b5f5f5160206152ab5f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa1580156110a6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ca9190614c60565b6040518263ffffffff1660e01b81526004016110e891815260200190565b602060405180830381865afa158015611103573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111279190614c60565b90508061113382612d84565b148061113c5750825b6111595760405163292d4c4b60e11b815260040160405180910390fd5b61116284612e7d565b50505050565b61117185612c88565b505f61118786868661118287613012565b613042565b905082815f8113156111b557604051630c97a6bf60e41b815260048101929092526024820152604401611029565b50505f6111c0612b0c565b905083811015611204576111d48185614cb8565b6111e66111e18387614cb8565b612d84565b146112045760405163af8075e960e01b815260040160405180910390fd5b611221838561121161156a565b6001600160a01b03169190613141565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f611296612d20565b90506112a38582856131a0565b6112ae8585856131eb565b60019150505b9392505050565b5f805f5160206152cb5f395f51905f5290505f8154610c599190600160a01b900460ff16614d03565b6060835f6112f182612c88565b905060018154600160201b900460ff166003811115611312576113126146c2565b82548492600160201b90910460ff16911461134257604051630e851c7960e31b8152600401611029929190614d1c565b50505f61134d612b0c565b8254909150600160881b90046001600160601b031681101561139657815461138a906111e1908390600160881b90046001600160601b0316614cb8565b50611393612b0c565b90505b6113bd6113a1612d20565b886113af60045f8a8c614d39565b6113b891614d60565b613248565b61140686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b169291505061334a565b93505f8480602001905181019061141d9190614c60565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611485573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a99190614d98565b6001600160a01b0316146114d1576114d16114c2612d20565b896001600160e01b0319613248565b505f6114db612b0c565b90508181101561155f5782545f9061151190869063ffffffff166114ff8142613357565b61118261150c8789614cb8565b613012565b84549091508190600160281b90046001600160601b03168082131561155b5760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611029565b5050505b505050509392505050565b5f5160206152cb5f395f51905f52546001600160a01b031690565b61158d613383565b6115978282613413565b5050565b5f6115a46134cf565b505f51602061528b5f395f51905f5290565b5f336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016811461160d5760405163950d88bf60e01b81526001600160a01b039091166004820152602401611029565b50635ee0c7dd60e01b95945050505050565b5f5f195f61162c85611e11565b9050611641611639612d20565b858784613518565b949350505050565b6001600160a01b03165f9081525f51602061526b5f395f51905f52602052604090205490565b61167884612c88565b505f61169285858561168986613012565b61118290614c9e565b905081815f8112156116c05760405163239de57160e11b815260048101929092526024820152604401611029565b50506116e86116cd612d20565b30846116d761156a565b6001600160a01b03169291906135a4565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c8585858561171f612d20565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b6060835f61176f82612c88565b905060018154600160201b900460ff166003811115611790576117906146c2565b14806117b8575060028154600160201b900460ff1660038111156117b6576117b66146c2565b145b81548391600160201b90910460ff16906117e757604051630e851c7960e31b8152600401611029929190614d1c565b50505f6117f2612b0c565b90506117ff6113a1612d20565b61184886868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b169291505061334a565b93505f611853612b0c565b90508181101561155f576118678183614cb8565b6040516351f5977560e11b815260040161102991815260200190565b5f5f195f61189085611a32565b905061164161189d612d20565b858388613518565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f51602061526b5f395f51905f5291610d7090614ccb565b5f5f5160206152ab5f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af028261191f8787876135dd565b81526020019081526020015f20549150509392505050565b5f5f5160206152ab5f395f51905f525b546001600160a01b0316919050565b5f5f611960612d20565b9050610fc08185856131eb565b5f1981036119845761197d612b0c565b90506119ac565b61198c612b0c565b8111156119ac5760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206152ab5f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af1158015611a09573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a2d9190614c60565b505050565b5f610d2c826001612c31565b5f5f611a49836122a6565b905080851115611a7257828582604051633fa733bb60e21b815260040161102993929190614db3565b5f611a7c86610fca565b9050611a92611a89612d20565b86868985613625565b95945050505050565b5f5f611aa683612480565b905080851115611acf57828582604051632e52afbb60e21b815260040161102993929190614db3565b5f611ad986610f02565b9050611a92611ae6612d20565b8686848a613625565b5f611af984612c88565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a2611b7383613778565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155611ba982613778565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206152ab5f395f51905f529290600160201b900460ff166003811115611c3c57611c3c6146c2565b14611c5a5760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03611c805760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101611ca686613778565b6001600160601b03168152602001611cbd85613778565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115611d2457611d246146c2565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90611db5908490614dd4565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f906112b490603801604051602081830303815290604052805190602001205f6137ab565b5f610d2c825f612d36565b5f611e2561156a565b90505f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e84573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea89190614d98565b9050806001600160a01b0316826001600160a01b031603611edc5760405163252fa83d60e21b815260040160405180910390fd5b611ee4612b0c565b15611f025760405163902dd39b60e01b815260040160405180910390fd5b5f5160206152ab5f395f51905f528054604080516338d52e0f60e01b815290516001600160a01b038581169316916338d52e0f9160048083019260209291908290030181865afa158015611f58573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7c9190614d98565b6001600160a01b031614611fa35760405163233f856360e11b815260040160405180910390fd5b5f5f5160206152cb5f395f51905f5280546001600160a01b0319166001600160a01b03858116919091178255835460405163095ea7b360e01b815290821660048201525f602482015291925085169063095ea7b3906044016020604051808303815f875af1158015612017573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203b9190614e24565b50815460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529084169063095ea7b3906044016020604051808303815f875af115801561208b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120af9190614e24565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f602483015285169063095ea7b3906044016020604051808303815f875af115801561211b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061213f9190614e24565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f19602483015284169063095ea7b3906044016020604051808303815f875af11580156121ac573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d09190614e24565b50604080516001600160a01b038087168252851660208201527f37465ce4c247e78514460560da0bcc785fff559503ce6c3d87a6e84352437392910160405180910390a150505050565b5f805f5160206152ab5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612270573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122949190614c60565b61229c612b0c565b610c599190614c8b565b5f610d2c6122b3836137e3565b6122bb61221a565b6137f6565b5f198103612345575f5f5160206152ab5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561231d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123419190614c60565b9150505b8061234f82612d84565b1461236d5760405163af8075e960e01b815260040160405180910390fd5b50565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146123c75760405163950d88bf60e01b81526001600160a01b039091166004820152602401611029565b505f6123d286612c88565b905060018154600160201b900460ff1660038111156123f3576123f36146c2565b148061241b575060028154600160201b900460ff166003811115612419576124196146c2565b145b81548791600160201b90910460ff169061244a57604051630e851c7960e31b8152600401611029929190614d1c565b5050805461246d90879063ffffffff166124648142613357565b61168987613012565b50636b140e9f60e11b9695505050505050565b5f610d2c61248d83613805565b6122bb6109e261221a565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6060835f6124ee82612c88565b905060018154600160201b900460ff16600381111561250f5761250f6146c2565b82548492600160201b90910460ff16911461253f57604051630e851c7960e31b8152600401611029929190614d1c565b50505f61254a612b0c565b8254909150600160881b90046001600160601b0316811015612593578154612587906111e1908390600160881b90046001600160601b0316614cb8565b50612590612b0c565b90505b5f80866001600160401b038111156125ad576125ad614517565b6040519080825280602002602001820160405280156125e057816020015b60608152602001906001900390816125cb5790505b5095505f5b878110156127df575f89898381811061260057612600614e3f565b90506020028101906126129190614e53565b612620916004915f91614d39565b61262991614d60565b905081158061264557506001600160e01b031981811690851614155b156126605761265c612655612d20565b8c83613248565b8093505b6126cb8a8a8481811061267557612675614e3f565b90506020028101906126879190614e53565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f169291505061334a565b8883815181106126dd576126dd614e3f565b6020026020010181905250826127d6575f88838151811061270057612700614e3f565b602002602001015180602001905181019061271b9190614c60565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015612783573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a79190614d98565b6001600160a01b0316146127d4576127cf6127c0612d20565b8d6001600160e01b0319613248565b600193505b505b506001016125e5565b5050505f6114db612b0c565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146128425760405163950d88bf60e01b81526001600160a01b039091166004820152602401611029565b5063e8e617b760e01b949350505050565b6060835f61286082612c88565b905060018154600160201b900460ff166003811115612881576128816146c2565b14806128a9575060028154600160201b900460ff1660038111156128a7576128a76146c2565b145b81548391600160201b90910460ff16906128d857604051630e851c7960e31b8152600401611029929190614d1c565b50505f6128e3612b0c565b90505f856001600160401b038111156128fe576128fe614517565b60405190808252806020026020018201604052801561293157816020015b606081526020019060019003908161291c5790505b5094505f5b86811015612a42575f88888381811061295157612951614e3f565b90506020028101906129639190614e53565b612971916004915f91614d39565b61297a91614d60565b905081158061299657506001600160e01b031981811690841614155b156129b1576129ad6129a6612d20565b8b83613248565b8092505b612a1c8989848181106129c6576129c6614e3f565b90506020028101906129d89190614e53565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e169291505061334a565b878381518110612a2e57612a2e614e3f565b602090810291909101015250600101612936565b50505f611853612b0c565b5f816003811115612a6057612a606146c2565b03612a7e57604051635e64536560e11b815260040160405180910390fd5b5f612a8883612c88565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff1684604051612ad5929190614e95565b60405180910390a280548290829064ff000000001916600160201b836003811115612b0257612b026146c2565b0217905550505050565b5f612b1561156a565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015612b59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b7d9190614c60565b905090565b612b8a61380f565b612b92613858565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bef573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c139190614d98565b9050612c1e81613860565b612c288484613871565b61116282613883565b5f6112b4612c3d610b33565b612c48906001614c8b565b612c535f600a614f93565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612c7f9190614c8b565b859190856139a7565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206152ab5f395f51905f5291600160201b900460ff166003811115612cec57612cec6146c2565b14158390612d1957604051632dad902160e01b81526001600160a01b039091166004820152602401611029565b5050919050565b5f612b7d6139e9565b611a2d8383836001613a5c565b5f6112b4612d4582600a614f93565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612d719190614c8b565b612d79610b33565b612c7f906001614c8b565b5f805f5160206152ab5f395f51905f52805460405163ce96cb7760e01b8152306004820152919250612e049185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612de0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122bb9190614c60565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015612e59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d199190614c60565b6001600160a01b038116612ea4576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206152ab5f395f51905f5280546001600160a01b038381166001600160a01b03198316178355168015612f4f57612edc61156a565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af1158015612f29573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f4d9190614e24565b505b612f5761156a565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015612fa5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc99190614e24565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a910160405180910390a1505050565b5f6001600160ff1b0382111561303e5760405163123baf0360e11b815260048101839052602401611029565b5090565b5f5f5160206152ab5f395f51905f528161305d8787876135dd565b905083826002015f8381526020019081526020015f205f8282546130819190614fa1565b9182905550835490945085915083906014906130a8908490600160a01b9004600b0b614fc8565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6040516001600160a01b03838116602483015260448201839052611a2d91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050613b37565b5f6131ab8484612498565b90505f1981101561116257818110156131dd57828183604051637dc7a0d960e11b815260040161102993929190614db3565b61116284848484035f613a5c565b6001600160a01b03831661321457604051634b637e8f60e11b81525f6004820152602401611029565b6001600160a01b03821661323d5760405163ec442f0560e01b81525f6004820152602401611029565b611a2d838383613ba3565b5f6132538383611dc5565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa158015613292573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132b69190614d98565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b81526004016132e593929190614fff565b6040805180830381865afa1580156132ff573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613323919061502c565b50905084848383610ef85760405163c294136d60e01b815260040161102993929190614fff565b60606112b483835f613cc9565b5f63ffffffff8381161461337a5761337563ffffffff84168361506d565b6112b4565b6112b482613d69565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806133f357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166133e7613e46565b6001600160a01b031614155b156134115760405163703e46dd60e11b815260040160405180910390fd5b565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561346d575060408051601f3d908101601f1916820190925261346a91810190614c60565b60015b61349557604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611029565b5f51602061528b5f395f51905f5281146134c557604051632a87526960e21b815260048101829052602401611029565b611a2d8383613e5a565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146134115760405163703e46dd60e11b815260040160405180910390fd5b5f5160206152cb5f395f51905f52805461353d906001600160a01b03168630866135a4565b6135478483613eaf565b836001600160a01b0316856001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78585604051613595929190918252602082015260400190565b60405180910390a35050505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526111629186918216906323b872dd9060840161316e565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b5f61362e612b0c565b905082811015613763575f5f5160206152ab5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561368d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b19190614c60565b6136bb8386614cb8565b11156136da5760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af946136f48487614cb8565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af115801561373c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137609190614c60565b50505b6137708686868686613ee3565b505050505050565b5f6001600160601b0382111561303e576040516306dfcc6560e41b81526060600482015260248101839052604401611029565b5f601c8260ff1611156137d157604051631dd4bb1b60e11b815260040160405180910390fd5b506008021b6001600160e01b03191690565b5f610d2c6137f083611649565b5f612c31565b5f8282188284100282186112b4565b5f610d2c82611649565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661341157604051631afcd79f60e31b815260040160405180910390fd5b61341161380f565b61386861380f565b61236d81613f97565b61387961380f565b6115978282614007565b61388b61380f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061390b9190614d98565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015613979573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399d9190614e24565b5061236d81612e7d565b5f6139d46139b483614057565b80156139cf57505f84806139ca576139ca615059565b868809115b151590565b6139df868686614083565b611a929190614c8b565b5f366014336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015613a255750808210155b15613a54575f36613a368385614cb8565b613a41928290614d39565b613a4a91615080565b60601c9250505090565b339250505090565b5f51602061526b5f395f51905f526001600160a01b038516613a935760405163e602df0560e01b81525f6004820152602401611029565b6001600160a01b038416613abc57604051634a1406b160e11b81525f6004820152602401611029565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613b3057836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161359591815260200190565b5050505050565b5f5f60205f8451602086015f885af180613b56576040513d5f823e3d81fd5b50505f513d91508115613b6d578060011415613b7a565b6001600160a01b0384163b155b1561116257604051635274afe760e01b81526001600160a01b0385166004820152602401611029565b5f51602061526b5f395f51905f526001600160a01b038416613bdd5781816002015f828254613bd29190614c8b565b90915550613c3a9050565b6001600160a01b0384165f9081526020829052604090205482811015613c1c5784818460405163391434e360e21b815260040161102993929190614db3565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b038316613c58576002810180548390039055613c76565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613cbb91815260200190565b60405180910390a350505050565b606081471015613cf55760405163cf47918160e01b815247600482015260248101839052604401611029565b5f5f856001600160a01b03168486604051613d1091906150b6565b5f6040518083038185875af1925050503d805f8114613d4a576040519150601f19603f3d011682016040523d82523d5f602084013e613d4f565b606091505b5091509150613d5f868383614139565b9695505050505050565b6107e95f8062015180613d80636774858086614cb8565b613d8a919061506d565b90505b81613d9a5761016d613d9e565b61016e5b61ffff168110613e215781613db55761016d613db9565b61016e5b613dc79061ffff1682614cb8565b9050613dd2836150cc565b9250613ddf6004846150f0565b63ffffffff16158015613e1a5750613df86064846150f0565b63ffffffff16151580613e1a5750613e12610190846150f0565b63ffffffff16155b9150613d8d565b613e2b8183614190565b613e36846064615117565b63ffffffff166116419190614c8b565b5f5f51602061528b5f395f51905f52611947565b613e6382614273565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613ea757611a2d82826142d6565b61159761433f565b6001600160a01b038216613ed85760405163ec442f0560e01b81525f6004820152602401611029565b6115975f8383613ba3565b5f5160206152cb5f395f51905f526001600160a01b0386811690851614613f0f57613f0f8487846131a0565b613f19848361435e565b8054613f2f906001600160a01b03168685613141565b836001600160a01b0316856001600160a01b0316876001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8686604051613f87929190918252602082015260400190565b60405180910390a4505050505050565b613f9f61380f565b5f5160206152cb5f395f51905f525f80613fb884614392565b9150915081613fc8576012613fca565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b61400f61380f565b5f51602061526b5f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614048848261517a565b5060048101611162838261517a565b5f600282600381111561406c5761406c6146c2565b6140769190615234565b60ff166001149050919050565b5f838302815f1985870982811083820303915050805f036140b7578382816140ad576140ad615059565b04925050506112b4565b8084116140ce576140ce6003851502601118614468565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6060826141495761337582614479565b815115801561416057506001600160a01b0384163b155b1561418957604051639996b31560e01b81526001600160a01b0385166004820152602401611029565b50806112b4565b5f601f8310156141a257506001610d2c565b81156141cb57603c8310156141b957506002610d2c565b826141c381615255565b9350506141dc565b603b8310156141dc57506002610d2c565b605a8310614266576078831061425f57609783106142585760b583106142515760d4831061424a5760f3831061424357610111831061423c5761013083106142355761014e831061422e57600c614269565b600b614269565b600a614269565b6009614269565b6008614269565b6007614269565b6006614269565b6005614269565b6004614269565b60035b60ff169392505050565b806001600160a01b03163b5f036142a857604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611029565b5f51602061528b5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b0316846040516142f291906150b6565b5f60405180830381855af49150503d805f811461432a576040519150601f19603f3d011682016040523d82523d5f602084013e61432f565b606091505b5091509150611a92858383614139565b34156134115760405163b398979f60e01b815260040160405180910390fd5b6001600160a01b03821661438757604051634b637e8f60e11b81525f6004820152602401611029565b611597825f83613ba3565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b17905290515f918291829182916001600160a01b038716916143d8916150b6565b5f60405180830381855afa9150503d805f8114614410576040519150601f19603f3d011682016040523d82523d5f602084013e614415565b606091505b509150915081801561442957506020815110155b1561445c575f818060200190518101906144439190614c60565b905060ff811161445a576001969095509350505050565b505b505f9485945092505050565b634e487b715f52806020526024601cfd5b8051156144895780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b80356001600160e01b0319811681146144b9575f5ffd5b919050565b5f602082840312156144ce575f5ffd5b6112b4826144a2565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6112b460208301846144d7565b634e487b7160e01b5f52604160045260245ffd5b5f5f6001600160401b0384111561454457614544614517565b50604051601f19601f85018116603f011681018181106001600160401b038211171561457257614572614517565b604052838152905080828401851015614589575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f8301126145af575f5ffd5b6112b48383356020850161452b565b6001600160a01b038116811461236d575f5ffd5b5f5f5f606084860312156145e4575f5ffd5b83356001600160401b038111156145f9575f5ffd5b614605868287016145a0565b93505060208401356001600160401b03811115614620575f5ffd5b61462c868287016145a0565b925050604084013561463d816145be565b809150509250925092565b5f60208284031215614658575f5ffd5b5035919050565b63ffffffff8116811461236d575f5ffd5b5f5f60408385031215614681575f5ffd5b823561468c816145be565b9150602083013561469c8161465f565b809150509250929050565b5f602082840312156146b7575f5ffd5b81356112b4816145be565b634e487b7160e01b5f52602160045260245ffd5b600481106146f257634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610d2c82846146d6565b5f5f60408385031215614715575f5ffd5b8235614720816145be565b946020939093013593505050565b5f5f83601f84011261473e575f5ffd5b5081356001600160401b03811115614754575f5ffd5b60208301915083602082850101111561476b575f5ffd5b9250929050565b5f5f5f5f5f60808688031215614786575f5ffd5b8535614791816145be565b945060208601356147a1816145be565b93506040860135925060608601356001600160401b038111156147c2575f5ffd5b6147ce8882890161472e565b969995985093965092949392505050565b801515811461236d575f5ffd5b5f5f604083850312156147fd575f5ffd5b8235614808816145be565b9150602083013561469c816147df565b5f5f5f5f5f60a0868803121561482c575f5ffd5b8535614837816145be565b945060208601356148478161465f565b935060408601356148578161465f565b925060608601359150608086013561486e816145be565b809150509295509295909350565b5f5f5f6060848603121561488e575f5ffd5b8335614899816145be565b925060208401356148a9816145be565b929592945050506040919091013590565b5f5f5f604084860312156148cc575f5ffd5b83356148d7816145be565b925060208401356001600160401b038111156148f1575f5ffd5b6148fd8682870161472e565b9497909650939450505050565b5f5f6040838503121561491b575f5ffd5b8235614926816145be565b915060208301356001600160401b03811115614940575f5ffd5b8301601f81018513614950575f5ffd5b61495f8582356020840161452b565b9150509250929050565b5f5f5f5f6080858703121561497c575f5ffd5b8435614987816145be565b93506020850135614997816145be565b93969395505050506040820135916060013590565b5f5f604083850312156149bd575f5ffd5b82359150602083013561469c816145be565b5f5f5f5f608085870312156149e2575f5ffd5b84356149ed816145be565b935060208501356149fd8161465f565b92506040850135614a0d8161465f565b9396929550929360600135925050565b5f5f5f60608486031215614a2f575f5ffd5b8335614a3a816145be565b92506020840135614a4a8161465f565b9150604084013561463d8161465f565b5f5f5f60608486031215614a6c575f5ffd5b833592506020840135614a7e816145be565b9150604084013561463d816145be565b5f5f5f60608486031215614aa0575f5ffd5b8335614aab816145be565b95602085013595506040909401359392505050565b5f5f5f5f60808587031215614ad3575f5ffd5b8435614ade816145be565b935060208501356149978161465f565b5f5f60408385031215614aff575f5ffd5b8235614b0a816145be565b9150614b18602084016144a2565b90509250929050565b5f5f60408385031215614b32575f5ffd5b8235614b3d816145be565b9150602083013561469c816145be565b5f5f5f60408486031215614b5f575f5ffd5b8335614b6a816145be565b925060208401356001600160401b03811115614b84575f5ffd5b8401601f81018613614b94575f5ffd5b80356001600160401b03811115614ba9575f5ffd5b8660208260051b8401011115614bbd575f5ffd5b939660209190910195509293505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015614c2557603f19878603018452614c108583516144d7565b94506020938401939190910190600101614bf4565b50929695505050505050565b5f5f60408385031215614c42575f5ffd5b8235614c4d816145be565b915060208301356004811061469c575f5ffd5b5f60208284031215614c70575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610d2c57610d2c614c77565b5f600160ff1b8201614cb257614cb2614c77565b505f0390565b81810381811115610d2c57610d2c614c77565b600181811c90821680614cdf57607f821691505b602082108103614cfd57634e487b7160e01b5f52602260045260245ffd5b50919050565b60ff8181168382160190811115610d2c57610d2c614c77565b6001600160a01b0383168152604081016112b460208301846146d6565b5f5f85851115614d47575f5ffd5b83861115614d53575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015614d91576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f60208284031215614da8575f5ffd5b81516112b4816145be565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff81168352614df96020840160ff8360201c166146d6565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b5f60208284031215614e34575f5ffd5b81516112b4816147df565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112614e68575f5ffd5b8301803591506001600160401b03821115614e81575f5ffd5b60200191503681900382131561476b575f5ffd5b60408101614ea382856146d6565b6112b460208301846146d6565b6001815b6001841115614eeb57808504811115614ecf57614ecf614c77565b6001841615614edd57908102905b60019390931c928002614eb4565b935093915050565b5f82614f0157506001610d2c565b81614f0d57505f610d2c565b8160018114614f235760028114614f2d57614f49565b6001915050610d2c565b60ff841115614f3e57614f3e614c77565b50506001821b610d2c565b5060208310610133831016604e8410600b8410161715614f6c575081810a610d2c565b614f785f198484614eb0565b805f1904821115614f8b57614f8b614c77565b029392505050565b5f6112b460ff841683614ef3565b8082018281125f831280158216821582161715614fc057614fc0614c77565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff1982121715610d2c57610d2c614c77565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f6040838503121561503d575f5ffd5b8251615048816147df565b602084015190925061469c8161465f565b634e487b7160e01b5f52601260045260245ffd5b5f8261507b5761507b615059565b500490565b80356001600160601b03198116906014841015614d91576001600160601b031960149490940360031b84901b1690921692915050565b5f82518060208501845e5f920191825250919050565b5f63ffffffff821663ffffffff81036150e7576150e7614c77565b60010192915050565b5f63ffffffff83168061510557615105615059565b8063ffffffff84160691505092915050565b63ffffffff8181168382160290811690818114614d9157614d91614c77565b601f821115611a2d57805f5260205f20601f840160051c8101602085101561515b5750805b601f840160051c820191505b81811015613b30575f8155600101615167565b81516001600160401b0381111561519357615193614517565b6151a7816151a18454614ccb565b84615136565b6020601f8211600181146151d9575f83156151c25750848201515b5f19600385901b1c1916600184901b178455613b30565b5f84815260208120601f198516915b8281101561520857878501518255602094850194600190920191016151e8565b508482101561522557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60ff83168061524657615246615059565b8060ff84160691505092915050565b5f8161526357615263614c77565b505f19019056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af000773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00a2646970667358221220a437ab8baaeac542b492f00325fe0203380b85eac82313377e452cd6962686bf64736f6c634300081c0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0xA0 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x550C CODESIZE SUB DUP1 PUSH2 0x550C DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x11A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x80 MSTORE DUP2 AND PUSH1 0xC0 MSTORE PUSH2 0x4D PUSH2 0x54 JUMP JUMPDEST POP POP PUSH2 0x152 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x103 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x103 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x136 DUP2 PUSH2 0x106 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x147 DUP2 PUSH2 0x106 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x5320 PUSH2 0x1EC PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x691 ADD MSTORE DUP2 DUP2 PUSH2 0xFE2 ADD MSTORE DUP2 DUP2 PUSH2 0x1440 ADD MSTORE DUP2 DUP2 PUSH2 0x15C2 ADD MSTORE DUP2 DUP2 PUSH2 0x1E2A ADD MSTORE DUP2 DUP2 PUSH2 0x20C7 ADD MSTORE DUP2 DUP2 PUSH2 0x2157 ADD MSTORE DUP2 DUP2 PUSH2 0x237C ADD MSTORE DUP2 DUP2 PUSH2 0x273E ADD MSTORE DUP2 DUP2 PUSH2 0x27F7 ADD MSTORE DUP2 DUP2 PUSH2 0x2B95 ADD MSTORE DUP2 DUP2 PUSH2 0x388D ADD MSTORE PUSH2 0x3922 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x338E ADD MSTORE DUP2 DUP2 PUSH2 0x33B7 ADD MSTORE PUSH2 0x34DA ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x6F8 ADD MSTORE DUP2 DUP2 PUSH2 0x7BD ADD MSTORE PUSH2 0x39F8 ADD MSTORE PUSH2 0x5320 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x37C JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x82DBBD71 GT PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xC0C51217 GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xD6281D3E GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE8E617B7 GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0xAD6 JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0xAF5 JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x9C8 JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0xB14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD6281D3E EQ PUSH2 0xA4D JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0xA6C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xA8B JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0xAAA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC8030873 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xC8030873 EQ PUSH2 0x9E7 JUMPI DUP1 PUSH4 0xCC671A18 EQ PUSH2 0x9FB JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0xA0F JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0xA2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x9A9 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x663 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x9C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9ED1487 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0xB460AF94 GT PUSH2 0x143 JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x92D JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x94C JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x96B JUMPI DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x98A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0x8A4 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x8BF JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x8DE JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x90E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x83E JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0x852 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x871 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x885 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0x7E1 JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0x800 JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x81F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x2B4 JUMPI DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x254 JUMPI DUP1 PUSH4 0x6E553F65 GT PUSH2 0x224 JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x747 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x766 JUMPI DUP1 PUSH4 0x759076E5 EQ PUSH2 0x785 JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x7AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x6B5 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x6C8 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x6DC JUMPI DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0x728 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 GT PUSH2 0x28F JUMPI DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0x637 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x663 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x683 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x5C6 JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0x5EC JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x60B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x31F JUMPI DUP1 PUSH4 0x18160DDD GT PUSH2 0x2FA JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x536 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x569 JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x588 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x5A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x4C0 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x4DF JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x4FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x77F224A GT PUSH2 0x35A JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x8742D90 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x3A7 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3D6 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xB33 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x3C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x44BE JUMP JUMPDEST PUSH2 0xC75 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0xD32 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x4505 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x402 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x411 CALLDATASIZE PUSH1 0x4 PUSH2 0x45D2 JUMP JUMPDEST PUSH2 0xDF2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xF02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x4670 JUMP JUMPDEST PUSH2 0xF0D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4B3 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x46F6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x4DA CALLDATASIZE PUSH1 0x4 PUSH2 0x4704 JUMP JUMPDEST PUSH2 0xFA9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x4F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xFCA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x509 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0x518 CALLDATASIZE PUSH1 0x4 PUSH2 0x4772 JUMP JUMPDEST PUSH2 0xFD6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x541 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x574 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x583 CALLDATASIZE PUSH1 0x4 PUSH2 0x47EC JUMP JUMPDEST PUSH2 0x1045 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x593 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x5A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4818 JUMP JUMPDEST PUSH2 0x1168 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x5C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x487C JUMP JUMPDEST PUSH2 0x128C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5DA PUSH2 0x12BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0x606 CALLDATASIZE PUSH1 0x4 PUSH2 0x48BA JUMP JUMPDEST PUSH2 0x12E4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x616 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x61F PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x642 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x64E PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x66E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x67D CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x68E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x61F JUMP JUMPDEST PUSH2 0x416 PUSH2 0x6C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x490A JUMP JUMPDEST PUSH2 0x1585 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x159B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x6F6 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x733 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0x742 CALLDATASIZE PUSH1 0x4 PUSH2 0x4969 JUMP JUMPDEST PUSH2 0x15B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x752 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x761 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AC JUMP JUMPDEST PUSH2 0x161F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x771 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x780 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH2 0x1649 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x790 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x61F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x7FB CALLDATASIZE PUSH1 0x4 PUSH2 0x49CF JUMP JUMPDEST PUSH2 0x166F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x80B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0x81A CALLDATASIZE PUSH1 0x4 PUSH2 0x48BA JUMP JUMPDEST PUSH2 0x1762 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x82A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x839 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AC JUMP JUMPDEST PUSH2 0x1883 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x849 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0x18A5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x85D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x86C CALLDATASIZE PUSH1 0x4 PUSH2 0x4A1D JUMP JUMPDEST PUSH2 0x18E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x87C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x61F PUSH2 0x1937 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x890 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x89F CALLDATASIZE PUSH1 0x4 PUSH2 0x4704 JUMP JUMPDEST PUSH2 0x1956 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x8D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x196D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x919 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x928 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x1A32 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x938 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x947 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A5A JUMP JUMPDEST PUSH2 0x1A3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x957 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x966 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A5A JUMP JUMPDEST PUSH2 0x1A9B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x976 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x985 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A8E JUMP JUMPDEST PUSH2 0x1AEF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x995 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x9A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4AC0 JUMP JUMPDEST PUSH2 0x1BD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0x9C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4AEE JUMP JUMPDEST PUSH2 0x1DC5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x9E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x1E11 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x1E1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x221A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xA29 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH2 0x22A6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA39 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0xA48 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x22C0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0xA67 CALLDATASIZE PUSH1 0x4 PUSH2 0x4969 JUMP JUMPDEST PUSH2 0x2370 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA77 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xA86 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH2 0x2480 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA96 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xAA5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B21 JUMP JUMPDEST PUSH2 0x2498 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xAC9 PUSH2 0xAC4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B4D JUMP JUMPDEST PUSH2 0x24E1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x4BCE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0xAF0 CALLDATASIZE PUSH1 0x4 PUSH2 0x487C JUMP JUMPDEST PUSH2 0x27EB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB00 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xAC9 PUSH2 0xB0F CALLDATASIZE PUSH1 0x4 PUSH2 0x4B4D JUMP JUMPDEST PUSH2 0x2853 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0xB2E CALLDATASIZE PUSH1 0x4 PUSH2 0x4C31 JUMP JUMPDEST PUSH2 0x2A4D JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xB4A PUSH2 0x2B0C JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB98 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xBBC SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBF5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xC19 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH2 0xC23 SWAP1 DUP4 PUSH2 0x4C8B JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0xC5F JUMPI DUP1 SLOAD PUSH2 0xC4F SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x4C9E JUMP JUMPDEST PUSH2 0xC59 SWAP1 DUP4 PUSH2 0x4CB8 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xC59 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0xCA5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3ECE0A89 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xCC0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xCDB JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xCF6 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xD11 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0xD2C JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xD70 SWAP1 PUSH2 0x4CCB JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xD9C SWAP1 PUSH2 0x4CCB JUMP JUMPDEST DUP1 ISZERO PUSH2 0xDE7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xDBE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xDE7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xDCA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 DIV PUSH1 0xFF AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE36 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE51 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE5F JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xE7D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xEA7 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEB2 DUP9 DUP9 DUP9 PUSH2 0x2B82 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xEF8 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH0 PUSH2 0x2C31 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0xF33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xF3D DUP4 PUSH2 0x2C88 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xFB3 PUSH2 0x2D20 JUMP JUMPDEST SWAP1 POP PUSH2 0xFC0 DUP2 DUP6 DUP6 PUSH2 0x2D29 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH1 0x1 PUSH2 0x2D36 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1032 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10A6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x10CA SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10E8 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1103 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1127 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x1133 DUP3 PUSH2 0x2D84 JUMP JUMPDEST EQ DUP1 PUSH2 0x113C JUMPI POP DUP3 JUMPDEST PUSH2 0x1159 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1162 DUP5 PUSH2 0x2E7D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x1171 DUP6 PUSH2 0x2C88 JUMP JUMPDEST POP PUSH0 PUSH2 0x1187 DUP7 DUP7 DUP7 PUSH2 0x1182 DUP8 PUSH2 0x3012 JUMP JUMPDEST PUSH2 0x3042 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x11B5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x11C0 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1204 JUMPI PUSH2 0x11D4 DUP2 DUP6 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x11E6 PUSH2 0x11E1 DUP4 DUP8 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x2D84 JUMP JUMPDEST EQ PUSH2 0x1204 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1221 DUP4 DUP6 PUSH2 0x1211 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3141 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1296 PUSH2 0x2D20 JUMP JUMPDEST SWAP1 POP PUSH2 0x12A3 DUP6 DUP3 DUP6 PUSH2 0x31A0 JUMP JUMPDEST PUSH2 0x12AE DUP6 DUP6 DUP6 PUSH2 0x31EB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0xC59 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x4D03 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x12F1 DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1312 JUMPI PUSH2 0x1312 PUSH2 0x46C2 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x1342 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x134D PUSH2 0x2B0C JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1396 JUMPI DUP2 SLOAD PUSH2 0x138A SWAP1 PUSH2 0x11E1 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x4CB8 JUMP JUMPDEST POP PUSH2 0x1393 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x13BD PUSH2 0x13A1 PUSH2 0x2D20 JUMP JUMPDEST DUP9 PUSH2 0x13AF PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x13B8 SWAP2 PUSH2 0x4D60 JUMP JUMPDEST PUSH2 0x3248 JUMP JUMPDEST PUSH2 0x1406 DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x141D SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1485 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x14A9 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14D1 JUMPI PUSH2 0x14D1 PUSH2 0x14C2 PUSH2 0x2D20 JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3248 JUMP JUMPDEST POP PUSH0 PUSH2 0x14DB PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x155F JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x1511 SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x14FF DUP2 TIMESTAMP PUSH2 0x3357 JUMP JUMPDEST PUSH2 0x1182 PUSH2 0x150C DUP8 DUP10 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x3012 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x155B JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x158D PUSH2 0x3383 JUMP JUMPDEST PUSH2 0x1597 DUP3 DUP3 PUSH2 0x3413 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x15A4 PUSH2 0x34CF JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x160D JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x162C DUP6 PUSH2 0x1E11 JUMP JUMPDEST SWAP1 POP PUSH2 0x1641 PUSH2 0x1639 PUSH2 0x2D20 JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x3518 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1678 DUP5 PUSH2 0x2C88 JUMP JUMPDEST POP PUSH0 PUSH2 0x1692 DUP6 DUP6 DUP6 PUSH2 0x1689 DUP7 PUSH2 0x3012 JUMP JUMPDEST PUSH2 0x1182 SWAP1 PUSH2 0x4C9E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x16C0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP PUSH2 0x16E8 PUSH2 0x16CD PUSH2 0x2D20 JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x16D7 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x35A4 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x171F PUSH2 0x2D20 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x176F DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1790 JUMPI PUSH2 0x1790 PUSH2 0x46C2 JUMP JUMPDEST EQ DUP1 PUSH2 0x17B8 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17B6 JUMPI PUSH2 0x17B6 PUSH2 0x46C2 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x17E7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x17F2 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP PUSH2 0x17FF PUSH2 0x13A1 PUSH2 0x2D20 JUMP JUMPDEST PUSH2 0x1848 DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x1853 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x155F JUMPI PUSH2 0x1867 DUP2 DUP4 PUSH2 0x4CB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x1890 DUP6 PUSH2 0x1A32 JUMP JUMPDEST SWAP1 POP PUSH2 0x1641 PUSH2 0x189D PUSH2 0x2D20 JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x3518 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xD70 SWAP1 PUSH2 0x4CCB JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x191F DUP8 DUP8 DUP8 PUSH2 0x35DD JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1960 PUSH2 0x2D20 JUMP JUMPDEST SWAP1 POP PUSH2 0xFC0 DUP2 DUP6 DUP6 PUSH2 0x31EB JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x1984 JUMPI PUSH2 0x197D PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP PUSH2 0x19AC JUMP JUMPDEST PUSH2 0x198C PUSH2 0x2B0C JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x19AC JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A09 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1A2D SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH1 0x1 PUSH2 0x2C31 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A49 DUP4 PUSH2 0x22A6 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1A72 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH0 PUSH2 0x1A7C DUP7 PUSH2 0xFCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1A92 PUSH2 0x1A89 PUSH2 0x2D20 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x3625 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1AA6 DUP4 PUSH2 0x2480 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1ACF JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH0 PUSH2 0x1AD9 DUP7 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A92 PUSH2 0x1AE6 PUSH2 0x2D20 JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x3625 JUMP JUMPDEST PUSH0 PUSH2 0x1AF9 DUP5 PUSH2 0x2C88 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1B73 DUP4 PUSH2 0x3778 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x1BA9 DUP3 PUSH2 0x3778 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C3C JUMPI PUSH2 0x1C3C PUSH2 0x46C2 JUMP JUMPDEST EQ PUSH2 0x1C5A JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1C80 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x1CA6 DUP7 PUSH2 0x3778 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CBD DUP6 PUSH2 0x3778 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D24 JUMPI PUSH2 0x1D24 PUSH2 0x46C2 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x1DB5 SWAP1 DUP5 SWAP1 PUSH2 0x4DD4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x12B4 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH0 PUSH2 0x37AB JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH0 PUSH2 0x2D36 JUMP JUMPDEST PUSH0 PUSH2 0x1E25 PUSH2 0x156A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x1E84 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1EA8 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x1EDC JUMPI PUSH1 0x40 MLOAD PUSH4 0x252FA83D PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1EE4 PUSH2 0x2B0C JUMP JUMPDEST ISZERO PUSH2 0x1F02 JUMPI PUSH1 0x40 MLOAD PUSH4 0x902DD39B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0x38D52E0F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP4 AND SWAP2 PUSH4 0x38D52E0F SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F58 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1F7C SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1FA3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x233F8563 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 SWAP1 SWAP2 OR DUP3 SSTORE DUP4 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2017 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x203B SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP3 ADD MSTORE SWAP1 DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x208B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x20AF SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x211B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x213F SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x21AC JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x21D0 SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x37465CE4C247E78514460560DA0BCC785FFF559503CE6C3D87A6E84352437392 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2270 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2294 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH2 0x229C PUSH2 0x2B0C JUMP JUMPDEST PUSH2 0xC59 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 PUSH2 0xD2C PUSH2 0x22B3 DUP4 PUSH2 0x37E3 JUMP JUMPDEST PUSH2 0x22BB PUSH2 0x221A JUMP JUMPDEST PUSH2 0x37F6 JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2345 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x231D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2341 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x234F DUP3 PUSH2 0x2D84 JUMP JUMPDEST EQ PUSH2 0x236D JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x23C7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP PUSH0 PUSH2 0x23D2 DUP7 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x23F3 JUMPI PUSH2 0x23F3 PUSH2 0x46C2 JUMP JUMPDEST EQ DUP1 PUSH2 0x241B JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2419 JUMPI PUSH2 0x2419 PUSH2 0x46C2 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x244A JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x246D SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x2464 DUP2 TIMESTAMP PUSH2 0x3357 JUMP JUMPDEST PUSH2 0x1689 DUP8 PUSH2 0x3012 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C PUSH2 0x248D DUP4 PUSH2 0x3805 JUMP JUMPDEST PUSH2 0x22BB PUSH2 0x9E2 PUSH2 0x221A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x24EE DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x250F JUMPI PUSH2 0x250F PUSH2 0x46C2 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x253F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x254A PUSH2 0x2B0C JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x2593 JUMPI DUP2 SLOAD PUSH2 0x2587 SWAP1 PUSH2 0x11E1 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x4CB8 JUMP JUMPDEST POP PUSH2 0x2590 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x25AD JUMPI PUSH2 0x25AD PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x25E0 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x25CB JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x27DF JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x2600 JUMPI PUSH2 0x2600 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2612 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST PUSH2 0x2620 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x2629 SWAP2 PUSH2 0x4D60 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x2645 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x2660 JUMPI PUSH2 0x265C PUSH2 0x2655 PUSH2 0x2D20 JUMP JUMPDEST DUP13 DUP4 PUSH2 0x3248 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x26CB DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x2675 JUMPI PUSH2 0x2675 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2687 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x26DD JUMPI PUSH2 0x26DD PUSH2 0x4E3F JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x27D6 JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2700 JUMPI PUSH2 0x2700 PUSH2 0x4E3F JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x271B SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2783 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x27A7 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x27D4 JUMPI PUSH2 0x27CF PUSH2 0x27C0 PUSH2 0x2D20 JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3248 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x25E5 JUMP JUMPDEST POP POP POP PUSH0 PUSH2 0x14DB PUSH2 0x2B0C JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2842 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x2860 DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2881 JUMPI PUSH2 0x2881 PUSH2 0x46C2 JUMP JUMPDEST EQ DUP1 PUSH2 0x28A9 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28A7 JUMPI PUSH2 0x28A7 PUSH2 0x46C2 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x28D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x28E3 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x28FE JUMPI PUSH2 0x28FE PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2931 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x291C JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x2A42 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x2951 JUMPI PUSH2 0x2951 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2963 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST PUSH2 0x2971 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x297A SWAP2 PUSH2 0x4D60 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x2996 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x29B1 JUMPI PUSH2 0x29AD PUSH2 0x29A6 PUSH2 0x2D20 JUMP JUMPDEST DUP12 DUP4 PUSH2 0x3248 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x2A1C DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x29C6 JUMPI PUSH2 0x29C6 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x29D8 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2A2E JUMPI PUSH2 0x2A2E PUSH2 0x4E3F JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x2936 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1853 PUSH2 0x2B0C JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2A60 JUMPI PUSH2 0x2A60 PUSH2 0x46C2 JUMP JUMPDEST SUB PUSH2 0x2A7E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2A88 DUP4 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x2AD5 SWAP3 SWAP2 SWAP1 PUSH2 0x4E95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2B02 JUMPI PUSH2 0x2B02 PUSH2 0x46C2 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2B15 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB 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 0x2B59 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2B7D SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x2B8A PUSH2 0x380F JUMP JUMPDEST PUSH2 0x2B92 PUSH2 0x3858 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x2BEF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2C13 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST SWAP1 POP PUSH2 0x2C1E DUP2 PUSH2 0x3860 JUMP JUMPDEST PUSH2 0x2C28 DUP5 DUP5 PUSH2 0x3871 JUMP JUMPDEST PUSH2 0x1162 DUP3 PUSH2 0x3883 JUMP JUMPDEST PUSH0 PUSH2 0x12B4 PUSH2 0x2C3D PUSH2 0xB33 JUMP JUMPDEST PUSH2 0x2C48 SWAP1 PUSH1 0x1 PUSH2 0x4C8B JUMP JUMPDEST PUSH2 0x2C53 PUSH0 PUSH1 0xA PUSH2 0x4F93 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2C7F SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x39A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CEC JUMPI PUSH2 0x2CEC PUSH2 0x46C2 JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x2D19 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2B7D PUSH2 0x39E9 JUMP JUMPDEST PUSH2 0x1A2D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3A5C JUMP JUMPDEST PUSH0 PUSH2 0x12B4 PUSH2 0x2D45 DUP3 PUSH1 0xA PUSH2 0x4F93 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2D71 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH2 0x2D79 PUSH2 0xB33 JUMP JUMPDEST PUSH2 0x2C7F SWAP1 PUSH1 0x1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x2E04 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2DE0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x22BB SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2E59 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2D19 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2EA4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x2F4F JUMPI PUSH2 0x2EDC PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F29 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2F4D SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP JUMPDEST PUSH2 0x2F57 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2FA5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2FC9 SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x303E JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x305D DUP8 DUP8 DUP8 PUSH2 0x35DD JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3081 SWAP2 SWAP1 PUSH2 0x4FA1 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x30A8 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x4FC8 JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x1A2D SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x3B37 JUMP JUMPDEST PUSH0 PUSH2 0x31AB DUP5 DUP5 PUSH2 0x2498 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1162 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x31DD JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH2 0x1162 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x3A5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3214 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x323D JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1A2D DUP4 DUP4 DUP4 PUSH2 0x3BA3 JUMP JUMPDEST PUSH0 PUSH2 0x3253 DUP4 DUP4 PUSH2 0x1DC5 JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 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 0x3292 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x32B6 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x32E5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4FFF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x32FF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3323 SWAP2 SWAP1 PUSH2 0x502C JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0xEF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4FFF JUMP JUMPDEST PUSH1 0x60 PUSH2 0x12B4 DUP4 DUP4 PUSH0 PUSH2 0x3CC9 JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x337A JUMPI PUSH2 0x3375 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x506D JUMP JUMPDEST PUSH2 0x12B4 JUMP JUMPDEST PUSH2 0x12B4 DUP3 PUSH2 0x3D69 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x33F3 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x33E7 PUSH2 0x3E46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D 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 SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x346D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x346A SWAP2 DUP2 ADD SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3495 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x34C5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1A2D DUP4 DUP4 PUSH2 0x3E5A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH2 0x353D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 ADDRESS DUP7 PUSH2 0x35A4 JUMP JUMPDEST PUSH2 0x3547 DUP5 DUP4 PUSH2 0x3EAF JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3595 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x1162 SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD PUSH2 0x316E JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x362E PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3763 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x368D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x36B1 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH2 0x36BB DUP4 DUP7 PUSH2 0x4CB8 JUMP JUMPDEST GT ISZERO PUSH2 0x36DA JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x36F4 DUP5 DUP8 PUSH2 0x4CB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x373C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3760 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x3770 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x3EE3 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x303E JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 PUSH1 0x1C DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x37D1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1DD4BB1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x8 MUL SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xD2C PUSH2 0x37F0 DUP4 PUSH2 0x1649 JUMP JUMPDEST PUSH0 PUSH2 0x2C31 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x12B4 JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH2 0x1649 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3411 PUSH2 0x380F JUMP JUMPDEST PUSH2 0x3868 PUSH2 0x380F JUMP JUMPDEST PUSH2 0x236D DUP2 PUSH2 0x3F97 JUMP JUMPDEST PUSH2 0x3879 PUSH2 0x380F JUMP JUMPDEST PUSH2 0x1597 DUP3 DUP3 PUSH2 0x4007 JUMP JUMPDEST PUSH2 0x388B PUSH2 0x380F JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x38E7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x390B SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3979 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x399D SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH2 0x236D DUP2 PUSH2 0x2E7D JUMP JUMPDEST PUSH0 PUSH2 0x39D4 PUSH2 0x39B4 DUP4 PUSH2 0x4057 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x39CF JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x39CA JUMPI PUSH2 0x39CA PUSH2 0x5059 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x39DF DUP7 DUP7 DUP7 PUSH2 0x4083 JUMP JUMPDEST PUSH2 0x1A92 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x3A25 JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x3A54 JUMPI PUSH0 CALLDATASIZE PUSH2 0x3A36 DUP4 DUP6 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x3A41 SWAP3 DUP3 SWAP1 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x3A4A SWAP2 PUSH2 0x5080 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x3A93 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3ABC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3B30 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3595 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH0 DUP9 GAS CALL DUP1 PUSH2 0x3B56 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x3B6D JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x3B7A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1162 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3BDD JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3BD2 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x3C3A SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3C1C JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C58 JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x3C76 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x3CBB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x3CF5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x3D10 SWAP2 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x3D4A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x3D4F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x3D5F DUP7 DUP4 DUP4 PUSH2 0x4139 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x3D80 PUSH4 0x67748580 DUP7 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x3D8A SWAP2 SWAP1 PUSH2 0x506D JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x3D9A JUMPI PUSH2 0x16D PUSH2 0x3D9E JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x3E21 JUMPI DUP2 PUSH2 0x3DB5 JUMPI PUSH2 0x16D PUSH2 0x3DB9 JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x3DC7 SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x4CB8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DD2 DUP4 PUSH2 0x50CC JUMP JUMPDEST SWAP3 POP PUSH2 0x3DDF PUSH1 0x4 DUP5 PUSH2 0x50F0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x3E1A JUMPI POP PUSH2 0x3DF8 PUSH1 0x64 DUP5 PUSH2 0x50F0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x3E1A JUMPI POP PUSH2 0x3E12 PUSH2 0x190 DUP5 PUSH2 0x50F0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x3D8D JUMP JUMPDEST PUSH2 0x3E2B DUP2 DUP4 PUSH2 0x4190 JUMP JUMPDEST PUSH2 0x3E36 DUP5 PUSH1 0x64 PUSH2 0x5117 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1641 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x1947 JUMP JUMPDEST PUSH2 0x3E63 DUP3 PUSH2 0x4273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3EA7 JUMPI PUSH2 0x1A2D DUP3 DUP3 PUSH2 0x42D6 JUMP JUMPDEST PUSH2 0x1597 PUSH2 0x433F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3ED8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1597 PUSH0 DUP4 DUP4 PUSH2 0x3BA3 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP1 DUP6 AND EQ PUSH2 0x3F0F JUMPI PUSH2 0x3F0F DUP5 DUP8 DUP5 PUSH2 0x31A0 JUMP JUMPDEST PUSH2 0x3F19 DUP5 DUP4 PUSH2 0x435E JUMP JUMPDEST DUP1 SLOAD PUSH2 0x3F2F SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 DUP6 PUSH2 0x3141 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP7 DUP7 PUSH1 0x40 MLOAD PUSH2 0x3F87 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3F9F PUSH2 0x380F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH0 DUP1 PUSH2 0x3FB8 DUP5 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x3FC8 JUMPI PUSH1 0x12 PUSH2 0x3FCA JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST PUSH2 0x400F PUSH2 0x380F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4048 DUP5 DUP3 PUSH2 0x517A JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1162 DUP4 DUP3 PUSH2 0x517A JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x406C JUMPI PUSH2 0x406C PUSH2 0x46C2 JUMP JUMPDEST PUSH2 0x4076 SWAP2 SWAP1 PUSH2 0x5234 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP4 DUP4 MUL DUP2 PUSH0 NOT DUP6 DUP8 MULMOD DUP3 DUP2 LT DUP4 DUP3 SUB SUB SWAP2 POP POP DUP1 PUSH0 SUB PUSH2 0x40B7 JUMPI DUP4 DUP3 DUP2 PUSH2 0x40AD JUMPI PUSH2 0x40AD PUSH2 0x5059 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x12B4 JUMP JUMPDEST DUP1 DUP5 GT PUSH2 0x40CE JUMPI PUSH2 0x40CE PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x4468 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP7 DUP5 GT SWAP1 SWAP6 SUB SWAP5 SWAP1 SWAP5 MUL SWAP2 SWAP1 SWAP5 SUB SWAP3 SWAP1 SWAP3 DIV SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x4149 JUMPI PUSH2 0x3375 DUP3 PUSH2 0x4479 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x4160 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x4189 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP DUP1 PUSH2 0x12B4 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x41A2 JUMPI POP PUSH1 0x1 PUSH2 0xD2C JUMP JUMPDEST DUP2 ISZERO PUSH2 0x41CB JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x41B9 JUMPI POP PUSH1 0x2 PUSH2 0xD2C JUMP JUMPDEST DUP3 PUSH2 0x41C3 DUP2 PUSH2 0x5255 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x41DC JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x41DC JUMPI POP PUSH1 0x2 PUSH2 0xD2C JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x4266 JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x425F JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4258 JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x4251 JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x424A JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x4243 JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x423C JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x4235 JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x422E JUMPI PUSH1 0xC PUSH2 0x4269 JUMP JUMPDEST PUSH1 0xB PUSH2 0x4269 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x42A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x42F2 SWAP2 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x432A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x432F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A92 DUP6 DUP4 DUP4 PUSH2 0x4139 JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4387 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1597 DUP3 PUSH0 DUP4 PUSH2 0x3BA3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD DUP3 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 MLOAD PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 PUSH2 0x43D8 SWAP2 PUSH2 0x50B6 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x4410 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x4415 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x4429 JUMPI POP PUSH1 0x20 DUP2 MLOAD LT ISZERO JUMPDEST ISZERO PUSH2 0x445C JUMPI PUSH0 DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x4443 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP1 POP PUSH1 0xFF DUP2 GT PUSH2 0x445A JUMPI PUSH1 0x1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMPDEST POP PUSH0 SWAP5 DUP6 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x4489 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x44B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x44CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12B4 DUP3 PUSH2 0x44A2 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x12B4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x44D7 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x4544 JUMPI PUSH2 0x4544 PUSH2 0x4517 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x4572 JUMPI PUSH2 0x4572 PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x4589 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x45AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12B4 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x452B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x236D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x45E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x45F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4605 DUP7 DUP3 DUP8 ADD PUSH2 0x45A0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4620 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x462C DUP7 DUP3 DUP8 ADD PUSH2 0x45A0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x463D DUP2 PUSH2 0x45BE JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4658 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x236D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4681 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x468C DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x465F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x46B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x12B4 DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x46F2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xD2C DUP3 DUP5 PUSH2 0x46D6 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4715 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4720 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x473E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4754 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x476B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4786 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4791 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x47A1 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x47C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x47CE DUP9 DUP3 DUP10 ADD PUSH2 0x472E JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x236D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4808 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x47DF JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x482C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4837 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4847 DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x4857 DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x486E DUP2 PUSH2 0x45BE JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x488E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4899 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x48A9 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x48CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x48D7 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x48F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x48FD DUP7 DUP3 DUP8 ADD PUSH2 0x472E JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x491B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4926 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4940 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4950 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x495F DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x452B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x497C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4987 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4997 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x49BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x49ED DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x49FD DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4A0D DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A2F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4A3A DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A4A DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x463D DUP2 PUSH2 0x465F JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A7E DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x463D DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4AA0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4AAB DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4AD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4ADE DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4997 DUP2 PUSH2 0x465F JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4AFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B0A DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH2 0x4B18 PUSH1 0x20 DUP5 ADD PUSH2 0x44A2 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B3D DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4B6A DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4B84 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x4B94 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4BA9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x4BBD JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4C25 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x4C10 DUP6 DUP4 MLOAD PUSH2 0x44D7 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4BF4 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4C42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4C4D DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x469C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4CB2 JUMPI PUSH2 0x4CB2 PUSH2 0x4C77 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4CDF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4CFD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x12B4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x46D6 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x4D47 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x4D53 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x4D91 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DA8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x12B4 DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x4DF9 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x46D6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E34 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x12B4 DUP2 PUSH2 0x47DF JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4E68 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x4E81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x476B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4EA3 DUP3 DUP6 PUSH2 0x46D6 JUMP JUMPDEST PUSH2 0x12B4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x46D6 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x4EEB JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x4ECF JUMPI PUSH2 0x4ECF PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x4EDD JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x4EB4 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x4F01 JUMPI POP PUSH1 0x1 PUSH2 0xD2C JUMP JUMPDEST DUP2 PUSH2 0x4F0D JUMPI POP PUSH0 PUSH2 0xD2C JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x4F23 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x4F2D JUMPI PUSH2 0x4F49 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD2C JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x4F3E JUMPI PUSH2 0x4F3E PUSH2 0x4C77 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD2C JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x4F6C JUMPI POP DUP2 DUP2 EXP PUSH2 0xD2C JUMP JUMPDEST PUSH2 0x4F78 PUSH0 NOT DUP5 DUP5 PUSH2 0x4EB0 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x4F8B JUMPI PUSH2 0x4F8B PUSH2 0x4C77 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12B4 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x4EF3 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x4FC0 JUMPI PUSH2 0x4FC0 PUSH2 0x4C77 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x503D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x5048 DUP2 PUSH2 0x47DF JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x469C DUP2 PUSH2 0x465F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x507B JUMPI PUSH2 0x507B PUSH2 0x5059 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x4D91 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x50E7 JUMPI PUSH2 0x50E7 PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x5105 JUMPI PUSH2 0x5105 PUSH2 0x5059 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x4D91 JUMPI PUSH2 0x4D91 PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1A2D JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x515B JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3B30 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x5167 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5193 JUMPI PUSH2 0x5193 PUSH2 0x4517 JUMP JUMPDEST PUSH2 0x51A7 DUP2 PUSH2 0x51A1 DUP5 SLOAD PUSH2 0x4CCB JUMP JUMPDEST DUP5 PUSH2 0x5136 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x51D9 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x51C2 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x3B30 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5208 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x51E8 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5225 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x5246 JUMPI PUSH2 0x5246 PUSH2 0x5059 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x5263 JUMPI PUSH2 0x5263 PUSH2 0x4C77 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE 0xE1 DELEGATECALL PUSH30 0xB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE00360894A13B LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF000773E5 ORIGIN 0xDF 0xED 0xE9 0x1F DIV 0xB1 0x2A PUSH20 0xD3D2ACD361424F41F76B4FB79F090161E36B4E00 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG4 CALLDATACOPY 0xAB DUP12 0xAA 0xEA 0xC5 TIMESTAMP 0xB4 SWAP3 CREATE SUB 0x25 INVALID MUL SUB CODESIZE SIGNEXTEND DUP6 0xEA 0xC8 0x23 SGT CALLDATACOPY PUSH31 0x452CD6962686BF64736F6C634300081C003300000000000000000000000000 ","sourceMap":"3266:32853:73:-:0;;;1171:4:23;1128:48;;9931:173:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1623:37:21;;;;;10046:25:73;::::1;;::::0;10077:22:::1;:20;:22::i;:::-;9931:173:::0;;3266:32853;;7711:422:22;8870:21;7900:15;;;;;;;7896:76;;;7938:23;;-1:-1:-1;;;7938:23:22;;;;;;;;;;;7896:76;7985:14;;-1:-1:-1;;;;;7985:14:22;;;:34;7981:146;;8035:33;;-1:-1:-1;;;;;;8035:33:22;-1:-1:-1;;;;;8035:33:22;;;;;8087:29;;705:50:81;;;8087:29:22;;693:2:81;678:18;8087:29:22;;;;;;;7981:146;7760:373;7711:422::o;14:131:81:-;-1:-1:-1;;;;;89:31:81;;79:42;;69:70;;135:1;132;125:12;150:406;250:6;258;311:2;299:9;290:7;286:23;282:32;279:52;;;327:1;324;317:12;279:52;359:9;353:16;378:31;403:5;378:31;:::i;:::-;478:2;463:18;;457:25;428:5;;-1:-1:-1;491:33:81;457:25;491:33;:::i;:::-;543:7;533:17;;;150:406;;;;;:::o;561:200::-;3266:32853:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@OWN_POLICY_SELECTOR_22973":{"entryPoint":null,"id":22973,"parameterSlots":0,"returnSlots":0},"@SLOTSIZE_CALENDAR_MONTH_22981":{"entryPoint":null,"id":22981,"parameterSlots":0,"returnSlots":0},"@UPGRADE_INTERFACE_VERSION_5186":{"entryPoint":null,"id":5186,"parameterSlots":0,"returnSlots":0},"@__CashFlowLender_init_23460":{"entryPoint":11138,"id":23460,"parameterSlots":3,"returnSlots":0},"@__CashFlowLender_init_unchained_23489":{"entryPoint":14467,"id":23489,"parameterSlots":1,"returnSlots":0},"@__ERC20_init_5412":{"entryPoint":14449,"id":5412,"parameterSlots":2,"returnSlots":0},"@__ERC20_init_unchained_5440":{"entryPoint":16391,"id":5440,"parameterSlots":2,"returnSlots":0},"@__ERC4626_init_6055":{"entryPoint":14432,"id":6055,"parameterSlots":1,"returnSlots":0},"@__ERC4626_init_unchained_6093":{"entryPoint":16279,"id":6093,"parameterSlots":1,"returnSlots":0},"@__UUPSUpgradeable_init_5216":{"entryPoint":14424,"id":5216,"parameterSlots":0,"returnSlots":0},"@_approve_5844":{"entryPoint":11561,"id":5844,"parameterSlots":3,"returnSlots":0},"@_approve_5912":{"entryPoint":14940,"id":5912,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_23944":{"entryPoint":null,"id":23944,"parameterSlots":1,"returnSlots":0},"@_balance_24257":{"entryPoint":11020,"id":24257,"parameterSlots":0,"returnSlots":1},"@_burn_5826":{"entryPoint":17246,"id":5826,"parameterSlots":2,"returnSlots":0},"@_callOptionalReturn_12143":{"entryPoint":15159,"id":12143,"parameterSlots":2,"returnSlots":0},"@_changeDebt_24589":{"entryPoint":12354,"id":24589,"parameterSlots":4,"returnSlots":1},"@_checkCanForward_24660":{"entryPoint":12872,"id":24660,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_5084":{"entryPoint":14351,"id":5084,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_10425":{"entryPoint":17215,"id":10425,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_5292":{"entryPoint":13519,"id":5292,"parameterSlots":0,"returnSlots":0},"@_checkProxy_5276":{"entryPoint":13187,"id":5276,"parameterSlots":0,"returnSlots":0},"@_computeCalendarMonth_24424":{"entryPoint":15721,"id":24424,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_24212":{"entryPoint":null,"id":24212,"parameterSlots":0,"returnSlots":1},"@_contextSuffixLength_4907":{"entryPoint":null,"id":4907,"parameterSlots":0,"returnSlots":1},"@_convertToAssets_6618":{"entryPoint":11313,"id":6618,"parameterSlots":2,"returnSlots":1},"@_convertToShares_6590":{"entryPoint":11574,"id":6590,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_6724":{"entryPoint":null,"id":6724,"parameterSlots":0,"returnSlots":1},"@_deinvest_24529":{"entryPoint":11652,"id":24529,"parameterSlots":1,"returnSlots":1},"@_deposit_6662":{"entryPoint":13592,"id":6662,"parameterSlots":4,"returnSlots":0},"@_getCashFlowLenderStorage_23037":{"entryPoint":null,"id":23037,"parameterSlots":0,"returnSlots":1},"@_getERC20Storage_5396":{"entryPoint":null,"id":5396,"parameterSlots":0,"returnSlots":1},"@_getERC4626StorageCFL_23048":{"entryPoint":null,"id":23048,"parameterSlots":0,"returnSlots":1},"@_getERC4626Storage_6005":{"entryPoint":null,"id":6005,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_5161":{"entryPoint":null,"id":5161,"parameterSlots":0,"returnSlots":1},"@_getMonth_24348":{"entryPoint":16784,"id":24348,"parameterSlots":2,"returnSlots":1},"@_getTargetConfig_23671":{"entryPoint":11400,"id":23671,"parameterSlots":1,"returnSlots":1},"@_isInitializing_5152":{"entryPoint":null,"id":5152,"parameterSlots":0,"returnSlots":1},"@_makeSlotIndex_24449":{"entryPoint":13143,"id":24449,"parameterSlots":2,"returnSlots":1},"@_makeTargetSlot_24484":{"entryPoint":13789,"id":24484,"parameterSlots":3,"returnSlots":1},"@_mint_5793":{"entryPoint":16047,"id":5793,"parameterSlots":2,"returnSlots":0},"@_msgSender_24226":{"entryPoint":11552,"id":24226,"parameterSlots":0,"returnSlots":1},"@_msgSender_4856":{"entryPoint":14825,"id":4856,"parameterSlots":0,"returnSlots":1},"@_msgSender_6753":{"entryPoint":null,"id":6753,"parameterSlots":0,"returnSlots":1},"@_revert_12579":{"entryPoint":17529,"id":12579,"parameterSlots":1,"returnSlots":0},"@_setImplementation_10205":{"entryPoint":17011,"id":10205,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_23571":{"entryPoint":11901,"id":23571,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_5960":{"entryPoint":12704,"id":5960,"parameterSlots":3,"returnSlots":0},"@_transfer_5668":{"entryPoint":12779,"id":5668,"parameterSlots":3,"returnSlots":0},"@_tryGetAssetDecimals_6160":{"entryPoint":17298,"id":6160,"parameterSlots":1,"returnSlots":2},"@_update_5760":{"entryPoint":15267,"id":5760,"parameterSlots":3,"returnSlots":0},"@_upgradeToAndCallUUPS_5343":{"entryPoint":13331,"id":5343,"parameterSlots":2,"returnSlots":0},"@_withdraw_25226":{"entryPoint":13861,"id":25226,"parameterSlots":5,"returnSlots":0},"@_withdraw_6716":{"entryPoint":16099,"id":6716,"parameterSlots":5,"returnSlots":0},"@addTarget_23739":{"entryPoint":7129,"id":23739,"parameterSlots":4,"returnSlots":0},"@allowance_5565":{"entryPoint":9368,"id":5565,"parameterSlots":2,"returnSlots":1},"@approve_5589":{"entryPoint":4009,"id":5589,"parameterSlots":2,"returnSlots":1},"@asset_6201":{"entryPoint":5482,"id":6201,"parameterSlots":0,"returnSlots":1},"@balanceOf_5517":{"entryPoint":5705,"id":5517,"parameterSlots":1,"returnSlots":1},"@cashOutPayouts_25401":{"entryPoint":4456,"id":25401,"parameterSlots":5,"returnSlots":0},"@cashWithdrawable_25107":{"entryPoint":8730,"id":25107,"parameterSlots":0,"returnSlots":1},"@convertToAssets_6255":{"entryPoint":3842,"id":6255,"parameterSlots":1,"returnSlots":1},"@convertToShares_6239":{"entryPoint":7697,"id":6239,"parameterSlots":1,"returnSlots":1},"@currentDebt_24992":{"entryPoint":null,"id":24992,"parameterSlots":0,"returnSlots":1},"@decimals_6182":{"entryPoint":4795,"id":6182,"parameterSlots":0,"returnSlots":1},"@depositIntoYieldVault_25318":{"entryPoint":6509,"id":25318,"parameterSlots":1,"returnSlots":0},"@deposit_6424":{"entryPoint":5663,"id":6424,"parameterSlots":2,"returnSlots":1},"@extract_32_4_15942":{"entryPoint":14251,"id":15942,"parameterSlots":2,"returnSlots":1},"@forwardNewPolicyBatch_24857":{"entryPoint":9441,"id":24857,"parameterSlots":3,"returnSlots":1},"@forwardNewPolicy_24727":{"entryPoint":4836,"id":24727,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicyBatch_24974":{"entryPoint":10323,"id":24974,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicy_24891":{"entryPoint":5986,"id":24891,"parameterSlots":3,"returnSlots":1},"@functionCallWithValue_12445":{"entryPoint":15561,"id":12445,"parameterSlots":3,"returnSlots":1},"@functionCall_12395":{"entryPoint":13130,"id":12395,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_12497":{"entryPoint":17110,"id":12497,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@getDebtForPeriod_25019":{"entryPoint":6371,"id":25019,"parameterSlots":3,"returnSlots":1},"@getImplementation_10178":{"entryPoint":15942,"id":10178,"parameterSlots":0,"returnSlots":1},"@getTargetStatus_23843":{"entryPoint":null,"id":23843,"parameterSlots":1,"returnSlots":1},"@initialize_23420":{"entryPoint":3570,"id":23420,"parameterSlots":3,"returnSlots":0},"@isTrustedForwarder_4809":{"entryPoint":null,"id":4809,"parameterSlots":1,"returnSlots":1},"@makeFakeSelector_24612":{"entryPoint":7621,"id":24612,"parameterSlots":2,"returnSlots":1},"@maxDeposit_6270":{"entryPoint":null,"id":6270,"parameterSlots":1,"returnSlots":1},"@maxMint_6285":{"entryPoint":null,"id":6285,"parameterSlots":1,"returnSlots":1},"@maxRedeem_25129":{"entryPoint":9344,"id":25129,"parameterSlots":1,"returnSlots":1},"@maxRedeem_6316":{"entryPoint":14341,"id":6316,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_25149":{"entryPoint":8870,"id":25149,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_6303":{"entryPoint":14307,"id":6303,"parameterSlots":1,"returnSlots":1},"@min_18443":{"entryPoint":14326,"id":18443,"parameterSlots":2,"returnSlots":1},"@mint_6468":{"entryPoint":6275,"id":6468,"parameterSlots":2,"returnSlots":1},"@mulDiv_18644":{"entryPoint":16515,"id":18644,"parameterSlots":3,"returnSlots":1},"@mulDiv_18681":{"entryPoint":14759,"id":18681,"parameterSlots":4,"returnSlots":1},"@name_5456":{"entryPoint":3378,"id":5456,"parameterSlots":0,"returnSlots":1},"@onERC721Received_24092":{"entryPoint":4054,"id":24092,"parameterSlots":5,"returnSlots":1},"@onPayoutReceived_24176":{"entryPoint":9072,"id":24176,"parameterSlots":4,"returnSlots":1},"@onPolicyExpired_24112":{"entryPoint":10219,"id":24112,"parameterSlots":3,"returnSlots":1},"@onPolicyReplaced_24198":{"entryPoint":5558,"id":24198,"parameterSlots":4,"returnSlots":1},"@pack_20_8_13263":{"entryPoint":null,"id":13263,"parameterSlots":2,"returnSlots":1},"@pack_4_4_12834":{"entryPoint":null,"id":12834,"parameterSlots":2,"returnSlots":1},"@panic_16356":{"entryPoint":17512,"id":16356,"parameterSlots":1,"returnSlots":0},"@policyPool_23638":{"entryPoint":null,"id":23638,"parameterSlots":0,"returnSlots":1},"@previewDeposit_6332":{"entryPoint":null,"id":6332,"parameterSlots":1,"returnSlots":1},"@previewMint_6348":{"entryPoint":6706,"id":6348,"parameterSlots":1,"returnSlots":1},"@previewRedeem_6380":{"entryPoint":null,"id":6380,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_6364":{"entryPoint":4042,"id":6364,"parameterSlots":1,"returnSlots":1},"@proxiableUUID_5234":{"entryPoint":5531,"id":5234,"parameterSlots":0,"returnSlots":1},"@redeem_6562":{"entryPoint":6811,"id":6562,"parameterSlots":3,"returnSlots":1},"@refreshAsset_24070":{"entryPoint":7708,"id":24070,"parameterSlots":0,"returnSlots":0},"@repayDebt_25464":{"entryPoint":5743,"id":25464,"parameterSlots":4,"returnSlots":0},"@safeTransferFrom_11848":{"entryPoint":13732,"id":11848,"parameterSlots":4,"returnSlots":0},"@safeTransfer_11821":{"entryPoint":12609,"id":11821,"parameterSlots":3,"returnSlots":0},"@setTargetLimits_23783":{"entryPoint":6895,"id":23783,"parameterSlots":3,"returnSlots":0},"@setTargetSlotSize_23880":{"entryPoint":3853,"id":23880,"parameterSlots":2,"returnSlots":0},"@setTargetStatus_23822":{"entryPoint":10829,"id":23822,"parameterSlots":2,"returnSlots":0},"@setYieldVault_23618":{"entryPoint":4165,"id":23618,"parameterSlots":2,"returnSlots":0},"@supportsInterface_18195":{"entryPoint":null,"id":18195,"parameterSlots":1,"returnSlots":1},"@supportsInterface_23937":{"entryPoint":3189,"id":23937,"parameterSlots":1,"returnSlots":1},"@symbol_5472":{"entryPoint":6309,"id":5472,"parameterSlots":0,"returnSlots":1},"@ternary_18405":{"entryPoint":null,"id":18405,"parameterSlots":3,"returnSlots":1},"@toInt256_21568":{"entryPoint":12306,"id":21568,"parameterSlots":1,"returnSlots":1},"@toUint96_20401":{"entryPoint":14200,"id":20401,"parameterSlots":1,"returnSlots":1},"@toUint_21578":{"entryPoint":null,"id":21578,"parameterSlots":1,"returnSlots":1},"@totalAssets_25083":{"entryPoint":2867,"id":25083,"parameterSlots":0,"returnSlots":1},"@totalSupply_5497":{"entryPoint":null,"id":5497,"parameterSlots":0,"returnSlots":1},"@transferFrom_5621":{"entryPoint":4748,"id":5621,"parameterSlots":3,"returnSlots":1},"@transfer_5541":{"entryPoint":6486,"id":5541,"parameterSlots":2,"returnSlots":1},"@trustedForwarder_4795":{"entryPoint":null,"id":4795,"parameterSlots":0,"returnSlots":1},"@unsignedRoundsUp_19813":{"entryPoint":16471,"id":19813,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_10241":{"entryPoint":15962,"id":10241,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_5254":{"entryPoint":5509,"id":5254,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_12537":{"entryPoint":16697,"id":12537,"parameterSlots":3,"returnSlots":1},"@withdrawFromYieldVault_25269":{"entryPoint":8896,"id":25269,"parameterSlots":1,"returnSlots":0},"@withdraw_6515":{"entryPoint":6718,"id":6515,"parameterSlots":3,"returnSlots":1},"@yieldVault_23629":{"entryPoint":6455,"id":23629,"parameterSlots":0,"returnSlots":1},"abi_decode_available_length_string":{"entryPoint":17707,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bytes4":{"entryPoint":17570,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":18222,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_string":{"entryPoint":17824,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":18087,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":19864,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":19233,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":18556,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":18290,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":18793,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":19277,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":19182,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":18618,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":18698,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_enum$_TargetStatus_$22999":{"entryPoint":19505,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":18180,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":19086,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":18032,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256":{"entryPoint":19136,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32":{"entryPoint":18973,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256":{"entryPoint":18895,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address":{"entryPoint":18456,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":20004,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":20524,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":17598,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IAccessManager_$9511_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$11776_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$9796t_bool":{"entryPoint":18412,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$9796":{"entryPoint":17874,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256":{"entryPoint":17992,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":19552,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":18860,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":19034,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_enum_TargetStatus":{"entryPoint":18134,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":17623,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":20662,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":20479,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_enum$_TargetStatus_$22999__to_t_address_t_uint8__fromStack_reversed":{"entryPoint":19740,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":19891,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":19406,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$9796__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$9796_t_contract$_IERC4626_$9796__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$25555__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$22999__to_t_uint8__fromStack_reversed":{"entryPoint":18166,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$22999_t_enum$_TargetStatus_$22999__to_t_uint8_t_uint8__fromStack_reversed":{"entryPoint":20117,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17669,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TargetConfig_$23009_storage_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed":{"entryPoint":19924,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":20051,"id":null,"parameterSlots":2,"returnSlots":2},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":19769,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_int256":{"entryPoint":20385,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_int96":{"entryPoint":20424,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":19595,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":19715,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":20589,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":20144,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":20371,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":20211,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint32":{"entryPoint":20759,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":19640,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":20790,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":20608,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":19808,"id":null,"parameterSlots":2,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":20858,"id":null,"parameterSlots":2,"returnSlots":0},"decrement_t_uint256":{"entryPoint":21077,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":19659,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint32":{"entryPoint":20684,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint32":{"entryPoint":20720,"id":null,"parameterSlots":2,"returnSlots":1},"mod_t_uint8":{"entryPoint":21044,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":19614,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":19575,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":20569,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":18114,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":20031,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":17687,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":18399,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":17854,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint32":{"entryPoint":18015,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:35630:81","nodeType":"YulBlock","src":"0:35630:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"115:76:81","nodeType":"YulBlock","src":"115:76:81","statements":[{"nativeSrc":"125:26:81","nodeType":"YulAssignment","src":"125:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:81","nodeType":"YulIdentifier","src":"137:9:81"},{"kind":"number","nativeSrc":"148:2:81","nodeType":"YulLiteral","src":"148:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:81","nodeType":"YulIdentifier","src":"133:3:81"},"nativeSrc":"133:18:81","nodeType":"YulFunctionCall","src":"133:18:81"},"variableNames":[{"name":"tail","nativeSrc":"125:4:81","nodeType":"YulIdentifier","src":"125:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:81","nodeType":"YulIdentifier","src":"167:9:81"},{"name":"value0","nativeSrc":"178:6:81","nodeType":"YulIdentifier","src":"178:6:81"}],"functionName":{"name":"mstore","nativeSrc":"160:6:81","nodeType":"YulIdentifier","src":"160:6:81"},"nativeSrc":"160:25:81","nodeType":"YulFunctionCall","src":"160:25:81"},"nativeSrc":"160:25:81","nodeType":"YulExpressionStatement","src":"160:25:81"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:81","nodeType":"YulTypedName","src":"84:9:81","type":""},{"name":"value0","nativeSrc":"95:6:81","nodeType":"YulTypedName","src":"95:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:81","nodeType":"YulTypedName","src":"106:4:81","type":""}],"src":"14:177:81"},{"body":{"nativeSrc":"244:125:81","nodeType":"YulBlock","src":"244:125:81","statements":[{"nativeSrc":"254:29:81","nodeType":"YulAssignment","src":"254:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"276:6:81","nodeType":"YulIdentifier","src":"276:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"263:12:81","nodeType":"YulIdentifier","src":"263:12:81"},"nativeSrc":"263:20:81","nodeType":"YulFunctionCall","src":"263:20:81"},"variableNames":[{"name":"value","nativeSrc":"254:5:81","nodeType":"YulIdentifier","src":"254:5:81"}]},{"body":{"nativeSrc":"347:16:81","nodeType":"YulBlock","src":"347:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"356:1:81","nodeType":"YulLiteral","src":"356:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"359:1:81","nodeType":"YulLiteral","src":"359:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"349:6:81","nodeType":"YulIdentifier","src":"349:6:81"},"nativeSrc":"349:12:81","nodeType":"YulFunctionCall","src":"349:12:81"},"nativeSrc":"349:12:81","nodeType":"YulExpressionStatement","src":"349:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"305:5:81","nodeType":"YulIdentifier","src":"305:5:81"},{"arguments":[{"name":"value","nativeSrc":"316:5:81","nodeType":"YulIdentifier","src":"316:5:81"},{"arguments":[{"kind":"number","nativeSrc":"327:3:81","nodeType":"YulLiteral","src":"327:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"332:10:81","nodeType":"YulLiteral","src":"332:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"323:3:81","nodeType":"YulIdentifier","src":"323:3:81"},"nativeSrc":"323:20:81","nodeType":"YulFunctionCall","src":"323:20:81"}],"functionName":{"name":"and","nativeSrc":"312:3:81","nodeType":"YulIdentifier","src":"312:3:81"},"nativeSrc":"312:32:81","nodeType":"YulFunctionCall","src":"312:32:81"}],"functionName":{"name":"eq","nativeSrc":"302:2:81","nodeType":"YulIdentifier","src":"302:2:81"},"nativeSrc":"302:43:81","nodeType":"YulFunctionCall","src":"302:43:81"}],"functionName":{"name":"iszero","nativeSrc":"295:6:81","nodeType":"YulIdentifier","src":"295:6:81"},"nativeSrc":"295:51:81","nodeType":"YulFunctionCall","src":"295:51:81"},"nativeSrc":"292:71:81","nodeType":"YulIf","src":"292:71:81"}]},"name":"abi_decode_bytes4","nativeSrc":"196:173:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"223:6:81","nodeType":"YulTypedName","src":"223:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"234:5:81","nodeType":"YulTypedName","src":"234:5:81","type":""}],"src":"196:173:81"},{"body":{"nativeSrc":"443:115:81","nodeType":"YulBlock","src":"443:115:81","statements":[{"body":{"nativeSrc":"489:16:81","nodeType":"YulBlock","src":"489:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"498:1:81","nodeType":"YulLiteral","src":"498:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"501:1:81","nodeType":"YulLiteral","src":"501:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"491:6:81","nodeType":"YulIdentifier","src":"491:6:81"},"nativeSrc":"491:12:81","nodeType":"YulFunctionCall","src":"491:12:81"},"nativeSrc":"491:12:81","nodeType":"YulExpressionStatement","src":"491:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"464:7:81","nodeType":"YulIdentifier","src":"464:7:81"},{"name":"headStart","nativeSrc":"473:9:81","nodeType":"YulIdentifier","src":"473:9:81"}],"functionName":{"name":"sub","nativeSrc":"460:3:81","nodeType":"YulIdentifier","src":"460:3:81"},"nativeSrc":"460:23:81","nodeType":"YulFunctionCall","src":"460:23:81"},{"kind":"number","nativeSrc":"485:2:81","nodeType":"YulLiteral","src":"485:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"456:3:81","nodeType":"YulIdentifier","src":"456:3:81"},"nativeSrc":"456:32:81","nodeType":"YulFunctionCall","src":"456:32:81"},"nativeSrc":"453:52:81","nodeType":"YulIf","src":"453:52:81"},{"nativeSrc":"514:38:81","nodeType":"YulAssignment","src":"514:38:81","value":{"arguments":[{"name":"headStart","nativeSrc":"542:9:81","nodeType":"YulIdentifier","src":"542:9:81"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"524:17:81","nodeType":"YulIdentifier","src":"524:17:81"},"nativeSrc":"524:28:81","nodeType":"YulFunctionCall","src":"524:28:81"},"variableNames":[{"name":"value0","nativeSrc":"514:6:81","nodeType":"YulIdentifier","src":"514:6:81"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"374:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"409:9:81","nodeType":"YulTypedName","src":"409:9:81","type":""},{"name":"dataEnd","nativeSrc":"420:7:81","nodeType":"YulTypedName","src":"420:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"432:6:81","nodeType":"YulTypedName","src":"432:6:81","type":""}],"src":"374:184:81"},{"body":{"nativeSrc":"658:92:81","nodeType":"YulBlock","src":"658:92:81","statements":[{"nativeSrc":"668:26:81","nodeType":"YulAssignment","src":"668:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"680:9:81","nodeType":"YulIdentifier","src":"680:9:81"},{"kind":"number","nativeSrc":"691:2:81","nodeType":"YulLiteral","src":"691:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"676:3:81","nodeType":"YulIdentifier","src":"676:3:81"},"nativeSrc":"676:18:81","nodeType":"YulFunctionCall","src":"676:18:81"},"variableNames":[{"name":"tail","nativeSrc":"668:4:81","nodeType":"YulIdentifier","src":"668:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"710:9:81","nodeType":"YulIdentifier","src":"710:9:81"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"735:6:81","nodeType":"YulIdentifier","src":"735:6:81"}],"functionName":{"name":"iszero","nativeSrc":"728:6:81","nodeType":"YulIdentifier","src":"728:6:81"},"nativeSrc":"728:14:81","nodeType":"YulFunctionCall","src":"728:14:81"}],"functionName":{"name":"iszero","nativeSrc":"721:6:81","nodeType":"YulIdentifier","src":"721:6:81"},"nativeSrc":"721:22:81","nodeType":"YulFunctionCall","src":"721:22:81"}],"functionName":{"name":"mstore","nativeSrc":"703:6:81","nodeType":"YulIdentifier","src":"703:6:81"},"nativeSrc":"703:41:81","nodeType":"YulFunctionCall","src":"703:41:81"},"nativeSrc":"703:41:81","nodeType":"YulExpressionStatement","src":"703:41:81"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"563:187:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"627:9:81","nodeType":"YulTypedName","src":"627:9:81","type":""},{"name":"value0","nativeSrc":"638:6:81","nodeType":"YulTypedName","src":"638:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"649:4:81","nodeType":"YulTypedName","src":"649:4:81","type":""}],"src":"563:187:81"},{"body":{"nativeSrc":"805:239:81","nodeType":"YulBlock","src":"805:239:81","statements":[{"nativeSrc":"815:26:81","nodeType":"YulVariableDeclaration","src":"815:26:81","value":{"arguments":[{"name":"value","nativeSrc":"835:5:81","nodeType":"YulIdentifier","src":"835:5:81"}],"functionName":{"name":"mload","nativeSrc":"829:5:81","nodeType":"YulIdentifier","src":"829:5:81"},"nativeSrc":"829:12:81","nodeType":"YulFunctionCall","src":"829:12:81"},"variables":[{"name":"length","nativeSrc":"819:6:81","nodeType":"YulTypedName","src":"819:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"857:3:81","nodeType":"YulIdentifier","src":"857:3:81"},{"name":"length","nativeSrc":"862:6:81","nodeType":"YulIdentifier","src":"862:6:81"}],"functionName":{"name":"mstore","nativeSrc":"850:6:81","nodeType":"YulIdentifier","src":"850:6:81"},"nativeSrc":"850:19:81","nodeType":"YulFunctionCall","src":"850:19:81"},"nativeSrc":"850:19:81","nodeType":"YulExpressionStatement","src":"850:19:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"888:3:81","nodeType":"YulIdentifier","src":"888:3:81"},{"kind":"number","nativeSrc":"893:4:81","nodeType":"YulLiteral","src":"893:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"884:3:81","nodeType":"YulIdentifier","src":"884:3:81"},"nativeSrc":"884:14:81","nodeType":"YulFunctionCall","src":"884:14:81"},{"arguments":[{"name":"value","nativeSrc":"904:5:81","nodeType":"YulIdentifier","src":"904:5:81"},{"kind":"number","nativeSrc":"911:4:81","nodeType":"YulLiteral","src":"911:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"900:3:81","nodeType":"YulIdentifier","src":"900:3:81"},"nativeSrc":"900:16:81","nodeType":"YulFunctionCall","src":"900:16:81"},{"name":"length","nativeSrc":"918:6:81","nodeType":"YulIdentifier","src":"918:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"878:5:81","nodeType":"YulIdentifier","src":"878:5:81"},"nativeSrc":"878:47:81","nodeType":"YulFunctionCall","src":"878:47:81"},"nativeSrc":"878:47:81","nodeType":"YulExpressionStatement","src":"878:47:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"949:3:81","nodeType":"YulIdentifier","src":"949:3:81"},{"name":"length","nativeSrc":"954:6:81","nodeType":"YulIdentifier","src":"954:6:81"}],"functionName":{"name":"add","nativeSrc":"945:3:81","nodeType":"YulIdentifier","src":"945:3:81"},"nativeSrc":"945:16:81","nodeType":"YulFunctionCall","src":"945:16:81"},{"kind":"number","nativeSrc":"963:4:81","nodeType":"YulLiteral","src":"963:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"941:3:81","nodeType":"YulIdentifier","src":"941:3:81"},"nativeSrc":"941:27:81","nodeType":"YulFunctionCall","src":"941:27:81"},{"kind":"number","nativeSrc":"970:1:81","nodeType":"YulLiteral","src":"970:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"934:6:81","nodeType":"YulIdentifier","src":"934:6:81"},"nativeSrc":"934:38:81","nodeType":"YulFunctionCall","src":"934:38:81"},"nativeSrc":"934:38:81","nodeType":"YulExpressionStatement","src":"934:38:81"},{"nativeSrc":"981:57:81","nodeType":"YulAssignment","src":"981:57:81","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"996:3:81","nodeType":"YulIdentifier","src":"996:3:81"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1009:6:81","nodeType":"YulIdentifier","src":"1009:6:81"},{"kind":"number","nativeSrc":"1017:2:81","nodeType":"YulLiteral","src":"1017:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1005:3:81","nodeType":"YulIdentifier","src":"1005:3:81"},"nativeSrc":"1005:15:81","nodeType":"YulFunctionCall","src":"1005:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1026:2:81","nodeType":"YulLiteral","src":"1026:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1022:3:81","nodeType":"YulIdentifier","src":"1022:3:81"},"nativeSrc":"1022:7:81","nodeType":"YulFunctionCall","src":"1022:7:81"}],"functionName":{"name":"and","nativeSrc":"1001:3:81","nodeType":"YulIdentifier","src":"1001:3:81"},"nativeSrc":"1001:29:81","nodeType":"YulFunctionCall","src":"1001:29:81"}],"functionName":{"name":"add","nativeSrc":"992:3:81","nodeType":"YulIdentifier","src":"992:3:81"},"nativeSrc":"992:39:81","nodeType":"YulFunctionCall","src":"992:39:81"},{"kind":"number","nativeSrc":"1033:4:81","nodeType":"YulLiteral","src":"1033:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"988:3:81","nodeType":"YulIdentifier","src":"988:3:81"},"nativeSrc":"988:50:81","nodeType":"YulFunctionCall","src":"988:50:81"},"variableNames":[{"name":"end","nativeSrc":"981:3:81","nodeType":"YulIdentifier","src":"981:3:81"}]}]},"name":"abi_encode_string","nativeSrc":"755:289:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"782:5:81","nodeType":"YulTypedName","src":"782:5:81","type":""},{"name":"pos","nativeSrc":"789:3:81","nodeType":"YulTypedName","src":"789:3:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"797:3:81","nodeType":"YulTypedName","src":"797:3:81","type":""}],"src":"755:289:81"},{"body":{"nativeSrc":"1170:99:81","nodeType":"YulBlock","src":"1170:99:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1187:9:81","nodeType":"YulIdentifier","src":"1187:9:81"},{"kind":"number","nativeSrc":"1198:2:81","nodeType":"YulLiteral","src":"1198:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1180:6:81","nodeType":"YulIdentifier","src":"1180:6:81"},"nativeSrc":"1180:21:81","nodeType":"YulFunctionCall","src":"1180:21:81"},"nativeSrc":"1180:21:81","nodeType":"YulExpressionStatement","src":"1180:21:81"},{"nativeSrc":"1210:53:81","nodeType":"YulAssignment","src":"1210:53:81","value":{"arguments":[{"name":"value0","nativeSrc":"1236:6:81","nodeType":"YulIdentifier","src":"1236:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"1248:9:81","nodeType":"YulIdentifier","src":"1248:9:81"},{"kind":"number","nativeSrc":"1259:2:81","nodeType":"YulLiteral","src":"1259:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1244:3:81","nodeType":"YulIdentifier","src":"1244:3:81"},"nativeSrc":"1244:18:81","nodeType":"YulFunctionCall","src":"1244:18:81"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1218:17:81","nodeType":"YulIdentifier","src":"1218:17:81"},"nativeSrc":"1218:45:81","nodeType":"YulFunctionCall","src":"1218:45:81"},"variableNames":[{"name":"tail","nativeSrc":"1210:4:81","nodeType":"YulIdentifier","src":"1210:4:81"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1049:220:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1139:9:81","nodeType":"YulTypedName","src":"1139:9:81","type":""},{"name":"value0","nativeSrc":"1150:6:81","nodeType":"YulTypedName","src":"1150:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1161:4:81","nodeType":"YulTypedName","src":"1161:4:81","type":""}],"src":"1049:220:81"},{"body":{"nativeSrc":"1306:95:81","nodeType":"YulBlock","src":"1306:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1323:1:81","nodeType":"YulLiteral","src":"1323:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1330:3:81","nodeType":"YulLiteral","src":"1330:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1335:10:81","nodeType":"YulLiteral","src":"1335:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1326:3:81","nodeType":"YulIdentifier","src":"1326:3:81"},"nativeSrc":"1326:20:81","nodeType":"YulFunctionCall","src":"1326:20:81"}],"functionName":{"name":"mstore","nativeSrc":"1316:6:81","nodeType":"YulIdentifier","src":"1316:6:81"},"nativeSrc":"1316:31:81","nodeType":"YulFunctionCall","src":"1316:31:81"},"nativeSrc":"1316:31:81","nodeType":"YulExpressionStatement","src":"1316:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1363:1:81","nodeType":"YulLiteral","src":"1363:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"1366:4:81","nodeType":"YulLiteral","src":"1366:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1356:6:81","nodeType":"YulIdentifier","src":"1356:6:81"},"nativeSrc":"1356:15:81","nodeType":"YulFunctionCall","src":"1356:15:81"},"nativeSrc":"1356:15:81","nodeType":"YulExpressionStatement","src":"1356:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1387:1:81","nodeType":"YulLiteral","src":"1387:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1390:4:81","nodeType":"YulLiteral","src":"1390:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1380:6:81","nodeType":"YulIdentifier","src":"1380:6:81"},"nativeSrc":"1380:15:81","nodeType":"YulFunctionCall","src":"1380:15:81"},"nativeSrc":"1380:15:81","nodeType":"YulExpressionStatement","src":"1380:15:81"}]},"name":"panic_error_0x41","nativeSrc":"1274:127:81","nodeType":"YulFunctionDefinition","src":"1274:127:81"},{"body":{"nativeSrc":"1481:641:81","nodeType":"YulBlock","src":"1481:641:81","statements":[{"nativeSrc":"1491:13:81","nodeType":"YulVariableDeclaration","src":"1491:13:81","value":{"kind":"number","nativeSrc":"1503:1:81","nodeType":"YulLiteral","src":"1503:1:81","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"1495:4:81","nodeType":"YulTypedName","src":"1495:4:81","type":""}]},{"body":{"nativeSrc":"1547:22:81","nodeType":"YulBlock","src":"1547:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1549:16:81","nodeType":"YulIdentifier","src":"1549:16:81"},"nativeSrc":"1549:18:81","nodeType":"YulFunctionCall","src":"1549:18:81"},"nativeSrc":"1549:18:81","nodeType":"YulExpressionStatement","src":"1549:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1519:6:81","nodeType":"YulIdentifier","src":"1519:6:81"},{"kind":"number","nativeSrc":"1527:18:81","nodeType":"YulLiteral","src":"1527:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1516:2:81","nodeType":"YulIdentifier","src":"1516:2:81"},"nativeSrc":"1516:30:81","nodeType":"YulFunctionCall","src":"1516:30:81"},"nativeSrc":"1513:56:81","nodeType":"YulIf","src":"1513:56:81"},{"nativeSrc":"1578:43:81","nodeType":"YulVariableDeclaration","src":"1578:43:81","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1600:6:81","nodeType":"YulIdentifier","src":"1600:6:81"},{"kind":"number","nativeSrc":"1608:2:81","nodeType":"YulLiteral","src":"1608:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1596:3:81","nodeType":"YulIdentifier","src":"1596:3:81"},"nativeSrc":"1596:15:81","nodeType":"YulFunctionCall","src":"1596:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1617:2:81","nodeType":"YulLiteral","src":"1617:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1613:3:81","nodeType":"YulIdentifier","src":"1613:3:81"},"nativeSrc":"1613:7:81","nodeType":"YulFunctionCall","src":"1613:7:81"}],"functionName":{"name":"and","nativeSrc":"1592:3:81","nodeType":"YulIdentifier","src":"1592:3:81"},"nativeSrc":"1592:29:81","nodeType":"YulFunctionCall","src":"1592:29:81"},"variables":[{"name":"result","nativeSrc":"1582:6:81","nodeType":"YulTypedName","src":"1582:6:81","type":""}]},{"nativeSrc":"1630:25:81","nodeType":"YulAssignment","src":"1630:25:81","value":{"arguments":[{"name":"result","nativeSrc":"1642:6:81","nodeType":"YulIdentifier","src":"1642:6:81"},{"kind":"number","nativeSrc":"1650:4:81","nodeType":"YulLiteral","src":"1650:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1638:3:81","nodeType":"YulIdentifier","src":"1638:3:81"},"nativeSrc":"1638:17:81","nodeType":"YulFunctionCall","src":"1638:17:81"},"variableNames":[{"name":"size","nativeSrc":"1630:4:81","nodeType":"YulIdentifier","src":"1630:4:81"}]},{"nativeSrc":"1664:15:81","nodeType":"YulVariableDeclaration","src":"1664:15:81","value":{"kind":"number","nativeSrc":"1678:1:81","nodeType":"YulLiteral","src":"1678:1:81","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"1668:6:81","nodeType":"YulTypedName","src":"1668:6:81","type":""}]},{"nativeSrc":"1688:19:81","nodeType":"YulAssignment","src":"1688:19:81","value":{"arguments":[{"kind":"number","nativeSrc":"1704:2:81","nodeType":"YulLiteral","src":"1704:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1698:5:81","nodeType":"YulIdentifier","src":"1698:5:81"},"nativeSrc":"1698:9:81","nodeType":"YulFunctionCall","src":"1698:9:81"},"variableNames":[{"name":"memPtr","nativeSrc":"1688:6:81","nodeType":"YulIdentifier","src":"1688:6:81"}]},{"nativeSrc":"1716:60:81","nodeType":"YulVariableDeclaration","src":"1716:60:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"1738:6:81","nodeType":"YulIdentifier","src":"1738:6:81"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"1754:6:81","nodeType":"YulIdentifier","src":"1754:6:81"},{"kind":"number","nativeSrc":"1762:2:81","nodeType":"YulLiteral","src":"1762:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1750:3:81","nodeType":"YulIdentifier","src":"1750:3:81"},"nativeSrc":"1750:15:81","nodeType":"YulFunctionCall","src":"1750:15:81"},{"arguments":[{"kind":"number","nativeSrc":"1771:2:81","nodeType":"YulLiteral","src":"1771:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1767:3:81","nodeType":"YulIdentifier","src":"1767:3:81"},"nativeSrc":"1767:7:81","nodeType":"YulFunctionCall","src":"1767:7:81"}],"functionName":{"name":"and","nativeSrc":"1746:3:81","nodeType":"YulIdentifier","src":"1746:3:81"},"nativeSrc":"1746:29:81","nodeType":"YulFunctionCall","src":"1746:29:81"}],"functionName":{"name":"add","nativeSrc":"1734:3:81","nodeType":"YulIdentifier","src":"1734:3:81"},"nativeSrc":"1734:42:81","nodeType":"YulFunctionCall","src":"1734:42:81"},"variables":[{"name":"newFreePtr","nativeSrc":"1720:10:81","nodeType":"YulTypedName","src":"1720:10:81","type":""}]},{"body":{"nativeSrc":"1851:22:81","nodeType":"YulBlock","src":"1851:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1853:16:81","nodeType":"YulIdentifier","src":"1853:16:81"},"nativeSrc":"1853:18:81","nodeType":"YulFunctionCall","src":"1853:18:81"},"nativeSrc":"1853:18:81","nodeType":"YulExpressionStatement","src":"1853:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1794:10:81","nodeType":"YulIdentifier","src":"1794:10:81"},{"kind":"number","nativeSrc":"1806:18:81","nodeType":"YulLiteral","src":"1806:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1791:2:81","nodeType":"YulIdentifier","src":"1791:2:81"},"nativeSrc":"1791:34:81","nodeType":"YulFunctionCall","src":"1791:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1830:10:81","nodeType":"YulIdentifier","src":"1830:10:81"},{"name":"memPtr","nativeSrc":"1842:6:81","nodeType":"YulIdentifier","src":"1842:6:81"}],"functionName":{"name":"lt","nativeSrc":"1827:2:81","nodeType":"YulIdentifier","src":"1827:2:81"},"nativeSrc":"1827:22:81","nodeType":"YulFunctionCall","src":"1827:22:81"}],"functionName":{"name":"or","nativeSrc":"1788:2:81","nodeType":"YulIdentifier","src":"1788:2:81"},"nativeSrc":"1788:62:81","nodeType":"YulFunctionCall","src":"1788:62:81"},"nativeSrc":"1785:88:81","nodeType":"YulIf","src":"1785:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1889:2:81","nodeType":"YulLiteral","src":"1889:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1893:10:81","nodeType":"YulIdentifier","src":"1893:10:81"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:81","nodeType":"YulIdentifier","src":"1882:6:81"},"nativeSrc":"1882:22:81","nodeType":"YulFunctionCall","src":"1882:22:81"},"nativeSrc":"1882:22:81","nodeType":"YulExpressionStatement","src":"1882:22:81"},{"nativeSrc":"1913:15:81","nodeType":"YulAssignment","src":"1913:15:81","value":{"name":"memPtr","nativeSrc":"1922:6:81","nodeType":"YulIdentifier","src":"1922:6:81"},"variableNames":[{"name":"array","nativeSrc":"1913:5:81","nodeType":"YulIdentifier","src":"1913:5:81"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1944:6:81","nodeType":"YulIdentifier","src":"1944:6:81"},{"name":"length","nativeSrc":"1952:6:81","nodeType":"YulIdentifier","src":"1952:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1937:6:81","nodeType":"YulIdentifier","src":"1937:6:81"},"nativeSrc":"1937:22:81","nodeType":"YulFunctionCall","src":"1937:22:81"},"nativeSrc":"1937:22:81","nodeType":"YulExpressionStatement","src":"1937:22:81"},{"body":{"nativeSrc":"1997:16:81","nodeType":"YulBlock","src":"1997:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2006:1:81","nodeType":"YulLiteral","src":"2006:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2009:1:81","nodeType":"YulLiteral","src":"2009:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1999:6:81","nodeType":"YulIdentifier","src":"1999:6:81"},"nativeSrc":"1999:12:81","nodeType":"YulFunctionCall","src":"1999:12:81"},"nativeSrc":"1999:12:81","nodeType":"YulExpressionStatement","src":"1999:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"1978:3:81","nodeType":"YulIdentifier","src":"1978:3:81"},{"name":"length","nativeSrc":"1983:6:81","nodeType":"YulIdentifier","src":"1983:6:81"}],"functionName":{"name":"add","nativeSrc":"1974:3:81","nodeType":"YulIdentifier","src":"1974:3:81"},"nativeSrc":"1974:16:81","nodeType":"YulFunctionCall","src":"1974:16:81"},{"name":"end","nativeSrc":"1992:3:81","nodeType":"YulIdentifier","src":"1992:3:81"}],"functionName":{"name":"gt","nativeSrc":"1971:2:81","nodeType":"YulIdentifier","src":"1971:2:81"},"nativeSrc":"1971:25:81","nodeType":"YulFunctionCall","src":"1971:25:81"},"nativeSrc":"1968:45:81","nodeType":"YulIf","src":"1968:45:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2039:6:81","nodeType":"YulIdentifier","src":"2039:6:81"},{"kind":"number","nativeSrc":"2047:4:81","nodeType":"YulLiteral","src":"2047:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2035:3:81","nodeType":"YulIdentifier","src":"2035:3:81"},"nativeSrc":"2035:17:81","nodeType":"YulFunctionCall","src":"2035:17:81"},{"name":"src","nativeSrc":"2054:3:81","nodeType":"YulIdentifier","src":"2054:3:81"},{"name":"length","nativeSrc":"2059:6:81","nodeType":"YulIdentifier","src":"2059:6:81"}],"functionName":{"name":"calldatacopy","nativeSrc":"2022:12:81","nodeType":"YulIdentifier","src":"2022:12:81"},"nativeSrc":"2022:44:81","nodeType":"YulFunctionCall","src":"2022:44:81"},"nativeSrc":"2022:44:81","nodeType":"YulExpressionStatement","src":"2022:44:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2090:6:81","nodeType":"YulIdentifier","src":"2090:6:81"},{"name":"length","nativeSrc":"2098:6:81","nodeType":"YulIdentifier","src":"2098:6:81"}],"functionName":{"name":"add","nativeSrc":"2086:3:81","nodeType":"YulIdentifier","src":"2086:3:81"},"nativeSrc":"2086:19:81","nodeType":"YulFunctionCall","src":"2086:19:81"},{"kind":"number","nativeSrc":"2107:4:81","nodeType":"YulLiteral","src":"2107:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2082:3:81","nodeType":"YulIdentifier","src":"2082:3:81"},"nativeSrc":"2082:30:81","nodeType":"YulFunctionCall","src":"2082:30:81"},{"kind":"number","nativeSrc":"2114:1:81","nodeType":"YulLiteral","src":"2114:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2075:6:81","nodeType":"YulIdentifier","src":"2075:6:81"},"nativeSrc":"2075:41:81","nodeType":"YulFunctionCall","src":"2075:41:81"},"nativeSrc":"2075:41:81","nodeType":"YulExpressionStatement","src":"2075:41:81"}]},"name":"abi_decode_available_length_string","nativeSrc":"1406:716:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"1450:3:81","nodeType":"YulTypedName","src":"1450:3:81","type":""},{"name":"length","nativeSrc":"1455:6:81","nodeType":"YulTypedName","src":"1455:6:81","type":""},{"name":"end","nativeSrc":"1463:3:81","nodeType":"YulTypedName","src":"1463:3:81","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1471:5:81","nodeType":"YulTypedName","src":"1471:5:81","type":""}],"src":"1406:716:81"},{"body":{"nativeSrc":"2180:169:81","nodeType":"YulBlock","src":"2180:169:81","statements":[{"body":{"nativeSrc":"2229:16:81","nodeType":"YulBlock","src":"2229:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2238:1:81","nodeType":"YulLiteral","src":"2238:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2241:1:81","nodeType":"YulLiteral","src":"2241:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2231:6:81","nodeType":"YulIdentifier","src":"2231:6:81"},"nativeSrc":"2231:12:81","nodeType":"YulFunctionCall","src":"2231:12:81"},"nativeSrc":"2231:12:81","nodeType":"YulExpressionStatement","src":"2231:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2208:6:81","nodeType":"YulIdentifier","src":"2208:6:81"},{"kind":"number","nativeSrc":"2216:4:81","nodeType":"YulLiteral","src":"2216:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2204:3:81","nodeType":"YulIdentifier","src":"2204:3:81"},"nativeSrc":"2204:17:81","nodeType":"YulFunctionCall","src":"2204:17:81"},{"name":"end","nativeSrc":"2223:3:81","nodeType":"YulIdentifier","src":"2223:3:81"}],"functionName":{"name":"slt","nativeSrc":"2200:3:81","nodeType":"YulIdentifier","src":"2200:3:81"},"nativeSrc":"2200:27:81","nodeType":"YulFunctionCall","src":"2200:27:81"}],"functionName":{"name":"iszero","nativeSrc":"2193:6:81","nodeType":"YulIdentifier","src":"2193:6:81"},"nativeSrc":"2193:35:81","nodeType":"YulFunctionCall","src":"2193:35:81"},"nativeSrc":"2190:55:81","nodeType":"YulIf","src":"2190:55:81"},{"nativeSrc":"2254:89:81","nodeType":"YulAssignment","src":"2254:89:81","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2302:6:81","nodeType":"YulIdentifier","src":"2302:6:81"},{"kind":"number","nativeSrc":"2310:4:81","nodeType":"YulLiteral","src":"2310:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2298:3:81","nodeType":"YulIdentifier","src":"2298:3:81"},"nativeSrc":"2298:17:81","nodeType":"YulFunctionCall","src":"2298:17:81"},{"arguments":[{"name":"offset","nativeSrc":"2330:6:81","nodeType":"YulIdentifier","src":"2330:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"2317:12:81","nodeType":"YulIdentifier","src":"2317:12:81"},"nativeSrc":"2317:20:81","nodeType":"YulFunctionCall","src":"2317:20:81"},{"name":"end","nativeSrc":"2339:3:81","nodeType":"YulIdentifier","src":"2339:3:81"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"2263:34:81","nodeType":"YulIdentifier","src":"2263:34:81"},"nativeSrc":"2263:80:81","nodeType":"YulFunctionCall","src":"2263:80:81"},"variableNames":[{"name":"array","nativeSrc":"2254:5:81","nodeType":"YulIdentifier","src":"2254:5:81"}]}]},"name":"abi_decode_string","nativeSrc":"2127:222:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2154:6:81","nodeType":"YulTypedName","src":"2154:6:81","type":""},{"name":"end","nativeSrc":"2162:3:81","nodeType":"YulTypedName","src":"2162:3:81","type":""}],"returnVariables":[{"name":"array","nativeSrc":"2170:5:81","nodeType":"YulTypedName","src":"2170:5:81","type":""}],"src":"2127:222:81"},{"body":{"nativeSrc":"2409:86:81","nodeType":"YulBlock","src":"2409:86:81","statements":[{"body":{"nativeSrc":"2473:16:81","nodeType":"YulBlock","src":"2473:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2482:1:81","nodeType":"YulLiteral","src":"2482:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2485:1:81","nodeType":"YulLiteral","src":"2485:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2475:6:81","nodeType":"YulIdentifier","src":"2475:6:81"},"nativeSrc":"2475:12:81","nodeType":"YulFunctionCall","src":"2475:12:81"},"nativeSrc":"2475:12:81","nodeType":"YulExpressionStatement","src":"2475:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2432:5:81","nodeType":"YulIdentifier","src":"2432:5:81"},{"arguments":[{"name":"value","nativeSrc":"2443:5:81","nodeType":"YulIdentifier","src":"2443:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2458:3:81","nodeType":"YulLiteral","src":"2458:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"2463:1:81","nodeType":"YulLiteral","src":"2463:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2454:3:81","nodeType":"YulIdentifier","src":"2454:3:81"},"nativeSrc":"2454:11:81","nodeType":"YulFunctionCall","src":"2454:11:81"},{"kind":"number","nativeSrc":"2467:1:81","nodeType":"YulLiteral","src":"2467:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2450:3:81","nodeType":"YulIdentifier","src":"2450:3:81"},"nativeSrc":"2450:19:81","nodeType":"YulFunctionCall","src":"2450:19:81"}],"functionName":{"name":"and","nativeSrc":"2439:3:81","nodeType":"YulIdentifier","src":"2439:3:81"},"nativeSrc":"2439:31:81","nodeType":"YulFunctionCall","src":"2439:31:81"}],"functionName":{"name":"eq","nativeSrc":"2429:2:81","nodeType":"YulIdentifier","src":"2429:2:81"},"nativeSrc":"2429:42:81","nodeType":"YulFunctionCall","src":"2429:42:81"}],"functionName":{"name":"iszero","nativeSrc":"2422:6:81","nodeType":"YulIdentifier","src":"2422:6:81"},"nativeSrc":"2422:50:81","nodeType":"YulFunctionCall","src":"2422:50:81"},"nativeSrc":"2419:70:81","nodeType":"YulIf","src":"2419:70:81"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"2354:141:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2398:5:81","nodeType":"YulTypedName","src":"2398:5:81","type":""}],"src":"2354:141:81"},{"body":{"nativeSrc":"2641:559:81","nodeType":"YulBlock","src":"2641:559:81","statements":[{"body":{"nativeSrc":"2687:16:81","nodeType":"YulBlock","src":"2687:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2696:1:81","nodeType":"YulLiteral","src":"2696:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2699:1:81","nodeType":"YulLiteral","src":"2699:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2689:6:81","nodeType":"YulIdentifier","src":"2689:6:81"},"nativeSrc":"2689:12:81","nodeType":"YulFunctionCall","src":"2689:12:81"},"nativeSrc":"2689:12:81","nodeType":"YulExpressionStatement","src":"2689:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2662:7:81","nodeType":"YulIdentifier","src":"2662:7:81"},{"name":"headStart","nativeSrc":"2671:9:81","nodeType":"YulIdentifier","src":"2671:9:81"}],"functionName":{"name":"sub","nativeSrc":"2658:3:81","nodeType":"YulIdentifier","src":"2658:3:81"},"nativeSrc":"2658:23:81","nodeType":"YulFunctionCall","src":"2658:23:81"},{"kind":"number","nativeSrc":"2683:2:81","nodeType":"YulLiteral","src":"2683:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2654:3:81","nodeType":"YulIdentifier","src":"2654:3:81"},"nativeSrc":"2654:32:81","nodeType":"YulFunctionCall","src":"2654:32:81"},"nativeSrc":"2651:52:81","nodeType":"YulIf","src":"2651:52:81"},{"nativeSrc":"2712:37:81","nodeType":"YulVariableDeclaration","src":"2712:37:81","value":{"arguments":[{"name":"headStart","nativeSrc":"2739:9:81","nodeType":"YulIdentifier","src":"2739:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"2726:12:81","nodeType":"YulIdentifier","src":"2726:12:81"},"nativeSrc":"2726:23:81","nodeType":"YulFunctionCall","src":"2726:23:81"},"variables":[{"name":"offset","nativeSrc":"2716:6:81","nodeType":"YulTypedName","src":"2716:6:81","type":""}]},{"body":{"nativeSrc":"2792:16:81","nodeType":"YulBlock","src":"2792:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2801:1:81","nodeType":"YulLiteral","src":"2801:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2804:1:81","nodeType":"YulLiteral","src":"2804:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2794:6:81","nodeType":"YulIdentifier","src":"2794:6:81"},"nativeSrc":"2794:12:81","nodeType":"YulFunctionCall","src":"2794:12:81"},"nativeSrc":"2794:12:81","nodeType":"YulExpressionStatement","src":"2794:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2764:6:81","nodeType":"YulIdentifier","src":"2764:6:81"},{"kind":"number","nativeSrc":"2772:18:81","nodeType":"YulLiteral","src":"2772:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2761:2:81","nodeType":"YulIdentifier","src":"2761:2:81"},"nativeSrc":"2761:30:81","nodeType":"YulFunctionCall","src":"2761:30:81"},"nativeSrc":"2758:50:81","nodeType":"YulIf","src":"2758:50:81"},{"nativeSrc":"2817:60:81","nodeType":"YulAssignment","src":"2817:60:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2849:9:81","nodeType":"YulIdentifier","src":"2849:9:81"},{"name":"offset","nativeSrc":"2860:6:81","nodeType":"YulIdentifier","src":"2860:6:81"}],"functionName":{"name":"add","nativeSrc":"2845:3:81","nodeType":"YulIdentifier","src":"2845:3:81"},"nativeSrc":"2845:22:81","nodeType":"YulFunctionCall","src":"2845:22:81"},{"name":"dataEnd","nativeSrc":"2869:7:81","nodeType":"YulIdentifier","src":"2869:7:81"}],"functionName":{"name":"abi_decode_string","nativeSrc":"2827:17:81","nodeType":"YulIdentifier","src":"2827:17:81"},"nativeSrc":"2827:50:81","nodeType":"YulFunctionCall","src":"2827:50:81"},"variableNames":[{"name":"value0","nativeSrc":"2817:6:81","nodeType":"YulIdentifier","src":"2817:6:81"}]},{"nativeSrc":"2886:48:81","nodeType":"YulVariableDeclaration","src":"2886:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2919:9:81","nodeType":"YulIdentifier","src":"2919:9:81"},{"kind":"number","nativeSrc":"2930:2:81","nodeType":"YulLiteral","src":"2930:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2915:3:81","nodeType":"YulIdentifier","src":"2915:3:81"},"nativeSrc":"2915:18:81","nodeType":"YulFunctionCall","src":"2915:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"2902:12:81","nodeType":"YulIdentifier","src":"2902:12:81"},"nativeSrc":"2902:32:81","nodeType":"YulFunctionCall","src":"2902:32:81"},"variables":[{"name":"offset_1","nativeSrc":"2890:8:81","nodeType":"YulTypedName","src":"2890:8:81","type":""}]},{"body":{"nativeSrc":"2979:16:81","nodeType":"YulBlock","src":"2979:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2988:1:81","nodeType":"YulLiteral","src":"2988:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"2991:1:81","nodeType":"YulLiteral","src":"2991:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2981:6:81","nodeType":"YulIdentifier","src":"2981:6:81"},"nativeSrc":"2981:12:81","nodeType":"YulFunctionCall","src":"2981:12:81"},"nativeSrc":"2981:12:81","nodeType":"YulExpressionStatement","src":"2981:12:81"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"2949:8:81","nodeType":"YulIdentifier","src":"2949:8:81"},{"kind":"number","nativeSrc":"2959:18:81","nodeType":"YulLiteral","src":"2959:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2946:2:81","nodeType":"YulIdentifier","src":"2946:2:81"},"nativeSrc":"2946:32:81","nodeType":"YulFunctionCall","src":"2946:32:81"},"nativeSrc":"2943:52:81","nodeType":"YulIf","src":"2943:52:81"},{"nativeSrc":"3004:62:81","nodeType":"YulAssignment","src":"3004:62:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3036:9:81","nodeType":"YulIdentifier","src":"3036:9:81"},{"name":"offset_1","nativeSrc":"3047:8:81","nodeType":"YulIdentifier","src":"3047:8:81"}],"functionName":{"name":"add","nativeSrc":"3032:3:81","nodeType":"YulIdentifier","src":"3032:3:81"},"nativeSrc":"3032:24:81","nodeType":"YulFunctionCall","src":"3032:24:81"},{"name":"dataEnd","nativeSrc":"3058:7:81","nodeType":"YulIdentifier","src":"3058:7:81"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3014:17:81","nodeType":"YulIdentifier","src":"3014:17:81"},"nativeSrc":"3014:52:81","nodeType":"YulFunctionCall","src":"3014:52:81"},"variableNames":[{"name":"value1","nativeSrc":"3004:6:81","nodeType":"YulIdentifier","src":"3004:6:81"}]},{"nativeSrc":"3075:45:81","nodeType":"YulVariableDeclaration","src":"3075:45:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3105:9:81","nodeType":"YulIdentifier","src":"3105:9:81"},{"kind":"number","nativeSrc":"3116:2:81","nodeType":"YulLiteral","src":"3116:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3101:3:81","nodeType":"YulIdentifier","src":"3101:3:81"},"nativeSrc":"3101:18:81","nodeType":"YulFunctionCall","src":"3101:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3088:12:81","nodeType":"YulIdentifier","src":"3088:12:81"},"nativeSrc":"3088:32:81","nodeType":"YulFunctionCall","src":"3088:32:81"},"variables":[{"name":"value","nativeSrc":"3079:5:81","nodeType":"YulTypedName","src":"3079:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3164:5:81","nodeType":"YulIdentifier","src":"3164:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3129:34:81","nodeType":"YulIdentifier","src":"3129:34:81"},"nativeSrc":"3129:41:81","nodeType":"YulFunctionCall","src":"3129:41:81"},"nativeSrc":"3129:41:81","nodeType":"YulExpressionStatement","src":"3129:41:81"},{"nativeSrc":"3179:15:81","nodeType":"YulAssignment","src":"3179:15:81","value":{"name":"value","nativeSrc":"3189:5:81","nodeType":"YulIdentifier","src":"3189:5:81"},"variableNames":[{"name":"value2","nativeSrc":"3179:6:81","nodeType":"YulIdentifier","src":"3179:6:81"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$9796","nativeSrc":"2500:700:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2591:9:81","nodeType":"YulTypedName","src":"2591:9:81","type":""},{"name":"dataEnd","nativeSrc":"2602:7:81","nodeType":"YulTypedName","src":"2602:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2614:6:81","nodeType":"YulTypedName","src":"2614:6:81","type":""},{"name":"value1","nativeSrc":"2622:6:81","nodeType":"YulTypedName","src":"2622:6:81","type":""},{"name":"value2","nativeSrc":"2630:6:81","nodeType":"YulTypedName","src":"2630:6:81","type":""}],"src":"2500:700:81"},{"body":{"nativeSrc":"3275:156:81","nodeType":"YulBlock","src":"3275:156:81","statements":[{"body":{"nativeSrc":"3321:16:81","nodeType":"YulBlock","src":"3321:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3330:1:81","nodeType":"YulLiteral","src":"3330:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3333:1:81","nodeType":"YulLiteral","src":"3333:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3323:6:81","nodeType":"YulIdentifier","src":"3323:6:81"},"nativeSrc":"3323:12:81","nodeType":"YulFunctionCall","src":"3323:12:81"},"nativeSrc":"3323:12:81","nodeType":"YulExpressionStatement","src":"3323:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3296:7:81","nodeType":"YulIdentifier","src":"3296:7:81"},{"name":"headStart","nativeSrc":"3305:9:81","nodeType":"YulIdentifier","src":"3305:9:81"}],"functionName":{"name":"sub","nativeSrc":"3292:3:81","nodeType":"YulIdentifier","src":"3292:3:81"},"nativeSrc":"3292:23:81","nodeType":"YulFunctionCall","src":"3292:23:81"},{"kind":"number","nativeSrc":"3317:2:81","nodeType":"YulLiteral","src":"3317:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3288:3:81","nodeType":"YulIdentifier","src":"3288:3:81"},"nativeSrc":"3288:32:81","nodeType":"YulFunctionCall","src":"3288:32:81"},"nativeSrc":"3285:52:81","nodeType":"YulIf","src":"3285:52:81"},{"nativeSrc":"3346:14:81","nodeType":"YulVariableDeclaration","src":"3346:14:81","value":{"kind":"number","nativeSrc":"3359:1:81","nodeType":"YulLiteral","src":"3359:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3350:5:81","nodeType":"YulTypedName","src":"3350:5:81","type":""}]},{"nativeSrc":"3369:32:81","nodeType":"YulAssignment","src":"3369:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3391:9:81","nodeType":"YulIdentifier","src":"3391:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3378:12:81","nodeType":"YulIdentifier","src":"3378:12:81"},"nativeSrc":"3378:23:81","nodeType":"YulFunctionCall","src":"3378:23:81"},"variableNames":[{"name":"value","nativeSrc":"3369:5:81","nodeType":"YulIdentifier","src":"3369:5:81"}]},{"nativeSrc":"3410:15:81","nodeType":"YulAssignment","src":"3410:15:81","value":{"name":"value","nativeSrc":"3420:5:81","nodeType":"YulIdentifier","src":"3420:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3410:6:81","nodeType":"YulIdentifier","src":"3410:6:81"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3205:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3241:9:81","nodeType":"YulTypedName","src":"3241:9:81","type":""},{"name":"dataEnd","nativeSrc":"3252:7:81","nodeType":"YulTypedName","src":"3252:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3264:6:81","nodeType":"YulTypedName","src":"3264:6:81","type":""}],"src":"3205:226:81"},{"body":{"nativeSrc":"3480:77:81","nodeType":"YulBlock","src":"3480:77:81","statements":[{"body":{"nativeSrc":"3535:16:81","nodeType":"YulBlock","src":"3535:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3544:1:81","nodeType":"YulLiteral","src":"3544:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3547:1:81","nodeType":"YulLiteral","src":"3547:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3537:6:81","nodeType":"YulIdentifier","src":"3537:6:81"},"nativeSrc":"3537:12:81","nodeType":"YulFunctionCall","src":"3537:12:81"},"nativeSrc":"3537:12:81","nodeType":"YulExpressionStatement","src":"3537:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3503:5:81","nodeType":"YulIdentifier","src":"3503:5:81"},{"arguments":[{"name":"value","nativeSrc":"3514:5:81","nodeType":"YulIdentifier","src":"3514:5:81"},{"kind":"number","nativeSrc":"3521:10:81","nodeType":"YulLiteral","src":"3521:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"3510:3:81","nodeType":"YulIdentifier","src":"3510:3:81"},"nativeSrc":"3510:22:81","nodeType":"YulFunctionCall","src":"3510:22:81"}],"functionName":{"name":"eq","nativeSrc":"3500:2:81","nodeType":"YulIdentifier","src":"3500:2:81"},"nativeSrc":"3500:33:81","nodeType":"YulFunctionCall","src":"3500:33:81"}],"functionName":{"name":"iszero","nativeSrc":"3493:6:81","nodeType":"YulIdentifier","src":"3493:6:81"},"nativeSrc":"3493:41:81","nodeType":"YulFunctionCall","src":"3493:41:81"},"nativeSrc":"3490:61:81","nodeType":"YulIf","src":"3490:61:81"}]},"name":"validator_revert_uint32","nativeSrc":"3436:121:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"3469:5:81","nodeType":"YulTypedName","src":"3469:5:81","type":""}],"src":"3436:121:81"},{"body":{"nativeSrc":"3648:310:81","nodeType":"YulBlock","src":"3648:310:81","statements":[{"body":{"nativeSrc":"3694:16:81","nodeType":"YulBlock","src":"3694:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3703:1:81","nodeType":"YulLiteral","src":"3703:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"3706:1:81","nodeType":"YulLiteral","src":"3706:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3696:6:81","nodeType":"YulIdentifier","src":"3696:6:81"},"nativeSrc":"3696:12:81","nodeType":"YulFunctionCall","src":"3696:12:81"},"nativeSrc":"3696:12:81","nodeType":"YulExpressionStatement","src":"3696:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3669:7:81","nodeType":"YulIdentifier","src":"3669:7:81"},{"name":"headStart","nativeSrc":"3678:9:81","nodeType":"YulIdentifier","src":"3678:9:81"}],"functionName":{"name":"sub","nativeSrc":"3665:3:81","nodeType":"YulIdentifier","src":"3665:3:81"},"nativeSrc":"3665:23:81","nodeType":"YulFunctionCall","src":"3665:23:81"},{"kind":"number","nativeSrc":"3690:2:81","nodeType":"YulLiteral","src":"3690:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3661:3:81","nodeType":"YulIdentifier","src":"3661:3:81"},"nativeSrc":"3661:32:81","nodeType":"YulFunctionCall","src":"3661:32:81"},"nativeSrc":"3658:52:81","nodeType":"YulIf","src":"3658:52:81"},{"nativeSrc":"3719:36:81","nodeType":"YulVariableDeclaration","src":"3719:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"3745:9:81","nodeType":"YulIdentifier","src":"3745:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"3732:12:81","nodeType":"YulIdentifier","src":"3732:12:81"},"nativeSrc":"3732:23:81","nodeType":"YulFunctionCall","src":"3732:23:81"},"variables":[{"name":"value","nativeSrc":"3723:5:81","nodeType":"YulTypedName","src":"3723:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3799:5:81","nodeType":"YulIdentifier","src":"3799:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3764:34:81","nodeType":"YulIdentifier","src":"3764:34:81"},"nativeSrc":"3764:41:81","nodeType":"YulFunctionCall","src":"3764:41:81"},"nativeSrc":"3764:41:81","nodeType":"YulExpressionStatement","src":"3764:41:81"},{"nativeSrc":"3814:15:81","nodeType":"YulAssignment","src":"3814:15:81","value":{"name":"value","nativeSrc":"3824:5:81","nodeType":"YulIdentifier","src":"3824:5:81"},"variableNames":[{"name":"value0","nativeSrc":"3814:6:81","nodeType":"YulIdentifier","src":"3814:6:81"}]},{"nativeSrc":"3838:47:81","nodeType":"YulVariableDeclaration","src":"3838:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3870:9:81","nodeType":"YulIdentifier","src":"3870:9:81"},{"kind":"number","nativeSrc":"3881:2:81","nodeType":"YulLiteral","src":"3881:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3866:3:81","nodeType":"YulIdentifier","src":"3866:3:81"},"nativeSrc":"3866:18:81","nodeType":"YulFunctionCall","src":"3866:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"3853:12:81","nodeType":"YulIdentifier","src":"3853:12:81"},"nativeSrc":"3853:32:81","nodeType":"YulFunctionCall","src":"3853:32:81"},"variables":[{"name":"value_1","nativeSrc":"3842:7:81","nodeType":"YulTypedName","src":"3842:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3918:7:81","nodeType":"YulIdentifier","src":"3918:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"3894:23:81","nodeType":"YulIdentifier","src":"3894:23:81"},"nativeSrc":"3894:32:81","nodeType":"YulFunctionCall","src":"3894:32:81"},"nativeSrc":"3894:32:81","nodeType":"YulExpressionStatement","src":"3894:32:81"},{"nativeSrc":"3935:17:81","nodeType":"YulAssignment","src":"3935:17:81","value":{"name":"value_1","nativeSrc":"3945:7:81","nodeType":"YulIdentifier","src":"3945:7:81"},"variableNames":[{"name":"value1","nativeSrc":"3935:6:81","nodeType":"YulIdentifier","src":"3935:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"3562:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3606:9:81","nodeType":"YulTypedName","src":"3606:9:81","type":""},{"name":"dataEnd","nativeSrc":"3617:7:81","nodeType":"YulTypedName","src":"3617:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3629:6:81","nodeType":"YulTypedName","src":"3629:6:81","type":""},{"name":"value1","nativeSrc":"3637:6:81","nodeType":"YulTypedName","src":"3637:6:81","type":""}],"src":"3562:396:81"},{"body":{"nativeSrc":"4033:187:81","nodeType":"YulBlock","src":"4033:187:81","statements":[{"body":{"nativeSrc":"4079:16:81","nodeType":"YulBlock","src":"4079:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4088:1:81","nodeType":"YulLiteral","src":"4088:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4091:1:81","nodeType":"YulLiteral","src":"4091:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4081:6:81","nodeType":"YulIdentifier","src":"4081:6:81"},"nativeSrc":"4081:12:81","nodeType":"YulFunctionCall","src":"4081:12:81"},"nativeSrc":"4081:12:81","nodeType":"YulExpressionStatement","src":"4081:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4054:7:81","nodeType":"YulIdentifier","src":"4054:7:81"},{"name":"headStart","nativeSrc":"4063:9:81","nodeType":"YulIdentifier","src":"4063:9:81"}],"functionName":{"name":"sub","nativeSrc":"4050:3:81","nodeType":"YulIdentifier","src":"4050:3:81"},"nativeSrc":"4050:23:81","nodeType":"YulFunctionCall","src":"4050:23:81"},{"kind":"number","nativeSrc":"4075:2:81","nodeType":"YulLiteral","src":"4075:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4046:3:81","nodeType":"YulIdentifier","src":"4046:3:81"},"nativeSrc":"4046:32:81","nodeType":"YulFunctionCall","src":"4046:32:81"},"nativeSrc":"4043:52:81","nodeType":"YulIf","src":"4043:52:81"},{"nativeSrc":"4104:36:81","nodeType":"YulVariableDeclaration","src":"4104:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4130:9:81","nodeType":"YulIdentifier","src":"4130:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"4117:12:81","nodeType":"YulIdentifier","src":"4117:12:81"},"nativeSrc":"4117:23:81","nodeType":"YulFunctionCall","src":"4117:23:81"},"variables":[{"name":"value","nativeSrc":"4108:5:81","nodeType":"YulTypedName","src":"4108:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4184:5:81","nodeType":"YulIdentifier","src":"4184:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4149:34:81","nodeType":"YulIdentifier","src":"4149:34:81"},"nativeSrc":"4149:41:81","nodeType":"YulFunctionCall","src":"4149:41:81"},"nativeSrc":"4149:41:81","nodeType":"YulExpressionStatement","src":"4149:41:81"},{"nativeSrc":"4199:15:81","nodeType":"YulAssignment","src":"4199:15:81","value":{"name":"value","nativeSrc":"4209:5:81","nodeType":"YulIdentifier","src":"4209:5:81"},"variableNames":[{"name":"value0","nativeSrc":"4199:6:81","nodeType":"YulIdentifier","src":"4199:6:81"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"3963:257:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3999:9:81","nodeType":"YulTypedName","src":"3999:9:81","type":""},{"name":"dataEnd","nativeSrc":"4010:7:81","nodeType":"YulTypedName","src":"4010:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4022:6:81","nodeType":"YulTypedName","src":"4022:6:81","type":""}],"src":"3963:257:81"},{"body":{"nativeSrc":"4257:95:81","nodeType":"YulBlock","src":"4257:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4274:1:81","nodeType":"YulLiteral","src":"4274:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4281:3:81","nodeType":"YulLiteral","src":"4281:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4286:10:81","nodeType":"YulLiteral","src":"4286:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4277:3:81","nodeType":"YulIdentifier","src":"4277:3:81"},"nativeSrc":"4277:20:81","nodeType":"YulFunctionCall","src":"4277:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4267:6:81","nodeType":"YulIdentifier","src":"4267:6:81"},"nativeSrc":"4267:31:81","nodeType":"YulFunctionCall","src":"4267:31:81"},"nativeSrc":"4267:31:81","nodeType":"YulExpressionStatement","src":"4267:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4314:1:81","nodeType":"YulLiteral","src":"4314:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4317:4:81","nodeType":"YulLiteral","src":"4317:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"4307:6:81","nodeType":"YulIdentifier","src":"4307:6:81"},"nativeSrc":"4307:15:81","nodeType":"YulFunctionCall","src":"4307:15:81"},"nativeSrc":"4307:15:81","nodeType":"YulExpressionStatement","src":"4307:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4338:1:81","nodeType":"YulLiteral","src":"4338:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4341:4:81","nodeType":"YulLiteral","src":"4341:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4331:6:81","nodeType":"YulIdentifier","src":"4331:6:81"},"nativeSrc":"4331:15:81","nodeType":"YulFunctionCall","src":"4331:15:81"},"nativeSrc":"4331:15:81","nodeType":"YulExpressionStatement","src":"4331:15:81"}]},"name":"panic_error_0x21","nativeSrc":"4225:127:81","nodeType":"YulFunctionDefinition","src":"4225:127:81"},{"body":{"nativeSrc":"4411:186:81","nodeType":"YulBlock","src":"4411:186:81","statements":[{"body":{"nativeSrc":"4453:111:81","nodeType":"YulBlock","src":"4453:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4474:1:81","nodeType":"YulLiteral","src":"4474:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4481:3:81","nodeType":"YulLiteral","src":"4481:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"4486:10:81","nodeType":"YulLiteral","src":"4486:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4477:3:81","nodeType":"YulIdentifier","src":"4477:3:81"},"nativeSrc":"4477:20:81","nodeType":"YulFunctionCall","src":"4477:20:81"}],"functionName":{"name":"mstore","nativeSrc":"4467:6:81","nodeType":"YulIdentifier","src":"4467:6:81"},"nativeSrc":"4467:31:81","nodeType":"YulFunctionCall","src":"4467:31:81"},"nativeSrc":"4467:31:81","nodeType":"YulExpressionStatement","src":"4467:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4518:1:81","nodeType":"YulLiteral","src":"4518:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"4521:4:81","nodeType":"YulLiteral","src":"4521:4:81","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"4511:6:81","nodeType":"YulIdentifier","src":"4511:6:81"},"nativeSrc":"4511:15:81","nodeType":"YulFunctionCall","src":"4511:15:81"},"nativeSrc":"4511:15:81","nodeType":"YulExpressionStatement","src":"4511:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4546:1:81","nodeType":"YulLiteral","src":"4546:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4549:4:81","nodeType":"YulLiteral","src":"4549:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4539:6:81","nodeType":"YulIdentifier","src":"4539:6:81"},"nativeSrc":"4539:15:81","nodeType":"YulFunctionCall","src":"4539:15:81"},"nativeSrc":"4539:15:81","nodeType":"YulExpressionStatement","src":"4539:15:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4434:5:81","nodeType":"YulIdentifier","src":"4434:5:81"},{"kind":"number","nativeSrc":"4441:1:81","nodeType":"YulLiteral","src":"4441:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"4431:2:81","nodeType":"YulIdentifier","src":"4431:2:81"},"nativeSrc":"4431:12:81","nodeType":"YulFunctionCall","src":"4431:12:81"}],"functionName":{"name":"iszero","nativeSrc":"4424:6:81","nodeType":"YulIdentifier","src":"4424:6:81"},"nativeSrc":"4424:20:81","nodeType":"YulFunctionCall","src":"4424:20:81"},"nativeSrc":"4421:143:81","nodeType":"YulIf","src":"4421:143:81"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"4580:3:81","nodeType":"YulIdentifier","src":"4580:3:81"},{"name":"value","nativeSrc":"4585:5:81","nodeType":"YulIdentifier","src":"4585:5:81"}],"functionName":{"name":"mstore","nativeSrc":"4573:6:81","nodeType":"YulIdentifier","src":"4573:6:81"},"nativeSrc":"4573:18:81","nodeType":"YulFunctionCall","src":"4573:18:81"},"nativeSrc":"4573:18:81","nodeType":"YulExpressionStatement","src":"4573:18:81"}]},"name":"abi_encode_enum_TargetStatus","nativeSrc":"4357:240:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4395:5:81","nodeType":"YulTypedName","src":"4395:5:81","type":""},{"name":"pos","nativeSrc":"4402:3:81","nodeType":"YulTypedName","src":"4402:3:81","type":""}],"src":"4357:240:81"},{"body":{"nativeSrc":"4719:98:81","nodeType":"YulBlock","src":"4719:98:81","statements":[{"nativeSrc":"4729:26:81","nodeType":"YulAssignment","src":"4729:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"4741:9:81","nodeType":"YulIdentifier","src":"4741:9:81"},{"kind":"number","nativeSrc":"4752:2:81","nodeType":"YulLiteral","src":"4752:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4737:3:81","nodeType":"YulIdentifier","src":"4737:3:81"},"nativeSrc":"4737:18:81","nodeType":"YulFunctionCall","src":"4737:18:81"},"variableNames":[{"name":"tail","nativeSrc":"4729:4:81","nodeType":"YulIdentifier","src":"4729:4:81"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"4793:6:81","nodeType":"YulIdentifier","src":"4793:6:81"},{"name":"headStart","nativeSrc":"4801:9:81","nodeType":"YulIdentifier","src":"4801:9:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"4764:28:81","nodeType":"YulIdentifier","src":"4764:28:81"},"nativeSrc":"4764:47:81","nodeType":"YulFunctionCall","src":"4764:47:81"},"nativeSrc":"4764:47:81","nodeType":"YulExpressionStatement","src":"4764:47:81"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$22999__to_t_uint8__fromStack_reversed","nativeSrc":"4602:215:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4688:9:81","nodeType":"YulTypedName","src":"4688:9:81","type":""},{"name":"value0","nativeSrc":"4699:6:81","nodeType":"YulTypedName","src":"4699:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4710:4:81","nodeType":"YulTypedName","src":"4710:4:81","type":""}],"src":"4602:215:81"},{"body":{"nativeSrc":"4909:290:81","nodeType":"YulBlock","src":"4909:290:81","statements":[{"body":{"nativeSrc":"4955:16:81","nodeType":"YulBlock","src":"4955:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4964:1:81","nodeType":"YulLiteral","src":"4964:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"4967:1:81","nodeType":"YulLiteral","src":"4967:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4957:6:81","nodeType":"YulIdentifier","src":"4957:6:81"},"nativeSrc":"4957:12:81","nodeType":"YulFunctionCall","src":"4957:12:81"},"nativeSrc":"4957:12:81","nodeType":"YulExpressionStatement","src":"4957:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4930:7:81","nodeType":"YulIdentifier","src":"4930:7:81"},{"name":"headStart","nativeSrc":"4939:9:81","nodeType":"YulIdentifier","src":"4939:9:81"}],"functionName":{"name":"sub","nativeSrc":"4926:3:81","nodeType":"YulIdentifier","src":"4926:3:81"},"nativeSrc":"4926:23:81","nodeType":"YulFunctionCall","src":"4926:23:81"},{"kind":"number","nativeSrc":"4951:2:81","nodeType":"YulLiteral","src":"4951:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4922:3:81","nodeType":"YulIdentifier","src":"4922:3:81"},"nativeSrc":"4922:32:81","nodeType":"YulFunctionCall","src":"4922:32:81"},"nativeSrc":"4919:52:81","nodeType":"YulIf","src":"4919:52:81"},{"nativeSrc":"4980:36:81","nodeType":"YulVariableDeclaration","src":"4980:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5006:9:81","nodeType":"YulIdentifier","src":"5006:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"4993:12:81","nodeType":"YulIdentifier","src":"4993:12:81"},"nativeSrc":"4993:23:81","nodeType":"YulFunctionCall","src":"4993:23:81"},"variables":[{"name":"value","nativeSrc":"4984:5:81","nodeType":"YulTypedName","src":"4984:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5060:5:81","nodeType":"YulIdentifier","src":"5060:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5025:34:81","nodeType":"YulIdentifier","src":"5025:34:81"},"nativeSrc":"5025:41:81","nodeType":"YulFunctionCall","src":"5025:41:81"},"nativeSrc":"5025:41:81","nodeType":"YulExpressionStatement","src":"5025:41:81"},{"nativeSrc":"5075:15:81","nodeType":"YulAssignment","src":"5075:15:81","value":{"name":"value","nativeSrc":"5085:5:81","nodeType":"YulIdentifier","src":"5085:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5075:6:81","nodeType":"YulIdentifier","src":"5075:6:81"}]},{"nativeSrc":"5099:16:81","nodeType":"YulVariableDeclaration","src":"5099:16:81","value":{"kind":"number","nativeSrc":"5114:1:81","nodeType":"YulLiteral","src":"5114:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5103:7:81","nodeType":"YulTypedName","src":"5103:7:81","type":""}]},{"nativeSrc":"5124:43:81","nodeType":"YulAssignment","src":"5124:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5152:9:81","nodeType":"YulIdentifier","src":"5152:9:81"},{"kind":"number","nativeSrc":"5163:2:81","nodeType":"YulLiteral","src":"5163:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5148:3:81","nodeType":"YulIdentifier","src":"5148:3:81"},"nativeSrc":"5148:18:81","nodeType":"YulFunctionCall","src":"5148:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"5135:12:81","nodeType":"YulIdentifier","src":"5135:12:81"},"nativeSrc":"5135:32:81","nodeType":"YulFunctionCall","src":"5135:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"5124:7:81","nodeType":"YulIdentifier","src":"5124:7:81"}]},{"nativeSrc":"5176:17:81","nodeType":"YulAssignment","src":"5176:17:81","value":{"name":"value_1","nativeSrc":"5186:7:81","nodeType":"YulIdentifier","src":"5186:7:81"},"variableNames":[{"name":"value1","nativeSrc":"5176:6:81","nodeType":"YulIdentifier","src":"5176:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"4822:377:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4867:9:81","nodeType":"YulTypedName","src":"4867:9:81","type":""},{"name":"dataEnd","nativeSrc":"4878:7:81","nodeType":"YulTypedName","src":"4878:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4890:6:81","nodeType":"YulTypedName","src":"4890:6:81","type":""},{"name":"value1","nativeSrc":"4898:6:81","nodeType":"YulTypedName","src":"4898:6:81","type":""}],"src":"4822:377:81"},{"body":{"nativeSrc":"5276:275:81","nodeType":"YulBlock","src":"5276:275:81","statements":[{"body":{"nativeSrc":"5325:16:81","nodeType":"YulBlock","src":"5325:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5334:1:81","nodeType":"YulLiteral","src":"5334:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5337:1:81","nodeType":"YulLiteral","src":"5337:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5327:6:81","nodeType":"YulIdentifier","src":"5327:6:81"},"nativeSrc":"5327:12:81","nodeType":"YulFunctionCall","src":"5327:12:81"},"nativeSrc":"5327:12:81","nodeType":"YulExpressionStatement","src":"5327:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"5304:6:81","nodeType":"YulIdentifier","src":"5304:6:81"},{"kind":"number","nativeSrc":"5312:4:81","nodeType":"YulLiteral","src":"5312:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"5300:3:81","nodeType":"YulIdentifier","src":"5300:3:81"},"nativeSrc":"5300:17:81","nodeType":"YulFunctionCall","src":"5300:17:81"},{"name":"end","nativeSrc":"5319:3:81","nodeType":"YulIdentifier","src":"5319:3:81"}],"functionName":{"name":"slt","nativeSrc":"5296:3:81","nodeType":"YulIdentifier","src":"5296:3:81"},"nativeSrc":"5296:27:81","nodeType":"YulFunctionCall","src":"5296:27:81"}],"functionName":{"name":"iszero","nativeSrc":"5289:6:81","nodeType":"YulIdentifier","src":"5289:6:81"},"nativeSrc":"5289:35:81","nodeType":"YulFunctionCall","src":"5289:35:81"},"nativeSrc":"5286:55:81","nodeType":"YulIf","src":"5286:55:81"},{"nativeSrc":"5350:30:81","nodeType":"YulAssignment","src":"5350:30:81","value":{"arguments":[{"name":"offset","nativeSrc":"5373:6:81","nodeType":"YulIdentifier","src":"5373:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"5360:12:81","nodeType":"YulIdentifier","src":"5360:12:81"},"nativeSrc":"5360:20:81","nodeType":"YulFunctionCall","src":"5360:20:81"},"variableNames":[{"name":"length","nativeSrc":"5350:6:81","nodeType":"YulIdentifier","src":"5350:6:81"}]},{"body":{"nativeSrc":"5423:16:81","nodeType":"YulBlock","src":"5423:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5432:1:81","nodeType":"YulLiteral","src":"5432:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5435:1:81","nodeType":"YulLiteral","src":"5435:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5425:6:81","nodeType":"YulIdentifier","src":"5425:6:81"},"nativeSrc":"5425:12:81","nodeType":"YulFunctionCall","src":"5425:12:81"},"nativeSrc":"5425:12:81","nodeType":"YulExpressionStatement","src":"5425:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5395:6:81","nodeType":"YulIdentifier","src":"5395:6:81"},{"kind":"number","nativeSrc":"5403:18:81","nodeType":"YulLiteral","src":"5403:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5392:2:81","nodeType":"YulIdentifier","src":"5392:2:81"},"nativeSrc":"5392:30:81","nodeType":"YulFunctionCall","src":"5392:30:81"},"nativeSrc":"5389:50:81","nodeType":"YulIf","src":"5389:50:81"},{"nativeSrc":"5448:29:81","nodeType":"YulAssignment","src":"5448:29:81","value":{"arguments":[{"name":"offset","nativeSrc":"5464:6:81","nodeType":"YulIdentifier","src":"5464:6:81"},{"kind":"number","nativeSrc":"5472:4:81","nodeType":"YulLiteral","src":"5472:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5460:3:81","nodeType":"YulIdentifier","src":"5460:3:81"},"nativeSrc":"5460:17:81","nodeType":"YulFunctionCall","src":"5460:17:81"},"variableNames":[{"name":"arrayPos","nativeSrc":"5448:8:81","nodeType":"YulIdentifier","src":"5448:8:81"}]},{"body":{"nativeSrc":"5529:16:81","nodeType":"YulBlock","src":"5529:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5538:1:81","nodeType":"YulLiteral","src":"5538:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5541:1:81","nodeType":"YulLiteral","src":"5541:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5531:6:81","nodeType":"YulIdentifier","src":"5531:6:81"},"nativeSrc":"5531:12:81","nodeType":"YulFunctionCall","src":"5531:12:81"},"nativeSrc":"5531:12:81","nodeType":"YulExpressionStatement","src":"5531:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"5500:6:81","nodeType":"YulIdentifier","src":"5500:6:81"},{"name":"length","nativeSrc":"5508:6:81","nodeType":"YulIdentifier","src":"5508:6:81"}],"functionName":{"name":"add","nativeSrc":"5496:3:81","nodeType":"YulIdentifier","src":"5496:3:81"},"nativeSrc":"5496:19:81","nodeType":"YulFunctionCall","src":"5496:19:81"},{"kind":"number","nativeSrc":"5517:4:81","nodeType":"YulLiteral","src":"5517:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5492:3:81","nodeType":"YulIdentifier","src":"5492:3:81"},"nativeSrc":"5492:30:81","nodeType":"YulFunctionCall","src":"5492:30:81"},{"name":"end","nativeSrc":"5524:3:81","nodeType":"YulIdentifier","src":"5524:3:81"}],"functionName":{"name":"gt","nativeSrc":"5489:2:81","nodeType":"YulIdentifier","src":"5489:2:81"},"nativeSrc":"5489:39:81","nodeType":"YulFunctionCall","src":"5489:39:81"},"nativeSrc":"5486:59:81","nodeType":"YulIf","src":"5486:59:81"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"5204:347:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5239:6:81","nodeType":"YulTypedName","src":"5239:6:81","type":""},{"name":"end","nativeSrc":"5247:3:81","nodeType":"YulTypedName","src":"5247:3:81","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"5255:8:81","nodeType":"YulTypedName","src":"5255:8:81","type":""},{"name":"length","nativeSrc":"5265:6:81","nodeType":"YulTypedName","src":"5265:6:81","type":""}],"src":"5204:347:81"},{"body":{"nativeSrc":"5696:686:81","nodeType":"YulBlock","src":"5696:686:81","statements":[{"body":{"nativeSrc":"5743:16:81","nodeType":"YulBlock","src":"5743:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5752:1:81","nodeType":"YulLiteral","src":"5752:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"5755:1:81","nodeType":"YulLiteral","src":"5755:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5745:6:81","nodeType":"YulIdentifier","src":"5745:6:81"},"nativeSrc":"5745:12:81","nodeType":"YulFunctionCall","src":"5745:12:81"},"nativeSrc":"5745:12:81","nodeType":"YulExpressionStatement","src":"5745:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5717:7:81","nodeType":"YulIdentifier","src":"5717:7:81"},{"name":"headStart","nativeSrc":"5726:9:81","nodeType":"YulIdentifier","src":"5726:9:81"}],"functionName":{"name":"sub","nativeSrc":"5713:3:81","nodeType":"YulIdentifier","src":"5713:3:81"},"nativeSrc":"5713:23:81","nodeType":"YulFunctionCall","src":"5713:23:81"},{"kind":"number","nativeSrc":"5738:3:81","nodeType":"YulLiteral","src":"5738:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"5709:3:81","nodeType":"YulIdentifier","src":"5709:3:81"},"nativeSrc":"5709:33:81","nodeType":"YulFunctionCall","src":"5709:33:81"},"nativeSrc":"5706:53:81","nodeType":"YulIf","src":"5706:53:81"},{"nativeSrc":"5768:36:81","nodeType":"YulVariableDeclaration","src":"5768:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"5794:9:81","nodeType":"YulIdentifier","src":"5794:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"5781:12:81","nodeType":"YulIdentifier","src":"5781:12:81"},"nativeSrc":"5781:23:81","nodeType":"YulFunctionCall","src":"5781:23:81"},"variables":[{"name":"value","nativeSrc":"5772:5:81","nodeType":"YulTypedName","src":"5772:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5848:5:81","nodeType":"YulIdentifier","src":"5848:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5813:34:81","nodeType":"YulIdentifier","src":"5813:34:81"},"nativeSrc":"5813:41:81","nodeType":"YulFunctionCall","src":"5813:41:81"},"nativeSrc":"5813:41:81","nodeType":"YulExpressionStatement","src":"5813:41:81"},{"nativeSrc":"5863:15:81","nodeType":"YulAssignment","src":"5863:15:81","value":{"name":"value","nativeSrc":"5873:5:81","nodeType":"YulIdentifier","src":"5873:5:81"},"variableNames":[{"name":"value0","nativeSrc":"5863:6:81","nodeType":"YulIdentifier","src":"5863:6:81"}]},{"nativeSrc":"5887:47:81","nodeType":"YulVariableDeclaration","src":"5887:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5919:9:81","nodeType":"YulIdentifier","src":"5919:9:81"},{"kind":"number","nativeSrc":"5930:2:81","nodeType":"YulLiteral","src":"5930:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5915:3:81","nodeType":"YulIdentifier","src":"5915:3:81"},"nativeSrc":"5915:18:81","nodeType":"YulFunctionCall","src":"5915:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"5902:12:81","nodeType":"YulIdentifier","src":"5902:12:81"},"nativeSrc":"5902:32:81","nodeType":"YulFunctionCall","src":"5902:32:81"},"variables":[{"name":"value_1","nativeSrc":"5891:7:81","nodeType":"YulTypedName","src":"5891:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5978:7:81","nodeType":"YulIdentifier","src":"5978:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5943:34:81","nodeType":"YulIdentifier","src":"5943:34:81"},"nativeSrc":"5943:43:81","nodeType":"YulFunctionCall","src":"5943:43:81"},"nativeSrc":"5943:43:81","nodeType":"YulExpressionStatement","src":"5943:43:81"},{"nativeSrc":"5995:17:81","nodeType":"YulAssignment","src":"5995:17:81","value":{"name":"value_1","nativeSrc":"6005:7:81","nodeType":"YulIdentifier","src":"6005:7:81"},"variableNames":[{"name":"value1","nativeSrc":"5995:6:81","nodeType":"YulIdentifier","src":"5995:6:81"}]},{"nativeSrc":"6021:16:81","nodeType":"YulVariableDeclaration","src":"6021:16:81","value":{"kind":"number","nativeSrc":"6036:1:81","nodeType":"YulLiteral","src":"6036:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"6025:7:81","nodeType":"YulTypedName","src":"6025:7:81","type":""}]},{"nativeSrc":"6046:43:81","nodeType":"YulAssignment","src":"6046:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6074:9:81","nodeType":"YulIdentifier","src":"6074:9:81"},{"kind":"number","nativeSrc":"6085:2:81","nodeType":"YulLiteral","src":"6085:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6070:3:81","nodeType":"YulIdentifier","src":"6070:3:81"},"nativeSrc":"6070:18:81","nodeType":"YulFunctionCall","src":"6070:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6057:12:81","nodeType":"YulIdentifier","src":"6057:12:81"},"nativeSrc":"6057:32:81","nodeType":"YulFunctionCall","src":"6057:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"6046:7:81","nodeType":"YulIdentifier","src":"6046:7:81"}]},{"nativeSrc":"6098:17:81","nodeType":"YulAssignment","src":"6098:17:81","value":{"name":"value_2","nativeSrc":"6108:7:81","nodeType":"YulIdentifier","src":"6108:7:81"},"variableNames":[{"name":"value2","nativeSrc":"6098:6:81","nodeType":"YulIdentifier","src":"6098:6:81"}]},{"nativeSrc":"6124:46:81","nodeType":"YulVariableDeclaration","src":"6124:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6155:9:81","nodeType":"YulIdentifier","src":"6155:9:81"},{"kind":"number","nativeSrc":"6166:2:81","nodeType":"YulLiteral","src":"6166:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6151:3:81","nodeType":"YulIdentifier","src":"6151:3:81"},"nativeSrc":"6151:18:81","nodeType":"YulFunctionCall","src":"6151:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"6138:12:81","nodeType":"YulIdentifier","src":"6138:12:81"},"nativeSrc":"6138:32:81","nodeType":"YulFunctionCall","src":"6138:32:81"},"variables":[{"name":"offset","nativeSrc":"6128:6:81","nodeType":"YulTypedName","src":"6128:6:81","type":""}]},{"body":{"nativeSrc":"6213:16:81","nodeType":"YulBlock","src":"6213:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6222:1:81","nodeType":"YulLiteral","src":"6222:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6225:1:81","nodeType":"YulLiteral","src":"6225:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6215:6:81","nodeType":"YulIdentifier","src":"6215:6:81"},"nativeSrc":"6215:12:81","nodeType":"YulFunctionCall","src":"6215:12:81"},"nativeSrc":"6215:12:81","nodeType":"YulExpressionStatement","src":"6215:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6185:6:81","nodeType":"YulIdentifier","src":"6185:6:81"},{"kind":"number","nativeSrc":"6193:18:81","nodeType":"YulLiteral","src":"6193:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6182:2:81","nodeType":"YulIdentifier","src":"6182:2:81"},"nativeSrc":"6182:30:81","nodeType":"YulFunctionCall","src":"6182:30:81"},"nativeSrc":"6179:50:81","nodeType":"YulIf","src":"6179:50:81"},{"nativeSrc":"6238:84:81","nodeType":"YulVariableDeclaration","src":"6238:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6294:9:81","nodeType":"YulIdentifier","src":"6294:9:81"},{"name":"offset","nativeSrc":"6305:6:81","nodeType":"YulIdentifier","src":"6305:6:81"}],"functionName":{"name":"add","nativeSrc":"6290:3:81","nodeType":"YulIdentifier","src":"6290:3:81"},"nativeSrc":"6290:22:81","nodeType":"YulFunctionCall","src":"6290:22:81"},{"name":"dataEnd","nativeSrc":"6314:7:81","nodeType":"YulIdentifier","src":"6314:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"6264:25:81","nodeType":"YulIdentifier","src":"6264:25:81"},"nativeSrc":"6264:58:81","nodeType":"YulFunctionCall","src":"6264:58:81"},"variables":[{"name":"value3_1","nativeSrc":"6242:8:81","nodeType":"YulTypedName","src":"6242:8:81","type":""},{"name":"value4_1","nativeSrc":"6252:8:81","nodeType":"YulTypedName","src":"6252:8:81","type":""}]},{"nativeSrc":"6331:18:81","nodeType":"YulAssignment","src":"6331:18:81","value":{"name":"value3_1","nativeSrc":"6341:8:81","nodeType":"YulIdentifier","src":"6341:8:81"},"variableNames":[{"name":"value3","nativeSrc":"6331:6:81","nodeType":"YulIdentifier","src":"6331:6:81"}]},{"nativeSrc":"6358:18:81","nodeType":"YulAssignment","src":"6358:18:81","value":{"name":"value4_1","nativeSrc":"6368:8:81","nodeType":"YulIdentifier","src":"6368:8:81"},"variableNames":[{"name":"value4","nativeSrc":"6358:6:81","nodeType":"YulIdentifier","src":"6358:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"5556:826:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5630:9:81","nodeType":"YulTypedName","src":"5630:9:81","type":""},{"name":"dataEnd","nativeSrc":"5641:7:81","nodeType":"YulTypedName","src":"5641:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5653:6:81","nodeType":"YulTypedName","src":"5653:6:81","type":""},{"name":"value1","nativeSrc":"5661:6:81","nodeType":"YulTypedName","src":"5661:6:81","type":""},{"name":"value2","nativeSrc":"5669:6:81","nodeType":"YulTypedName","src":"5669:6:81","type":""},{"name":"value3","nativeSrc":"5677:6:81","nodeType":"YulTypedName","src":"5677:6:81","type":""},{"name":"value4","nativeSrc":"5685:6:81","nodeType":"YulTypedName","src":"5685:6:81","type":""}],"src":"5556:826:81"},{"body":{"nativeSrc":"6486:103:81","nodeType":"YulBlock","src":"6486:103:81","statements":[{"nativeSrc":"6496:26:81","nodeType":"YulAssignment","src":"6496:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6508:9:81","nodeType":"YulIdentifier","src":"6508:9:81"},{"kind":"number","nativeSrc":"6519:2:81","nodeType":"YulLiteral","src":"6519:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6504:3:81","nodeType":"YulIdentifier","src":"6504:3:81"},"nativeSrc":"6504:18:81","nodeType":"YulFunctionCall","src":"6504:18:81"},"variableNames":[{"name":"tail","nativeSrc":"6496:4:81","nodeType":"YulIdentifier","src":"6496:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6538:9:81","nodeType":"YulIdentifier","src":"6538:9:81"},{"arguments":[{"name":"value0","nativeSrc":"6553:6:81","nodeType":"YulIdentifier","src":"6553:6:81"},{"arguments":[{"kind":"number","nativeSrc":"6565:3:81","nodeType":"YulLiteral","src":"6565:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"6570:10:81","nodeType":"YulLiteral","src":"6570:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"6561:3:81","nodeType":"YulIdentifier","src":"6561:3:81"},"nativeSrc":"6561:20:81","nodeType":"YulFunctionCall","src":"6561:20:81"}],"functionName":{"name":"and","nativeSrc":"6549:3:81","nodeType":"YulIdentifier","src":"6549:3:81"},"nativeSrc":"6549:33:81","nodeType":"YulFunctionCall","src":"6549:33:81"}],"functionName":{"name":"mstore","nativeSrc":"6531:6:81","nodeType":"YulIdentifier","src":"6531:6:81"},"nativeSrc":"6531:52:81","nodeType":"YulFunctionCall","src":"6531:52:81"},"nativeSrc":"6531:52:81","nodeType":"YulExpressionStatement","src":"6531:52:81"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"6387:202:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6455:9:81","nodeType":"YulTypedName","src":"6455:9:81","type":""},{"name":"value0","nativeSrc":"6466:6:81","nodeType":"YulTypedName","src":"6466:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6477:4:81","nodeType":"YulTypedName","src":"6477:4:81","type":""}],"src":"6387:202:81"},{"body":{"nativeSrc":"6636:76:81","nodeType":"YulBlock","src":"6636:76:81","statements":[{"body":{"nativeSrc":"6690:16:81","nodeType":"YulBlock","src":"6690:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6699:1:81","nodeType":"YulLiteral","src":"6699:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6702:1:81","nodeType":"YulLiteral","src":"6702:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6692:6:81","nodeType":"YulIdentifier","src":"6692:6:81"},"nativeSrc":"6692:12:81","nodeType":"YulFunctionCall","src":"6692:12:81"},"nativeSrc":"6692:12:81","nodeType":"YulExpressionStatement","src":"6692:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6659:5:81","nodeType":"YulIdentifier","src":"6659:5:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6680:5:81","nodeType":"YulIdentifier","src":"6680:5:81"}],"functionName":{"name":"iszero","nativeSrc":"6673:6:81","nodeType":"YulIdentifier","src":"6673:6:81"},"nativeSrc":"6673:13:81","nodeType":"YulFunctionCall","src":"6673:13:81"}],"functionName":{"name":"iszero","nativeSrc":"6666:6:81","nodeType":"YulIdentifier","src":"6666:6:81"},"nativeSrc":"6666:21:81","nodeType":"YulFunctionCall","src":"6666:21:81"}],"functionName":{"name":"eq","nativeSrc":"6656:2:81","nodeType":"YulIdentifier","src":"6656:2:81"},"nativeSrc":"6656:32:81","nodeType":"YulFunctionCall","src":"6656:32:81"}],"functionName":{"name":"iszero","nativeSrc":"6649:6:81","nodeType":"YulIdentifier","src":"6649:6:81"},"nativeSrc":"6649:40:81","nodeType":"YulFunctionCall","src":"6649:40:81"},"nativeSrc":"6646:60:81","nodeType":"YulIf","src":"6646:60:81"}]},"name":"validator_revert_bool","nativeSrc":"6594:118:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"6625:5:81","nodeType":"YulTypedName","src":"6625:5:81","type":""}],"src":"6594:118:81"},{"body":{"nativeSrc":"6818:308:81","nodeType":"YulBlock","src":"6818:308:81","statements":[{"body":{"nativeSrc":"6864:16:81","nodeType":"YulBlock","src":"6864:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6873:1:81","nodeType":"YulLiteral","src":"6873:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"6876:1:81","nodeType":"YulLiteral","src":"6876:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6866:6:81","nodeType":"YulIdentifier","src":"6866:6:81"},"nativeSrc":"6866:12:81","nodeType":"YulFunctionCall","src":"6866:12:81"},"nativeSrc":"6866:12:81","nodeType":"YulExpressionStatement","src":"6866:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6839:7:81","nodeType":"YulIdentifier","src":"6839:7:81"},{"name":"headStart","nativeSrc":"6848:9:81","nodeType":"YulIdentifier","src":"6848:9:81"}],"functionName":{"name":"sub","nativeSrc":"6835:3:81","nodeType":"YulIdentifier","src":"6835:3:81"},"nativeSrc":"6835:23:81","nodeType":"YulFunctionCall","src":"6835:23:81"},{"kind":"number","nativeSrc":"6860:2:81","nodeType":"YulLiteral","src":"6860:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6831:3:81","nodeType":"YulIdentifier","src":"6831:3:81"},"nativeSrc":"6831:32:81","nodeType":"YulFunctionCall","src":"6831:32:81"},"nativeSrc":"6828:52:81","nodeType":"YulIf","src":"6828:52:81"},{"nativeSrc":"6889:36:81","nodeType":"YulVariableDeclaration","src":"6889:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"6915:9:81","nodeType":"YulIdentifier","src":"6915:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"6902:12:81","nodeType":"YulIdentifier","src":"6902:12:81"},"nativeSrc":"6902:23:81","nodeType":"YulFunctionCall","src":"6902:23:81"},"variables":[{"name":"value","nativeSrc":"6893:5:81","nodeType":"YulTypedName","src":"6893:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6969:5:81","nodeType":"YulIdentifier","src":"6969:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"6934:34:81","nodeType":"YulIdentifier","src":"6934:34:81"},"nativeSrc":"6934:41:81","nodeType":"YulFunctionCall","src":"6934:41:81"},"nativeSrc":"6934:41:81","nodeType":"YulExpressionStatement","src":"6934:41:81"},{"nativeSrc":"6984:15:81","nodeType":"YulAssignment","src":"6984:15:81","value":{"name":"value","nativeSrc":"6994:5:81","nodeType":"YulIdentifier","src":"6994:5:81"},"variableNames":[{"name":"value0","nativeSrc":"6984:6:81","nodeType":"YulIdentifier","src":"6984:6:81"}]},{"nativeSrc":"7008:47:81","nodeType":"YulVariableDeclaration","src":"7008:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7040:9:81","nodeType":"YulIdentifier","src":"7040:9:81"},{"kind":"number","nativeSrc":"7051:2:81","nodeType":"YulLiteral","src":"7051:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7036:3:81","nodeType":"YulIdentifier","src":"7036:3:81"},"nativeSrc":"7036:18:81","nodeType":"YulFunctionCall","src":"7036:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7023:12:81","nodeType":"YulIdentifier","src":"7023:12:81"},"nativeSrc":"7023:32:81","nodeType":"YulFunctionCall","src":"7023:32:81"},"variables":[{"name":"value_1","nativeSrc":"7012:7:81","nodeType":"YulTypedName","src":"7012:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7086:7:81","nodeType":"YulIdentifier","src":"7086:7:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"7064:21:81","nodeType":"YulIdentifier","src":"7064:21:81"},"nativeSrc":"7064:30:81","nodeType":"YulFunctionCall","src":"7064:30:81"},"nativeSrc":"7064:30:81","nodeType":"YulExpressionStatement","src":"7064:30:81"},{"nativeSrc":"7103:17:81","nodeType":"YulAssignment","src":"7103:17:81","value":{"name":"value_1","nativeSrc":"7113:7:81","nodeType":"YulIdentifier","src":"7113:7:81"},"variableNames":[{"name":"value1","nativeSrc":"7103:6:81","nodeType":"YulIdentifier","src":"7103:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$9796t_bool","nativeSrc":"6717:409:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6776:9:81","nodeType":"YulTypedName","src":"6776:9:81","type":""},{"name":"dataEnd","nativeSrc":"6787:7:81","nodeType":"YulTypedName","src":"6787:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6799:6:81","nodeType":"YulTypedName","src":"6799:6:81","type":""},{"name":"value1","nativeSrc":"6807:6:81","nodeType":"YulTypedName","src":"6807:6:81","type":""}],"src":"6717:409:81"},{"body":{"nativeSrc":"7267:672:81","nodeType":"YulBlock","src":"7267:672:81","statements":[{"body":{"nativeSrc":"7314:16:81","nodeType":"YulBlock","src":"7314:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7323:1:81","nodeType":"YulLiteral","src":"7323:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"7326:1:81","nodeType":"YulLiteral","src":"7326:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7316:6:81","nodeType":"YulIdentifier","src":"7316:6:81"},"nativeSrc":"7316:12:81","nodeType":"YulFunctionCall","src":"7316:12:81"},"nativeSrc":"7316:12:81","nodeType":"YulExpressionStatement","src":"7316:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7288:7:81","nodeType":"YulIdentifier","src":"7288:7:81"},{"name":"headStart","nativeSrc":"7297:9:81","nodeType":"YulIdentifier","src":"7297:9:81"}],"functionName":{"name":"sub","nativeSrc":"7284:3:81","nodeType":"YulIdentifier","src":"7284:3:81"},"nativeSrc":"7284:23:81","nodeType":"YulFunctionCall","src":"7284:23:81"},{"kind":"number","nativeSrc":"7309:3:81","nodeType":"YulLiteral","src":"7309:3:81","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"7280:3:81","nodeType":"YulIdentifier","src":"7280:3:81"},"nativeSrc":"7280:33:81","nodeType":"YulFunctionCall","src":"7280:33:81"},"nativeSrc":"7277:53:81","nodeType":"YulIf","src":"7277:53:81"},{"nativeSrc":"7339:36:81","nodeType":"YulVariableDeclaration","src":"7339:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"7365:9:81","nodeType":"YulIdentifier","src":"7365:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"7352:12:81","nodeType":"YulIdentifier","src":"7352:12:81"},"nativeSrc":"7352:23:81","nodeType":"YulFunctionCall","src":"7352:23:81"},"variables":[{"name":"value","nativeSrc":"7343:5:81","nodeType":"YulTypedName","src":"7343:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7419:5:81","nodeType":"YulIdentifier","src":"7419:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7384:34:81","nodeType":"YulIdentifier","src":"7384:34:81"},"nativeSrc":"7384:41:81","nodeType":"YulFunctionCall","src":"7384:41:81"},"nativeSrc":"7384:41:81","nodeType":"YulExpressionStatement","src":"7384:41:81"},{"nativeSrc":"7434:15:81","nodeType":"YulAssignment","src":"7434:15:81","value":{"name":"value","nativeSrc":"7444:5:81","nodeType":"YulIdentifier","src":"7444:5:81"},"variableNames":[{"name":"value0","nativeSrc":"7434:6:81","nodeType":"YulIdentifier","src":"7434:6:81"}]},{"nativeSrc":"7458:47:81","nodeType":"YulVariableDeclaration","src":"7458:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7490:9:81","nodeType":"YulIdentifier","src":"7490:9:81"},{"kind":"number","nativeSrc":"7501:2:81","nodeType":"YulLiteral","src":"7501:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7486:3:81","nodeType":"YulIdentifier","src":"7486:3:81"},"nativeSrc":"7486:18:81","nodeType":"YulFunctionCall","src":"7486:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7473:12:81","nodeType":"YulIdentifier","src":"7473:12:81"},"nativeSrc":"7473:32:81","nodeType":"YulFunctionCall","src":"7473:32:81"},"variables":[{"name":"value_1","nativeSrc":"7462:7:81","nodeType":"YulTypedName","src":"7462:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7538:7:81","nodeType":"YulIdentifier","src":"7538:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"7514:23:81","nodeType":"YulIdentifier","src":"7514:23:81"},"nativeSrc":"7514:32:81","nodeType":"YulFunctionCall","src":"7514:32:81"},"nativeSrc":"7514:32:81","nodeType":"YulExpressionStatement","src":"7514:32:81"},{"nativeSrc":"7555:17:81","nodeType":"YulAssignment","src":"7555:17:81","value":{"name":"value_1","nativeSrc":"7565:7:81","nodeType":"YulIdentifier","src":"7565:7:81"},"variableNames":[{"name":"value1","nativeSrc":"7555:6:81","nodeType":"YulIdentifier","src":"7555:6:81"}]},{"nativeSrc":"7581:47:81","nodeType":"YulVariableDeclaration","src":"7581:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7613:9:81","nodeType":"YulIdentifier","src":"7613:9:81"},{"kind":"number","nativeSrc":"7624:2:81","nodeType":"YulLiteral","src":"7624:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7609:3:81","nodeType":"YulIdentifier","src":"7609:3:81"},"nativeSrc":"7609:18:81","nodeType":"YulFunctionCall","src":"7609:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7596:12:81","nodeType":"YulIdentifier","src":"7596:12:81"},"nativeSrc":"7596:32:81","nodeType":"YulFunctionCall","src":"7596:32:81"},"variables":[{"name":"value_2","nativeSrc":"7585:7:81","nodeType":"YulTypedName","src":"7585:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"7661:7:81","nodeType":"YulIdentifier","src":"7661:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"7637:23:81","nodeType":"YulIdentifier","src":"7637:23:81"},"nativeSrc":"7637:32:81","nodeType":"YulFunctionCall","src":"7637:32:81"},"nativeSrc":"7637:32:81","nodeType":"YulExpressionStatement","src":"7637:32:81"},{"nativeSrc":"7678:17:81","nodeType":"YulAssignment","src":"7678:17:81","value":{"name":"value_2","nativeSrc":"7688:7:81","nodeType":"YulIdentifier","src":"7688:7:81"},"variableNames":[{"name":"value2","nativeSrc":"7678:6:81","nodeType":"YulIdentifier","src":"7678:6:81"}]},{"nativeSrc":"7704:16:81","nodeType":"YulVariableDeclaration","src":"7704:16:81","value":{"kind":"number","nativeSrc":"7719:1:81","nodeType":"YulLiteral","src":"7719:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"7708:7:81","nodeType":"YulTypedName","src":"7708:7:81","type":""}]},{"nativeSrc":"7729:43:81","nodeType":"YulAssignment","src":"7729:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7757:9:81","nodeType":"YulIdentifier","src":"7757:9:81"},{"kind":"number","nativeSrc":"7768:2:81","nodeType":"YulLiteral","src":"7768:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7753:3:81","nodeType":"YulIdentifier","src":"7753:3:81"},"nativeSrc":"7753:18:81","nodeType":"YulFunctionCall","src":"7753:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"7740:12:81","nodeType":"YulIdentifier","src":"7740:12:81"},"nativeSrc":"7740:32:81","nodeType":"YulFunctionCall","src":"7740:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"7729:7:81","nodeType":"YulIdentifier","src":"7729:7:81"}]},{"nativeSrc":"7781:17:81","nodeType":"YulAssignment","src":"7781:17:81","value":{"name":"value_3","nativeSrc":"7791:7:81","nodeType":"YulIdentifier","src":"7791:7:81"},"variableNames":[{"name":"value3","nativeSrc":"7781:6:81","nodeType":"YulIdentifier","src":"7781:6:81"}]},{"nativeSrc":"7807:48:81","nodeType":"YulVariableDeclaration","src":"7807:48:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7839:9:81","nodeType":"YulIdentifier","src":"7839:9:81"},{"kind":"number","nativeSrc":"7850:3:81","nodeType":"YulLiteral","src":"7850:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7835:3:81","nodeType":"YulIdentifier","src":"7835:3:81"},"nativeSrc":"7835:19:81","nodeType":"YulFunctionCall","src":"7835:19:81"}],"functionName":{"name":"calldataload","nativeSrc":"7822:12:81","nodeType":"YulIdentifier","src":"7822:12:81"},"nativeSrc":"7822:33:81","nodeType":"YulFunctionCall","src":"7822:33:81"},"variables":[{"name":"value_4","nativeSrc":"7811:7:81","nodeType":"YulTypedName","src":"7811:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"7899:7:81","nodeType":"YulIdentifier","src":"7899:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7864:34:81","nodeType":"YulIdentifier","src":"7864:34:81"},"nativeSrc":"7864:43:81","nodeType":"YulFunctionCall","src":"7864:43:81"},"nativeSrc":"7864:43:81","nodeType":"YulExpressionStatement","src":"7864:43:81"},{"nativeSrc":"7916:17:81","nodeType":"YulAssignment","src":"7916:17:81","value":{"name":"value_4","nativeSrc":"7926:7:81","nodeType":"YulIdentifier","src":"7926:7:81"},"variableNames":[{"name":"value4","nativeSrc":"7916:6:81","nodeType":"YulIdentifier","src":"7916:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address","nativeSrc":"7131:808:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7201:9:81","nodeType":"YulTypedName","src":"7201:9:81","type":""},{"name":"dataEnd","nativeSrc":"7212:7:81","nodeType":"YulTypedName","src":"7212:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7224:6:81","nodeType":"YulTypedName","src":"7224:6:81","type":""},{"name":"value1","nativeSrc":"7232:6:81","nodeType":"YulTypedName","src":"7232:6:81","type":""},{"name":"value2","nativeSrc":"7240:6:81","nodeType":"YulTypedName","src":"7240:6:81","type":""},{"name":"value3","nativeSrc":"7248:6:81","nodeType":"YulTypedName","src":"7248:6:81","type":""},{"name":"value4","nativeSrc":"7256:6:81","nodeType":"YulTypedName","src":"7256:6:81","type":""}],"src":"7131:808:81"},{"body":{"nativeSrc":"8048:424:81","nodeType":"YulBlock","src":"8048:424:81","statements":[{"body":{"nativeSrc":"8094:16:81","nodeType":"YulBlock","src":"8094:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8103:1:81","nodeType":"YulLiteral","src":"8103:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8106:1:81","nodeType":"YulLiteral","src":"8106:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8096:6:81","nodeType":"YulIdentifier","src":"8096:6:81"},"nativeSrc":"8096:12:81","nodeType":"YulFunctionCall","src":"8096:12:81"},"nativeSrc":"8096:12:81","nodeType":"YulExpressionStatement","src":"8096:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8069:7:81","nodeType":"YulIdentifier","src":"8069:7:81"},{"name":"headStart","nativeSrc":"8078:9:81","nodeType":"YulIdentifier","src":"8078:9:81"}],"functionName":{"name":"sub","nativeSrc":"8065:3:81","nodeType":"YulIdentifier","src":"8065:3:81"},"nativeSrc":"8065:23:81","nodeType":"YulFunctionCall","src":"8065:23:81"},{"kind":"number","nativeSrc":"8090:2:81","nodeType":"YulLiteral","src":"8090:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"8061:3:81","nodeType":"YulIdentifier","src":"8061:3:81"},"nativeSrc":"8061:32:81","nodeType":"YulFunctionCall","src":"8061:32:81"},"nativeSrc":"8058:52:81","nodeType":"YulIf","src":"8058:52:81"},{"nativeSrc":"8119:36:81","nodeType":"YulVariableDeclaration","src":"8119:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8145:9:81","nodeType":"YulIdentifier","src":"8145:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"8132:12:81","nodeType":"YulIdentifier","src":"8132:12:81"},"nativeSrc":"8132:23:81","nodeType":"YulFunctionCall","src":"8132:23:81"},"variables":[{"name":"value","nativeSrc":"8123:5:81","nodeType":"YulTypedName","src":"8123:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8199:5:81","nodeType":"YulIdentifier","src":"8199:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8164:34:81","nodeType":"YulIdentifier","src":"8164:34:81"},"nativeSrc":"8164:41:81","nodeType":"YulFunctionCall","src":"8164:41:81"},"nativeSrc":"8164:41:81","nodeType":"YulExpressionStatement","src":"8164:41:81"},{"nativeSrc":"8214:15:81","nodeType":"YulAssignment","src":"8214:15:81","value":{"name":"value","nativeSrc":"8224:5:81","nodeType":"YulIdentifier","src":"8224:5:81"},"variableNames":[{"name":"value0","nativeSrc":"8214:6:81","nodeType":"YulIdentifier","src":"8214:6:81"}]},{"nativeSrc":"8238:47:81","nodeType":"YulVariableDeclaration","src":"8238:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8270:9:81","nodeType":"YulIdentifier","src":"8270:9:81"},{"kind":"number","nativeSrc":"8281:2:81","nodeType":"YulLiteral","src":"8281:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8266:3:81","nodeType":"YulIdentifier","src":"8266:3:81"},"nativeSrc":"8266:18:81","nodeType":"YulFunctionCall","src":"8266:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"8253:12:81","nodeType":"YulIdentifier","src":"8253:12:81"},"nativeSrc":"8253:32:81","nodeType":"YulFunctionCall","src":"8253:32:81"},"variables":[{"name":"value_1","nativeSrc":"8242:7:81","nodeType":"YulTypedName","src":"8242:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8329:7:81","nodeType":"YulIdentifier","src":"8329:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8294:34:81","nodeType":"YulIdentifier","src":"8294:34:81"},"nativeSrc":"8294:43:81","nodeType":"YulFunctionCall","src":"8294:43:81"},"nativeSrc":"8294:43:81","nodeType":"YulExpressionStatement","src":"8294:43:81"},{"nativeSrc":"8346:17:81","nodeType":"YulAssignment","src":"8346:17:81","value":{"name":"value_1","nativeSrc":"8356:7:81","nodeType":"YulIdentifier","src":"8356:7:81"},"variableNames":[{"name":"value1","nativeSrc":"8346:6:81","nodeType":"YulIdentifier","src":"8346:6:81"}]},{"nativeSrc":"8372:16:81","nodeType":"YulVariableDeclaration","src":"8372:16:81","value":{"kind":"number","nativeSrc":"8387:1:81","nodeType":"YulLiteral","src":"8387:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8376:7:81","nodeType":"YulTypedName","src":"8376:7:81","type":""}]},{"nativeSrc":"8397:43:81","nodeType":"YulAssignment","src":"8397:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8425:9:81","nodeType":"YulIdentifier","src":"8425:9:81"},{"kind":"number","nativeSrc":"8436:2:81","nodeType":"YulLiteral","src":"8436:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8421:3:81","nodeType":"YulIdentifier","src":"8421:3:81"},"nativeSrc":"8421:18:81","nodeType":"YulFunctionCall","src":"8421:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"8408:12:81","nodeType":"YulIdentifier","src":"8408:12:81"},"nativeSrc":"8408:32:81","nodeType":"YulFunctionCall","src":"8408:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"8397:7:81","nodeType":"YulIdentifier","src":"8397:7:81"}]},{"nativeSrc":"8449:17:81","nodeType":"YulAssignment","src":"8449:17:81","value":{"name":"value_2","nativeSrc":"8459:7:81","nodeType":"YulIdentifier","src":"8459:7:81"},"variableNames":[{"name":"value2","nativeSrc":"8449:6:81","nodeType":"YulIdentifier","src":"8449:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"7944:528:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7998:9:81","nodeType":"YulTypedName","src":"7998:9:81","type":""},{"name":"dataEnd","nativeSrc":"8009:7:81","nodeType":"YulTypedName","src":"8009:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8021:6:81","nodeType":"YulTypedName","src":"8021:6:81","type":""},{"name":"value1","nativeSrc":"8029:6:81","nodeType":"YulTypedName","src":"8029:6:81","type":""},{"name":"value2","nativeSrc":"8037:6:81","nodeType":"YulTypedName","src":"8037:6:81","type":""}],"src":"7944:528:81"},{"body":{"nativeSrc":"8574:87:81","nodeType":"YulBlock","src":"8574:87:81","statements":[{"nativeSrc":"8584:26:81","nodeType":"YulAssignment","src":"8584:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8596:9:81","nodeType":"YulIdentifier","src":"8596:9:81"},{"kind":"number","nativeSrc":"8607:2:81","nodeType":"YulLiteral","src":"8607:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8592:3:81","nodeType":"YulIdentifier","src":"8592:3:81"},"nativeSrc":"8592:18:81","nodeType":"YulFunctionCall","src":"8592:18:81"},"variableNames":[{"name":"tail","nativeSrc":"8584:4:81","nodeType":"YulIdentifier","src":"8584:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8626:9:81","nodeType":"YulIdentifier","src":"8626:9:81"},{"arguments":[{"name":"value0","nativeSrc":"8641:6:81","nodeType":"YulIdentifier","src":"8641:6:81"},{"kind":"number","nativeSrc":"8649:4:81","nodeType":"YulLiteral","src":"8649:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"8637:3:81","nodeType":"YulIdentifier","src":"8637:3:81"},"nativeSrc":"8637:17:81","nodeType":"YulFunctionCall","src":"8637:17:81"}],"functionName":{"name":"mstore","nativeSrc":"8619:6:81","nodeType":"YulIdentifier","src":"8619:6:81"},"nativeSrc":"8619:36:81","nodeType":"YulFunctionCall","src":"8619:36:81"},"nativeSrc":"8619:36:81","nodeType":"YulExpressionStatement","src":"8619:36:81"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"8477:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8543:9:81","nodeType":"YulTypedName","src":"8543:9:81","type":""},{"name":"value0","nativeSrc":"8554:6:81","nodeType":"YulTypedName","src":"8554:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8565:4:81","nodeType":"YulTypedName","src":"8565:4:81","type":""}],"src":"8477:184:81"},{"body":{"nativeSrc":"8772:448:81","nodeType":"YulBlock","src":"8772:448:81","statements":[{"body":{"nativeSrc":"8818:16:81","nodeType":"YulBlock","src":"8818:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8827:1:81","nodeType":"YulLiteral","src":"8827:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"8830:1:81","nodeType":"YulLiteral","src":"8830:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8820:6:81","nodeType":"YulIdentifier","src":"8820:6:81"},"nativeSrc":"8820:12:81","nodeType":"YulFunctionCall","src":"8820:12:81"},"nativeSrc":"8820:12:81","nodeType":"YulExpressionStatement","src":"8820:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8793:7:81","nodeType":"YulIdentifier","src":"8793:7:81"},{"name":"headStart","nativeSrc":"8802:9:81","nodeType":"YulIdentifier","src":"8802:9:81"}],"functionName":{"name":"sub","nativeSrc":"8789:3:81","nodeType":"YulIdentifier","src":"8789:3:81"},"nativeSrc":"8789:23:81","nodeType":"YulFunctionCall","src":"8789:23:81"},{"kind":"number","nativeSrc":"8814:2:81","nodeType":"YulLiteral","src":"8814:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8785:3:81","nodeType":"YulIdentifier","src":"8785:3:81"},"nativeSrc":"8785:32:81","nodeType":"YulFunctionCall","src":"8785:32:81"},"nativeSrc":"8782:52:81","nodeType":"YulIf","src":"8782:52:81"},{"nativeSrc":"8843:36:81","nodeType":"YulVariableDeclaration","src":"8843:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"8869:9:81","nodeType":"YulIdentifier","src":"8869:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"8856:12:81","nodeType":"YulIdentifier","src":"8856:12:81"},"nativeSrc":"8856:23:81","nodeType":"YulFunctionCall","src":"8856:23:81"},"variables":[{"name":"value","nativeSrc":"8847:5:81","nodeType":"YulTypedName","src":"8847:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8923:5:81","nodeType":"YulIdentifier","src":"8923:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8888:34:81","nodeType":"YulIdentifier","src":"8888:34:81"},"nativeSrc":"8888:41:81","nodeType":"YulFunctionCall","src":"8888:41:81"},"nativeSrc":"8888:41:81","nodeType":"YulExpressionStatement","src":"8888:41:81"},{"nativeSrc":"8938:15:81","nodeType":"YulAssignment","src":"8938:15:81","value":{"name":"value","nativeSrc":"8948:5:81","nodeType":"YulIdentifier","src":"8948:5:81"},"variableNames":[{"name":"value0","nativeSrc":"8938:6:81","nodeType":"YulIdentifier","src":"8938:6:81"}]},{"nativeSrc":"8962:46:81","nodeType":"YulVariableDeclaration","src":"8962:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8993:9:81","nodeType":"YulIdentifier","src":"8993:9:81"},{"kind":"number","nativeSrc":"9004:2:81","nodeType":"YulLiteral","src":"9004:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8989:3:81","nodeType":"YulIdentifier","src":"8989:3:81"},"nativeSrc":"8989:18:81","nodeType":"YulFunctionCall","src":"8989:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"8976:12:81","nodeType":"YulIdentifier","src":"8976:12:81"},"nativeSrc":"8976:32:81","nodeType":"YulFunctionCall","src":"8976:32:81"},"variables":[{"name":"offset","nativeSrc":"8966:6:81","nodeType":"YulTypedName","src":"8966:6:81","type":""}]},{"body":{"nativeSrc":"9051:16:81","nodeType":"YulBlock","src":"9051:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9060:1:81","nodeType":"YulLiteral","src":"9060:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"9063:1:81","nodeType":"YulLiteral","src":"9063:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9053:6:81","nodeType":"YulIdentifier","src":"9053:6:81"},"nativeSrc":"9053:12:81","nodeType":"YulFunctionCall","src":"9053:12:81"},"nativeSrc":"9053:12:81","nodeType":"YulExpressionStatement","src":"9053:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9023:6:81","nodeType":"YulIdentifier","src":"9023:6:81"},{"kind":"number","nativeSrc":"9031:18:81","nodeType":"YulLiteral","src":"9031:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9020:2:81","nodeType":"YulIdentifier","src":"9020:2:81"},"nativeSrc":"9020:30:81","nodeType":"YulFunctionCall","src":"9020:30:81"},"nativeSrc":"9017:50:81","nodeType":"YulIf","src":"9017:50:81"},{"nativeSrc":"9076:84:81","nodeType":"YulVariableDeclaration","src":"9076:84:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9132:9:81","nodeType":"YulIdentifier","src":"9132:9:81"},{"name":"offset","nativeSrc":"9143:6:81","nodeType":"YulIdentifier","src":"9143:6:81"}],"functionName":{"name":"add","nativeSrc":"9128:3:81","nodeType":"YulIdentifier","src":"9128:3:81"},"nativeSrc":"9128:22:81","nodeType":"YulFunctionCall","src":"9128:22:81"},{"name":"dataEnd","nativeSrc":"9152:7:81","nodeType":"YulIdentifier","src":"9152:7:81"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9102:25:81","nodeType":"YulIdentifier","src":"9102:25:81"},"nativeSrc":"9102:58:81","nodeType":"YulFunctionCall","src":"9102:58:81"},"variables":[{"name":"value1_1","nativeSrc":"9080:8:81","nodeType":"YulTypedName","src":"9080:8:81","type":""},{"name":"value2_1","nativeSrc":"9090:8:81","nodeType":"YulTypedName","src":"9090:8:81","type":""}]},{"nativeSrc":"9169:18:81","nodeType":"YulAssignment","src":"9169:18:81","value":{"name":"value1_1","nativeSrc":"9179:8:81","nodeType":"YulIdentifier","src":"9179:8:81"},"variableNames":[{"name":"value1","nativeSrc":"9169:6:81","nodeType":"YulIdentifier","src":"9169:6:81"}]},{"nativeSrc":"9196:18:81","nodeType":"YulAssignment","src":"9196:18:81","value":{"name":"value2_1","nativeSrc":"9206:8:81","nodeType":"YulIdentifier","src":"9206:8:81"},"variableNames":[{"name":"value2","nativeSrc":"9196:6:81","nodeType":"YulIdentifier","src":"9196:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"8666:554:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8722:9:81","nodeType":"YulTypedName","src":"8722:9:81","type":""},{"name":"dataEnd","nativeSrc":"8733:7:81","nodeType":"YulTypedName","src":"8733:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8745:6:81","nodeType":"YulTypedName","src":"8745:6:81","type":""},{"name":"value1","nativeSrc":"8753:6:81","nodeType":"YulTypedName","src":"8753:6:81","type":""},{"name":"value2","nativeSrc":"8761:6:81","nodeType":"YulTypedName","src":"8761:6:81","type":""}],"src":"8666:554:81"},{"body":{"nativeSrc":"9344:99:81","nodeType":"YulBlock","src":"9344:99:81","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9361:9:81","nodeType":"YulIdentifier","src":"9361:9:81"},{"kind":"number","nativeSrc":"9372:2:81","nodeType":"YulLiteral","src":"9372:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"9354:6:81","nodeType":"YulIdentifier","src":"9354:6:81"},"nativeSrc":"9354:21:81","nodeType":"YulFunctionCall","src":"9354:21:81"},"nativeSrc":"9354:21:81","nodeType":"YulExpressionStatement","src":"9354:21:81"},{"nativeSrc":"9384:53:81","nodeType":"YulAssignment","src":"9384:53:81","value":{"arguments":[{"name":"value0","nativeSrc":"9410:6:81","nodeType":"YulIdentifier","src":"9410:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"9422:9:81","nodeType":"YulIdentifier","src":"9422:9:81"},{"kind":"number","nativeSrc":"9433:2:81","nodeType":"YulLiteral","src":"9433:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9418:3:81","nodeType":"YulIdentifier","src":"9418:3:81"},"nativeSrc":"9418:18:81","nodeType":"YulFunctionCall","src":"9418:18:81"}],"functionName":{"name":"abi_encode_string","nativeSrc":"9392:17:81","nodeType":"YulIdentifier","src":"9392:17:81"},"nativeSrc":"9392:45:81","nodeType":"YulFunctionCall","src":"9392:45:81"},"variableNames":[{"name":"tail","nativeSrc":"9384:4:81","nodeType":"YulIdentifier","src":"9384:4:81"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"9225:218:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9313:9:81","nodeType":"YulTypedName","src":"9313:9:81","type":""},{"name":"value0","nativeSrc":"9324:6:81","nodeType":"YulTypedName","src":"9324:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9335:4:81","nodeType":"YulTypedName","src":"9335:4:81","type":""}],"src":"9225:218:81"},{"body":{"nativeSrc":"9549:102:81","nodeType":"YulBlock","src":"9549:102:81","statements":[{"nativeSrc":"9559:26:81","nodeType":"YulAssignment","src":"9559:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9571:9:81","nodeType":"YulIdentifier","src":"9571:9:81"},{"kind":"number","nativeSrc":"9582:2:81","nodeType":"YulLiteral","src":"9582:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9567:3:81","nodeType":"YulIdentifier","src":"9567:3:81"},"nativeSrc":"9567:18:81","nodeType":"YulFunctionCall","src":"9567:18:81"},"variableNames":[{"name":"tail","nativeSrc":"9559:4:81","nodeType":"YulIdentifier","src":"9559:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9601:9:81","nodeType":"YulIdentifier","src":"9601:9:81"},{"arguments":[{"name":"value0","nativeSrc":"9616:6:81","nodeType":"YulIdentifier","src":"9616:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9632:3:81","nodeType":"YulLiteral","src":"9632:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"9637:1:81","nodeType":"YulLiteral","src":"9637:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9628:3:81","nodeType":"YulIdentifier","src":"9628:3:81"},"nativeSrc":"9628:11:81","nodeType":"YulFunctionCall","src":"9628:11:81"},{"kind":"number","nativeSrc":"9641:1:81","nodeType":"YulLiteral","src":"9641:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9624:3:81","nodeType":"YulIdentifier","src":"9624:3:81"},"nativeSrc":"9624:19:81","nodeType":"YulFunctionCall","src":"9624:19:81"}],"functionName":{"name":"and","nativeSrc":"9612:3:81","nodeType":"YulIdentifier","src":"9612:3:81"},"nativeSrc":"9612:32:81","nodeType":"YulFunctionCall","src":"9612:32:81"}],"functionName":{"name":"mstore","nativeSrc":"9594:6:81","nodeType":"YulIdentifier","src":"9594:6:81"},"nativeSrc":"9594:51:81","nodeType":"YulFunctionCall","src":"9594:51:81"},"nativeSrc":"9594:51:81","nodeType":"YulExpressionStatement","src":"9594:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"9448:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9518:9:81","nodeType":"YulTypedName","src":"9518:9:81","type":""},{"name":"value0","nativeSrc":"9529:6:81","nodeType":"YulTypedName","src":"9529:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9540:4:81","nodeType":"YulTypedName","src":"9540:4:81","type":""}],"src":"9448:203:81"},{"body":{"nativeSrc":"9755:93:81","nodeType":"YulBlock","src":"9755:93:81","statements":[{"nativeSrc":"9765:26:81","nodeType":"YulAssignment","src":"9765:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9777:9:81","nodeType":"YulIdentifier","src":"9777:9:81"},{"kind":"number","nativeSrc":"9788:2:81","nodeType":"YulLiteral","src":"9788:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9773:3:81","nodeType":"YulIdentifier","src":"9773:3:81"},"nativeSrc":"9773:18:81","nodeType":"YulFunctionCall","src":"9773:18:81"},"variableNames":[{"name":"tail","nativeSrc":"9765:4:81","nodeType":"YulIdentifier","src":"9765:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9807:9:81","nodeType":"YulIdentifier","src":"9807:9:81"},{"arguments":[{"name":"value0","nativeSrc":"9822:6:81","nodeType":"YulIdentifier","src":"9822:6:81"},{"kind":"number","nativeSrc":"9830:10:81","nodeType":"YulLiteral","src":"9830:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"9818:3:81","nodeType":"YulIdentifier","src":"9818:3:81"},"nativeSrc":"9818:23:81","nodeType":"YulFunctionCall","src":"9818:23:81"}],"functionName":{"name":"mstore","nativeSrc":"9800:6:81","nodeType":"YulIdentifier","src":"9800:6:81"},"nativeSrc":"9800:42:81","nodeType":"YulFunctionCall","src":"9800:42:81"},"nativeSrc":"9800:42:81","nodeType":"YulExpressionStatement","src":"9800:42:81"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"9656:192:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9724:9:81","nodeType":"YulTypedName","src":"9724:9:81","type":""},{"name":"value0","nativeSrc":"9735:6:81","nodeType":"YulTypedName","src":"9735:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9746:4:81","nodeType":"YulTypedName","src":"9746:4:81","type":""}],"src":"9656:192:81"},{"body":{"nativeSrc":"9975:102:81","nodeType":"YulBlock","src":"9975:102:81","statements":[{"nativeSrc":"9985:26:81","nodeType":"YulAssignment","src":"9985:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"9997:9:81","nodeType":"YulIdentifier","src":"9997:9:81"},{"kind":"number","nativeSrc":"10008:2:81","nodeType":"YulLiteral","src":"10008:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9993:3:81","nodeType":"YulIdentifier","src":"9993:3:81"},"nativeSrc":"9993:18:81","nodeType":"YulFunctionCall","src":"9993:18:81"},"variableNames":[{"name":"tail","nativeSrc":"9985:4:81","nodeType":"YulIdentifier","src":"9985:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10027:9:81","nodeType":"YulIdentifier","src":"10027:9:81"},{"arguments":[{"name":"value0","nativeSrc":"10042:6:81","nodeType":"YulIdentifier","src":"10042:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10058:3:81","nodeType":"YulLiteral","src":"10058:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"10063:1:81","nodeType":"YulLiteral","src":"10063:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10054:3:81","nodeType":"YulIdentifier","src":"10054:3:81"},"nativeSrc":"10054:11:81","nodeType":"YulFunctionCall","src":"10054:11:81"},{"kind":"number","nativeSrc":"10067:1:81","nodeType":"YulLiteral","src":"10067:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10050:3:81","nodeType":"YulIdentifier","src":"10050:3:81"},"nativeSrc":"10050:19:81","nodeType":"YulFunctionCall","src":"10050:19:81"}],"functionName":{"name":"and","nativeSrc":"10038:3:81","nodeType":"YulIdentifier","src":"10038:3:81"},"nativeSrc":"10038:32:81","nodeType":"YulFunctionCall","src":"10038:32:81"}],"functionName":{"name":"mstore","nativeSrc":"10020:6:81","nodeType":"YulIdentifier","src":"10020:6:81"},"nativeSrc":"10020:51:81","nodeType":"YulFunctionCall","src":"10020:51:81"},"nativeSrc":"10020:51:81","nodeType":"YulExpressionStatement","src":"10020:51:81"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$25555__to_t_address__fromStack_reversed","nativeSrc":"9853:224:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9944:9:81","nodeType":"YulTypedName","src":"9944:9:81","type":""},{"name":"value0","nativeSrc":"9955:6:81","nodeType":"YulTypedName","src":"9955:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9966:4:81","nodeType":"YulTypedName","src":"9966:4:81","type":""}],"src":"9853:224:81"},{"body":{"nativeSrc":"10178:499:81","nodeType":"YulBlock","src":"10178:499:81","statements":[{"body":{"nativeSrc":"10224:16:81","nodeType":"YulBlock","src":"10224:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10233:1:81","nodeType":"YulLiteral","src":"10233:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10236:1:81","nodeType":"YulLiteral","src":"10236:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10226:6:81","nodeType":"YulIdentifier","src":"10226:6:81"},"nativeSrc":"10226:12:81","nodeType":"YulFunctionCall","src":"10226:12:81"},"nativeSrc":"10226:12:81","nodeType":"YulExpressionStatement","src":"10226:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10199:7:81","nodeType":"YulIdentifier","src":"10199:7:81"},{"name":"headStart","nativeSrc":"10208:9:81","nodeType":"YulIdentifier","src":"10208:9:81"}],"functionName":{"name":"sub","nativeSrc":"10195:3:81","nodeType":"YulIdentifier","src":"10195:3:81"},"nativeSrc":"10195:23:81","nodeType":"YulFunctionCall","src":"10195:23:81"},{"kind":"number","nativeSrc":"10220:2:81","nodeType":"YulLiteral","src":"10220:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10191:3:81","nodeType":"YulIdentifier","src":"10191:3:81"},"nativeSrc":"10191:32:81","nodeType":"YulFunctionCall","src":"10191:32:81"},"nativeSrc":"10188:52:81","nodeType":"YulIf","src":"10188:52:81"},{"nativeSrc":"10249:36:81","nodeType":"YulVariableDeclaration","src":"10249:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10275:9:81","nodeType":"YulIdentifier","src":"10275:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"10262:12:81","nodeType":"YulIdentifier","src":"10262:12:81"},"nativeSrc":"10262:23:81","nodeType":"YulFunctionCall","src":"10262:23:81"},"variables":[{"name":"value","nativeSrc":"10253:5:81","nodeType":"YulTypedName","src":"10253:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10329:5:81","nodeType":"YulIdentifier","src":"10329:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"10294:34:81","nodeType":"YulIdentifier","src":"10294:34:81"},"nativeSrc":"10294:41:81","nodeType":"YulFunctionCall","src":"10294:41:81"},"nativeSrc":"10294:41:81","nodeType":"YulExpressionStatement","src":"10294:41:81"},{"nativeSrc":"10344:15:81","nodeType":"YulAssignment","src":"10344:15:81","value":{"name":"value","nativeSrc":"10354:5:81","nodeType":"YulIdentifier","src":"10354:5:81"},"variableNames":[{"name":"value0","nativeSrc":"10344:6:81","nodeType":"YulIdentifier","src":"10344:6:81"}]},{"nativeSrc":"10368:46:81","nodeType":"YulVariableDeclaration","src":"10368:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10399:9:81","nodeType":"YulIdentifier","src":"10399:9:81"},{"kind":"number","nativeSrc":"10410:2:81","nodeType":"YulLiteral","src":"10410:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10395:3:81","nodeType":"YulIdentifier","src":"10395:3:81"},"nativeSrc":"10395:18:81","nodeType":"YulFunctionCall","src":"10395:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"10382:12:81","nodeType":"YulIdentifier","src":"10382:12:81"},"nativeSrc":"10382:32:81","nodeType":"YulFunctionCall","src":"10382:32:81"},"variables":[{"name":"offset","nativeSrc":"10372:6:81","nodeType":"YulTypedName","src":"10372:6:81","type":""}]},{"body":{"nativeSrc":"10457:16:81","nodeType":"YulBlock","src":"10457:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10466:1:81","nodeType":"YulLiteral","src":"10466:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10469:1:81","nodeType":"YulLiteral","src":"10469:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10459:6:81","nodeType":"YulIdentifier","src":"10459:6:81"},"nativeSrc":"10459:12:81","nodeType":"YulFunctionCall","src":"10459:12:81"},"nativeSrc":"10459:12:81","nodeType":"YulExpressionStatement","src":"10459:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10429:6:81","nodeType":"YulIdentifier","src":"10429:6:81"},{"kind":"number","nativeSrc":"10437:18:81","nodeType":"YulLiteral","src":"10437:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10426:2:81","nodeType":"YulIdentifier","src":"10426:2:81"},"nativeSrc":"10426:30:81","nodeType":"YulFunctionCall","src":"10426:30:81"},"nativeSrc":"10423:50:81","nodeType":"YulIf","src":"10423:50:81"},{"nativeSrc":"10482:32:81","nodeType":"YulVariableDeclaration","src":"10482:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10496:9:81","nodeType":"YulIdentifier","src":"10496:9:81"},{"name":"offset","nativeSrc":"10507:6:81","nodeType":"YulIdentifier","src":"10507:6:81"}],"functionName":{"name":"add","nativeSrc":"10492:3:81","nodeType":"YulIdentifier","src":"10492:3:81"},"nativeSrc":"10492:22:81","nodeType":"YulFunctionCall","src":"10492:22:81"},"variables":[{"name":"_1","nativeSrc":"10486:2:81","nodeType":"YulTypedName","src":"10486:2:81","type":""}]},{"body":{"nativeSrc":"10562:16:81","nodeType":"YulBlock","src":"10562:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10571:1:81","nodeType":"YulLiteral","src":"10571:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"10574:1:81","nodeType":"YulLiteral","src":"10574:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10564:6:81","nodeType":"YulIdentifier","src":"10564:6:81"},"nativeSrc":"10564:12:81","nodeType":"YulFunctionCall","src":"10564:12:81"},"nativeSrc":"10564:12:81","nodeType":"YulExpressionStatement","src":"10564:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10541:2:81","nodeType":"YulIdentifier","src":"10541:2:81"},{"kind":"number","nativeSrc":"10545:4:81","nodeType":"YulLiteral","src":"10545:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"10537:3:81","nodeType":"YulIdentifier","src":"10537:3:81"},"nativeSrc":"10537:13:81","nodeType":"YulFunctionCall","src":"10537:13:81"},{"name":"dataEnd","nativeSrc":"10552:7:81","nodeType":"YulIdentifier","src":"10552:7:81"}],"functionName":{"name":"slt","nativeSrc":"10533:3:81","nodeType":"YulIdentifier","src":"10533:3:81"},"nativeSrc":"10533:27:81","nodeType":"YulFunctionCall","src":"10533:27:81"}],"functionName":{"name":"iszero","nativeSrc":"10526:6:81","nodeType":"YulIdentifier","src":"10526:6:81"},"nativeSrc":"10526:35:81","nodeType":"YulFunctionCall","src":"10526:35:81"},"nativeSrc":"10523:55:81","nodeType":"YulIf","src":"10523:55:81"},{"nativeSrc":"10587:84:81","nodeType":"YulAssignment","src":"10587:84:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10636:2:81","nodeType":"YulIdentifier","src":"10636:2:81"},{"kind":"number","nativeSrc":"10640:2:81","nodeType":"YulLiteral","src":"10640:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10632:3:81","nodeType":"YulIdentifier","src":"10632:3:81"},"nativeSrc":"10632:11:81","nodeType":"YulFunctionCall","src":"10632:11:81"},{"arguments":[{"name":"_1","nativeSrc":"10658:2:81","nodeType":"YulIdentifier","src":"10658:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"10645:12:81","nodeType":"YulIdentifier","src":"10645:12:81"},"nativeSrc":"10645:16:81","nodeType":"YulFunctionCall","src":"10645:16:81"},{"name":"dataEnd","nativeSrc":"10663:7:81","nodeType":"YulIdentifier","src":"10663:7:81"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"10597:34:81","nodeType":"YulIdentifier","src":"10597:34:81"},"nativeSrc":"10597:74:81","nodeType":"YulFunctionCall","src":"10597:74:81"},"variableNames":[{"name":"value1","nativeSrc":"10587:6:81","nodeType":"YulIdentifier","src":"10587:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"10082:595:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10136:9:81","nodeType":"YulTypedName","src":"10136:9:81","type":""},{"name":"dataEnd","nativeSrc":"10147:7:81","nodeType":"YulTypedName","src":"10147:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10159:6:81","nodeType":"YulTypedName","src":"10159:6:81","type":""},{"name":"value1","nativeSrc":"10167:6:81","nodeType":"YulTypedName","src":"10167:6:81","type":""}],"src":"10082:595:81"},{"body":{"nativeSrc":"10783:76:81","nodeType":"YulBlock","src":"10783:76:81","statements":[{"nativeSrc":"10793:26:81","nodeType":"YulAssignment","src":"10793:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"10805:9:81","nodeType":"YulIdentifier","src":"10805:9:81"},{"kind":"number","nativeSrc":"10816:2:81","nodeType":"YulLiteral","src":"10816:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10801:3:81","nodeType":"YulIdentifier","src":"10801:3:81"},"nativeSrc":"10801:18:81","nodeType":"YulFunctionCall","src":"10801:18:81"},"variableNames":[{"name":"tail","nativeSrc":"10793:4:81","nodeType":"YulIdentifier","src":"10793:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10835:9:81","nodeType":"YulIdentifier","src":"10835:9:81"},{"name":"value0","nativeSrc":"10846:6:81","nodeType":"YulIdentifier","src":"10846:6:81"}],"functionName":{"name":"mstore","nativeSrc":"10828:6:81","nodeType":"YulIdentifier","src":"10828:6:81"},"nativeSrc":"10828:25:81","nodeType":"YulFunctionCall","src":"10828:25:81"},"nativeSrc":"10828:25:81","nodeType":"YulExpressionStatement","src":"10828:25:81"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"10682:177:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10752:9:81","nodeType":"YulTypedName","src":"10752:9:81","type":""},{"name":"value0","nativeSrc":"10763:6:81","nodeType":"YulTypedName","src":"10763:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10774:4:81","nodeType":"YulTypedName","src":"10774:4:81","type":""}],"src":"10682:177:81"},{"body":{"nativeSrc":"10985:528:81","nodeType":"YulBlock","src":"10985:528:81","statements":[{"body":{"nativeSrc":"11032:16:81","nodeType":"YulBlock","src":"11032:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11041:1:81","nodeType":"YulLiteral","src":"11041:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11044:1:81","nodeType":"YulLiteral","src":"11044:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11034:6:81","nodeType":"YulIdentifier","src":"11034:6:81"},"nativeSrc":"11034:12:81","nodeType":"YulFunctionCall","src":"11034:12:81"},"nativeSrc":"11034:12:81","nodeType":"YulExpressionStatement","src":"11034:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11006:7:81","nodeType":"YulIdentifier","src":"11006:7:81"},{"name":"headStart","nativeSrc":"11015:9:81","nodeType":"YulIdentifier","src":"11015:9:81"}],"functionName":{"name":"sub","nativeSrc":"11002:3:81","nodeType":"YulIdentifier","src":"11002:3:81"},"nativeSrc":"11002:23:81","nodeType":"YulFunctionCall","src":"11002:23:81"},{"kind":"number","nativeSrc":"11027:3:81","nodeType":"YulLiteral","src":"11027:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"10998:3:81","nodeType":"YulIdentifier","src":"10998:3:81"},"nativeSrc":"10998:33:81","nodeType":"YulFunctionCall","src":"10998:33:81"},"nativeSrc":"10995:53:81","nodeType":"YulIf","src":"10995:53:81"},{"nativeSrc":"11057:36:81","nodeType":"YulVariableDeclaration","src":"11057:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11083:9:81","nodeType":"YulIdentifier","src":"11083:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"11070:12:81","nodeType":"YulIdentifier","src":"11070:12:81"},"nativeSrc":"11070:23:81","nodeType":"YulFunctionCall","src":"11070:23:81"},"variables":[{"name":"value","nativeSrc":"11061:5:81","nodeType":"YulTypedName","src":"11061:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11137:5:81","nodeType":"YulIdentifier","src":"11137:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11102:34:81","nodeType":"YulIdentifier","src":"11102:34:81"},"nativeSrc":"11102:41:81","nodeType":"YulFunctionCall","src":"11102:41:81"},"nativeSrc":"11102:41:81","nodeType":"YulExpressionStatement","src":"11102:41:81"},{"nativeSrc":"11152:15:81","nodeType":"YulAssignment","src":"11152:15:81","value":{"name":"value","nativeSrc":"11162:5:81","nodeType":"YulIdentifier","src":"11162:5:81"},"variableNames":[{"name":"value0","nativeSrc":"11152:6:81","nodeType":"YulIdentifier","src":"11152:6:81"}]},{"nativeSrc":"11176:47:81","nodeType":"YulVariableDeclaration","src":"11176:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11208:9:81","nodeType":"YulIdentifier","src":"11208:9:81"},{"kind":"number","nativeSrc":"11219:2:81","nodeType":"YulLiteral","src":"11219:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11204:3:81","nodeType":"YulIdentifier","src":"11204:3:81"},"nativeSrc":"11204:18:81","nodeType":"YulFunctionCall","src":"11204:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11191:12:81","nodeType":"YulIdentifier","src":"11191:12:81"},"nativeSrc":"11191:32:81","nodeType":"YulFunctionCall","src":"11191:32:81"},"variables":[{"name":"value_1","nativeSrc":"11180:7:81","nodeType":"YulTypedName","src":"11180:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"11267:7:81","nodeType":"YulIdentifier","src":"11267:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11232:34:81","nodeType":"YulIdentifier","src":"11232:34:81"},"nativeSrc":"11232:43:81","nodeType":"YulFunctionCall","src":"11232:43:81"},"nativeSrc":"11232:43:81","nodeType":"YulExpressionStatement","src":"11232:43:81"},{"nativeSrc":"11284:17:81","nodeType":"YulAssignment","src":"11284:17:81","value":{"name":"value_1","nativeSrc":"11294:7:81","nodeType":"YulIdentifier","src":"11294:7:81"},"variableNames":[{"name":"value1","nativeSrc":"11284:6:81","nodeType":"YulIdentifier","src":"11284:6:81"}]},{"nativeSrc":"11310:16:81","nodeType":"YulVariableDeclaration","src":"11310:16:81","value":{"kind":"number","nativeSrc":"11325:1:81","nodeType":"YulLiteral","src":"11325:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11314:7:81","nodeType":"YulTypedName","src":"11314:7:81","type":""}]},{"nativeSrc":"11335:43:81","nodeType":"YulAssignment","src":"11335:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11363:9:81","nodeType":"YulIdentifier","src":"11363:9:81"},{"kind":"number","nativeSrc":"11374:2:81","nodeType":"YulLiteral","src":"11374:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11359:3:81","nodeType":"YulIdentifier","src":"11359:3:81"},"nativeSrc":"11359:18:81","nodeType":"YulFunctionCall","src":"11359:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11346:12:81","nodeType":"YulIdentifier","src":"11346:12:81"},"nativeSrc":"11346:32:81","nodeType":"YulFunctionCall","src":"11346:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"11335:7:81","nodeType":"YulIdentifier","src":"11335:7:81"}]},{"nativeSrc":"11387:17:81","nodeType":"YulAssignment","src":"11387:17:81","value":{"name":"value_2","nativeSrc":"11397:7:81","nodeType":"YulIdentifier","src":"11397:7:81"},"variableNames":[{"name":"value2","nativeSrc":"11387:6:81","nodeType":"YulIdentifier","src":"11387:6:81"}]},{"nativeSrc":"11413:16:81","nodeType":"YulVariableDeclaration","src":"11413:16:81","value":{"kind":"number","nativeSrc":"11428:1:81","nodeType":"YulLiteral","src":"11428:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"11417:7:81","nodeType":"YulTypedName","src":"11417:7:81","type":""}]},{"nativeSrc":"11438:43:81","nodeType":"YulAssignment","src":"11438:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11466:9:81","nodeType":"YulIdentifier","src":"11466:9:81"},{"kind":"number","nativeSrc":"11477:2:81","nodeType":"YulLiteral","src":"11477:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11462:3:81","nodeType":"YulIdentifier","src":"11462:3:81"},"nativeSrc":"11462:18:81","nodeType":"YulFunctionCall","src":"11462:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11449:12:81","nodeType":"YulIdentifier","src":"11449:12:81"},"nativeSrc":"11449:32:81","nodeType":"YulFunctionCall","src":"11449:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"11438:7:81","nodeType":"YulIdentifier","src":"11438:7:81"}]},{"nativeSrc":"11490:17:81","nodeType":"YulAssignment","src":"11490:17:81","value":{"name":"value_3","nativeSrc":"11500:7:81","nodeType":"YulIdentifier","src":"11500:7:81"},"variableNames":[{"name":"value3","nativeSrc":"11490:6:81","nodeType":"YulIdentifier","src":"11490:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"10864:649:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10927:9:81","nodeType":"YulTypedName","src":"10927:9:81","type":""},{"name":"dataEnd","nativeSrc":"10938:7:81","nodeType":"YulTypedName","src":"10938:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10950:6:81","nodeType":"YulTypedName","src":"10950:6:81","type":""},{"name":"value1","nativeSrc":"10958:6:81","nodeType":"YulTypedName","src":"10958:6:81","type":""},{"name":"value2","nativeSrc":"10966:6:81","nodeType":"YulTypedName","src":"10966:6:81","type":""},{"name":"value3","nativeSrc":"10974:6:81","nodeType":"YulTypedName","src":"10974:6:81","type":""}],"src":"10864:649:81"},{"body":{"nativeSrc":"11605:290:81","nodeType":"YulBlock","src":"11605:290:81","statements":[{"body":{"nativeSrc":"11651:16:81","nodeType":"YulBlock","src":"11651:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11660:1:81","nodeType":"YulLiteral","src":"11660:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"11663:1:81","nodeType":"YulLiteral","src":"11663:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11653:6:81","nodeType":"YulIdentifier","src":"11653:6:81"},"nativeSrc":"11653:12:81","nodeType":"YulFunctionCall","src":"11653:12:81"},"nativeSrc":"11653:12:81","nodeType":"YulExpressionStatement","src":"11653:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11626:7:81","nodeType":"YulIdentifier","src":"11626:7:81"},{"name":"headStart","nativeSrc":"11635:9:81","nodeType":"YulIdentifier","src":"11635:9:81"}],"functionName":{"name":"sub","nativeSrc":"11622:3:81","nodeType":"YulIdentifier","src":"11622:3:81"},"nativeSrc":"11622:23:81","nodeType":"YulFunctionCall","src":"11622:23:81"},{"kind":"number","nativeSrc":"11647:2:81","nodeType":"YulLiteral","src":"11647:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"11618:3:81","nodeType":"YulIdentifier","src":"11618:3:81"},"nativeSrc":"11618:32:81","nodeType":"YulFunctionCall","src":"11618:32:81"},"nativeSrc":"11615:52:81","nodeType":"YulIf","src":"11615:52:81"},{"nativeSrc":"11676:14:81","nodeType":"YulVariableDeclaration","src":"11676:14:81","value":{"kind":"number","nativeSrc":"11689:1:81","nodeType":"YulLiteral","src":"11689:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11680:5:81","nodeType":"YulTypedName","src":"11680:5:81","type":""}]},{"nativeSrc":"11699:32:81","nodeType":"YulAssignment","src":"11699:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"11721:9:81","nodeType":"YulIdentifier","src":"11721:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"11708:12:81","nodeType":"YulIdentifier","src":"11708:12:81"},"nativeSrc":"11708:23:81","nodeType":"YulFunctionCall","src":"11708:23:81"},"variableNames":[{"name":"value","nativeSrc":"11699:5:81","nodeType":"YulIdentifier","src":"11699:5:81"}]},{"nativeSrc":"11740:15:81","nodeType":"YulAssignment","src":"11740:15:81","value":{"name":"value","nativeSrc":"11750:5:81","nodeType":"YulIdentifier","src":"11750:5:81"},"variableNames":[{"name":"value0","nativeSrc":"11740:6:81","nodeType":"YulIdentifier","src":"11740:6:81"}]},{"nativeSrc":"11764:47:81","nodeType":"YulVariableDeclaration","src":"11764:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11796:9:81","nodeType":"YulIdentifier","src":"11796:9:81"},{"kind":"number","nativeSrc":"11807:2:81","nodeType":"YulLiteral","src":"11807:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11792:3:81","nodeType":"YulIdentifier","src":"11792:3:81"},"nativeSrc":"11792:18:81","nodeType":"YulFunctionCall","src":"11792:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"11779:12:81","nodeType":"YulIdentifier","src":"11779:12:81"},"nativeSrc":"11779:32:81","nodeType":"YulFunctionCall","src":"11779:32:81"},"variables":[{"name":"value_1","nativeSrc":"11768:7:81","nodeType":"YulTypedName","src":"11768:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"11855:7:81","nodeType":"YulIdentifier","src":"11855:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11820:34:81","nodeType":"YulIdentifier","src":"11820:34:81"},"nativeSrc":"11820:43:81","nodeType":"YulFunctionCall","src":"11820:43:81"},"nativeSrc":"11820:43:81","nodeType":"YulExpressionStatement","src":"11820:43:81"},{"nativeSrc":"11872:17:81","nodeType":"YulAssignment","src":"11872:17:81","value":{"name":"value_1","nativeSrc":"11882:7:81","nodeType":"YulIdentifier","src":"11882:7:81"},"variableNames":[{"name":"value1","nativeSrc":"11872:6:81","nodeType":"YulIdentifier","src":"11872:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"11518:377:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11563:9:81","nodeType":"YulTypedName","src":"11563:9:81","type":""},{"name":"dataEnd","nativeSrc":"11574:7:81","nodeType":"YulTypedName","src":"11574:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11586:6:81","nodeType":"YulTypedName","src":"11586:6:81","type":""},{"name":"value1","nativeSrc":"11594:6:81","nodeType":"YulTypedName","src":"11594:6:81","type":""}],"src":"11518:377:81"},{"body":{"nativeSrc":"11999:76:81","nodeType":"YulBlock","src":"11999:76:81","statements":[{"nativeSrc":"12009:26:81","nodeType":"YulAssignment","src":"12009:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12021:9:81","nodeType":"YulIdentifier","src":"12021:9:81"},{"kind":"number","nativeSrc":"12032:2:81","nodeType":"YulLiteral","src":"12032:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12017:3:81","nodeType":"YulIdentifier","src":"12017:3:81"},"nativeSrc":"12017:18:81","nodeType":"YulFunctionCall","src":"12017:18:81"},"variableNames":[{"name":"tail","nativeSrc":"12009:4:81","nodeType":"YulIdentifier","src":"12009:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12051:9:81","nodeType":"YulIdentifier","src":"12051:9:81"},{"name":"value0","nativeSrc":"12062:6:81","nodeType":"YulIdentifier","src":"12062:6:81"}],"functionName":{"name":"mstore","nativeSrc":"12044:6:81","nodeType":"YulIdentifier","src":"12044:6:81"},"nativeSrc":"12044:25:81","nodeType":"YulFunctionCall","src":"12044:25:81"},"nativeSrc":"12044:25:81","nodeType":"YulExpressionStatement","src":"12044:25:81"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"11900:175:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11968:9:81","nodeType":"YulTypedName","src":"11968:9:81","type":""},{"name":"value0","nativeSrc":"11979:6:81","nodeType":"YulTypedName","src":"11979:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11990:4:81","nodeType":"YulTypedName","src":"11990:4:81","type":""}],"src":"11900:175:81"},{"body":{"nativeSrc":"12199:537:81","nodeType":"YulBlock","src":"12199:537:81","statements":[{"body":{"nativeSrc":"12246:16:81","nodeType":"YulBlock","src":"12246:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12255:1:81","nodeType":"YulLiteral","src":"12255:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12258:1:81","nodeType":"YulLiteral","src":"12258:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12248:6:81","nodeType":"YulIdentifier","src":"12248:6:81"},"nativeSrc":"12248:12:81","nodeType":"YulFunctionCall","src":"12248:12:81"},"nativeSrc":"12248:12:81","nodeType":"YulExpressionStatement","src":"12248:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12220:7:81","nodeType":"YulIdentifier","src":"12220:7:81"},{"name":"headStart","nativeSrc":"12229:9:81","nodeType":"YulIdentifier","src":"12229:9:81"}],"functionName":{"name":"sub","nativeSrc":"12216:3:81","nodeType":"YulIdentifier","src":"12216:3:81"},"nativeSrc":"12216:23:81","nodeType":"YulFunctionCall","src":"12216:23:81"},{"kind":"number","nativeSrc":"12241:3:81","nodeType":"YulLiteral","src":"12241:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"12212:3:81","nodeType":"YulIdentifier","src":"12212:3:81"},"nativeSrc":"12212:33:81","nodeType":"YulFunctionCall","src":"12212:33:81"},"nativeSrc":"12209:53:81","nodeType":"YulIf","src":"12209:53:81"},{"nativeSrc":"12271:36:81","nodeType":"YulVariableDeclaration","src":"12271:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12297:9:81","nodeType":"YulIdentifier","src":"12297:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"12284:12:81","nodeType":"YulIdentifier","src":"12284:12:81"},"nativeSrc":"12284:23:81","nodeType":"YulFunctionCall","src":"12284:23:81"},"variables":[{"name":"value","nativeSrc":"12275:5:81","nodeType":"YulTypedName","src":"12275:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12351:5:81","nodeType":"YulIdentifier","src":"12351:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12316:34:81","nodeType":"YulIdentifier","src":"12316:34:81"},"nativeSrc":"12316:41:81","nodeType":"YulFunctionCall","src":"12316:41:81"},"nativeSrc":"12316:41:81","nodeType":"YulExpressionStatement","src":"12316:41:81"},{"nativeSrc":"12366:15:81","nodeType":"YulAssignment","src":"12366:15:81","value":{"name":"value","nativeSrc":"12376:5:81","nodeType":"YulIdentifier","src":"12376:5:81"},"variableNames":[{"name":"value0","nativeSrc":"12366:6:81","nodeType":"YulIdentifier","src":"12366:6:81"}]},{"nativeSrc":"12390:47:81","nodeType":"YulVariableDeclaration","src":"12390:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12422:9:81","nodeType":"YulIdentifier","src":"12422:9:81"},{"kind":"number","nativeSrc":"12433:2:81","nodeType":"YulLiteral","src":"12433:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12418:3:81","nodeType":"YulIdentifier","src":"12418:3:81"},"nativeSrc":"12418:18:81","nodeType":"YulFunctionCall","src":"12418:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"12405:12:81","nodeType":"YulIdentifier","src":"12405:12:81"},"nativeSrc":"12405:32:81","nodeType":"YulFunctionCall","src":"12405:32:81"},"variables":[{"name":"value_1","nativeSrc":"12394:7:81","nodeType":"YulTypedName","src":"12394:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"12470:7:81","nodeType":"YulIdentifier","src":"12470:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"12446:23:81","nodeType":"YulIdentifier","src":"12446:23:81"},"nativeSrc":"12446:32:81","nodeType":"YulFunctionCall","src":"12446:32:81"},"nativeSrc":"12446:32:81","nodeType":"YulExpressionStatement","src":"12446:32:81"},{"nativeSrc":"12487:17:81","nodeType":"YulAssignment","src":"12487:17:81","value":{"name":"value_1","nativeSrc":"12497:7:81","nodeType":"YulIdentifier","src":"12497:7:81"},"variableNames":[{"name":"value1","nativeSrc":"12487:6:81","nodeType":"YulIdentifier","src":"12487:6:81"}]},{"nativeSrc":"12513:47:81","nodeType":"YulVariableDeclaration","src":"12513:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12545:9:81","nodeType":"YulIdentifier","src":"12545:9:81"},{"kind":"number","nativeSrc":"12556:2:81","nodeType":"YulLiteral","src":"12556:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12541:3:81","nodeType":"YulIdentifier","src":"12541:3:81"},"nativeSrc":"12541:18:81","nodeType":"YulFunctionCall","src":"12541:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"12528:12:81","nodeType":"YulIdentifier","src":"12528:12:81"},"nativeSrc":"12528:32:81","nodeType":"YulFunctionCall","src":"12528:32:81"},"variables":[{"name":"value_2","nativeSrc":"12517:7:81","nodeType":"YulTypedName","src":"12517:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"12593:7:81","nodeType":"YulIdentifier","src":"12593:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"12569:23:81","nodeType":"YulIdentifier","src":"12569:23:81"},"nativeSrc":"12569:32:81","nodeType":"YulFunctionCall","src":"12569:32:81"},"nativeSrc":"12569:32:81","nodeType":"YulExpressionStatement","src":"12569:32:81"},{"nativeSrc":"12610:17:81","nodeType":"YulAssignment","src":"12610:17:81","value":{"name":"value_2","nativeSrc":"12620:7:81","nodeType":"YulIdentifier","src":"12620:7:81"},"variableNames":[{"name":"value2","nativeSrc":"12610:6:81","nodeType":"YulIdentifier","src":"12610:6:81"}]},{"nativeSrc":"12636:16:81","nodeType":"YulVariableDeclaration","src":"12636:16:81","value":{"kind":"number","nativeSrc":"12651:1:81","nodeType":"YulLiteral","src":"12651:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"12640:7:81","nodeType":"YulTypedName","src":"12640:7:81","type":""}]},{"nativeSrc":"12661:43:81","nodeType":"YulAssignment","src":"12661:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12689:9:81","nodeType":"YulIdentifier","src":"12689:9:81"},{"kind":"number","nativeSrc":"12700:2:81","nodeType":"YulLiteral","src":"12700:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12685:3:81","nodeType":"YulIdentifier","src":"12685:3:81"},"nativeSrc":"12685:18:81","nodeType":"YulFunctionCall","src":"12685:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"12672:12:81","nodeType":"YulIdentifier","src":"12672:12:81"},"nativeSrc":"12672:32:81","nodeType":"YulFunctionCall","src":"12672:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"12661:7:81","nodeType":"YulIdentifier","src":"12661:7:81"}]},{"nativeSrc":"12713:17:81","nodeType":"YulAssignment","src":"12713:17:81","value":{"name":"value_3","nativeSrc":"12723:7:81","nodeType":"YulIdentifier","src":"12723:7:81"},"variableNames":[{"name":"value3","nativeSrc":"12713:6:81","nodeType":"YulIdentifier","src":"12713:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256","nativeSrc":"12080:656:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12141:9:81","nodeType":"YulTypedName","src":"12141:9:81","type":""},{"name":"dataEnd","nativeSrc":"12152:7:81","nodeType":"YulTypedName","src":"12152:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12164:6:81","nodeType":"YulTypedName","src":"12164:6:81","type":""},{"name":"value1","nativeSrc":"12172:6:81","nodeType":"YulTypedName","src":"12172:6:81","type":""},{"name":"value2","nativeSrc":"12180:6:81","nodeType":"YulTypedName","src":"12180:6:81","type":""},{"name":"value3","nativeSrc":"12188:6:81","nodeType":"YulTypedName","src":"12188:6:81","type":""}],"src":"12080:656:81"},{"body":{"nativeSrc":"12843:433:81","nodeType":"YulBlock","src":"12843:433:81","statements":[{"body":{"nativeSrc":"12889:16:81","nodeType":"YulBlock","src":"12889:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12898:1:81","nodeType":"YulLiteral","src":"12898:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"12901:1:81","nodeType":"YulLiteral","src":"12901:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12891:6:81","nodeType":"YulIdentifier","src":"12891:6:81"},"nativeSrc":"12891:12:81","nodeType":"YulFunctionCall","src":"12891:12:81"},"nativeSrc":"12891:12:81","nodeType":"YulExpressionStatement","src":"12891:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12864:7:81","nodeType":"YulIdentifier","src":"12864:7:81"},{"name":"headStart","nativeSrc":"12873:9:81","nodeType":"YulIdentifier","src":"12873:9:81"}],"functionName":{"name":"sub","nativeSrc":"12860:3:81","nodeType":"YulIdentifier","src":"12860:3:81"},"nativeSrc":"12860:23:81","nodeType":"YulFunctionCall","src":"12860:23:81"},{"kind":"number","nativeSrc":"12885:2:81","nodeType":"YulLiteral","src":"12885:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"12856:3:81","nodeType":"YulIdentifier","src":"12856:3:81"},"nativeSrc":"12856:32:81","nodeType":"YulFunctionCall","src":"12856:32:81"},"nativeSrc":"12853:52:81","nodeType":"YulIf","src":"12853:52:81"},{"nativeSrc":"12914:36:81","nodeType":"YulVariableDeclaration","src":"12914:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"12940:9:81","nodeType":"YulIdentifier","src":"12940:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"12927:12:81","nodeType":"YulIdentifier","src":"12927:12:81"},"nativeSrc":"12927:23:81","nodeType":"YulFunctionCall","src":"12927:23:81"},"variables":[{"name":"value","nativeSrc":"12918:5:81","nodeType":"YulTypedName","src":"12918:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12994:5:81","nodeType":"YulIdentifier","src":"12994:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12959:34:81","nodeType":"YulIdentifier","src":"12959:34:81"},"nativeSrc":"12959:41:81","nodeType":"YulFunctionCall","src":"12959:41:81"},"nativeSrc":"12959:41:81","nodeType":"YulExpressionStatement","src":"12959:41:81"},{"nativeSrc":"13009:15:81","nodeType":"YulAssignment","src":"13009:15:81","value":{"name":"value","nativeSrc":"13019:5:81","nodeType":"YulIdentifier","src":"13019:5:81"},"variableNames":[{"name":"value0","nativeSrc":"13009:6:81","nodeType":"YulIdentifier","src":"13009:6:81"}]},{"nativeSrc":"13033:47:81","nodeType":"YulVariableDeclaration","src":"13033:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13065:9:81","nodeType":"YulIdentifier","src":"13065:9:81"},{"kind":"number","nativeSrc":"13076:2:81","nodeType":"YulLiteral","src":"13076:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13061:3:81","nodeType":"YulIdentifier","src":"13061:3:81"},"nativeSrc":"13061:18:81","nodeType":"YulFunctionCall","src":"13061:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13048:12:81","nodeType":"YulIdentifier","src":"13048:12:81"},"nativeSrc":"13048:32:81","nodeType":"YulFunctionCall","src":"13048:32:81"},"variables":[{"name":"value_1","nativeSrc":"13037:7:81","nodeType":"YulTypedName","src":"13037:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13113:7:81","nodeType":"YulIdentifier","src":"13113:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"13089:23:81","nodeType":"YulIdentifier","src":"13089:23:81"},"nativeSrc":"13089:32:81","nodeType":"YulFunctionCall","src":"13089:32:81"},"nativeSrc":"13089:32:81","nodeType":"YulExpressionStatement","src":"13089:32:81"},{"nativeSrc":"13130:17:81","nodeType":"YulAssignment","src":"13130:17:81","value":{"name":"value_1","nativeSrc":"13140:7:81","nodeType":"YulIdentifier","src":"13140:7:81"},"variableNames":[{"name":"value1","nativeSrc":"13130:6:81","nodeType":"YulIdentifier","src":"13130:6:81"}]},{"nativeSrc":"13156:47:81","nodeType":"YulVariableDeclaration","src":"13156:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13188:9:81","nodeType":"YulIdentifier","src":"13188:9:81"},{"kind":"number","nativeSrc":"13199:2:81","nodeType":"YulLiteral","src":"13199:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13184:3:81","nodeType":"YulIdentifier","src":"13184:3:81"},"nativeSrc":"13184:18:81","nodeType":"YulFunctionCall","src":"13184:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13171:12:81","nodeType":"YulIdentifier","src":"13171:12:81"},"nativeSrc":"13171:32:81","nodeType":"YulFunctionCall","src":"13171:32:81"},"variables":[{"name":"value_2","nativeSrc":"13160:7:81","nodeType":"YulTypedName","src":"13160:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"13236:7:81","nodeType":"YulIdentifier","src":"13236:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"13212:23:81","nodeType":"YulIdentifier","src":"13212:23:81"},"nativeSrc":"13212:32:81","nodeType":"YulFunctionCall","src":"13212:32:81"},"nativeSrc":"13212:32:81","nodeType":"YulExpressionStatement","src":"13212:32:81"},{"nativeSrc":"13253:17:81","nodeType":"YulAssignment","src":"13253:17:81","value":{"name":"value_2","nativeSrc":"13263:7:81","nodeType":"YulIdentifier","src":"13263:7:81"},"variableNames":[{"name":"value2","nativeSrc":"13253:6:81","nodeType":"YulIdentifier","src":"13253:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32","nativeSrc":"12741:535:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12793:9:81","nodeType":"YulTypedName","src":"12793:9:81","type":""},{"name":"dataEnd","nativeSrc":"12804:7:81","nodeType":"YulTypedName","src":"12804:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12816:6:81","nodeType":"YulTypedName","src":"12816:6:81","type":""},{"name":"value1","nativeSrc":"12824:6:81","nodeType":"YulTypedName","src":"12824:6:81","type":""},{"name":"value2","nativeSrc":"12832:6:81","nodeType":"YulTypedName","src":"12832:6:81","type":""}],"src":"12741:535:81"},{"body":{"nativeSrc":"13399:102:81","nodeType":"YulBlock","src":"13399:102:81","statements":[{"nativeSrc":"13409:26:81","nodeType":"YulAssignment","src":"13409:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13421:9:81","nodeType":"YulIdentifier","src":"13421:9:81"},{"kind":"number","nativeSrc":"13432:2:81","nodeType":"YulLiteral","src":"13432:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13417:3:81","nodeType":"YulIdentifier","src":"13417:3:81"},"nativeSrc":"13417:18:81","nodeType":"YulFunctionCall","src":"13417:18:81"},"variableNames":[{"name":"tail","nativeSrc":"13409:4:81","nodeType":"YulIdentifier","src":"13409:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13451:9:81","nodeType":"YulIdentifier","src":"13451:9:81"},{"arguments":[{"name":"value0","nativeSrc":"13466:6:81","nodeType":"YulIdentifier","src":"13466:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13482:3:81","nodeType":"YulLiteral","src":"13482:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"13487:1:81","nodeType":"YulLiteral","src":"13487:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13478:3:81","nodeType":"YulIdentifier","src":"13478:3:81"},"nativeSrc":"13478:11:81","nodeType":"YulFunctionCall","src":"13478:11:81"},{"kind":"number","nativeSrc":"13491:1:81","nodeType":"YulLiteral","src":"13491:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13474:3:81","nodeType":"YulIdentifier","src":"13474:3:81"},"nativeSrc":"13474:19:81","nodeType":"YulFunctionCall","src":"13474:19:81"}],"functionName":{"name":"and","nativeSrc":"13462:3:81","nodeType":"YulIdentifier","src":"13462:3:81"},"nativeSrc":"13462:32:81","nodeType":"YulFunctionCall","src":"13462:32:81"}],"functionName":{"name":"mstore","nativeSrc":"13444:6:81","nodeType":"YulIdentifier","src":"13444:6:81"},"nativeSrc":"13444:51:81","nodeType":"YulFunctionCall","src":"13444:51:81"},"nativeSrc":"13444:51:81","nodeType":"YulExpressionStatement","src":"13444:51:81"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$9796__to_t_address__fromStack_reversed","nativeSrc":"13281:220:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13368:9:81","nodeType":"YulTypedName","src":"13368:9:81","type":""},{"name":"value0","nativeSrc":"13379:6:81","nodeType":"YulTypedName","src":"13379:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13390:4:81","nodeType":"YulTypedName","src":"13390:4:81","type":""}],"src":"13281:220:81"},{"body":{"nativeSrc":"13610:424:81","nodeType":"YulBlock","src":"13610:424:81","statements":[{"body":{"nativeSrc":"13656:16:81","nodeType":"YulBlock","src":"13656:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13665:1:81","nodeType":"YulLiteral","src":"13665:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"13668:1:81","nodeType":"YulLiteral","src":"13668:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13658:6:81","nodeType":"YulIdentifier","src":"13658:6:81"},"nativeSrc":"13658:12:81","nodeType":"YulFunctionCall","src":"13658:12:81"},"nativeSrc":"13658:12:81","nodeType":"YulExpressionStatement","src":"13658:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13631:7:81","nodeType":"YulIdentifier","src":"13631:7:81"},{"name":"headStart","nativeSrc":"13640:9:81","nodeType":"YulIdentifier","src":"13640:9:81"}],"functionName":{"name":"sub","nativeSrc":"13627:3:81","nodeType":"YulIdentifier","src":"13627:3:81"},"nativeSrc":"13627:23:81","nodeType":"YulFunctionCall","src":"13627:23:81"},{"kind":"number","nativeSrc":"13652:2:81","nodeType":"YulLiteral","src":"13652:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"13623:3:81","nodeType":"YulIdentifier","src":"13623:3:81"},"nativeSrc":"13623:32:81","nodeType":"YulFunctionCall","src":"13623:32:81"},"nativeSrc":"13620:52:81","nodeType":"YulIf","src":"13620:52:81"},{"nativeSrc":"13681:14:81","nodeType":"YulVariableDeclaration","src":"13681:14:81","value":{"kind":"number","nativeSrc":"13694:1:81","nodeType":"YulLiteral","src":"13694:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"13685:5:81","nodeType":"YulTypedName","src":"13685:5:81","type":""}]},{"nativeSrc":"13704:32:81","nodeType":"YulAssignment","src":"13704:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"13726:9:81","nodeType":"YulIdentifier","src":"13726:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"13713:12:81","nodeType":"YulIdentifier","src":"13713:12:81"},"nativeSrc":"13713:23:81","nodeType":"YulFunctionCall","src":"13713:23:81"},"variableNames":[{"name":"value","nativeSrc":"13704:5:81","nodeType":"YulIdentifier","src":"13704:5:81"}]},{"nativeSrc":"13745:15:81","nodeType":"YulAssignment","src":"13745:15:81","value":{"name":"value","nativeSrc":"13755:5:81","nodeType":"YulIdentifier","src":"13755:5:81"},"variableNames":[{"name":"value0","nativeSrc":"13745:6:81","nodeType":"YulIdentifier","src":"13745:6:81"}]},{"nativeSrc":"13769:47:81","nodeType":"YulVariableDeclaration","src":"13769:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13801:9:81","nodeType":"YulIdentifier","src":"13801:9:81"},{"kind":"number","nativeSrc":"13812:2:81","nodeType":"YulLiteral","src":"13812:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13797:3:81","nodeType":"YulIdentifier","src":"13797:3:81"},"nativeSrc":"13797:18:81","nodeType":"YulFunctionCall","src":"13797:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13784:12:81","nodeType":"YulIdentifier","src":"13784:12:81"},"nativeSrc":"13784:32:81","nodeType":"YulFunctionCall","src":"13784:32:81"},"variables":[{"name":"value_1","nativeSrc":"13773:7:81","nodeType":"YulTypedName","src":"13773:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13860:7:81","nodeType":"YulIdentifier","src":"13860:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13825:34:81","nodeType":"YulIdentifier","src":"13825:34:81"},"nativeSrc":"13825:43:81","nodeType":"YulFunctionCall","src":"13825:43:81"},"nativeSrc":"13825:43:81","nodeType":"YulExpressionStatement","src":"13825:43:81"},{"nativeSrc":"13877:17:81","nodeType":"YulAssignment","src":"13877:17:81","value":{"name":"value_1","nativeSrc":"13887:7:81","nodeType":"YulIdentifier","src":"13887:7:81"},"variableNames":[{"name":"value1","nativeSrc":"13877:6:81","nodeType":"YulIdentifier","src":"13877:6:81"}]},{"nativeSrc":"13903:47:81","nodeType":"YulVariableDeclaration","src":"13903:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13935:9:81","nodeType":"YulIdentifier","src":"13935:9:81"},{"kind":"number","nativeSrc":"13946:2:81","nodeType":"YulLiteral","src":"13946:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13931:3:81","nodeType":"YulIdentifier","src":"13931:3:81"},"nativeSrc":"13931:18:81","nodeType":"YulFunctionCall","src":"13931:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"13918:12:81","nodeType":"YulIdentifier","src":"13918:12:81"},"nativeSrc":"13918:32:81","nodeType":"YulFunctionCall","src":"13918:32:81"},"variables":[{"name":"value_2","nativeSrc":"13907:7:81","nodeType":"YulTypedName","src":"13907:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"13994:7:81","nodeType":"YulIdentifier","src":"13994:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13959:34:81","nodeType":"YulIdentifier","src":"13959:34:81"},"nativeSrc":"13959:43:81","nodeType":"YulFunctionCall","src":"13959:43:81"},"nativeSrc":"13959:43:81","nodeType":"YulExpressionStatement","src":"13959:43:81"},{"nativeSrc":"14011:17:81","nodeType":"YulAssignment","src":"14011:17:81","value":{"name":"value_2","nativeSrc":"14021:7:81","nodeType":"YulIdentifier","src":"14021:7:81"},"variableNames":[{"name":"value2","nativeSrc":"14011:6:81","nodeType":"YulIdentifier","src":"14011:6:81"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"13506:528:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13560:9:81","nodeType":"YulTypedName","src":"13560:9:81","type":""},{"name":"dataEnd","nativeSrc":"13571:7:81","nodeType":"YulTypedName","src":"13571:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13583:6:81","nodeType":"YulTypedName","src":"13583:6:81","type":""},{"name":"value1","nativeSrc":"13591:6:81","nodeType":"YulTypedName","src":"13591:6:81","type":""},{"name":"value2","nativeSrc":"13599:6:81","nodeType":"YulTypedName","src":"13599:6:81","type":""}],"src":"13506:528:81"},{"body":{"nativeSrc":"14143:393:81","nodeType":"YulBlock","src":"14143:393:81","statements":[{"body":{"nativeSrc":"14189:16:81","nodeType":"YulBlock","src":"14189:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14198:1:81","nodeType":"YulLiteral","src":"14198:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14201:1:81","nodeType":"YulLiteral","src":"14201:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14191:6:81","nodeType":"YulIdentifier","src":"14191:6:81"},"nativeSrc":"14191:12:81","nodeType":"YulFunctionCall","src":"14191:12:81"},"nativeSrc":"14191:12:81","nodeType":"YulExpressionStatement","src":"14191:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14164:7:81","nodeType":"YulIdentifier","src":"14164:7:81"},{"name":"headStart","nativeSrc":"14173:9:81","nodeType":"YulIdentifier","src":"14173:9:81"}],"functionName":{"name":"sub","nativeSrc":"14160:3:81","nodeType":"YulIdentifier","src":"14160:3:81"},"nativeSrc":"14160:23:81","nodeType":"YulFunctionCall","src":"14160:23:81"},{"kind":"number","nativeSrc":"14185:2:81","nodeType":"YulLiteral","src":"14185:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"14156:3:81","nodeType":"YulIdentifier","src":"14156:3:81"},"nativeSrc":"14156:32:81","nodeType":"YulFunctionCall","src":"14156:32:81"},"nativeSrc":"14153:52:81","nodeType":"YulIf","src":"14153:52:81"},{"nativeSrc":"14214:36:81","nodeType":"YulVariableDeclaration","src":"14214:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14240:9:81","nodeType":"YulIdentifier","src":"14240:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"14227:12:81","nodeType":"YulIdentifier","src":"14227:12:81"},"nativeSrc":"14227:23:81","nodeType":"YulFunctionCall","src":"14227:23:81"},"variables":[{"name":"value","nativeSrc":"14218:5:81","nodeType":"YulTypedName","src":"14218:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14294:5:81","nodeType":"YulIdentifier","src":"14294:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14259:34:81","nodeType":"YulIdentifier","src":"14259:34:81"},"nativeSrc":"14259:41:81","nodeType":"YulFunctionCall","src":"14259:41:81"},"nativeSrc":"14259:41:81","nodeType":"YulExpressionStatement","src":"14259:41:81"},{"nativeSrc":"14309:15:81","nodeType":"YulAssignment","src":"14309:15:81","value":{"name":"value","nativeSrc":"14319:5:81","nodeType":"YulIdentifier","src":"14319:5:81"},"variableNames":[{"name":"value0","nativeSrc":"14309:6:81","nodeType":"YulIdentifier","src":"14309:6:81"}]},{"nativeSrc":"14333:16:81","nodeType":"YulVariableDeclaration","src":"14333:16:81","value":{"kind":"number","nativeSrc":"14348:1:81","nodeType":"YulLiteral","src":"14348:1:81","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"14337:7:81","nodeType":"YulTypedName","src":"14337:7:81","type":""}]},{"nativeSrc":"14358:43:81","nodeType":"YulAssignment","src":"14358:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14386:9:81","nodeType":"YulIdentifier","src":"14386:9:81"},{"kind":"number","nativeSrc":"14397:2:81","nodeType":"YulLiteral","src":"14397:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14382:3:81","nodeType":"YulIdentifier","src":"14382:3:81"},"nativeSrc":"14382:18:81","nodeType":"YulFunctionCall","src":"14382:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"14369:12:81","nodeType":"YulIdentifier","src":"14369:12:81"},"nativeSrc":"14369:32:81","nodeType":"YulFunctionCall","src":"14369:32:81"},"variableNames":[{"name":"value_1","nativeSrc":"14358:7:81","nodeType":"YulIdentifier","src":"14358:7:81"}]},{"nativeSrc":"14410:17:81","nodeType":"YulAssignment","src":"14410:17:81","value":{"name":"value_1","nativeSrc":"14420:7:81","nodeType":"YulIdentifier","src":"14420:7:81"},"variableNames":[{"name":"value1","nativeSrc":"14410:6:81","nodeType":"YulIdentifier","src":"14410:6:81"}]},{"nativeSrc":"14436:16:81","nodeType":"YulVariableDeclaration","src":"14436:16:81","value":{"kind":"number","nativeSrc":"14451:1:81","nodeType":"YulLiteral","src":"14451:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"14440:7:81","nodeType":"YulTypedName","src":"14440:7:81","type":""}]},{"nativeSrc":"14461:43:81","nodeType":"YulAssignment","src":"14461:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14489:9:81","nodeType":"YulIdentifier","src":"14489:9:81"},{"kind":"number","nativeSrc":"14500:2:81","nodeType":"YulLiteral","src":"14500:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14485:3:81","nodeType":"YulIdentifier","src":"14485:3:81"},"nativeSrc":"14485:18:81","nodeType":"YulFunctionCall","src":"14485:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"14472:12:81","nodeType":"YulIdentifier","src":"14472:12:81"},"nativeSrc":"14472:32:81","nodeType":"YulFunctionCall","src":"14472:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"14461:7:81","nodeType":"YulIdentifier","src":"14461:7:81"}]},{"nativeSrc":"14513:17:81","nodeType":"YulAssignment","src":"14513:17:81","value":{"name":"value_2","nativeSrc":"14523:7:81","nodeType":"YulIdentifier","src":"14523:7:81"},"variableNames":[{"name":"value2","nativeSrc":"14513:6:81","nodeType":"YulIdentifier","src":"14513:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nativeSrc":"14039:497:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14093:9:81","nodeType":"YulTypedName","src":"14093:9:81","type":""},{"name":"dataEnd","nativeSrc":"14104:7:81","nodeType":"YulTypedName","src":"14104:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14116:6:81","nodeType":"YulTypedName","src":"14116:6:81","type":""},{"name":"value1","nativeSrc":"14124:6:81","nodeType":"YulTypedName","src":"14124:6:81","type":""},{"name":"value2","nativeSrc":"14132:6:81","nodeType":"YulTypedName","src":"14132:6:81","type":""}],"src":"14039:497:81"},{"body":{"nativeSrc":"14661:517:81","nodeType":"YulBlock","src":"14661:517:81","statements":[{"body":{"nativeSrc":"14708:16:81","nodeType":"YulBlock","src":"14708:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14717:1:81","nodeType":"YulLiteral","src":"14717:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"14720:1:81","nodeType":"YulLiteral","src":"14720:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14710:6:81","nodeType":"YulIdentifier","src":"14710:6:81"},"nativeSrc":"14710:12:81","nodeType":"YulFunctionCall","src":"14710:12:81"},"nativeSrc":"14710:12:81","nodeType":"YulExpressionStatement","src":"14710:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14682:7:81","nodeType":"YulIdentifier","src":"14682:7:81"},{"name":"headStart","nativeSrc":"14691:9:81","nodeType":"YulIdentifier","src":"14691:9:81"}],"functionName":{"name":"sub","nativeSrc":"14678:3:81","nodeType":"YulIdentifier","src":"14678:3:81"},"nativeSrc":"14678:23:81","nodeType":"YulFunctionCall","src":"14678:23:81"},{"kind":"number","nativeSrc":"14703:3:81","nodeType":"YulLiteral","src":"14703:3:81","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"14674:3:81","nodeType":"YulIdentifier","src":"14674:3:81"},"nativeSrc":"14674:33:81","nodeType":"YulFunctionCall","src":"14674:33:81"},"nativeSrc":"14671:53:81","nodeType":"YulIf","src":"14671:53:81"},{"nativeSrc":"14733:36:81","nodeType":"YulVariableDeclaration","src":"14733:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"14759:9:81","nodeType":"YulIdentifier","src":"14759:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"14746:12:81","nodeType":"YulIdentifier","src":"14746:12:81"},"nativeSrc":"14746:23:81","nodeType":"YulFunctionCall","src":"14746:23:81"},"variables":[{"name":"value","nativeSrc":"14737:5:81","nodeType":"YulTypedName","src":"14737:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14813:5:81","nodeType":"YulIdentifier","src":"14813:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14778:34:81","nodeType":"YulIdentifier","src":"14778:34:81"},"nativeSrc":"14778:41:81","nodeType":"YulFunctionCall","src":"14778:41:81"},"nativeSrc":"14778:41:81","nodeType":"YulExpressionStatement","src":"14778:41:81"},{"nativeSrc":"14828:15:81","nodeType":"YulAssignment","src":"14828:15:81","value":{"name":"value","nativeSrc":"14838:5:81","nodeType":"YulIdentifier","src":"14838:5:81"},"variableNames":[{"name":"value0","nativeSrc":"14828:6:81","nodeType":"YulIdentifier","src":"14828:6:81"}]},{"nativeSrc":"14852:47:81","nodeType":"YulVariableDeclaration","src":"14852:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14884:9:81","nodeType":"YulIdentifier","src":"14884:9:81"},{"kind":"number","nativeSrc":"14895:2:81","nodeType":"YulLiteral","src":"14895:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14880:3:81","nodeType":"YulIdentifier","src":"14880:3:81"},"nativeSrc":"14880:18:81","nodeType":"YulFunctionCall","src":"14880:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"14867:12:81","nodeType":"YulIdentifier","src":"14867:12:81"},"nativeSrc":"14867:32:81","nodeType":"YulFunctionCall","src":"14867:32:81"},"variables":[{"name":"value_1","nativeSrc":"14856:7:81","nodeType":"YulTypedName","src":"14856:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"14932:7:81","nodeType":"YulIdentifier","src":"14932:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"14908:23:81","nodeType":"YulIdentifier","src":"14908:23:81"},"nativeSrc":"14908:32:81","nodeType":"YulFunctionCall","src":"14908:32:81"},"nativeSrc":"14908:32:81","nodeType":"YulExpressionStatement","src":"14908:32:81"},{"nativeSrc":"14949:17:81","nodeType":"YulAssignment","src":"14949:17:81","value":{"name":"value_1","nativeSrc":"14959:7:81","nodeType":"YulIdentifier","src":"14959:7:81"},"variableNames":[{"name":"value1","nativeSrc":"14949:6:81","nodeType":"YulIdentifier","src":"14949:6:81"}]},{"nativeSrc":"14975:16:81","nodeType":"YulVariableDeclaration","src":"14975:16:81","value":{"kind":"number","nativeSrc":"14990:1:81","nodeType":"YulLiteral","src":"14990:1:81","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"14979:7:81","nodeType":"YulTypedName","src":"14979:7:81","type":""}]},{"nativeSrc":"15000:43:81","nodeType":"YulAssignment","src":"15000:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15028:9:81","nodeType":"YulIdentifier","src":"15028:9:81"},{"kind":"number","nativeSrc":"15039:2:81","nodeType":"YulLiteral","src":"15039:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15024:3:81","nodeType":"YulIdentifier","src":"15024:3:81"},"nativeSrc":"15024:18:81","nodeType":"YulFunctionCall","src":"15024:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"15011:12:81","nodeType":"YulIdentifier","src":"15011:12:81"},"nativeSrc":"15011:32:81","nodeType":"YulFunctionCall","src":"15011:32:81"},"variableNames":[{"name":"value_2","nativeSrc":"15000:7:81","nodeType":"YulIdentifier","src":"15000:7:81"}]},{"nativeSrc":"15052:17:81","nodeType":"YulAssignment","src":"15052:17:81","value":{"name":"value_2","nativeSrc":"15062:7:81","nodeType":"YulIdentifier","src":"15062:7:81"},"variableNames":[{"name":"value2","nativeSrc":"15052:6:81","nodeType":"YulIdentifier","src":"15052:6:81"}]},{"nativeSrc":"15078:16:81","nodeType":"YulVariableDeclaration","src":"15078:16:81","value":{"kind":"number","nativeSrc":"15093:1:81","nodeType":"YulLiteral","src":"15093:1:81","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"15082:7:81","nodeType":"YulTypedName","src":"15082:7:81","type":""}]},{"nativeSrc":"15103:43:81","nodeType":"YulAssignment","src":"15103:43:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15131:9:81","nodeType":"YulIdentifier","src":"15131:9:81"},{"kind":"number","nativeSrc":"15142:2:81","nodeType":"YulLiteral","src":"15142:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15127:3:81","nodeType":"YulIdentifier","src":"15127:3:81"},"nativeSrc":"15127:18:81","nodeType":"YulFunctionCall","src":"15127:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"15114:12:81","nodeType":"YulIdentifier","src":"15114:12:81"},"nativeSrc":"15114:32:81","nodeType":"YulFunctionCall","src":"15114:32:81"},"variableNames":[{"name":"value_3","nativeSrc":"15103:7:81","nodeType":"YulIdentifier","src":"15103:7:81"}]},{"nativeSrc":"15155:17:81","nodeType":"YulAssignment","src":"15155:17:81","value":{"name":"value_3","nativeSrc":"15165:7:81","nodeType":"YulIdentifier","src":"15165:7:81"},"variableNames":[{"name":"value3","nativeSrc":"15155:6:81","nodeType":"YulIdentifier","src":"15155:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256","nativeSrc":"14541:637:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14603:9:81","nodeType":"YulTypedName","src":"14603:9:81","type":""},{"name":"dataEnd","nativeSrc":"14614:7:81","nodeType":"YulTypedName","src":"14614:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14626:6:81","nodeType":"YulTypedName","src":"14626:6:81","type":""},{"name":"value1","nativeSrc":"14634:6:81","nodeType":"YulTypedName","src":"14634:6:81","type":""},{"name":"value2","nativeSrc":"14642:6:81","nodeType":"YulTypedName","src":"14642:6:81","type":""},{"name":"value3","nativeSrc":"14650:6:81","nodeType":"YulTypedName","src":"14650:6:81","type":""}],"src":"14541:637:81"},{"body":{"nativeSrc":"15269:243:81","nodeType":"YulBlock","src":"15269:243:81","statements":[{"body":{"nativeSrc":"15315:16:81","nodeType":"YulBlock","src":"15315:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15324:1:81","nodeType":"YulLiteral","src":"15324:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15327:1:81","nodeType":"YulLiteral","src":"15327:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15317:6:81","nodeType":"YulIdentifier","src":"15317:6:81"},"nativeSrc":"15317:12:81","nodeType":"YulFunctionCall","src":"15317:12:81"},"nativeSrc":"15317:12:81","nodeType":"YulExpressionStatement","src":"15317:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15290:7:81","nodeType":"YulIdentifier","src":"15290:7:81"},{"name":"headStart","nativeSrc":"15299:9:81","nodeType":"YulIdentifier","src":"15299:9:81"}],"functionName":{"name":"sub","nativeSrc":"15286:3:81","nodeType":"YulIdentifier","src":"15286:3:81"},"nativeSrc":"15286:23:81","nodeType":"YulFunctionCall","src":"15286:23:81"},{"kind":"number","nativeSrc":"15311:2:81","nodeType":"YulLiteral","src":"15311:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"15282:3:81","nodeType":"YulIdentifier","src":"15282:3:81"},"nativeSrc":"15282:32:81","nodeType":"YulFunctionCall","src":"15282:32:81"},"nativeSrc":"15279:52:81","nodeType":"YulIf","src":"15279:52:81"},{"nativeSrc":"15340:36:81","nodeType":"YulVariableDeclaration","src":"15340:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"15366:9:81","nodeType":"YulIdentifier","src":"15366:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"15353:12:81","nodeType":"YulIdentifier","src":"15353:12:81"},"nativeSrc":"15353:23:81","nodeType":"YulFunctionCall","src":"15353:23:81"},"variables":[{"name":"value","nativeSrc":"15344:5:81","nodeType":"YulTypedName","src":"15344:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15420:5:81","nodeType":"YulIdentifier","src":"15420:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15385:34:81","nodeType":"YulIdentifier","src":"15385:34:81"},"nativeSrc":"15385:41:81","nodeType":"YulFunctionCall","src":"15385:41:81"},"nativeSrc":"15385:41:81","nodeType":"YulExpressionStatement","src":"15385:41:81"},{"nativeSrc":"15435:15:81","nodeType":"YulAssignment","src":"15435:15:81","value":{"name":"value","nativeSrc":"15445:5:81","nodeType":"YulIdentifier","src":"15445:5:81"},"variableNames":[{"name":"value0","nativeSrc":"15435:6:81","nodeType":"YulIdentifier","src":"15435:6:81"}]},{"nativeSrc":"15459:47:81","nodeType":"YulAssignment","src":"15459:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15491:9:81","nodeType":"YulIdentifier","src":"15491:9:81"},{"kind":"number","nativeSrc":"15502:2:81","nodeType":"YulLiteral","src":"15502:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15487:3:81","nodeType":"YulIdentifier","src":"15487:3:81"},"nativeSrc":"15487:18:81","nodeType":"YulFunctionCall","src":"15487:18:81"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"15469:17:81","nodeType":"YulIdentifier","src":"15469:17:81"},"nativeSrc":"15469:37:81","nodeType":"YulFunctionCall","src":"15469:37:81"},"variableNames":[{"name":"value1","nativeSrc":"15459:6:81","nodeType":"YulIdentifier","src":"15459:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"15183:329:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15227:9:81","nodeType":"YulTypedName","src":"15227:9:81","type":""},{"name":"dataEnd","nativeSrc":"15238:7:81","nodeType":"YulTypedName","src":"15238:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15250:6:81","nodeType":"YulTypedName","src":"15250:6:81","type":""},{"name":"value1","nativeSrc":"15258:6:81","nodeType":"YulTypedName","src":"15258:6:81","type":""}],"src":"15183:329:81"},{"body":{"nativeSrc":"15604:321:81","nodeType":"YulBlock","src":"15604:321:81","statements":[{"body":{"nativeSrc":"15650:16:81","nodeType":"YulBlock","src":"15650:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15659:1:81","nodeType":"YulLiteral","src":"15659:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"15662:1:81","nodeType":"YulLiteral","src":"15662:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15652:6:81","nodeType":"YulIdentifier","src":"15652:6:81"},"nativeSrc":"15652:12:81","nodeType":"YulFunctionCall","src":"15652:12:81"},"nativeSrc":"15652:12:81","nodeType":"YulExpressionStatement","src":"15652:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15625:7:81","nodeType":"YulIdentifier","src":"15625:7:81"},{"name":"headStart","nativeSrc":"15634:9:81","nodeType":"YulIdentifier","src":"15634:9:81"}],"functionName":{"name":"sub","nativeSrc":"15621:3:81","nodeType":"YulIdentifier","src":"15621:3:81"},"nativeSrc":"15621:23:81","nodeType":"YulFunctionCall","src":"15621:23:81"},{"kind":"number","nativeSrc":"15646:2:81","nodeType":"YulLiteral","src":"15646:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"15617:3:81","nodeType":"YulIdentifier","src":"15617:3:81"},"nativeSrc":"15617:32:81","nodeType":"YulFunctionCall","src":"15617:32:81"},"nativeSrc":"15614:52:81","nodeType":"YulIf","src":"15614:52:81"},{"nativeSrc":"15675:36:81","nodeType":"YulVariableDeclaration","src":"15675:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"15701:9:81","nodeType":"YulIdentifier","src":"15701:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"15688:12:81","nodeType":"YulIdentifier","src":"15688:12:81"},"nativeSrc":"15688:23:81","nodeType":"YulFunctionCall","src":"15688:23:81"},"variables":[{"name":"value","nativeSrc":"15679:5:81","nodeType":"YulTypedName","src":"15679:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15755:5:81","nodeType":"YulIdentifier","src":"15755:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15720:34:81","nodeType":"YulIdentifier","src":"15720:34:81"},"nativeSrc":"15720:41:81","nodeType":"YulFunctionCall","src":"15720:41:81"},"nativeSrc":"15720:41:81","nodeType":"YulExpressionStatement","src":"15720:41:81"},{"nativeSrc":"15770:15:81","nodeType":"YulAssignment","src":"15770:15:81","value":{"name":"value","nativeSrc":"15780:5:81","nodeType":"YulIdentifier","src":"15780:5:81"},"variableNames":[{"name":"value0","nativeSrc":"15770:6:81","nodeType":"YulIdentifier","src":"15770:6:81"}]},{"nativeSrc":"15794:47:81","nodeType":"YulVariableDeclaration","src":"15794:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15826:9:81","nodeType":"YulIdentifier","src":"15826:9:81"},{"kind":"number","nativeSrc":"15837:2:81","nodeType":"YulLiteral","src":"15837:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15822:3:81","nodeType":"YulIdentifier","src":"15822:3:81"},"nativeSrc":"15822:18:81","nodeType":"YulFunctionCall","src":"15822:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"15809:12:81","nodeType":"YulIdentifier","src":"15809:12:81"},"nativeSrc":"15809:32:81","nodeType":"YulFunctionCall","src":"15809:32:81"},"variables":[{"name":"value_1","nativeSrc":"15798:7:81","nodeType":"YulTypedName","src":"15798:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15885:7:81","nodeType":"YulIdentifier","src":"15885:7:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15850:34:81","nodeType":"YulIdentifier","src":"15850:34:81"},"nativeSrc":"15850:43:81","nodeType":"YulFunctionCall","src":"15850:43:81"},"nativeSrc":"15850:43:81","nodeType":"YulExpressionStatement","src":"15850:43:81"},{"nativeSrc":"15902:17:81","nodeType":"YulAssignment","src":"15902:17:81","value":{"name":"value_1","nativeSrc":"15912:7:81","nodeType":"YulIdentifier","src":"15912:7:81"},"variableNames":[{"name":"value1","nativeSrc":"15902:6:81","nodeType":"YulIdentifier","src":"15902:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"15517:408:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15562:9:81","nodeType":"YulTypedName","src":"15562:9:81","type":""},{"name":"dataEnd","nativeSrc":"15573:7:81","nodeType":"YulTypedName","src":"15573:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15585:6:81","nodeType":"YulTypedName","src":"15585:6:81","type":""},{"name":"value1","nativeSrc":"15593:6:81","nodeType":"YulTypedName","src":"15593:6:81","type":""}],"src":"15517:408:81"},{"body":{"nativeSrc":"16063:633:81","nodeType":"YulBlock","src":"16063:633:81","statements":[{"body":{"nativeSrc":"16109:16:81","nodeType":"YulBlock","src":"16109:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16118:1:81","nodeType":"YulLiteral","src":"16118:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16121:1:81","nodeType":"YulLiteral","src":"16121:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16111:6:81","nodeType":"YulIdentifier","src":"16111:6:81"},"nativeSrc":"16111:12:81","nodeType":"YulFunctionCall","src":"16111:12:81"},"nativeSrc":"16111:12:81","nodeType":"YulExpressionStatement","src":"16111:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16084:7:81","nodeType":"YulIdentifier","src":"16084:7:81"},{"name":"headStart","nativeSrc":"16093:9:81","nodeType":"YulIdentifier","src":"16093:9:81"}],"functionName":{"name":"sub","nativeSrc":"16080:3:81","nodeType":"YulIdentifier","src":"16080:3:81"},"nativeSrc":"16080:23:81","nodeType":"YulFunctionCall","src":"16080:23:81"},{"kind":"number","nativeSrc":"16105:2:81","nodeType":"YulLiteral","src":"16105:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"16076:3:81","nodeType":"YulIdentifier","src":"16076:3:81"},"nativeSrc":"16076:32:81","nodeType":"YulFunctionCall","src":"16076:32:81"},"nativeSrc":"16073:52:81","nodeType":"YulIf","src":"16073:52:81"},{"nativeSrc":"16134:36:81","nodeType":"YulVariableDeclaration","src":"16134:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16160:9:81","nodeType":"YulIdentifier","src":"16160:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"16147:12:81","nodeType":"YulIdentifier","src":"16147:12:81"},"nativeSrc":"16147:23:81","nodeType":"YulFunctionCall","src":"16147:23:81"},"variables":[{"name":"value","nativeSrc":"16138:5:81","nodeType":"YulTypedName","src":"16138:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16214:5:81","nodeType":"YulIdentifier","src":"16214:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16179:34:81","nodeType":"YulIdentifier","src":"16179:34:81"},"nativeSrc":"16179:41:81","nodeType":"YulFunctionCall","src":"16179:41:81"},"nativeSrc":"16179:41:81","nodeType":"YulExpressionStatement","src":"16179:41:81"},{"nativeSrc":"16229:15:81","nodeType":"YulAssignment","src":"16229:15:81","value":{"name":"value","nativeSrc":"16239:5:81","nodeType":"YulIdentifier","src":"16239:5:81"},"variableNames":[{"name":"value0","nativeSrc":"16229:6:81","nodeType":"YulIdentifier","src":"16229:6:81"}]},{"nativeSrc":"16253:46:81","nodeType":"YulVariableDeclaration","src":"16253:46:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16284:9:81","nodeType":"YulIdentifier","src":"16284:9:81"},{"kind":"number","nativeSrc":"16295:2:81","nodeType":"YulLiteral","src":"16295:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16280:3:81","nodeType":"YulIdentifier","src":"16280:3:81"},"nativeSrc":"16280:18:81","nodeType":"YulFunctionCall","src":"16280:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"16267:12:81","nodeType":"YulIdentifier","src":"16267:12:81"},"nativeSrc":"16267:32:81","nodeType":"YulFunctionCall","src":"16267:32:81"},"variables":[{"name":"offset","nativeSrc":"16257:6:81","nodeType":"YulTypedName","src":"16257:6:81","type":""}]},{"body":{"nativeSrc":"16342:16:81","nodeType":"YulBlock","src":"16342:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16351:1:81","nodeType":"YulLiteral","src":"16351:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16354:1:81","nodeType":"YulLiteral","src":"16354:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16344:6:81","nodeType":"YulIdentifier","src":"16344:6:81"},"nativeSrc":"16344:12:81","nodeType":"YulFunctionCall","src":"16344:12:81"},"nativeSrc":"16344:12:81","nodeType":"YulExpressionStatement","src":"16344:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"16314:6:81","nodeType":"YulIdentifier","src":"16314:6:81"},{"kind":"number","nativeSrc":"16322:18:81","nodeType":"YulLiteral","src":"16322:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16311:2:81","nodeType":"YulIdentifier","src":"16311:2:81"},"nativeSrc":"16311:30:81","nodeType":"YulFunctionCall","src":"16311:30:81"},"nativeSrc":"16308:50:81","nodeType":"YulIf","src":"16308:50:81"},{"nativeSrc":"16367:32:81","nodeType":"YulVariableDeclaration","src":"16367:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16381:9:81","nodeType":"YulIdentifier","src":"16381:9:81"},{"name":"offset","nativeSrc":"16392:6:81","nodeType":"YulIdentifier","src":"16392:6:81"}],"functionName":{"name":"add","nativeSrc":"16377:3:81","nodeType":"YulIdentifier","src":"16377:3:81"},"nativeSrc":"16377:22:81","nodeType":"YulFunctionCall","src":"16377:22:81"},"variables":[{"name":"_1","nativeSrc":"16371:2:81","nodeType":"YulTypedName","src":"16371:2:81","type":""}]},{"body":{"nativeSrc":"16447:16:81","nodeType":"YulBlock","src":"16447:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16456:1:81","nodeType":"YulLiteral","src":"16456:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16459:1:81","nodeType":"YulLiteral","src":"16459:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16449:6:81","nodeType":"YulIdentifier","src":"16449:6:81"},"nativeSrc":"16449:12:81","nodeType":"YulFunctionCall","src":"16449:12:81"},"nativeSrc":"16449:12:81","nodeType":"YulExpressionStatement","src":"16449:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"16426:2:81","nodeType":"YulIdentifier","src":"16426:2:81"},{"kind":"number","nativeSrc":"16430:4:81","nodeType":"YulLiteral","src":"16430:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"16422:3:81","nodeType":"YulIdentifier","src":"16422:3:81"},"nativeSrc":"16422:13:81","nodeType":"YulFunctionCall","src":"16422:13:81"},{"name":"dataEnd","nativeSrc":"16437:7:81","nodeType":"YulIdentifier","src":"16437:7:81"}],"functionName":{"name":"slt","nativeSrc":"16418:3:81","nodeType":"YulIdentifier","src":"16418:3:81"},"nativeSrc":"16418:27:81","nodeType":"YulFunctionCall","src":"16418:27:81"}],"functionName":{"name":"iszero","nativeSrc":"16411:6:81","nodeType":"YulIdentifier","src":"16411:6:81"},"nativeSrc":"16411:35:81","nodeType":"YulFunctionCall","src":"16411:35:81"},"nativeSrc":"16408:55:81","nodeType":"YulIf","src":"16408:55:81"},{"nativeSrc":"16472:30:81","nodeType":"YulVariableDeclaration","src":"16472:30:81","value":{"arguments":[{"name":"_1","nativeSrc":"16499:2:81","nodeType":"YulIdentifier","src":"16499:2:81"}],"functionName":{"name":"calldataload","nativeSrc":"16486:12:81","nodeType":"YulIdentifier","src":"16486:12:81"},"nativeSrc":"16486:16:81","nodeType":"YulFunctionCall","src":"16486:16:81"},"variables":[{"name":"length","nativeSrc":"16476:6:81","nodeType":"YulTypedName","src":"16476:6:81","type":""}]},{"body":{"nativeSrc":"16545:16:81","nodeType":"YulBlock","src":"16545:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16554:1:81","nodeType":"YulLiteral","src":"16554:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16557:1:81","nodeType":"YulLiteral","src":"16557:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16547:6:81","nodeType":"YulIdentifier","src":"16547:6:81"},"nativeSrc":"16547:12:81","nodeType":"YulFunctionCall","src":"16547:12:81"},"nativeSrc":"16547:12:81","nodeType":"YulExpressionStatement","src":"16547:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"16517:6:81","nodeType":"YulIdentifier","src":"16517:6:81"},{"kind":"number","nativeSrc":"16525:18:81","nodeType":"YulLiteral","src":"16525:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16514:2:81","nodeType":"YulIdentifier","src":"16514:2:81"},"nativeSrc":"16514:30:81","nodeType":"YulFunctionCall","src":"16514:30:81"},"nativeSrc":"16511:50:81","nodeType":"YulIf","src":"16511:50:81"},{"body":{"nativeSrc":"16619:16:81","nodeType":"YulBlock","src":"16619:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16628:1:81","nodeType":"YulLiteral","src":"16628:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"16631:1:81","nodeType":"YulLiteral","src":"16631:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16621:6:81","nodeType":"YulIdentifier","src":"16621:6:81"},"nativeSrc":"16621:12:81","nodeType":"YulFunctionCall","src":"16621:12:81"},"nativeSrc":"16621:12:81","nodeType":"YulExpressionStatement","src":"16621:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"16584:2:81","nodeType":"YulIdentifier","src":"16584:2:81"},{"arguments":[{"kind":"number","nativeSrc":"16592:1:81","nodeType":"YulLiteral","src":"16592:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"16595:6:81","nodeType":"YulIdentifier","src":"16595:6:81"}],"functionName":{"name":"shl","nativeSrc":"16588:3:81","nodeType":"YulIdentifier","src":"16588:3:81"},"nativeSrc":"16588:14:81","nodeType":"YulFunctionCall","src":"16588:14:81"}],"functionName":{"name":"add","nativeSrc":"16580:3:81","nodeType":"YulIdentifier","src":"16580:3:81"},"nativeSrc":"16580:23:81","nodeType":"YulFunctionCall","src":"16580:23:81"},{"kind":"number","nativeSrc":"16605:2:81","nodeType":"YulLiteral","src":"16605:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16576:3:81","nodeType":"YulIdentifier","src":"16576:3:81"},"nativeSrc":"16576:32:81","nodeType":"YulFunctionCall","src":"16576:32:81"},{"name":"dataEnd","nativeSrc":"16610:7:81","nodeType":"YulIdentifier","src":"16610:7:81"}],"functionName":{"name":"gt","nativeSrc":"16573:2:81","nodeType":"YulIdentifier","src":"16573:2:81"},"nativeSrc":"16573:45:81","nodeType":"YulFunctionCall","src":"16573:45:81"},"nativeSrc":"16570:65:81","nodeType":"YulIf","src":"16570:65:81"},{"nativeSrc":"16644:21:81","nodeType":"YulAssignment","src":"16644:21:81","value":{"arguments":[{"name":"_1","nativeSrc":"16658:2:81","nodeType":"YulIdentifier","src":"16658:2:81"},{"kind":"number","nativeSrc":"16662:2:81","nodeType":"YulLiteral","src":"16662:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16654:3:81","nodeType":"YulIdentifier","src":"16654:3:81"},"nativeSrc":"16654:11:81","nodeType":"YulFunctionCall","src":"16654:11:81"},"variableNames":[{"name":"value1","nativeSrc":"16644:6:81","nodeType":"YulIdentifier","src":"16644:6:81"}]},{"nativeSrc":"16674:16:81","nodeType":"YulAssignment","src":"16674:16:81","value":{"name":"length","nativeSrc":"16684:6:81","nodeType":"YulIdentifier","src":"16684:6:81"},"variableNames":[{"name":"value2","nativeSrc":"16674:6:81","nodeType":"YulIdentifier","src":"16674:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"15930:766:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16013:9:81","nodeType":"YulTypedName","src":"16013:9:81","type":""},{"name":"dataEnd","nativeSrc":"16024:7:81","nodeType":"YulTypedName","src":"16024:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16036:6:81","nodeType":"YulTypedName","src":"16036:6:81","type":""},{"name":"value1","nativeSrc":"16044:6:81","nodeType":"YulTypedName","src":"16044:6:81","type":""},{"name":"value2","nativeSrc":"16052:6:81","nodeType":"YulTypedName","src":"16052:6:81","type":""}],"src":"15930:766:81"},{"body":{"nativeSrc":"16870:611:81","nodeType":"YulBlock","src":"16870:611:81","statements":[{"nativeSrc":"16880:32:81","nodeType":"YulVariableDeclaration","src":"16880:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"16898:9:81","nodeType":"YulIdentifier","src":"16898:9:81"},{"kind":"number","nativeSrc":"16909:2:81","nodeType":"YulLiteral","src":"16909:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16894:3:81","nodeType":"YulIdentifier","src":"16894:3:81"},"nativeSrc":"16894:18:81","nodeType":"YulFunctionCall","src":"16894:18:81"},"variables":[{"name":"tail_1","nativeSrc":"16884:6:81","nodeType":"YulTypedName","src":"16884:6:81","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16928:9:81","nodeType":"YulIdentifier","src":"16928:9:81"},{"kind":"number","nativeSrc":"16939:2:81","nodeType":"YulLiteral","src":"16939:2:81","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16921:6:81","nodeType":"YulIdentifier","src":"16921:6:81"},"nativeSrc":"16921:21:81","nodeType":"YulFunctionCall","src":"16921:21:81"},"nativeSrc":"16921:21:81","nodeType":"YulExpressionStatement","src":"16921:21:81"},{"nativeSrc":"16951:17:81","nodeType":"YulVariableDeclaration","src":"16951:17:81","value":{"name":"tail_1","nativeSrc":"16962:6:81","nodeType":"YulIdentifier","src":"16962:6:81"},"variables":[{"name":"pos","nativeSrc":"16955:3:81","nodeType":"YulTypedName","src":"16955:3:81","type":""}]},{"nativeSrc":"16977:27:81","nodeType":"YulVariableDeclaration","src":"16977:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"16997:6:81","nodeType":"YulIdentifier","src":"16997:6:81"}],"functionName":{"name":"mload","nativeSrc":"16991:5:81","nodeType":"YulIdentifier","src":"16991:5:81"},"nativeSrc":"16991:13:81","nodeType":"YulFunctionCall","src":"16991:13:81"},"variables":[{"name":"length","nativeSrc":"16981:6:81","nodeType":"YulTypedName","src":"16981:6:81","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"17020:6:81","nodeType":"YulIdentifier","src":"17020:6:81"},{"name":"length","nativeSrc":"17028:6:81","nodeType":"YulIdentifier","src":"17028:6:81"}],"functionName":{"name":"mstore","nativeSrc":"17013:6:81","nodeType":"YulIdentifier","src":"17013:6:81"},"nativeSrc":"17013:22:81","nodeType":"YulFunctionCall","src":"17013:22:81"},"nativeSrc":"17013:22:81","nodeType":"YulExpressionStatement","src":"17013:22:81"},{"nativeSrc":"17044:25:81","nodeType":"YulAssignment","src":"17044:25:81","value":{"arguments":[{"name":"headStart","nativeSrc":"17055:9:81","nodeType":"YulIdentifier","src":"17055:9:81"},{"kind":"number","nativeSrc":"17066:2:81","nodeType":"YulLiteral","src":"17066:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17051:3:81","nodeType":"YulIdentifier","src":"17051:3:81"},"nativeSrc":"17051:18:81","nodeType":"YulFunctionCall","src":"17051:18:81"},"variableNames":[{"name":"pos","nativeSrc":"17044:3:81","nodeType":"YulIdentifier","src":"17044:3:81"}]},{"nativeSrc":"17078:53:81","nodeType":"YulVariableDeclaration","src":"17078:53:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17100:9:81","nodeType":"YulIdentifier","src":"17100:9:81"},{"arguments":[{"kind":"number","nativeSrc":"17115:1:81","nodeType":"YulLiteral","src":"17115:1:81","type":"","value":"5"},{"name":"length","nativeSrc":"17118:6:81","nodeType":"YulIdentifier","src":"17118:6:81"}],"functionName":{"name":"shl","nativeSrc":"17111:3:81","nodeType":"YulIdentifier","src":"17111:3:81"},"nativeSrc":"17111:14:81","nodeType":"YulFunctionCall","src":"17111:14:81"}],"functionName":{"name":"add","nativeSrc":"17096:3:81","nodeType":"YulIdentifier","src":"17096:3:81"},"nativeSrc":"17096:30:81","nodeType":"YulFunctionCall","src":"17096:30:81"},{"kind":"number","nativeSrc":"17128:2:81","nodeType":"YulLiteral","src":"17128:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17092:3:81","nodeType":"YulIdentifier","src":"17092:3:81"},"nativeSrc":"17092:39:81","nodeType":"YulFunctionCall","src":"17092:39:81"},"variables":[{"name":"tail_2","nativeSrc":"17082:6:81","nodeType":"YulTypedName","src":"17082:6:81","type":""}]},{"nativeSrc":"17140:29:81","nodeType":"YulVariableDeclaration","src":"17140:29:81","value":{"arguments":[{"name":"value0","nativeSrc":"17158:6:81","nodeType":"YulIdentifier","src":"17158:6:81"},{"kind":"number","nativeSrc":"17166:2:81","nodeType":"YulLiteral","src":"17166:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17154:3:81","nodeType":"YulIdentifier","src":"17154:3:81"},"nativeSrc":"17154:15:81","nodeType":"YulFunctionCall","src":"17154:15:81"},"variables":[{"name":"srcPtr","nativeSrc":"17144:6:81","nodeType":"YulTypedName","src":"17144:6:81","type":""}]},{"nativeSrc":"17178:10:81","nodeType":"YulVariableDeclaration","src":"17178:10:81","value":{"kind":"number","nativeSrc":"17187:1:81","nodeType":"YulLiteral","src":"17187:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"17182:1:81","nodeType":"YulTypedName","src":"17182:1:81","type":""}]},{"body":{"nativeSrc":"17246:206:81","nodeType":"YulBlock","src":"17246:206:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"17267:3:81","nodeType":"YulIdentifier","src":"17267:3:81"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"17280:6:81","nodeType":"YulIdentifier","src":"17280:6:81"},{"name":"headStart","nativeSrc":"17288:9:81","nodeType":"YulIdentifier","src":"17288:9:81"}],"functionName":{"name":"sub","nativeSrc":"17276:3:81","nodeType":"YulIdentifier","src":"17276:3:81"},"nativeSrc":"17276:22:81","nodeType":"YulFunctionCall","src":"17276:22:81"},{"arguments":[{"kind":"number","nativeSrc":"17304:2:81","nodeType":"YulLiteral","src":"17304:2:81","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"17300:3:81","nodeType":"YulIdentifier","src":"17300:3:81"},"nativeSrc":"17300:7:81","nodeType":"YulFunctionCall","src":"17300:7:81"}],"functionName":{"name":"add","nativeSrc":"17272:3:81","nodeType":"YulIdentifier","src":"17272:3:81"},"nativeSrc":"17272:36:81","nodeType":"YulFunctionCall","src":"17272:36:81"}],"functionName":{"name":"mstore","nativeSrc":"17260:6:81","nodeType":"YulIdentifier","src":"17260:6:81"},"nativeSrc":"17260:49:81","nodeType":"YulFunctionCall","src":"17260:49:81"},"nativeSrc":"17260:49:81","nodeType":"YulExpressionStatement","src":"17260:49:81"},{"nativeSrc":"17322:50:81","nodeType":"YulAssignment","src":"17322:50:81","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"17356:6:81","nodeType":"YulIdentifier","src":"17356:6:81"}],"functionName":{"name":"mload","nativeSrc":"17350:5:81","nodeType":"YulIdentifier","src":"17350:5:81"},"nativeSrc":"17350:13:81","nodeType":"YulFunctionCall","src":"17350:13:81"},{"name":"tail_2","nativeSrc":"17365:6:81","nodeType":"YulIdentifier","src":"17365:6:81"}],"functionName":{"name":"abi_encode_string","nativeSrc":"17332:17:81","nodeType":"YulIdentifier","src":"17332:17:81"},"nativeSrc":"17332:40:81","nodeType":"YulFunctionCall","src":"17332:40:81"},"variableNames":[{"name":"tail_2","nativeSrc":"17322:6:81","nodeType":"YulIdentifier","src":"17322:6:81"}]},{"nativeSrc":"17385:25:81","nodeType":"YulAssignment","src":"17385:25:81","value":{"arguments":[{"name":"srcPtr","nativeSrc":"17399:6:81","nodeType":"YulIdentifier","src":"17399:6:81"},{"kind":"number","nativeSrc":"17407:2:81","nodeType":"YulLiteral","src":"17407:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17395:3:81","nodeType":"YulIdentifier","src":"17395:3:81"},"nativeSrc":"17395:15:81","nodeType":"YulFunctionCall","src":"17395:15:81"},"variableNames":[{"name":"srcPtr","nativeSrc":"17385:6:81","nodeType":"YulIdentifier","src":"17385:6:81"}]},{"nativeSrc":"17423:19:81","nodeType":"YulAssignment","src":"17423:19:81","value":{"arguments":[{"name":"pos","nativeSrc":"17434:3:81","nodeType":"YulIdentifier","src":"17434:3:81"},{"kind":"number","nativeSrc":"17439:2:81","nodeType":"YulLiteral","src":"17439:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17430:3:81","nodeType":"YulIdentifier","src":"17430:3:81"},"nativeSrc":"17430:12:81","nodeType":"YulFunctionCall","src":"17430:12:81"},"variableNames":[{"name":"pos","nativeSrc":"17423:3:81","nodeType":"YulIdentifier","src":"17423:3:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"17208:1:81","nodeType":"YulIdentifier","src":"17208:1:81"},{"name":"length","nativeSrc":"17211:6:81","nodeType":"YulIdentifier","src":"17211:6:81"}],"functionName":{"name":"lt","nativeSrc":"17205:2:81","nodeType":"YulIdentifier","src":"17205:2:81"},"nativeSrc":"17205:13:81","nodeType":"YulFunctionCall","src":"17205:13:81"},"nativeSrc":"17197:255:81","nodeType":"YulForLoop","post":{"nativeSrc":"17219:18:81","nodeType":"YulBlock","src":"17219:18:81","statements":[{"nativeSrc":"17221:14:81","nodeType":"YulAssignment","src":"17221:14:81","value":{"arguments":[{"name":"i","nativeSrc":"17230:1:81","nodeType":"YulIdentifier","src":"17230:1:81"},{"kind":"number","nativeSrc":"17233:1:81","nodeType":"YulLiteral","src":"17233:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"17226:3:81","nodeType":"YulIdentifier","src":"17226:3:81"},"nativeSrc":"17226:9:81","nodeType":"YulFunctionCall","src":"17226:9:81"},"variableNames":[{"name":"i","nativeSrc":"17221:1:81","nodeType":"YulIdentifier","src":"17221:1:81"}]}]},"pre":{"nativeSrc":"17201:3:81","nodeType":"YulBlock","src":"17201:3:81","statements":[]},"src":"17197:255:81"},{"nativeSrc":"17461:14:81","nodeType":"YulAssignment","src":"17461:14:81","value":{"name":"tail_2","nativeSrc":"17469:6:81","nodeType":"YulIdentifier","src":"17469:6:81"},"variableNames":[{"name":"tail","nativeSrc":"17461:4:81","nodeType":"YulIdentifier","src":"17461:4:81"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"16701:780:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16839:9:81","nodeType":"YulTypedName","src":"16839:9:81","type":""},{"name":"value0","nativeSrc":"16850:6:81","nodeType":"YulTypedName","src":"16850:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16861:4:81","nodeType":"YulTypedName","src":"16861:4:81","type":""}],"src":"16701:780:81"},{"body":{"nativeSrc":"17591:320:81","nodeType":"YulBlock","src":"17591:320:81","statements":[{"body":{"nativeSrc":"17637:16:81","nodeType":"YulBlock","src":"17637:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17646:1:81","nodeType":"YulLiteral","src":"17646:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"17649:1:81","nodeType":"YulLiteral","src":"17649:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17639:6:81","nodeType":"YulIdentifier","src":"17639:6:81"},"nativeSrc":"17639:12:81","nodeType":"YulFunctionCall","src":"17639:12:81"},"nativeSrc":"17639:12:81","nodeType":"YulExpressionStatement","src":"17639:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17612:7:81","nodeType":"YulIdentifier","src":"17612:7:81"},{"name":"headStart","nativeSrc":"17621:9:81","nodeType":"YulIdentifier","src":"17621:9:81"}],"functionName":{"name":"sub","nativeSrc":"17608:3:81","nodeType":"YulIdentifier","src":"17608:3:81"},"nativeSrc":"17608:23:81","nodeType":"YulFunctionCall","src":"17608:23:81"},{"kind":"number","nativeSrc":"17633:2:81","nodeType":"YulLiteral","src":"17633:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"17604:3:81","nodeType":"YulIdentifier","src":"17604:3:81"},"nativeSrc":"17604:32:81","nodeType":"YulFunctionCall","src":"17604:32:81"},"nativeSrc":"17601:52:81","nodeType":"YulIf","src":"17601:52:81"},{"nativeSrc":"17662:36:81","nodeType":"YulVariableDeclaration","src":"17662:36:81","value":{"arguments":[{"name":"headStart","nativeSrc":"17688:9:81","nodeType":"YulIdentifier","src":"17688:9:81"}],"functionName":{"name":"calldataload","nativeSrc":"17675:12:81","nodeType":"YulIdentifier","src":"17675:12:81"},"nativeSrc":"17675:23:81","nodeType":"YulFunctionCall","src":"17675:23:81"},"variables":[{"name":"value","nativeSrc":"17666:5:81","nodeType":"YulTypedName","src":"17666:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17742:5:81","nodeType":"YulIdentifier","src":"17742:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"17707:34:81","nodeType":"YulIdentifier","src":"17707:34:81"},"nativeSrc":"17707:41:81","nodeType":"YulFunctionCall","src":"17707:41:81"},"nativeSrc":"17707:41:81","nodeType":"YulExpressionStatement","src":"17707:41:81"},{"nativeSrc":"17757:15:81","nodeType":"YulAssignment","src":"17757:15:81","value":{"name":"value","nativeSrc":"17767:5:81","nodeType":"YulIdentifier","src":"17767:5:81"},"variableNames":[{"name":"value0","nativeSrc":"17757:6:81","nodeType":"YulIdentifier","src":"17757:6:81"}]},{"nativeSrc":"17781:47:81","nodeType":"YulVariableDeclaration","src":"17781:47:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17813:9:81","nodeType":"YulIdentifier","src":"17813:9:81"},{"kind":"number","nativeSrc":"17824:2:81","nodeType":"YulLiteral","src":"17824:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17809:3:81","nodeType":"YulIdentifier","src":"17809:3:81"},"nativeSrc":"17809:18:81","nodeType":"YulFunctionCall","src":"17809:18:81"}],"functionName":{"name":"calldataload","nativeSrc":"17796:12:81","nodeType":"YulIdentifier","src":"17796:12:81"},"nativeSrc":"17796:32:81","nodeType":"YulFunctionCall","src":"17796:32:81"},"variables":[{"name":"value_1","nativeSrc":"17785:7:81","nodeType":"YulTypedName","src":"17785:7:81","type":""}]},{"body":{"nativeSrc":"17863:16:81","nodeType":"YulBlock","src":"17863:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17872:1:81","nodeType":"YulLiteral","src":"17872:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"17875:1:81","nodeType":"YulLiteral","src":"17875:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17865:6:81","nodeType":"YulIdentifier","src":"17865:6:81"},"nativeSrc":"17865:12:81","nodeType":"YulFunctionCall","src":"17865:12:81"},"nativeSrc":"17865:12:81","nodeType":"YulExpressionStatement","src":"17865:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"17850:7:81","nodeType":"YulIdentifier","src":"17850:7:81"},{"kind":"number","nativeSrc":"17859:1:81","nodeType":"YulLiteral","src":"17859:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"17847:2:81","nodeType":"YulIdentifier","src":"17847:2:81"},"nativeSrc":"17847:14:81","nodeType":"YulFunctionCall","src":"17847:14:81"}],"functionName":{"name":"iszero","nativeSrc":"17840:6:81","nodeType":"YulIdentifier","src":"17840:6:81"},"nativeSrc":"17840:22:81","nodeType":"YulFunctionCall","src":"17840:22:81"},"nativeSrc":"17837:42:81","nodeType":"YulIf","src":"17837:42:81"},{"nativeSrc":"17888:17:81","nodeType":"YulAssignment","src":"17888:17:81","value":{"name":"value_1","nativeSrc":"17898:7:81","nodeType":"YulIdentifier","src":"17898:7:81"},"variableNames":[{"name":"value1","nativeSrc":"17888:6:81","nodeType":"YulIdentifier","src":"17888:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_TargetStatus_$22999","nativeSrc":"17486:425:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17549:9:81","nodeType":"YulTypedName","src":"17549:9:81","type":""},{"name":"dataEnd","nativeSrc":"17560:7:81","nodeType":"YulTypedName","src":"17560:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17572:6:81","nodeType":"YulTypedName","src":"17572:6:81","type":""},{"name":"value1","nativeSrc":"17580:6:81","nodeType":"YulTypedName","src":"17580:6:81","type":""}],"src":"17486:425:81"},{"body":{"nativeSrc":"17997:103:81","nodeType":"YulBlock","src":"17997:103:81","statements":[{"body":{"nativeSrc":"18043:16:81","nodeType":"YulBlock","src":"18043:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18052:1:81","nodeType":"YulLiteral","src":"18052:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"18055:1:81","nodeType":"YulLiteral","src":"18055:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18045:6:81","nodeType":"YulIdentifier","src":"18045:6:81"},"nativeSrc":"18045:12:81","nodeType":"YulFunctionCall","src":"18045:12:81"},"nativeSrc":"18045:12:81","nodeType":"YulExpressionStatement","src":"18045:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18018:7:81","nodeType":"YulIdentifier","src":"18018:7:81"},{"name":"headStart","nativeSrc":"18027:9:81","nodeType":"YulIdentifier","src":"18027:9:81"}],"functionName":{"name":"sub","nativeSrc":"18014:3:81","nodeType":"YulIdentifier","src":"18014:3:81"},"nativeSrc":"18014:23:81","nodeType":"YulFunctionCall","src":"18014:23:81"},{"kind":"number","nativeSrc":"18039:2:81","nodeType":"YulLiteral","src":"18039:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18010:3:81","nodeType":"YulIdentifier","src":"18010:3:81"},"nativeSrc":"18010:32:81","nodeType":"YulFunctionCall","src":"18010:32:81"},"nativeSrc":"18007:52:81","nodeType":"YulIf","src":"18007:52:81"},{"nativeSrc":"18068:26:81","nodeType":"YulAssignment","src":"18068:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"18084:9:81","nodeType":"YulIdentifier","src":"18084:9:81"}],"functionName":{"name":"mload","nativeSrc":"18078:5:81","nodeType":"YulIdentifier","src":"18078:5:81"},"nativeSrc":"18078:16:81","nodeType":"YulFunctionCall","src":"18078:16:81"},"variableNames":[{"name":"value0","nativeSrc":"18068:6:81","nodeType":"YulIdentifier","src":"18068:6:81"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"17916:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17963:9:81","nodeType":"YulTypedName","src":"17963:9:81","type":""},{"name":"dataEnd","nativeSrc":"17974:7:81","nodeType":"YulTypedName","src":"17974:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17986:6:81","nodeType":"YulTypedName","src":"17986:6:81","type":""}],"src":"17916:184:81"},{"body":{"nativeSrc":"18137:95:81","nodeType":"YulBlock","src":"18137:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18154:1:81","nodeType":"YulLiteral","src":"18154:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18161:3:81","nodeType":"YulLiteral","src":"18161:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"18166:10:81","nodeType":"YulLiteral","src":"18166:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18157:3:81","nodeType":"YulIdentifier","src":"18157:3:81"},"nativeSrc":"18157:20:81","nodeType":"YulFunctionCall","src":"18157:20:81"}],"functionName":{"name":"mstore","nativeSrc":"18147:6:81","nodeType":"YulIdentifier","src":"18147:6:81"},"nativeSrc":"18147:31:81","nodeType":"YulFunctionCall","src":"18147:31:81"},"nativeSrc":"18147:31:81","nodeType":"YulExpressionStatement","src":"18147:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18194:1:81","nodeType":"YulLiteral","src":"18194:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"18197:4:81","nodeType":"YulLiteral","src":"18197:4:81","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"18187:6:81","nodeType":"YulIdentifier","src":"18187:6:81"},"nativeSrc":"18187:15:81","nodeType":"YulFunctionCall","src":"18187:15:81"},"nativeSrc":"18187:15:81","nodeType":"YulExpressionStatement","src":"18187:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18218:1:81","nodeType":"YulLiteral","src":"18218:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"18221:4:81","nodeType":"YulLiteral","src":"18221:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18211:6:81","nodeType":"YulIdentifier","src":"18211:6:81"},"nativeSrc":"18211:15:81","nodeType":"YulFunctionCall","src":"18211:15:81"},"nativeSrc":"18211:15:81","nodeType":"YulExpressionStatement","src":"18211:15:81"}]},"name":"panic_error_0x11","nativeSrc":"18105:127:81","nodeType":"YulFunctionDefinition","src":"18105:127:81"},{"body":{"nativeSrc":"18285:77:81","nodeType":"YulBlock","src":"18285:77:81","statements":[{"nativeSrc":"18295:16:81","nodeType":"YulAssignment","src":"18295:16:81","value":{"arguments":[{"name":"x","nativeSrc":"18306:1:81","nodeType":"YulIdentifier","src":"18306:1:81"},{"name":"y","nativeSrc":"18309:1:81","nodeType":"YulIdentifier","src":"18309:1:81"}],"functionName":{"name":"add","nativeSrc":"18302:3:81","nodeType":"YulIdentifier","src":"18302:3:81"},"nativeSrc":"18302:9:81","nodeType":"YulFunctionCall","src":"18302:9:81"},"variableNames":[{"name":"sum","nativeSrc":"18295:3:81","nodeType":"YulIdentifier","src":"18295:3:81"}]},{"body":{"nativeSrc":"18334:22:81","nodeType":"YulBlock","src":"18334:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"18336:16:81","nodeType":"YulIdentifier","src":"18336:16:81"},"nativeSrc":"18336:18:81","nodeType":"YulFunctionCall","src":"18336:18:81"},"nativeSrc":"18336:18:81","nodeType":"YulExpressionStatement","src":"18336:18:81"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"18326:1:81","nodeType":"YulIdentifier","src":"18326:1:81"},{"name":"sum","nativeSrc":"18329:3:81","nodeType":"YulIdentifier","src":"18329:3:81"}],"functionName":{"name":"gt","nativeSrc":"18323:2:81","nodeType":"YulIdentifier","src":"18323:2:81"},"nativeSrc":"18323:10:81","nodeType":"YulFunctionCall","src":"18323:10:81"},"nativeSrc":"18320:36:81","nodeType":"YulIf","src":"18320:36:81"}]},"name":"checked_add_t_uint256","nativeSrc":"18237:125:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"18268:1:81","nodeType":"YulTypedName","src":"18268:1:81","type":""},{"name":"y","nativeSrc":"18271:1:81","nodeType":"YulTypedName","src":"18271:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"18277:3:81","nodeType":"YulTypedName","src":"18277:3:81","type":""}],"src":"18237:125:81"},{"body":{"nativeSrc":"18410:93:81","nodeType":"YulBlock","src":"18410:93:81","statements":[{"body":{"nativeSrc":"18446:22:81","nodeType":"YulBlock","src":"18446:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"18448:16:81","nodeType":"YulIdentifier","src":"18448:16:81"},"nativeSrc":"18448:18:81","nodeType":"YulFunctionCall","src":"18448:18:81"},"nativeSrc":"18448:18:81","nodeType":"YulExpressionStatement","src":"18448:18:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"18426:5:81","nodeType":"YulIdentifier","src":"18426:5:81"},{"arguments":[{"kind":"number","nativeSrc":"18437:3:81","nodeType":"YulLiteral","src":"18437:3:81","type":"","value":"255"},{"kind":"number","nativeSrc":"18442:1:81","nodeType":"YulLiteral","src":"18442:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18433:3:81","nodeType":"YulIdentifier","src":"18433:3:81"},"nativeSrc":"18433:11:81","nodeType":"YulFunctionCall","src":"18433:11:81"}],"functionName":{"name":"eq","nativeSrc":"18423:2:81","nodeType":"YulIdentifier","src":"18423:2:81"},"nativeSrc":"18423:22:81","nodeType":"YulFunctionCall","src":"18423:22:81"},"nativeSrc":"18420:48:81","nodeType":"YulIf","src":"18420:48:81"},{"nativeSrc":"18477:20:81","nodeType":"YulAssignment","src":"18477:20:81","value":{"arguments":[{"kind":"number","nativeSrc":"18488:1:81","nodeType":"YulLiteral","src":"18488:1:81","type":"","value":"0"},{"name":"value","nativeSrc":"18491:5:81","nodeType":"YulIdentifier","src":"18491:5:81"}],"functionName":{"name":"sub","nativeSrc":"18484:3:81","nodeType":"YulIdentifier","src":"18484:3:81"},"nativeSrc":"18484:13:81","nodeType":"YulFunctionCall","src":"18484:13:81"},"variableNames":[{"name":"ret","nativeSrc":"18477:3:81","nodeType":"YulIdentifier","src":"18477:3:81"}]}]},"name":"negate_t_int256","nativeSrc":"18367:136:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"18392:5:81","nodeType":"YulTypedName","src":"18392:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"18402:3:81","nodeType":"YulTypedName","src":"18402:3:81","type":""}],"src":"18367:136:81"},{"body":{"nativeSrc":"18557:79:81","nodeType":"YulBlock","src":"18557:79:81","statements":[{"nativeSrc":"18567:17:81","nodeType":"YulAssignment","src":"18567:17:81","value":{"arguments":[{"name":"x","nativeSrc":"18579:1:81","nodeType":"YulIdentifier","src":"18579:1:81"},{"name":"y","nativeSrc":"18582:1:81","nodeType":"YulIdentifier","src":"18582:1:81"}],"functionName":{"name":"sub","nativeSrc":"18575:3:81","nodeType":"YulIdentifier","src":"18575:3:81"},"nativeSrc":"18575:9:81","nodeType":"YulFunctionCall","src":"18575:9:81"},"variableNames":[{"name":"diff","nativeSrc":"18567:4:81","nodeType":"YulIdentifier","src":"18567:4:81"}]},{"body":{"nativeSrc":"18608:22:81","nodeType":"YulBlock","src":"18608:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"18610:16:81","nodeType":"YulIdentifier","src":"18610:16:81"},"nativeSrc":"18610:18:81","nodeType":"YulFunctionCall","src":"18610:18:81"},"nativeSrc":"18610:18:81","nodeType":"YulExpressionStatement","src":"18610:18:81"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"18599:4:81","nodeType":"YulIdentifier","src":"18599:4:81"},{"name":"x","nativeSrc":"18605:1:81","nodeType":"YulIdentifier","src":"18605:1:81"}],"functionName":{"name":"gt","nativeSrc":"18596:2:81","nodeType":"YulIdentifier","src":"18596:2:81"},"nativeSrc":"18596:11:81","nodeType":"YulFunctionCall","src":"18596:11:81"},"nativeSrc":"18593:37:81","nodeType":"YulIf","src":"18593:37:81"}]},"name":"checked_sub_t_uint256","nativeSrc":"18508:128:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"18539:1:81","nodeType":"YulTypedName","src":"18539:1:81","type":""},{"name":"y","nativeSrc":"18542:1:81","nodeType":"YulTypedName","src":"18542:1:81","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"18548:4:81","nodeType":"YulTypedName","src":"18548:4:81","type":""}],"src":"18508:128:81"},{"body":{"nativeSrc":"18696:325:81","nodeType":"YulBlock","src":"18696:325:81","statements":[{"nativeSrc":"18706:22:81","nodeType":"YulAssignment","src":"18706:22:81","value":{"arguments":[{"kind":"number","nativeSrc":"18720:1:81","nodeType":"YulLiteral","src":"18720:1:81","type":"","value":"1"},{"name":"data","nativeSrc":"18723:4:81","nodeType":"YulIdentifier","src":"18723:4:81"}],"functionName":{"name":"shr","nativeSrc":"18716:3:81","nodeType":"YulIdentifier","src":"18716:3:81"},"nativeSrc":"18716:12:81","nodeType":"YulFunctionCall","src":"18716:12:81"},"variableNames":[{"name":"length","nativeSrc":"18706:6:81","nodeType":"YulIdentifier","src":"18706:6:81"}]},{"nativeSrc":"18737:38:81","nodeType":"YulVariableDeclaration","src":"18737:38:81","value":{"arguments":[{"name":"data","nativeSrc":"18767:4:81","nodeType":"YulIdentifier","src":"18767:4:81"},{"kind":"number","nativeSrc":"18773:1:81","nodeType":"YulLiteral","src":"18773:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"18763:3:81","nodeType":"YulIdentifier","src":"18763:3:81"},"nativeSrc":"18763:12:81","nodeType":"YulFunctionCall","src":"18763:12:81"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"18741:18:81","nodeType":"YulTypedName","src":"18741:18:81","type":""}]},{"body":{"nativeSrc":"18814:31:81","nodeType":"YulBlock","src":"18814:31:81","statements":[{"nativeSrc":"18816:27:81","nodeType":"YulAssignment","src":"18816:27:81","value":{"arguments":[{"name":"length","nativeSrc":"18830:6:81","nodeType":"YulIdentifier","src":"18830:6:81"},{"kind":"number","nativeSrc":"18838:4:81","nodeType":"YulLiteral","src":"18838:4:81","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"18826:3:81","nodeType":"YulIdentifier","src":"18826:3:81"},"nativeSrc":"18826:17:81","nodeType":"YulFunctionCall","src":"18826:17:81"},"variableNames":[{"name":"length","nativeSrc":"18816:6:81","nodeType":"YulIdentifier","src":"18816:6:81"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"18794:18:81","nodeType":"YulIdentifier","src":"18794:18:81"}],"functionName":{"name":"iszero","nativeSrc":"18787:6:81","nodeType":"YulIdentifier","src":"18787:6:81"},"nativeSrc":"18787:26:81","nodeType":"YulFunctionCall","src":"18787:26:81"},"nativeSrc":"18784:61:81","nodeType":"YulIf","src":"18784:61:81"},{"body":{"nativeSrc":"18904:111:81","nodeType":"YulBlock","src":"18904:111:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18925:1:81","nodeType":"YulLiteral","src":"18925:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18932:3:81","nodeType":"YulLiteral","src":"18932:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"18937:10:81","nodeType":"YulLiteral","src":"18937:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18928:3:81","nodeType":"YulIdentifier","src":"18928:3:81"},"nativeSrc":"18928:20:81","nodeType":"YulFunctionCall","src":"18928:20:81"}],"functionName":{"name":"mstore","nativeSrc":"18918:6:81","nodeType":"YulIdentifier","src":"18918:6:81"},"nativeSrc":"18918:31:81","nodeType":"YulFunctionCall","src":"18918:31:81"},"nativeSrc":"18918:31:81","nodeType":"YulExpressionStatement","src":"18918:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18969:1:81","nodeType":"YulLiteral","src":"18969:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"18972:4:81","nodeType":"YulLiteral","src":"18972:4:81","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"18962:6:81","nodeType":"YulIdentifier","src":"18962:6:81"},"nativeSrc":"18962:15:81","nodeType":"YulFunctionCall","src":"18962:15:81"},"nativeSrc":"18962:15:81","nodeType":"YulExpressionStatement","src":"18962:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18997:1:81","nodeType":"YulLiteral","src":"18997:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"19000:4:81","nodeType":"YulLiteral","src":"19000:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18990:6:81","nodeType":"YulIdentifier","src":"18990:6:81"},"nativeSrc":"18990:15:81","nodeType":"YulFunctionCall","src":"18990:15:81"},"nativeSrc":"18990:15:81","nodeType":"YulExpressionStatement","src":"18990:15:81"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"18860:18:81","nodeType":"YulIdentifier","src":"18860:18:81"},{"arguments":[{"name":"length","nativeSrc":"18883:6:81","nodeType":"YulIdentifier","src":"18883:6:81"},{"kind":"number","nativeSrc":"18891:2:81","nodeType":"YulLiteral","src":"18891:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"18880:2:81","nodeType":"YulIdentifier","src":"18880:2:81"},"nativeSrc":"18880:14:81","nodeType":"YulFunctionCall","src":"18880:14:81"}],"functionName":{"name":"eq","nativeSrc":"18857:2:81","nodeType":"YulIdentifier","src":"18857:2:81"},"nativeSrc":"18857:38:81","nodeType":"YulFunctionCall","src":"18857:38:81"},"nativeSrc":"18854:161:81","nodeType":"YulIf","src":"18854:161:81"}]},"name":"extract_byte_array_length","nativeSrc":"18641:380:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"18676:4:81","nodeType":"YulTypedName","src":"18676:4:81","type":""}],"returnVariables":[{"name":"length","nativeSrc":"18685:6:81","nodeType":"YulTypedName","src":"18685:6:81","type":""}],"src":"18641:380:81"},{"body":{"nativeSrc":"19134:101:81","nodeType":"YulBlock","src":"19134:101:81","statements":[{"nativeSrc":"19144:26:81","nodeType":"YulAssignment","src":"19144:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19156:9:81","nodeType":"YulIdentifier","src":"19156:9:81"},{"kind":"number","nativeSrc":"19167:2:81","nodeType":"YulLiteral","src":"19167:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19152:3:81","nodeType":"YulIdentifier","src":"19152:3:81"},"nativeSrc":"19152:18:81","nodeType":"YulFunctionCall","src":"19152:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19144:4:81","nodeType":"YulIdentifier","src":"19144:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19186:9:81","nodeType":"YulIdentifier","src":"19186:9:81"},{"arguments":[{"name":"value0","nativeSrc":"19201:6:81","nodeType":"YulIdentifier","src":"19201:6:81"},{"kind":"number","nativeSrc":"19209:18:81","nodeType":"YulLiteral","src":"19209:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19197:3:81","nodeType":"YulIdentifier","src":"19197:3:81"},"nativeSrc":"19197:31:81","nodeType":"YulFunctionCall","src":"19197:31:81"}],"functionName":{"name":"mstore","nativeSrc":"19179:6:81","nodeType":"YulIdentifier","src":"19179:6:81"},"nativeSrc":"19179:50:81","nodeType":"YulFunctionCall","src":"19179:50:81"},"nativeSrc":"19179:50:81","nodeType":"YulExpressionStatement","src":"19179:50:81"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"19026:209:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19103:9:81","nodeType":"YulTypedName","src":"19103:9:81","type":""},{"name":"value0","nativeSrc":"19114:6:81","nodeType":"YulTypedName","src":"19114:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19125:4:81","nodeType":"YulTypedName","src":"19125:4:81","type":""}],"src":"19026:209:81"},{"body":{"nativeSrc":"19365:153:81","nodeType":"YulBlock","src":"19365:153:81","statements":[{"nativeSrc":"19375:26:81","nodeType":"YulAssignment","src":"19375:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19387:9:81","nodeType":"YulIdentifier","src":"19387:9:81"},{"kind":"number","nativeSrc":"19398:2:81","nodeType":"YulLiteral","src":"19398:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19383:3:81","nodeType":"YulIdentifier","src":"19383:3:81"},"nativeSrc":"19383:18:81","nodeType":"YulFunctionCall","src":"19383:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19375:4:81","nodeType":"YulIdentifier","src":"19375:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19417:9:81","nodeType":"YulIdentifier","src":"19417:9:81"},{"arguments":[{"name":"value0","nativeSrc":"19432:6:81","nodeType":"YulIdentifier","src":"19432:6:81"},{"kind":"number","nativeSrc":"19440:10:81","nodeType":"YulLiteral","src":"19440:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19428:3:81","nodeType":"YulIdentifier","src":"19428:3:81"},"nativeSrc":"19428:23:81","nodeType":"YulFunctionCall","src":"19428:23:81"}],"functionName":{"name":"mstore","nativeSrc":"19410:6:81","nodeType":"YulIdentifier","src":"19410:6:81"},"nativeSrc":"19410:42:81","nodeType":"YulFunctionCall","src":"19410:42:81"},"nativeSrc":"19410:42:81","nodeType":"YulExpressionStatement","src":"19410:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19472:9:81","nodeType":"YulIdentifier","src":"19472:9:81"},{"kind":"number","nativeSrc":"19483:2:81","nodeType":"YulLiteral","src":"19483:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19468:3:81","nodeType":"YulIdentifier","src":"19468:3:81"},"nativeSrc":"19468:18:81","nodeType":"YulFunctionCall","src":"19468:18:81"},{"arguments":[{"name":"value1","nativeSrc":"19492:6:81","nodeType":"YulIdentifier","src":"19492:6:81"},{"kind":"number","nativeSrc":"19500:10:81","nodeType":"YulLiteral","src":"19500:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19488:3:81","nodeType":"YulIdentifier","src":"19488:3:81"},"nativeSrc":"19488:23:81","nodeType":"YulFunctionCall","src":"19488:23:81"}],"functionName":{"name":"mstore","nativeSrc":"19461:6:81","nodeType":"YulIdentifier","src":"19461:6:81"},"nativeSrc":"19461:51:81","nodeType":"YulFunctionCall","src":"19461:51:81"},"nativeSrc":"19461:51:81","nodeType":"YulExpressionStatement","src":"19461:51:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed","nativeSrc":"19240:278:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19326:9:81","nodeType":"YulTypedName","src":"19326:9:81","type":""},{"name":"value1","nativeSrc":"19337:6:81","nodeType":"YulTypedName","src":"19337:6:81","type":""},{"name":"value0","nativeSrc":"19345:6:81","nodeType":"YulTypedName","src":"19345:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19356:4:81","nodeType":"YulTypedName","src":"19356:4:81","type":""}],"src":"19240:278:81"},{"body":{"nativeSrc":"19650:119:81","nodeType":"YulBlock","src":"19650:119:81","statements":[{"nativeSrc":"19660:26:81","nodeType":"YulAssignment","src":"19660:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"19672:9:81","nodeType":"YulIdentifier","src":"19672:9:81"},{"kind":"number","nativeSrc":"19683:2:81","nodeType":"YulLiteral","src":"19683:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19668:3:81","nodeType":"YulIdentifier","src":"19668:3:81"},"nativeSrc":"19668:18:81","nodeType":"YulFunctionCall","src":"19668:18:81"},"variableNames":[{"name":"tail","nativeSrc":"19660:4:81","nodeType":"YulIdentifier","src":"19660:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19702:9:81","nodeType":"YulIdentifier","src":"19702:9:81"},{"name":"value0","nativeSrc":"19713:6:81","nodeType":"YulIdentifier","src":"19713:6:81"}],"functionName":{"name":"mstore","nativeSrc":"19695:6:81","nodeType":"YulIdentifier","src":"19695:6:81"},"nativeSrc":"19695:25:81","nodeType":"YulFunctionCall","src":"19695:25:81"},"nativeSrc":"19695:25:81","nodeType":"YulExpressionStatement","src":"19695:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19740:9:81","nodeType":"YulIdentifier","src":"19740:9:81"},{"kind":"number","nativeSrc":"19751:2:81","nodeType":"YulLiteral","src":"19751:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19736:3:81","nodeType":"YulIdentifier","src":"19736:3:81"},"nativeSrc":"19736:18:81","nodeType":"YulFunctionCall","src":"19736:18:81"},{"name":"value1","nativeSrc":"19756:6:81","nodeType":"YulIdentifier","src":"19756:6:81"}],"functionName":{"name":"mstore","nativeSrc":"19729:6:81","nodeType":"YulIdentifier","src":"19729:6:81"},"nativeSrc":"19729:34:81","nodeType":"YulFunctionCall","src":"19729:34:81"},"nativeSrc":"19729:34:81","nodeType":"YulExpressionStatement","src":"19729:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed","nativeSrc":"19523:246:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19611:9:81","nodeType":"YulTypedName","src":"19611:9:81","type":""},{"name":"value1","nativeSrc":"19622:6:81","nodeType":"YulTypedName","src":"19622:6:81","type":""},{"name":"value0","nativeSrc":"19630:6:81","nodeType":"YulTypedName","src":"19630:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19641:4:81","nodeType":"YulTypedName","src":"19641:4:81","type":""}],"src":"19523:246:81"},{"body":{"nativeSrc":"19981:310:81","nodeType":"YulBlock","src":"19981:310:81","statements":[{"nativeSrc":"19991:27:81","nodeType":"YulAssignment","src":"19991:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20003:9:81","nodeType":"YulIdentifier","src":"20003:9:81"},{"kind":"number","nativeSrc":"20014:3:81","nodeType":"YulLiteral","src":"20014:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"19999:3:81","nodeType":"YulIdentifier","src":"19999:3:81"},"nativeSrc":"19999:19:81","nodeType":"YulFunctionCall","src":"19999:19:81"},"variableNames":[{"name":"tail","nativeSrc":"19991:4:81","nodeType":"YulIdentifier","src":"19991:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20034:9:81","nodeType":"YulIdentifier","src":"20034:9:81"},{"arguments":[{"name":"value0","nativeSrc":"20049:6:81","nodeType":"YulIdentifier","src":"20049:6:81"},{"kind":"number","nativeSrc":"20057:10:81","nodeType":"YulLiteral","src":"20057:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"20045:3:81","nodeType":"YulIdentifier","src":"20045:3:81"},"nativeSrc":"20045:23:81","nodeType":"YulFunctionCall","src":"20045:23:81"}],"functionName":{"name":"mstore","nativeSrc":"20027:6:81","nodeType":"YulIdentifier","src":"20027:6:81"},"nativeSrc":"20027:42:81","nodeType":"YulFunctionCall","src":"20027:42:81"},"nativeSrc":"20027:42:81","nodeType":"YulExpressionStatement","src":"20027:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20089:9:81","nodeType":"YulIdentifier","src":"20089:9:81"},{"kind":"number","nativeSrc":"20100:2:81","nodeType":"YulLiteral","src":"20100:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20085:3:81","nodeType":"YulIdentifier","src":"20085:3:81"},"nativeSrc":"20085:18:81","nodeType":"YulFunctionCall","src":"20085:18:81"},{"arguments":[{"name":"value1","nativeSrc":"20109:6:81","nodeType":"YulIdentifier","src":"20109:6:81"},{"kind":"number","nativeSrc":"20117:10:81","nodeType":"YulLiteral","src":"20117:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"20105:3:81","nodeType":"YulIdentifier","src":"20105:3:81"},"nativeSrc":"20105:23:81","nodeType":"YulFunctionCall","src":"20105:23:81"}],"functionName":{"name":"mstore","nativeSrc":"20078:6:81","nodeType":"YulIdentifier","src":"20078:6:81"},"nativeSrc":"20078:51:81","nodeType":"YulFunctionCall","src":"20078:51:81"},"nativeSrc":"20078:51:81","nodeType":"YulExpressionStatement","src":"20078:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20149:9:81","nodeType":"YulIdentifier","src":"20149:9:81"},{"kind":"number","nativeSrc":"20160:2:81","nodeType":"YulLiteral","src":"20160:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20145:3:81","nodeType":"YulIdentifier","src":"20145:3:81"},"nativeSrc":"20145:18:81","nodeType":"YulFunctionCall","src":"20145:18:81"},{"name":"value2","nativeSrc":"20165:6:81","nodeType":"YulIdentifier","src":"20165:6:81"}],"functionName":{"name":"mstore","nativeSrc":"20138:6:81","nodeType":"YulIdentifier","src":"20138:6:81"},"nativeSrc":"20138:34:81","nodeType":"YulFunctionCall","src":"20138:34:81"},"nativeSrc":"20138:34:81","nodeType":"YulExpressionStatement","src":"20138:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20192:9:81","nodeType":"YulIdentifier","src":"20192:9:81"},{"kind":"number","nativeSrc":"20203:2:81","nodeType":"YulLiteral","src":"20203:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20188:3:81","nodeType":"YulIdentifier","src":"20188:3:81"},"nativeSrc":"20188:18:81","nodeType":"YulFunctionCall","src":"20188:18:81"},{"name":"value3","nativeSrc":"20208:6:81","nodeType":"YulIdentifier","src":"20208:6:81"}],"functionName":{"name":"mstore","nativeSrc":"20181:6:81","nodeType":"YulIdentifier","src":"20181:6:81"},"nativeSrc":"20181:34:81","nodeType":"YulFunctionCall","src":"20181:34:81"},"nativeSrc":"20181:34:81","nodeType":"YulExpressionStatement","src":"20181:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20235:9:81","nodeType":"YulIdentifier","src":"20235:9:81"},{"kind":"number","nativeSrc":"20246:3:81","nodeType":"YulLiteral","src":"20246:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"20231:3:81","nodeType":"YulIdentifier","src":"20231:3:81"},"nativeSrc":"20231:19:81","nodeType":"YulFunctionCall","src":"20231:19:81"},{"arguments":[{"name":"value4","nativeSrc":"20256:6:81","nodeType":"YulIdentifier","src":"20256:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20272:3:81","nodeType":"YulLiteral","src":"20272:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"20277:1:81","nodeType":"YulLiteral","src":"20277:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20268:3:81","nodeType":"YulIdentifier","src":"20268:3:81"},"nativeSrc":"20268:11:81","nodeType":"YulFunctionCall","src":"20268:11:81"},{"kind":"number","nativeSrc":"20281:1:81","nodeType":"YulLiteral","src":"20281:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20264:3:81","nodeType":"YulIdentifier","src":"20264:3:81"},"nativeSrc":"20264:19:81","nodeType":"YulFunctionCall","src":"20264:19:81"}],"functionName":{"name":"and","nativeSrc":"20252:3:81","nodeType":"YulIdentifier","src":"20252:3:81"},"nativeSrc":"20252:32:81","nodeType":"YulFunctionCall","src":"20252:32:81"}],"functionName":{"name":"mstore","nativeSrc":"20224:6:81","nodeType":"YulIdentifier","src":"20224:6:81"},"nativeSrc":"20224:61:81","nodeType":"YulFunctionCall","src":"20224:61:81"},"nativeSrc":"20224:61:81","nodeType":"YulExpressionStatement","src":"20224:61:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed","nativeSrc":"19774:517:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19918:9:81","nodeType":"YulTypedName","src":"19918:9:81","type":""},{"name":"value4","nativeSrc":"19929:6:81","nodeType":"YulTypedName","src":"19929:6:81","type":""},{"name":"value3","nativeSrc":"19937:6:81","nodeType":"YulTypedName","src":"19937:6:81","type":""},{"name":"value2","nativeSrc":"19945:6:81","nodeType":"YulTypedName","src":"19945:6:81","type":""},{"name":"value1","nativeSrc":"19953:6:81","nodeType":"YulTypedName","src":"19953:6:81","type":""},{"name":"value0","nativeSrc":"19961:6:81","nodeType":"YulTypedName","src":"19961:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19972:4:81","nodeType":"YulTypedName","src":"19972:4:81","type":""}],"src":"19774:517:81"},{"body":{"nativeSrc":"20342:102:81","nodeType":"YulBlock","src":"20342:102:81","statements":[{"nativeSrc":"20352:38:81","nodeType":"YulAssignment","src":"20352:38:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"20367:1:81","nodeType":"YulIdentifier","src":"20367:1:81"},{"kind":"number","nativeSrc":"20370:4:81","nodeType":"YulLiteral","src":"20370:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"20363:3:81","nodeType":"YulIdentifier","src":"20363:3:81"},"nativeSrc":"20363:12:81","nodeType":"YulFunctionCall","src":"20363:12:81"},{"arguments":[{"name":"y","nativeSrc":"20381:1:81","nodeType":"YulIdentifier","src":"20381:1:81"},{"kind":"number","nativeSrc":"20384:4:81","nodeType":"YulLiteral","src":"20384:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"20377:3:81","nodeType":"YulIdentifier","src":"20377:3:81"},"nativeSrc":"20377:12:81","nodeType":"YulFunctionCall","src":"20377:12:81"}],"functionName":{"name":"add","nativeSrc":"20359:3:81","nodeType":"YulIdentifier","src":"20359:3:81"},"nativeSrc":"20359:31:81","nodeType":"YulFunctionCall","src":"20359:31:81"},"variableNames":[{"name":"sum","nativeSrc":"20352:3:81","nodeType":"YulIdentifier","src":"20352:3:81"}]},{"body":{"nativeSrc":"20416:22:81","nodeType":"YulBlock","src":"20416:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"20418:16:81","nodeType":"YulIdentifier","src":"20418:16:81"},"nativeSrc":"20418:18:81","nodeType":"YulFunctionCall","src":"20418:18:81"},"nativeSrc":"20418:18:81","nodeType":"YulExpressionStatement","src":"20418:18:81"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"20405:3:81","nodeType":"YulIdentifier","src":"20405:3:81"},{"kind":"number","nativeSrc":"20410:4:81","nodeType":"YulLiteral","src":"20410:4:81","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"20402:2:81","nodeType":"YulIdentifier","src":"20402:2:81"},"nativeSrc":"20402:13:81","nodeType":"YulFunctionCall","src":"20402:13:81"},"nativeSrc":"20399:39:81","nodeType":"YulIf","src":"20399:39:81"}]},"name":"checked_add_t_uint8","nativeSrc":"20296:148:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"20325:1:81","nodeType":"YulTypedName","src":"20325:1:81","type":""},{"name":"y","nativeSrc":"20328:1:81","nodeType":"YulTypedName","src":"20328:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"20334:3:81","nodeType":"YulTypedName","src":"20334:3:81","type":""}],"src":"20296:148:81"},{"body":{"nativeSrc":"20594:167:81","nodeType":"YulBlock","src":"20594:167:81","statements":[{"nativeSrc":"20604:26:81","nodeType":"YulAssignment","src":"20604:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"20616:9:81","nodeType":"YulIdentifier","src":"20616:9:81"},{"kind":"number","nativeSrc":"20627:2:81","nodeType":"YulLiteral","src":"20627:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20612:3:81","nodeType":"YulIdentifier","src":"20612:3:81"},"nativeSrc":"20612:18:81","nodeType":"YulFunctionCall","src":"20612:18:81"},"variableNames":[{"name":"tail","nativeSrc":"20604:4:81","nodeType":"YulIdentifier","src":"20604:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20646:9:81","nodeType":"YulIdentifier","src":"20646:9:81"},{"arguments":[{"name":"value0","nativeSrc":"20661:6:81","nodeType":"YulIdentifier","src":"20661:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20677:3:81","nodeType":"YulLiteral","src":"20677:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"20682:1:81","nodeType":"YulLiteral","src":"20682:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20673:3:81","nodeType":"YulIdentifier","src":"20673:3:81"},"nativeSrc":"20673:11:81","nodeType":"YulFunctionCall","src":"20673:11:81"},{"kind":"number","nativeSrc":"20686:1:81","nodeType":"YulLiteral","src":"20686:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20669:3:81","nodeType":"YulIdentifier","src":"20669:3:81"},"nativeSrc":"20669:19:81","nodeType":"YulFunctionCall","src":"20669:19:81"}],"functionName":{"name":"and","nativeSrc":"20657:3:81","nodeType":"YulIdentifier","src":"20657:3:81"},"nativeSrc":"20657:32:81","nodeType":"YulFunctionCall","src":"20657:32:81"}],"functionName":{"name":"mstore","nativeSrc":"20639:6:81","nodeType":"YulIdentifier","src":"20639:6:81"},"nativeSrc":"20639:51:81","nodeType":"YulFunctionCall","src":"20639:51:81"},"nativeSrc":"20639:51:81","nodeType":"YulExpressionStatement","src":"20639:51:81"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"20728:6:81","nodeType":"YulIdentifier","src":"20728:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"20740:9:81","nodeType":"YulIdentifier","src":"20740:9:81"},{"kind":"number","nativeSrc":"20751:2:81","nodeType":"YulLiteral","src":"20751:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20736:3:81","nodeType":"YulIdentifier","src":"20736:3:81"},"nativeSrc":"20736:18:81","nodeType":"YulFunctionCall","src":"20736:18:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"20699:28:81","nodeType":"YulIdentifier","src":"20699:28:81"},"nativeSrc":"20699:56:81","nodeType":"YulFunctionCall","src":"20699:56:81"},"nativeSrc":"20699:56:81","nodeType":"YulExpressionStatement","src":"20699:56:81"}]},"name":"abi_encode_tuple_t_address_t_enum$_TargetStatus_$22999__to_t_address_t_uint8__fromStack_reversed","nativeSrc":"20449:312:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20555:9:81","nodeType":"YulTypedName","src":"20555:9:81","type":""},{"name":"value1","nativeSrc":"20566:6:81","nodeType":"YulTypedName","src":"20566:6:81","type":""},{"name":"value0","nativeSrc":"20574:6:81","nodeType":"YulTypedName","src":"20574:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20585:4:81","nodeType":"YulTypedName","src":"20585:4:81","type":""}],"src":"20449:312:81"},{"body":{"nativeSrc":"20896:201:81","nodeType":"YulBlock","src":"20896:201:81","statements":[{"body":{"nativeSrc":"20934:16:81","nodeType":"YulBlock","src":"20934:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20943:1:81","nodeType":"YulLiteral","src":"20943:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"20946:1:81","nodeType":"YulLiteral","src":"20946:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20936:6:81","nodeType":"YulIdentifier","src":"20936:6:81"},"nativeSrc":"20936:12:81","nodeType":"YulFunctionCall","src":"20936:12:81"},"nativeSrc":"20936:12:81","nodeType":"YulExpressionStatement","src":"20936:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"20912:10:81","nodeType":"YulIdentifier","src":"20912:10:81"},{"name":"endIndex","nativeSrc":"20924:8:81","nodeType":"YulIdentifier","src":"20924:8:81"}],"functionName":{"name":"gt","nativeSrc":"20909:2:81","nodeType":"YulIdentifier","src":"20909:2:81"},"nativeSrc":"20909:24:81","nodeType":"YulFunctionCall","src":"20909:24:81"},"nativeSrc":"20906:44:81","nodeType":"YulIf","src":"20906:44:81"},{"body":{"nativeSrc":"20983:16:81","nodeType":"YulBlock","src":"20983:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20992:1:81","nodeType":"YulLiteral","src":"20992:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"20995:1:81","nodeType":"YulLiteral","src":"20995:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20985:6:81","nodeType":"YulIdentifier","src":"20985:6:81"},"nativeSrc":"20985:12:81","nodeType":"YulFunctionCall","src":"20985:12:81"},"nativeSrc":"20985:12:81","nodeType":"YulExpressionStatement","src":"20985:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"20965:8:81","nodeType":"YulIdentifier","src":"20965:8:81"},{"name":"length","nativeSrc":"20975:6:81","nodeType":"YulIdentifier","src":"20975:6:81"}],"functionName":{"name":"gt","nativeSrc":"20962:2:81","nodeType":"YulIdentifier","src":"20962:2:81"},"nativeSrc":"20962:20:81","nodeType":"YulFunctionCall","src":"20962:20:81"},"nativeSrc":"20959:40:81","nodeType":"YulIf","src":"20959:40:81"},{"nativeSrc":"21008:36:81","nodeType":"YulAssignment","src":"21008:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"21025:6:81","nodeType":"YulIdentifier","src":"21025:6:81"},{"name":"startIndex","nativeSrc":"21033:10:81","nodeType":"YulIdentifier","src":"21033:10:81"}],"functionName":{"name":"add","nativeSrc":"21021:3:81","nodeType":"YulIdentifier","src":"21021:3:81"},"nativeSrc":"21021:23:81","nodeType":"YulFunctionCall","src":"21021:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"21008:9:81","nodeType":"YulIdentifier","src":"21008:9:81"}]},{"nativeSrc":"21053:38:81","nodeType":"YulAssignment","src":"21053:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"21070:8:81","nodeType":"YulIdentifier","src":"21070:8:81"},{"name":"startIndex","nativeSrc":"21080:10:81","nodeType":"YulIdentifier","src":"21080:10:81"}],"functionName":{"name":"sub","nativeSrc":"21066:3:81","nodeType":"YulIdentifier","src":"21066:3:81"},"nativeSrc":"21066:25:81","nodeType":"YulFunctionCall","src":"21066:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"21053:9:81","nodeType":"YulIdentifier","src":"21053:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"20766:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"20830:6:81","nodeType":"YulTypedName","src":"20830:6:81","type":""},{"name":"length","nativeSrc":"20838:6:81","nodeType":"YulTypedName","src":"20838:6:81","type":""},{"name":"startIndex","nativeSrc":"20846:10:81","nodeType":"YulTypedName","src":"20846:10:81","type":""},{"name":"endIndex","nativeSrc":"20858:8:81","nodeType":"YulTypedName","src":"20858:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"20871:9:81","nodeType":"YulTypedName","src":"20871:9:81","type":""},{"name":"lengthOut","nativeSrc":"20882:9:81","nodeType":"YulTypedName","src":"20882:9:81","type":""}],"src":"20766:331:81"},{"body":{"nativeSrc":"21202:238:81","nodeType":"YulBlock","src":"21202:238:81","statements":[{"nativeSrc":"21212:29:81","nodeType":"YulVariableDeclaration","src":"21212:29:81","value":{"arguments":[{"name":"array","nativeSrc":"21235:5:81","nodeType":"YulIdentifier","src":"21235:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"21222:12:81","nodeType":"YulIdentifier","src":"21222:12:81"},"nativeSrc":"21222:19:81","nodeType":"YulFunctionCall","src":"21222:19:81"},"variables":[{"name":"_1","nativeSrc":"21216:2:81","nodeType":"YulTypedName","src":"21216:2:81","type":""}]},{"nativeSrc":"21250:38:81","nodeType":"YulAssignment","src":"21250:38:81","value":{"arguments":[{"name":"_1","nativeSrc":"21263:2:81","nodeType":"YulIdentifier","src":"21263:2:81"},{"arguments":[{"kind":"number","nativeSrc":"21271:3:81","nodeType":"YulLiteral","src":"21271:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"21276:10:81","nodeType":"YulLiteral","src":"21276:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"21267:3:81","nodeType":"YulIdentifier","src":"21267:3:81"},"nativeSrc":"21267:20:81","nodeType":"YulFunctionCall","src":"21267:20:81"}],"functionName":{"name":"and","nativeSrc":"21259:3:81","nodeType":"YulIdentifier","src":"21259:3:81"},"nativeSrc":"21259:29:81","nodeType":"YulFunctionCall","src":"21259:29:81"},"variableNames":[{"name":"value","nativeSrc":"21250:5:81","nodeType":"YulIdentifier","src":"21250:5:81"}]},{"body":{"nativeSrc":"21319:115:81","nodeType":"YulBlock","src":"21319:115:81","statements":[{"nativeSrc":"21333:91:81","nodeType":"YulAssignment","src":"21333:91:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"21350:2:81","nodeType":"YulIdentifier","src":"21350:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21362:1:81","nodeType":"YulLiteral","src":"21362:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"21369:1:81","nodeType":"YulLiteral","src":"21369:1:81","type":"","value":"4"},{"name":"len","nativeSrc":"21372:3:81","nodeType":"YulIdentifier","src":"21372:3:81"}],"functionName":{"name":"sub","nativeSrc":"21365:3:81","nodeType":"YulIdentifier","src":"21365:3:81"},"nativeSrc":"21365:11:81","nodeType":"YulFunctionCall","src":"21365:11:81"}],"functionName":{"name":"shl","nativeSrc":"21358:3:81","nodeType":"YulIdentifier","src":"21358:3:81"},"nativeSrc":"21358:19:81","nodeType":"YulFunctionCall","src":"21358:19:81"},{"arguments":[{"kind":"number","nativeSrc":"21383:3:81","nodeType":"YulLiteral","src":"21383:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"21388:10:81","nodeType":"YulLiteral","src":"21388:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"21379:3:81","nodeType":"YulIdentifier","src":"21379:3:81"},"nativeSrc":"21379:20:81","nodeType":"YulFunctionCall","src":"21379:20:81"}],"functionName":{"name":"shl","nativeSrc":"21354:3:81","nodeType":"YulIdentifier","src":"21354:3:81"},"nativeSrc":"21354:46:81","nodeType":"YulFunctionCall","src":"21354:46:81"}],"functionName":{"name":"and","nativeSrc":"21346:3:81","nodeType":"YulIdentifier","src":"21346:3:81"},"nativeSrc":"21346:55:81","nodeType":"YulFunctionCall","src":"21346:55:81"},{"arguments":[{"kind":"number","nativeSrc":"21407:3:81","nodeType":"YulLiteral","src":"21407:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"21412:10:81","nodeType":"YulLiteral","src":"21412:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"21403:3:81","nodeType":"YulIdentifier","src":"21403:3:81"},"nativeSrc":"21403:20:81","nodeType":"YulFunctionCall","src":"21403:20:81"}],"functionName":{"name":"and","nativeSrc":"21342:3:81","nodeType":"YulIdentifier","src":"21342:3:81"},"nativeSrc":"21342:82:81","nodeType":"YulFunctionCall","src":"21342:82:81"},"variableNames":[{"name":"value","nativeSrc":"21333:5:81","nodeType":"YulIdentifier","src":"21333:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"21303:3:81","nodeType":"YulIdentifier","src":"21303:3:81"},{"kind":"number","nativeSrc":"21308:1:81","nodeType":"YulLiteral","src":"21308:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"21300:2:81","nodeType":"YulIdentifier","src":"21300:2:81"},"nativeSrc":"21300:10:81","nodeType":"YulFunctionCall","src":"21300:10:81"},"nativeSrc":"21297:137:81","nodeType":"YulIf","src":"21297:137:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"21102:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"21177:5:81","nodeType":"YulTypedName","src":"21177:5:81","type":""},{"name":"len","nativeSrc":"21184:3:81","nodeType":"YulTypedName","src":"21184:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"21192:5:81","nodeType":"YulTypedName","src":"21192:5:81","type":""}],"src":"21102:338:81"},{"body":{"nativeSrc":"21526:180:81","nodeType":"YulBlock","src":"21526:180:81","statements":[{"body":{"nativeSrc":"21572:16:81","nodeType":"YulBlock","src":"21572:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21581:1:81","nodeType":"YulLiteral","src":"21581:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"21584:1:81","nodeType":"YulLiteral","src":"21584:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21574:6:81","nodeType":"YulIdentifier","src":"21574:6:81"},"nativeSrc":"21574:12:81","nodeType":"YulFunctionCall","src":"21574:12:81"},"nativeSrc":"21574:12:81","nodeType":"YulExpressionStatement","src":"21574:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21547:7:81","nodeType":"YulIdentifier","src":"21547:7:81"},{"name":"headStart","nativeSrc":"21556:9:81","nodeType":"YulIdentifier","src":"21556:9:81"}],"functionName":{"name":"sub","nativeSrc":"21543:3:81","nodeType":"YulIdentifier","src":"21543:3:81"},"nativeSrc":"21543:23:81","nodeType":"YulFunctionCall","src":"21543:23:81"},{"kind":"number","nativeSrc":"21568:2:81","nodeType":"YulLiteral","src":"21568:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"21539:3:81","nodeType":"YulIdentifier","src":"21539:3:81"},"nativeSrc":"21539:32:81","nodeType":"YulFunctionCall","src":"21539:32:81"},"nativeSrc":"21536:52:81","nodeType":"YulIf","src":"21536:52:81"},{"nativeSrc":"21597:29:81","nodeType":"YulVariableDeclaration","src":"21597:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"21616:9:81","nodeType":"YulIdentifier","src":"21616:9:81"}],"functionName":{"name":"mload","nativeSrc":"21610:5:81","nodeType":"YulIdentifier","src":"21610:5:81"},"nativeSrc":"21610:16:81","nodeType":"YulFunctionCall","src":"21610:16:81"},"variables":[{"name":"value","nativeSrc":"21601:5:81","nodeType":"YulTypedName","src":"21601:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21670:5:81","nodeType":"YulIdentifier","src":"21670:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"21635:34:81","nodeType":"YulIdentifier","src":"21635:34:81"},"nativeSrc":"21635:41:81","nodeType":"YulFunctionCall","src":"21635:41:81"},"nativeSrc":"21635:41:81","nodeType":"YulExpressionStatement","src":"21635:41:81"},{"nativeSrc":"21685:15:81","nodeType":"YulAssignment","src":"21685:15:81","value":{"name":"value","nativeSrc":"21695:5:81","nodeType":"YulIdentifier","src":"21695:5:81"},"variableNames":[{"name":"value0","nativeSrc":"21685:6:81","nodeType":"YulIdentifier","src":"21685:6:81"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"21445:261:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21492:9:81","nodeType":"YulTypedName","src":"21492:9:81","type":""},{"name":"dataEnd","nativeSrc":"21503:7:81","nodeType":"YulTypedName","src":"21503:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21515:6:81","nodeType":"YulTypedName","src":"21515:6:81","type":""}],"src":"21445:261:81"},{"body":{"nativeSrc":"21836:152:81","nodeType":"YulBlock","src":"21836:152:81","statements":[{"nativeSrc":"21846:26:81","nodeType":"YulAssignment","src":"21846:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"21858:9:81","nodeType":"YulIdentifier","src":"21858:9:81"},{"kind":"number","nativeSrc":"21869:2:81","nodeType":"YulLiteral","src":"21869:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21854:3:81","nodeType":"YulIdentifier","src":"21854:3:81"},"nativeSrc":"21854:18:81","nodeType":"YulFunctionCall","src":"21854:18:81"},"variableNames":[{"name":"tail","nativeSrc":"21846:4:81","nodeType":"YulIdentifier","src":"21846:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21888:9:81","nodeType":"YulIdentifier","src":"21888:9:81"},{"name":"value0","nativeSrc":"21899:6:81","nodeType":"YulIdentifier","src":"21899:6:81"}],"functionName":{"name":"mstore","nativeSrc":"21881:6:81","nodeType":"YulIdentifier","src":"21881:6:81"},"nativeSrc":"21881:25:81","nodeType":"YulFunctionCall","src":"21881:25:81"},"nativeSrc":"21881:25:81","nodeType":"YulExpressionStatement","src":"21881:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21926:9:81","nodeType":"YulIdentifier","src":"21926:9:81"},{"kind":"number","nativeSrc":"21937:2:81","nodeType":"YulLiteral","src":"21937:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21922:3:81","nodeType":"YulIdentifier","src":"21922:3:81"},"nativeSrc":"21922:18:81","nodeType":"YulFunctionCall","src":"21922:18:81"},{"arguments":[{"name":"value1","nativeSrc":"21946:6:81","nodeType":"YulIdentifier","src":"21946:6:81"},{"kind":"number","nativeSrc":"21954:26:81","nodeType":"YulLiteral","src":"21954:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"21942:3:81","nodeType":"YulIdentifier","src":"21942:3:81"},"nativeSrc":"21942:39:81","nodeType":"YulFunctionCall","src":"21942:39:81"}],"functionName":{"name":"mstore","nativeSrc":"21915:6:81","nodeType":"YulIdentifier","src":"21915:6:81"},"nativeSrc":"21915:67:81","nodeType":"YulFunctionCall","src":"21915:67:81"},"nativeSrc":"21915:67:81","nodeType":"YulExpressionStatement","src":"21915:67:81"}]},"name":"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed","nativeSrc":"21711:277:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21797:9:81","nodeType":"YulTypedName","src":"21797:9:81","type":""},{"name":"value1","nativeSrc":"21808:6:81","nodeType":"YulTypedName","src":"21808:6:81","type":""},{"name":"value0","nativeSrc":"21816:6:81","nodeType":"YulTypedName","src":"21816:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21827:4:81","nodeType":"YulTypedName","src":"21827:4:81","type":""}],"src":"21711:277:81"},{"body":{"nativeSrc":"22150:188:81","nodeType":"YulBlock","src":"22150:188:81","statements":[{"nativeSrc":"22160:26:81","nodeType":"YulAssignment","src":"22160:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22172:9:81","nodeType":"YulIdentifier","src":"22172:9:81"},{"kind":"number","nativeSrc":"22183:2:81","nodeType":"YulLiteral","src":"22183:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22168:3:81","nodeType":"YulIdentifier","src":"22168:3:81"},"nativeSrc":"22168:18:81","nodeType":"YulFunctionCall","src":"22168:18:81"},"variableNames":[{"name":"tail","nativeSrc":"22160:4:81","nodeType":"YulIdentifier","src":"22160:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22202:9:81","nodeType":"YulIdentifier","src":"22202:9:81"},{"arguments":[{"name":"value0","nativeSrc":"22217:6:81","nodeType":"YulIdentifier","src":"22217:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22233:3:81","nodeType":"YulLiteral","src":"22233:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"22238:1:81","nodeType":"YulLiteral","src":"22238:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22229:3:81","nodeType":"YulIdentifier","src":"22229:3:81"},"nativeSrc":"22229:11:81","nodeType":"YulFunctionCall","src":"22229:11:81"},{"kind":"number","nativeSrc":"22242:1:81","nodeType":"YulLiteral","src":"22242:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22225:3:81","nodeType":"YulIdentifier","src":"22225:3:81"},"nativeSrc":"22225:19:81","nodeType":"YulFunctionCall","src":"22225:19:81"}],"functionName":{"name":"and","nativeSrc":"22213:3:81","nodeType":"YulIdentifier","src":"22213:3:81"},"nativeSrc":"22213:32:81","nodeType":"YulFunctionCall","src":"22213:32:81"}],"functionName":{"name":"mstore","nativeSrc":"22195:6:81","nodeType":"YulIdentifier","src":"22195:6:81"},"nativeSrc":"22195:51:81","nodeType":"YulFunctionCall","src":"22195:51:81"},"nativeSrc":"22195:51:81","nodeType":"YulExpressionStatement","src":"22195:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22266:9:81","nodeType":"YulIdentifier","src":"22266:9:81"},{"kind":"number","nativeSrc":"22277:2:81","nodeType":"YulLiteral","src":"22277:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22262:3:81","nodeType":"YulIdentifier","src":"22262:3:81"},"nativeSrc":"22262:18:81","nodeType":"YulFunctionCall","src":"22262:18:81"},{"name":"value1","nativeSrc":"22282:6:81","nodeType":"YulIdentifier","src":"22282:6:81"}],"functionName":{"name":"mstore","nativeSrc":"22255:6:81","nodeType":"YulIdentifier","src":"22255:6:81"},"nativeSrc":"22255:34:81","nodeType":"YulFunctionCall","src":"22255:34:81"},"nativeSrc":"22255:34:81","nodeType":"YulExpressionStatement","src":"22255:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22309:9:81","nodeType":"YulIdentifier","src":"22309:9:81"},{"kind":"number","nativeSrc":"22320:2:81","nodeType":"YulLiteral","src":"22320:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22305:3:81","nodeType":"YulIdentifier","src":"22305:3:81"},"nativeSrc":"22305:18:81","nodeType":"YulFunctionCall","src":"22305:18:81"},{"name":"value2","nativeSrc":"22325:6:81","nodeType":"YulIdentifier","src":"22325:6:81"}],"functionName":{"name":"mstore","nativeSrc":"22298:6:81","nodeType":"YulIdentifier","src":"22298:6:81"},"nativeSrc":"22298:34:81","nodeType":"YulFunctionCall","src":"22298:34:81"},"nativeSrc":"22298:34:81","nodeType":"YulExpressionStatement","src":"22298:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"21993:345:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22103:9:81","nodeType":"YulTypedName","src":"22103:9:81","type":""},{"name":"value2","nativeSrc":"22114:6:81","nodeType":"YulTypedName","src":"22114:6:81","type":""},{"name":"value1","nativeSrc":"22122:6:81","nodeType":"YulTypedName","src":"22122:6:81","type":""},{"name":"value0","nativeSrc":"22130:6:81","nodeType":"YulTypedName","src":"22130:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22141:4:81","nodeType":"YulTypedName","src":"22141:4:81","type":""}],"src":"21993:345:81"},{"body":{"nativeSrc":"22472:145:81","nodeType":"YulBlock","src":"22472:145:81","statements":[{"nativeSrc":"22482:26:81","nodeType":"YulAssignment","src":"22482:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22494:9:81","nodeType":"YulIdentifier","src":"22494:9:81"},{"kind":"number","nativeSrc":"22505:2:81","nodeType":"YulLiteral","src":"22505:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22490:3:81","nodeType":"YulIdentifier","src":"22490:3:81"},"nativeSrc":"22490:18:81","nodeType":"YulFunctionCall","src":"22490:18:81"},"variableNames":[{"name":"tail","nativeSrc":"22482:4:81","nodeType":"YulIdentifier","src":"22482:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22524:9:81","nodeType":"YulIdentifier","src":"22524:9:81"},{"name":"value0","nativeSrc":"22535:6:81","nodeType":"YulIdentifier","src":"22535:6:81"}],"functionName":{"name":"mstore","nativeSrc":"22517:6:81","nodeType":"YulIdentifier","src":"22517:6:81"},"nativeSrc":"22517:25:81","nodeType":"YulFunctionCall","src":"22517:25:81"},"nativeSrc":"22517:25:81","nodeType":"YulExpressionStatement","src":"22517:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22562:9:81","nodeType":"YulIdentifier","src":"22562:9:81"},{"kind":"number","nativeSrc":"22573:2:81","nodeType":"YulLiteral","src":"22573:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22558:3:81","nodeType":"YulIdentifier","src":"22558:3:81"},"nativeSrc":"22558:18:81","nodeType":"YulFunctionCall","src":"22558:18:81"},{"arguments":[{"name":"value1","nativeSrc":"22582:6:81","nodeType":"YulIdentifier","src":"22582:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22598:3:81","nodeType":"YulLiteral","src":"22598:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"22603:1:81","nodeType":"YulLiteral","src":"22603:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22594:3:81","nodeType":"YulIdentifier","src":"22594:3:81"},"nativeSrc":"22594:11:81","nodeType":"YulFunctionCall","src":"22594:11:81"},{"kind":"number","nativeSrc":"22607:1:81","nodeType":"YulLiteral","src":"22607:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22590:3:81","nodeType":"YulIdentifier","src":"22590:3:81"},"nativeSrc":"22590:19:81","nodeType":"YulFunctionCall","src":"22590:19:81"}],"functionName":{"name":"and","nativeSrc":"22578:3:81","nodeType":"YulIdentifier","src":"22578:3:81"},"nativeSrc":"22578:32:81","nodeType":"YulFunctionCall","src":"22578:32:81"}],"functionName":{"name":"mstore","nativeSrc":"22551:6:81","nodeType":"YulIdentifier","src":"22551:6:81"},"nativeSrc":"22551:60:81","nodeType":"YulFunctionCall","src":"22551:60:81"},"nativeSrc":"22551:60:81","nodeType":"YulExpressionStatement","src":"22551:60:81"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"22343:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22433:9:81","nodeType":"YulTypedName","src":"22433:9:81","type":""},{"name":"value1","nativeSrc":"22444:6:81","nodeType":"YulTypedName","src":"22444:6:81","type":""},{"name":"value0","nativeSrc":"22452:6:81","nodeType":"YulTypedName","src":"22452:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22463:4:81","nodeType":"YulTypedName","src":"22463:4:81","type":""}],"src":"22343:274:81"},{"body":{"nativeSrc":"22805:272:81","nodeType":"YulBlock","src":"22805:272:81","statements":[{"nativeSrc":"22815:27:81","nodeType":"YulAssignment","src":"22815:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"22827:9:81","nodeType":"YulIdentifier","src":"22827:9:81"},{"kind":"number","nativeSrc":"22838:3:81","nodeType":"YulLiteral","src":"22838:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22823:3:81","nodeType":"YulIdentifier","src":"22823:3:81"},"nativeSrc":"22823:19:81","nodeType":"YulFunctionCall","src":"22823:19:81"},"variableNames":[{"name":"tail","nativeSrc":"22815:4:81","nodeType":"YulIdentifier","src":"22815:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22858:9:81","nodeType":"YulIdentifier","src":"22858:9:81"},{"arguments":[{"name":"value0","nativeSrc":"22873:6:81","nodeType":"YulIdentifier","src":"22873:6:81"},{"kind":"number","nativeSrc":"22881:26:81","nodeType":"YulLiteral","src":"22881:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"22869:3:81","nodeType":"YulIdentifier","src":"22869:3:81"},"nativeSrc":"22869:39:81","nodeType":"YulFunctionCall","src":"22869:39:81"}],"functionName":{"name":"mstore","nativeSrc":"22851:6:81","nodeType":"YulIdentifier","src":"22851:6:81"},"nativeSrc":"22851:58:81","nodeType":"YulFunctionCall","src":"22851:58:81"},"nativeSrc":"22851:58:81","nodeType":"YulExpressionStatement","src":"22851:58:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22929:9:81","nodeType":"YulIdentifier","src":"22929:9:81"},{"kind":"number","nativeSrc":"22940:2:81","nodeType":"YulLiteral","src":"22940:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22925:3:81","nodeType":"YulIdentifier","src":"22925:3:81"},"nativeSrc":"22925:18:81","nodeType":"YulFunctionCall","src":"22925:18:81"},{"name":"value1","nativeSrc":"22945:6:81","nodeType":"YulIdentifier","src":"22945:6:81"}],"functionName":{"name":"mstore","nativeSrc":"22918:6:81","nodeType":"YulIdentifier","src":"22918:6:81"},"nativeSrc":"22918:34:81","nodeType":"YulFunctionCall","src":"22918:34:81"},"nativeSrc":"22918:34:81","nodeType":"YulExpressionStatement","src":"22918:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22972:9:81","nodeType":"YulIdentifier","src":"22972:9:81"},{"kind":"number","nativeSrc":"22983:2:81","nodeType":"YulLiteral","src":"22983:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22968:3:81","nodeType":"YulIdentifier","src":"22968:3:81"},"nativeSrc":"22968:18:81","nodeType":"YulFunctionCall","src":"22968:18:81"},{"arguments":[{"name":"value2","nativeSrc":"22992:6:81","nodeType":"YulIdentifier","src":"22992:6:81"},{"kind":"number","nativeSrc":"23000:26:81","nodeType":"YulLiteral","src":"23000:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"22988:3:81","nodeType":"YulIdentifier","src":"22988:3:81"},"nativeSrc":"22988:39:81","nodeType":"YulFunctionCall","src":"22988:39:81"}],"functionName":{"name":"mstore","nativeSrc":"22961:6:81","nodeType":"YulIdentifier","src":"22961:6:81"},"nativeSrc":"22961:67:81","nodeType":"YulFunctionCall","src":"22961:67:81"},"nativeSrc":"22961:67:81","nodeType":"YulExpressionStatement","src":"22961:67:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23048:9:81","nodeType":"YulIdentifier","src":"23048:9:81"},{"kind":"number","nativeSrc":"23059:2:81","nodeType":"YulLiteral","src":"23059:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23044:3:81","nodeType":"YulIdentifier","src":"23044:3:81"},"nativeSrc":"23044:18:81","nodeType":"YulFunctionCall","src":"23044:18:81"},{"name":"value3","nativeSrc":"23064:6:81","nodeType":"YulIdentifier","src":"23064:6:81"}],"functionName":{"name":"mstore","nativeSrc":"23037:6:81","nodeType":"YulIdentifier","src":"23037:6:81"},"nativeSrc":"23037:34:81","nodeType":"YulFunctionCall","src":"23037:34:81"},"nativeSrc":"23037:34:81","nodeType":"YulExpressionStatement","src":"23037:34:81"}]},"name":"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"22622:455:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22750:9:81","nodeType":"YulTypedName","src":"22750:9:81","type":""},{"name":"value3","nativeSrc":"22761:6:81","nodeType":"YulTypedName","src":"22761:6:81","type":""},{"name":"value2","nativeSrc":"22769:6:81","nodeType":"YulTypedName","src":"22769:6:81","type":""},{"name":"value1","nativeSrc":"22777:6:81","nodeType":"YulTypedName","src":"22777:6:81","type":""},{"name":"value0","nativeSrc":"22785:6:81","nodeType":"YulTypedName","src":"22785:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22796:4:81","nodeType":"YulTypedName","src":"22796:4:81","type":""}],"src":"22622:455:81"},{"body":{"nativeSrc":"23246:405:81","nodeType":"YulBlock","src":"23246:405:81","statements":[{"nativeSrc":"23256:27:81","nodeType":"YulAssignment","src":"23256:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"23268:9:81","nodeType":"YulIdentifier","src":"23268:9:81"},{"kind":"number","nativeSrc":"23279:3:81","nodeType":"YulLiteral","src":"23279:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"23264:3:81","nodeType":"YulIdentifier","src":"23264:3:81"},"nativeSrc":"23264:19:81","nodeType":"YulFunctionCall","src":"23264:19:81"},"variableNames":[{"name":"tail","nativeSrc":"23256:4:81","nodeType":"YulIdentifier","src":"23256:4:81"}]},{"nativeSrc":"23292:30:81","nodeType":"YulVariableDeclaration","src":"23292:30:81","value":{"arguments":[{"name":"value0","nativeSrc":"23315:6:81","nodeType":"YulIdentifier","src":"23315:6:81"}],"functionName":{"name":"sload","nativeSrc":"23309:5:81","nodeType":"YulIdentifier","src":"23309:5:81"},"nativeSrc":"23309:13:81","nodeType":"YulFunctionCall","src":"23309:13:81"},"variables":[{"name":"slotValue","nativeSrc":"23296:9:81","nodeType":"YulTypedName","src":"23296:9:81","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23338:9:81","nodeType":"YulIdentifier","src":"23338:9:81"},{"arguments":[{"name":"slotValue","nativeSrc":"23353:9:81","nodeType":"YulIdentifier","src":"23353:9:81"},{"kind":"number","nativeSrc":"23364:10:81","nodeType":"YulLiteral","src":"23364:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"23349:3:81","nodeType":"YulIdentifier","src":"23349:3:81"},"nativeSrc":"23349:26:81","nodeType":"YulFunctionCall","src":"23349:26:81"}],"functionName":{"name":"mstore","nativeSrc":"23331:6:81","nodeType":"YulIdentifier","src":"23331:6:81"},"nativeSrc":"23331:45:81","nodeType":"YulFunctionCall","src":"23331:45:81"},"nativeSrc":"23331:45:81","nodeType":"YulExpressionStatement","src":"23331:45:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23422:2:81","nodeType":"YulLiteral","src":"23422:2:81","type":"","value":"32"},{"name":"slotValue","nativeSrc":"23426:9:81","nodeType":"YulIdentifier","src":"23426:9:81"}],"functionName":{"name":"shr","nativeSrc":"23418:3:81","nodeType":"YulIdentifier","src":"23418:3:81"},"nativeSrc":"23418:18:81","nodeType":"YulFunctionCall","src":"23418:18:81"},{"kind":"number","nativeSrc":"23438:4:81","nodeType":"YulLiteral","src":"23438:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"23414:3:81","nodeType":"YulIdentifier","src":"23414:3:81"},"nativeSrc":"23414:29:81","nodeType":"YulFunctionCall","src":"23414:29:81"},{"arguments":[{"name":"headStart","nativeSrc":"23449:9:81","nodeType":"YulIdentifier","src":"23449:9:81"},{"kind":"number","nativeSrc":"23460:2:81","nodeType":"YulLiteral","src":"23460:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23445:3:81","nodeType":"YulIdentifier","src":"23445:3:81"},"nativeSrc":"23445:18:81","nodeType":"YulFunctionCall","src":"23445:18:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"23385:28:81","nodeType":"YulIdentifier","src":"23385:28:81"},"nativeSrc":"23385:79:81","nodeType":"YulFunctionCall","src":"23385:79:81"},"nativeSrc":"23385:79:81","nodeType":"YulExpressionStatement","src":"23385:79:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23484:9:81","nodeType":"YulIdentifier","src":"23484:9:81"},{"kind":"number","nativeSrc":"23495:4:81","nodeType":"YulLiteral","src":"23495:4:81","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"23480:3:81","nodeType":"YulIdentifier","src":"23480:3:81"},"nativeSrc":"23480:20:81","nodeType":"YulFunctionCall","src":"23480:20:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23510:2:81","nodeType":"YulLiteral","src":"23510:2:81","type":"","value":"40"},{"name":"slotValue","nativeSrc":"23514:9:81","nodeType":"YulIdentifier","src":"23514:9:81"}],"functionName":{"name":"shr","nativeSrc":"23506:3:81","nodeType":"YulIdentifier","src":"23506:3:81"},"nativeSrc":"23506:18:81","nodeType":"YulFunctionCall","src":"23506:18:81"},{"kind":"number","nativeSrc":"23526:26:81","nodeType":"YulLiteral","src":"23526:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"23502:3:81","nodeType":"YulIdentifier","src":"23502:3:81"},"nativeSrc":"23502:51:81","nodeType":"YulFunctionCall","src":"23502:51:81"}],"functionName":{"name":"mstore","nativeSrc":"23473:6:81","nodeType":"YulIdentifier","src":"23473:6:81"},"nativeSrc":"23473:81:81","nodeType":"YulFunctionCall","src":"23473:81:81"},"nativeSrc":"23473:81:81","nodeType":"YulExpressionStatement","src":"23473:81:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23574:9:81","nodeType":"YulIdentifier","src":"23574:9:81"},{"kind":"number","nativeSrc":"23585:4:81","nodeType":"YulLiteral","src":"23585:4:81","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"23570:3:81","nodeType":"YulIdentifier","src":"23570:3:81"},"nativeSrc":"23570:20:81","nodeType":"YulFunctionCall","src":"23570:20:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23600:3:81","nodeType":"YulLiteral","src":"23600:3:81","type":"","value":"136"},{"name":"slotValue","nativeSrc":"23605:9:81","nodeType":"YulIdentifier","src":"23605:9:81"}],"functionName":{"name":"shr","nativeSrc":"23596:3:81","nodeType":"YulIdentifier","src":"23596:3:81"},"nativeSrc":"23596:19:81","nodeType":"YulFunctionCall","src":"23596:19:81"},{"kind":"number","nativeSrc":"23617:26:81","nodeType":"YulLiteral","src":"23617:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"23592:3:81","nodeType":"YulIdentifier","src":"23592:3:81"},"nativeSrc":"23592:52:81","nodeType":"YulFunctionCall","src":"23592:52:81"}],"functionName":{"name":"mstore","nativeSrc":"23563:6:81","nodeType":"YulIdentifier","src":"23563:6:81"},"nativeSrc":"23563:82:81","nodeType":"YulFunctionCall","src":"23563:82:81"},"nativeSrc":"23563:82:81","nodeType":"YulExpressionStatement","src":"23563:82:81"}]},"name":"abi_encode_tuple_t_struct$_TargetConfig_$23009_storage_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed","nativeSrc":"23082:569:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23215:9:81","nodeType":"YulTypedName","src":"23215:9:81","type":""},{"name":"value0","nativeSrc":"23226:6:81","nodeType":"YulTypedName","src":"23226:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23237:4:81","nodeType":"YulTypedName","src":"23237:4:81","type":""}],"src":"23082:569:81"},{"body":{"nativeSrc":"23801:174:81","nodeType":"YulBlock","src":"23801:174:81","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"23818:3:81","nodeType":"YulIdentifier","src":"23818:3:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23831:2:81","nodeType":"YulLiteral","src":"23831:2:81","type":"","value":"96"},{"name":"value0","nativeSrc":"23835:6:81","nodeType":"YulIdentifier","src":"23835:6:81"}],"functionName":{"name":"shl","nativeSrc":"23827:3:81","nodeType":"YulIdentifier","src":"23827:3:81"},"nativeSrc":"23827:15:81","nodeType":"YulFunctionCall","src":"23827:15:81"},{"arguments":[{"kind":"number","nativeSrc":"23848:26:81","nodeType":"YulLiteral","src":"23848:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"23844:3:81","nodeType":"YulIdentifier","src":"23844:3:81"},"nativeSrc":"23844:31:81","nodeType":"YulFunctionCall","src":"23844:31:81"}],"functionName":{"name":"and","nativeSrc":"23823:3:81","nodeType":"YulIdentifier","src":"23823:3:81"},"nativeSrc":"23823:53:81","nodeType":"YulFunctionCall","src":"23823:53:81"}],"functionName":{"name":"mstore","nativeSrc":"23811:6:81","nodeType":"YulIdentifier","src":"23811:6:81"},"nativeSrc":"23811:66:81","nodeType":"YulFunctionCall","src":"23811:66:81"},"nativeSrc":"23811:66:81","nodeType":"YulExpressionStatement","src":"23811:66:81"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"23897:3:81","nodeType":"YulIdentifier","src":"23897:3:81"},{"kind":"number","nativeSrc":"23902:2:81","nodeType":"YulLiteral","src":"23902:2:81","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"23893:3:81","nodeType":"YulIdentifier","src":"23893:3:81"},"nativeSrc":"23893:12:81","nodeType":"YulFunctionCall","src":"23893:12:81"},{"arguments":[{"name":"value1","nativeSrc":"23911:6:81","nodeType":"YulIdentifier","src":"23911:6:81"},{"arguments":[{"kind":"number","nativeSrc":"23923:3:81","nodeType":"YulLiteral","src":"23923:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"23928:10:81","nodeType":"YulLiteral","src":"23928:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"23919:3:81","nodeType":"YulIdentifier","src":"23919:3:81"},"nativeSrc":"23919:20:81","nodeType":"YulFunctionCall","src":"23919:20:81"}],"functionName":{"name":"and","nativeSrc":"23907:3:81","nodeType":"YulIdentifier","src":"23907:3:81"},"nativeSrc":"23907:33:81","nodeType":"YulFunctionCall","src":"23907:33:81"}],"functionName":{"name":"mstore","nativeSrc":"23886:6:81","nodeType":"YulIdentifier","src":"23886:6:81"},"nativeSrc":"23886:55:81","nodeType":"YulFunctionCall","src":"23886:55:81"},"nativeSrc":"23886:55:81","nodeType":"YulExpressionStatement","src":"23886:55:81"},{"nativeSrc":"23950:19:81","nodeType":"YulAssignment","src":"23950:19:81","value":{"arguments":[{"name":"pos","nativeSrc":"23961:3:81","nodeType":"YulIdentifier","src":"23961:3:81"},{"kind":"number","nativeSrc":"23966:2:81","nodeType":"YulLiteral","src":"23966:2:81","type":"","value":"24"}],"functionName":{"name":"add","nativeSrc":"23957:3:81","nodeType":"YulIdentifier","src":"23957:3:81"},"nativeSrc":"23957:12:81","nodeType":"YulFunctionCall","src":"23957:12:81"},"variableNames":[{"name":"end","nativeSrc":"23950:3:81","nodeType":"YulIdentifier","src":"23950:3:81"}]}]},"name":"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed","nativeSrc":"23656:319:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"23769:3:81","nodeType":"YulTypedName","src":"23769:3:81","type":""},{"name":"value1","nativeSrc":"23774:6:81","nodeType":"YulTypedName","src":"23774:6:81","type":""},{"name":"value0","nativeSrc":"23782:6:81","nodeType":"YulTypedName","src":"23782:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"23793:3:81","nodeType":"YulTypedName","src":"23793:3:81","type":""}],"src":"23656:319:81"},{"body":{"nativeSrc":"24085:180:81","nodeType":"YulBlock","src":"24085:180:81","statements":[{"body":{"nativeSrc":"24131:16:81","nodeType":"YulBlock","src":"24131:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24140:1:81","nodeType":"YulLiteral","src":"24140:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"24143:1:81","nodeType":"YulLiteral","src":"24143:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24133:6:81","nodeType":"YulIdentifier","src":"24133:6:81"},"nativeSrc":"24133:12:81","nodeType":"YulFunctionCall","src":"24133:12:81"},"nativeSrc":"24133:12:81","nodeType":"YulExpressionStatement","src":"24133:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24106:7:81","nodeType":"YulIdentifier","src":"24106:7:81"},{"name":"headStart","nativeSrc":"24115:9:81","nodeType":"YulIdentifier","src":"24115:9:81"}],"functionName":{"name":"sub","nativeSrc":"24102:3:81","nodeType":"YulIdentifier","src":"24102:3:81"},"nativeSrc":"24102:23:81","nodeType":"YulFunctionCall","src":"24102:23:81"},{"kind":"number","nativeSrc":"24127:2:81","nodeType":"YulLiteral","src":"24127:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24098:3:81","nodeType":"YulIdentifier","src":"24098:3:81"},"nativeSrc":"24098:32:81","nodeType":"YulFunctionCall","src":"24098:32:81"},"nativeSrc":"24095:52:81","nodeType":"YulIf","src":"24095:52:81"},{"nativeSrc":"24156:29:81","nodeType":"YulVariableDeclaration","src":"24156:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"24175:9:81","nodeType":"YulIdentifier","src":"24175:9:81"}],"functionName":{"name":"mload","nativeSrc":"24169:5:81","nodeType":"YulIdentifier","src":"24169:5:81"},"nativeSrc":"24169:16:81","nodeType":"YulFunctionCall","src":"24169:16:81"},"variables":[{"name":"value","nativeSrc":"24160:5:81","nodeType":"YulTypedName","src":"24160:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24229:5:81","nodeType":"YulIdentifier","src":"24229:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"24194:34:81","nodeType":"YulIdentifier","src":"24194:34:81"},"nativeSrc":"24194:41:81","nodeType":"YulFunctionCall","src":"24194:41:81"},"nativeSrc":"24194:41:81","nodeType":"YulExpressionStatement","src":"24194:41:81"},{"nativeSrc":"24244:15:81","nodeType":"YulAssignment","src":"24244:15:81","value":{"name":"value","nativeSrc":"24254:5:81","nodeType":"YulIdentifier","src":"24254:5:81"},"variableNames":[{"name":"value0","nativeSrc":"24244:6:81","nodeType":"YulIdentifier","src":"24244:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$11776_fromMemory","nativeSrc":"23980:285:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24051:9:81","nodeType":"YulTypedName","src":"24051:9:81","type":""},{"name":"dataEnd","nativeSrc":"24062:7:81","nodeType":"YulTypedName","src":"24062:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24074:6:81","nodeType":"YulTypedName","src":"24074:6:81","type":""}],"src":"23980:285:81"},{"body":{"nativeSrc":"24407:145:81","nodeType":"YulBlock","src":"24407:145:81","statements":[{"nativeSrc":"24417:26:81","nodeType":"YulAssignment","src":"24417:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"24429:9:81","nodeType":"YulIdentifier","src":"24429:9:81"},{"kind":"number","nativeSrc":"24440:2:81","nodeType":"YulLiteral","src":"24440:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24425:3:81","nodeType":"YulIdentifier","src":"24425:3:81"},"nativeSrc":"24425:18:81","nodeType":"YulFunctionCall","src":"24425:18:81"},"variableNames":[{"name":"tail","nativeSrc":"24417:4:81","nodeType":"YulIdentifier","src":"24417:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24459:9:81","nodeType":"YulIdentifier","src":"24459:9:81"},{"arguments":[{"name":"value0","nativeSrc":"24474:6:81","nodeType":"YulIdentifier","src":"24474:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24490:3:81","nodeType":"YulLiteral","src":"24490:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"24495:1:81","nodeType":"YulLiteral","src":"24495:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"24486:3:81","nodeType":"YulIdentifier","src":"24486:3:81"},"nativeSrc":"24486:11:81","nodeType":"YulFunctionCall","src":"24486:11:81"},{"kind":"number","nativeSrc":"24499:1:81","nodeType":"YulLiteral","src":"24499:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"24482:3:81","nodeType":"YulIdentifier","src":"24482:3:81"},"nativeSrc":"24482:19:81","nodeType":"YulFunctionCall","src":"24482:19:81"}],"functionName":{"name":"and","nativeSrc":"24470:3:81","nodeType":"YulIdentifier","src":"24470:3:81"},"nativeSrc":"24470:32:81","nodeType":"YulFunctionCall","src":"24470:32:81"}],"functionName":{"name":"mstore","nativeSrc":"24452:6:81","nodeType":"YulIdentifier","src":"24452:6:81"},"nativeSrc":"24452:51:81","nodeType":"YulFunctionCall","src":"24452:51:81"},"nativeSrc":"24452:51:81","nodeType":"YulExpressionStatement","src":"24452:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24523:9:81","nodeType":"YulIdentifier","src":"24523:9:81"},{"kind":"number","nativeSrc":"24534:2:81","nodeType":"YulLiteral","src":"24534:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24519:3:81","nodeType":"YulIdentifier","src":"24519:3:81"},"nativeSrc":"24519:18:81","nodeType":"YulFunctionCall","src":"24519:18:81"},{"name":"value1","nativeSrc":"24539:6:81","nodeType":"YulIdentifier","src":"24539:6:81"}],"functionName":{"name":"mstore","nativeSrc":"24512:6:81","nodeType":"YulIdentifier","src":"24512:6:81"},"nativeSrc":"24512:34:81","nodeType":"YulFunctionCall","src":"24512:34:81"},"nativeSrc":"24512:34:81","nodeType":"YulExpressionStatement","src":"24512:34:81"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"24270:282:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24368:9:81","nodeType":"YulTypedName","src":"24368:9:81","type":""},{"name":"value1","nativeSrc":"24379:6:81","nodeType":"YulTypedName","src":"24379:6:81","type":""},{"name":"value0","nativeSrc":"24387:6:81","nodeType":"YulTypedName","src":"24387:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24398:4:81","nodeType":"YulTypedName","src":"24398:4:81","type":""}],"src":"24270:282:81"},{"body":{"nativeSrc":"24635:167:81","nodeType":"YulBlock","src":"24635:167:81","statements":[{"body":{"nativeSrc":"24681:16:81","nodeType":"YulBlock","src":"24681:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24690:1:81","nodeType":"YulLiteral","src":"24690:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"24693:1:81","nodeType":"YulLiteral","src":"24693:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24683:6:81","nodeType":"YulIdentifier","src":"24683:6:81"},"nativeSrc":"24683:12:81","nodeType":"YulFunctionCall","src":"24683:12:81"},"nativeSrc":"24683:12:81","nodeType":"YulExpressionStatement","src":"24683:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24656:7:81","nodeType":"YulIdentifier","src":"24656:7:81"},{"name":"headStart","nativeSrc":"24665:9:81","nodeType":"YulIdentifier","src":"24665:9:81"}],"functionName":{"name":"sub","nativeSrc":"24652:3:81","nodeType":"YulIdentifier","src":"24652:3:81"},"nativeSrc":"24652:23:81","nodeType":"YulFunctionCall","src":"24652:23:81"},{"kind":"number","nativeSrc":"24677:2:81","nodeType":"YulLiteral","src":"24677:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24648:3:81","nodeType":"YulIdentifier","src":"24648:3:81"},"nativeSrc":"24648:32:81","nodeType":"YulFunctionCall","src":"24648:32:81"},"nativeSrc":"24645:52:81","nodeType":"YulIf","src":"24645:52:81"},{"nativeSrc":"24706:29:81","nodeType":"YulVariableDeclaration","src":"24706:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"24725:9:81","nodeType":"YulIdentifier","src":"24725:9:81"}],"functionName":{"name":"mload","nativeSrc":"24719:5:81","nodeType":"YulIdentifier","src":"24719:5:81"},"nativeSrc":"24719:16:81","nodeType":"YulFunctionCall","src":"24719:16:81"},"variables":[{"name":"value","nativeSrc":"24710:5:81","nodeType":"YulTypedName","src":"24710:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24766:5:81","nodeType":"YulIdentifier","src":"24766:5:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"24744:21:81","nodeType":"YulIdentifier","src":"24744:21:81"},"nativeSrc":"24744:28:81","nodeType":"YulFunctionCall","src":"24744:28:81"},"nativeSrc":"24744:28:81","nodeType":"YulExpressionStatement","src":"24744:28:81"},{"nativeSrc":"24781:15:81","nodeType":"YulAssignment","src":"24781:15:81","value":{"name":"value","nativeSrc":"24791:5:81","nodeType":"YulIdentifier","src":"24791:5:81"},"variableNames":[{"name":"value0","nativeSrc":"24781:6:81","nodeType":"YulIdentifier","src":"24781:6:81"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"24557:245:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24601:9:81","nodeType":"YulTypedName","src":"24601:9:81","type":""},{"name":"dataEnd","nativeSrc":"24612:7:81","nodeType":"YulTypedName","src":"24612:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24624:6:81","nodeType":"YulTypedName","src":"24624:6:81","type":""}],"src":"24557:245:81"},{"body":{"nativeSrc":"24936:145:81","nodeType":"YulBlock","src":"24936:145:81","statements":[{"nativeSrc":"24946:26:81","nodeType":"YulAssignment","src":"24946:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"24958:9:81","nodeType":"YulIdentifier","src":"24958:9:81"},{"kind":"number","nativeSrc":"24969:2:81","nodeType":"YulLiteral","src":"24969:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24954:3:81","nodeType":"YulIdentifier","src":"24954:3:81"},"nativeSrc":"24954:18:81","nodeType":"YulFunctionCall","src":"24954:18:81"},"variableNames":[{"name":"tail","nativeSrc":"24946:4:81","nodeType":"YulIdentifier","src":"24946:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24988:9:81","nodeType":"YulIdentifier","src":"24988:9:81"},{"arguments":[{"name":"value0","nativeSrc":"25003:6:81","nodeType":"YulIdentifier","src":"25003:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25019:3:81","nodeType":"YulLiteral","src":"25019:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"25024:1:81","nodeType":"YulLiteral","src":"25024:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25015:3:81","nodeType":"YulIdentifier","src":"25015:3:81"},"nativeSrc":"25015:11:81","nodeType":"YulFunctionCall","src":"25015:11:81"},{"kind":"number","nativeSrc":"25028:1:81","nodeType":"YulLiteral","src":"25028:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25011:3:81","nodeType":"YulIdentifier","src":"25011:3:81"},"nativeSrc":"25011:19:81","nodeType":"YulFunctionCall","src":"25011:19:81"}],"functionName":{"name":"and","nativeSrc":"24999:3:81","nodeType":"YulIdentifier","src":"24999:3:81"},"nativeSrc":"24999:32:81","nodeType":"YulFunctionCall","src":"24999:32:81"}],"functionName":{"name":"mstore","nativeSrc":"24981:6:81","nodeType":"YulIdentifier","src":"24981:6:81"},"nativeSrc":"24981:51:81","nodeType":"YulFunctionCall","src":"24981:51:81"},"nativeSrc":"24981:51:81","nodeType":"YulExpressionStatement","src":"24981:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25052:9:81","nodeType":"YulIdentifier","src":"25052:9:81"},{"kind":"number","nativeSrc":"25063:2:81","nodeType":"YulLiteral","src":"25063:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25048:3:81","nodeType":"YulIdentifier","src":"25048:3:81"},"nativeSrc":"25048:18:81","nodeType":"YulFunctionCall","src":"25048:18:81"},{"name":"value1","nativeSrc":"25068:6:81","nodeType":"YulIdentifier","src":"25068:6:81"}],"functionName":{"name":"mstore","nativeSrc":"25041:6:81","nodeType":"YulIdentifier","src":"25041:6:81"},"nativeSrc":"25041:34:81","nodeType":"YulFunctionCall","src":"25041:34:81"},"nativeSrc":"25041:34:81","nodeType":"YulExpressionStatement","src":"25041:34:81"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"24807:274:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24897:9:81","nodeType":"YulTypedName","src":"24897:9:81","type":""},{"name":"value1","nativeSrc":"24908:6:81","nodeType":"YulTypedName","src":"24908:6:81","type":""},{"name":"value0","nativeSrc":"24916:6:81","nodeType":"YulTypedName","src":"24916:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24927:4:81","nodeType":"YulTypedName","src":"24927:4:81","type":""}],"src":"24807:274:81"},{"body":{"nativeSrc":"25215:171:81","nodeType":"YulBlock","src":"25215:171:81","statements":[{"nativeSrc":"25225:26:81","nodeType":"YulAssignment","src":"25225:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"25237:9:81","nodeType":"YulIdentifier","src":"25237:9:81"},{"kind":"number","nativeSrc":"25248:2:81","nodeType":"YulLiteral","src":"25248:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25233:3:81","nodeType":"YulIdentifier","src":"25233:3:81"},"nativeSrc":"25233:18:81","nodeType":"YulFunctionCall","src":"25233:18:81"},"variableNames":[{"name":"tail","nativeSrc":"25225:4:81","nodeType":"YulIdentifier","src":"25225:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25267:9:81","nodeType":"YulIdentifier","src":"25267:9:81"},{"arguments":[{"name":"value0","nativeSrc":"25282:6:81","nodeType":"YulIdentifier","src":"25282:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25298:3:81","nodeType":"YulLiteral","src":"25298:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"25303:1:81","nodeType":"YulLiteral","src":"25303:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25294:3:81","nodeType":"YulIdentifier","src":"25294:3:81"},"nativeSrc":"25294:11:81","nodeType":"YulFunctionCall","src":"25294:11:81"},{"kind":"number","nativeSrc":"25307:1:81","nodeType":"YulLiteral","src":"25307:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25290:3:81","nodeType":"YulIdentifier","src":"25290:3:81"},"nativeSrc":"25290:19:81","nodeType":"YulFunctionCall","src":"25290:19:81"}],"functionName":{"name":"and","nativeSrc":"25278:3:81","nodeType":"YulIdentifier","src":"25278:3:81"},"nativeSrc":"25278:32:81","nodeType":"YulFunctionCall","src":"25278:32:81"}],"functionName":{"name":"mstore","nativeSrc":"25260:6:81","nodeType":"YulIdentifier","src":"25260:6:81"},"nativeSrc":"25260:51:81","nodeType":"YulFunctionCall","src":"25260:51:81"},"nativeSrc":"25260:51:81","nodeType":"YulExpressionStatement","src":"25260:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25331:9:81","nodeType":"YulIdentifier","src":"25331:9:81"},{"kind":"number","nativeSrc":"25342:2:81","nodeType":"YulLiteral","src":"25342:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25327:3:81","nodeType":"YulIdentifier","src":"25327:3:81"},"nativeSrc":"25327:18:81","nodeType":"YulFunctionCall","src":"25327:18:81"},{"arguments":[{"name":"value1","nativeSrc":"25351:6:81","nodeType":"YulIdentifier","src":"25351:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25367:3:81","nodeType":"YulLiteral","src":"25367:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"25372:1:81","nodeType":"YulLiteral","src":"25372:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25363:3:81","nodeType":"YulIdentifier","src":"25363:3:81"},"nativeSrc":"25363:11:81","nodeType":"YulFunctionCall","src":"25363:11:81"},{"kind":"number","nativeSrc":"25376:1:81","nodeType":"YulLiteral","src":"25376:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25359:3:81","nodeType":"YulIdentifier","src":"25359:3:81"},"nativeSrc":"25359:19:81","nodeType":"YulFunctionCall","src":"25359:19:81"}],"functionName":{"name":"and","nativeSrc":"25347:3:81","nodeType":"YulIdentifier","src":"25347:3:81"},"nativeSrc":"25347:32:81","nodeType":"YulFunctionCall","src":"25347:32:81"}],"functionName":{"name":"mstore","nativeSrc":"25320:6:81","nodeType":"YulIdentifier","src":"25320:6:81"},"nativeSrc":"25320:60:81","nodeType":"YulFunctionCall","src":"25320:60:81"},"nativeSrc":"25320:60:81","nodeType":"YulExpressionStatement","src":"25320:60:81"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"25086:300:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25176:9:81","nodeType":"YulTypedName","src":"25176:9:81","type":""},{"name":"value1","nativeSrc":"25187:6:81","nodeType":"YulTypedName","src":"25187:6:81","type":""},{"name":"value0","nativeSrc":"25195:6:81","nodeType":"YulTypedName","src":"25195:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25206:4:81","nodeType":"YulTypedName","src":"25206:4:81","type":""}],"src":"25086:300:81"},{"body":{"nativeSrc":"25423:95:81","nodeType":"YulBlock","src":"25423:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25440:1:81","nodeType":"YulLiteral","src":"25440:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"25447:3:81","nodeType":"YulLiteral","src":"25447:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"25452:10:81","nodeType":"YulLiteral","src":"25452:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"25443:3:81","nodeType":"YulIdentifier","src":"25443:3:81"},"nativeSrc":"25443:20:81","nodeType":"YulFunctionCall","src":"25443:20:81"}],"functionName":{"name":"mstore","nativeSrc":"25433:6:81","nodeType":"YulIdentifier","src":"25433:6:81"},"nativeSrc":"25433:31:81","nodeType":"YulFunctionCall","src":"25433:31:81"},"nativeSrc":"25433:31:81","nodeType":"YulExpressionStatement","src":"25433:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"25480:1:81","nodeType":"YulLiteral","src":"25480:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"25483:4:81","nodeType":"YulLiteral","src":"25483:4:81","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"25473:6:81","nodeType":"YulIdentifier","src":"25473:6:81"},"nativeSrc":"25473:15:81","nodeType":"YulFunctionCall","src":"25473:15:81"},"nativeSrc":"25473:15:81","nodeType":"YulExpressionStatement","src":"25473:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"25504:1:81","nodeType":"YulLiteral","src":"25504:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"25507:4:81","nodeType":"YulLiteral","src":"25507:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"25497:6:81","nodeType":"YulIdentifier","src":"25497:6:81"},"nativeSrc":"25497:15:81","nodeType":"YulFunctionCall","src":"25497:15:81"},"nativeSrc":"25497:15:81","nodeType":"YulExpressionStatement","src":"25497:15:81"}]},"name":"panic_error_0x32","nativeSrc":"25391:127:81","nodeType":"YulFunctionDefinition","src":"25391:127:81"},{"body":{"nativeSrc":"25617:427:81","nodeType":"YulBlock","src":"25617:427:81","statements":[{"nativeSrc":"25627:51:81","nodeType":"YulVariableDeclaration","src":"25627:51:81","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"25666:11:81","nodeType":"YulIdentifier","src":"25666:11:81"}],"functionName":{"name":"calldataload","nativeSrc":"25653:12:81","nodeType":"YulIdentifier","src":"25653:12:81"},"nativeSrc":"25653:25:81","nodeType":"YulFunctionCall","src":"25653:25:81"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"25631:18:81","nodeType":"YulTypedName","src":"25631:18:81","type":""}]},{"body":{"nativeSrc":"25767:16:81","nodeType":"YulBlock","src":"25767:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25776:1:81","nodeType":"YulLiteral","src":"25776:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"25779:1:81","nodeType":"YulLiteral","src":"25779:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"25769:6:81","nodeType":"YulIdentifier","src":"25769:6:81"},"nativeSrc":"25769:12:81","nodeType":"YulFunctionCall","src":"25769:12:81"},"nativeSrc":"25769:12:81","nodeType":"YulExpressionStatement","src":"25769:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"25701:18:81","nodeType":"YulIdentifier","src":"25701:18:81"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"25729:12:81","nodeType":"YulIdentifier","src":"25729:12:81"},"nativeSrc":"25729:14:81","nodeType":"YulFunctionCall","src":"25729:14:81"},{"name":"base_ref","nativeSrc":"25745:8:81","nodeType":"YulIdentifier","src":"25745:8:81"}],"functionName":{"name":"sub","nativeSrc":"25725:3:81","nodeType":"YulIdentifier","src":"25725:3:81"},"nativeSrc":"25725:29:81","nodeType":"YulFunctionCall","src":"25725:29:81"},{"arguments":[{"kind":"number","nativeSrc":"25760:2:81","nodeType":"YulLiteral","src":"25760:2:81","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"25756:3:81","nodeType":"YulIdentifier","src":"25756:3:81"},"nativeSrc":"25756:7:81","nodeType":"YulFunctionCall","src":"25756:7:81"}],"functionName":{"name":"add","nativeSrc":"25721:3:81","nodeType":"YulIdentifier","src":"25721:3:81"},"nativeSrc":"25721:43:81","nodeType":"YulFunctionCall","src":"25721:43:81"}],"functionName":{"name":"slt","nativeSrc":"25697:3:81","nodeType":"YulIdentifier","src":"25697:3:81"},"nativeSrc":"25697:68:81","nodeType":"YulFunctionCall","src":"25697:68:81"}],"functionName":{"name":"iszero","nativeSrc":"25690:6:81","nodeType":"YulIdentifier","src":"25690:6:81"},"nativeSrc":"25690:76:81","nodeType":"YulFunctionCall","src":"25690:76:81"},"nativeSrc":"25687:96:81","nodeType":"YulIf","src":"25687:96:81"},{"nativeSrc":"25792:47:81","nodeType":"YulVariableDeclaration","src":"25792:47:81","value":{"arguments":[{"name":"base_ref","nativeSrc":"25810:8:81","nodeType":"YulIdentifier","src":"25810:8:81"},{"name":"rel_offset_of_tail","nativeSrc":"25820:18:81","nodeType":"YulIdentifier","src":"25820:18:81"}],"functionName":{"name":"add","nativeSrc":"25806:3:81","nodeType":"YulIdentifier","src":"25806:3:81"},"nativeSrc":"25806:33:81","nodeType":"YulFunctionCall","src":"25806:33:81"},"variables":[{"name":"addr_1","nativeSrc":"25796:6:81","nodeType":"YulTypedName","src":"25796:6:81","type":""}]},{"nativeSrc":"25848:30:81","nodeType":"YulAssignment","src":"25848:30:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"25871:6:81","nodeType":"YulIdentifier","src":"25871:6:81"}],"functionName":{"name":"calldataload","nativeSrc":"25858:12:81","nodeType":"YulIdentifier","src":"25858:12:81"},"nativeSrc":"25858:20:81","nodeType":"YulFunctionCall","src":"25858:20:81"},"variableNames":[{"name":"length","nativeSrc":"25848:6:81","nodeType":"YulIdentifier","src":"25848:6:81"}]},{"body":{"nativeSrc":"25921:16:81","nodeType":"YulBlock","src":"25921:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25930:1:81","nodeType":"YulLiteral","src":"25930:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"25933:1:81","nodeType":"YulLiteral","src":"25933:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"25923:6:81","nodeType":"YulIdentifier","src":"25923:6:81"},"nativeSrc":"25923:12:81","nodeType":"YulFunctionCall","src":"25923:12:81"},"nativeSrc":"25923:12:81","nodeType":"YulExpressionStatement","src":"25923:12:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"25893:6:81","nodeType":"YulIdentifier","src":"25893:6:81"},{"kind":"number","nativeSrc":"25901:18:81","nodeType":"YulLiteral","src":"25901:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"25890:2:81","nodeType":"YulIdentifier","src":"25890:2:81"},"nativeSrc":"25890:30:81","nodeType":"YulFunctionCall","src":"25890:30:81"},"nativeSrc":"25887:50:81","nodeType":"YulIf","src":"25887:50:81"},{"nativeSrc":"25946:25:81","nodeType":"YulAssignment","src":"25946:25:81","value":{"arguments":[{"name":"addr_1","nativeSrc":"25958:6:81","nodeType":"YulIdentifier","src":"25958:6:81"},{"kind":"number","nativeSrc":"25966:4:81","nodeType":"YulLiteral","src":"25966:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"25954:3:81","nodeType":"YulIdentifier","src":"25954:3:81"},"nativeSrc":"25954:17:81","nodeType":"YulFunctionCall","src":"25954:17:81"},"variableNames":[{"name":"addr","nativeSrc":"25946:4:81","nodeType":"YulIdentifier","src":"25946:4:81"}]},{"body":{"nativeSrc":"26022:16:81","nodeType":"YulBlock","src":"26022:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26031:1:81","nodeType":"YulLiteral","src":"26031:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"26034:1:81","nodeType":"YulLiteral","src":"26034:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26024:6:81","nodeType":"YulIdentifier","src":"26024:6:81"},"nativeSrc":"26024:12:81","nodeType":"YulFunctionCall","src":"26024:12:81"},"nativeSrc":"26024:12:81","nodeType":"YulExpressionStatement","src":"26024:12:81"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"25987:4:81","nodeType":"YulIdentifier","src":"25987:4:81"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"25997:12:81","nodeType":"YulIdentifier","src":"25997:12:81"},"nativeSrc":"25997:14:81","nodeType":"YulFunctionCall","src":"25997:14:81"},{"name":"length","nativeSrc":"26013:6:81","nodeType":"YulIdentifier","src":"26013:6:81"}],"functionName":{"name":"sub","nativeSrc":"25993:3:81","nodeType":"YulIdentifier","src":"25993:3:81"},"nativeSrc":"25993:27:81","nodeType":"YulFunctionCall","src":"25993:27:81"}],"functionName":{"name":"sgt","nativeSrc":"25983:3:81","nodeType":"YulIdentifier","src":"25983:3:81"},"nativeSrc":"25983:38:81","nodeType":"YulFunctionCall","src":"25983:38:81"},"nativeSrc":"25980:58:81","nodeType":"YulIf","src":"25980:58:81"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"25523:521:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"25574:8:81","nodeType":"YulTypedName","src":"25574:8:81","type":""},{"name":"ptr_to_tail","nativeSrc":"25584:11:81","nodeType":"YulTypedName","src":"25584:11:81","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"25600:4:81","nodeType":"YulTypedName","src":"25600:4:81","type":""},{"name":"length","nativeSrc":"25606:6:81","nodeType":"YulTypedName","src":"25606:6:81","type":""}],"src":"25523:521:81"},{"body":{"nativeSrc":"26210:163:81","nodeType":"YulBlock","src":"26210:163:81","statements":[{"nativeSrc":"26220:26:81","nodeType":"YulAssignment","src":"26220:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"26232:9:81","nodeType":"YulIdentifier","src":"26232:9:81"},{"kind":"number","nativeSrc":"26243:2:81","nodeType":"YulLiteral","src":"26243:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26228:3:81","nodeType":"YulIdentifier","src":"26228:3:81"},"nativeSrc":"26228:18:81","nodeType":"YulFunctionCall","src":"26228:18:81"},"variableNames":[{"name":"tail","nativeSrc":"26220:4:81","nodeType":"YulIdentifier","src":"26220:4:81"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"26284:6:81","nodeType":"YulIdentifier","src":"26284:6:81"},{"name":"headStart","nativeSrc":"26292:9:81","nodeType":"YulIdentifier","src":"26292:9:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"26255:28:81","nodeType":"YulIdentifier","src":"26255:28:81"},"nativeSrc":"26255:47:81","nodeType":"YulFunctionCall","src":"26255:47:81"},"nativeSrc":"26255:47:81","nodeType":"YulExpressionStatement","src":"26255:47:81"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"26340:6:81","nodeType":"YulIdentifier","src":"26340:6:81"},{"arguments":[{"name":"headStart","nativeSrc":"26352:9:81","nodeType":"YulIdentifier","src":"26352:9:81"},{"kind":"number","nativeSrc":"26363:2:81","nodeType":"YulLiteral","src":"26363:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26348:3:81","nodeType":"YulIdentifier","src":"26348:3:81"},"nativeSrc":"26348:18:81","nodeType":"YulFunctionCall","src":"26348:18:81"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"26311:28:81","nodeType":"YulIdentifier","src":"26311:28:81"},"nativeSrc":"26311:56:81","nodeType":"YulFunctionCall","src":"26311:56:81"},"nativeSrc":"26311:56:81","nodeType":"YulExpressionStatement","src":"26311:56:81"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$22999_t_enum$_TargetStatus_$22999__to_t_uint8_t_uint8__fromStack_reversed","nativeSrc":"26049:324:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26171:9:81","nodeType":"YulTypedName","src":"26171:9:81","type":""},{"name":"value1","nativeSrc":"26182:6:81","nodeType":"YulTypedName","src":"26182:6:81","type":""},{"name":"value0","nativeSrc":"26190:6:81","nodeType":"YulTypedName","src":"26190:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26201:4:81","nodeType":"YulTypedName","src":"26201:4:81","type":""}],"src":"26049:324:81"},{"body":{"nativeSrc":"26447:306:81","nodeType":"YulBlock","src":"26447:306:81","statements":[{"nativeSrc":"26457:10:81","nodeType":"YulAssignment","src":"26457:10:81","value":{"kind":"number","nativeSrc":"26466:1:81","nodeType":"YulLiteral","src":"26466:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"26457:5:81","nodeType":"YulIdentifier","src":"26457:5:81"}]},{"nativeSrc":"26476:13:81","nodeType":"YulAssignment","src":"26476:13:81","value":{"name":"_base","nativeSrc":"26484:5:81","nodeType":"YulIdentifier","src":"26484:5:81"},"variableNames":[{"name":"base","nativeSrc":"26476:4:81","nodeType":"YulIdentifier","src":"26476:4:81"}]},{"body":{"nativeSrc":"26534:213:81","nodeType":"YulBlock","src":"26534:213:81","statements":[{"body":{"nativeSrc":"26576:22:81","nodeType":"YulBlock","src":"26576:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"26578:16:81","nodeType":"YulIdentifier","src":"26578:16:81"},"nativeSrc":"26578:18:81","nodeType":"YulFunctionCall","src":"26578:18:81"},"nativeSrc":"26578:18:81","nodeType":"YulExpressionStatement","src":"26578:18:81"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"26554:4:81","nodeType":"YulIdentifier","src":"26554:4:81"},{"arguments":[{"name":"max","nativeSrc":"26564:3:81","nodeType":"YulIdentifier","src":"26564:3:81"},{"name":"base","nativeSrc":"26569:4:81","nodeType":"YulIdentifier","src":"26569:4:81"}],"functionName":{"name":"div","nativeSrc":"26560:3:81","nodeType":"YulIdentifier","src":"26560:3:81"},"nativeSrc":"26560:14:81","nodeType":"YulFunctionCall","src":"26560:14:81"}],"functionName":{"name":"gt","nativeSrc":"26551:2:81","nodeType":"YulIdentifier","src":"26551:2:81"},"nativeSrc":"26551:24:81","nodeType":"YulFunctionCall","src":"26551:24:81"},"nativeSrc":"26548:50:81","nodeType":"YulIf","src":"26548:50:81"},{"body":{"nativeSrc":"26631:29:81","nodeType":"YulBlock","src":"26631:29:81","statements":[{"nativeSrc":"26633:25:81","nodeType":"YulAssignment","src":"26633:25:81","value":{"arguments":[{"name":"power","nativeSrc":"26646:5:81","nodeType":"YulIdentifier","src":"26646:5:81"},{"name":"base","nativeSrc":"26653:4:81","nodeType":"YulIdentifier","src":"26653:4:81"}],"functionName":{"name":"mul","nativeSrc":"26642:3:81","nodeType":"YulIdentifier","src":"26642:3:81"},"nativeSrc":"26642:16:81","nodeType":"YulFunctionCall","src":"26642:16:81"},"variableNames":[{"name":"power","nativeSrc":"26633:5:81","nodeType":"YulIdentifier","src":"26633:5:81"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"26618:8:81","nodeType":"YulIdentifier","src":"26618:8:81"},{"kind":"number","nativeSrc":"26628:1:81","nodeType":"YulLiteral","src":"26628:1:81","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"26614:3:81","nodeType":"YulIdentifier","src":"26614:3:81"},"nativeSrc":"26614:16:81","nodeType":"YulFunctionCall","src":"26614:16:81"},"nativeSrc":"26611:49:81","nodeType":"YulIf","src":"26611:49:81"},{"nativeSrc":"26673:23:81","nodeType":"YulAssignment","src":"26673:23:81","value":{"arguments":[{"name":"base","nativeSrc":"26685:4:81","nodeType":"YulIdentifier","src":"26685:4:81"},{"name":"base","nativeSrc":"26691:4:81","nodeType":"YulIdentifier","src":"26691:4:81"}],"functionName":{"name":"mul","nativeSrc":"26681:3:81","nodeType":"YulIdentifier","src":"26681:3:81"},"nativeSrc":"26681:15:81","nodeType":"YulFunctionCall","src":"26681:15:81"},"variableNames":[{"name":"base","nativeSrc":"26673:4:81","nodeType":"YulIdentifier","src":"26673:4:81"}]},{"nativeSrc":"26709:28:81","nodeType":"YulAssignment","src":"26709:28:81","value":{"arguments":[{"kind":"number","nativeSrc":"26725:1:81","nodeType":"YulLiteral","src":"26725:1:81","type":"","value":"1"},{"name":"exponent","nativeSrc":"26728:8:81","nodeType":"YulIdentifier","src":"26728:8:81"}],"functionName":{"name":"shr","nativeSrc":"26721:3:81","nodeType":"YulIdentifier","src":"26721:3:81"},"nativeSrc":"26721:16:81","nodeType":"YulFunctionCall","src":"26721:16:81"},"variableNames":[{"name":"exponent","nativeSrc":"26709:8:81","nodeType":"YulIdentifier","src":"26709:8:81"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"26509:8:81","nodeType":"YulIdentifier","src":"26509:8:81"},{"kind":"number","nativeSrc":"26519:1:81","nodeType":"YulLiteral","src":"26519:1:81","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"26506:2:81","nodeType":"YulIdentifier","src":"26506:2:81"},"nativeSrc":"26506:15:81","nodeType":"YulFunctionCall","src":"26506:15:81"},"nativeSrc":"26498:249:81","nodeType":"YulForLoop","post":{"nativeSrc":"26522:3:81","nodeType":"YulBlock","src":"26522:3:81","statements":[]},"pre":{"nativeSrc":"26502:3:81","nodeType":"YulBlock","src":"26502:3:81","statements":[]},"src":"26498:249:81"}]},"name":"checked_exp_helper","nativeSrc":"26378:375:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"26406:5:81","nodeType":"YulTypedName","src":"26406:5:81","type":""},{"name":"exponent","nativeSrc":"26413:8:81","nodeType":"YulTypedName","src":"26413:8:81","type":""},{"name":"max","nativeSrc":"26423:3:81","nodeType":"YulTypedName","src":"26423:3:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"26431:5:81","nodeType":"YulTypedName","src":"26431:5:81","type":""},{"name":"base","nativeSrc":"26438:4:81","nodeType":"YulTypedName","src":"26438:4:81","type":""}],"src":"26378:375:81"},{"body":{"nativeSrc":"26817:843:81","nodeType":"YulBlock","src":"26817:843:81","statements":[{"body":{"nativeSrc":"26855:52:81","nodeType":"YulBlock","src":"26855:52:81","statements":[{"nativeSrc":"26869:10:81","nodeType":"YulAssignment","src":"26869:10:81","value":{"kind":"number","nativeSrc":"26878:1:81","nodeType":"YulLiteral","src":"26878:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"26869:5:81","nodeType":"YulIdentifier","src":"26869:5:81"}]},{"nativeSrc":"26892:5:81","nodeType":"YulLeave","src":"26892:5:81"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"26837:8:81","nodeType":"YulIdentifier","src":"26837:8:81"}],"functionName":{"name":"iszero","nativeSrc":"26830:6:81","nodeType":"YulIdentifier","src":"26830:6:81"},"nativeSrc":"26830:16:81","nodeType":"YulFunctionCall","src":"26830:16:81"},"nativeSrc":"26827:80:81","nodeType":"YulIf","src":"26827:80:81"},{"body":{"nativeSrc":"26940:52:81","nodeType":"YulBlock","src":"26940:52:81","statements":[{"nativeSrc":"26954:10:81","nodeType":"YulAssignment","src":"26954:10:81","value":{"kind":"number","nativeSrc":"26963:1:81","nodeType":"YulLiteral","src":"26963:1:81","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"26954:5:81","nodeType":"YulIdentifier","src":"26954:5:81"}]},{"nativeSrc":"26977:5:81","nodeType":"YulLeave","src":"26977:5:81"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"26926:4:81","nodeType":"YulIdentifier","src":"26926:4:81"}],"functionName":{"name":"iszero","nativeSrc":"26919:6:81","nodeType":"YulIdentifier","src":"26919:6:81"},"nativeSrc":"26919:12:81","nodeType":"YulFunctionCall","src":"26919:12:81"},"nativeSrc":"26916:76:81","nodeType":"YulIf","src":"26916:76:81"},{"cases":[{"body":{"nativeSrc":"27028:52:81","nodeType":"YulBlock","src":"27028:52:81","statements":[{"nativeSrc":"27042:10:81","nodeType":"YulAssignment","src":"27042:10:81","value":{"kind":"number","nativeSrc":"27051:1:81","nodeType":"YulLiteral","src":"27051:1:81","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"27042:5:81","nodeType":"YulIdentifier","src":"27042:5:81"}]},{"nativeSrc":"27065:5:81","nodeType":"YulLeave","src":"27065:5:81"}]},"nativeSrc":"27021:59:81","nodeType":"YulCase","src":"27021:59:81","value":{"kind":"number","nativeSrc":"27026:1:81","nodeType":"YulLiteral","src":"27026:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"27096:167:81","nodeType":"YulBlock","src":"27096:167:81","statements":[{"body":{"nativeSrc":"27131:22:81","nodeType":"YulBlock","src":"27131:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"27133:16:81","nodeType":"YulIdentifier","src":"27133:16:81"},"nativeSrc":"27133:18:81","nodeType":"YulFunctionCall","src":"27133:18:81"},"nativeSrc":"27133:18:81","nodeType":"YulExpressionStatement","src":"27133:18:81"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"27116:8:81","nodeType":"YulIdentifier","src":"27116:8:81"},{"kind":"number","nativeSrc":"27126:3:81","nodeType":"YulLiteral","src":"27126:3:81","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"27113:2:81","nodeType":"YulIdentifier","src":"27113:2:81"},"nativeSrc":"27113:17:81","nodeType":"YulFunctionCall","src":"27113:17:81"},"nativeSrc":"27110:43:81","nodeType":"YulIf","src":"27110:43:81"},{"nativeSrc":"27166:25:81","nodeType":"YulAssignment","src":"27166:25:81","value":{"arguments":[{"name":"exponent","nativeSrc":"27179:8:81","nodeType":"YulIdentifier","src":"27179:8:81"},{"kind":"number","nativeSrc":"27189:1:81","nodeType":"YulLiteral","src":"27189:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"27175:3:81","nodeType":"YulIdentifier","src":"27175:3:81"},"nativeSrc":"27175:16:81","nodeType":"YulFunctionCall","src":"27175:16:81"},"variableNames":[{"name":"power","nativeSrc":"27166:5:81","nodeType":"YulIdentifier","src":"27166:5:81"}]},{"nativeSrc":"27204:11:81","nodeType":"YulVariableDeclaration","src":"27204:11:81","value":{"kind":"number","nativeSrc":"27214:1:81","nodeType":"YulLiteral","src":"27214:1:81","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"27208:2:81","nodeType":"YulTypedName","src":"27208:2:81","type":""}]},{"nativeSrc":"27228:7:81","nodeType":"YulAssignment","src":"27228:7:81","value":{"kind":"number","nativeSrc":"27234:1:81","nodeType":"YulLiteral","src":"27234:1:81","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"27228:2:81","nodeType":"YulIdentifier","src":"27228:2:81"}]},{"nativeSrc":"27248:5:81","nodeType":"YulLeave","src":"27248:5:81"}]},"nativeSrc":"27089:174:81","nodeType":"YulCase","src":"27089:174:81","value":{"kind":"number","nativeSrc":"27094:1:81","nodeType":"YulLiteral","src":"27094:1:81","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"27008:4:81","nodeType":"YulIdentifier","src":"27008:4:81"},"nativeSrc":"27001:262:81","nodeType":"YulSwitch","src":"27001:262:81"},{"body":{"nativeSrc":"27361:114:81","nodeType":"YulBlock","src":"27361:114:81","statements":[{"nativeSrc":"27375:28:81","nodeType":"YulAssignment","src":"27375:28:81","value":{"arguments":[{"name":"base","nativeSrc":"27388:4:81","nodeType":"YulIdentifier","src":"27388:4:81"},{"name":"exponent","nativeSrc":"27394:8:81","nodeType":"YulIdentifier","src":"27394:8:81"}],"functionName":{"name":"exp","nativeSrc":"27384:3:81","nodeType":"YulIdentifier","src":"27384:3:81"},"nativeSrc":"27384:19:81","nodeType":"YulFunctionCall","src":"27384:19:81"},"variableNames":[{"name":"power","nativeSrc":"27375:5:81","nodeType":"YulIdentifier","src":"27375:5:81"}]},{"nativeSrc":"27416:11:81","nodeType":"YulVariableDeclaration","src":"27416:11:81","value":{"kind":"number","nativeSrc":"27426:1:81","nodeType":"YulLiteral","src":"27426:1:81","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"27420:2:81","nodeType":"YulTypedName","src":"27420:2:81","type":""}]},{"nativeSrc":"27440:7:81","nodeType":"YulAssignment","src":"27440:7:81","value":{"kind":"number","nativeSrc":"27446:1:81","nodeType":"YulLiteral","src":"27446:1:81","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"27440:2:81","nodeType":"YulIdentifier","src":"27440:2:81"}]},{"nativeSrc":"27460:5:81","nodeType":"YulLeave","src":"27460:5:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"27285:4:81","nodeType":"YulIdentifier","src":"27285:4:81"},{"kind":"number","nativeSrc":"27291:2:81","nodeType":"YulLiteral","src":"27291:2:81","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"27282:2:81","nodeType":"YulIdentifier","src":"27282:2:81"},"nativeSrc":"27282:12:81","nodeType":"YulFunctionCall","src":"27282:12:81"},{"arguments":[{"name":"exponent","nativeSrc":"27299:8:81","nodeType":"YulIdentifier","src":"27299:8:81"},{"kind":"number","nativeSrc":"27309:2:81","nodeType":"YulLiteral","src":"27309:2:81","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"27296:2:81","nodeType":"YulIdentifier","src":"27296:2:81"},"nativeSrc":"27296:16:81","nodeType":"YulFunctionCall","src":"27296:16:81"}],"functionName":{"name":"and","nativeSrc":"27278:3:81","nodeType":"YulIdentifier","src":"27278:3:81"},"nativeSrc":"27278:35:81","nodeType":"YulFunctionCall","src":"27278:35:81"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"27322:4:81","nodeType":"YulIdentifier","src":"27322:4:81"},{"kind":"number","nativeSrc":"27328:3:81","nodeType":"YulLiteral","src":"27328:3:81","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"27319:2:81","nodeType":"YulIdentifier","src":"27319:2:81"},"nativeSrc":"27319:13:81","nodeType":"YulFunctionCall","src":"27319:13:81"},{"arguments":[{"name":"exponent","nativeSrc":"27337:8:81","nodeType":"YulIdentifier","src":"27337:8:81"},{"kind":"number","nativeSrc":"27347:2:81","nodeType":"YulLiteral","src":"27347:2:81","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"27334:2:81","nodeType":"YulIdentifier","src":"27334:2:81"},"nativeSrc":"27334:16:81","nodeType":"YulFunctionCall","src":"27334:16:81"}],"functionName":{"name":"and","nativeSrc":"27315:3:81","nodeType":"YulIdentifier","src":"27315:3:81"},"nativeSrc":"27315:36:81","nodeType":"YulFunctionCall","src":"27315:36:81"}],"functionName":{"name":"or","nativeSrc":"27275:2:81","nodeType":"YulIdentifier","src":"27275:2:81"},"nativeSrc":"27275:77:81","nodeType":"YulFunctionCall","src":"27275:77:81"},"nativeSrc":"27272:203:81","nodeType":"YulIf","src":"27272:203:81"},{"nativeSrc":"27484:65:81","nodeType":"YulVariableDeclaration","src":"27484:65:81","value":{"arguments":[{"name":"base","nativeSrc":"27526:4:81","nodeType":"YulIdentifier","src":"27526:4:81"},{"name":"exponent","nativeSrc":"27532:8:81","nodeType":"YulIdentifier","src":"27532:8:81"},{"arguments":[{"kind":"number","nativeSrc":"27546:1:81","nodeType":"YulLiteral","src":"27546:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27542:3:81","nodeType":"YulIdentifier","src":"27542:3:81"},"nativeSrc":"27542:6:81","nodeType":"YulFunctionCall","src":"27542:6:81"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"27507:18:81","nodeType":"YulIdentifier","src":"27507:18:81"},"nativeSrc":"27507:42:81","nodeType":"YulFunctionCall","src":"27507:42:81"},"variables":[{"name":"power_1","nativeSrc":"27488:7:81","nodeType":"YulTypedName","src":"27488:7:81","type":""},{"name":"base_1","nativeSrc":"27497:6:81","nodeType":"YulTypedName","src":"27497:6:81","type":""}]},{"body":{"nativeSrc":"27594:22:81","nodeType":"YulBlock","src":"27594:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"27596:16:81","nodeType":"YulIdentifier","src":"27596:16:81"},"nativeSrc":"27596:18:81","nodeType":"YulFunctionCall","src":"27596:18:81"},"nativeSrc":"27596:18:81","nodeType":"YulExpressionStatement","src":"27596:18:81"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"27564:7:81","nodeType":"YulIdentifier","src":"27564:7:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27581:1:81","nodeType":"YulLiteral","src":"27581:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27577:3:81","nodeType":"YulIdentifier","src":"27577:3:81"},"nativeSrc":"27577:6:81","nodeType":"YulFunctionCall","src":"27577:6:81"},{"name":"base_1","nativeSrc":"27585:6:81","nodeType":"YulIdentifier","src":"27585:6:81"}],"functionName":{"name":"div","nativeSrc":"27573:3:81","nodeType":"YulIdentifier","src":"27573:3:81"},"nativeSrc":"27573:19:81","nodeType":"YulFunctionCall","src":"27573:19:81"}],"functionName":{"name":"gt","nativeSrc":"27561:2:81","nodeType":"YulIdentifier","src":"27561:2:81"},"nativeSrc":"27561:32:81","nodeType":"YulFunctionCall","src":"27561:32:81"},"nativeSrc":"27558:58:81","nodeType":"YulIf","src":"27558:58:81"},{"nativeSrc":"27625:29:81","nodeType":"YulAssignment","src":"27625:29:81","value":{"arguments":[{"name":"power_1","nativeSrc":"27638:7:81","nodeType":"YulIdentifier","src":"27638:7:81"},{"name":"base_1","nativeSrc":"27647:6:81","nodeType":"YulIdentifier","src":"27647:6:81"}],"functionName":{"name":"mul","nativeSrc":"27634:3:81","nodeType":"YulIdentifier","src":"27634:3:81"},"nativeSrc":"27634:20:81","nodeType":"YulFunctionCall","src":"27634:20:81"},"variableNames":[{"name":"power","nativeSrc":"27625:5:81","nodeType":"YulIdentifier","src":"27625:5:81"}]}]},"name":"checked_exp_unsigned","nativeSrc":"26758:902:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"26788:4:81","nodeType":"YulTypedName","src":"26788:4:81","type":""},{"name":"exponent","nativeSrc":"26794:8:81","nodeType":"YulTypedName","src":"26794:8:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"26807:5:81","nodeType":"YulTypedName","src":"26807:5:81","type":""}],"src":"26758:902:81"},{"body":{"nativeSrc":"27733:72:81","nodeType":"YulBlock","src":"27733:72:81","statements":[{"nativeSrc":"27743:56:81","nodeType":"YulAssignment","src":"27743:56:81","value":{"arguments":[{"name":"base","nativeSrc":"27773:4:81","nodeType":"YulIdentifier","src":"27773:4:81"},{"arguments":[{"name":"exponent","nativeSrc":"27783:8:81","nodeType":"YulIdentifier","src":"27783:8:81"},{"kind":"number","nativeSrc":"27793:4:81","nodeType":"YulLiteral","src":"27793:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"27779:3:81","nodeType":"YulIdentifier","src":"27779:3:81"},"nativeSrc":"27779:19:81","nodeType":"YulFunctionCall","src":"27779:19:81"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"27752:20:81","nodeType":"YulIdentifier","src":"27752:20:81"},"nativeSrc":"27752:47:81","nodeType":"YulFunctionCall","src":"27752:47:81"},"variableNames":[{"name":"power","nativeSrc":"27743:5:81","nodeType":"YulIdentifier","src":"27743:5:81"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"27665:140:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"27704:4:81","nodeType":"YulTypedName","src":"27704:4:81","type":""},{"name":"exponent","nativeSrc":"27710:8:81","nodeType":"YulTypedName","src":"27710:8:81","type":""}],"returnVariables":[{"name":"power","nativeSrc":"27723:5:81","nodeType":"YulTypedName","src":"27723:5:81","type":""}],"src":"27665:140:81"},{"body":{"nativeSrc":"27967:214:81","nodeType":"YulBlock","src":"27967:214:81","statements":[{"nativeSrc":"27977:26:81","nodeType":"YulAssignment","src":"27977:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"27989:9:81","nodeType":"YulIdentifier","src":"27989:9:81"},{"kind":"number","nativeSrc":"28000:2:81","nodeType":"YulLiteral","src":"28000:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27985:3:81","nodeType":"YulIdentifier","src":"27985:3:81"},"nativeSrc":"27985:18:81","nodeType":"YulFunctionCall","src":"27985:18:81"},"variableNames":[{"name":"tail","nativeSrc":"27977:4:81","nodeType":"YulIdentifier","src":"27977:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28019:9:81","nodeType":"YulIdentifier","src":"28019:9:81"},{"name":"value0","nativeSrc":"28030:6:81","nodeType":"YulIdentifier","src":"28030:6:81"}],"functionName":{"name":"mstore","nativeSrc":"28012:6:81","nodeType":"YulIdentifier","src":"28012:6:81"},"nativeSrc":"28012:25:81","nodeType":"YulFunctionCall","src":"28012:25:81"},"nativeSrc":"28012:25:81","nodeType":"YulExpressionStatement","src":"28012:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28057:9:81","nodeType":"YulIdentifier","src":"28057:9:81"},{"kind":"number","nativeSrc":"28068:2:81","nodeType":"YulLiteral","src":"28068:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28053:3:81","nodeType":"YulIdentifier","src":"28053:3:81"},"nativeSrc":"28053:18:81","nodeType":"YulFunctionCall","src":"28053:18:81"},{"arguments":[{"name":"value1","nativeSrc":"28077:6:81","nodeType":"YulIdentifier","src":"28077:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28093:3:81","nodeType":"YulLiteral","src":"28093:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"28098:1:81","nodeType":"YulLiteral","src":"28098:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"28089:3:81","nodeType":"YulIdentifier","src":"28089:3:81"},"nativeSrc":"28089:11:81","nodeType":"YulFunctionCall","src":"28089:11:81"},{"kind":"number","nativeSrc":"28102:1:81","nodeType":"YulLiteral","src":"28102:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"28085:3:81","nodeType":"YulIdentifier","src":"28085:3:81"},"nativeSrc":"28085:19:81","nodeType":"YulFunctionCall","src":"28085:19:81"}],"functionName":{"name":"and","nativeSrc":"28073:3:81","nodeType":"YulIdentifier","src":"28073:3:81"},"nativeSrc":"28073:32:81","nodeType":"YulFunctionCall","src":"28073:32:81"}],"functionName":{"name":"mstore","nativeSrc":"28046:6:81","nodeType":"YulIdentifier","src":"28046:6:81"},"nativeSrc":"28046:60:81","nodeType":"YulFunctionCall","src":"28046:60:81"},"nativeSrc":"28046:60:81","nodeType":"YulExpressionStatement","src":"28046:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28126:9:81","nodeType":"YulIdentifier","src":"28126:9:81"},{"kind":"number","nativeSrc":"28137:2:81","nodeType":"YulLiteral","src":"28137:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28122:3:81","nodeType":"YulIdentifier","src":"28122:3:81"},"nativeSrc":"28122:18:81","nodeType":"YulFunctionCall","src":"28122:18:81"},{"arguments":[{"name":"value2","nativeSrc":"28146:6:81","nodeType":"YulIdentifier","src":"28146:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28162:3:81","nodeType":"YulLiteral","src":"28162:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"28167:1:81","nodeType":"YulLiteral","src":"28167:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"28158:3:81","nodeType":"YulIdentifier","src":"28158:3:81"},"nativeSrc":"28158:11:81","nodeType":"YulFunctionCall","src":"28158:11:81"},{"kind":"number","nativeSrc":"28171:1:81","nodeType":"YulLiteral","src":"28171:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"28154:3:81","nodeType":"YulIdentifier","src":"28154:3:81"},"nativeSrc":"28154:19:81","nodeType":"YulFunctionCall","src":"28154:19:81"}],"functionName":{"name":"and","nativeSrc":"28142:3:81","nodeType":"YulIdentifier","src":"28142:3:81"},"nativeSrc":"28142:32:81","nodeType":"YulFunctionCall","src":"28142:32:81"}],"functionName":{"name":"mstore","nativeSrc":"28115:6:81","nodeType":"YulIdentifier","src":"28115:6:81"},"nativeSrc":"28115:60:81","nodeType":"YulFunctionCall","src":"28115:60:81"},"nativeSrc":"28115:60:81","nodeType":"YulExpressionStatement","src":"28115:60:81"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"27810:371:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27920:9:81","nodeType":"YulTypedName","src":"27920:9:81","type":""},{"name":"value2","nativeSrc":"27931:6:81","nodeType":"YulTypedName","src":"27931:6:81","type":""},{"name":"value1","nativeSrc":"27939:6:81","nodeType":"YulTypedName","src":"27939:6:81","type":""},{"name":"value0","nativeSrc":"27947:6:81","nodeType":"YulTypedName","src":"27947:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27958:4:81","nodeType":"YulTypedName","src":"27958:4:81","type":""}],"src":"27810:371:81"},{"body":{"nativeSrc":"28349:171:81","nodeType":"YulBlock","src":"28349:171:81","statements":[{"nativeSrc":"28359:26:81","nodeType":"YulAssignment","src":"28359:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"28371:9:81","nodeType":"YulIdentifier","src":"28371:9:81"},{"kind":"number","nativeSrc":"28382:2:81","nodeType":"YulLiteral","src":"28382:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28367:3:81","nodeType":"YulIdentifier","src":"28367:3:81"},"nativeSrc":"28367:18:81","nodeType":"YulFunctionCall","src":"28367:18:81"},"variableNames":[{"name":"tail","nativeSrc":"28359:4:81","nodeType":"YulIdentifier","src":"28359:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28401:9:81","nodeType":"YulIdentifier","src":"28401:9:81"},{"arguments":[{"name":"value0","nativeSrc":"28416:6:81","nodeType":"YulIdentifier","src":"28416:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28432:3:81","nodeType":"YulLiteral","src":"28432:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"28437:1:81","nodeType":"YulLiteral","src":"28437:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"28428:3:81","nodeType":"YulIdentifier","src":"28428:3:81"},"nativeSrc":"28428:11:81","nodeType":"YulFunctionCall","src":"28428:11:81"},{"kind":"number","nativeSrc":"28441:1:81","nodeType":"YulLiteral","src":"28441:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"28424:3:81","nodeType":"YulIdentifier","src":"28424:3:81"},"nativeSrc":"28424:19:81","nodeType":"YulFunctionCall","src":"28424:19:81"}],"functionName":{"name":"and","nativeSrc":"28412:3:81","nodeType":"YulIdentifier","src":"28412:3:81"},"nativeSrc":"28412:32:81","nodeType":"YulFunctionCall","src":"28412:32:81"}],"functionName":{"name":"mstore","nativeSrc":"28394:6:81","nodeType":"YulIdentifier","src":"28394:6:81"},"nativeSrc":"28394:51:81","nodeType":"YulFunctionCall","src":"28394:51:81"},"nativeSrc":"28394:51:81","nodeType":"YulExpressionStatement","src":"28394:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28465:9:81","nodeType":"YulIdentifier","src":"28465:9:81"},{"kind":"number","nativeSrc":"28476:2:81","nodeType":"YulLiteral","src":"28476:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28461:3:81","nodeType":"YulIdentifier","src":"28461:3:81"},"nativeSrc":"28461:18:81","nodeType":"YulFunctionCall","src":"28461:18:81"},{"arguments":[{"name":"value1","nativeSrc":"28485:6:81","nodeType":"YulIdentifier","src":"28485:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28501:3:81","nodeType":"YulLiteral","src":"28501:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"28506:1:81","nodeType":"YulLiteral","src":"28506:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"28497:3:81","nodeType":"YulIdentifier","src":"28497:3:81"},"nativeSrc":"28497:11:81","nodeType":"YulFunctionCall","src":"28497:11:81"},{"kind":"number","nativeSrc":"28510:1:81","nodeType":"YulLiteral","src":"28510:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"28493:3:81","nodeType":"YulIdentifier","src":"28493:3:81"},"nativeSrc":"28493:19:81","nodeType":"YulFunctionCall","src":"28493:19:81"}],"functionName":{"name":"and","nativeSrc":"28481:3:81","nodeType":"YulIdentifier","src":"28481:3:81"},"nativeSrc":"28481:32:81","nodeType":"YulFunctionCall","src":"28481:32:81"}],"functionName":{"name":"mstore","nativeSrc":"28454:6:81","nodeType":"YulIdentifier","src":"28454:6:81"},"nativeSrc":"28454:60:81","nodeType":"YulFunctionCall","src":"28454:60:81"},"nativeSrc":"28454:60:81","nodeType":"YulExpressionStatement","src":"28454:60:81"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$9796_t_contract$_IERC4626_$9796__to_t_address_t_address__fromStack_reversed","nativeSrc":"28186:334:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28310:9:81","nodeType":"YulTypedName","src":"28310:9:81","type":""},{"name":"value1","nativeSrc":"28321:6:81","nodeType":"YulTypedName","src":"28321:6:81","type":""},{"name":"value0","nativeSrc":"28329:6:81","nodeType":"YulTypedName","src":"28329:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28340:4:81","nodeType":"YulTypedName","src":"28340:4:81","type":""}],"src":"28186:334:81"},{"body":{"nativeSrc":"28572:169:81","nodeType":"YulBlock","src":"28572:169:81","statements":[{"nativeSrc":"28582:16:81","nodeType":"YulAssignment","src":"28582:16:81","value":{"arguments":[{"name":"x","nativeSrc":"28593:1:81","nodeType":"YulIdentifier","src":"28593:1:81"},{"name":"y","nativeSrc":"28596:1:81","nodeType":"YulIdentifier","src":"28596:1:81"}],"functionName":{"name":"add","nativeSrc":"28589:3:81","nodeType":"YulIdentifier","src":"28589:3:81"},"nativeSrc":"28589:9:81","nodeType":"YulFunctionCall","src":"28589:9:81"},"variableNames":[{"name":"sum","nativeSrc":"28582:3:81","nodeType":"YulIdentifier","src":"28582:3:81"}]},{"nativeSrc":"28607:21:81","nodeType":"YulVariableDeclaration","src":"28607:21:81","value":{"arguments":[{"name":"sum","nativeSrc":"28621:3:81","nodeType":"YulIdentifier","src":"28621:3:81"},{"name":"y","nativeSrc":"28626:1:81","nodeType":"YulIdentifier","src":"28626:1:81"}],"functionName":{"name":"slt","nativeSrc":"28617:3:81","nodeType":"YulIdentifier","src":"28617:3:81"},"nativeSrc":"28617:11:81","nodeType":"YulFunctionCall","src":"28617:11:81"},"variables":[{"name":"_1","nativeSrc":"28611:2:81","nodeType":"YulTypedName","src":"28611:2:81","type":""}]},{"nativeSrc":"28637:19:81","nodeType":"YulVariableDeclaration","src":"28637:19:81","value":{"arguments":[{"name":"x","nativeSrc":"28651:1:81","nodeType":"YulIdentifier","src":"28651:1:81"},{"kind":"number","nativeSrc":"28654:1:81","nodeType":"YulLiteral","src":"28654:1:81","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"28647:3:81","nodeType":"YulIdentifier","src":"28647:3:81"},"nativeSrc":"28647:9:81","nodeType":"YulFunctionCall","src":"28647:9:81"},"variables":[{"name":"_2","nativeSrc":"28641:2:81","nodeType":"YulTypedName","src":"28641:2:81","type":""}]},{"body":{"nativeSrc":"28713:22:81","nodeType":"YulBlock","src":"28713:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"28715:16:81","nodeType":"YulIdentifier","src":"28715:16:81"},"nativeSrc":"28715:18:81","nodeType":"YulFunctionCall","src":"28715:18:81"},"nativeSrc":"28715:18:81","nodeType":"YulExpressionStatement","src":"28715:18:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"28682:2:81","nodeType":"YulIdentifier","src":"28682:2:81"}],"functionName":{"name":"iszero","nativeSrc":"28675:6:81","nodeType":"YulIdentifier","src":"28675:6:81"},"nativeSrc":"28675:10:81","nodeType":"YulFunctionCall","src":"28675:10:81"},{"name":"_1","nativeSrc":"28687:2:81","nodeType":"YulIdentifier","src":"28687:2:81"}],"functionName":{"name":"and","nativeSrc":"28671:3:81","nodeType":"YulIdentifier","src":"28671:3:81"},"nativeSrc":"28671:19:81","nodeType":"YulFunctionCall","src":"28671:19:81"},{"arguments":[{"name":"_2","nativeSrc":"28696:2:81","nodeType":"YulIdentifier","src":"28696:2:81"},{"arguments":[{"name":"_1","nativeSrc":"28707:2:81","nodeType":"YulIdentifier","src":"28707:2:81"}],"functionName":{"name":"iszero","nativeSrc":"28700:6:81","nodeType":"YulIdentifier","src":"28700:6:81"},"nativeSrc":"28700:10:81","nodeType":"YulFunctionCall","src":"28700:10:81"}],"functionName":{"name":"and","nativeSrc":"28692:3:81","nodeType":"YulIdentifier","src":"28692:3:81"},"nativeSrc":"28692:19:81","nodeType":"YulFunctionCall","src":"28692:19:81"}],"functionName":{"name":"or","nativeSrc":"28668:2:81","nodeType":"YulIdentifier","src":"28668:2:81"},"nativeSrc":"28668:44:81","nodeType":"YulFunctionCall","src":"28668:44:81"},"nativeSrc":"28665:70:81","nodeType":"YulIf","src":"28665:70:81"}]},"name":"checked_add_t_int256","nativeSrc":"28525:216:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"28555:1:81","nodeType":"YulTypedName","src":"28555:1:81","type":""},{"name":"y","nativeSrc":"28558:1:81","nodeType":"YulTypedName","src":"28558:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"28564:3:81","nodeType":"YulTypedName","src":"28564:3:81","type":""}],"src":"28525:216:81"},{"body":{"nativeSrc":"28792:182:81","nodeType":"YulBlock","src":"28792:182:81","statements":[{"nativeSrc":"28802:48:81","nodeType":"YulAssignment","src":"28802:48:81","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28824:2:81","nodeType":"YulLiteral","src":"28824:2:81","type":"","value":"11"},{"name":"x","nativeSrc":"28828:1:81","nodeType":"YulIdentifier","src":"28828:1:81"}],"functionName":{"name":"signextend","nativeSrc":"28813:10:81","nodeType":"YulIdentifier","src":"28813:10:81"},"nativeSrc":"28813:17:81","nodeType":"YulFunctionCall","src":"28813:17:81"},{"arguments":[{"kind":"number","nativeSrc":"28843:2:81","nodeType":"YulLiteral","src":"28843:2:81","type":"","value":"11"},{"name":"y","nativeSrc":"28847:1:81","nodeType":"YulIdentifier","src":"28847:1:81"}],"functionName":{"name":"signextend","nativeSrc":"28832:10:81","nodeType":"YulIdentifier","src":"28832:10:81"},"nativeSrc":"28832:17:81","nodeType":"YulFunctionCall","src":"28832:17:81"}],"functionName":{"name":"add","nativeSrc":"28809:3:81","nodeType":"YulIdentifier","src":"28809:3:81"},"nativeSrc":"28809:41:81","nodeType":"YulFunctionCall","src":"28809:41:81"},"variableNames":[{"name":"sum","nativeSrc":"28802:3:81","nodeType":"YulIdentifier","src":"28802:3:81"}]},{"body":{"nativeSrc":"28946:22:81","nodeType":"YulBlock","src":"28946:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"28948:16:81","nodeType":"YulIdentifier","src":"28948:16:81"},"nativeSrc":"28948:18:81","nodeType":"YulFunctionCall","src":"28948:18:81"},"nativeSrc":"28948:18:81","nodeType":"YulExpressionStatement","src":"28948:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"sum","nativeSrc":"28869:3:81","nodeType":"YulIdentifier","src":"28869:3:81"},{"kind":"number","nativeSrc":"28874:26:81","nodeType":"YulLiteral","src":"28874:26:81","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"sgt","nativeSrc":"28865:3:81","nodeType":"YulIdentifier","src":"28865:3:81"},"nativeSrc":"28865:36:81","nodeType":"YulFunctionCall","src":"28865:36:81"},{"arguments":[{"name":"sum","nativeSrc":"28907:3:81","nodeType":"YulIdentifier","src":"28907:3:81"},{"arguments":[{"kind":"number","nativeSrc":"28916:26:81","nodeType":"YulLiteral","src":"28916:26:81","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"28912:3:81","nodeType":"YulIdentifier","src":"28912:3:81"},"nativeSrc":"28912:31:81","nodeType":"YulFunctionCall","src":"28912:31:81"}],"functionName":{"name":"slt","nativeSrc":"28903:3:81","nodeType":"YulIdentifier","src":"28903:3:81"},"nativeSrc":"28903:41:81","nodeType":"YulFunctionCall","src":"28903:41:81"}],"functionName":{"name":"or","nativeSrc":"28862:2:81","nodeType":"YulIdentifier","src":"28862:2:81"},"nativeSrc":"28862:83:81","nodeType":"YulFunctionCall","src":"28862:83:81"},"nativeSrc":"28859:109:81","nodeType":"YulIf","src":"28859:109:81"}]},"name":"checked_add_t_int96","nativeSrc":"28746:228:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"28775:1:81","nodeType":"YulTypedName","src":"28775:1:81","type":""},{"name":"y","nativeSrc":"28778:1:81","nodeType":"YulTypedName","src":"28778:1:81","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"28784:3:81","nodeType":"YulTypedName","src":"28784:3:81","type":""}],"src":"28746:228:81"},{"body":{"nativeSrc":"29181:300:81","nodeType":"YulBlock","src":"29181:300:81","statements":[{"nativeSrc":"29191:27:81","nodeType":"YulAssignment","src":"29191:27:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29203:9:81","nodeType":"YulIdentifier","src":"29203:9:81"},{"kind":"number","nativeSrc":"29214:3:81","nodeType":"YulLiteral","src":"29214:3:81","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"29199:3:81","nodeType":"YulIdentifier","src":"29199:3:81"},"nativeSrc":"29199:19:81","nodeType":"YulFunctionCall","src":"29199:19:81"},"variableNames":[{"name":"tail","nativeSrc":"29191:4:81","nodeType":"YulIdentifier","src":"29191:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29234:9:81","nodeType":"YulIdentifier","src":"29234:9:81"},{"arguments":[{"name":"value0","nativeSrc":"29249:6:81","nodeType":"YulIdentifier","src":"29249:6:81"},{"kind":"number","nativeSrc":"29257:10:81","nodeType":"YulLiteral","src":"29257:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"29245:3:81","nodeType":"YulIdentifier","src":"29245:3:81"},"nativeSrc":"29245:23:81","nodeType":"YulFunctionCall","src":"29245:23:81"}],"functionName":{"name":"mstore","nativeSrc":"29227:6:81","nodeType":"YulIdentifier","src":"29227:6:81"},"nativeSrc":"29227:42:81","nodeType":"YulFunctionCall","src":"29227:42:81"},"nativeSrc":"29227:42:81","nodeType":"YulExpressionStatement","src":"29227:42:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29289:9:81","nodeType":"YulIdentifier","src":"29289:9:81"},{"kind":"number","nativeSrc":"29300:2:81","nodeType":"YulLiteral","src":"29300:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29285:3:81","nodeType":"YulIdentifier","src":"29285:3:81"},"nativeSrc":"29285:18:81","nodeType":"YulFunctionCall","src":"29285:18:81"},{"arguments":[{"name":"value1","nativeSrc":"29309:6:81","nodeType":"YulIdentifier","src":"29309:6:81"},{"kind":"number","nativeSrc":"29317:10:81","nodeType":"YulLiteral","src":"29317:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"29305:3:81","nodeType":"YulIdentifier","src":"29305:3:81"},"nativeSrc":"29305:23:81","nodeType":"YulFunctionCall","src":"29305:23:81"}],"functionName":{"name":"mstore","nativeSrc":"29278:6:81","nodeType":"YulIdentifier","src":"29278:6:81"},"nativeSrc":"29278:51:81","nodeType":"YulFunctionCall","src":"29278:51:81"},"nativeSrc":"29278:51:81","nodeType":"YulExpressionStatement","src":"29278:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29349:9:81","nodeType":"YulIdentifier","src":"29349:9:81"},{"kind":"number","nativeSrc":"29360:2:81","nodeType":"YulLiteral","src":"29360:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29345:3:81","nodeType":"YulIdentifier","src":"29345:3:81"},"nativeSrc":"29345:18:81","nodeType":"YulFunctionCall","src":"29345:18:81"},{"name":"value2","nativeSrc":"29365:6:81","nodeType":"YulIdentifier","src":"29365:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29338:6:81","nodeType":"YulIdentifier","src":"29338:6:81"},"nativeSrc":"29338:34:81","nodeType":"YulFunctionCall","src":"29338:34:81"},"nativeSrc":"29338:34:81","nodeType":"YulExpressionStatement","src":"29338:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29392:9:81","nodeType":"YulIdentifier","src":"29392:9:81"},{"kind":"number","nativeSrc":"29403:2:81","nodeType":"YulLiteral","src":"29403:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29388:3:81","nodeType":"YulIdentifier","src":"29388:3:81"},"nativeSrc":"29388:18:81","nodeType":"YulFunctionCall","src":"29388:18:81"},{"name":"value3","nativeSrc":"29408:6:81","nodeType":"YulIdentifier","src":"29408:6:81"}],"functionName":{"name":"mstore","nativeSrc":"29381:6:81","nodeType":"YulIdentifier","src":"29381:6:81"},"nativeSrc":"29381:34:81","nodeType":"YulFunctionCall","src":"29381:34:81"},"nativeSrc":"29381:34:81","nodeType":"YulExpressionStatement","src":"29381:34:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29435:9:81","nodeType":"YulIdentifier","src":"29435:9:81"},{"kind":"number","nativeSrc":"29446:3:81","nodeType":"YulLiteral","src":"29446:3:81","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29431:3:81","nodeType":"YulIdentifier","src":"29431:3:81"},"nativeSrc":"29431:19:81","nodeType":"YulFunctionCall","src":"29431:19:81"},{"arguments":[{"kind":"number","nativeSrc":"29463:2:81","nodeType":"YulLiteral","src":"29463:2:81","type":"","value":"11"},{"name":"value4","nativeSrc":"29467:6:81","nodeType":"YulIdentifier","src":"29467:6:81"}],"functionName":{"name":"signextend","nativeSrc":"29452:10:81","nodeType":"YulIdentifier","src":"29452:10:81"},"nativeSrc":"29452:22:81","nodeType":"YulFunctionCall","src":"29452:22:81"}],"functionName":{"name":"mstore","nativeSrc":"29424:6:81","nodeType":"YulIdentifier","src":"29424:6:81"},"nativeSrc":"29424:51:81","nodeType":"YulFunctionCall","src":"29424:51:81"},"nativeSrc":"29424:51:81","nodeType":"YulExpressionStatement","src":"29424:51:81"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed","nativeSrc":"28979:502:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29118:9:81","nodeType":"YulTypedName","src":"29118:9:81","type":""},{"name":"value4","nativeSrc":"29129:6:81","nodeType":"YulTypedName","src":"29129:6:81","type":""},{"name":"value3","nativeSrc":"29137:6:81","nodeType":"YulTypedName","src":"29137:6:81","type":""},{"name":"value2","nativeSrc":"29145:6:81","nodeType":"YulTypedName","src":"29145:6:81","type":""},{"name":"value1","nativeSrc":"29153:6:81","nodeType":"YulTypedName","src":"29153:6:81","type":""},{"name":"value0","nativeSrc":"29161:6:81","nodeType":"YulTypedName","src":"29161:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29172:4:81","nodeType":"YulTypedName","src":"29172:4:81","type":""}],"src":"28979:502:81"},{"body":{"nativeSrc":"29590:180:81","nodeType":"YulBlock","src":"29590:180:81","statements":[{"body":{"nativeSrc":"29636:16:81","nodeType":"YulBlock","src":"29636:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29645:1:81","nodeType":"YulLiteral","src":"29645:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"29648:1:81","nodeType":"YulLiteral","src":"29648:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29638:6:81","nodeType":"YulIdentifier","src":"29638:6:81"},"nativeSrc":"29638:12:81","nodeType":"YulFunctionCall","src":"29638:12:81"},"nativeSrc":"29638:12:81","nodeType":"YulExpressionStatement","src":"29638:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29611:7:81","nodeType":"YulIdentifier","src":"29611:7:81"},{"name":"headStart","nativeSrc":"29620:9:81","nodeType":"YulIdentifier","src":"29620:9:81"}],"functionName":{"name":"sub","nativeSrc":"29607:3:81","nodeType":"YulIdentifier","src":"29607:3:81"},"nativeSrc":"29607:23:81","nodeType":"YulFunctionCall","src":"29607:23:81"},{"kind":"number","nativeSrc":"29632:2:81","nodeType":"YulLiteral","src":"29632:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29603:3:81","nodeType":"YulIdentifier","src":"29603:3:81"},"nativeSrc":"29603:32:81","nodeType":"YulFunctionCall","src":"29603:32:81"},"nativeSrc":"29600:52:81","nodeType":"YulIf","src":"29600:52:81"},{"nativeSrc":"29661:29:81","nodeType":"YulVariableDeclaration","src":"29661:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29680:9:81","nodeType":"YulIdentifier","src":"29680:9:81"}],"functionName":{"name":"mload","nativeSrc":"29674:5:81","nodeType":"YulIdentifier","src":"29674:5:81"},"nativeSrc":"29674:16:81","nodeType":"YulFunctionCall","src":"29674:16:81"},"variables":[{"name":"value","nativeSrc":"29665:5:81","nodeType":"YulTypedName","src":"29665:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29734:5:81","nodeType":"YulIdentifier","src":"29734:5:81"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"29699:34:81","nodeType":"YulIdentifier","src":"29699:34:81"},"nativeSrc":"29699:41:81","nodeType":"YulFunctionCall","src":"29699:41:81"},"nativeSrc":"29699:41:81","nodeType":"YulExpressionStatement","src":"29699:41:81"},{"nativeSrc":"29749:15:81","nodeType":"YulAssignment","src":"29749:15:81","value":{"name":"value","nativeSrc":"29759:5:81","nodeType":"YulIdentifier","src":"29759:5:81"},"variableNames":[{"name":"value0","nativeSrc":"29749:6:81","nodeType":"YulIdentifier","src":"29749:6:81"}]}]},"name":"abi_decode_tuple_t_contract$_IAccessManager_$9511_fromMemory","nativeSrc":"29486:284:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29556:9:81","nodeType":"YulTypedName","src":"29556:9:81","type":""},{"name":"dataEnd","nativeSrc":"29567:7:81","nodeType":"YulTypedName","src":"29567:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29579:6:81","nodeType":"YulTypedName","src":"29579:6:81","type":""}],"src":"29486:284:81"},{"body":{"nativeSrc":"29930:241:81","nodeType":"YulBlock","src":"29930:241:81","statements":[{"nativeSrc":"29940:26:81","nodeType":"YulAssignment","src":"29940:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"29952:9:81","nodeType":"YulIdentifier","src":"29952:9:81"},{"kind":"number","nativeSrc":"29963:2:81","nodeType":"YulLiteral","src":"29963:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29948:3:81","nodeType":"YulIdentifier","src":"29948:3:81"},"nativeSrc":"29948:18:81","nodeType":"YulFunctionCall","src":"29948:18:81"},"variableNames":[{"name":"tail","nativeSrc":"29940:4:81","nodeType":"YulIdentifier","src":"29940:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29982:9:81","nodeType":"YulIdentifier","src":"29982:9:81"},{"arguments":[{"name":"value0","nativeSrc":"29997:6:81","nodeType":"YulIdentifier","src":"29997:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30013:3:81","nodeType":"YulLiteral","src":"30013:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"30018:1:81","nodeType":"YulLiteral","src":"30018:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30009:3:81","nodeType":"YulIdentifier","src":"30009:3:81"},"nativeSrc":"30009:11:81","nodeType":"YulFunctionCall","src":"30009:11:81"},{"kind":"number","nativeSrc":"30022:1:81","nodeType":"YulLiteral","src":"30022:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30005:3:81","nodeType":"YulIdentifier","src":"30005:3:81"},"nativeSrc":"30005:19:81","nodeType":"YulFunctionCall","src":"30005:19:81"}],"functionName":{"name":"and","nativeSrc":"29993:3:81","nodeType":"YulIdentifier","src":"29993:3:81"},"nativeSrc":"29993:32:81","nodeType":"YulFunctionCall","src":"29993:32:81"}],"functionName":{"name":"mstore","nativeSrc":"29975:6:81","nodeType":"YulIdentifier","src":"29975:6:81"},"nativeSrc":"29975:51:81","nodeType":"YulFunctionCall","src":"29975:51:81"},"nativeSrc":"29975:51:81","nodeType":"YulExpressionStatement","src":"29975:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30046:9:81","nodeType":"YulIdentifier","src":"30046:9:81"},{"kind":"number","nativeSrc":"30057:2:81","nodeType":"YulLiteral","src":"30057:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30042:3:81","nodeType":"YulIdentifier","src":"30042:3:81"},"nativeSrc":"30042:18:81","nodeType":"YulFunctionCall","src":"30042:18:81"},{"arguments":[{"name":"value1","nativeSrc":"30066:6:81","nodeType":"YulIdentifier","src":"30066:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30082:3:81","nodeType":"YulLiteral","src":"30082:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"30087:1:81","nodeType":"YulLiteral","src":"30087:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30078:3:81","nodeType":"YulIdentifier","src":"30078:3:81"},"nativeSrc":"30078:11:81","nodeType":"YulFunctionCall","src":"30078:11:81"},{"kind":"number","nativeSrc":"30091:1:81","nodeType":"YulLiteral","src":"30091:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30074:3:81","nodeType":"YulIdentifier","src":"30074:3:81"},"nativeSrc":"30074:19:81","nodeType":"YulFunctionCall","src":"30074:19:81"}],"functionName":{"name":"and","nativeSrc":"30062:3:81","nodeType":"YulIdentifier","src":"30062:3:81"},"nativeSrc":"30062:32:81","nodeType":"YulFunctionCall","src":"30062:32:81"}],"functionName":{"name":"mstore","nativeSrc":"30035:6:81","nodeType":"YulIdentifier","src":"30035:6:81"},"nativeSrc":"30035:60:81","nodeType":"YulFunctionCall","src":"30035:60:81"},"nativeSrc":"30035:60:81","nodeType":"YulExpressionStatement","src":"30035:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30115:9:81","nodeType":"YulIdentifier","src":"30115:9:81"},{"kind":"number","nativeSrc":"30126:2:81","nodeType":"YulLiteral","src":"30126:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30111:3:81","nodeType":"YulIdentifier","src":"30111:3:81"},"nativeSrc":"30111:18:81","nodeType":"YulFunctionCall","src":"30111:18:81"},{"arguments":[{"name":"value2","nativeSrc":"30135:6:81","nodeType":"YulIdentifier","src":"30135:6:81"},{"arguments":[{"kind":"number","nativeSrc":"30147:3:81","nodeType":"YulLiteral","src":"30147:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"30152:10:81","nodeType":"YulLiteral","src":"30152:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"30143:3:81","nodeType":"YulIdentifier","src":"30143:3:81"},"nativeSrc":"30143:20:81","nodeType":"YulFunctionCall","src":"30143:20:81"}],"functionName":{"name":"and","nativeSrc":"30131:3:81","nodeType":"YulIdentifier","src":"30131:3:81"},"nativeSrc":"30131:33:81","nodeType":"YulFunctionCall","src":"30131:33:81"}],"functionName":{"name":"mstore","nativeSrc":"30104:6:81","nodeType":"YulIdentifier","src":"30104:6:81"},"nativeSrc":"30104:61:81","nodeType":"YulFunctionCall","src":"30104:61:81"},"nativeSrc":"30104:61:81","nodeType":"YulExpressionStatement","src":"30104:61:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"29775:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29883:9:81","nodeType":"YulTypedName","src":"29883:9:81","type":""},{"name":"value2","nativeSrc":"29894:6:81","nodeType":"YulTypedName","src":"29894:6:81","type":""},{"name":"value1","nativeSrc":"29902:6:81","nodeType":"YulTypedName","src":"29902:6:81","type":""},{"name":"value0","nativeSrc":"29910:6:81","nodeType":"YulTypedName","src":"29910:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29921:4:81","nodeType":"YulTypedName","src":"29921:4:81","type":""}],"src":"29775:396:81"},{"body":{"nativeSrc":"30270:283:81","nodeType":"YulBlock","src":"30270:283:81","statements":[{"body":{"nativeSrc":"30316:16:81","nodeType":"YulBlock","src":"30316:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"30325:1:81","nodeType":"YulLiteral","src":"30325:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"30328:1:81","nodeType":"YulLiteral","src":"30328:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"30318:6:81","nodeType":"YulIdentifier","src":"30318:6:81"},"nativeSrc":"30318:12:81","nodeType":"YulFunctionCall","src":"30318:12:81"},"nativeSrc":"30318:12:81","nodeType":"YulExpressionStatement","src":"30318:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"30291:7:81","nodeType":"YulIdentifier","src":"30291:7:81"},{"name":"headStart","nativeSrc":"30300:9:81","nodeType":"YulIdentifier","src":"30300:9:81"}],"functionName":{"name":"sub","nativeSrc":"30287:3:81","nodeType":"YulIdentifier","src":"30287:3:81"},"nativeSrc":"30287:23:81","nodeType":"YulFunctionCall","src":"30287:23:81"},{"kind":"number","nativeSrc":"30312:2:81","nodeType":"YulLiteral","src":"30312:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"30283:3:81","nodeType":"YulIdentifier","src":"30283:3:81"},"nativeSrc":"30283:32:81","nodeType":"YulFunctionCall","src":"30283:32:81"},"nativeSrc":"30280:52:81","nodeType":"YulIf","src":"30280:52:81"},{"nativeSrc":"30341:29:81","nodeType":"YulVariableDeclaration","src":"30341:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"30360:9:81","nodeType":"YulIdentifier","src":"30360:9:81"}],"functionName":{"name":"mload","nativeSrc":"30354:5:81","nodeType":"YulIdentifier","src":"30354:5:81"},"nativeSrc":"30354:16:81","nodeType":"YulFunctionCall","src":"30354:16:81"},"variables":[{"name":"value","nativeSrc":"30345:5:81","nodeType":"YulTypedName","src":"30345:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"30401:5:81","nodeType":"YulIdentifier","src":"30401:5:81"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"30379:21:81","nodeType":"YulIdentifier","src":"30379:21:81"},"nativeSrc":"30379:28:81","nodeType":"YulFunctionCall","src":"30379:28:81"},"nativeSrc":"30379:28:81","nodeType":"YulExpressionStatement","src":"30379:28:81"},{"nativeSrc":"30416:15:81","nodeType":"YulAssignment","src":"30416:15:81","value":{"name":"value","nativeSrc":"30426:5:81","nodeType":"YulIdentifier","src":"30426:5:81"},"variableNames":[{"name":"value0","nativeSrc":"30416:6:81","nodeType":"YulIdentifier","src":"30416:6:81"}]},{"nativeSrc":"30440:40:81","nodeType":"YulVariableDeclaration","src":"30440:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30465:9:81","nodeType":"YulIdentifier","src":"30465:9:81"},{"kind":"number","nativeSrc":"30476:2:81","nodeType":"YulLiteral","src":"30476:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30461:3:81","nodeType":"YulIdentifier","src":"30461:3:81"},"nativeSrc":"30461:18:81","nodeType":"YulFunctionCall","src":"30461:18:81"}],"functionName":{"name":"mload","nativeSrc":"30455:5:81","nodeType":"YulIdentifier","src":"30455:5:81"},"nativeSrc":"30455:25:81","nodeType":"YulFunctionCall","src":"30455:25:81"},"variables":[{"name":"value_1","nativeSrc":"30444:7:81","nodeType":"YulTypedName","src":"30444:7:81","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"30513:7:81","nodeType":"YulIdentifier","src":"30513:7:81"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"30489:23:81","nodeType":"YulIdentifier","src":"30489:23:81"},"nativeSrc":"30489:32:81","nodeType":"YulFunctionCall","src":"30489:32:81"},"nativeSrc":"30489:32:81","nodeType":"YulExpressionStatement","src":"30489:32:81"},{"nativeSrc":"30530:17:81","nodeType":"YulAssignment","src":"30530:17:81","value":{"name":"value_1","nativeSrc":"30540:7:81","nodeType":"YulIdentifier","src":"30540:7:81"},"variableNames":[{"name":"value1","nativeSrc":"30530:6:81","nodeType":"YulIdentifier","src":"30530:6:81"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"30176:377:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30228:9:81","nodeType":"YulTypedName","src":"30228:9:81","type":""},{"name":"dataEnd","nativeSrc":"30239:7:81","nodeType":"YulTypedName","src":"30239:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"30251:6:81","nodeType":"YulTypedName","src":"30251:6:81","type":""},{"name":"value1","nativeSrc":"30259:6:81","nodeType":"YulTypedName","src":"30259:6:81","type":""}],"src":"30176:377:81"},{"body":{"nativeSrc":"30590:95:81","nodeType":"YulBlock","src":"30590:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"30607:1:81","nodeType":"YulLiteral","src":"30607:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"30614:3:81","nodeType":"YulLiteral","src":"30614:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"30619:10:81","nodeType":"YulLiteral","src":"30619:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"30610:3:81","nodeType":"YulIdentifier","src":"30610:3:81"},"nativeSrc":"30610:20:81","nodeType":"YulFunctionCall","src":"30610:20:81"}],"functionName":{"name":"mstore","nativeSrc":"30600:6:81","nodeType":"YulIdentifier","src":"30600:6:81"},"nativeSrc":"30600:31:81","nodeType":"YulFunctionCall","src":"30600:31:81"},"nativeSrc":"30600:31:81","nodeType":"YulExpressionStatement","src":"30600:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"30647:1:81","nodeType":"YulLiteral","src":"30647:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"30650:4:81","nodeType":"YulLiteral","src":"30650:4:81","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"30640:6:81","nodeType":"YulIdentifier","src":"30640:6:81"},"nativeSrc":"30640:15:81","nodeType":"YulFunctionCall","src":"30640:15:81"},"nativeSrc":"30640:15:81","nodeType":"YulExpressionStatement","src":"30640:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"30671:1:81","nodeType":"YulLiteral","src":"30671:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"30674:4:81","nodeType":"YulLiteral","src":"30674:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"30664:6:81","nodeType":"YulIdentifier","src":"30664:6:81"},"nativeSrc":"30664:15:81","nodeType":"YulFunctionCall","src":"30664:15:81"},"nativeSrc":"30664:15:81","nodeType":"YulExpressionStatement","src":"30664:15:81"}]},"name":"panic_error_0x12","nativeSrc":"30558:127:81","nodeType":"YulFunctionDefinition","src":"30558:127:81"},{"body":{"nativeSrc":"30736:74:81","nodeType":"YulBlock","src":"30736:74:81","statements":[{"body":{"nativeSrc":"30759:22:81","nodeType":"YulBlock","src":"30759:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"30761:16:81","nodeType":"YulIdentifier","src":"30761:16:81"},"nativeSrc":"30761:18:81","nodeType":"YulFunctionCall","src":"30761:18:81"},"nativeSrc":"30761:18:81","nodeType":"YulExpressionStatement","src":"30761:18:81"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"30756:1:81","nodeType":"YulIdentifier","src":"30756:1:81"}],"functionName":{"name":"iszero","nativeSrc":"30749:6:81","nodeType":"YulIdentifier","src":"30749:6:81"},"nativeSrc":"30749:9:81","nodeType":"YulFunctionCall","src":"30749:9:81"},"nativeSrc":"30746:35:81","nodeType":"YulIf","src":"30746:35:81"},{"nativeSrc":"30790:14:81","nodeType":"YulAssignment","src":"30790:14:81","value":{"arguments":[{"name":"x","nativeSrc":"30799:1:81","nodeType":"YulIdentifier","src":"30799:1:81"},{"name":"y","nativeSrc":"30802:1:81","nodeType":"YulIdentifier","src":"30802:1:81"}],"functionName":{"name":"div","nativeSrc":"30795:3:81","nodeType":"YulIdentifier","src":"30795:3:81"},"nativeSrc":"30795:9:81","nodeType":"YulFunctionCall","src":"30795:9:81"},"variableNames":[{"name":"r","nativeSrc":"30790:1:81","nodeType":"YulIdentifier","src":"30790:1:81"}]}]},"name":"checked_div_t_uint256","nativeSrc":"30690:120:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"30721:1:81","nodeType":"YulTypedName","src":"30721:1:81","type":""},{"name":"y","nativeSrc":"30724:1:81","nodeType":"YulTypedName","src":"30724:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"30730:1:81","nodeType":"YulTypedName","src":"30730:1:81","type":""}],"src":"30690:120:81"},{"body":{"nativeSrc":"30896:103:81","nodeType":"YulBlock","src":"30896:103:81","statements":[{"body":{"nativeSrc":"30942:16:81","nodeType":"YulBlock","src":"30942:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"30951:1:81","nodeType":"YulLiteral","src":"30951:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"30954:1:81","nodeType":"YulLiteral","src":"30954:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"30944:6:81","nodeType":"YulIdentifier","src":"30944:6:81"},"nativeSrc":"30944:12:81","nodeType":"YulFunctionCall","src":"30944:12:81"},"nativeSrc":"30944:12:81","nodeType":"YulExpressionStatement","src":"30944:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"30917:7:81","nodeType":"YulIdentifier","src":"30917:7:81"},{"name":"headStart","nativeSrc":"30926:9:81","nodeType":"YulIdentifier","src":"30926:9:81"}],"functionName":{"name":"sub","nativeSrc":"30913:3:81","nodeType":"YulIdentifier","src":"30913:3:81"},"nativeSrc":"30913:23:81","nodeType":"YulFunctionCall","src":"30913:23:81"},{"kind":"number","nativeSrc":"30938:2:81","nodeType":"YulLiteral","src":"30938:2:81","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"30909:3:81","nodeType":"YulIdentifier","src":"30909:3:81"},"nativeSrc":"30909:32:81","nodeType":"YulFunctionCall","src":"30909:32:81"},"nativeSrc":"30906:52:81","nodeType":"YulIf","src":"30906:52:81"},{"nativeSrc":"30967:26:81","nodeType":"YulAssignment","src":"30967:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"30983:9:81","nodeType":"YulIdentifier","src":"30983:9:81"}],"functionName":{"name":"mload","nativeSrc":"30977:5:81","nodeType":"YulIdentifier","src":"30977:5:81"},"nativeSrc":"30977:16:81","nodeType":"YulFunctionCall","src":"30977:16:81"},"variableNames":[{"name":"value0","nativeSrc":"30967:6:81","nodeType":"YulIdentifier","src":"30967:6:81"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"30815:184:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30862:9:81","nodeType":"YulTypedName","src":"30862:9:81","type":""},{"name":"dataEnd","nativeSrc":"30873:7:81","nodeType":"YulTypedName","src":"30873:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"30885:6:81","nodeType":"YulTypedName","src":"30885:6:81","type":""}],"src":"30815:184:81"},{"body":{"nativeSrc":"31133:119:81","nodeType":"YulBlock","src":"31133:119:81","statements":[{"nativeSrc":"31143:26:81","nodeType":"YulAssignment","src":"31143:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"31155:9:81","nodeType":"YulIdentifier","src":"31155:9:81"},{"kind":"number","nativeSrc":"31166:2:81","nodeType":"YulLiteral","src":"31166:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31151:3:81","nodeType":"YulIdentifier","src":"31151:3:81"},"nativeSrc":"31151:18:81","nodeType":"YulFunctionCall","src":"31151:18:81"},"variableNames":[{"name":"tail","nativeSrc":"31143:4:81","nodeType":"YulIdentifier","src":"31143:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31185:9:81","nodeType":"YulIdentifier","src":"31185:9:81"},{"name":"value0","nativeSrc":"31196:6:81","nodeType":"YulIdentifier","src":"31196:6:81"}],"functionName":{"name":"mstore","nativeSrc":"31178:6:81","nodeType":"YulIdentifier","src":"31178:6:81"},"nativeSrc":"31178:25:81","nodeType":"YulFunctionCall","src":"31178:25:81"},"nativeSrc":"31178:25:81","nodeType":"YulExpressionStatement","src":"31178:25:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31223:9:81","nodeType":"YulIdentifier","src":"31223:9:81"},{"kind":"number","nativeSrc":"31234:2:81","nodeType":"YulLiteral","src":"31234:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31219:3:81","nodeType":"YulIdentifier","src":"31219:3:81"},"nativeSrc":"31219:18:81","nodeType":"YulFunctionCall","src":"31219:18:81"},{"name":"value1","nativeSrc":"31239:6:81","nodeType":"YulIdentifier","src":"31239:6:81"}],"functionName":{"name":"mstore","nativeSrc":"31212:6:81","nodeType":"YulIdentifier","src":"31212:6:81"},"nativeSrc":"31212:34:81","nodeType":"YulFunctionCall","src":"31212:34:81"},"nativeSrc":"31212:34:81","nodeType":"YulExpressionStatement","src":"31212:34:81"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"31004:248:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31094:9:81","nodeType":"YulTypedName","src":"31094:9:81","type":""},{"name":"value1","nativeSrc":"31105:6:81","nodeType":"YulTypedName","src":"31105:6:81","type":""},{"name":"value0","nativeSrc":"31113:6:81","nodeType":"YulTypedName","src":"31113:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31124:4:81","nodeType":"YulTypedName","src":"31124:4:81","type":""}],"src":"31004:248:81"},{"body":{"nativeSrc":"31414:214:81","nodeType":"YulBlock","src":"31414:214:81","statements":[{"nativeSrc":"31424:26:81","nodeType":"YulAssignment","src":"31424:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"31436:9:81","nodeType":"YulIdentifier","src":"31436:9:81"},{"kind":"number","nativeSrc":"31447:2:81","nodeType":"YulLiteral","src":"31447:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31432:3:81","nodeType":"YulIdentifier","src":"31432:3:81"},"nativeSrc":"31432:18:81","nodeType":"YulFunctionCall","src":"31432:18:81"},"variableNames":[{"name":"tail","nativeSrc":"31424:4:81","nodeType":"YulIdentifier","src":"31424:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31466:9:81","nodeType":"YulIdentifier","src":"31466:9:81"},{"arguments":[{"name":"value0","nativeSrc":"31481:6:81","nodeType":"YulIdentifier","src":"31481:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31497:3:81","nodeType":"YulLiteral","src":"31497:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"31502:1:81","nodeType":"YulLiteral","src":"31502:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"31493:3:81","nodeType":"YulIdentifier","src":"31493:3:81"},"nativeSrc":"31493:11:81","nodeType":"YulFunctionCall","src":"31493:11:81"},{"kind":"number","nativeSrc":"31506:1:81","nodeType":"YulLiteral","src":"31506:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"31489:3:81","nodeType":"YulIdentifier","src":"31489:3:81"},"nativeSrc":"31489:19:81","nodeType":"YulFunctionCall","src":"31489:19:81"}],"functionName":{"name":"and","nativeSrc":"31477:3:81","nodeType":"YulIdentifier","src":"31477:3:81"},"nativeSrc":"31477:32:81","nodeType":"YulFunctionCall","src":"31477:32:81"}],"functionName":{"name":"mstore","nativeSrc":"31459:6:81","nodeType":"YulIdentifier","src":"31459:6:81"},"nativeSrc":"31459:51:81","nodeType":"YulFunctionCall","src":"31459:51:81"},"nativeSrc":"31459:51:81","nodeType":"YulExpressionStatement","src":"31459:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31530:9:81","nodeType":"YulIdentifier","src":"31530:9:81"},{"kind":"number","nativeSrc":"31541:2:81","nodeType":"YulLiteral","src":"31541:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31526:3:81","nodeType":"YulIdentifier","src":"31526:3:81"},"nativeSrc":"31526:18:81","nodeType":"YulFunctionCall","src":"31526:18:81"},{"arguments":[{"name":"value1","nativeSrc":"31550:6:81","nodeType":"YulIdentifier","src":"31550:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31566:3:81","nodeType":"YulLiteral","src":"31566:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"31571:1:81","nodeType":"YulLiteral","src":"31571:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"31562:3:81","nodeType":"YulIdentifier","src":"31562:3:81"},"nativeSrc":"31562:11:81","nodeType":"YulFunctionCall","src":"31562:11:81"},{"kind":"number","nativeSrc":"31575:1:81","nodeType":"YulLiteral","src":"31575:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"31558:3:81","nodeType":"YulIdentifier","src":"31558:3:81"},"nativeSrc":"31558:19:81","nodeType":"YulFunctionCall","src":"31558:19:81"}],"functionName":{"name":"and","nativeSrc":"31546:3:81","nodeType":"YulIdentifier","src":"31546:3:81"},"nativeSrc":"31546:32:81","nodeType":"YulFunctionCall","src":"31546:32:81"}],"functionName":{"name":"mstore","nativeSrc":"31519:6:81","nodeType":"YulIdentifier","src":"31519:6:81"},"nativeSrc":"31519:60:81","nodeType":"YulFunctionCall","src":"31519:60:81"},"nativeSrc":"31519:60:81","nodeType":"YulExpressionStatement","src":"31519:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31599:9:81","nodeType":"YulIdentifier","src":"31599:9:81"},{"kind":"number","nativeSrc":"31610:2:81","nodeType":"YulLiteral","src":"31610:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31595:3:81","nodeType":"YulIdentifier","src":"31595:3:81"},"nativeSrc":"31595:18:81","nodeType":"YulFunctionCall","src":"31595:18:81"},{"name":"value2","nativeSrc":"31615:6:81","nodeType":"YulIdentifier","src":"31615:6:81"}],"functionName":{"name":"mstore","nativeSrc":"31588:6:81","nodeType":"YulIdentifier","src":"31588:6:81"},"nativeSrc":"31588:34:81","nodeType":"YulFunctionCall","src":"31588:34:81"},"nativeSrc":"31588:34:81","nodeType":"YulExpressionStatement","src":"31588:34:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"31257:371:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31367:9:81","nodeType":"YulTypedName","src":"31367:9:81","type":""},{"name":"value2","nativeSrc":"31378:6:81","nodeType":"YulTypedName","src":"31378:6:81","type":""},{"name":"value1","nativeSrc":"31386:6:81","nodeType":"YulTypedName","src":"31386:6:81","type":""},{"name":"value0","nativeSrc":"31394:6:81","nodeType":"YulTypedName","src":"31394:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31405:4:81","nodeType":"YulTypedName","src":"31405:4:81","type":""}],"src":"31257:371:81"},{"body":{"nativeSrc":"31769:130:81","nodeType":"YulBlock","src":"31769:130:81","statements":[{"nativeSrc":"31779:26:81","nodeType":"YulAssignment","src":"31779:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"31791:9:81","nodeType":"YulIdentifier","src":"31791:9:81"},{"kind":"number","nativeSrc":"31802:2:81","nodeType":"YulLiteral","src":"31802:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31787:3:81","nodeType":"YulIdentifier","src":"31787:3:81"},"nativeSrc":"31787:18:81","nodeType":"YulFunctionCall","src":"31787:18:81"},"variableNames":[{"name":"tail","nativeSrc":"31779:4:81","nodeType":"YulIdentifier","src":"31779:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31821:9:81","nodeType":"YulIdentifier","src":"31821:9:81"},{"arguments":[{"name":"value0","nativeSrc":"31836:6:81","nodeType":"YulIdentifier","src":"31836:6:81"},{"kind":"number","nativeSrc":"31844:4:81","nodeType":"YulLiteral","src":"31844:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"31832:3:81","nodeType":"YulIdentifier","src":"31832:3:81"},"nativeSrc":"31832:17:81","nodeType":"YulFunctionCall","src":"31832:17:81"}],"functionName":{"name":"mstore","nativeSrc":"31814:6:81","nodeType":"YulIdentifier","src":"31814:6:81"},"nativeSrc":"31814:36:81","nodeType":"YulFunctionCall","src":"31814:36:81"},"nativeSrc":"31814:36:81","nodeType":"YulExpressionStatement","src":"31814:36:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31870:9:81","nodeType":"YulIdentifier","src":"31870:9:81"},{"kind":"number","nativeSrc":"31881:2:81","nodeType":"YulLiteral","src":"31881:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31866:3:81","nodeType":"YulIdentifier","src":"31866:3:81"},"nativeSrc":"31866:18:81","nodeType":"YulFunctionCall","src":"31866:18:81"},{"name":"value1","nativeSrc":"31886:6:81","nodeType":"YulIdentifier","src":"31886:6:81"}],"functionName":{"name":"mstore","nativeSrc":"31859:6:81","nodeType":"YulIdentifier","src":"31859:6:81"},"nativeSrc":"31859:34:81","nodeType":"YulFunctionCall","src":"31859:34:81"},"nativeSrc":"31859:34:81","nodeType":"YulExpressionStatement","src":"31859:34:81"}]},"name":"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"31633:266:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31730:9:81","nodeType":"YulTypedName","src":"31730:9:81","type":""},{"name":"value1","nativeSrc":"31741:6:81","nodeType":"YulTypedName","src":"31741:6:81","type":""},{"name":"value0","nativeSrc":"31749:6:81","nodeType":"YulTypedName","src":"31749:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31760:4:81","nodeType":"YulTypedName","src":"31760:4:81","type":""}],"src":"31633:266:81"},{"body":{"nativeSrc":"32005:273:81","nodeType":"YulBlock","src":"32005:273:81","statements":[{"nativeSrc":"32015:29:81","nodeType":"YulVariableDeclaration","src":"32015:29:81","value":{"arguments":[{"name":"array","nativeSrc":"32038:5:81","nodeType":"YulIdentifier","src":"32038:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"32025:12:81","nodeType":"YulIdentifier","src":"32025:12:81"},"nativeSrc":"32025:19:81","nodeType":"YulFunctionCall","src":"32025:19:81"},"variables":[{"name":"_1","nativeSrc":"32019:2:81","nodeType":"YulTypedName","src":"32019:2:81","type":""}]},{"nativeSrc":"32053:49:81","nodeType":"YulAssignment","src":"32053:49:81","value":{"arguments":[{"name":"_1","nativeSrc":"32066:2:81","nodeType":"YulIdentifier","src":"32066:2:81"},{"arguments":[{"kind":"number","nativeSrc":"32074:26:81","nodeType":"YulLiteral","src":"32074:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"32070:3:81","nodeType":"YulIdentifier","src":"32070:3:81"},"nativeSrc":"32070:31:81","nodeType":"YulFunctionCall","src":"32070:31:81"}],"functionName":{"name":"and","nativeSrc":"32062:3:81","nodeType":"YulIdentifier","src":"32062:3:81"},"nativeSrc":"32062:40:81","nodeType":"YulFunctionCall","src":"32062:40:81"},"variableNames":[{"name":"value","nativeSrc":"32053:5:81","nodeType":"YulIdentifier","src":"32053:5:81"}]},{"body":{"nativeSrc":"32134:138:81","nodeType":"YulBlock","src":"32134:138:81","statements":[{"nativeSrc":"32148:114:81","nodeType":"YulAssignment","src":"32148:114:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"32165:2:81","nodeType":"YulIdentifier","src":"32165:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32177:1:81","nodeType":"YulLiteral","src":"32177:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"32184:2:81","nodeType":"YulLiteral","src":"32184:2:81","type":"","value":"20"},{"name":"len","nativeSrc":"32188:3:81","nodeType":"YulIdentifier","src":"32188:3:81"}],"functionName":{"name":"sub","nativeSrc":"32180:3:81","nodeType":"YulIdentifier","src":"32180:3:81"},"nativeSrc":"32180:12:81","nodeType":"YulFunctionCall","src":"32180:12:81"}],"functionName":{"name":"shl","nativeSrc":"32173:3:81","nodeType":"YulIdentifier","src":"32173:3:81"},"nativeSrc":"32173:20:81","nodeType":"YulFunctionCall","src":"32173:20:81"},{"arguments":[{"kind":"number","nativeSrc":"32199:26:81","nodeType":"YulLiteral","src":"32199:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"32195:3:81","nodeType":"YulIdentifier","src":"32195:3:81"},"nativeSrc":"32195:31:81","nodeType":"YulFunctionCall","src":"32195:31:81"}],"functionName":{"name":"shl","nativeSrc":"32169:3:81","nodeType":"YulIdentifier","src":"32169:3:81"},"nativeSrc":"32169:58:81","nodeType":"YulFunctionCall","src":"32169:58:81"}],"functionName":{"name":"and","nativeSrc":"32161:3:81","nodeType":"YulIdentifier","src":"32161:3:81"},"nativeSrc":"32161:67:81","nodeType":"YulFunctionCall","src":"32161:67:81"},{"arguments":[{"kind":"number","nativeSrc":"32234:26:81","nodeType":"YulLiteral","src":"32234:26:81","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"32230:3:81","nodeType":"YulIdentifier","src":"32230:3:81"},"nativeSrc":"32230:31:81","nodeType":"YulFunctionCall","src":"32230:31:81"}],"functionName":{"name":"and","nativeSrc":"32157:3:81","nodeType":"YulIdentifier","src":"32157:3:81"},"nativeSrc":"32157:105:81","nodeType":"YulFunctionCall","src":"32157:105:81"},"variableNames":[{"name":"value","nativeSrc":"32148:5:81","nodeType":"YulIdentifier","src":"32148:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"32117:3:81","nodeType":"YulIdentifier","src":"32117:3:81"},{"kind":"number","nativeSrc":"32122:2:81","nodeType":"YulLiteral","src":"32122:2:81","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"32114:2:81","nodeType":"YulIdentifier","src":"32114:2:81"},"nativeSrc":"32114:11:81","nodeType":"YulFunctionCall","src":"32114:11:81"},"nativeSrc":"32111:161:81","nodeType":"YulIf","src":"32111:161:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"31904:374:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"31980:5:81","nodeType":"YulTypedName","src":"31980:5:81","type":""},{"name":"len","nativeSrc":"31987:3:81","nodeType":"YulTypedName","src":"31987:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"31995:5:81","nodeType":"YulTypedName","src":"31995:5:81","type":""}],"src":"31904:374:81"},{"body":{"nativeSrc":"32420:164:81","nodeType":"YulBlock","src":"32420:164:81","statements":[{"nativeSrc":"32430:27:81","nodeType":"YulVariableDeclaration","src":"32430:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"32450:6:81","nodeType":"YulIdentifier","src":"32450:6:81"}],"functionName":{"name":"mload","nativeSrc":"32444:5:81","nodeType":"YulIdentifier","src":"32444:5:81"},"nativeSrc":"32444:13:81","nodeType":"YulFunctionCall","src":"32444:13:81"},"variables":[{"name":"length","nativeSrc":"32434:6:81","nodeType":"YulTypedName","src":"32434:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"32472:3:81","nodeType":"YulIdentifier","src":"32472:3:81"},{"arguments":[{"name":"value0","nativeSrc":"32481:6:81","nodeType":"YulIdentifier","src":"32481:6:81"},{"kind":"number","nativeSrc":"32489:4:81","nodeType":"YulLiteral","src":"32489:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"32477:3:81","nodeType":"YulIdentifier","src":"32477:3:81"},"nativeSrc":"32477:17:81","nodeType":"YulFunctionCall","src":"32477:17:81"},{"name":"length","nativeSrc":"32496:6:81","nodeType":"YulIdentifier","src":"32496:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"32466:5:81","nodeType":"YulIdentifier","src":"32466:5:81"},"nativeSrc":"32466:37:81","nodeType":"YulFunctionCall","src":"32466:37:81"},"nativeSrc":"32466:37:81","nodeType":"YulExpressionStatement","src":"32466:37:81"},{"nativeSrc":"32512:26:81","nodeType":"YulVariableDeclaration","src":"32512:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"32526:3:81","nodeType":"YulIdentifier","src":"32526:3:81"},{"name":"length","nativeSrc":"32531:6:81","nodeType":"YulIdentifier","src":"32531:6:81"}],"functionName":{"name":"add","nativeSrc":"32522:3:81","nodeType":"YulIdentifier","src":"32522:3:81"},"nativeSrc":"32522:16:81","nodeType":"YulFunctionCall","src":"32522:16:81"},"variables":[{"name":"_1","nativeSrc":"32516:2:81","nodeType":"YulTypedName","src":"32516:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"32554:2:81","nodeType":"YulIdentifier","src":"32554:2:81"},{"kind":"number","nativeSrc":"32558:1:81","nodeType":"YulLiteral","src":"32558:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"32547:6:81","nodeType":"YulIdentifier","src":"32547:6:81"},"nativeSrc":"32547:13:81","nodeType":"YulFunctionCall","src":"32547:13:81"},"nativeSrc":"32547:13:81","nodeType":"YulExpressionStatement","src":"32547:13:81"},{"nativeSrc":"32569:9:81","nodeType":"YulAssignment","src":"32569:9:81","value":{"name":"_1","nativeSrc":"32576:2:81","nodeType":"YulIdentifier","src":"32576:2:81"},"variableNames":[{"name":"end","nativeSrc":"32569:3:81","nodeType":"YulIdentifier","src":"32569:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"32283:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"32396:3:81","nodeType":"YulTypedName","src":"32396:3:81","type":""},{"name":"value0","nativeSrc":"32401:6:81","nodeType":"YulTypedName","src":"32401:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"32412:3:81","nodeType":"YulTypedName","src":"32412:3:81","type":""}],"src":"32283:301:81"},{"body":{"nativeSrc":"32635:142:81","nodeType":"YulBlock","src":"32635:142:81","statements":[{"nativeSrc":"32645:37:81","nodeType":"YulVariableDeclaration","src":"32645:37:81","value":{"arguments":[{"name":"value","nativeSrc":"32664:5:81","nodeType":"YulIdentifier","src":"32664:5:81"},{"kind":"number","nativeSrc":"32671:10:81","nodeType":"YulLiteral","src":"32671:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"32660:3:81","nodeType":"YulIdentifier","src":"32660:3:81"},"nativeSrc":"32660:22:81","nodeType":"YulFunctionCall","src":"32660:22:81"},"variables":[{"name":"value_1","nativeSrc":"32649:7:81","nodeType":"YulTypedName","src":"32649:7:81","type":""}]},{"body":{"nativeSrc":"32718:22:81","nodeType":"YulBlock","src":"32718:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"32720:16:81","nodeType":"YulIdentifier","src":"32720:16:81"},"nativeSrc":"32720:18:81","nodeType":"YulFunctionCall","src":"32720:18:81"},"nativeSrc":"32720:18:81","nodeType":"YulExpressionStatement","src":"32720:18:81"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"32697:7:81","nodeType":"YulIdentifier","src":"32697:7:81"},{"kind":"number","nativeSrc":"32706:10:81","nodeType":"YulLiteral","src":"32706:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"32694:2:81","nodeType":"YulIdentifier","src":"32694:2:81"},"nativeSrc":"32694:23:81","nodeType":"YulFunctionCall","src":"32694:23:81"},"nativeSrc":"32691:49:81","nodeType":"YulIf","src":"32691:49:81"},{"nativeSrc":"32749:22:81","nodeType":"YulAssignment","src":"32749:22:81","value":{"arguments":[{"name":"value_1","nativeSrc":"32760:7:81","nodeType":"YulIdentifier","src":"32760:7:81"},{"kind":"number","nativeSrc":"32769:1:81","nodeType":"YulLiteral","src":"32769:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"32756:3:81","nodeType":"YulIdentifier","src":"32756:3:81"},"nativeSrc":"32756:15:81","nodeType":"YulFunctionCall","src":"32756:15:81"},"variableNames":[{"name":"ret","nativeSrc":"32749:3:81","nodeType":"YulIdentifier","src":"32749:3:81"}]}]},"name":"increment_t_uint32","nativeSrc":"32589:188:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"32617:5:81","nodeType":"YulTypedName","src":"32617:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"32627:3:81","nodeType":"YulTypedName","src":"32627:3:81","type":""}],"src":"32589:188:81"},{"body":{"nativeSrc":"32819:133:81","nodeType":"YulBlock","src":"32819:133:81","statements":[{"nativeSrc":"32829:29:81","nodeType":"YulVariableDeclaration","src":"32829:29:81","value":{"arguments":[{"name":"y","nativeSrc":"32844:1:81","nodeType":"YulIdentifier","src":"32844:1:81"},{"kind":"number","nativeSrc":"32847:10:81","nodeType":"YulLiteral","src":"32847:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"32840:3:81","nodeType":"YulIdentifier","src":"32840:3:81"},"nativeSrc":"32840:18:81","nodeType":"YulFunctionCall","src":"32840:18:81"},"variables":[{"name":"y_1","nativeSrc":"32833:3:81","nodeType":"YulTypedName","src":"32833:3:81","type":""}]},{"body":{"nativeSrc":"32882:22:81","nodeType":"YulBlock","src":"32882:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"32884:16:81","nodeType":"YulIdentifier","src":"32884:16:81"},"nativeSrc":"32884:18:81","nodeType":"YulFunctionCall","src":"32884:18:81"},"nativeSrc":"32884:18:81","nodeType":"YulExpressionStatement","src":"32884:18:81"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"32877:3:81","nodeType":"YulIdentifier","src":"32877:3:81"}],"functionName":{"name":"iszero","nativeSrc":"32870:6:81","nodeType":"YulIdentifier","src":"32870:6:81"},"nativeSrc":"32870:11:81","nodeType":"YulFunctionCall","src":"32870:11:81"},"nativeSrc":"32867:37:81","nodeType":"YulIf","src":"32867:37:81"},{"nativeSrc":"32913:33:81","nodeType":"YulAssignment","src":"32913:33:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"32926:1:81","nodeType":"YulIdentifier","src":"32926:1:81"},{"kind":"number","nativeSrc":"32929:10:81","nodeType":"YulLiteral","src":"32929:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"32922:3:81","nodeType":"YulIdentifier","src":"32922:3:81"},"nativeSrc":"32922:18:81","nodeType":"YulFunctionCall","src":"32922:18:81"},{"name":"y_1","nativeSrc":"32942:3:81","nodeType":"YulIdentifier","src":"32942:3:81"}],"functionName":{"name":"mod","nativeSrc":"32918:3:81","nodeType":"YulIdentifier","src":"32918:3:81"},"nativeSrc":"32918:28:81","nodeType":"YulFunctionCall","src":"32918:28:81"},"variableNames":[{"name":"r","nativeSrc":"32913:1:81","nodeType":"YulIdentifier","src":"32913:1:81"}]}]},"name":"mod_t_uint32","nativeSrc":"32782:170:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"32804:1:81","nodeType":"YulTypedName","src":"32804:1:81","type":""},{"name":"y","nativeSrc":"32807:1:81","nodeType":"YulTypedName","src":"32807:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"32813:1:81","nodeType":"YulTypedName","src":"32813:1:81","type":""}],"src":"32782:170:81"},{"body":{"nativeSrc":"33008:193:81","nodeType":"YulBlock","src":"33008:193:81","statements":[{"nativeSrc":"33018:62:81","nodeType":"YulVariableDeclaration","src":"33018:62:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"33045:1:81","nodeType":"YulIdentifier","src":"33045:1:81"},{"kind":"number","nativeSrc":"33048:10:81","nodeType":"YulLiteral","src":"33048:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"33041:3:81","nodeType":"YulIdentifier","src":"33041:3:81"},"nativeSrc":"33041:18:81","nodeType":"YulFunctionCall","src":"33041:18:81"},{"arguments":[{"name":"y","nativeSrc":"33065:1:81","nodeType":"YulIdentifier","src":"33065:1:81"},{"kind":"number","nativeSrc":"33068:10:81","nodeType":"YulLiteral","src":"33068:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"33061:3:81","nodeType":"YulIdentifier","src":"33061:3:81"},"nativeSrc":"33061:18:81","nodeType":"YulFunctionCall","src":"33061:18:81"}],"functionName":{"name":"mul","nativeSrc":"33037:3:81","nodeType":"YulIdentifier","src":"33037:3:81"},"nativeSrc":"33037:43:81","nodeType":"YulFunctionCall","src":"33037:43:81"},"variables":[{"name":"product_raw","nativeSrc":"33022:11:81","nodeType":"YulTypedName","src":"33022:11:81","type":""}]},{"nativeSrc":"33089:39:81","nodeType":"YulAssignment","src":"33089:39:81","value":{"arguments":[{"name":"product_raw","nativeSrc":"33104:11:81","nodeType":"YulIdentifier","src":"33104:11:81"},{"kind":"number","nativeSrc":"33117:10:81","nodeType":"YulLiteral","src":"33117:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"33100:3:81","nodeType":"YulIdentifier","src":"33100:3:81"},"nativeSrc":"33100:28:81","nodeType":"YulFunctionCall","src":"33100:28:81"},"variableNames":[{"name":"product","nativeSrc":"33089:7:81","nodeType":"YulIdentifier","src":"33089:7:81"}]},{"body":{"nativeSrc":"33173:22:81","nodeType":"YulBlock","src":"33173:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"33175:16:81","nodeType":"YulIdentifier","src":"33175:16:81"},"nativeSrc":"33175:18:81","nodeType":"YulFunctionCall","src":"33175:18:81"},"nativeSrc":"33175:18:81","nodeType":"YulExpressionStatement","src":"33175:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"product","nativeSrc":"33150:7:81","nodeType":"YulIdentifier","src":"33150:7:81"},{"name":"product_raw","nativeSrc":"33159:11:81","nodeType":"YulIdentifier","src":"33159:11:81"}],"functionName":{"name":"eq","nativeSrc":"33147:2:81","nodeType":"YulIdentifier","src":"33147:2:81"},"nativeSrc":"33147:24:81","nodeType":"YulFunctionCall","src":"33147:24:81"}],"functionName":{"name":"iszero","nativeSrc":"33140:6:81","nodeType":"YulIdentifier","src":"33140:6:81"},"nativeSrc":"33140:32:81","nodeType":"YulFunctionCall","src":"33140:32:81"},"nativeSrc":"33137:58:81","nodeType":"YulIf","src":"33137:58:81"}]},"name":"checked_mul_t_uint32","nativeSrc":"32957:244:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"32987:1:81","nodeType":"YulTypedName","src":"32987:1:81","type":""},{"name":"y","nativeSrc":"32990:1:81","nodeType":"YulTypedName","src":"32990:1:81","type":""}],"returnVariables":[{"name":"product","nativeSrc":"32996:7:81","nodeType":"YulTypedName","src":"32996:7:81","type":""}],"src":"32957:244:81"},{"body":{"nativeSrc":"33262:65:81","nodeType":"YulBlock","src":"33262:65:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33279:1:81","nodeType":"YulLiteral","src":"33279:1:81","type":"","value":"0"},{"name":"ptr","nativeSrc":"33282:3:81","nodeType":"YulIdentifier","src":"33282:3:81"}],"functionName":{"name":"mstore","nativeSrc":"33272:6:81","nodeType":"YulIdentifier","src":"33272:6:81"},"nativeSrc":"33272:14:81","nodeType":"YulFunctionCall","src":"33272:14:81"},"nativeSrc":"33272:14:81","nodeType":"YulExpressionStatement","src":"33272:14:81"},{"nativeSrc":"33295:26:81","nodeType":"YulAssignment","src":"33295:26:81","value":{"arguments":[{"kind":"number","nativeSrc":"33313:1:81","nodeType":"YulLiteral","src":"33313:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"33316:4:81","nodeType":"YulLiteral","src":"33316:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"33303:9:81","nodeType":"YulIdentifier","src":"33303:9:81"},"nativeSrc":"33303:18:81","nodeType":"YulFunctionCall","src":"33303:18:81"},"variableNames":[{"name":"data","nativeSrc":"33295:4:81","nodeType":"YulIdentifier","src":"33295:4:81"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"33206:121:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"33245:3:81","nodeType":"YulTypedName","src":"33245:3:81","type":""}],"returnVariables":[{"name":"data","nativeSrc":"33253:4:81","nodeType":"YulTypedName","src":"33253:4:81","type":""}],"src":"33206:121:81"},{"body":{"nativeSrc":"33413:437:81","nodeType":"YulBlock","src":"33413:437:81","statements":[{"body":{"nativeSrc":"33446:398:81","nodeType":"YulBlock","src":"33446:398:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33467:1:81","nodeType":"YulLiteral","src":"33467:1:81","type":"","value":"0"},{"name":"array","nativeSrc":"33470:5:81","nodeType":"YulIdentifier","src":"33470:5:81"}],"functionName":{"name":"mstore","nativeSrc":"33460:6:81","nodeType":"YulIdentifier","src":"33460:6:81"},"nativeSrc":"33460:16:81","nodeType":"YulFunctionCall","src":"33460:16:81"},"nativeSrc":"33460:16:81","nodeType":"YulExpressionStatement","src":"33460:16:81"},{"nativeSrc":"33489:30:81","nodeType":"YulVariableDeclaration","src":"33489:30:81","value":{"arguments":[{"kind":"number","nativeSrc":"33511:1:81","nodeType":"YulLiteral","src":"33511:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"33514:4:81","nodeType":"YulLiteral","src":"33514:4:81","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"33501:9:81","nodeType":"YulIdentifier","src":"33501:9:81"},"nativeSrc":"33501:18:81","nodeType":"YulFunctionCall","src":"33501:18:81"},"variables":[{"name":"data","nativeSrc":"33493:4:81","nodeType":"YulTypedName","src":"33493:4:81","type":""}]},{"nativeSrc":"33532:57:81","nodeType":"YulVariableDeclaration","src":"33532:57:81","value":{"arguments":[{"name":"data","nativeSrc":"33555:4:81","nodeType":"YulIdentifier","src":"33555:4:81"},{"arguments":[{"kind":"number","nativeSrc":"33565:1:81","nodeType":"YulLiteral","src":"33565:1:81","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"33572:10:81","nodeType":"YulIdentifier","src":"33572:10:81"},{"kind":"number","nativeSrc":"33584:2:81","nodeType":"YulLiteral","src":"33584:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"33568:3:81","nodeType":"YulIdentifier","src":"33568:3:81"},"nativeSrc":"33568:19:81","nodeType":"YulFunctionCall","src":"33568:19:81"}],"functionName":{"name":"shr","nativeSrc":"33561:3:81","nodeType":"YulIdentifier","src":"33561:3:81"},"nativeSrc":"33561:27:81","nodeType":"YulFunctionCall","src":"33561:27:81"}],"functionName":{"name":"add","nativeSrc":"33551:3:81","nodeType":"YulIdentifier","src":"33551:3:81"},"nativeSrc":"33551:38:81","nodeType":"YulFunctionCall","src":"33551:38:81"},"variables":[{"name":"deleteStart","nativeSrc":"33536:11:81","nodeType":"YulTypedName","src":"33536:11:81","type":""}]},{"body":{"nativeSrc":"33626:23:81","nodeType":"YulBlock","src":"33626:23:81","statements":[{"nativeSrc":"33628:19:81","nodeType":"YulAssignment","src":"33628:19:81","value":{"name":"data","nativeSrc":"33643:4:81","nodeType":"YulIdentifier","src":"33643:4:81"},"variableNames":[{"name":"deleteStart","nativeSrc":"33628:11:81","nodeType":"YulIdentifier","src":"33628:11:81"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"33608:10:81","nodeType":"YulIdentifier","src":"33608:10:81"},{"kind":"number","nativeSrc":"33620:4:81","nodeType":"YulLiteral","src":"33620:4:81","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"33605:2:81","nodeType":"YulIdentifier","src":"33605:2:81"},"nativeSrc":"33605:20:81","nodeType":"YulFunctionCall","src":"33605:20:81"},"nativeSrc":"33602:47:81","nodeType":"YulIf","src":"33602:47:81"},{"nativeSrc":"33662:41:81","nodeType":"YulVariableDeclaration","src":"33662:41:81","value":{"arguments":[{"name":"data","nativeSrc":"33676:4:81","nodeType":"YulIdentifier","src":"33676:4:81"},{"arguments":[{"kind":"number","nativeSrc":"33686:1:81","nodeType":"YulLiteral","src":"33686:1:81","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"33693:3:81","nodeType":"YulIdentifier","src":"33693:3:81"},{"kind":"number","nativeSrc":"33698:2:81","nodeType":"YulLiteral","src":"33698:2:81","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"33689:3:81","nodeType":"YulIdentifier","src":"33689:3:81"},"nativeSrc":"33689:12:81","nodeType":"YulFunctionCall","src":"33689:12:81"}],"functionName":{"name":"shr","nativeSrc":"33682:3:81","nodeType":"YulIdentifier","src":"33682:3:81"},"nativeSrc":"33682:20:81","nodeType":"YulFunctionCall","src":"33682:20:81"}],"functionName":{"name":"add","nativeSrc":"33672:3:81","nodeType":"YulIdentifier","src":"33672:3:81"},"nativeSrc":"33672:31:81","nodeType":"YulFunctionCall","src":"33672:31:81"},"variables":[{"name":"_1","nativeSrc":"33666:2:81","nodeType":"YulTypedName","src":"33666:2:81","type":""}]},{"nativeSrc":"33716:24:81","nodeType":"YulVariableDeclaration","src":"33716:24:81","value":{"name":"deleteStart","nativeSrc":"33729:11:81","nodeType":"YulIdentifier","src":"33729:11:81"},"variables":[{"name":"start","nativeSrc":"33720:5:81","nodeType":"YulTypedName","src":"33720:5:81","type":""}]},{"body":{"nativeSrc":"33814:20:81","nodeType":"YulBlock","src":"33814:20:81","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"33823:5:81","nodeType":"YulIdentifier","src":"33823:5:81"},{"kind":"number","nativeSrc":"33830:1:81","nodeType":"YulLiteral","src":"33830:1:81","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"33816:6:81","nodeType":"YulIdentifier","src":"33816:6:81"},"nativeSrc":"33816:16:81","nodeType":"YulFunctionCall","src":"33816:16:81"},"nativeSrc":"33816:16:81","nodeType":"YulExpressionStatement","src":"33816:16:81"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"33764:5:81","nodeType":"YulIdentifier","src":"33764:5:81"},{"name":"_1","nativeSrc":"33771:2:81","nodeType":"YulIdentifier","src":"33771:2:81"}],"functionName":{"name":"lt","nativeSrc":"33761:2:81","nodeType":"YulIdentifier","src":"33761:2:81"},"nativeSrc":"33761:13:81","nodeType":"YulFunctionCall","src":"33761:13:81"},"nativeSrc":"33753:81:81","nodeType":"YulForLoop","post":{"nativeSrc":"33775:26:81","nodeType":"YulBlock","src":"33775:26:81","statements":[{"nativeSrc":"33777:22:81","nodeType":"YulAssignment","src":"33777:22:81","value":{"arguments":[{"name":"start","nativeSrc":"33790:5:81","nodeType":"YulIdentifier","src":"33790:5:81"},{"kind":"number","nativeSrc":"33797:1:81","nodeType":"YulLiteral","src":"33797:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"33786:3:81","nodeType":"YulIdentifier","src":"33786:3:81"},"nativeSrc":"33786:13:81","nodeType":"YulFunctionCall","src":"33786:13:81"},"variableNames":[{"name":"start","nativeSrc":"33777:5:81","nodeType":"YulIdentifier","src":"33777:5:81"}]}]},"pre":{"nativeSrc":"33757:3:81","nodeType":"YulBlock","src":"33757:3:81","statements":[]},"src":"33753:81:81"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"33429:3:81","nodeType":"YulIdentifier","src":"33429:3:81"},{"kind":"number","nativeSrc":"33434:2:81","nodeType":"YulLiteral","src":"33434:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"33426:2:81","nodeType":"YulIdentifier","src":"33426:2:81"},"nativeSrc":"33426:11:81","nodeType":"YulFunctionCall","src":"33426:11:81"},"nativeSrc":"33423:421:81","nodeType":"YulIf","src":"33423:421:81"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"33332:518:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"33385:5:81","nodeType":"YulTypedName","src":"33385:5:81","type":""},{"name":"len","nativeSrc":"33392:3:81","nodeType":"YulTypedName","src":"33392:3:81","type":""},{"name":"startIndex","nativeSrc":"33397:10:81","nodeType":"YulTypedName","src":"33397:10:81","type":""}],"src":"33332:518:81"},{"body":{"nativeSrc":"33940:81:81","nodeType":"YulBlock","src":"33940:81:81","statements":[{"nativeSrc":"33950:65:81","nodeType":"YulAssignment","src":"33950:65:81","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"33965:4:81","nodeType":"YulIdentifier","src":"33965:4:81"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33983:1:81","nodeType":"YulLiteral","src":"33983:1:81","type":"","value":"3"},{"name":"len","nativeSrc":"33986:3:81","nodeType":"YulIdentifier","src":"33986:3:81"}],"functionName":{"name":"shl","nativeSrc":"33979:3:81","nodeType":"YulIdentifier","src":"33979:3:81"},"nativeSrc":"33979:11:81","nodeType":"YulFunctionCall","src":"33979:11:81"},{"arguments":[{"kind":"number","nativeSrc":"33996:1:81","nodeType":"YulLiteral","src":"33996:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33992:3:81","nodeType":"YulIdentifier","src":"33992:3:81"},"nativeSrc":"33992:6:81","nodeType":"YulFunctionCall","src":"33992:6:81"}],"functionName":{"name":"shr","nativeSrc":"33975:3:81","nodeType":"YulIdentifier","src":"33975:3:81"},"nativeSrc":"33975:24:81","nodeType":"YulFunctionCall","src":"33975:24:81"}],"functionName":{"name":"not","nativeSrc":"33971:3:81","nodeType":"YulIdentifier","src":"33971:3:81"},"nativeSrc":"33971:29:81","nodeType":"YulFunctionCall","src":"33971:29:81"}],"functionName":{"name":"and","nativeSrc":"33961:3:81","nodeType":"YulIdentifier","src":"33961:3:81"},"nativeSrc":"33961:40:81","nodeType":"YulFunctionCall","src":"33961:40:81"},{"arguments":[{"kind":"number","nativeSrc":"34007:1:81","nodeType":"YulLiteral","src":"34007:1:81","type":"","value":"1"},{"name":"len","nativeSrc":"34010:3:81","nodeType":"YulIdentifier","src":"34010:3:81"}],"functionName":{"name":"shl","nativeSrc":"34003:3:81","nodeType":"YulIdentifier","src":"34003:3:81"},"nativeSrc":"34003:11:81","nodeType":"YulFunctionCall","src":"34003:11:81"}],"functionName":{"name":"or","nativeSrc":"33958:2:81","nodeType":"YulIdentifier","src":"33958:2:81"},"nativeSrc":"33958:57:81","nodeType":"YulFunctionCall","src":"33958:57:81"},"variableNames":[{"name":"used","nativeSrc":"33950:4:81","nodeType":"YulIdentifier","src":"33950:4:81"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"33855:166:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"33917:4:81","nodeType":"YulTypedName","src":"33917:4:81","type":""},{"name":"len","nativeSrc":"33923:3:81","nodeType":"YulTypedName","src":"33923:3:81","type":""}],"returnVariables":[{"name":"used","nativeSrc":"33931:4:81","nodeType":"YulTypedName","src":"33931:4:81","type":""}],"src":"33855:166:81"},{"body":{"nativeSrc":"34122:1203:81","nodeType":"YulBlock","src":"34122:1203:81","statements":[{"nativeSrc":"34132:24:81","nodeType":"YulVariableDeclaration","src":"34132:24:81","value":{"arguments":[{"name":"src","nativeSrc":"34152:3:81","nodeType":"YulIdentifier","src":"34152:3:81"}],"functionName":{"name":"mload","nativeSrc":"34146:5:81","nodeType":"YulIdentifier","src":"34146:5:81"},"nativeSrc":"34146:10:81","nodeType":"YulFunctionCall","src":"34146:10:81"},"variables":[{"name":"newLen","nativeSrc":"34136:6:81","nodeType":"YulTypedName","src":"34136:6:81","type":""}]},{"body":{"nativeSrc":"34199:22:81","nodeType":"YulBlock","src":"34199:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"34201:16:81","nodeType":"YulIdentifier","src":"34201:16:81"},"nativeSrc":"34201:18:81","nodeType":"YulFunctionCall","src":"34201:18:81"},"nativeSrc":"34201:18:81","nodeType":"YulExpressionStatement","src":"34201:18:81"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"34171:6:81","nodeType":"YulIdentifier","src":"34171:6:81"},{"kind":"number","nativeSrc":"34179:18:81","nodeType":"YulLiteral","src":"34179:18:81","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"34168:2:81","nodeType":"YulIdentifier","src":"34168:2:81"},"nativeSrc":"34168:30:81","nodeType":"YulFunctionCall","src":"34168:30:81"},"nativeSrc":"34165:56:81","nodeType":"YulIf","src":"34165:56:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"34274:4:81","nodeType":"YulIdentifier","src":"34274:4:81"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"34312:4:81","nodeType":"YulIdentifier","src":"34312:4:81"}],"functionName":{"name":"sload","nativeSrc":"34306:5:81","nodeType":"YulIdentifier","src":"34306:5:81"},"nativeSrc":"34306:11:81","nodeType":"YulFunctionCall","src":"34306:11:81"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"34280:25:81","nodeType":"YulIdentifier","src":"34280:25:81"},"nativeSrc":"34280:38:81","nodeType":"YulFunctionCall","src":"34280:38:81"},{"name":"newLen","nativeSrc":"34320:6:81","nodeType":"YulIdentifier","src":"34320:6:81"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"34230:43:81","nodeType":"YulIdentifier","src":"34230:43:81"},"nativeSrc":"34230:97:81","nodeType":"YulFunctionCall","src":"34230:97:81"},"nativeSrc":"34230:97:81","nodeType":"YulExpressionStatement","src":"34230:97:81"},{"nativeSrc":"34336:18:81","nodeType":"YulVariableDeclaration","src":"34336:18:81","value":{"kind":"number","nativeSrc":"34353:1:81","nodeType":"YulLiteral","src":"34353:1:81","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"34340:9:81","nodeType":"YulTypedName","src":"34340:9:81","type":""}]},{"nativeSrc":"34363:17:81","nodeType":"YulAssignment","src":"34363:17:81","value":{"kind":"number","nativeSrc":"34376:4:81","nodeType":"YulLiteral","src":"34376:4:81","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"34363:9:81","nodeType":"YulIdentifier","src":"34363:9:81"}]},{"cases":[{"body":{"nativeSrc":"34426:642:81","nodeType":"YulBlock","src":"34426:642:81","statements":[{"nativeSrc":"34440:35:81","nodeType":"YulVariableDeclaration","src":"34440:35:81","value":{"arguments":[{"name":"newLen","nativeSrc":"34459:6:81","nodeType":"YulIdentifier","src":"34459:6:81"},{"arguments":[{"kind":"number","nativeSrc":"34471:2:81","nodeType":"YulLiteral","src":"34471:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"34467:3:81","nodeType":"YulIdentifier","src":"34467:3:81"},"nativeSrc":"34467:7:81","nodeType":"YulFunctionCall","src":"34467:7:81"}],"functionName":{"name":"and","nativeSrc":"34455:3:81","nodeType":"YulIdentifier","src":"34455:3:81"},"nativeSrc":"34455:20:81","nodeType":"YulFunctionCall","src":"34455:20:81"},"variables":[{"name":"loopEnd","nativeSrc":"34444:7:81","nodeType":"YulTypedName","src":"34444:7:81","type":""}]},{"nativeSrc":"34488:49:81","nodeType":"YulVariableDeclaration","src":"34488:49:81","value":{"arguments":[{"name":"slot","nativeSrc":"34532:4:81","nodeType":"YulIdentifier","src":"34532:4:81"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"34502:29:81","nodeType":"YulIdentifier","src":"34502:29:81"},"nativeSrc":"34502:35:81","nodeType":"YulFunctionCall","src":"34502:35:81"},"variables":[{"name":"dstPtr","nativeSrc":"34492:6:81","nodeType":"YulTypedName","src":"34492:6:81","type":""}]},{"nativeSrc":"34550:10:81","nodeType":"YulVariableDeclaration","src":"34550:10:81","value":{"kind":"number","nativeSrc":"34559:1:81","nodeType":"YulLiteral","src":"34559:1:81","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"34554:1:81","nodeType":"YulTypedName","src":"34554:1:81","type":""}]},{"body":{"nativeSrc":"34630:165:81","nodeType":"YulBlock","src":"34630:165:81","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"34655:6:81","nodeType":"YulIdentifier","src":"34655:6:81"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"34673:3:81","nodeType":"YulIdentifier","src":"34673:3:81"},{"name":"srcOffset","nativeSrc":"34678:9:81","nodeType":"YulIdentifier","src":"34678:9:81"}],"functionName":{"name":"add","nativeSrc":"34669:3:81","nodeType":"YulIdentifier","src":"34669:3:81"},"nativeSrc":"34669:19:81","nodeType":"YulFunctionCall","src":"34669:19:81"}],"functionName":{"name":"mload","nativeSrc":"34663:5:81","nodeType":"YulIdentifier","src":"34663:5:81"},"nativeSrc":"34663:26:81","nodeType":"YulFunctionCall","src":"34663:26:81"}],"functionName":{"name":"sstore","nativeSrc":"34648:6:81","nodeType":"YulIdentifier","src":"34648:6:81"},"nativeSrc":"34648:42:81","nodeType":"YulFunctionCall","src":"34648:42:81"},"nativeSrc":"34648:42:81","nodeType":"YulExpressionStatement","src":"34648:42:81"},{"nativeSrc":"34707:24:81","nodeType":"YulAssignment","src":"34707:24:81","value":{"arguments":[{"name":"dstPtr","nativeSrc":"34721:6:81","nodeType":"YulIdentifier","src":"34721:6:81"},{"kind":"number","nativeSrc":"34729:1:81","nodeType":"YulLiteral","src":"34729:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"34717:3:81","nodeType":"YulIdentifier","src":"34717:3:81"},"nativeSrc":"34717:14:81","nodeType":"YulFunctionCall","src":"34717:14:81"},"variableNames":[{"name":"dstPtr","nativeSrc":"34707:6:81","nodeType":"YulIdentifier","src":"34707:6:81"}]},{"nativeSrc":"34748:33:81","nodeType":"YulAssignment","src":"34748:33:81","value":{"arguments":[{"name":"srcOffset","nativeSrc":"34765:9:81","nodeType":"YulIdentifier","src":"34765:9:81"},{"kind":"number","nativeSrc":"34776:4:81","nodeType":"YulLiteral","src":"34776:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34761:3:81","nodeType":"YulIdentifier","src":"34761:3:81"},"nativeSrc":"34761:20:81","nodeType":"YulFunctionCall","src":"34761:20:81"},"variableNames":[{"name":"srcOffset","nativeSrc":"34748:9:81","nodeType":"YulIdentifier","src":"34748:9:81"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"34584:1:81","nodeType":"YulIdentifier","src":"34584:1:81"},{"name":"loopEnd","nativeSrc":"34587:7:81","nodeType":"YulIdentifier","src":"34587:7:81"}],"functionName":{"name":"lt","nativeSrc":"34581:2:81","nodeType":"YulIdentifier","src":"34581:2:81"},"nativeSrc":"34581:14:81","nodeType":"YulFunctionCall","src":"34581:14:81"},"nativeSrc":"34573:222:81","nodeType":"YulForLoop","post":{"nativeSrc":"34596:21:81","nodeType":"YulBlock","src":"34596:21:81","statements":[{"nativeSrc":"34598:17:81","nodeType":"YulAssignment","src":"34598:17:81","value":{"arguments":[{"name":"i","nativeSrc":"34607:1:81","nodeType":"YulIdentifier","src":"34607:1:81"},{"kind":"number","nativeSrc":"34610:4:81","nodeType":"YulLiteral","src":"34610:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34603:3:81","nodeType":"YulIdentifier","src":"34603:3:81"},"nativeSrc":"34603:12:81","nodeType":"YulFunctionCall","src":"34603:12:81"},"variableNames":[{"name":"i","nativeSrc":"34598:1:81","nodeType":"YulIdentifier","src":"34598:1:81"}]}]},"pre":{"nativeSrc":"34577:3:81","nodeType":"YulBlock","src":"34577:3:81","statements":[]},"src":"34573:222:81"},{"body":{"nativeSrc":"34843:166:81","nodeType":"YulBlock","src":"34843:166:81","statements":[{"nativeSrc":"34861:43:81","nodeType":"YulVariableDeclaration","src":"34861:43:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"34888:3:81","nodeType":"YulIdentifier","src":"34888:3:81"},{"name":"srcOffset","nativeSrc":"34893:9:81","nodeType":"YulIdentifier","src":"34893:9:81"}],"functionName":{"name":"add","nativeSrc":"34884:3:81","nodeType":"YulIdentifier","src":"34884:3:81"},"nativeSrc":"34884:19:81","nodeType":"YulFunctionCall","src":"34884:19:81"}],"functionName":{"name":"mload","nativeSrc":"34878:5:81","nodeType":"YulIdentifier","src":"34878:5:81"},"nativeSrc":"34878:26:81","nodeType":"YulFunctionCall","src":"34878:26:81"},"variables":[{"name":"lastValue","nativeSrc":"34865:9:81","nodeType":"YulTypedName","src":"34865:9:81","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"34928:6:81","nodeType":"YulIdentifier","src":"34928:6:81"},{"arguments":[{"name":"lastValue","nativeSrc":"34940:9:81","nodeType":"YulIdentifier","src":"34940:9:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34967:1:81","nodeType":"YulLiteral","src":"34967:1:81","type":"","value":"3"},{"name":"newLen","nativeSrc":"34970:6:81","nodeType":"YulIdentifier","src":"34970:6:81"}],"functionName":{"name":"shl","nativeSrc":"34963:3:81","nodeType":"YulIdentifier","src":"34963:3:81"},"nativeSrc":"34963:14:81","nodeType":"YulFunctionCall","src":"34963:14:81"},{"kind":"number","nativeSrc":"34979:3:81","nodeType":"YulLiteral","src":"34979:3:81","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"34959:3:81","nodeType":"YulIdentifier","src":"34959:3:81"},"nativeSrc":"34959:24:81","nodeType":"YulFunctionCall","src":"34959:24:81"},{"arguments":[{"kind":"number","nativeSrc":"34989:1:81","nodeType":"YulLiteral","src":"34989:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34985:3:81","nodeType":"YulIdentifier","src":"34985:3:81"},"nativeSrc":"34985:6:81","nodeType":"YulFunctionCall","src":"34985:6:81"}],"functionName":{"name":"shr","nativeSrc":"34955:3:81","nodeType":"YulIdentifier","src":"34955:3:81"},"nativeSrc":"34955:37:81","nodeType":"YulFunctionCall","src":"34955:37:81"}],"functionName":{"name":"not","nativeSrc":"34951:3:81","nodeType":"YulIdentifier","src":"34951:3:81"},"nativeSrc":"34951:42:81","nodeType":"YulFunctionCall","src":"34951:42:81"}],"functionName":{"name":"and","nativeSrc":"34936:3:81","nodeType":"YulIdentifier","src":"34936:3:81"},"nativeSrc":"34936:58:81","nodeType":"YulFunctionCall","src":"34936:58:81"}],"functionName":{"name":"sstore","nativeSrc":"34921:6:81","nodeType":"YulIdentifier","src":"34921:6:81"},"nativeSrc":"34921:74:81","nodeType":"YulFunctionCall","src":"34921:74:81"},"nativeSrc":"34921:74:81","nodeType":"YulExpressionStatement","src":"34921:74:81"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"34814:7:81","nodeType":"YulIdentifier","src":"34814:7:81"},{"name":"newLen","nativeSrc":"34823:6:81","nodeType":"YulIdentifier","src":"34823:6:81"}],"functionName":{"name":"lt","nativeSrc":"34811:2:81","nodeType":"YulIdentifier","src":"34811:2:81"},"nativeSrc":"34811:19:81","nodeType":"YulFunctionCall","src":"34811:19:81"},"nativeSrc":"34808:201:81","nodeType":"YulIf","src":"34808:201:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"35029:4:81","nodeType":"YulIdentifier","src":"35029:4:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35043:1:81","nodeType":"YulLiteral","src":"35043:1:81","type":"","value":"1"},{"name":"newLen","nativeSrc":"35046:6:81","nodeType":"YulIdentifier","src":"35046:6:81"}],"functionName":{"name":"shl","nativeSrc":"35039:3:81","nodeType":"YulIdentifier","src":"35039:3:81"},"nativeSrc":"35039:14:81","nodeType":"YulFunctionCall","src":"35039:14:81"},{"kind":"number","nativeSrc":"35055:1:81","nodeType":"YulLiteral","src":"35055:1:81","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"35035:3:81","nodeType":"YulIdentifier","src":"35035:3:81"},"nativeSrc":"35035:22:81","nodeType":"YulFunctionCall","src":"35035:22:81"}],"functionName":{"name":"sstore","nativeSrc":"35022:6:81","nodeType":"YulIdentifier","src":"35022:6:81"},"nativeSrc":"35022:36:81","nodeType":"YulFunctionCall","src":"35022:36:81"},"nativeSrc":"35022:36:81","nodeType":"YulExpressionStatement","src":"35022:36:81"}]},"nativeSrc":"34419:649:81","nodeType":"YulCase","src":"34419:649:81","value":{"kind":"number","nativeSrc":"34424:1:81","nodeType":"YulLiteral","src":"34424:1:81","type":"","value":"1"}},{"body":{"nativeSrc":"35085:234:81","nodeType":"YulBlock","src":"35085:234:81","statements":[{"nativeSrc":"35099:14:81","nodeType":"YulVariableDeclaration","src":"35099:14:81","value":{"kind":"number","nativeSrc":"35112:1:81","nodeType":"YulLiteral","src":"35112:1:81","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"35103:5:81","nodeType":"YulTypedName","src":"35103:5:81","type":""}]},{"body":{"nativeSrc":"35148:67:81","nodeType":"YulBlock","src":"35148:67:81","statements":[{"nativeSrc":"35166:35:81","nodeType":"YulAssignment","src":"35166:35:81","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"35185:3:81","nodeType":"YulIdentifier","src":"35185:3:81"},{"name":"srcOffset","nativeSrc":"35190:9:81","nodeType":"YulIdentifier","src":"35190:9:81"}],"functionName":{"name":"add","nativeSrc":"35181:3:81","nodeType":"YulIdentifier","src":"35181:3:81"},"nativeSrc":"35181:19:81","nodeType":"YulFunctionCall","src":"35181:19:81"}],"functionName":{"name":"mload","nativeSrc":"35175:5:81","nodeType":"YulIdentifier","src":"35175:5:81"},"nativeSrc":"35175:26:81","nodeType":"YulFunctionCall","src":"35175:26:81"},"variableNames":[{"name":"value","nativeSrc":"35166:5:81","nodeType":"YulIdentifier","src":"35166:5:81"}]}]},"condition":{"name":"newLen","nativeSrc":"35129:6:81","nodeType":"YulIdentifier","src":"35129:6:81"},"nativeSrc":"35126:89:81","nodeType":"YulIf","src":"35126:89:81"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"35235:4:81","nodeType":"YulIdentifier","src":"35235:4:81"},{"arguments":[{"name":"value","nativeSrc":"35294:5:81","nodeType":"YulIdentifier","src":"35294:5:81"},{"name":"newLen","nativeSrc":"35301:6:81","nodeType":"YulIdentifier","src":"35301:6:81"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"35241:52:81","nodeType":"YulIdentifier","src":"35241:52:81"},"nativeSrc":"35241:67:81","nodeType":"YulFunctionCall","src":"35241:67:81"}],"functionName":{"name":"sstore","nativeSrc":"35228:6:81","nodeType":"YulIdentifier","src":"35228:6:81"},"nativeSrc":"35228:81:81","nodeType":"YulFunctionCall","src":"35228:81:81"},"nativeSrc":"35228:81:81","nodeType":"YulExpressionStatement","src":"35228:81:81"}]},"nativeSrc":"35077:242:81","nodeType":"YulCase","src":"35077:242:81","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"34399:6:81","nodeType":"YulIdentifier","src":"34399:6:81"},{"kind":"number","nativeSrc":"34407:2:81","nodeType":"YulLiteral","src":"34407:2:81","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"34396:2:81","nodeType":"YulIdentifier","src":"34396:2:81"},"nativeSrc":"34396:14:81","nodeType":"YulFunctionCall","src":"34396:14:81"},"nativeSrc":"34389:930:81","nodeType":"YulSwitch","src":"34389:930:81"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"34026:1299:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"34107:4:81","nodeType":"YulTypedName","src":"34107:4:81","type":""},{"name":"src","nativeSrc":"34113:3:81","nodeType":"YulTypedName","src":"34113:3:81","type":""}],"src":"34026:1299:81"},{"body":{"nativeSrc":"35366:121:81","nodeType":"YulBlock","src":"35366:121:81","statements":[{"nativeSrc":"35376:23:81","nodeType":"YulVariableDeclaration","src":"35376:23:81","value":{"arguments":[{"name":"y","nativeSrc":"35391:1:81","nodeType":"YulIdentifier","src":"35391:1:81"},{"kind":"number","nativeSrc":"35394:4:81","nodeType":"YulLiteral","src":"35394:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"35387:3:81","nodeType":"YulIdentifier","src":"35387:3:81"},"nativeSrc":"35387:12:81","nodeType":"YulFunctionCall","src":"35387:12:81"},"variables":[{"name":"y_1","nativeSrc":"35380:3:81","nodeType":"YulTypedName","src":"35380:3:81","type":""}]},{"body":{"nativeSrc":"35423:22:81","nodeType":"YulBlock","src":"35423:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"35425:16:81","nodeType":"YulIdentifier","src":"35425:16:81"},"nativeSrc":"35425:18:81","nodeType":"YulFunctionCall","src":"35425:18:81"},"nativeSrc":"35425:18:81","nodeType":"YulExpressionStatement","src":"35425:18:81"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"35418:3:81","nodeType":"YulIdentifier","src":"35418:3:81"}],"functionName":{"name":"iszero","nativeSrc":"35411:6:81","nodeType":"YulIdentifier","src":"35411:6:81"},"nativeSrc":"35411:11:81","nodeType":"YulFunctionCall","src":"35411:11:81"},"nativeSrc":"35408:37:81","nodeType":"YulIf","src":"35408:37:81"},{"nativeSrc":"35454:27:81","nodeType":"YulAssignment","src":"35454:27:81","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"35467:1:81","nodeType":"YulIdentifier","src":"35467:1:81"},{"kind":"number","nativeSrc":"35470:4:81","nodeType":"YulLiteral","src":"35470:4:81","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"35463:3:81","nodeType":"YulIdentifier","src":"35463:3:81"},"nativeSrc":"35463:12:81","nodeType":"YulFunctionCall","src":"35463:12:81"},{"name":"y_1","nativeSrc":"35477:3:81","nodeType":"YulIdentifier","src":"35477:3:81"}],"functionName":{"name":"mod","nativeSrc":"35459:3:81","nodeType":"YulIdentifier","src":"35459:3:81"},"nativeSrc":"35459:22:81","nodeType":"YulFunctionCall","src":"35459:22:81"},"variableNames":[{"name":"r","nativeSrc":"35454:1:81","nodeType":"YulIdentifier","src":"35454:1:81"}]}]},"name":"mod_t_uint8","nativeSrc":"35330:157:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"35351:1:81","nodeType":"YulTypedName","src":"35351:1:81","type":""},{"name":"y","nativeSrc":"35354:1:81","nodeType":"YulTypedName","src":"35354:1:81","type":""}],"returnVariables":[{"name":"r","nativeSrc":"35360:1:81","nodeType":"YulTypedName","src":"35360:1:81","type":""}],"src":"35330:157:81"},{"body":{"nativeSrc":"35539:89:81","nodeType":"YulBlock","src":"35539:89:81","statements":[{"body":{"nativeSrc":"35566:22:81","nodeType":"YulBlock","src":"35566:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"35568:16:81","nodeType":"YulIdentifier","src":"35568:16:81"},"nativeSrc":"35568:18:81","nodeType":"YulFunctionCall","src":"35568:18:81"},"nativeSrc":"35568:18:81","nodeType":"YulExpressionStatement","src":"35568:18:81"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"35559:5:81","nodeType":"YulIdentifier","src":"35559:5:81"}],"functionName":{"name":"iszero","nativeSrc":"35552:6:81","nodeType":"YulIdentifier","src":"35552:6:81"},"nativeSrc":"35552:13:81","nodeType":"YulFunctionCall","src":"35552:13:81"},"nativeSrc":"35549:39:81","nodeType":"YulIf","src":"35549:39:81"},{"nativeSrc":"35597:25:81","nodeType":"YulAssignment","src":"35597:25:81","value":{"arguments":[{"name":"value","nativeSrc":"35608:5:81","nodeType":"YulIdentifier","src":"35608:5:81"},{"arguments":[{"kind":"number","nativeSrc":"35619:1:81","nodeType":"YulLiteral","src":"35619:1:81","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35615:3:81","nodeType":"YulIdentifier","src":"35615:3:81"},"nativeSrc":"35615:6:81","nodeType":"YulFunctionCall","src":"35615:6:81"}],"functionName":{"name":"add","nativeSrc":"35604:3:81","nodeType":"YulIdentifier","src":"35604:3:81"},"nativeSrc":"35604:18:81","nodeType":"YulFunctionCall","src":"35604:18:81"},"variableNames":[{"name":"ret","nativeSrc":"35597:3:81","nodeType":"YulIdentifier","src":"35597:3:81"}]}]},"name":"decrement_t_uint256","nativeSrc":"35492:136:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"35521:5:81","nodeType":"YulTypedName","src":"35521:5:81","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"35531:3:81","nodeType":"YulTypedName","src":"35531:3:81","type":""}],"src":"35492:136:81"}]},"contents":"{\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_bytes4(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_bytes4(headStart)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        mcopy(add(pos, 0x20), add(value, 0x20), length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_available_length_string(src, length, end) -> array\n    {\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        array := abi_decode_available_length_string(add(offset, 0x20), calldataload(offset), end)\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$9796(headStart, dataEnd) -> value0, value1, value2\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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\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_contract_IERC4626(value)\n        value0 := value\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_enum_TargetStatus(value, pos)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_TargetStatus_$22999__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_TargetStatus(value0, headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_bytes_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, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, shl(224, 0xffffffff)))\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$9796t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_contract_IERC4626(value_4)\n        value4 := value_4\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$25555__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_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        value1 := abi_decode_available_length_string(add(_1, 32), calldataload(_1), dataEnd)\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$9796__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_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_bytes4(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        value1 := abi_decode_bytes4(add(headStart, 32))\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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_1, 32)\n        value2 := length\n    }\n    function abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(63)))\n            tail_2 := abi_encode_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_enum$_TargetStatus_$22999(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(lt(value_1, 4)) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_address_t_enum$_TargetStatus_$22999__to_t_address_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\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_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_struct$_TargetConfig_$23009_storage_ptr__to_t_struct$_TargetConfig_$23009_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        let slotValue := sload(value0)\n        mstore(headStart, and(slotValue, 0xffffffff))\n        abi_encode_enum_TargetStatus(and(shr(32, slotValue), 0xff), add(headStart, 32))\n        mstore(add(headStart, 0x40), and(shr(40, slotValue), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(shr(136, slotValue), 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), not(0xffffffffffffffffffffffff)))\n        mstore(add(pos, 20), and(value1, shl(224, 0xffffffff)))\n        end := add(pos, 24)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$11776_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_tuple_t_enum$_TargetStatus_$22999_t_enum$_TargetStatus_$22999__to_t_uint8_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_enum_TargetStatus(value0, headStart)\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$9796_t_contract$_IERC4626_$9796__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_add_t_int96(x, y) -> sum\n    {\n        sum := add(signextend(11, x), signextend(11, y))\n        if or(sgt(sum, 0x7fffffffffffffffffffffff), slt(sum, not(0x7fffffffffffffffffffffff))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), signextend(11, value4))\n    }\n    function abi_decode_tuple_t_contract$_IAccessManager_$9511_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), value1)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffff))\n        if lt(len, 20)\n        {\n            value := and(and(_1, shl(shl(3, sub(20, len)), not(0xffffffffffffffffffffffff))), not(0xffffffffffffffffffffffff))\n        }\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffff)\n        if eq(value_1, 0xffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function mod_t_uint32(x, y) -> r\n    {\n        let y_1 := and(y, 0xffffffff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xffffffff), y_1)\n    }\n    function checked_mul_t_uint32(x, y) -> product\n    {\n        let product_raw := mul(and(x, 0xffffffff), and(y, 0xffffffff))\n        product := and(product_raw, 0xffffffff)\n        if iszero(eq(product, product_raw)) { panic_error_0x11() }\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n    function mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xff), y_1)\n    }\n    function decrement_t_uint256(value) -> ret\n    {\n        if iszero(value) { panic_error_0x11() }\n        ret := add(value, not(0))\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"4775":[{"length":32,"start":1784},{"length":32,"start":1981},{"length":32,"start":14840}],"5182":[{"length":32,"start":13198},{"length":32,"start":13239},{"length":32,"start":13530}],"22991":[{"length":32,"start":1681},{"length":32,"start":4066},{"length":32,"start":5184},{"length":32,"start":5570},{"length":32,"start":7722},{"length":32,"start":8391},{"length":32,"start":8535},{"length":32,"start":9084},{"length":32,"start":10046},{"length":32,"start":10231},{"length":32,"start":11157},{"length":32,"start":14477},{"length":32,"start":14626}]},"linkReferences":{},"object":"60806040526004361061037c575f3560e01c806382dbbd71116101d3578063c0c51217116100fd578063d6281d3e1161009d578063e8e617b71161006d578063e8e617b714610ad6578063ee07abbb14610af5578063ef8b30f7146109c8578063f7a3933314610b14575f5ffd5b8063d6281d3e14610a4d578063d905777e14610a6c578063dd62ed3e14610a8b578063e77659fd14610aaa575f5ffd5b8063c8030873116100d8578063c8030873146109e7578063cc671a18146109fb578063ce96cb7714610a0f578063d336078c14610a2e575f5ffd5b8063c0c51217146109a9578063c63d75b614610663578063c6e6f592146109c8575f5ffd5b8063a9ed148711610173578063b460af9411610143578063b460af941461092d578063ba0876521461094c578063bdb5371d1461096b578063bfdb20da1461098a575f5ffd5b8063a9ed1487146108a4578063ac860f74146108bf578063ad3cb1cc146108de578063b3d7f6b91461090e575f5ffd5b806395d89b41116101ae57806395d89b411461083e578063a3ac939014610852578063a7f8a5e214610871578063a9059cbb14610885575f5ffd5b806382dbbd71146107e157806386b440831461080057806394bf804d1461081f575f5ffd5b8063313ce567116102b45780634f1ef286116102545780636e553f65116102245780636e553f651461074757806370a0823114610766578063759076e5146107855780637da0a877146107af575f5ffd5b80634f1ef286146106b557806352d1902d146106c8578063572b6c05146106dc5780635ee0c7dd14610728575f5ffd5b80633edeb2571161028f5780633edeb25714610637578063402d267d146106635780634cdad506146104185780634d15eb0314610683575f5ffd5b8063313ce567146105c657806333bded3c146105ec57806338d52e0f1461060b575f5ffd5b8063095ea7b31161031f57806318160ddd116102fa57806318160ddd14610536578063194448e514610569578063225c531e1461058857806323b872dd146105a7575f5ffd5b8063095ea7b3146104c05780630a28a477146104df578063150b7a02146104fe575f5ffd5b8063077f224a1161035a578063077f224a146103f757806307a2d13a1461041857806308742d9014610437578063091ea8a614610456575f5ffd5b806301e1d1141461038057806301ffc9a7146103a757806306fdde03146103d6575b5f5ffd5b34801561038b575f5ffd5b50610394610b33565b6040519081526020015b60405180910390f35b3480156103b2575f5ffd5b506103c66103c13660046144be565b610c75565b604051901515815260200161039e565b3480156103e1575f5ffd5b506103ea610d32565b60405161039e9190614505565b348015610402575f5ffd5b506104166104113660046145d2565b610df2565b005b348015610423575f5ffd5b50610394610432366004614648565b610f02565b348015610442575f5ffd5b50610416610451366004614670565b610f0d565b348015610461575f5ffd5b506104b36104703660046146a7565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b60405161039e91906146f6565b3480156104cb575f5ffd5b506103c66104da366004614704565b610fa9565b3480156104ea575f5ffd5b506103946104f9366004614648565b610fca565b348015610509575f5ffd5b5061051d610518366004614772565b610fd6565b6040516001600160e01b0319909116815260200161039e565b348015610541575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254610394565b348015610574575f5ffd5b506104166105833660046147ec565b611045565b348015610593575f5ffd5b506104166105a2366004614818565b611168565b3480156105b2575f5ffd5b506103c66105c136600461487c565b61128c565b3480156105d1575f5ffd5b506105da6112bb565b60405160ff909116815260200161039e565b3480156105f7575f5ffd5b506103ea6106063660046148ba565b6112e4565b348015610616575f5ffd5b5061061f61156a565b6040516001600160a01b03909116815260200161039e565b348015610642575f5ffd5b5061064e63ffffffff81565b60405163ffffffff909116815260200161039e565b34801561066e575f5ffd5b5061039461067d3660046146a7565b505f1990565b34801561068e575f5ffd5b507f000000000000000000000000000000000000000000000000000000000000000061061f565b6104166106c336600461490a565b611585565b3480156106d3575f5ffd5b5061039461159b565b3480156106e7575f5ffd5b506103c66106f63660046146a7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b348015610733575f5ffd5b5061051d610742366004614969565b6115b6565b348015610752575f5ffd5b506103946107613660046149ac565b61161f565b348015610771575f5ffd5b506103946107803660046146a7565b611649565b348015610790575f5ffd5b505f5160206152ab5f395f51905f5254600160a01b9004600b0b610394565b3480156107ba575f5ffd5b507f000000000000000000000000000000000000000000000000000000000000000061061f565b3480156107ec575f5ffd5b506104166107fb3660046149cf565b61166f565b34801561080b575f5ffd5b506103ea61081a3660046148ba565b611762565b34801561082a575f5ffd5b506103946108393660046149ac565b611883565b348015610849575f5ffd5b506103ea6118a5565b34801561085d575f5ffd5b5061039461086c366004614a1d565b6118e3565b34801561087c575f5ffd5b5061061f611937565b348015610890575f5ffd5b506103c661089f366004614704565b611956565b3480156108af575f5ffd5b5061051d6001600160e01b031981565b3480156108ca575f5ffd5b506104166108d9366004614648565b61196d565b3480156108e9575f5ffd5b506103ea604051806040016040528060058152602001640352e302e360dc1b81525081565b348015610919575f5ffd5b50610394610928366004614648565b611a32565b348015610938575f5ffd5b50610394610947366004614a5a565b611a3e565b348015610957575f5ffd5b50610394610966366004614a5a565b611a9b565b348015610976575f5ffd5b50610416610985366004614a8e565b611aef565b348015610995575f5ffd5b506104166109a4366004614ac0565b611bd9565b3480156109b4575f5ffd5b5061051d6109c3366004614aee565b611dc5565b3480156109d3575f5ffd5b506103946109e2366004614648565b611e11565b3480156109f2575f5ffd5b50610416611e1c565b348015610a06575f5ffd5b5061039461221a565b348015610a1a575f5ffd5b50610394610a293660046146a7565b6122a6565b348015610a39575f5ffd5b50610416610a48366004614648565b6122c0565b348015610a58575f5ffd5b5061051d610a67366004614969565b612370565b348015610a77575f5ffd5b50610394610a863660046146a7565b612480565b348015610a96575f5ffd5b50610394610aa5366004614b21565b612498565b348015610ab5575f5ffd5b50610ac9610ac4366004614b4d565b6124e1565b60405161039e9190614bce565b348015610ae1575f5ffd5b5061051d610af036600461487c565b6127eb565b348015610b00575f5ffd5b50610ac9610b0f366004614b4d565b612853565b348015610b1f575f5ffd5b50610416610b2e366004614c31565b612a4d565b5f5f5160206152ab5f395f51905f52610b4a612b0c565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610b98573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bbc9190614c60565b6040518263ffffffff1660e01b8152600401610bda91815260200190565b602060405180830381865afa158015610bf5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c199190614c60565b610c239083614c8b565b81549092505f600160a01b909104600b0b1215610c5f578054610c4f90600160a01b9004600b0b614c9e565b610c599083614cb8565b91505090565b8054610c5990600160a01b9004600b0b83614c8b565b5f6001600160e01b03198216630a85bd0160e11b1480610ca557506001600160e01b03198216633ece0a8960e01b145b80610cc057506001600160e01b03198216635ee0c7dd60e01b145b80610cdb57506001600160e01b031982166336372b0760e01b145b80610cf657506001600160e01b0319821663a219a02560e01b145b80610d1157506001600160e01b0319821663043eff2d60e51b145b80610d2c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f51602061526b5f395f51905f5291610d7090614ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9c90614ccb565b8015610de75780601f10610dbe57610100808354040283529160200191610de7565b820191905f5260205f20905b815481529060010190602001808311610dca57829003601f168201915b505050505091505090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015610e365750825b90505f826001600160401b03166001148015610e515750303b155b905081158015610e5f575080155b15610e7d5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ea757845460ff60401b1916600160401b1785555b610eb2888888612b82565b8315610ef857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610d2c825f612c31565b8063ffffffff165f03610f335760405163294da6c760e21b815260040160405180910390fd5b5f610f3d83612c88565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f610fb3612d20565b9050610fc0818585612d29565b5060019392505050565b5f610d2c826001612d36565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146110325760405163950d88bf60e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b50630a85bd0160e11b9695505050505050565b5f5f5160206152ab5f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa1580156110a6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ca9190614c60565b6040518263ffffffff1660e01b81526004016110e891815260200190565b602060405180830381865afa158015611103573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111279190614c60565b90508061113382612d84565b148061113c5750825b6111595760405163292d4c4b60e11b815260040160405180910390fd5b61116284612e7d565b50505050565b61117185612c88565b505f61118786868661118287613012565b613042565b905082815f8113156111b557604051630c97a6bf60e41b815260048101929092526024820152604401611029565b50505f6111c0612b0c565b905083811015611204576111d48185614cb8565b6111e66111e18387614cb8565b612d84565b146112045760405163af8075e960e01b815260040160405180910390fd5b611221838561121161156a565b6001600160a01b03169190613141565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f611296612d20565b90506112a38582856131a0565b6112ae8585856131eb565b60019150505b9392505050565b5f805f5160206152cb5f395f51905f5290505f8154610c599190600160a01b900460ff16614d03565b6060835f6112f182612c88565b905060018154600160201b900460ff166003811115611312576113126146c2565b82548492600160201b90910460ff16911461134257604051630e851c7960e31b8152600401611029929190614d1c565b50505f61134d612b0c565b8254909150600160881b90046001600160601b031681101561139657815461138a906111e1908390600160881b90046001600160601b0316614cb8565b50611393612b0c565b90505b6113bd6113a1612d20565b886113af60045f8a8c614d39565b6113b891614d60565b613248565b61140686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b169291505061334a565b93505f8480602001905181019061141d9190614c60565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611485573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a99190614d98565b6001600160a01b0316146114d1576114d16114c2612d20565b896001600160e01b0319613248565b505f6114db612b0c565b90508181101561155f5782545f9061151190869063ffffffff166114ff8142613357565b61118261150c8789614cb8565b613012565b84549091508190600160281b90046001600160601b03168082131561155b5760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611029565b5050505b505050509392505050565b5f5160206152cb5f395f51905f52546001600160a01b031690565b61158d613383565b6115978282613413565b5050565b5f6115a46134cf565b505f51602061528b5f395f51905f5290565b5f336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016811461160d5760405163950d88bf60e01b81526001600160a01b039091166004820152602401611029565b50635ee0c7dd60e01b95945050505050565b5f5f195f61162c85611e11565b9050611641611639612d20565b858784613518565b949350505050565b6001600160a01b03165f9081525f51602061526b5f395f51905f52602052604090205490565b61167884612c88565b505f61169285858561168986613012565b61118290614c9e565b905081815f8112156116c05760405163239de57160e11b815260048101929092526024820152604401611029565b50506116e86116cd612d20565b30846116d761156a565b6001600160a01b03169291906135a4565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c8585858561171f612d20565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b6060835f61176f82612c88565b905060018154600160201b900460ff166003811115611790576117906146c2565b14806117b8575060028154600160201b900460ff1660038111156117b6576117b66146c2565b145b81548391600160201b90910460ff16906117e757604051630e851c7960e31b8152600401611029929190614d1c565b50505f6117f2612b0c565b90506117ff6113a1612d20565b61184886868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b169291505061334a565b93505f611853612b0c565b90508181101561155f576118678183614cb8565b6040516351f5977560e11b815260040161102991815260200190565b5f5f195f61189085611a32565b905061164161189d612d20565b858388613518565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f51602061526b5f395f51905f5291610d7090614ccb565b5f5f5160206152ab5f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af028261191f8787876135dd565b81526020019081526020015f20549150509392505050565b5f5f5160206152ab5f395f51905f525b546001600160a01b0316919050565b5f5f611960612d20565b9050610fc08185856131eb565b5f1981036119845761197d612b0c565b90506119ac565b61198c612b0c565b8111156119ac5760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206152ab5f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af1158015611a09573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a2d9190614c60565b505050565b5f610d2c826001612c31565b5f5f611a49836122a6565b905080851115611a7257828582604051633fa733bb60e21b815260040161102993929190614db3565b5f611a7c86610fca565b9050611a92611a89612d20565b86868985613625565b95945050505050565b5f5f611aa683612480565b905080851115611acf57828582604051632e52afbb60e21b815260040161102993929190614db3565b5f611ad986610f02565b9050611a92611ae6612d20565b8686848a613625565b5f611af984612c88565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a2611b7383613778565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155611ba982613778565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206152ab5f395f51905f529290600160201b900460ff166003811115611c3c57611c3c6146c2565b14611c5a5760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03611c805760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101611ca686613778565b6001600160601b03168152602001611cbd85613778565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115611d2457611d246146c2565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90611db5908490614dd4565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f906112b490603801604051602081830303815290604052805190602001205f6137ab565b5f610d2c825f612d36565b5f611e2561156a565b90505f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e84573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea89190614d98565b9050806001600160a01b0316826001600160a01b031603611edc5760405163252fa83d60e21b815260040160405180910390fd5b611ee4612b0c565b15611f025760405163902dd39b60e01b815260040160405180910390fd5b5f5160206152ab5f395f51905f528054604080516338d52e0f60e01b815290516001600160a01b038581169316916338d52e0f9160048083019260209291908290030181865afa158015611f58573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7c9190614d98565b6001600160a01b031614611fa35760405163233f856360e11b815260040160405180910390fd5b5f5f5160206152cb5f395f51905f5280546001600160a01b0319166001600160a01b03858116919091178255835460405163095ea7b360e01b815290821660048201525f602482015291925085169063095ea7b3906044016020604051808303815f875af1158015612017573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061203b9190614e24565b50815460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529084169063095ea7b3906044016020604051808303815f875af115801561208b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120af9190614e24565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f602483015285169063095ea7b3906044016020604051808303815f875af115801561211b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061213f9190614e24565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f19602483015284169063095ea7b3906044016020604051808303815f875af11580156121ac573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d09190614e24565b50604080516001600160a01b038087168252851660208201527f37465ce4c247e78514460560da0bcc785fff559503ce6c3d87a6e84352437392910160405180910390a150505050565b5f805f5160206152ab5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612270573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122949190614c60565b61229c612b0c565b610c599190614c8b565b5f610d2c6122b3836137e3565b6122bb61221a565b6137f6565b5f198103612345575f5f5160206152ab5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561231d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123419190614c60565b9150505b8061234f82612d84565b1461236d5760405163af8075e960e01b815260040160405180910390fd5b50565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146123c75760405163950d88bf60e01b81526001600160a01b039091166004820152602401611029565b505f6123d286612c88565b905060018154600160201b900460ff1660038111156123f3576123f36146c2565b148061241b575060028154600160201b900460ff166003811115612419576124196146c2565b145b81548791600160201b90910460ff169061244a57604051630e851c7960e31b8152600401611029929190614d1c565b5050805461246d90879063ffffffff166124648142613357565b61168987613012565b50636b140e9f60e11b9695505050505050565b5f610d2c61248d83613805565b6122bb6109e261221a565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6060835f6124ee82612c88565b905060018154600160201b900460ff16600381111561250f5761250f6146c2565b82548492600160201b90910460ff16911461253f57604051630e851c7960e31b8152600401611029929190614d1c565b50505f61254a612b0c565b8254909150600160881b90046001600160601b0316811015612593578154612587906111e1908390600160881b90046001600160601b0316614cb8565b50612590612b0c565b90505b5f80866001600160401b038111156125ad576125ad614517565b6040519080825280602002602001820160405280156125e057816020015b60608152602001906001900390816125cb5790505b5095505f5b878110156127df575f89898381811061260057612600614e3f565b90506020028101906126129190614e53565b612620916004915f91614d39565b61262991614d60565b905081158061264557506001600160e01b031981811690851614155b156126605761265c612655612d20565b8c83613248565b8093505b6126cb8a8a8481811061267557612675614e3f565b90506020028101906126879190614e53565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f169291505061334a565b8883815181106126dd576126dd614e3f565b6020026020010181905250826127d6575f88838151811061270057612700614e3f565b602002602001015180602001905181019061271b9190614c60565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015612783573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127a79190614d98565b6001600160a01b0316146127d4576127cf6127c0612d20565b8d6001600160e01b0319613248565b600193505b505b506001016125e5565b5050505f6114db612b0c565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146128425760405163950d88bf60e01b81526001600160a01b039091166004820152602401611029565b5063e8e617b760e01b949350505050565b6060835f61286082612c88565b905060018154600160201b900460ff166003811115612881576128816146c2565b14806128a9575060028154600160201b900460ff1660038111156128a7576128a76146c2565b145b81548391600160201b90910460ff16906128d857604051630e851c7960e31b8152600401611029929190614d1c565b50505f6128e3612b0c565b90505f856001600160401b038111156128fe576128fe614517565b60405190808252806020026020018201604052801561293157816020015b606081526020019060019003908161291c5790505b5094505f5b86811015612a42575f88888381811061295157612951614e3f565b90506020028101906129639190614e53565b612971916004915f91614d39565b61297a91614d60565b905081158061299657506001600160e01b031981811690841614155b156129b1576129ad6129a6612d20565b8b83613248565b8092505b612a1c8989848181106129c6576129c6614e3f565b90506020028101906129d89190614e53565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e169291505061334a565b878381518110612a2e57612a2e614e3f565b602090810291909101015250600101612936565b50505f611853612b0c565b5f816003811115612a6057612a606146c2565b03612a7e57604051635e64536560e11b815260040160405180910390fd5b5f612a8883612c88565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff1684604051612ad5929190614e95565b60405180910390a280548290829064ff000000001916600160201b836003811115612b0257612b026146c2565b0217905550505050565b5f612b1561156a565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015612b59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b7d9190614c60565b905090565b612b8a61380f565b612b92613858565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bef573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c139190614d98565b9050612c1e81613860565b612c288484613871565b61116282613883565b5f6112b4612c3d610b33565b612c48906001614c8b565b612c535f600a614f93565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612c7f9190614c8b565b859190856139a7565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206152ab5f395f51905f5291600160201b900460ff166003811115612cec57612cec6146c2565b14158390612d1957604051632dad902160e01b81526001600160a01b039091166004820152602401611029565b5050919050565b5f612b7d6139e9565b611a2d8383836001613a5c565b5f6112b4612d4582600a614f93565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612d719190614c8b565b612d79610b33565b612c7f906001614c8b565b5f805f5160206152ab5f395f51905f52805460405163ce96cb7760e01b8152306004820152919250612e049185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612de0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122bb9190614c60565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015612e59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d199190614c60565b6001600160a01b038116612ea4576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206152ab5f395f51905f5280546001600160a01b038381166001600160a01b03198316178355168015612f4f57612edc61156a565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af1158015612f29573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f4d9190614e24565b505b612f5761156a565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015612fa5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc99190614e24565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a910160405180910390a1505050565b5f6001600160ff1b0382111561303e5760405163123baf0360e11b815260048101839052602401611029565b5090565b5f5f5160206152ab5f395f51905f528161305d8787876135dd565b905083826002015f8381526020019081526020015f205f8282546130819190614fa1565b9182905550835490945085915083906014906130a8908490600160a01b9004600b0b614fc8565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6040516001600160a01b03838116602483015260448201839052611a2d91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050613b37565b5f6131ab8484612498565b90505f1981101561116257818110156131dd57828183604051637dc7a0d960e11b815260040161102993929190614db3565b61116284848484035f613a5c565b6001600160a01b03831661321457604051634b637e8f60e11b81525f6004820152602401611029565b6001600160a01b03821661323d5760405163ec442f0560e01b81525f6004820152602401611029565b611a2d838383613ba3565b5f6132538383611dc5565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa158015613292573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132b69190614d98565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b81526004016132e593929190614fff565b6040805180830381865afa1580156132ff573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613323919061502c565b50905084848383610ef85760405163c294136d60e01b815260040161102993929190614fff565b60606112b483835f613cc9565b5f63ffffffff8381161461337a5761337563ffffffff84168361506d565b6112b4565b6112b482613d69565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806133f357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166133e7613e46565b6001600160a01b031614155b156134115760405163703e46dd60e11b815260040160405180910390fd5b565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561346d575060408051601f3d908101601f1916820190925261346a91810190614c60565b60015b61349557604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611029565b5f51602061528b5f395f51905f5281146134c557604051632a87526960e21b815260048101829052602401611029565b611a2d8383613e5a565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146134115760405163703e46dd60e11b815260040160405180910390fd5b5f5160206152cb5f395f51905f52805461353d906001600160a01b03168630866135a4565b6135478483613eaf565b836001600160a01b0316856001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78585604051613595929190918252602082015260400190565b60405180910390a35050505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526111629186918216906323b872dd9060840161316e565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b5f61362e612b0c565b905082811015613763575f5f5160206152ab5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561368d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b19190614c60565b6136bb8386614cb8565b11156136da5760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af946136f48487614cb8565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af115801561373c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137609190614c60565b50505b6137708686868686613ee3565b505050505050565b5f6001600160601b0382111561303e576040516306dfcc6560e41b81526060600482015260248101839052604401611029565b5f601c8260ff1611156137d157604051631dd4bb1b60e11b815260040160405180910390fd5b506008021b6001600160e01b03191690565b5f610d2c6137f083611649565b5f612c31565b5f8282188284100282186112b4565b5f610d2c82611649565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661341157604051631afcd79f60e31b815260040160405180910390fd5b61341161380f565b61386861380f565b61236d81613f97565b61387961380f565b6115978282614007565b61388b61380f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061390b9190614d98565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015613979573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061399d9190614e24565b5061236d81612e7d565b5f6139d46139b483614057565b80156139cf57505f84806139ca576139ca615059565b868809115b151590565b6139df868686614083565b611a929190614c8b565b5f366014336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015613a255750808210155b15613a54575f36613a368385614cb8565b613a41928290614d39565b613a4a91615080565b60601c9250505090565b339250505090565b5f51602061526b5f395f51905f526001600160a01b038516613a935760405163e602df0560e01b81525f6004820152602401611029565b6001600160a01b038416613abc57604051634a1406b160e11b81525f6004820152602401611029565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613b3057836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161359591815260200190565b5050505050565b5f5f60205f8451602086015f885af180613b56576040513d5f823e3d81fd5b50505f513d91508115613b6d578060011415613b7a565b6001600160a01b0384163b155b1561116257604051635274afe760e01b81526001600160a01b0385166004820152602401611029565b5f51602061526b5f395f51905f526001600160a01b038416613bdd5781816002015f828254613bd29190614c8b565b90915550613c3a9050565b6001600160a01b0384165f9081526020829052604090205482811015613c1c5784818460405163391434e360e21b815260040161102993929190614db3565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b038316613c58576002810180548390039055613c76565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613cbb91815260200190565b60405180910390a350505050565b606081471015613cf55760405163cf47918160e01b815247600482015260248101839052604401611029565b5f5f856001600160a01b03168486604051613d1091906150b6565b5f6040518083038185875af1925050503d805f8114613d4a576040519150601f19603f3d011682016040523d82523d5f602084013e613d4f565b606091505b5091509150613d5f868383614139565b9695505050505050565b6107e95f8062015180613d80636774858086614cb8565b613d8a919061506d565b90505b81613d9a5761016d613d9e565b61016e5b61ffff168110613e215781613db55761016d613db9565b61016e5b613dc79061ffff1682614cb8565b9050613dd2836150cc565b9250613ddf6004846150f0565b63ffffffff16158015613e1a5750613df86064846150f0565b63ffffffff16151580613e1a5750613e12610190846150f0565b63ffffffff16155b9150613d8d565b613e2b8183614190565b613e36846064615117565b63ffffffff166116419190614c8b565b5f5f51602061528b5f395f51905f52611947565b613e6382614273565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613ea757611a2d82826142d6565b61159761433f565b6001600160a01b038216613ed85760405163ec442f0560e01b81525f6004820152602401611029565b6115975f8383613ba3565b5f5160206152cb5f395f51905f526001600160a01b0386811690851614613f0f57613f0f8487846131a0565b613f19848361435e565b8054613f2f906001600160a01b03168685613141565b836001600160a01b0316856001600160a01b0316876001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8686604051613f87929190918252602082015260400190565b60405180910390a4505050505050565b613f9f61380f565b5f5160206152cb5f395f51905f525f80613fb884614392565b9150915081613fc8576012613fca565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b61400f61380f565b5f51602061526b5f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614048848261517a565b5060048101611162838261517a565b5f600282600381111561406c5761406c6146c2565b6140769190615234565b60ff166001149050919050565b5f838302815f1985870982811083820303915050805f036140b7578382816140ad576140ad615059565b04925050506112b4565b8084116140ce576140ce6003851502601118614468565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6060826141495761337582614479565b815115801561416057506001600160a01b0384163b155b1561418957604051639996b31560e01b81526001600160a01b0385166004820152602401611029565b50806112b4565b5f601f8310156141a257506001610d2c565b81156141cb57603c8310156141b957506002610d2c565b826141c381615255565b9350506141dc565b603b8310156141dc57506002610d2c565b605a8310614266576078831061425f57609783106142585760b583106142515760d4831061424a5760f3831061424357610111831061423c5761013083106142355761014e831061422e57600c614269565b600b614269565b600a614269565b6009614269565b6008614269565b6007614269565b6006614269565b6005614269565b6004614269565b60035b60ff169392505050565b806001600160a01b03163b5f036142a857604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611029565b5f51602061528b5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b0316846040516142f291906150b6565b5f60405180830381855af49150503d805f811461432a576040519150601f19603f3d011682016040523d82523d5f602084013e61432f565b606091505b5091509150611a92858383614139565b34156134115760405163b398979f60e01b815260040160405180910390fd5b6001600160a01b03821661438757604051634b637e8f60e11b81525f6004820152602401611029565b611597825f83613ba3565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b17905290515f918291829182916001600160a01b038716916143d8916150b6565b5f60405180830381855afa9150503d805f8114614410576040519150601f19603f3d011682016040523d82523d5f602084013e614415565b606091505b509150915081801561442957506020815110155b1561445c575f818060200190518101906144439190614c60565b905060ff811161445a576001969095509350505050565b505b505f9485945092505050565b634e487b715f52806020526024601cfd5b8051156144895780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b80356001600160e01b0319811681146144b9575f5ffd5b919050565b5f602082840312156144ce575f5ffd5b6112b4826144a2565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6112b460208301846144d7565b634e487b7160e01b5f52604160045260245ffd5b5f5f6001600160401b0384111561454457614544614517565b50604051601f19601f85018116603f011681018181106001600160401b038211171561457257614572614517565b604052838152905080828401851015614589575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f8301126145af575f5ffd5b6112b48383356020850161452b565b6001600160a01b038116811461236d575f5ffd5b5f5f5f606084860312156145e4575f5ffd5b83356001600160401b038111156145f9575f5ffd5b614605868287016145a0565b93505060208401356001600160401b03811115614620575f5ffd5b61462c868287016145a0565b925050604084013561463d816145be565b809150509250925092565b5f60208284031215614658575f5ffd5b5035919050565b63ffffffff8116811461236d575f5ffd5b5f5f60408385031215614681575f5ffd5b823561468c816145be565b9150602083013561469c8161465f565b809150509250929050565b5f602082840312156146b7575f5ffd5b81356112b4816145be565b634e487b7160e01b5f52602160045260245ffd5b600481106146f257634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610d2c82846146d6565b5f5f60408385031215614715575f5ffd5b8235614720816145be565b946020939093013593505050565b5f5f83601f84011261473e575f5ffd5b5081356001600160401b03811115614754575f5ffd5b60208301915083602082850101111561476b575f5ffd5b9250929050565b5f5f5f5f5f60808688031215614786575f5ffd5b8535614791816145be565b945060208601356147a1816145be565b93506040860135925060608601356001600160401b038111156147c2575f5ffd5b6147ce8882890161472e565b969995985093965092949392505050565b801515811461236d575f5ffd5b5f5f604083850312156147fd575f5ffd5b8235614808816145be565b9150602083013561469c816147df565b5f5f5f5f5f60a0868803121561482c575f5ffd5b8535614837816145be565b945060208601356148478161465f565b935060408601356148578161465f565b925060608601359150608086013561486e816145be565b809150509295509295909350565b5f5f5f6060848603121561488e575f5ffd5b8335614899816145be565b925060208401356148a9816145be565b929592945050506040919091013590565b5f5f5f604084860312156148cc575f5ffd5b83356148d7816145be565b925060208401356001600160401b038111156148f1575f5ffd5b6148fd8682870161472e565b9497909650939450505050565b5f5f6040838503121561491b575f5ffd5b8235614926816145be565b915060208301356001600160401b03811115614940575f5ffd5b8301601f81018513614950575f5ffd5b61495f8582356020840161452b565b9150509250929050565b5f5f5f5f6080858703121561497c575f5ffd5b8435614987816145be565b93506020850135614997816145be565b93969395505050506040820135916060013590565b5f5f604083850312156149bd575f5ffd5b82359150602083013561469c816145be565b5f5f5f5f608085870312156149e2575f5ffd5b84356149ed816145be565b935060208501356149fd8161465f565b92506040850135614a0d8161465f565b9396929550929360600135925050565b5f5f5f60608486031215614a2f575f5ffd5b8335614a3a816145be565b92506020840135614a4a8161465f565b9150604084013561463d8161465f565b5f5f5f60608486031215614a6c575f5ffd5b833592506020840135614a7e816145be565b9150604084013561463d816145be565b5f5f5f60608486031215614aa0575f5ffd5b8335614aab816145be565b95602085013595506040909401359392505050565b5f5f5f5f60808587031215614ad3575f5ffd5b8435614ade816145be565b935060208501356149978161465f565b5f5f60408385031215614aff575f5ffd5b8235614b0a816145be565b9150614b18602084016144a2565b90509250929050565b5f5f60408385031215614b32575f5ffd5b8235614b3d816145be565b9150602083013561469c816145be565b5f5f5f60408486031215614b5f575f5ffd5b8335614b6a816145be565b925060208401356001600160401b03811115614b84575f5ffd5b8401601f81018613614b94575f5ffd5b80356001600160401b03811115614ba9575f5ffd5b8660208260051b8401011115614bbd575f5ffd5b939660209190910195509293505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015614c2557603f19878603018452614c108583516144d7565b94506020938401939190910190600101614bf4565b50929695505050505050565b5f5f60408385031215614c42575f5ffd5b8235614c4d816145be565b915060208301356004811061469c575f5ffd5b5f60208284031215614c70575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610d2c57610d2c614c77565b5f600160ff1b8201614cb257614cb2614c77565b505f0390565b81810381811115610d2c57610d2c614c77565b600181811c90821680614cdf57607f821691505b602082108103614cfd57634e487b7160e01b5f52602260045260245ffd5b50919050565b60ff8181168382160190811115610d2c57610d2c614c77565b6001600160a01b0383168152604081016112b460208301846146d6565b5f5f85851115614d47575f5ffd5b83861115614d53575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015614d91576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f60208284031215614da8575f5ffd5b81516112b4816145be565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff81168352614df96020840160ff8360201c166146d6565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b5f60208284031215614e34575f5ffd5b81516112b4816147df565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112614e68575f5ffd5b8301803591506001600160401b03821115614e81575f5ffd5b60200191503681900382131561476b575f5ffd5b60408101614ea382856146d6565b6112b460208301846146d6565b6001815b6001841115614eeb57808504811115614ecf57614ecf614c77565b6001841615614edd57908102905b60019390931c928002614eb4565b935093915050565b5f82614f0157506001610d2c565b81614f0d57505f610d2c565b8160018114614f235760028114614f2d57614f49565b6001915050610d2c565b60ff841115614f3e57614f3e614c77565b50506001821b610d2c565b5060208310610133831016604e8410600b8410161715614f6c575081810a610d2c565b614f785f198484614eb0565b805f1904821115614f8b57614f8b614c77565b029392505050565b5f6112b460ff841683614ef3565b8082018281125f831280158216821582161715614fc057614fc0614c77565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff1982121715610d2c57610d2c614c77565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f6040838503121561503d575f5ffd5b8251615048816147df565b602084015190925061469c8161465f565b634e487b7160e01b5f52601260045260245ffd5b5f8261507b5761507b615059565b500490565b80356001600160601b03198116906014841015614d91576001600160601b031960149490940360031b84901b1690921692915050565b5f82518060208501845e5f920191825250919050565b5f63ffffffff821663ffffffff81036150e7576150e7614c77565b60010192915050565b5f63ffffffff83168061510557615105615059565b8063ffffffff84160691505092915050565b63ffffffff8181168382160290811690818114614d9157614d91614c77565b601f821115611a2d57805f5260205f20601f840160051c8101602085101561515b5750805b601f840160051c820191505b81811015613b30575f8155600101615167565b81516001600160401b0381111561519357615193614517565b6151a7816151a18454614ccb565b84615136565b6020601f8211600181146151d9575f83156151c25750848201515b5f19600385901b1c1916600184901b178455613b30565b5f84815260208120601f198516915b8281101561520857878501518255602094850194600190920191016151e8565b508482101561522557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60ff83168061524657615246615059565b8060ff84160691505092915050565b5f8161526357615263614c77565b505f19019056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af000773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00a2646970667358221220a437ab8baaeac542b492f00325fe0203380b85eac82313377e452cd6962686bf64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x37C JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x82DBBD71 GT PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xC0C51217 GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xD6281D3E GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE8E617B7 GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0xAD6 JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0xAF5 JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x9C8 JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0xB14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD6281D3E EQ PUSH2 0xA4D JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0xA6C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xA8B JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0xAAA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC8030873 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xC8030873 EQ PUSH2 0x9E7 JUMPI DUP1 PUSH4 0xCC671A18 EQ PUSH2 0x9FB JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0xA0F JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0xA2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x9A9 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x663 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x9C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9ED1487 GT PUSH2 0x173 JUMPI DUP1 PUSH4 0xB460AF94 GT PUSH2 0x143 JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x92D JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x94C JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x96B JUMPI DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x98A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0x8A4 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x8BF JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x8DE JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x90E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0x1AE JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x83E JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0x852 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x871 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x885 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0x7E1 JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0x800 JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x81F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x2B4 JUMPI DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x254 JUMPI DUP1 PUSH4 0x6E553F65 GT PUSH2 0x224 JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x747 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x766 JUMPI DUP1 PUSH4 0x759076E5 EQ PUSH2 0x785 JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x7AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x6B5 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x6C8 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x6DC JUMPI DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0x728 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 GT PUSH2 0x28F JUMPI DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0x637 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x663 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x683 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x5C6 JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0x5EC JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x60B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x31F JUMPI DUP1 PUSH4 0x18160DDD GT PUSH2 0x2FA JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x536 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x569 JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x588 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x5A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x4C0 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x4DF JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x4FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x77F224A GT PUSH2 0x35A JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0x8742D90 EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x456 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x380 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x3A7 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3D6 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xB33 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x3C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x44BE JUMP JUMPDEST PUSH2 0xC75 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0xD32 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x4505 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x402 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x411 CALLDATASIZE PUSH1 0x4 PUSH2 0x45D2 JUMP JUMPDEST PUSH2 0xDF2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x423 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xF02 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x4670 JUMP JUMPDEST PUSH2 0xF0D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4B3 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x46F6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x4DA CALLDATASIZE PUSH1 0x4 PUSH2 0x4704 JUMP JUMPDEST PUSH2 0xFA9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x4F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xFCA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x509 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0x518 CALLDATASIZE PUSH1 0x4 PUSH2 0x4772 JUMP JUMPDEST PUSH2 0xFD6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x541 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x574 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x583 CALLDATASIZE PUSH1 0x4 PUSH2 0x47EC JUMP JUMPDEST PUSH2 0x1045 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x593 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x5A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4818 JUMP JUMPDEST PUSH2 0x1168 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x5C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x487C JUMP JUMPDEST PUSH2 0x128C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5DA PUSH2 0x12BB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0x606 CALLDATASIZE PUSH1 0x4 PUSH2 0x48BA JUMP JUMPDEST PUSH2 0x12E4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x616 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x61F PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x642 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x64E PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x39E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x66E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x67D CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x68E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x61F JUMP JUMPDEST PUSH2 0x416 PUSH2 0x6C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x490A JUMP JUMPDEST PUSH2 0x1585 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x159B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x6F6 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x733 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0x742 CALLDATASIZE PUSH1 0x4 PUSH2 0x4969 JUMP JUMPDEST PUSH2 0x15B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x752 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x761 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AC JUMP JUMPDEST PUSH2 0x161F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x771 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x780 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH2 0x1649 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x790 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x394 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x61F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x7FB CALLDATASIZE PUSH1 0x4 PUSH2 0x49CF JUMP JUMPDEST PUSH2 0x166F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x80B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0x81A CALLDATASIZE PUSH1 0x4 PUSH2 0x48BA JUMP JUMPDEST PUSH2 0x1762 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x82A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x839 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AC JUMP JUMPDEST PUSH2 0x1883 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x849 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH2 0x18A5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x85D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x86C CALLDATASIZE PUSH1 0x4 PUSH2 0x4A1D JUMP JUMPDEST PUSH2 0x18E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x87C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x61F PUSH2 0x1937 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x890 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3C6 PUSH2 0x89F CALLDATASIZE PUSH1 0x4 PUSH2 0x4704 JUMP JUMPDEST PUSH2 0x1956 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x8D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x196D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3EA PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x919 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x928 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x1A32 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x938 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x947 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A5A JUMP JUMPDEST PUSH2 0x1A3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x957 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x966 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A5A JUMP JUMPDEST PUSH2 0x1A9B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x976 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x985 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A8E JUMP JUMPDEST PUSH2 0x1AEF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x995 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x9A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4AC0 JUMP JUMPDEST PUSH2 0x1BD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0x9C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4AEE JUMP JUMPDEST PUSH2 0x1DC5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x9E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x1E11 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0x1E1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x221A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xA29 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH2 0x22A6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA39 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0xA48 CALLDATASIZE PUSH1 0x4 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x22C0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0xA67 CALLDATASIZE PUSH1 0x4 PUSH2 0x4969 JUMP JUMPDEST PUSH2 0x2370 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA77 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xA86 CALLDATASIZE PUSH1 0x4 PUSH2 0x46A7 JUMP JUMPDEST PUSH2 0x2480 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA96 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0xAA5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B21 JUMP JUMPDEST PUSH2 0x2498 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xAC9 PUSH2 0xAC4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B4D JUMP JUMPDEST PUSH2 0x24E1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39E SWAP2 SWAP1 PUSH2 0x4BCE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51D PUSH2 0xAF0 CALLDATASIZE PUSH1 0x4 PUSH2 0x487C JUMP JUMPDEST PUSH2 0x27EB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB00 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xAC9 PUSH2 0xB0F CALLDATASIZE PUSH1 0x4 PUSH2 0x4B4D JUMP JUMPDEST PUSH2 0x2853 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB1F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x416 PUSH2 0xB2E CALLDATASIZE PUSH1 0x4 PUSH2 0x4C31 JUMP JUMPDEST PUSH2 0x2A4D JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xB4A PUSH2 0x2B0C JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB98 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xBBC SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDA SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBF5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xC19 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH2 0xC23 SWAP1 DUP4 PUSH2 0x4C8B JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0xC5F JUMPI DUP1 SLOAD PUSH2 0xC4F SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x4C9E JUMP JUMPDEST PUSH2 0xC59 SWAP1 DUP4 PUSH2 0x4CB8 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xC59 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0xCA5 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3ECE0A89 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xCC0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xCDB JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xCF6 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xD11 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0xD2C JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xD70 SWAP1 PUSH2 0x4CCB JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xD9C SWAP1 PUSH2 0x4CCB JUMP JUMPDEST DUP1 ISZERO PUSH2 0xDE7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xDBE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xDE7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xDCA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH1 0x1 PUSH1 0x40 SHL DUP2 DIV PUSH1 0xFF AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE36 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE51 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE5F JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xE7D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xEA7 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEB2 DUP9 DUP9 DUP9 PUSH2 0x2B82 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xEF8 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH0 PUSH2 0x2C31 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0xF33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xF3D DUP4 PUSH2 0x2C88 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xFB3 PUSH2 0x2D20 JUMP JUMPDEST SWAP1 POP PUSH2 0xFC0 DUP2 DUP6 DUP6 PUSH2 0x2D29 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH1 0x1 PUSH2 0x2D36 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1032 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10A6 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x10CA SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10E8 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1103 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1127 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x1133 DUP3 PUSH2 0x2D84 JUMP JUMPDEST EQ DUP1 PUSH2 0x113C JUMPI POP DUP3 JUMPDEST PUSH2 0x1159 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1162 DUP5 PUSH2 0x2E7D JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x1171 DUP6 PUSH2 0x2C88 JUMP JUMPDEST POP PUSH0 PUSH2 0x1187 DUP7 DUP7 DUP7 PUSH2 0x1182 DUP8 PUSH2 0x3012 JUMP JUMPDEST PUSH2 0x3042 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x11B5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x11C0 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1204 JUMPI PUSH2 0x11D4 DUP2 DUP6 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x11E6 PUSH2 0x11E1 DUP4 DUP8 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x2D84 JUMP JUMPDEST EQ PUSH2 0x1204 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1221 DUP4 DUP6 PUSH2 0x1211 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3141 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1296 PUSH2 0x2D20 JUMP JUMPDEST SWAP1 POP PUSH2 0x12A3 DUP6 DUP3 DUP6 PUSH2 0x31A0 JUMP JUMPDEST PUSH2 0x12AE DUP6 DUP6 DUP6 PUSH2 0x31EB JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0xC59 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x4D03 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x12F1 DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1312 JUMPI PUSH2 0x1312 PUSH2 0x46C2 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x1342 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x134D PUSH2 0x2B0C JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1396 JUMPI DUP2 SLOAD PUSH2 0x138A SWAP1 PUSH2 0x11E1 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x4CB8 JUMP JUMPDEST POP PUSH2 0x1393 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0x13BD PUSH2 0x13A1 PUSH2 0x2D20 JUMP JUMPDEST DUP9 PUSH2 0x13AF PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x13B8 SWAP2 PUSH2 0x4D60 JUMP JUMPDEST PUSH2 0x3248 JUMP JUMPDEST PUSH2 0x1406 DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x141D SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1485 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x14A9 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14D1 JUMPI PUSH2 0x14D1 PUSH2 0x14C2 PUSH2 0x2D20 JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3248 JUMP JUMPDEST POP PUSH0 PUSH2 0x14DB PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x155F JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x1511 SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x14FF DUP2 TIMESTAMP PUSH2 0x3357 JUMP JUMPDEST PUSH2 0x1182 PUSH2 0x150C DUP8 DUP10 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x3012 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x155B JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x158D PUSH2 0x3383 JUMP JUMPDEST PUSH2 0x1597 DUP3 DUP3 PUSH2 0x3413 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x15A4 PUSH2 0x34CF JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x160D JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x162C DUP6 PUSH2 0x1E11 JUMP JUMPDEST SWAP1 POP PUSH2 0x1641 PUSH2 0x1639 PUSH2 0x2D20 JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x3518 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1678 DUP5 PUSH2 0x2C88 JUMP JUMPDEST POP PUSH0 PUSH2 0x1692 DUP6 DUP6 DUP6 PUSH2 0x1689 DUP7 PUSH2 0x3012 JUMP JUMPDEST PUSH2 0x1182 SWAP1 PUSH2 0x4C9E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x16C0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP PUSH2 0x16E8 PUSH2 0x16CD PUSH2 0x2D20 JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x16D7 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x35A4 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x171F PUSH2 0x2D20 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x176F DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1790 JUMPI PUSH2 0x1790 PUSH2 0x46C2 JUMP JUMPDEST EQ DUP1 PUSH2 0x17B8 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17B6 JUMPI PUSH2 0x17B6 PUSH2 0x46C2 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x17E7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x17F2 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP PUSH2 0x17FF PUSH2 0x13A1 PUSH2 0x2D20 JUMP JUMPDEST PUSH2 0x1848 DUP7 DUP7 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x1853 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x155F JUMPI PUSH2 0x1867 DUP2 DUP4 PUSH2 0x4CB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x1890 DUP6 PUSH2 0x1A32 JUMP JUMPDEST SWAP1 POP PUSH2 0x1641 PUSH2 0x189D PUSH2 0x2D20 JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x3518 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xD70 SWAP1 PUSH2 0x4CCB JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x191F DUP8 DUP8 DUP8 PUSH2 0x35DD JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1960 PUSH2 0x2D20 JUMP JUMPDEST SWAP1 POP PUSH2 0xFC0 DUP2 DUP6 DUP6 PUSH2 0x31EB JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x1984 JUMPI PUSH2 0x197D PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP PUSH2 0x19AC JUMP JUMPDEST PUSH2 0x198C PUSH2 0x2B0C JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x19AC JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A09 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1A2D SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH1 0x1 PUSH2 0x2C31 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A49 DUP4 PUSH2 0x22A6 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1A72 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH0 PUSH2 0x1A7C DUP7 PUSH2 0xFCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1A92 PUSH2 0x1A89 PUSH2 0x2D20 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x3625 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1AA6 DUP4 PUSH2 0x2480 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1ACF JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH0 PUSH2 0x1AD9 DUP7 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A92 PUSH2 0x1AE6 PUSH2 0x2D20 JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x3625 JUMP JUMPDEST PUSH0 PUSH2 0x1AF9 DUP5 PUSH2 0x2C88 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1B73 DUP4 PUSH2 0x3778 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x1BA9 DUP3 PUSH2 0x3778 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C3C JUMPI PUSH2 0x1C3C PUSH2 0x46C2 JUMP JUMPDEST EQ PUSH2 0x1C5A JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1C80 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x1CA6 DUP7 PUSH2 0x3778 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1CBD DUP6 PUSH2 0x3778 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D24 JUMPI PUSH2 0x1D24 PUSH2 0x46C2 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x1DB5 SWAP1 DUP5 SWAP1 PUSH2 0x4DD4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x12B4 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH0 PUSH2 0x37AB JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH0 PUSH2 0x2D36 JUMP JUMPDEST PUSH0 PUSH2 0x1E25 PUSH2 0x156A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x1E84 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1EA8 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x1EDC JUMPI PUSH1 0x40 MLOAD PUSH4 0x252FA83D PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1EE4 PUSH2 0x2B0C JUMP JUMPDEST ISZERO PUSH2 0x1F02 JUMPI PUSH1 0x40 MLOAD PUSH4 0x902DD39B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0x38D52E0F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP4 AND SWAP2 PUSH4 0x38D52E0F SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F58 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1F7C SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1FA3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x233F8563 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 SWAP1 SWAP2 OR DUP3 SSTORE DUP4 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2017 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x203B SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP3 ADD MSTORE SWAP1 DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x208B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x20AF SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE DUP6 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x211B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x213F SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x21AC JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x21D0 SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x37465CE4C247E78514460560DA0BCC785FFF559503CE6C3D87A6E84352437392 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2270 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2294 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH2 0x229C PUSH2 0x2B0C JUMP JUMPDEST PUSH2 0xC59 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 PUSH2 0xD2C PUSH2 0x22B3 DUP4 PUSH2 0x37E3 JUMP JUMPDEST PUSH2 0x22BB PUSH2 0x221A JUMP JUMPDEST PUSH2 0x37F6 JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2345 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x231D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2341 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x234F DUP3 PUSH2 0x2D84 JUMP JUMPDEST EQ PUSH2 0x236D JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x23C7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP PUSH0 PUSH2 0x23D2 DUP7 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x23F3 JUMPI PUSH2 0x23F3 PUSH2 0x46C2 JUMP JUMPDEST EQ DUP1 PUSH2 0x241B JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2419 JUMPI PUSH2 0x2419 PUSH2 0x46C2 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x244A JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x246D SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x2464 DUP2 TIMESTAMP PUSH2 0x3357 JUMP JUMPDEST PUSH2 0x1689 DUP8 PUSH2 0x3012 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD2C PUSH2 0x248D DUP4 PUSH2 0x3805 JUMP JUMPDEST PUSH2 0x22BB PUSH2 0x9E2 PUSH2 0x221A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x24EE DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x250F JUMPI PUSH2 0x250F PUSH2 0x46C2 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x253F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x254A PUSH2 0x2B0C JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x2593 JUMPI DUP2 SLOAD PUSH2 0x2587 SWAP1 PUSH2 0x11E1 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x4CB8 JUMP JUMPDEST POP PUSH2 0x2590 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x25AD JUMPI PUSH2 0x25AD PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x25E0 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x25CB JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x27DF JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x2600 JUMPI PUSH2 0x2600 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2612 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST PUSH2 0x2620 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x2629 SWAP2 PUSH2 0x4D60 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x2645 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x2660 JUMPI PUSH2 0x265C PUSH2 0x2655 PUSH2 0x2D20 JUMP JUMPDEST DUP13 DUP4 PUSH2 0x3248 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x26CB DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x2675 JUMPI PUSH2 0x2675 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2687 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x26DD JUMPI PUSH2 0x26DD PUSH2 0x4E3F JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x27D6 JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2700 JUMPI PUSH2 0x2700 PUSH2 0x4E3F JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x271B SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2783 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x27A7 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x27D4 JUMPI PUSH2 0x27CF PUSH2 0x27C0 PUSH2 0x2D20 JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3248 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x25E5 JUMP JUMPDEST POP POP POP PUSH0 PUSH2 0x14DB PUSH2 0x2B0C JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2842 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x2860 DUP3 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2881 JUMPI PUSH2 0x2881 PUSH2 0x46C2 JUMP JUMPDEST EQ DUP1 PUSH2 0x28A9 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28A7 JUMPI PUSH2 0x28A7 PUSH2 0x46C2 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x28D8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP3 SWAP2 SWAP1 PUSH2 0x4D1C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x28E3 PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x28FE JUMPI PUSH2 0x28FE PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2931 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x291C JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x2A42 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x2951 JUMPI PUSH2 0x2951 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2963 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST PUSH2 0x2971 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x297A SWAP2 PUSH2 0x4D60 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x2996 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x29B1 JUMPI PUSH2 0x29AD PUSH2 0x29A6 PUSH2 0x2D20 JUMP JUMPDEST DUP12 DUP4 PUSH2 0x3248 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x2A1C DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x29C6 JUMPI PUSH2 0x29C6 PUSH2 0x4E3F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x29D8 SWAP2 SWAP1 PUSH2 0x4E53 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x334A JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2A2E JUMPI PUSH2 0x2A2E PUSH2 0x4E3F JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x2936 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1853 PUSH2 0x2B0C JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2A60 JUMPI PUSH2 0x2A60 PUSH2 0x46C2 JUMP JUMPDEST SUB PUSH2 0x2A7E JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2A88 DUP4 PUSH2 0x2C88 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x2AD5 SWAP3 SWAP2 SWAP1 PUSH2 0x4E95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2B02 JUMPI PUSH2 0x2B02 PUSH2 0x46C2 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2B15 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB 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 0x2B59 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2B7D SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x2B8A PUSH2 0x380F JUMP JUMPDEST PUSH2 0x2B92 PUSH2 0x3858 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x2BEF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2C13 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST SWAP1 POP PUSH2 0x2C1E DUP2 PUSH2 0x3860 JUMP JUMPDEST PUSH2 0x2C28 DUP5 DUP5 PUSH2 0x3871 JUMP JUMPDEST PUSH2 0x1162 DUP3 PUSH2 0x3883 JUMP JUMPDEST PUSH0 PUSH2 0x12B4 PUSH2 0x2C3D PUSH2 0xB33 JUMP JUMPDEST PUSH2 0x2C48 SWAP1 PUSH1 0x1 PUSH2 0x4C8B JUMP JUMPDEST PUSH2 0x2C53 PUSH0 PUSH1 0xA PUSH2 0x4F93 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2C7F SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x39A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CEC JUMPI PUSH2 0x2CEC PUSH2 0x46C2 JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x2D19 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2B7D PUSH2 0x39E9 JUMP JUMPDEST PUSH2 0x1A2D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3A5C JUMP JUMPDEST PUSH0 PUSH2 0x12B4 PUSH2 0x2D45 DUP3 PUSH1 0xA PUSH2 0x4F93 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2D71 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH2 0x2D79 PUSH2 0xB33 JUMP JUMPDEST PUSH2 0x2C7F SWAP1 PUSH1 0x1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x2E04 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2DE0 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x22BB SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2E59 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2D19 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2EA4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x2F4F JUMPI PUSH2 0x2EDC PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F29 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2F4D SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP JUMPDEST PUSH2 0x2F57 PUSH2 0x156A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2FA5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2FC9 SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x303E JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x305D DUP8 DUP8 DUP8 PUSH2 0x35DD JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3081 SWAP2 SWAP1 PUSH2 0x4FA1 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x30A8 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x4FC8 JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x1A2D SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x3B37 JUMP JUMPDEST PUSH0 PUSH2 0x31AB DUP5 DUP5 PUSH2 0x2498 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1162 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x31DD JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH2 0x1162 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x3A5C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3214 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x323D JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1A2D DUP4 DUP4 DUP4 PUSH2 0x3BA3 JUMP JUMPDEST PUSH0 PUSH2 0x3253 DUP4 DUP4 PUSH2 0x1DC5 JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 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 0x3292 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x32B6 SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x32E5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4FFF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x32FF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3323 SWAP2 SWAP1 PUSH2 0x502C JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0xEF8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4FFF JUMP JUMPDEST PUSH1 0x60 PUSH2 0x12B4 DUP4 DUP4 PUSH0 PUSH2 0x3CC9 JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x337A JUMPI PUSH2 0x3375 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x506D JUMP JUMPDEST PUSH2 0x12B4 JUMP JUMPDEST PUSH2 0x12B4 DUP3 PUSH2 0x3D69 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x33F3 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x33E7 PUSH2 0x3E46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D 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 SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x346D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x346A SWAP2 DUP2 ADD SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3495 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x34C5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1A2D DUP4 DUP4 PUSH2 0x3E5A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH2 0x353D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 ADDRESS DUP7 PUSH2 0x35A4 JUMP JUMPDEST PUSH2 0x3547 DUP5 DUP4 PUSH2 0x3EAF JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3595 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x1162 SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD PUSH2 0x316E JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x362E PUSH2 0x2B0C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3763 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52AB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x368D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x36B1 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST PUSH2 0x36BB DUP4 DUP7 PUSH2 0x4CB8 JUMP JUMPDEST GT ISZERO PUSH2 0x36DA JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x36F4 DUP5 DUP8 PUSH2 0x4CB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x373C JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3760 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x3770 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x3EE3 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x303E JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 PUSH1 0x1C DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x37D1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1DD4BB1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x8 MUL SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xD2C PUSH2 0x37F0 DUP4 PUSH2 0x1649 JUMP JUMPDEST PUSH0 PUSH2 0x2C31 JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x12B4 JUMP JUMPDEST PUSH0 PUSH2 0xD2C DUP3 PUSH2 0x1649 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3411 PUSH2 0x380F JUMP JUMPDEST PUSH2 0x3868 PUSH2 0x380F JUMP JUMPDEST PUSH2 0x236D DUP2 PUSH2 0x3F97 JUMP JUMPDEST PUSH2 0x3879 PUSH2 0x380F JUMP JUMPDEST PUSH2 0x1597 DUP3 DUP3 PUSH2 0x4007 JUMP JUMPDEST PUSH2 0x388B PUSH2 0x380F JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F 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 0x38E7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x390B SWAP2 SWAP1 PUSH2 0x4D98 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3979 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x399D SWAP2 SWAP1 PUSH2 0x4E24 JUMP JUMPDEST POP PUSH2 0x236D DUP2 PUSH2 0x2E7D JUMP JUMPDEST PUSH0 PUSH2 0x39D4 PUSH2 0x39B4 DUP4 PUSH2 0x4057 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x39CF JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x39CA JUMPI PUSH2 0x39CA PUSH2 0x5059 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x39DF DUP7 DUP7 DUP7 PUSH2 0x4083 JUMP JUMPDEST PUSH2 0x1A92 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x3A25 JUMPI POP DUP1 DUP3 LT ISZERO JUMPDEST ISZERO PUSH2 0x3A54 JUMPI PUSH0 CALLDATASIZE PUSH2 0x3A36 DUP4 DUP6 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x3A41 SWAP3 DUP3 SWAP1 PUSH2 0x4D39 JUMP JUMPDEST PUSH2 0x3A4A SWAP2 PUSH2 0x5080 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x3A93 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3ABC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3B30 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3595 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH0 DUP9 GAS CALL DUP1 PUSH2 0x3B56 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x3B6D JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x3B7A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x1162 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3BDD JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3BD2 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x3C3A SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3C1C JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1029 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4DB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C58 JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x3C76 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x3CBB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x3CF5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF479181 PUSH1 0xE0 SHL DUP2 MSTORE SELFBALANCE PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x40 MLOAD PUSH2 0x3D10 SWAP2 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x3D4A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x3D4F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x3D5F DUP7 DUP4 DUP4 PUSH2 0x4139 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x3D80 PUSH4 0x67748580 DUP7 PUSH2 0x4CB8 JUMP JUMPDEST PUSH2 0x3D8A SWAP2 SWAP1 PUSH2 0x506D JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x3D9A JUMPI PUSH2 0x16D PUSH2 0x3D9E JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x3E21 JUMPI DUP2 PUSH2 0x3DB5 JUMPI PUSH2 0x16D PUSH2 0x3DB9 JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x3DC7 SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x4CB8 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DD2 DUP4 PUSH2 0x50CC JUMP JUMPDEST SWAP3 POP PUSH2 0x3DDF PUSH1 0x4 DUP5 PUSH2 0x50F0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x3E1A JUMPI POP PUSH2 0x3DF8 PUSH1 0x64 DUP5 PUSH2 0x50F0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x3E1A JUMPI POP PUSH2 0x3E12 PUSH2 0x190 DUP5 PUSH2 0x50F0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x3D8D JUMP JUMPDEST PUSH2 0x3E2B DUP2 DUP4 PUSH2 0x4190 JUMP JUMPDEST PUSH2 0x3E36 DUP5 PUSH1 0x64 PUSH2 0x5117 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1641 SWAP2 SWAP1 PUSH2 0x4C8B JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x1947 JUMP JUMPDEST PUSH2 0x3E63 DUP3 PUSH2 0x4273 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3EA7 JUMPI PUSH2 0x1A2D DUP3 DUP3 PUSH2 0x42D6 JUMP JUMPDEST PUSH2 0x1597 PUSH2 0x433F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3ED8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1597 PUSH0 DUP4 DUP4 PUSH2 0x3BA3 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP1 DUP6 AND EQ PUSH2 0x3F0F JUMPI PUSH2 0x3F0F DUP5 DUP8 DUP5 PUSH2 0x31A0 JUMP JUMPDEST PUSH2 0x3F19 DUP5 DUP4 PUSH2 0x435E JUMP JUMPDEST DUP1 SLOAD PUSH2 0x3F2F SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 DUP6 PUSH2 0x3141 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP7 DUP7 PUSH1 0x40 MLOAD PUSH2 0x3F87 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3F9F PUSH2 0x380F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x52CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH0 DUP1 PUSH2 0x3FB8 DUP5 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x3FC8 JUMPI PUSH1 0x12 PUSH2 0x3FCA JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST PUSH2 0x400F PUSH2 0x380F JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x526B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4048 DUP5 DUP3 PUSH2 0x517A JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1162 DUP4 DUP3 PUSH2 0x517A JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x406C JUMPI PUSH2 0x406C PUSH2 0x46C2 JUMP JUMPDEST PUSH2 0x4076 SWAP2 SWAP1 PUSH2 0x5234 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP4 DUP4 MUL DUP2 PUSH0 NOT DUP6 DUP8 MULMOD DUP3 DUP2 LT DUP4 DUP3 SUB SUB SWAP2 POP POP DUP1 PUSH0 SUB PUSH2 0x40B7 JUMPI DUP4 DUP3 DUP2 PUSH2 0x40AD JUMPI PUSH2 0x40AD PUSH2 0x5059 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x12B4 JUMP JUMPDEST DUP1 DUP5 GT PUSH2 0x40CE JUMPI PUSH2 0x40CE PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x4468 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP7 DUP5 GT SWAP1 SWAP6 SUB SWAP5 SWAP1 SWAP5 MUL SWAP2 SWAP1 SWAP5 SUB SWAP3 SWAP1 SWAP3 DIV SWAP2 SWAP1 SWAP2 OR SWAP2 SWAP1 SWAP2 MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x4149 JUMPI PUSH2 0x3375 DUP3 PUSH2 0x4479 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x4160 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x4189 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST POP DUP1 PUSH2 0x12B4 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x41A2 JUMPI POP PUSH1 0x1 PUSH2 0xD2C JUMP JUMPDEST DUP2 ISZERO PUSH2 0x41CB JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x41B9 JUMPI POP PUSH1 0x2 PUSH2 0xD2C JUMP JUMPDEST DUP3 PUSH2 0x41C3 DUP2 PUSH2 0x5255 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x41DC JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x41DC JUMPI POP PUSH1 0x2 PUSH2 0xD2C JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x4266 JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x425F JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4258 JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x4251 JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x424A JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x4243 JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x423C JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x4235 JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x422E JUMPI PUSH1 0xC PUSH2 0x4269 JUMP JUMPDEST PUSH1 0xB PUSH2 0x4269 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4269 JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x42A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x528B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x42F2 SWAP2 SWAP1 PUSH2 0x50B6 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x432A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x432F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A92 DUP6 DUP4 DUP4 PUSH2 0x4139 JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x3411 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4387 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x1597 DUP3 PUSH0 DUP4 PUSH2 0x3BA3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD DUP3 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 MLOAD PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 PUSH2 0x43D8 SWAP2 PUSH2 0x50B6 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x4410 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x4415 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x4429 JUMPI POP PUSH1 0x20 DUP2 MLOAD LT ISZERO JUMPDEST ISZERO PUSH2 0x445C JUMPI PUSH0 DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x4443 SWAP2 SWAP1 PUSH2 0x4C60 JUMP JUMPDEST SWAP1 POP PUSH1 0xFF DUP2 GT PUSH2 0x445A JUMPI PUSH1 0x1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST POP JUMPDEST POP PUSH0 SWAP5 DUP6 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x4489 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x44B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x44CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12B4 DUP3 PUSH2 0x44A2 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE DUP1 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP7 ADD MCOPY PUSH0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x12B4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x44D7 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x4544 JUMPI PUSH2 0x4544 PUSH2 0x4517 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x4572 JUMPI PUSH2 0x4572 PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x4589 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x45AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12B4 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x452B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x236D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x45E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x45F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4605 DUP7 DUP3 DUP8 ADD PUSH2 0x45A0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4620 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x462C DUP7 DUP3 DUP8 ADD PUSH2 0x45A0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x463D DUP2 PUSH2 0x45BE JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4658 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x236D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4681 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x468C DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x465F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x46B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x12B4 DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x46F2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xD2C DUP3 DUP5 PUSH2 0x46D6 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4715 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4720 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x473E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4754 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x476B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4786 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4791 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x47A1 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x47C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x47CE DUP9 DUP3 DUP10 ADD PUSH2 0x472E JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x236D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4808 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x47DF JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x482C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4837 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4847 DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x4857 DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x486E DUP2 PUSH2 0x45BE JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x488E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4899 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x48A9 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x48CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x48D7 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x48F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x48FD DUP7 DUP3 DUP8 ADD PUSH2 0x472E JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x491B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4926 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4940 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4950 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x495F DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x452B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x497C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4987 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4997 DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x49BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x49ED DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x49FD DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4A0D DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A2F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4A3A DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A4A DUP2 PUSH2 0x465F JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x463D DUP2 PUSH2 0x465F JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A7E DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x463D DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4AA0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4AAB DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4AD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4ADE DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4997 DUP2 PUSH2 0x465F JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4AFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B0A DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH2 0x4B18 PUSH1 0x20 DUP5 ADD PUSH2 0x44A2 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B3D DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x469C DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4B6A DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4B84 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x4B94 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4BA9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x4BBD JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD PUSH1 0x20 DUP4 MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP6 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP7 ADD PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4C25 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x4C10 DUP6 DUP4 MLOAD PUSH2 0x44D7 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4BF4 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4C42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4C4D DUP2 PUSH2 0x45BE JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x469C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4CB2 JUMPI PUSH2 0x4CB2 PUSH2 0x4C77 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4CDF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4CFD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x12B4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x46D6 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x4D47 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x4D53 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x4D91 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DA8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x12B4 DUP2 PUSH2 0x45BE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x4DF9 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x46D6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E34 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x12B4 DUP2 PUSH2 0x47DF JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4E68 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x4E81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x476B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4EA3 DUP3 DUP6 PUSH2 0x46D6 JUMP JUMPDEST PUSH2 0x12B4 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x46D6 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x4EEB JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x4ECF JUMPI PUSH2 0x4ECF PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x4EDD JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x4EB4 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x4F01 JUMPI POP PUSH1 0x1 PUSH2 0xD2C JUMP JUMPDEST DUP2 PUSH2 0x4F0D JUMPI POP PUSH0 PUSH2 0xD2C JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x4F23 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x4F2D JUMPI PUSH2 0x4F49 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD2C JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x4F3E JUMPI PUSH2 0x4F3E PUSH2 0x4C77 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD2C JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x4F6C JUMPI POP DUP2 DUP2 EXP PUSH2 0xD2C JUMP JUMPDEST PUSH2 0x4F78 PUSH0 NOT DUP5 DUP5 PUSH2 0x4EB0 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x4F8B JUMPI PUSH2 0x4F8B PUSH2 0x4C77 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x12B4 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x4EF3 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x4FC0 JUMPI PUSH2 0x4FC0 PUSH2 0x4C77 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0xD2C JUMPI PUSH2 0xD2C PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x503D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x5048 DUP2 PUSH2 0x47DF JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x469C DUP2 PUSH2 0x465F JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x507B JUMPI PUSH2 0x507B PUSH2 0x5059 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x4D91 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x50E7 JUMPI PUSH2 0x50E7 PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x5105 JUMPI PUSH2 0x5105 PUSH2 0x5059 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x4D91 JUMPI PUSH2 0x4D91 PUSH2 0x4C77 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1A2D JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x515B JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3B30 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x5167 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5193 JUMPI PUSH2 0x5193 PUSH2 0x4517 JUMP JUMPDEST PUSH2 0x51A7 DUP2 PUSH2 0x51A1 DUP5 SLOAD PUSH2 0x4CCB JUMP JUMPDEST DUP5 PUSH2 0x5136 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x51D9 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x51C2 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x3B30 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5208 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x51E8 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5225 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x5246 JUMPI PUSH2 0x5246 PUSH2 0x5059 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x5263 JUMPI PUSH2 0x5263 PUSH2 0x4C77 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE 0xE1 DELEGATECALL PUSH30 0xB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE00360894A13B LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF000773E5 ORIGIN 0xDF 0xED 0xE9 0x1F DIV 0xB1 0x2A PUSH20 0xD3D2ACD361424F41F76B4FB79F090161E36B4E00 LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG4 CALLDATACOPY 0xAB DUP12 0xAA 0xEA 0xC5 TIMESTAMP 0xB4 SWAP3 CREATE SUB 0x25 INVALID MUL SUB CODESIZE SIGNEXTEND DUP6 0xEA 0xC8 0x23 SGT CALLDATACOPY PUSH31 0x452CD6962686BF64736F6C634300081C003300000000000000000000000000 ","sourceMap":"3266:32853:73:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30956:393;;;;;;;;;;;;;:::i;:::-;;;160:25:81;;;148:2;133:18;30956:393:73;;;;;;;;17037:480;;;;;;;;;;-1:-1:-1;17037:480:73;;;;;:::i;:::-;;:::i;:::-;;;728:14:81;;721:22;703:41;;691:2;676:18;17037:480:73;563:187:81;2716:144:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10416:174:73:-;;;;;;;;;;-1:-1:-1;10416:174:73;;;;;:::i;:::-;;:::i;:::-;;7511:148:25;;;;;;;;;;-1:-1:-1;7511:148:25;;;;;:::i;:::-;;:::i;16698:310:73:-;;;;;;;;;;-1:-1:-1;16698:310:73;;;;;:::i;:::-;;:::i;16174:188::-;;;;;;;;;;-1:-1:-1;16174:188:73;;;;;:::i;:::-;-1:-1:-1;;;;;16332:18:73;16238:12;16332:18;;;:10;:18;;;;;:25;-1:-1:-1;;;16332:25:73;;;;;16174:188;;;;;;;;:::i;5210:186:24:-;;;;;;;;;;-1:-1:-1;5210:186:24;;;;;:::i;:::-;;:::i;8777:147:25:-;;;;;;;;;;-1:-1:-1;8777:147:25;;;;;:::i;:::-;;:::i;18811:203:73:-;;;;;;;;;;-1:-1:-1;18811:203:73;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;6549:33:81;;;6531:52;;6519:2;6504:18;18811:203:73;6387:202:81;3896:152:24;;;;;;;;;;-1:-1:-1;4027:14:24;;3896:152;;12420:357:73;;;;;;;;;;-1:-1:-1;12420:357:73;;;;;:::i;:::-;;:::i;34395:703::-;;;;;;;;;;-1:-1:-1;34395:703:73;;;;;:::i;:::-;;:::i;5988:244:24:-;;;;;;;;;;-1:-1:-1;5988:244:24;;;;;:::i;:::-;;:::i;6612:221:25:-;;;;;;;;;;;;;:::i;:::-;;;8649:4:81;8637:17;;;8619:36;;8607:2;8592:18;6612:221:25;8477:184:81;25782:534:73;;;;;;;;;;-1:-1:-1;25782:534:73;;;;;:::i;:::-;;:::i;6877:153:25:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;9612:32:81;;;9594:51;;9582:2;9567:18;6877:153:25;9448:203:81;3705:65:73;;;;;;;;;;;;3754:16;3705:65;;;;;9830:10:81;9818:23;;;9800:42;;9788:2;9773:18;3705:65:73;9656:192:81;7708:108:25;;;;;;;;;;-1:-1:-1;7708:108:25;;;;;:::i;:::-;-1:-1:-1;;;7792:17:25;7708:108;12897:87:73;;;;;;;;;;-1:-1:-1;12968:11:73;12897:87;;4161:214:23;;;;;;:::i;:::-;;:::i;3708:134::-;;;;;;;;;;;;;:::i;1955:137:21:-;;;;;;;;;;-1:-1:-1;1955:137:21;;;;;:::i;:::-;1830:17;-1:-1:-1;;;;;2054:31:21;;;;;;;1955:137;20041:176:73;;;;;;;;;;-1:-1:-1;20041:176:73;;;;;:::i;:::-;;:::i;9168:392:25:-;;;;;;;;;;-1:-1:-1;9168:392:25;;;;;:::i;:::-;;:::i;4106:171:24:-;;;;;;;;;;-1:-1:-1;4106:171:24;;;;;:::i;:::-;;:::i;30498:159:73:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;30639:12:73;-1:-1:-1;;;30639:12:73;;;;30498:159;;1747:107:21;;;;;;;;;;-1:-1:-1;1830:17:21;1747:107;;35641:476:73;;;;;;;;;;-1:-1:-1;35641:476:73;;;;;:::i;:::-;;:::i;29035:262::-;;;;;;;;;;-1:-1:-1;29035:262:73;;;;;:::i;:::-;;:::i;9603:380:25:-;;;;;;;;;;-1:-1:-1;9603:380:25;;;;;:::i;:::-;;:::i;2973:148:24:-;;;;;;;;;;;;;:::i;30661:254:73:-;;;;;;;;;;-1:-1:-1;30661:254:73;;;;;:::i;:::-;;:::i;12781:112::-;;;;;;;;;;;;;:::i;4472:178:24:-;;;;;;;;;;-1:-1:-1;4472:178:24;;;;;:::i;:::-;;:::i;3512:55:73:-;;;;;;;;;;-1:-1:-1;3512:55:73;-1:-1:-1;;;;;;3512:55:73;;33375:317;;;;;;;;;;-1:-1:-1;33375:317:73;;;;;:::i;:::-;;:::i;1819:58:23:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1819:58:23;;;;;8580:143:25;;;;;;;;;;-1:-1:-1;8580:143:25;;;;;:::i;:::-;;:::i;10030:413::-;;;;;;;;;;-1:-1:-1;10030:413:25;;;;;:::i;:::-;;:::i;10488:405::-;;;;;;;;;;-1:-1:-1;10488:405:25;;;;;:::i;:::-;;:::i;15080:384:73:-;;;;;;;;;;-1:-1:-1;15080:384:73;;;;;:::i;:::-;;:::i;13937:599::-;;;;;;;;;;-1:-1:-1;13937:599:73;;;;;:::i;:::-;;:::i;24066:176::-;;;;;;;;;;-1:-1:-1;24066:176:73;;;;;:::i;:::-;;:::i;7309:148:25:-;;;;;;;;;;-1:-1:-1;7309:148:25;;;;;:::i;:::-;;:::i;17871:902:73:-;;;;;;;;;;;;;:::i;31353:196::-;;;;;;;;;;;;;:::i;31799:155::-;;;;;;;;;;-1:-1:-1;31799:155:73;;;;;:::i;:::-;;:::i;32813:292::-;;;;;;;;;;-1:-1:-1;32813:292:73;;;;;:::i;:::-;;:::i;19249:754::-;;;;;;;;;;-1:-1:-1;19249:754:73;;;;;:::i;:::-;;:::i;31590:168::-;;;;;;;;;;-1:-1:-1;31590:168:73;;;;;:::i;:::-;;:::i;4708:195:24:-;;;;;;;;;;-1:-1:-1;4708:195:24;;;;;:::i;:::-;;:::i;27509:965:73:-;;;;;;;;;;-1:-1:-1;27509:965:73;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19050:163::-;;;;;;;;;;-1:-1:-1;19050:163:73;;;;;:::i;:::-;;:::i;29900:594::-;;;;;;;;;;-1:-1:-1;29900:594:73;;;;;:::i;:::-;;:::i;15749:421::-;;;;;;;;;;-1:-1:-1;15749:421:73;;;;;:::i;:::-;;:::i;30956:393::-;31009:14;-1:-1:-1;;;;;;;;;;;31107:10:73;:8;:10::i;:::-;31133:13;;31163:38;;-1:-1:-1;;;31163:38:73;;31195:4;31163:38;;;9594:51:81;31098:19:73;;-1:-1:-1;;;;;;31133:13:73;;:29;;:13;;31163:23;;9567:18:81;;31163:38:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31133:69;;;;;;;;;;;;;160:25:81;;148:2;133:18;;14:177;31133:69:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31123:79;;;;:::i;:::-;31212:12;;31123:79;;-1:-1:-1;31227:1:73;-1:-1:-1;;;31212:12:73;;;;;:16;31208:137;;;31264:12;;31256:21;;-1:-1:-1;;;31264:12:73;;;;31256:21;:::i;:::-;31238:40;;;;:::i;:::-;;;31025:324;30956:393;:::o;31208:137::-;31324:12;;31299:39;;-1:-1:-1;;;31324:12:73;;;;31299:39;;:::i;17037:480::-;17122:4;-1:-1:-1;;;;;;17147:48:73;;-1:-1:-1;;;17147:48:73;;:104;;-1:-1:-1;;;;;;;17205:46:73;;-1:-1:-1;;;17205:46:73;17147:104;:162;;;-1:-1:-1;;;;;;;17261:48:73;;-1:-1:-1;;;17261:48:73;17147:162;:211;;;-1:-1:-1;;;;;;;17319:39:73;;-1:-1:-1;;;17319:39:73;17147:211;:268;;;-1:-1:-1;;;;;;;17368:47:73;;-1:-1:-1;;;17368:47:73;17147:268;:319;;;-1:-1:-1;;;;;;;17425:41:73;;-1:-1:-1;;;17425:41:73;17147:319;:365;;;-1:-1:-1;;;;;;;;;;862:40:65;;;17476:36:73;17134:378;17037:480;-1:-1:-1;;17037:480:73:o;2716:144:24:-;2846:7;2839:14;;2761:13;;-1:-1:-1;;;;;;;;;;;2064:20:24;2839:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2716:144;:::o;10416:174:73:-;8870:21:22;4302:15;;-1:-1:-1;;;4302:15:22;;;;4301:16;;-1:-1:-1;;;;;4348:14:22;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;-1:-1:-1;;;;;4790:16:22;4805:1;4790:16;:50;;;;-1:-1:-1;4818:4:22;4810:25;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;-1:-1:-1;;;4908:23:22;;;;;;;;;;;4851:91;4951:18;;-1:-1:-1;;4951:18:22;4968:1;4951:18;;;4979:67;;;;5013:22;;-1:-1:-1;;;;5013:22:22;-1:-1:-1;;;5013:22:22;;;4979:67;10535:50:73::1;10557:5;10564:7;10573:11;10535:21;:50::i;:::-;5070:14:22::0;5066:101;;;5100:23;;-1:-1:-1;;;;5100:23:22;;;5142:14;;-1:-1:-1;19179:50:81;;5142:14:22;;19167:2:81;19152:18;5142:14:22;;;;;;;5066:101;4092:1081;;;;;10416:174:73;;;:::o;7511:148:25:-;7581:7;7607:45;7624:6;7632:19;7607:16;:45::i;16698:310:73:-;16784:11;:16;;16799:1;16784:16;16776:44;;;;-1:-1:-1;;;16776:44:73;;;;;;;;;;;;16826:33;16862:24;16879:6;16862:16;:24::i;:::-;16927:21;;16897:65;;;16927:21;;;;19410:42:81;;19488:23;;;19483:2;19468:18;;19461:51;16927:21:73;;-1:-1:-1;;;;;;16897:65:73;;;;;19383:18:81;16897:65:73;;;;;;;16968:35;;-1:-1:-1;;16968:35:73;;;;;;;;;;;;-1:-1:-1;16698:310:73:o;5210:186:24:-;5283:4;5299:13;5315:12;:10;:12::i;:::-;5299:28;;5337:31;5346:5;5353:7;5362:5;5337:8;:31::i;:::-;-1:-1:-1;5385:4:24;;5210:186;-1:-1:-1;;;5210:186:24:o;8777:147:25:-;8847:7;8873:44;8890:6;8898:18;8873:16;:44::i;18811:203:73:-;18947:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9612:32:81;;;8269:71:73;;;9594:51:81;9567:18;;8269:71:73;;;;;;;;;-1:-1:-1;;;;18968:41:73;18811:203;-1:-1:-1;;;;;;18811:203:73:o;12420:357::-;12492:31;-1:-1:-1;;;;;;;;;;;12581:13:73;;12611:38;;-1:-1:-1;;;12611:38:73;;12643:4;12611:38;;;9594:51:81;12581:13:73;;-1:-1:-1;12559:19:73;;-1:-1:-1;;;;;12581:13:73;;;;:29;;:13;;12611:23;;9567:18:81;;12611:38:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12581:69;;;;;;;;;;;;;160:25:81;;148:2;133:18;;14:177;12581:69:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12559:91;;12690:11;12664:22;12674:11;12664:9;:22::i;:::-;:37;:46;;;;12705:5;12664:46;12656:83;;;;-1:-1:-1;;;12656:83:73;;;;;;;;;;;;12745:27;12760:11;12745:14;:27::i;:::-;12486:291;;12420:357;;:::o;34395:703::-;34546:24;34563:6;34546:16;:24::i;:::-;;34599:16;34618:59;34630:6;34638:8;34648:9;34659:17;:6;:15;:17::i;:::-;34618:11;:59::i;:::-;34599:78;-1:-1:-1;34727:6:73;34599:78;34704:1;34691:14;;;34683:63;;;;-1:-1:-1;;;34683:63:73;;;;;19695:25:81;;;;19736:18;;;19729:34;19668:18;;34683:63:73;19523:246:81;34683:63:73;;;34800:15;34818:10;:8;:10::i;:::-;34800:28;;34848:6;34838:7;:16;34834:112;;;34904:16;34913:7;34904:6;:16;:::i;:::-;34872:27;34882:16;34891:7;34882:6;:16;:::i;:::-;34872:9;:27::i;:::-;:49;34864:75;;;;-1:-1:-1;;;34864:75:73;;;;;;;;;;;;34951:57;34988:11;35001:6;34966:7;:5;:7::i;:::-;-1:-1:-1;;;;;34951:36:73;;:57;:36;:57::i;:::-;35019:74;;;20057:10:81;20045:23;;;20027:42;;20105:23;;20100:2;20085:18;;20078:51;20145:18;;;20138:34;;;20203:2;20188:18;;20181:34;;;-1:-1:-1;;;;;20252:32:81;;;20246:3;20231:19;;20224:61;35019:74:73;;;;;20014:3:81;19999:19;35019:74:73;;;;;;;34540:558;;34395:703;;;;;:::o;5988:244:24:-;6075:4;6091:15;6109:12;:10;:12::i;:::-;6091:30;;6131:37;6147:4;6153:7;6162:5;6131:15;:37::i;:::-;6178:26;6188:4;6194:2;6198:5;6178:9;:26::i;:::-;6221:4;6214:11;;;5988:244;;;;;;:::o;6612:221:25:-;6704:5;;-1:-1:-1;;;;;;;;;;;6721:47:25;-1:-1:-1;13626:5:25;6785:21;;:41;;;-1:-1:-1;;;6785:21:25;;;;:41;:::i;25782:534:73:-;25907:19;25890:6;8411:33;8447:24;8464:6;8447:16;:24::i;:::-;8411:60;-1:-1:-1;8508:19:73;8485;;-1:-1:-1;;;8485:19:73;;;;:42;;;;;;;;:::i;:::-;8553:19;;8545:6;;-1:-1:-1;;;8553:19:73;;;;;;8485:42;8477:97;;;;-1:-1:-1;;;8477:97:73;;;;;;;;;:::i;:::-;;;8615:21;8639:10;:8;:10::i;:::-;8684:25;;8615:34;;-1:-1:-1;;;;8684:25:73;;-1:-1:-1;;;;;8684:25:73;8660:50;;8656:166;;;8738:25;;8720:61;;8730:50;;8767:13;;-1:-1:-1;;;8738:25:73;;-1:-1:-1;;;;;8738:25:73;8730:50;:::i;8720:61::-;;8805:10;:8;:10::i;:::-;8789:26;;8656:166;25934:57:::1;25951:12;:10;:12::i;:::-;25965:6:::0;25980:9:::1;25987:1;25985;25980:4:::0;;:9:::1;:::i;:::-;25973:17;::::0;::::1;:::i;:::-;25934:16;:57::i;:::-;26006:25;26026:4;;26006:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;26006:19:73;::::1;::::0;:25;-1:-1:-1;;26006:19:73::1;:25::i;:::-;25997:34;;26037:16;26067:6;26056:29;;;;;;;;;;;;:::i;:::-;26095:47;::::0;-1:-1:-1;;;26095:47:73;;::::1;::::0;::::1;160:25:81::0;;;26037:48:73;;-1:-1:-1;26154:4:73::1;::::0;-1:-1:-1;;;;;26111:11:73::1;26095:37;::::0;::::1;::::0;133:18:81;;26095:47:73::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26095:64:73::1;;26091:221;;26246:59;26263:12;:10;:12::i;:::-;26277:6:::0;-1:-1:-1;;;;;;26246:16:73::1;:59::i;:::-;25928:388;8834:20:::0;8857:10;:8;:10::i;:::-;8834:33;;8893:13;8878:12;:28;8874:431;;;9033:21;;8978:15;;8996:181;;9017:6;;9033:21;;9064:54;9033:21;9102:15;9064:14;:54::i;:::-;9128:41;9129:28;9145:12;9129:13;:28;:::i;:::-;9128:39;:41::i;8996:181::-;9220:22;;8978:199;;-1:-1:-1;8978:199:73;;-1:-1:-1;;;9220:22:73;;-1:-1:-1;;;;;9220:22:73;9193:51;;;;9185:113;;;;-1:-1:-1;;;9185:113:73;;;;;21881:25:81;;;;-1:-1:-1;;;;;21942:39:81;21922:18;;;21915:67;21854:18;;9185:113:73;21711:277:81;9185:113:73;;;8908:397;8874:431;8405:904;;;25782:534;;;;;;:::o;6877:153:25:-;-1:-1:-1;;;;;;;;;;;7014:8:25;-1:-1:-1;;;;;7014:8:25;;6877:153::o;4161:214:23:-;2655:13;:11;:13::i;:::-;4322:46:::1;4344:17;4363:4;4322:21;:46::i;:::-;4161:214:::0;;:::o;3708:134::-;3777:7;2926:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3708:134:23;:::o;20041:176:73:-;20150:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9612:32:81;;;8269:71:73;;;9594:51:81;9567:18;;8269:71:73;9448:203:81;8269:71:73;-1:-1:-1;;;;20171:41:73;20041:176;-1:-1:-1;;;;;20041:176:73:o;9168:392:25:-;9243:7;-1:-1:-1;;9432:14:25;9449:22;9464:6;9449:14;:22::i;:::-;9432:39;;9481:48;9490:12;:10;:12::i;:::-;9504:8;9514:6;9522;9481:8;:48::i;:::-;9547:6;9168:392;-1:-1:-1;;;;9168:392:25:o;4106:171:24:-;-1:-1:-1;;;;;4250:20:24;4171:7;4250:20;;;-1:-1:-1;;;;;;;;;;;4250:20:24;;;;;;;4106:171::o;35641:476:73:-;35742:24;35759:6;35742:16;:24::i;:::-;;35796:16;35815:60;35827:6;35835:8;35845:9;35857:17;:6;:15;:17::i;:::-;35856:18;;;:::i;35815:60::-;35796:79;-1:-1:-1;35927:6:73;35796:79;35902:1;35889:14;;;35881:65;;;;-1:-1:-1;;;35881:65:73;;;;;19695:25:81;;;;19736:18;;;19729:34;19668:18;;35881:65:73;19523:246:81;35881:65:73;;;35953:77;35994:12;:10;:12::i;:::-;36016:4;36023:6;35968:7;:5;:7::i;:::-;-1:-1:-1;;;;;35953:40:73;;:77;;:40;:77::i;:::-;36051:6;-1:-1:-1;;;;;36041:71:73;;36059:8;36069:9;36080:6;36088:9;36099:12;:10;:12::i;:::-;36041:71;;;20057:10:81;20045:23;;;20027:42;;20105:23;;;;20100:2;20085:18;;20078:51;20145:18;;;20138:34;;;;20203:2;20188:18;;20181:34;-1:-1:-1;;;;;20252:32:81;20246:3;20231:19;;20224:61;20014:3;19999:19;36041:71:73;;;;;;;35736:381;35641:476;;;;:::o;29035:262::-;29168:19;29151:6;9372:33;9408:24;9425:6;9408:16;:24::i;:::-;9372:60;-1:-1:-1;9476:19:73;9453;;-1:-1:-1;;;9453:19:73;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;9522:23:73;9499:19;;-1:-1:-1;;;9499:19:73;;;;:46;;;;;;;;:::i;:::-;;9453:92;9577:19;;9569:6;;-1:-1:-1;;;9577:19:73;;;;;;9438:165;;;;-1:-1:-1;;;9438:165:73;;;;;;;;;:::i;:::-;;;9674:21;9698:10;:8;:10::i;:::-;9674:34;;29195:57:::1;29212:12;:10;:12::i;29195:57::-;29267:25;29287:4;;29267:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;29267:19:73;::::1;::::0;:25;-1:-1:-1;;29267:19:73::1;:25::i;:::-;29258:34;;9721:20:::0;9744:10;:8;:10::i;:::-;9721:33;;9780:13;9765:12;:28;9761:111;;;9836:28;9852:12;9836:13;:28;:::i;:::-;9810:55;;-1:-1:-1;;;9810:55:73;;;;;;160:25:81;;148:2;133:18;;14:177;9603:380:25;9675:7;-1:-1:-1;;9858:14:25;9875:19;9887:6;9875:11;:19::i;:::-;9858:36;;9904:48;9913:12;:10;:12::i;:::-;9927:8;9937:6;9945;9904:8;:48::i;2973:148:24:-;3105:9;3098:16;;3020:13;;-1:-1:-1;;;;;;;;;;;2064:20:24;3098:16;;;:::i;30661:254:73:-;30761:6;-1:-1:-1;;;;;;;;;;;30849:15:73;30761:6;30865:44;30881:6;30889:8;30899:9;30865:15;:44::i;:::-;30849:61;;;;;;;;;;;;30842:68;;;30661:254;;;;;:::o;12781:112::-;12826:8;-1:-1:-1;;;;;;;;;;;12849:27:73;:39;-1:-1:-1;;;;;12849:39:73;;12781:112;-1:-1:-1;12781:112:73:o;4472:178:24:-;4541:4;4557:13;4573:12;:10;:12::i;:::-;4557:28;;4595:27;4605:5;4612:2;4616:5;4595:9;:27::i;33375:317:73:-;-1:-1:-1;;33441:6:73;:27;33437:134;;33487:10;:8;:10::i;:::-;33478:19;;33437:134;;;33536:10;:8;:10::i;:::-;33526:6;:20;;33518:46;;;;-1:-1:-1;;;33518:46:73;;;;;;;;;;;;33576:31;-1:-1:-1;;;;;;;;;;;33643:13:73;;:44;;-1:-1:-1;;;33643:44:73;;;;;22517:25:81;;;33681:4:73;22558:18:81;;;22551:60;33643:13:73;;-1:-1:-1;;;;;;33643:13:73;;:21;;22490:18:81;;33643:44:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33431:261;33375:317;:::o;8580:143:25:-;8646:7;8672:44;8689:6;8697:18;8672:16;:44::i;10030:413::-;10121:7;10140:17;10160:18;10172:5;10160:11;:18::i;:::-;10140:38;;10201:9;10192:6;:18;10188:108;;;10260:5;10267:6;10275:9;10233:52;;-1:-1:-1;;;10233:52:25;;;;;;;;;;:::i;10188:108::-;10306:14;10323:23;10339:6;10323:15;:23::i;:::-;10306:40;;10356:56;10366:12;:10;:12::i;:::-;10380:8;10390:5;10397:6;10405;10356:9;:56::i;:::-;10430:6;10030:413;-1:-1:-1;;;;;10030:413:25:o;10488:405::-;10577:7;10596:17;10616:16;10626:5;10616:9;:16::i;:::-;10596:36;;10655:9;10646:6;:18;10642:106;;;10712:5;10719:6;10727:9;10687:50;;-1:-1:-1;;;10687:50:25;;;;;;;;;;:::i;10642:106::-;10758:14;10775:21;10789:6;10775:13;:21::i;:::-;10758:38;;10806:56;10816:12;:10;:12::i;:::-;10830:8;10840:5;10847:6;10855;10806:9;:56::i;15080:384:73:-;15177:33;15213:24;15230:6;15213:16;:24::i;:::-;15276:22;;15248:103;;;-1:-1:-1;;;;;;;;15276:22:73;;;;22851:58:81;;22940:2;22925:18;;22918:34;;;-1:-1:-1;;;15311:25:73;;;;;;22968:18:81;;;22961:67;23059:2;23044:18;;23037:34;;;15276:22:73;;-1:-1:-1;;;;;;15248:103:73;;;;;22838:3:81;22823:19;15248:103:73;;;;;;;15382:20;:9;:18;:20::i;:::-;15357:45;;-1:-1:-1;;;;;15357:45:73;;;;-1:-1:-1;;;15357:45:73;-1:-1:-1;;15357:45:73;;;;;;15436:23;:12;:21;:23::i;:::-;15408:51;;-1:-1:-1;;;;;15408:51:73;;;;-1:-1:-1;;;15408:51:73;-1:-1:-1;;;;15408:51:73;;;;;;-1:-1:-1;;;15080:384:73:o;13937:599::-;-1:-1:-1;;;;;14148:18:73;;14045:31;14148:18;;;:10;:18;;;;;14180:19;;-1:-1:-1;;;;;;;;;;;5631:29:73;14045:31;-1:-1:-1;;;14180:19:73;;;;:44;;;;;;;;:::i;:::-;;14172:76;;;;-1:-1:-1;;;14172:76:73;;;;;;;;;;;;14262:8;:13;;14274:1;14262:13;14254:41;;;;-1:-1:-1;;;14254:41:73;;;;;;;;;;;;14322:165;;;;;;;;;;;;;14351:19;14322:165;;;;;;;14415:20;:9;:18;:20::i;:::-;-1:-1:-1;;;;;14322:165:73;;;;;14457:23;:12;:21;:23::i;:::-;-1:-1:-1;;;;;14322:165:73;;;-1:-1:-1;;;;;14301:18:73;;;;;;:10;;;:18;;;;;;;;:186;;;;;;;;-1:-1:-1;;14301:186:73;;;;;;;;;;:18;;;;-1:-1:-1;;14301:186:73;;-1:-1:-1;;;14301:186:73;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;14301:186:73;;;;;;;;;;;;-1:-1:-1;;;;;;14301:186:73;;;-1:-1:-1;;;;;;;;14301:186:73;;;;-1:-1:-1;;;;14301:186:73;;-1:-1:-1;;;14301:186:73;;;;;;;;;;;14498:33;-1:-1:-1;;;;;14498:33:73;;;;;;;14518:12;;14498:33;:::i;:::-;;;;;;;;14039:497;;13937:599;;;;:::o;24066:176::-;24198:34;;-1:-1:-1;;;;;;23831:2:81;23827:15;;;23823:53;24198:34:73;;;23811:66:81;-1:-1:-1;;;;;;23907:33:81;;23893:12;;;23886:55;24146:6:73;;24167:70;;23957:12:81;;24198:34:73;;;;;;;;;;;;24188:45;;;;;;24235:1;24167:20;:70::i;7309:148:25:-;7379:7;7405:45;7422:6;7430:19;7405:16;:45::i;17871:902:73:-;17910:16;17929:7;:5;:7::i;:::-;17910:26;;17942:16;17969:11;-1:-1:-1;;;;;17969:20:73;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17942:50;;18018:8;-1:-1:-1;;;;;18006:20:73;:8;-1:-1:-1;;;;;18006:20:73;;17998:49;;;;-1:-1:-1;;;17998:49:73;;;;;;;;;;;;18061:10;:8;:10::i;:::-;:15;18053:54;;;;-1:-1:-1;;;18053:54:73;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18188:13:73;;:21;;;-1:-1:-1;;;18188:21:73;;;;-1:-1:-1;;;;;18188:33:73;;;;:13;;:19;;:21;;;;;;;;;;;;;;:13;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;18188:33:73;;18180:79;;;;-1:-1:-1;;;18180:79:73;;;;;;;;;;;;18265:31;-1:-1:-1;;;;;;;;;;;18328:34:73;;-1:-1:-1;;;;;;18328:34:73;-1:-1:-1;;;;;18328:34:73;;;;;;;;;18484:13;;18443:59;;-1:-1:-1;;;18443:59:73;;18484:13;;;18443:59;;;24452:51:81;-1:-1:-1;24519:18:81;;;24512:34;18328::73;;-1:-1:-1;18443:32:73;;;;;24425:18:81;;18443:59:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18549:13:73;;18508:75;;-1:-1:-1;;;18508:75:73;;-1:-1:-1;;;;;18549:13:73;;;18508:75;;;24452:51:81;-1:-1:-1;;24519:18:81;;;24512:34;18508:32:73;;;;;;24425:18:81;;18508:75:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18589:57:73;;-1:-1:-1;;;18589:57:73;;-1:-1:-1;;;;;18630:11:73;24470:32:81;;18589:57:73;;;24452:51:81;-1:-1:-1;24519:18:81;;;24512:34;18589:32:73;;;;;24425:18:81;;18589:57:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18652:73:73;;-1:-1:-1;;;18652:73:73;;-1:-1:-1;;;;;18693:11:73;24470:32:81;;18652:73:73;;;24452:51:81;-1:-1:-1;;24519:18:81;;;24512:34;18652:32:73;;;;;24425:18:81;;18652:73:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;18736:32:73;;;-1:-1:-1;;;;;25278:32:81;;;25260:51;;25347:32;;25342:2;25327:18;;25320:60;18736:32:73;;25233:18:81;18736:32:73;;;;;;;17904:869;;;;17871:902::o;31353:196::-;31402:7;;-1:-1:-1;;;;;;;;;;;31504:13:73;;:40;;-1:-1:-1;;;31504:40:73;;31538:4;31504:40;;;9594:51:81;31504:13:73;;-1:-1:-1;;;;;;31504:13:73;;:25;;9567:18:81;;31504:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31491:10;:8;:10::i;:::-;:53;;;;:::i;31799:155::-;31873:7;31895:54;31904:24;31922:5;31904:17;:24::i;:::-;31930:18;:16;:18::i;:::-;31895:8;:54::i;32813:292::-;-1:-1:-1;;32880:6:73;:27;32876:166;;32917:31;-1:-1:-1;;;;;;;;;;;32995:13:73;;:40;;-1:-1:-1;;;32995:40:73;;33029:4;32995:40;;;9594:51:81;32995:13:73;;-1:-1:-1;;;;;;32995:13:73;;:25;;9567:18:81;;32995:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32986:49;;32909:133;32876:166;33076:6;33055:17;33065:6;33055:9;:17::i;:::-;:27;33047:53;;;;-1:-1:-1;;;33047:53:73;;;;;;;;;;;;32813:292;:::o;19249:754::-;19389:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9612:32:81;;;8269:71:73;;;9594:51:81;9567:18;;8269:71:73;9448:203:81;8269:71:73;;19555:33:::1;19591:26;19608:8;19591:16;:26::i;:::-;19555:62:::0;-1:-1:-1;19661:19:73::1;19638::::0;;-1:-1:-1;;;19638:19:73;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;:92;;;-1:-1:-1::0;19707:23:73::1;19684:19:::0;;-1:-1:-1;;;19684:19:73;::::1;;;:46;::::0;::::1;;;;;;:::i;:::-;;19638:92;19764:19:::0;;19754:8;;-1:-1:-1;;;19764:19:73;;::::1;;;::::0;19623:167:::1;;;;-1:-1:-1::0;;;19623:167:73::1;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19831:21:73;;19796:150:::1;::::0;19815:8;;19831:21:::1;;19860:54;19831:21:::0;19898:15:::1;19860:14;:54::i;:::-;19923:17;:6;:15;:17::i;19796:150::-;-1:-1:-1::0;;;;19959:39:73;19249:754;-1:-1:-1;;;;;;19249:754:73:o;31590:168::-;31662:7;31684:69;31693:22;31709:5;31693:15;:22::i;:::-;31717:35;31733:18;:16;:18::i;4708:195:24:-;-1:-1:-1;;;;;4867:20:24;;;4788:7;4867:20;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;4708:195::o;27509:965:73:-;27641:21;27624:6;8411:33;8447:24;8464:6;8447:16;:24::i;:::-;8411:60;-1:-1:-1;8508:19:73;8485;;-1:-1:-1;;;8485:19:73;;;;:42;;;;;;;;:::i;:::-;8553:19;;8545:6;;-1:-1:-1;;;8553:19:73;;;;;;8485:42;8477:97;;;;-1:-1:-1;;;8477:97:73;;;;;;;;;:::i;:::-;;;8615:21;8639:10;:8;:10::i;:::-;8684:25;;8615:34;;-1:-1:-1;;;;8684:25:73;;-1:-1:-1;;;;;8684:25:73;8660:50;;8656:166;;;8738:25;;8720:61;;8730:50;;8767:13;;-1:-1:-1;;;8738:25:73;;-1:-1:-1;;;;;8738:25:73;8730:50;:::i;8720:61::-;;8805:10;:8;:10::i;:::-;8789:26;;8656:166;27670:19:::1;::::0;27740:4;-1:-1:-1;;;;;27728:24:73;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27719:33;;27763:9;27758:712;27774:15:::0;;::::1;27758:712;;;27804:15;27829:4;;27834:1;27829:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;27839:1:::1;::::0;27837::::1;::::0;27829:12:::1;:::i;:::-;27822:20;::::0;::::1;:::i;:::-;27804:38:::0;-1:-1:-1;27854:6:73;;;:34:::1;;-1:-1:-1::0;;;;;;;27864:24:73;;::::1;::::0;;::::1;;;27854:34;27850:211;;;27971:48;27988:12;:10;:12::i;:::-;28002:6;28010:8;27971:16;:48::i;:::-;28044:8;28029:23;;27850:211;28080:28;28100:4;;28105:1;28100:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;28080:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;28080:19:73;::::1;::::0;:28;-1:-1:-1;;28080:19:73::1;:28::i;:::-;28068:6;28075:1;28068:9;;;;;;;;:::i;:::-;;;;;;:40;;;;28121:5;28116:348;;28138:16;28168:6;28175:1;28168:9;;;;;;;;:::i;:::-;;;;;;;28157:32;;;;;;;;;;;;:::i;:::-;28203:47;::::0;-1:-1:-1;;;28203:47:73;;::::1;::::0;::::1;160:25:81::0;;;28138:51:73;;-1:-1:-1;28262:4:73::1;::::0;-1:-1:-1;;;;;28219:11:73::1;28203:37;::::0;::::1;::::0;133:18:81;;28203:47:73::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28203:64:73::1;;28199:257;;28362:59;28379:12;:10;:12::i;:::-;28393:6:::0;-1:-1:-1;;;;;;28362:16:73::1;:59::i;:::-;28441:4;28433:12;;28199:257;28128:336;28116:348;-1:-1:-1::0;27791:3:73::1;;27758:712;;;;27664:810;;8834:20:::0;8857:10;:8;:10::i;19050:163::-;19149:6;8277:10;-1:-1:-1;;;;;8299:11:73;8277:34;;;8269:71;;;;-1:-1:-1;;;8269:71:73;;-1:-1:-1;;;;;9612:32:81;;;8269:71:73;;;9594:51:81;9567:18;;8269:71:73;9448:203:81;8269:71:73;-1:-1:-1;;;;19170:38:73;19050:163;-1:-1:-1;;;;19050:163:73:o;29900:594::-;30040:21;30023:6;9372:33;9408:24;9425:6;9408:16;:24::i;:::-;9372:60;-1:-1:-1;9476:19:73;9453;;-1:-1:-1;;;9453:19:73;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;9522:23:73;9499:19;;-1:-1:-1;;;9499:19:73;;;;:46;;;;;;;;:::i;:::-;;9453:92;9577:19;;9569:6;;-1:-1:-1;;;9577:19:73;;;;;;9438:165;;;;-1:-1:-1;;;9438:165:73;;;;;;;;;:::i;:::-;;;9674:21;9698:10;:8;:10::i;:::-;9674:34;-1:-1:-1;30069:19:73::1;30115:4:::0;-1:-1:-1;;;;;30103:24:73;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30094:33;;30138:9;30133:357;30149:15:::0;;::::1;30133:357;;;30179:15;30204:4;;30209:1;30204:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;30214:1:::1;::::0;30212::::1;::::0;30204:12:::1;:::i;:::-;30197:20;::::0;::::1;:::i;:::-;30179:38:::0;-1:-1:-1;30229:6:73;;;:34:::1;;-1:-1:-1::0;;;;;;;30239:24:73;;::::1;::::0;;::::1;;;30229:34;30225:211;;;30346:48;30363:12;:10;:12::i;:::-;30377:6;30385:8;30346:16;:48::i;:::-;30419:8;30404:23;;30225:211;30455:28;30475:4;;30480:1;30475:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;30455:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;30455:19:73;::::1;::::0;:28;-1:-1:-1;;30455:19:73::1;:28::i;:::-;30443:6;30450:1;30443:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:40;-1:-1:-1;30166:3:73::1;;30133:357;;;;30063:431;9721:20:::0;9744:10;:8;:10::i;15749:421::-;15944:21;15931:9;:34;;;;;;;;:::i;:::-;;15923:69;;;;-1:-1:-1;;;15923:69:73;;;;;;;;;;;;15998:33;16034:24;16051:6;16034:16;:24::i;:::-;15998:60;;16089:6;-1:-1:-1;;;;;16069:59:73;;16097:12;:19;;;;;;;;;;;;16118:9;16069:59;;;;;;;:::i;:::-;;;;;;;;16134:31;;16156:9;;16134:12;;-1:-1:-1;;16134:31:73;-1:-1:-1;;;16156:9:73;16134:31;;;;;;;;:::i;:::-;;;;;;15823:347;15749:421;;:::o;20947:118::-;20990:7;21027;:5;:7::i;:::-;21012:48;;-1:-1:-1;;;21012:48:73;;21054:4;21012:48;;;9594:51:81;-1:-1:-1;;;;;21012:33:73;;;;;;;9567:18:81;;21012:48:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21005:55;;20947:118;:::o;10645:348::-;6931:20:22;:18;:20::i;:::-;10790:24:73::1;:22;:24::i;:::-;10820:14;10845:11;-1:-1:-1::0;;;;;10845:20:73::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10820:48;;10874:30;10896:6;10874:14;:30::i;:::-;10910:28;10923:5;10930:7;10910:12;:28::i;:::-;10944:44;10976:11;10944:31;:44::i;11354:213:25:-:0;11451:7;11477:83;11491:13;:11;:13::i;:::-;:17;;11507:1;11491:17;:::i;:::-;11526:23;13626:5;11526:2;:23;:::i;:::-;4027:14:24;;11510:39:25;;;;:::i;:::-;11477:6;;:83;11551:8;11477:13;:83::i;12988:294:73:-;-1:-1:-1;;;;;13176:18:73;;13053:33;13176:18;;;:10;:18;;;;;13208:19;;13176:18;;-1:-1:-1;;;;;;;;;;;5631:29:73;-1:-1:-1;;;13208:19:73;;;;:44;;;;;;;;:::i;:::-;;;13269:6;13200:77;;;;;-1:-1:-1;;;13200:77:73;;-1:-1:-1;;;;;9612:32:81;;;13200:77:73;;;9594:51:81;9567:18;;13200:77:73;9448:203:81;13200:77:73;;13088:194;12988:294;;;:::o;20560:166::-;20661:7;20683:38;:36;:38::i;10001:128:24:-;10085:37;10094:5;10101:7;10110:5;10117:4;10085:8;:37::i;11017:213:25:-;11114:7;11140:83;11170:23;11114:7;11170:2;:23;:::i;:::-;4027:14:24;;11154:39:25;;;;:::i;:::-;11195:13;:11;:13::i;:::-;:17;;11211:1;11195:17;:::i;22973:292:73:-;23026:18;;-1:-1:-1;;;;;;;;;;;23149:13:73;;:40;;-1:-1:-1;;;23149:40:73;;23183:4;23149:40;;;9594:51:81;23149:13:73;;-1:-1:-1;23132:58:73;;23141:6;;-1:-1:-1;;;;;23149:13:73;;:25;;9567:18:81;;23149:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23132:58::-;23196:13;;:64;;-1:-1:-1;;;23196:64:73;;;;;28012:25:81;;;23239:4:73;28053:18:81;;;28046:60;;;28122:18;;;28115:60;23119:71:73;;-1:-1:-1;;;;;;23196:13:73;;:22;;27985:18:81;;23196:64:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11319:745::-;-1:-1:-1;;;;;11388:34:73;;11380:67;;;;-1:-1:-1;;;11380:67:73;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;11788:13:73;;-1:-1:-1;;;;;11807:27:73;;;-1:-1:-1;;;;;;11807:27:73;;;;;11788:13;11844:31;;11840:90;;11892:7;:5;:7::i;:::-;11877:53;;-1:-1:-1;;;11877:53:73;;-1:-1:-1;;;;;24470:32:81;;;11877:53:73;;;24452:51:81;11928:1:73;24519:18:81;;;24512:34;11877:31:73;;;;;;;24425:18:81;;11877:53:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11840:90;11951:7;:5;:7::i;:::-;11936:72;;-1:-1:-1;;;11936:72:73;;-1:-1:-1;;;;;24470:32:81;;;11936:72:73;;;24452:51:81;-1:-1:-1;;24519:18:81;;;24512:34;11936:31:73;;;;;;;24425:18:81;;11936:72:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;12019:40:73;;;-1:-1:-1;;;;;25278:32:81;;;25260:51;;25347:32;;25342:2;25327:18;;25320:60;12019:40:73;;25233:18:81;12019:40:73;;;;;;;11374:690;;11319:745;:::o;34380:314:68:-;34436:6;-1:-1:-1;;;;;34557:5:68;:33;34553:105;;;34613:34;;-1:-1:-1;;;34613:34:68;;;;;160:25:81;;;133:18;;34613:34:68;14:177:81;34553:105:68;-1:-1:-1;34681:5:68;34380:314::o;23269:468:73:-;23394:19;-1:-1:-1;;;;;;;;;;;23394:19:73;23506:44;23522:6;23530:8;23540:9;23506:15;:44::i;:::-;23488:62;;23596:6;23571:1;:15;;:21;23587:4;23571:21;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;-1:-1:-1;23608:29:73;;23571:31;;-1:-1:-1;23630:6:73;;-1:-1:-1;23608:1:73;;:12;;:29;;23630:6;;-1:-1:-1;;;23608:29:73;;;;;:::i;:::-;;;-1:-1:-1;;;;;23608:29:73;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23719:12:73;;23648:84;;;29257:10:81;29245:23;;;29227:42;;29305:23;;29300:2;29285:18;;29278:51;29345:18;;;29338:34;;;29403:2;29388:18;;29381:34;;;-1:-1:-1;;;23719:12:73;;;23608:29;23719:12;29446:3:81;29431:19;;29424:51;-1:-1:-1;;;;;23648:84:73;;;;;29214:3:81;29199:19;23648:84:73;;;;;;;23415:322;;23269:468;;;;;;:::o;1219:160:51:-;1328:43;;-1:-1:-1;;;;;24470:32:81;;;1328:43:51;;;24452:51:81;24519:18;;;24512:34;;;1301:71:51;;1321:5;;1343:14;;;;;24425:18:81;;1328:43:51;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1328:43:51;;;;;;;;;;;1301:19;:71::i;11745:476:24:-;11844:24;11871:25;11881:5;11888:7;11871:9;:25::i;:::-;11844:52;;-1:-1:-1;;11910:16:24;:36;11906:309;;;11985:5;11966:16;:24;11962:130;;;12044:7;12053:16;12071:5;12017:60;;-1:-1:-1;;;12017:60:24;;;;;;;;;;:::i;11962:130::-;12133:57;12142:5;12149:7;12177:5;12158:16;:24;12184:5;12133:8;:57::i;6605:300::-;-1:-1:-1;;;;;6688:18:24;;6684:86;;6729:30;;-1:-1:-1;;;6729:30:24;;6756:1;6729:30;;;9594:51:81;9567:18;;6729:30:24;9448:203:81;6684:86:24;-1:-1:-1;;;;;6783:16:24;;6779:86;;6822:32;;-1:-1:-1;;;6822:32:24;;6851:1;6822:32;;;9594:51:81;9567:18;;6822:32:24;9448:203:81;6779:86:24;6874:24;6882:4;6888:2;6892:5;6874:7;:24::i;24246:386:73:-;24341:19;24363:34;24380:6;24388:8;24363:16;:34::i;:::-;24341:56;;24404:14;24459:4;-1:-1:-1;;;;;24424:57:73;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24424:67:73;;24499:6;24521:4;24534:12;24424:128;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;24403:149:73;-1:-1:-1;24597:6:73;24605;24613:12;24403:149;24558:69;;;;-1:-1:-1;;;24558:69:73;;;;;;;;;;:::i;2500:151:54:-;2575:12;2606:38;2628:6;2636:4;2642:1;2606:21;:38::i;22503:222:73:-;22586:16;3754;22618:35;;;;22617:103;;22699:20;;;;:9;:20;:::i;:::-;22617:103;;;22657:32;22679:9;22657:21;:32::i;4603:312:23:-;4683:4;-1:-1:-1;;;;;4692:6:23;4675:23;;;:120;;;4789:6;-1:-1:-1;;;;;4753:42:23;:32;:30;:32::i;:::-;-1:-1:-1;;;;;4753:42:23;;;4675:120;4658:251;;;4869:29;;-1:-1:-1;;;4869:29:23;;;;;;;;;;;4658:251;4603:312::o;6057:538::-;6174:17;-1:-1:-1;;;;;6156:50:23;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6156:52:23;;;;;;;;-1:-1:-1;;6156:52:23;;;;;;;;;;;;:::i;:::-;;;6152:437;;6518:60;;-1:-1:-1;;;6518:60:23;;-1:-1:-1;;;;;9612:32:81;;6518:60:23;;;9594:51:81;9567:18;;6518:60:23;9448:203:81;6152:437:23;-1:-1:-1;;;;;;;;;;;6250:40:23;;6246:120;;6317:34;;-1:-1:-1;;;6317:34:23;;;;;160:25:81;;;133:18;;6317:34:23;14:177:81;6246:120:23;6379:54;6409:17;6428:4;6379:29;:54::i;5032:213::-;5106:4;-1:-1:-1;;;;;5115:6:23;5098:23;;5094:145;;5199:29;;-1:-1:-1;;;5199:29:23;;;;;;;;;;;11631:890:25;-1:-1:-1;;;;;;;;;;;12384:8:25;;12357:67;;-1:-1:-1;;;;;12384:8:25;12394:6;12410:4;12417:6;12357:26;:67::i;:::-;12434:23;12440:8;12450:6;12434:5;:23::i;:::-;12489:8;-1:-1:-1;;;;;12473:41:25;12481:6;-1:-1:-1;;;;;12473:41:25;;12499:6;12507;12473:41;;;;;;19695:25:81;;;19751:2;19736:18;;19729:34;19683:2;19668:18;;19523:246;12473:41:25;;;;;;;;11732:789;11631:890;;;;:::o;1618:188:51:-;1745:53;;-1:-1:-1;;;;;31477:32:81;;;1745:53:51;;;31459:51:81;31546:32;;;31526:18;;;31519:60;31595:18;;;31588:34;;;1718:81:51;;1738:5;;1760:18;;;;;31432::81;;1745:53:51;31257:371:81;22729:240:73;15254:15:58;-1:-1:-1;;;;;;22926:16:73;;;;;3877:27:58;;;;3986:14;;;;;-1:-1:-1;;;3986:14:58;3977:24;15258:3;15254:15;;22892::73;;;;;-1:-1:-1;;;;;;15146:26:58;15245:25;;22729:240:73:o;31958:606::-;32114:15;32132:10;:8;:10::i;:::-;32114:28;;32162:6;32152:7;:16;32148:350;;;32256:31;-1:-1:-1;;;;;;;;;;;32355:13:73;;:40;;-1:-1:-1;;;32355:40:73;;32389:4;32355:40;;;9594:51:81;32355:13:73;;-1:-1:-1;;;;;;32355:13:73;;:25;;9567:18:81;;32355:40:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32334:16;32343:7;32334:6;:16;:::i;:::-;32333:62;;32325:88;;;;-1:-1:-1;;;32325:88:73;;;;;;;;;;;;32421:13;;-1:-1:-1;;;;;32421:13:73;:22;32444:16;32453:7;32444:6;:16;:::i;:::-;32421:70;;-1:-1:-1;;;;;;32421:70:73;;;;;;;;;;28012:25:81;;;;32470:4:73;28053:18:81;;;28046:60;;;28122:18;;;28115:60;27985:18;;32421:70:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32170:328;32148:350;32503:56;32519:6;32527:8;32537:5;32544:6;32552;32503:15;:56::i;:::-;32108:456;31958:606;;;;;:::o;11296:213:68:-;11352:6;-1:-1:-1;;;;;11374:24:68;;11370:103;;;11421:41;;-1:-1:-1;;;11421:41:68;;11452:2;11421:41;;;31814:36:81;31866:18;;;31859:34;;;31787:18;;11421:41:68;31633:266:81;58753:263:58;58826:13;58864:2;58855:6;:11;;;58851:42;;;58875:18;;-1:-1:-1;;;58875:18:58;;;;;;;;;;;58851:42;-1:-1:-1;58964:1:58;58960:14;58956:25;-1:-1:-1;;;;;;58952:48:58;;58753:263::o;8017:153:25:-;8082:7;8108:55;8125:16;8135:5;8125:9;:16::i;:::-;8143:19;8108:16;:55::i;3371:111:67:-;3429:7;3066:5;;;3463;;;3065:36;3060:42;;3455:20;2825:294;8218:112:25;8281:7;8307:16;8317:5;8307:9;:16::i;7084:141:22:-;8870:21;8560:40;-1:-1:-1;;;8560:40:22;;;;7146:73;;7191:17;;-1:-1:-1;;;7191:17:22;;;;;;;;;;;2970:67:23;6931:20:22;:18;:20::i;5090:114:25:-;6931:20:22;:18;:20::i;:::-;5165:32:25::1;5190:6;5165:24;:32::i;2282:147:24:-:0;6931:20:22;:18;:20::i;:::-;2384:38:24::1;2407:5;2414:7;2384:22;:38::i;11048:267:73:-:0;6931:20:22;:18;:20::i;:::-;11206:11:73::1;-1:-1:-1::0;;;;;11206:20:73::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:71;::::0;-1:-1:-1;;;11206:71:73;;-1:-1:-1;;;;;11245:11:73::1;24470:32:81::0;;11206:71:73::1;::::0;::::1;24452:51:81::0;-1:-1:-1;;24519:18:81;;;24512:34;11206:30:73;;;::::1;::::0;::::1;::::0;24425:18:81;;11206:71:73::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11283:27;11298:11;11283:14;:27::i;9351:238:67:-:0;9452:7;9506:76;9522:26;9539:8;9522:16;:26::i;:::-;:59;;;;;9580:1;9565:11;9552:25;;;;;:::i;:::-;9562:1;9559;9552:25;:29;9522:59;34914:9:68;34907:17;;34795:145;9506:76:67;9478:25;9485:1;9488;9491:11;9478:6;:25::i;:::-;:104;;;;:::i;2329:429:21:-;2391:7;2435:8;3606:2;2545:10;-1:-1:-1;;;;;1830:17:21;2054:31;;2526:71;;;;;2578:19;2560:14;:37;;2526:71;2522:230;;;2636:8;;2645:36;2662:19;2645:14;:36;:::i;:::-;2636:47;;;;;:::i;:::-;2628:56;;;:::i;:::-;2620:65;;2613:72;;;;2329:429;:::o;2522:230::-;966:10:26;2716:25:21;;;;2329:429;:::o;10976:487:24:-;-1:-1:-1;;;;;;;;;;;;;;;;11141:19:24;;11137:89;;11183:32;;-1:-1:-1;;;11183:32:24;;11212:1;11183:32;;;9594:51:81;9567:18;;11183:32:24;9448:203:81;11137:89:24;-1:-1:-1;;;;;11239:21:24;;11235:90;;11283:31;;-1:-1:-1;;;11283:31:24;;11311:1;11283:31;;;9594:51:81;9567:18;;11283:31:24;9448:203:81;11235:90:24;-1:-1:-1;;;;;11334:20:24;;;;;;;:13;;;:20;;;;;;;;:29;;;;;;;;;:37;;;11381:76;;;;11431:7;-1:-1:-1;;;;;11415:31:24;11424:5;-1:-1:-1;;;;;11415:31:24;;11440:5;11415:31;;;;160:25:81;;148:2;133:18;;14:177;11381:76:24;11074:389;10976:487;;;;:::o;7686:720:51:-;7766:18;7794:19;7932:4;7929:1;7922:4;7916:11;7909:4;7903;7899:15;7896:1;7889:5;7882;7877:60;7989:7;7979:176;;8033:4;8027:11;8078:16;8075:1;8070:3;8055:40;8124:16;8119:3;8112:29;7979:176;-1:-1:-1;;8232:1:51;8226:8;8182:16;;-1:-1:-1;8258:15:51;;:68;;8310:11;8325:1;8310:16;;8258:68;;;-1:-1:-1;;;;;8276:26:51;;;:31;8258:68;8254:146;;;8349:40;;-1:-1:-1;;;8349:40:51;;-1:-1:-1;;;;;9612:32:81;;8349:40:51;;;9594:51:81;9567:18;;8349:40:51;9448:203:81;7220:1170:24;-1:-1:-1;;;;;;;;;;;;;;;;7362:18:24;;7358:546;;7516:5;7498:1;:14;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;7358:546:24;;-1:-1:-1;7358:546:24;;-1:-1:-1;;;;;7574:17:24;;7552:19;7574:17;;;;;;;;;;;7609:19;;;7605:115;;;7680:4;7686:11;7699:5;7655:50;;-1:-1:-1;;;7655:50:24;;;;;;;;;;:::i;7605:115::-;-1:-1:-1;;;;;7840:17:24;;:11;:17;;;;;;;;;;7860:19;;;;7840:39;;7358:546;-1:-1:-1;;;;;7918:16:24;;7914:429;;8081:14;;;:23;;;;;;;7914:429;;;-1:-1:-1;;;;;8294:15:24;;:11;:15;;;;;;;;;;:24;;;;;;7914:429;8373:2;-1:-1:-1;;;;;8358:25:24;8367:4;-1:-1:-1;;;;;8358:25:24;;8377:5;8358:25;;;;160::81;;148:2;133:18;;14:177;8358:25:24;;;;;;;;7295:1095;7220:1170;;;:::o;2975:407:54:-;3074:12;3126:5;3102:21;:29;3098:123;;;3154:56;;-1:-1:-1;;;3154:56:54;;3181:21;3154:56;;;19695:25:81;19736:18;;;19729:34;;;19668:18;;3154:56:54;19523:246:81;3098:123:54;3231:12;3245:23;3272:6;-1:-1:-1;;;;;3272:11:54;3291:5;3298:4;3272:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:73;;;;3320:55;3347:6;3355:7;3364:10;3320:26;:55::i;:::-;3313:62;2975:407;-1:-1:-1;;;;;;2975:407:54:o;21959:540:73:-;22085:4;22032:16;;3874:5;22120:24;3816:10;22120:9;:24;:::i;:::-;22119:44;;;;:::i;:::-;22095:68;;22224:200;22249:6;:18;;22264:3;22249:18;;;22258:3;22249:18;22231:37;;:13;:37;22224:200;;22295:6;:18;;22310:3;22295:18;;;22304:3;22295:18;22278:35;;;;;;:::i;:::-;;-1:-1:-1;22321:11:73;;;:::i;:::-;;-1:-1:-1;22349:13:73;22361:1;22321:11;22349:13;:::i;:::-;:18;;;:68;;;;-1:-1:-1;22372:15:73;22384:3;22372:9;:15;:::i;:::-;:20;;;;;:44;;-1:-1:-1;22396:15:73;22408:3;22396:9;:15;:::i;:::-;:20;;;22372:44;22340:77;;22224:200;;;22461:32;22471:13;22486:6;22461:9;:32::i;:::-;22443:15;:9;22455:3;22443:15;:::i;:::-;:50;;;;;;:::i;1441:138:44:-;1493:7;-1:-1:-1;;;;;;;;;;;1519:47:44;1899:163:61;2264:344:44;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:44;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;8733:208:24:-;-1:-1:-1;;;;;8803:21:24;;8799:91;;8847:32;;-1:-1:-1;;;8847:32:24;;8876:1;8847:32;;;9594:51:81;9567:18;;8847:32:24;9448:203:81;8799:91:24;8899:35;8915:1;8919:7;8928:5;8899:7;:35::i;12588:974:25:-;-1:-1:-1;;;;;;;;;;;;;;;;12822:15:25;;;;;;;12818:84;;12853:38;12869:5;12876:6;12884;12853:15;:38::i;:::-;13410:20;13416:5;13423:6;13410:5;:20::i;:::-;13463:8;;13440:50;;-1:-1:-1;;;;;13463:8:25;13473;13483:6;13440:22;:50::i;:::-;13533:5;-1:-1:-1;;;;;13506:49:25;13523:8;-1:-1:-1;;;;;13506:49:25;13515:6;-1:-1:-1;;;;;13506:49:25;;13540:6;13548;13506:49;;;;;;19695:25:81;;;19751:2;19736:18;;19729:34;19683:2;19668:18;;19523:246;13506:49:25;;;;;;;;12751:811;12588:974;;;;;:::o;5210:304::-;6931:20:22;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;5295:24:25::1;::::0;5390:28:::1;5411:6:::0;5390:20:::1;:28::i;:::-;5352:66;;;;5452:7;:28;;5478:2;5452:28;;;5462:13;5452:28;5428:52:::0;;-1:-1:-1;;;;;;5490:17:25;-1:-1:-1;;;5428:52:25::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;;5490:17:25;;-1:-1:-1;;;;;5490:17:25;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;5210:304:25:o;2435:216:24:-;6931:20:22;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2600:7:24;:15:::1;2610:5:::0;2600:7;:15:::1;:::i;:::-;-1:-1:-1::0;2625:9:24::1;::::0;::::1;:19;2637:7:::0;2625:9;:19:::1;:::i;28183:122:67:-:0;28251:4;28292:1;28280:8;28274:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;28297:1;28274:24;28267:31;;28183:122;;;:::o;4996:4226::-;5078:14;5449:5;;;5078:14;-1:-1:-1;;5453:1:67;5449;5621:20;5694:5;5690:2;5687:13;5679:5;5675:2;5671:14;5667:34;5658:43;;;5796:5;5805:1;5796:10;5792:368;;6134:11;6126:5;:19;;;;;:::i;:::-;;6119:26;;;;;;5792:368;6285:5;6270:11;:20;6266:143;;6310:84;3066:5;6330:16;;3065:36;940:4:59;3060:42:67;6310:11;:84::i;:::-;6664:17;6799:11;6796:1;6793;6786:25;7199:12;7229:15;;;7214:31;;7348:22;;;;;8094:1;8075;:15;;8074:21;;8327;;;8323:25;;8312:36;8397:21;;;8393:25;;8382:36;8469:21;;;8465:25;;8454:36;8540:21;;;8536:25;;8525:36;8613:21;;;8609:25;;8598:36;8687:21;;;8683:25;;;8672:36;7597:12;;;;7593:23;;;7618:1;7589:31;6913:20;;;6902:32;;;7709:12;;;;6960:21;;;;7446:16;;;;7700:21;;;;9163:15;;;;;-1:-1:-1;;4996:4226:67;;;;;:::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;4605:408::-;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;9612:32:81;;4933:24:54;;;9594:51:81;9567:18;;4933:24:54;9448:203:81;4853:119:54;-1:-1:-1;4992:10:54;4985:17;;21069:886:73;21143:7;21284:2;21272:9;:14;21268:28;;;-1:-1:-1;21295:1:73;21288:8;;21268:28;21306:6;21302:123;;;21338:2;21326:9;:14;21322:28;;;-1:-1:-1;21349:1:73;21342:8;;21322:28;21358:11;;;;:::i;:::-;;;;21302:123;;;21406:2;21394:9;:14;21390:28;;;-1:-1:-1;21417:1:73;21410:8;;21390:28;21456:2;21444:9;:14;21443:507;;21495:3;21483:9;:15;21482:468;;21539:3;21527:9;:15;21526:424;;21587:3;21575:9;:15;21574:376;;21639:3;21627:9;:15;21626:324;;21695:3;21683:9;:15;21682:268;;21755:3;21743:9;:15;21742:208;;21819:3;21807:9;:15;21806:144;;21888:3;21876:9;:15;21875:75;;21948:2;21443:507;;21875:75;21919:2;21443:507;;21806:144;21848:2;21443:507;;21742:208;21782:1;21443:507;;21682:268;21720:1;21443:507;;21626:324;21662:1;21443:507;;21574:376;21608:1;21443:507;;21526:424;21558:1;21443:507;;21482:468;21512:1;21443:507;;;21470:1;21443:507;21430:520;;;21069:886;-1:-1:-1;;;21069:886:73:o;1671:281:44:-;1748:17;-1:-1:-1;;;;;1748:29:44;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:44;;-1:-1:-1;;;;;9612:32:81;;1805:47:44;;;9594:51:81;9567:18;;1805:47:44;9448:203:81;1744:119:44;-1:-1:-1;;;;;;;;;;;1872:73:44;;-1:-1:-1;;;;;;1872:73:44;-1:-1:-1;;;;;1872:73:44;;;;;;;;;;1671:281::o;3916:253:54:-;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:54;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4023:67;;;;4107:55;4134:6;4142:7;4151:10;4107:26;:55::i;6113:122:44:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:44;;;;;;;;;;;9259:206:24;-1:-1:-1;;;;;9329:21:24;;9325:89;;9373:30;;-1:-1:-1;;;9373:30:24;;9400:1;9373:30;;;9594:51:81;9567:18;;9373:30:24;9448:203:81;9325:89:24;9423:35;9431:7;9448:1;9452:5;9423:7;:35::i;5657:550:25:-;5851:43;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5851:43:25;-1:-1:-1;;;5851:43:25;;;5811:93;;5724:7;;;;;;;;-1:-1:-1;;;;;5811:26:25;;;:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5764:140;;;;5918:7;:39;;;;;5955:2;5929:15;:22;:28;;5918:39;5914:260;;;5973:24;6011:15;6000:38;;;;;;;;;;;;:::i;:::-;5973:65;-1:-1:-1;6076:15:25;6056:35;;6052:112;;6119:4;;6131:16;;-1:-1:-1;5657:550:25;-1:-1:-1;;;;5657:550:25:o;6052:112::-;5959:215;5914:260;-1:-1:-1;6191:5:25;;;;-1:-1:-1;5657:550:25;-1:-1:-1;;;5657:550:25:o;1776:194:59:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;5559:487:54;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;196:173:81;263:20;;-1:-1:-1;;;;;;312:32:81;;302:43;;292:71;;359:1;356;349:12;292:71;196:173;;;:::o;374:184::-;432:6;485:2;473:9;464:7;460:23;456:32;453:52;;;501:1;498;491:12;453:52;524:28;542:9;524:28;:::i;755:289::-;797:3;835:5;829:12;862:6;857:3;850:19;918:6;911:4;904:5;900:16;893:4;888:3;884:14;878:47;970:1;963:4;954:6;949:3;945:16;941:27;934:38;1033:4;1026:2;1022:7;1017:2;1009:6;1005:15;1001:29;996:3;992:39;988:50;981:57;;;755:289;;;;:::o;1049:220::-;1198:2;1187:9;1180:21;1161:4;1218:45;1259:2;1248:9;1244:18;1236:6;1218:45;:::i;1274:127::-;1335:10;1330:3;1326:20;1323:1;1316:31;1366:4;1363:1;1356:15;1390:4;1387:1;1380:15;1406:716;1471:5;1503:1;-1:-1:-1;;;;;1519:6:81;1516:30;1513:56;;;1549:18;;:::i;:::-;-1:-1:-1;1704:2:81;1698:9;-1:-1:-1;;1617:2:81;1596:15;;1592:29;;1762:2;1750:15;1746:29;1734:42;;1827:22;;;-1:-1:-1;;;;;1791:34:81;;1788:62;1785:88;;;1853:18;;:::i;:::-;1889:2;1882:22;1937;;;1922:6;-1:-1:-1;1922:6:81;1974:16;;;1971:25;-1:-1:-1;1968:45:81;;;2009:1;2006;1999:12;1968:45;2059:6;2054:3;2047:4;2039:6;2035:17;2022:44;2114:1;2107:4;2098:6;2090;2086:19;2082:30;2075:41;;1406:716;;;;;:::o;2127:222::-;2170:5;2223:3;2216:4;2208:6;2204:17;2200:27;2190:55;;2241:1;2238;2231:12;2190:55;2263:80;2339:3;2330:6;2317:20;2310:4;2302:6;2298:17;2263:80;:::i;2354:141::-;-1:-1:-1;;;;;2439:31:81;;2429:42;;2419:70;;2485:1;2482;2475:12;2500:700;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2739:9;2726:23;-1:-1:-1;;;;;2764:6:81;2761:30;2758:50;;;2804:1;2801;2794:12;2758:50;2827;2869:7;2860:6;2849:9;2845:22;2827:50;:::i;:::-;2817:60;;;2930:2;2919:9;2915:18;2902:32;-1:-1:-1;;;;;2949:8:81;2946:32;2943:52;;;2991:1;2988;2981:12;2943:52;3014;3058:7;3047:8;3036:9;3032:24;3014:52;:::i;:::-;3004:62;;;3116:2;3105:9;3101:18;3088:32;3129:41;3164:5;3129:41;:::i;:::-;3189:5;3179:15;;;2500:700;;;;;:::o;3205:226::-;3264:6;3317:2;3305:9;3296:7;3292:23;3288:32;3285:52;;;3333:1;3330;3323:12;3285:52;-1:-1:-1;3378:23:81;;3205:226;-1:-1:-1;3205:226:81:o;3436:121::-;3521:10;3514:5;3510:22;3503:5;3500:33;3490:61;;3547:1;3544;3537:12;3562:396;3629:6;3637;3690:2;3678:9;3669:7;3665:23;3661:32;3658:52;;;3706:1;3703;3696:12;3658:52;3745:9;3732:23;3764:41;3799:5;3764:41;:::i;:::-;3824:5;-1:-1:-1;3881:2:81;3866:18;;3853:32;3894;3853;3894;:::i;:::-;3945:7;3935:17;;;3562:396;;;;;:::o;3963:257::-;4022:6;4075:2;4063:9;4054:7;4050:23;4046:32;4043:52;;;4091:1;4088;4081:12;4043:52;4130:9;4117:23;4149:41;4184:5;4149:41;:::i;4225:127::-;4286:10;4281:3;4277:20;4274:1;4267:31;4317:4;4314:1;4307:15;4341:4;4338:1;4331:15;4357:240;4441:1;4434:5;4431:12;4421:143;;4486:10;4481:3;4477:20;4474:1;4467:31;4521:4;4518:1;4511:15;4549:4;4546:1;4539:15;4421:143;4573:18;;4357:240::o;4602:215::-;4752:2;4737:18;;4764:47;4741:9;4793:6;4764:47;:::i;4822:377::-;4890:6;4898;4951:2;4939:9;4930:7;4926:23;4922:32;4919:52;;;4967:1;4964;4957:12;4919:52;5006:9;4993:23;5025:41;5060:5;5025:41;:::i;:::-;5085:5;5163:2;5148:18;;;;5135:32;;-1:-1:-1;;;4822:377:81:o;5204:347::-;5255:8;5265:6;5319:3;5312:4;5304:6;5300:17;5296:27;5286:55;;5337:1;5334;5327:12;5286:55;-1:-1:-1;5360:20:81;;-1:-1:-1;;;;;5392:30:81;;5389:50;;;5435:1;5432;5425:12;5389:50;5472:4;5464:6;5460:17;5448:29;;5524:3;5517:4;5508:6;5500;5496:19;5492:30;5489:39;5486:59;;;5541:1;5538;5531:12;5486:59;5204:347;;;;;:::o;5556:826::-;5653:6;5661;5669;5677;5685;5738:3;5726:9;5717:7;5713:23;5709:33;5706:53;;;5755:1;5752;5745:12;5706:53;5794:9;5781:23;5813:41;5848:5;5813:41;:::i;:::-;5873:5;-1:-1:-1;5930:2:81;5915:18;;5902:32;5943:43;5902:32;5943:43;:::i;:::-;6005:7;-1:-1:-1;6085:2:81;6070:18;;6057:32;;-1:-1:-1;6166:2:81;6151:18;;6138:32;-1:-1:-1;;;;;6182:30:81;;6179:50;;;6225:1;6222;6215:12;6179:50;6264:58;6314:7;6305:6;6294:9;6290:22;6264:58;:::i;:::-;5556:826;;;;-1:-1:-1;5556:826:81;;-1:-1:-1;6341:8:81;;6238:84;5556:826;-1:-1:-1;;;5556:826:81:o;6594:118::-;6680:5;6673:13;6666:21;6659:5;6656:32;6646:60;;6702:1;6699;6692:12;6717:409;6799:6;6807;6860:2;6848:9;6839:7;6835:23;6831:32;6828:52;;;6876:1;6873;6866:12;6828:52;6915:9;6902:23;6934:41;6969:5;6934:41;:::i;:::-;6994:5;-1:-1:-1;7051:2:81;7036:18;;7023:32;7064:30;7023:32;7064:30;:::i;7131:808::-;7224:6;7232;7240;7248;7256;7309:3;7297:9;7288:7;7284:23;7280:33;7277:53;;;7326:1;7323;7316:12;7277:53;7365:9;7352:23;7384:41;7419:5;7384:41;:::i;:::-;7444:5;-1:-1:-1;7501:2:81;7486:18;;7473:32;7514;7473;7514;:::i;:::-;7565:7;-1:-1:-1;7624:2:81;7609:18;;7596:32;7637;7596;7637;:::i;:::-;7688:7;-1:-1:-1;7768:2:81;7753:18;;7740:32;;-1:-1:-1;7850:3:81;7835:19;;7822:33;7864:43;7822:33;7864:43;:::i;:::-;7926:7;7916:17;;;7131:808;;;;;;;;:::o;7944:528::-;8021:6;8029;8037;8090:2;8078:9;8069:7;8065:23;8061:32;8058:52;;;8106:1;8103;8096:12;8058:52;8145:9;8132:23;8164:41;8199:5;8164:41;:::i;:::-;8224:5;-1:-1:-1;8281:2:81;8266:18;;8253:32;8294:43;8253:32;8294:43;:::i;:::-;7944:528;;8356:7;;-1:-1:-1;;;8436:2:81;8421:18;;;;8408:32;;7944:528::o;8666:554::-;8745:6;8753;8761;8814:2;8802:9;8793:7;8789:23;8785:32;8782:52;;;8830:1;8827;8820:12;8782:52;8869:9;8856:23;8888:41;8923:5;8888:41;:::i;:::-;8948:5;-1:-1:-1;9004:2:81;8989:18;;8976:32;-1:-1:-1;;;;;9020:30:81;;9017:50;;;9063:1;9060;9053:12;9017:50;9102:58;9152:7;9143:6;9132:9;9128:22;9102:58;:::i;:::-;8666:554;;9179:8;;-1:-1:-1;9076:84:81;;-1:-1:-1;;;;8666:554:81:o;10082:595::-;10159:6;10167;10220:2;10208:9;10199:7;10195:23;10191:32;10188:52;;;10236:1;10233;10226:12;10188:52;10275:9;10262:23;10294:41;10329:5;10294:41;:::i;:::-;10354:5;-1:-1:-1;10410:2:81;10395:18;;10382:32;-1:-1:-1;;;;;10426:30:81;;10423:50;;;10469:1;10466;10459:12;10423:50;10492:22;;10545:4;10537:13;;10533:27;-1:-1:-1;10523:55:81;;10574:1;10571;10564:12;10523:55;10597:74;10663:7;10658:2;10645:16;10640:2;10636;10632:11;10597:74;:::i;:::-;10587:84;;;10082:595;;;;;:::o;10864:649::-;10950:6;10958;10966;10974;11027:3;11015:9;11006:7;11002:23;10998:33;10995:53;;;11044:1;11041;11034:12;10995:53;11083:9;11070:23;11102:41;11137:5;11102:41;:::i;:::-;11162:5;-1:-1:-1;11219:2:81;11204:18;;11191:32;11232:43;11191:32;11232:43;:::i;:::-;10864:649;;11294:7;;-1:-1:-1;;;;11374:2:81;11359:18;;11346:32;;11477:2;11462:18;11449:32;;10864:649::o;11518:377::-;11586:6;11594;11647:2;11635:9;11626:7;11622:23;11618:32;11615:52;;;11663:1;11660;11653:12;11615:52;11708:23;;;-1:-1:-1;11807:2:81;11792:18;;11779:32;11820:43;11779:32;11820:43;:::i;12080:656::-;12164:6;12172;12180;12188;12241:3;12229:9;12220:7;12216:23;12212:33;12209:53;;;12258:1;12255;12248:12;12209:53;12297:9;12284:23;12316:41;12351:5;12316:41;:::i;:::-;12376:5;-1:-1:-1;12433:2:81;12418:18;;12405:32;12446;12405;12446;:::i;:::-;12497:7;-1:-1:-1;12556:2:81;12541:18;;12528:32;12569;12528;12569;:::i;:::-;12080:656;;;;-1:-1:-1;12620:7:81;;12700:2;12685:18;12672:32;;-1:-1:-1;;12080:656:81:o;12741:535::-;12816:6;12824;12832;12885:2;12873:9;12864:7;12860:23;12856:32;12853:52;;;12901:1;12898;12891:12;12853:52;12940:9;12927:23;12959:41;12994:5;12959:41;:::i;:::-;13019:5;-1:-1:-1;13076:2:81;13061:18;;13048:32;13089;13048;13089;:::i;:::-;13140:7;-1:-1:-1;13199:2:81;13184:18;;13171:32;13212;13171;13212;:::i;13506:528::-;13583:6;13591;13599;13652:2;13640:9;13631:7;13627:23;13623:32;13620:52;;;13668:1;13665;13658:12;13620:52;13713:23;;;-1:-1:-1;13812:2:81;13797:18;;13784:32;13825:43;13784:32;13825:43;:::i;:::-;13887:7;-1:-1:-1;13946:2:81;13931:18;;13918:32;13959:43;13918:32;13959:43;:::i;14039:497::-;14116:6;14124;14132;14185:2;14173:9;14164:7;14160:23;14156:32;14153:52;;;14201:1;14198;14191:12;14153:52;14240:9;14227:23;14259:41;14294:5;14259:41;:::i;:::-;14319:5;14397:2;14382:18;;14369:32;;-1:-1:-1;14500:2:81;14485:18;;;14472:32;;14039:497;-1:-1:-1;;;14039:497:81:o;14541:637::-;14626:6;14634;14642;14650;14703:3;14691:9;14682:7;14678:23;14674:33;14671:53;;;14720:1;14717;14710:12;14671:53;14759:9;14746:23;14778:41;14813:5;14778:41;:::i;:::-;14838:5;-1:-1:-1;14895:2:81;14880:18;;14867:32;14908;14867;14908;:::i;15183:329::-;15250:6;15258;15311:2;15299:9;15290:7;15286:23;15282:32;15279:52;;;15327:1;15324;15317:12;15279:52;15366:9;15353:23;15385:41;15420:5;15385:41;:::i;:::-;15445:5;-1:-1:-1;15469:37:81;15502:2;15487:18;;15469:37;:::i;:::-;15459:47;;15183:329;;;;;:::o;15517:408::-;15585:6;15593;15646:2;15634:9;15625:7;15621:23;15617:32;15614:52;;;15662:1;15659;15652:12;15614:52;15701:9;15688:23;15720:41;15755:5;15720:41;:::i;:::-;15780:5;-1:-1:-1;15837:2:81;15822:18;;15809:32;15850:43;15809:32;15850:43;:::i;15930:766::-;16036:6;16044;16052;16105:2;16093:9;16084:7;16080:23;16076:32;16073:52;;;16121:1;16118;16111:12;16073:52;16160:9;16147:23;16179:41;16214:5;16179:41;:::i;:::-;16239:5;-1:-1:-1;16295:2:81;16280:18;;16267:32;-1:-1:-1;;;;;16311:30:81;;16308:50;;;16354:1;16351;16344:12;16308:50;16377:22;;16430:4;16422:13;;16418:27;-1:-1:-1;16408:55:81;;16459:1;16456;16449:12;16408:55;16499:2;16486:16;-1:-1:-1;;;;;16517:6:81;16514:30;16511:50;;;16557:1;16554;16547:12;16511:50;16610:7;16605:2;16595:6;16592:1;16588:14;16584:2;16580:23;16576:32;16573:45;16570:65;;;16631:1;16628;16621:12;16570:65;15930:766;;16662:2;16654:11;;;;;-1:-1:-1;16684:6:81;;-1:-1:-1;;;15930:766:81:o;16701:780::-;16861:4;16909:2;16898:9;16894:18;16939:2;16928:9;16921:21;16962:6;16997;16991:13;17028:6;17020;17013:22;17066:2;17055:9;17051:18;17044:25;;17128:2;17118:6;17115:1;17111:14;17100:9;17096:30;17092:39;17078:53;;17166:2;17158:6;17154:15;17187:1;17197:255;17211:6;17208:1;17205:13;17197:255;;;17304:2;17300:7;17288:9;17280:6;17276:22;17272:36;17267:3;17260:49;17332:40;17365:6;17356;17350:13;17332:40;:::i;:::-;17322:50;-1:-1:-1;17407:2:81;17430:12;;;;17395:15;;;;;17233:1;17226:9;17197:255;;;-1:-1:-1;17469:6:81;;16701:780;-1:-1:-1;;;;;;16701:780:81:o;17486:425::-;17572:6;17580;17633:2;17621:9;17612:7;17608:23;17604:32;17601:52;;;17649:1;17646;17639:12;17601:52;17688:9;17675:23;17707:41;17742:5;17707:41;:::i;:::-;17767:5;-1:-1:-1;17824:2:81;17809:18;;17796:32;17859:1;17847:14;;17837:42;;17875:1;17872;17865:12;17916:184;17986:6;18039:2;18027:9;18018:7;18014:23;18010:32;18007:52;;;18055:1;18052;18045:12;18007:52;-1:-1:-1;18078:16:81;;17916:184;-1:-1:-1;17916:184:81:o;18105:127::-;18166:10;18161:3;18157:20;18154:1;18147:31;18197:4;18194:1;18187:15;18221:4;18218:1;18211:15;18237:125;18302:9;;;18323:10;;;18320:36;;;18336:18;;:::i;18367:136::-;18402:3;-1:-1:-1;;;18423:22:81;;18420:48;;18448:18;;:::i;:::-;-1:-1:-1;18488:1:81;18484:13;;18367:136::o;18508:128::-;18575:9;;;18596:11;;;18593:37;;;18610:18;;:::i;18641:380::-;18720:1;18716:12;;;;18763;;;18784:61;;18838:4;18830:6;18826:17;18816:27;;18784:61;18891:2;18883:6;18880:14;18860:18;18857:38;18854:161;;18937:10;18932:3;18928:20;18925:1;18918:31;18972:4;18969:1;18962:15;19000:4;18997:1;18990:15;18854:161;;18641:380;;;:::o;20296:148::-;20384:4;20363:12;;;20377;;;20359:31;;20402:13;;20399:39;;;20418:18;;:::i;20449:312::-;-1:-1:-1;;;;;20657:32:81;;20639:51;;20627:2;20612:18;;20699:56;20751:2;20736:18;;20728:6;20699:56;:::i;20766:331::-;20871:9;20882;20924:8;20912:10;20909:24;20906:44;;;20946:1;20943;20936:12;20906:44;20975:6;20965:8;20962:20;20959:40;;;20995:1;20992;20985:12;20959:40;-1:-1:-1;;21021:23:81;;;21066:25;;;;;-1:-1:-1;20766:331:81:o;21102:338::-;21222:19;;-1:-1:-1;;;;;;21259:29:81;;;21308:1;21300:10;;21297:137;;;-1:-1:-1;;;;;;21369:1:81;21365:11;;;21362:1;21358:19;21354:46;;;21346:55;;21342:82;;-1:-1:-1;21297:137:81;;21102:338;;;;:::o;21445:261::-;21515:6;21568:2;21556:9;21547:7;21543:23;21539:32;21536:52;;;21584:1;21581;21574:12;21536:52;21616:9;21610:16;21635:41;21670:5;21635:41;:::i;21993:345::-;-1:-1:-1;;;;;22213:32:81;;;;22195:51;;22277:2;22262:18;;22255:34;;;;22320:2;22305:18;;22298:34;22183:2;22168:18;;21993:345::o;23082:569::-;23237:4;23279:3;23268:9;23264:19;23256:27;;23315:6;23309:13;23364:10;23353:9;23349:26;23338:9;23331:45;23385:79;23460:2;23449:9;23445:18;23438:4;23426:9;23422:2;23418:18;23414:29;23385:79;:::i;:::-;-1:-1:-1;;;;;23514:9:81;23510:2;23506:18;23502:51;23495:4;23484:9;23480:20;23473:81;-1:-1:-1;;;;;23605:9:81;23600:3;23596:19;23592:52;23585:4;23574:9;23570:20;23563:82;;23082:569;;;;:::o;24557:245::-;24624:6;24677:2;24665:9;24656:7;24652:23;24648:32;24645:52;;;24693:1;24690;24683:12;24645:52;24725:9;24719:16;24744:28;24766:5;24744:28;:::i;25391:127::-;25452:10;25447:3;25443:20;25440:1;25433:31;25483:4;25480:1;25473:15;25507:4;25504:1;25497:15;25523:521;25600:4;25606:6;25666:11;25653:25;25760:2;25756:7;25745:8;25729:14;25725:29;25721:43;25701:18;25697:68;25687:96;;25779:1;25776;25769:12;25687:96;25806:33;;25858:20;;;-1:-1:-1;;;;;;25890:30:81;;25887:50;;;25933:1;25930;25923:12;25887:50;25966:4;25954:17;;-1:-1:-1;25997:14:81;25993:27;;;25983:38;;25980:58;;;26034:1;26031;26024:12;26049:324;26243:2;26228:18;;26255:47;26232:9;26284:6;26255:47;:::i;:::-;26311:56;26363:2;26352:9;26348:18;26340:6;26311:56;:::i;26378:375::-;26466:1;26484:5;26498:249;26519:1;26509:8;26506:15;26498:249;;;26569:4;26564:3;26560:14;26554:4;26551:24;26548:50;;;26578:18;;:::i;:::-;26628:1;26618:8;26614:16;26611:49;;;26642:16;;;;26611:49;26725:1;26721:16;;;;;26681:15;;26498:249;;;26378:375;;;;;;:::o;26758:902::-;26807:5;26837:8;26827:80;;-1:-1:-1;26878:1:81;26892:5;;26827:80;26926:4;26916:76;;-1:-1:-1;26963:1:81;26977:5;;26916:76;27008:4;27026:1;27021:59;;;;27094:1;27089:174;;;;27001:262;;27021:59;27051:1;27042:10;;27065:5;;;27089:174;27126:3;27116:8;27113:17;27110:43;;;27133:18;;:::i;:::-;-1:-1:-1;;27189:1:81;27175:16;;27248:5;;27001:262;;27347:2;27337:8;27334:16;27328:3;27322:4;27319:13;27315:36;27309:2;27299:8;27296:16;27291:2;27285:4;27282:12;27278:35;27275:77;27272:203;;;-1:-1:-1;27384:19:81;;;27460:5;;27272:203;27507:42;-1:-1:-1;;27532:8:81;27526:4;27507:42;:::i;:::-;27585:6;27581:1;27577:6;27573:19;27564:7;27561:32;27558:58;;;27596:18;;:::i;:::-;27634:20;;26758:902;-1:-1:-1;;;26758:902:81:o;27665:140::-;27723:5;27752:47;27793:4;27783:8;27779:19;27773:4;27752:47;:::i;28525:216::-;28589:9;;;28617:11;;;28564:3;28647:9;;28675:10;;28671:19;;28700:10;;28692:19;;28668:44;28665:70;;;28715:18;;:::i;:::-;28665:70;;28525:216;;;;:::o;28746:228::-;28843:2;28813:17;;;28832;;;;28809:41;28916:26;28865:36;;-1:-1:-1;;28903:41:81;;28862:83;28859:109;;;28948:18;;:::i;29775:396::-;-1:-1:-1;;;;;29993:32:81;;;29975:51;;30062:32;;;;30057:2;30042:18;;30035:60;-1:-1:-1;;;;;;30131:33:81;;;30126:2;30111:18;;30104:61;29963:2;29948:18;;29775:396::o;30176:377::-;30251:6;30259;30312:2;30300:9;30291:7;30287:23;30283:32;30280:52;;;30328:1;30325;30318:12;30280:52;30360:9;30354:16;30379:28;30401:5;30379:28;:::i;:::-;30476:2;30461:18;;30455:25;30426:5;;-1:-1:-1;30489:32:81;30455:25;30489:32;:::i;30558:127::-;30619:10;30614:3;30610:20;30607:1;30600:31;30650:4;30647:1;30640:15;30674:4;30671:1;30664:15;30690:120;30730:1;30756;30746:35;;30761:18;;:::i;:::-;-1:-1:-1;30795:9:81;;30690:120::o;31904:374::-;32025:19;;-1:-1:-1;;;;;;32062:40:81;;;32122:2;32114:11;;32111:161;;;-1:-1:-1;;;;;;32184:2:81;32180:12;;;;32177:1;32173:20;32169:58;;;32161:67;32157:105;;;;31904:374;-1:-1:-1;;31904:374:81:o;32283:301::-;32412:3;32450:6;32444:13;32496:6;32489:4;32481:6;32477:17;32472:3;32466:37;32558:1;32522:16;;32547:13;;;-1:-1:-1;32522:16:81;32283:301;-1:-1:-1;32283:301:81:o;32589:188::-;32627:3;32671:10;32664:5;32660:22;32706:10;32697:7;32694:23;32691:49;;32720:18;;:::i;:::-;32769:1;32756:15;;32589:188;-1:-1:-1;;32589:188:81:o;32782:170::-;32813:1;32847:10;32844:1;32840:18;32877:3;32867:37;;32884:18;;:::i;:::-;32942:3;32929:10;32926:1;32922:18;32918:28;32913:33;;;32782:170;;;;:::o;32957:244::-;33068:10;33041:18;;;33061;;;33037:43;33100:28;;;;33147:24;;;33137:58;;33175:18;;:::i;33332:518::-;33434:2;33429:3;33426:11;33423:421;;;33470:5;33467:1;33460:16;33514:4;33511:1;33501:18;33584:2;33572:10;33568:19;33565:1;33561:27;33555:4;33551:38;33620:4;33608:10;33605:20;33602:47;;;-1:-1:-1;33643:4:81;33602:47;33698:2;33693:3;33689:12;33686:1;33682:20;33676:4;33672:31;33662:41;;33753:81;33771:2;33764:5;33761:13;33753:81;;;33830:1;33816:16;;33797:1;33786:13;33753:81;;34026:1299;34152:3;34146:10;-1:-1:-1;;;;;34171:6:81;34168:30;34165:56;;;34201:18;;:::i;:::-;34230:97;34320:6;34280:38;34312:4;34306:11;34280:38;:::i;:::-;34274:4;34230:97;:::i;:::-;34376:4;34407:2;34396:14;;34424:1;34419:649;;;;35112:1;35129:6;35126:89;;;-1:-1:-1;35181:19:81;;;35175:26;35126:89;-1:-1:-1;;33983:1:81;33979:11;;;33975:24;33971:29;33961:40;34007:1;34003:11;;;33958:57;35228:81;;34389:930;;34419:649;33279:1;33272:14;;;33316:4;33303:18;;-1:-1:-1;;34455:20:81;;;34573:222;34587:7;34584:1;34581:14;34573:222;;;34669:19;;;34663:26;34648:42;;34776:4;34761:20;;;;34729:1;34717:14;;;;34603:12;34573:222;;;34577:3;34823:6;34814:7;34811:19;34808:201;;;34884:19;;;34878:26;-1:-1:-1;;34967:1:81;34963:14;;;34979:3;34959:24;34955:37;34951:42;34936:58;34921:74;;34808:201;-1:-1:-1;;;;35055:1:81;35039:14;;;35035:22;35022:36;;-1:-1:-1;34026:1299:81:o;35330:157::-;35360:1;35394:4;35391:1;35387:12;35418:3;35408:37;;35425:18;;:::i;:::-;35477:3;35470:4;35467:1;35463:12;35459:22;35454:27;;;35330:157;;;;:::o;35492:136::-;35531:3;35559:5;35549:39;;35568:18;;:::i;:::-;-1:-1:-1;;;35604:18:81;;35492:136::o"},"methodIdentifiers":{"OWN_POLICY_SELECTOR()":"a9ed1487","SLOTSIZE_CALENDAR_MONTH()":"3edeb257","UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addTarget(address,uint32,uint256,uint256)":"bfdb20da","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","cashOutPayouts(address,uint32,uint32,uint256,address)":"225c531e","cashWithdrawable()":"cc671a18","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","currentDebt()":"759076e5","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","depositIntoYieldVault(uint256)":"ac860f74","forwardNewPolicy(address,bytes)":"33bded3c","forwardNewPolicyBatch(address,bytes[])":"e77659fd","forwardResolvePolicy(address,bytes)":"86b44083","forwardResolvePolicyBatch(address,bytes[])":"ee07abbb","getDebtForPeriod(address,uint32,uint32)":"a3ac9390","getTargetStatus(address)":"091ea8a6","initialize(string,string,address)":"077f224a","isTrustedForwarder(address)":"572b6c05","makeFakeSelector(address,bytes4)":"c0c51217","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd","policyPool()":"4d15eb03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","proxiableUUID()":"52d1902d","redeem(uint256,address,address)":"ba087652","refreshAsset()":"c8030873","repayDebt(address,uint32,uint32,uint256)":"82dbbd71","setTargetLimits(address,uint256,uint256)":"bdb5371d","setTargetSlotSize(address,uint32)":"08742d90","setTargetStatus(address,uint8)":"f7a39333","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","trustedForwarder()":"7da0a877","upgradeToAndCall(address,bytes)":"4f1ef286","withdraw(uint256,address,address)":"b460af94","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"trustedForwarder_\",\"type\":\"address\"},{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceReduction\",\"type\":\"uint256\"}],\"name\":\"BalanceDecreasedOnResolve\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeactivateTarget\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeinvestYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotRefreshAssetWithCash\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"CashOutExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"currentDebt\",\"type\":\"int256\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"}],\"name\":\"DebtLimitExceeded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSlotSize\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"MustChangeYieldAssetBeforeRefresh\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NothingToRefresh\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OutOfRangeAccess\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"RepaymentExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"TargetAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"}],\"name\":\"TargetNotActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"TargetNotFound\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"requiredSelector\",\"type\":\"bytes4\"}],\"name\":\"UnauthorizedForward\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"YieldVaultIsRequired\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"address\",\"name\":\"oldAsset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAsset\",\"type\":\"address\"}],\"name\":\"AssetChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"CashOutPayout\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"totalDebtAfterChange\",\"type\":\"int256\"}],\"name\":\"DebtChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"}],\"name\":\"RepayDebt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"},{\"internalType\":\"uint96\",\"name\":\"minLiquidity\",\"type\":\"uint96\"}],\"indexed\":false,\"internalType\":\"struct CashFlowLender.TargetConfig\",\"name\":\"config\",\"type\":\"tuple\"}],\"name\":\"TargetAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldMinLiquidity\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newMinLiquidity\",\"type\":\"uint256\"}],\"name\":\"TargetLimitsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"oldSlotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"TargetSlotSizeChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"oldStatus\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"TargetStatusChanged\",\"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\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"OWN_POLICY_SELECTOR\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLOTSIZE_CALENDAR_MONTH\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"addTarget\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"cashOutPayouts\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cashWithdrawable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentDebt\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardNewPolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardNewPolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardResolvePolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardResolvePolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"name\":\"getDebtForPeriod\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetStatus\",\"outputs\":[{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"makeFakeSelector\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"refreshAsset\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"repayDebt\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"setTargetLimits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"setTargetSlotSize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"setTargetStatus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Implements the ERC-4626 standard tracking how much liquidity was provided by each LP.      The assets managed by the vault are a mix of liquid USDC + the $._totalDebt tracked by the CFL.      The debt is tracked as a global number, but also for each target and period (month for example). If the debt      is negative, it means Ensuro owes to the customer.      The funds can also be sent to a $._yieldVault to generate yields on the idle funds.      The contract forwards the calls to the targets (Ensuro risk modules), but it has two variants for doing that      a. forwardNewPolicy (and the batch variant): this method tracks the balance reduction caused by paying the         premiums, and in base of that number increases the debt.      b. forwardResolvePolicy (and the batch variant): this method just forwards the call (after doing access         validations). The debt will be reduced when the policies are resolved and the PolicyPool calls         `onPayoutReceived(...)`      The contract is a UUPSUpgradeable contract but MUST NOT be used with a plain ERC1967 proxy, but instead with      an `AccessManagedProxy` that executes the access control. The contract DOESN'T IMPLEMENT ACCESS CONTROL      validations on the critical methods. It's assumed it will be deployed behind an AccessManagedProxy with      the proper access control setup.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"addTarget(address,uint32,uint256,uint256)\":{\"details\":\"Adds a new target that can be used later to forward policies and track the debt.\",\"params\":{\"debtLimit\":\"Limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetAdded} event\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It should be an Ensuro's RiskModule\"}},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"asset()\":{\"details\":\"See {IERC4626-asset}. \"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"cashOutPayouts(address,uint32,uint32,uint256,address)\":{\"details\":\"Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)      in a given slot      Requires the debt of the slot <= -amount      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)      emits {CashOutPayout}\",\"params\":{\"amount\":\"Amount to cash out\",\"destination\":\"Address that will receive the funds\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"convertToAssets(uint256)\":{\"details\":\"See {IERC4626-convertToAssets}. \"},\"convertToShares(uint256)\":{\"details\":\"See {IERC4626-convertToShares}. \"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"See {IERC4626-deposit}. \"},\"depositIntoYieldVault(uint256)\":{\"details\":\"Moves money that's liquid in the contract to the yield vault, to generate yields      Requires _balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"forwardNewPolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"The call to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardNewPolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot). Batch version (multiple calls at once).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called. Batch version (multiple calls at once).      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"initialize(string,string,address)\":{\"details\":\"Initializes the CashFlowLender\",\"params\":{\"name_\":\"Name of the accounting token (ERC20) for the LPs\",\"symbol_\":\"Symbol of the accounting token (ERC20) for the LPs\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"makeFakeSelector(address,bytes4)\":{\"details\":\"Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable      a given call (selector) to a given target\",\"params\":{\"selector\":\"The 4-bytes method selector of the method to be called in the target\",\"target\":\"Address of the target contract.\"}},\"maxDeposit(address)\":{\"details\":\"See {IERC4626-maxDeposit}. \"},\"maxMint(address)\":{\"details\":\"See {IERC4626-maxMint}. \"},\"maxRedeem(address)\":{\"details\":\"See {IERC4626-maxRedeem}. \"},\"maxWithdraw(address)\":{\"details\":\"See {IERC4626-maxWithdraw}. \"},\"mint(uint256,address)\":{\"details\":\"See {IERC4626-mint}. \"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolderV2.onPolicyReplaced.selector`.\"},\"previewDeposit(uint256)\":{\"details\":\"See {IERC4626-previewDeposit}. \"},\"previewMint(uint256)\":{\"details\":\"See {IERC4626-previewMint}. \"},\"previewRedeem(uint256)\":{\"details\":\"See {IERC4626-previewRedeem}. \"},\"previewWithdraw(uint256)\":{\"details\":\"See {IERC4626-previewWithdraw}. \"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"redeem(uint256,address,address)\":{\"details\":\"See {IERC4626-redeem}. \"},\"refreshAsset()\":{\"details\":\"Refreshes the asset of the vault, when the currency() of the PolicyPool changes Requires _balance() = 0 and yieldVault.asset() = _policyPool.currency() Emits a {TargetStatusChanged} event\"},\"repayDebt(address,uint32,uint32,uint256)\":{\"details\":\"Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)      in a given slot      Requires the debt of the slot >= amount      emits {RepayDebt}\",\"params\":{\"amount\":\"Amount to pay\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetLimits(address,uint256,uint256)\":{\"details\":\"Changes debtLimit and minLiquidity for a given target.\",\"params\":{\"debtLimit\":\"New limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetLimitsChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetSlotSize(address,uint32)\":{\"details\":\"Changes the slotSize of a given target.\",\"params\":{\"newSlotSize\":\"New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots. Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetStatus(address,uint8)\":{\"details\":\"Changes status of a given target. See {TargetStatus}.\",\"params\":{\"newStatus\":\"The new status of the contract Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setYieldVault(address,bool)\":{\"details\":\"Changes the Yield Vault, deinvesting all the funds before doing it.\",\"params\":{\"force\":\"If true, it continues the operation even if some of the funds aren't withdrawable. Emits a {YieldVaultChanged} event\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"See {IERC4626-totalAssets}. \"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"},\"trustedForwarder()\":{\"details\":\"Returns the address of the trusted forwarder.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdraw(uint256,address,address)\":{\"details\":\"See {IERC4626-withdraw}. \"},\"withdrawFromYieldVault(uint256)\":{\"details\":\"Deinvest from the vault a given amount.      Requires $._yieldVault.maxWithdraw() <= amount\",\"params\":{\"amount\":\"Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()\"}}},\"stateVariables\":{\"SLOTSIZE_CALENDAR_MONTH\":{\"details\":\"Slot size used to indicate the slots use calendar months.      Only years from 2025 to 2099 are supported\"},\"_policyPool\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"title\":\"CashFlow Lender Module that tracks ownership\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/CashFlowLender.sol\":\"CashFlowLender\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xddf0d346e5ee68e7ae051048112384409797d7e094a47ab404c6fb6bdf8827c1\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://98a041a857a99cda900188969283dbf941ec034b641c7abea399c3e4ee94cb64\",\"dweb:/ipfs/QmdjuJipt2jAapKAk2APC1BTcsgajnbkQTthd4LiwA8F7r\"]},\"@ensuro/core/contracts/interfaces/IPolicyHolderV2.sol\":{\"keccak256\":\"0x978c37bf3a9dfa2942a53ff10d0b6a4ac16510b6f3231ee2415ea6ea5349512f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://9b777c52b8697624c3504156f409b5238de8ebc778ccdadb5dafb42d6293a559\",\"dweb:/ipfs/QmVgGMPkpCL3ompGN4tHG5jdopkTuGaHQvK7eZUcxCDvh6\"]},\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":{\"keccak256\":\"0x290ba719fd784ff406a8de038c10dc2d0914794c8b016781712fcbb36ca7bffb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b5764ef1dab80c115c14e307c5cbd5845320a653a2d8a3658d20dfba6bc7758\",\"dweb:/ipfs/QmSPSasRTVtYyAEnEVCBPZwoQzgKU7gu7q8NeT9AMMpmmx\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0xd861907d1168dcaec2a7846edbaed12feb8bad2d6781dba987be01374f90b495\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://12ff809243040419e2fc2aa7ef0aaa60b3e6ebc901553ba1de970ceeef208c4c\",\"dweb:/ipfs/QmX2dwMVNrQAahqVzEx94gqcVB6Z8ovifPYdEfHZzj7aEb\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0x5c54228bbb2f1f8616179c51bdb90b7960f4a3414c390ad5c6ead6763eb55a59\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://745fe72596bb8fde5f294d9d6b943db942202e4445536ee00da3ba011f876e86\",\"dweb:/ipfs/QmcjeESkk4rbhUVaSBfyq5f8rY56Jms1TwcJXaRD55K3UH\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":{\"keccak256\":\"0xa683afe511eb3a2e8a039c5aa18feda651c6de04b92e101532ac76661fdaad8f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d2117b118221d039e98d77bef9b0b68e95b600403f16aa1b565e3d6c0bcd6384\",\"dweb:/ipfs/QmZAhSMkC257uzT16gLkkuS1q7sLRos1Euj1oPMJXg8rSh\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0x9b6b3e7803bc5f2f8cd7ad57db8ac1def61a9930a5a3107df4882e028a9605d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da62d6be1f5c6edf577f0cb45666a8aa9c2086a4bac87d95d65f02e2f4c36a4b\",\"dweb:/ipfs/QmNkpvBpoCMvX8JwAFNSc5XxJ2q5BXJpL5L1txb4QkqVFF\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0xde7e9fd9aee8d4f40772f96bb3b58836cbc6dfc0227014a061947f8821ea9724\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://11fea9f8bc98949ac6709f0c1699db7430d2948137aa94d5a9e95a91f61a710a\",\"dweb:/ipfs/QmQdfRXxQjwP6yn3DVo1GHPpriKNcFghSPi94Z1oKEFUNS\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xce41876e78d1badc0512229b4d14e4daf83bc1003d7f83978d18e0e56f965b9c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a2608291cb038b388d80b79a06b6118a42f7894ff67b7da10ec0dbbf5b2973ba\",\"dweb:/ipfs/QmWohqcBLbcxmA4eGPhZDXe5RYMMEEpFq22nfkaUMvTfw1\"]},\"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\":{\"keccak256\":\"0x00c23b80f74717a6765b606001c5c633116020d488ee8f53600685b8200e4bf3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73d0bd5ff47377a97d52149a805d82112f88c9f4ae853ef246a536bd31ce1da\",\"dweb:/ipfs/QmagG3Yup65JQPSMZScubYTCeyuUyvKLxBM3X1er6xWWxf\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0x666c704c58d4cf404eecd6e4a898a87e25b00b45416678de914e160582c3ff17\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6def3cc823ae3f155da28a241a8ff91538222053ed9d78f415758a9133e211a1\",\"dweb:/ipfs/QmSriniszojh4UP4WQqxCJhq2XsbCAULcB4qRij4EYw9Gi\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xc4d7ebf63eb2f6bf3fee1b6c0ee775efa9f31b4843a5511d07eea147e212932d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://01c66a2fad66bc710db7510419a7eee569b40b67cd9f01b70a3fc90d6f76c03b\",\"dweb:/ipfs/QmT1CjJZq4eTNA4nu8E9ZrWfaZu6ReUsDbjcK8DbEFqwx5\"]},\"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\":{\"keccak256\":\"0x12808acc0c2cbc0b9068755711fd79483b4f002e850d25e0e72e735765b6cd99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fd1ab9e3091d4c4fc4b34c25b54df5c092c849c8c09d722a34186bd051b0890\",\"dweb:/ipfs/QmUqykAZfKRHEkYVRmXKsFqvLwyUFPrukdWdAmXDkixJAL\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0xc3f2ec76a3de8ed7a7007c46166f5550c72c7709e3fc7e8bb3111a7191cdedbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73efb4c2ca655882dc237c6b4f234a9bd36d97159d8fcaa837eb01171f726ac\",\"dweb:/ipfs/QmTNnnv7Gu5fs5G1ZMh7Fexp8N4XUs3XrNAngjcxgiss3e\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x4ea01544758fd2c7045961904686bfe232d2220a04ecaa2d6b08dac17827febf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fabe6bef5167ae741dd8c22d7f81d3f9120bd61b290762a2e8f176712567d329\",\"dweb:/ipfs/QmSnEitJ6xmf1SSAUeZozD7Gx7h8bNnX3a1ZBzqeivsvVg\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x5dc63d1c6a12fe1b17793e1745877b2fcbe1964c3edfd0a482fac21ca8f18261\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6b7f97c5960a50fd1822cb298551ffc908e37b7893a68d6d08bce18a11cb0f11\",\"dweb:/ipfs/QmQQvxBytoY1eBt3pRQDmvH2hZ2yjhs12YqVfzGm7KSURq\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xb5afb8e8eebc4d1c6404df2f5e1e6d2c3d24fd01e5dfc855314951ecfaae462d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://78586466c424f076c6a2a551d848cfbe3f7c49e723830807598484a1047b3b34\",\"dweb:/ipfs/Qmb717ovcFxm7qgNKEShiV6M9SPR3v1qnNpAGH84D6w29p\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Packing.sol\":{\"keccak256\":\"0xea9f5d3cdd11b7af7d8662a5c0e952f3666145cb4c9fe1452bd15c30abc462dd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fcae95be7077d103530c4e6a5f1248aa64102dad62d642e2530316ab002e02c\",\"dweb:/ipfs/QmWCr2qicfaqsTbpgq7CJhedUHcPQv34k8HNs4f5kGjVnw\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/CashFlowLender.sol\":{\"keccak256\":\"0xb8a67b85d0d66b34eab1cf6b5da76f81db6786884640aaa1324d5e5d6554f896\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://475ac67705e6e4f65412633d11fe6d6bf19998d7529f6dc9990ab24a2fa1c8c9\",\"dweb:/ipfs/QmTkLatDELxKHNpUi75mKvqHLkhKaWQAp9jpGN1Jis8ACk\"]},\"contracts/dependencies/AccessManagedProxy.sol\":{\"keccak256\":\"0x406f4c8b0ace277c677d2d95ceba9b63b92597a81db3f894a037fc0c7294cc97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fba6a5a820fbc56ed11c268b5c97ca3bcad3b66aa4d01ab028be91a6ac05623\",\"dweb:/ipfs/QmSiR8VZr5wPwuXddfGV1dM3QKW94nP9ZForWgnpNHnqYC\"]},\"contracts/dependencies/IPolicyPool.sol\":{\"keccak256\":\"0x2cd6afa72791cac7be2cd930ebadec4e906207076960778e59a1160f66a91a0e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe5b8ee24484498806a9b5034ba0b7c33668bb1f52fbb72fc5831b2e71836a86\",\"dweb:/ipfs/QmUmxGeCGZWp1zWFLYGrjychqxzCrLY18MhRkKvviVa3BE\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/dependencies/AccessManagedProxy.sol":{"AccessManagedProxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"contract IAccessManager","name":"manager","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_10119":{"entryPoint":null,"id":10119,"parameterSlots":2,"returnSlots":0},"@_25499":{"entryPoint":null,"id":25499,"parameterSlots":3,"returnSlots":0},"@_checkNonPayable_10425":{"entryPoint":400,"id":10425,"parameterSlots":0,"returnSlots":0},"@_revert_12579":{"entryPoint":528,"id":12579,"parameterSlots":1,"returnSlots":0},"@_setImplementation_10205":{"entryPoint":162,"id":10205,"parameterSlots":1,"returnSlots":0},"@functionDelegateCall_12497":{"entryPoint":285,"id":12497,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_10241":{"entryPoint":68,"id":10241,"parameterSlots":2,"returnSlots":0},"@verifyCallResultFromTarget_12537":{"entryPoint":433,"id":12537,"parameterSlots":3,"returnSlots":1},"abi_decode_contract_IAccessManager_fromMemory":{"entryPoint":612,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$9511_fromMemory":{"entryPoint":628,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":839,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":592,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":572,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:2143:81","nodeType":"YulBlock","src":"0:2143:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"59:86:81","nodeType":"YulBlock","src":"59:86:81","statements":[{"body":{"nativeSrc":"123:16:81","nodeType":"YulBlock","src":"123:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:81","nodeType":"YulLiteral","src":"132:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:81","nodeType":"YulLiteral","src":"135:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:81","nodeType":"YulIdentifier","src":"125:6:81"},"nativeSrc":"125:12:81","nodeType":"YulFunctionCall","src":"125:12:81"},"nativeSrc":"125:12:81","nodeType":"YulExpressionStatement","src":"125:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:81","nodeType":"YulIdentifier","src":"82:5:81"},{"arguments":[{"name":"value","nativeSrc":"93:5:81","nodeType":"YulIdentifier","src":"93:5:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:81","nodeType":"YulLiteral","src":"108:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:81","nodeType":"YulLiteral","src":"113:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:81","nodeType":"YulIdentifier","src":"104:3:81"},"nativeSrc":"104:11:81","nodeType":"YulFunctionCall","src":"104:11:81"},{"kind":"number","nativeSrc":"117:1:81","nodeType":"YulLiteral","src":"117:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:81","nodeType":"YulIdentifier","src":"100:3:81"},"nativeSrc":"100:19:81","nodeType":"YulFunctionCall","src":"100:19:81"}],"functionName":{"name":"and","nativeSrc":"89:3:81","nodeType":"YulIdentifier","src":"89:3:81"},"nativeSrc":"89:31:81","nodeType":"YulFunctionCall","src":"89:31:81"}],"functionName":{"name":"eq","nativeSrc":"79:2:81","nodeType":"YulIdentifier","src":"79:2:81"},"nativeSrc":"79:42:81","nodeType":"YulFunctionCall","src":"79:42:81"}],"functionName":{"name":"iszero","nativeSrc":"72:6:81","nodeType":"YulIdentifier","src":"72:6:81"},"nativeSrc":"72:50:81","nodeType":"YulFunctionCall","src":"72:50:81"},"nativeSrc":"69:70:81","nodeType":"YulIf","src":"69:70:81"}]},"name":"validator_revert_address","nativeSrc":"14:131:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:81","nodeType":"YulTypedName","src":"48:5:81","type":""}],"src":"14:131:81"},{"body":{"nativeSrc":"182:95:81","nodeType":"YulBlock","src":"182:95:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"199:1:81","nodeType":"YulLiteral","src":"199:1:81","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"206:3:81","nodeType":"YulLiteral","src":"206:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"211:10:81","nodeType":"YulLiteral","src":"211:10:81","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"202:3:81","nodeType":"YulIdentifier","src":"202:3:81"},"nativeSrc":"202:20:81","nodeType":"YulFunctionCall","src":"202:20:81"}],"functionName":{"name":"mstore","nativeSrc":"192:6:81","nodeType":"YulIdentifier","src":"192:6:81"},"nativeSrc":"192:31:81","nodeType":"YulFunctionCall","src":"192:31:81"},"nativeSrc":"192:31:81","nodeType":"YulExpressionStatement","src":"192:31:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"239:1:81","nodeType":"YulLiteral","src":"239:1:81","type":"","value":"4"},{"kind":"number","nativeSrc":"242:4:81","nodeType":"YulLiteral","src":"242:4:81","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"232:6:81","nodeType":"YulIdentifier","src":"232:6:81"},"nativeSrc":"232:15:81","nodeType":"YulFunctionCall","src":"232:15:81"},"nativeSrc":"232:15:81","nodeType":"YulExpressionStatement","src":"232:15:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:81","nodeType":"YulLiteral","src":"263:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"266:4:81","nodeType":"YulLiteral","src":"266:4:81","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"256:6:81","nodeType":"YulIdentifier","src":"256:6:81"},"nativeSrc":"256:15:81","nodeType":"YulFunctionCall","src":"256:15:81"},"nativeSrc":"256:15:81","nodeType":"YulExpressionStatement","src":"256:15:81"}]},"name":"panic_error_0x41","nativeSrc":"150:127:81","nodeType":"YulFunctionDefinition","src":"150:127:81"},{"body":{"nativeSrc":"358:78:81","nodeType":"YulBlock","src":"358:78:81","statements":[{"nativeSrc":"368:22:81","nodeType":"YulAssignment","src":"368:22:81","value":{"arguments":[{"name":"offset","nativeSrc":"383:6:81","nodeType":"YulIdentifier","src":"383:6:81"}],"functionName":{"name":"mload","nativeSrc":"377:5:81","nodeType":"YulIdentifier","src":"377:5:81"},"nativeSrc":"377:13:81","nodeType":"YulFunctionCall","src":"377:13:81"},"variableNames":[{"name":"value","nativeSrc":"368:5:81","nodeType":"YulIdentifier","src":"368:5:81"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"424:5:81","nodeType":"YulIdentifier","src":"424:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"399:24:81","nodeType":"YulIdentifier","src":"399:24:81"},"nativeSrc":"399:31:81","nodeType":"YulFunctionCall","src":"399:31:81"},"nativeSrc":"399:31:81","nodeType":"YulExpressionStatement","src":"399:31:81"}]},"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"282:154:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"337:6:81","nodeType":"YulTypedName","src":"337:6:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"348:5:81","nodeType":"YulTypedName","src":"348:5:81","type":""}],"src":"282:154:81"},{"body":{"nativeSrc":"588:1039:81","nodeType":"YulBlock","src":"588:1039:81","statements":[{"body":{"nativeSrc":"634:16:81","nodeType":"YulBlock","src":"634:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"643:1:81","nodeType":"YulLiteral","src":"643:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"646:1:81","nodeType":"YulLiteral","src":"646:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"636:6:81","nodeType":"YulIdentifier","src":"636:6:81"},"nativeSrc":"636:12:81","nodeType":"YulFunctionCall","src":"636:12:81"},"nativeSrc":"636:12:81","nodeType":"YulExpressionStatement","src":"636:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"609:7:81","nodeType":"YulIdentifier","src":"609:7:81"},{"name":"headStart","nativeSrc":"618:9:81","nodeType":"YulIdentifier","src":"618:9:81"}],"functionName":{"name":"sub","nativeSrc":"605:3:81","nodeType":"YulIdentifier","src":"605:3:81"},"nativeSrc":"605:23:81","nodeType":"YulFunctionCall","src":"605:23:81"},{"kind":"number","nativeSrc":"630:2:81","nodeType":"YulLiteral","src":"630:2:81","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"601:3:81","nodeType":"YulIdentifier","src":"601:3:81"},"nativeSrc":"601:32:81","nodeType":"YulFunctionCall","src":"601:32:81"},"nativeSrc":"598:52:81","nodeType":"YulIf","src":"598:52:81"},{"nativeSrc":"659:29:81","nodeType":"YulVariableDeclaration","src":"659:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"678:9:81","nodeType":"YulIdentifier","src":"678:9:81"}],"functionName":{"name":"mload","nativeSrc":"672:5:81","nodeType":"YulIdentifier","src":"672:5:81"},"nativeSrc":"672:16:81","nodeType":"YulFunctionCall","src":"672:16:81"},"variables":[{"name":"value","nativeSrc":"663:5:81","nodeType":"YulTypedName","src":"663:5:81","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"722:5:81","nodeType":"YulIdentifier","src":"722:5:81"}],"functionName":{"name":"validator_revert_address","nativeSrc":"697:24:81","nodeType":"YulIdentifier","src":"697:24:81"},"nativeSrc":"697:31:81","nodeType":"YulFunctionCall","src":"697:31:81"},"nativeSrc":"697:31:81","nodeType":"YulExpressionStatement","src":"697:31:81"},{"nativeSrc":"737:15:81","nodeType":"YulAssignment","src":"737:15:81","value":{"name":"value","nativeSrc":"747:5:81","nodeType":"YulIdentifier","src":"747:5:81"},"variableNames":[{"name":"value0","nativeSrc":"737:6:81","nodeType":"YulIdentifier","src":"737:6:81"}]},{"nativeSrc":"761:39:81","nodeType":"YulVariableDeclaration","src":"761:39:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"785:9:81","nodeType":"YulIdentifier","src":"785:9:81"},{"kind":"number","nativeSrc":"796:2:81","nodeType":"YulLiteral","src":"796:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"781:3:81","nodeType":"YulIdentifier","src":"781:3:81"},"nativeSrc":"781:18:81","nodeType":"YulFunctionCall","src":"781:18:81"}],"functionName":{"name":"mload","nativeSrc":"775:5:81","nodeType":"YulIdentifier","src":"775:5:81"},"nativeSrc":"775:25:81","nodeType":"YulFunctionCall","src":"775:25:81"},"variables":[{"name":"offset","nativeSrc":"765:6:81","nodeType":"YulTypedName","src":"765:6:81","type":""}]},{"body":{"nativeSrc":"843:16:81","nodeType":"YulBlock","src":"843:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"852:1:81","nodeType":"YulLiteral","src":"852:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"855:1:81","nodeType":"YulLiteral","src":"855:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"845:6:81","nodeType":"YulIdentifier","src":"845:6:81"},"nativeSrc":"845:12:81","nodeType":"YulFunctionCall","src":"845:12:81"},"nativeSrc":"845:12:81","nodeType":"YulExpressionStatement","src":"845:12:81"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"815:6:81","nodeType":"YulIdentifier","src":"815:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"831:2:81","nodeType":"YulLiteral","src":"831:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"835:1:81","nodeType":"YulLiteral","src":"835:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"827:3:81","nodeType":"YulIdentifier","src":"827:3:81"},"nativeSrc":"827:10:81","nodeType":"YulFunctionCall","src":"827:10:81"},{"kind":"number","nativeSrc":"839:1:81","nodeType":"YulLiteral","src":"839:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"823:3:81","nodeType":"YulIdentifier","src":"823:3:81"},"nativeSrc":"823:18:81","nodeType":"YulFunctionCall","src":"823:18:81"}],"functionName":{"name":"gt","nativeSrc":"812:2:81","nodeType":"YulIdentifier","src":"812:2:81"},"nativeSrc":"812:30:81","nodeType":"YulFunctionCall","src":"812:30:81"},"nativeSrc":"809:50:81","nodeType":"YulIf","src":"809:50:81"},{"nativeSrc":"868:32:81","nodeType":"YulVariableDeclaration","src":"868:32:81","value":{"arguments":[{"name":"headStart","nativeSrc":"882:9:81","nodeType":"YulIdentifier","src":"882:9:81"},{"name":"offset","nativeSrc":"893:6:81","nodeType":"YulIdentifier","src":"893:6:81"}],"functionName":{"name":"add","nativeSrc":"878:3:81","nodeType":"YulIdentifier","src":"878:3:81"},"nativeSrc":"878:22:81","nodeType":"YulFunctionCall","src":"878:22:81"},"variables":[{"name":"_1","nativeSrc":"872:2:81","nodeType":"YulTypedName","src":"872:2:81","type":""}]},{"body":{"nativeSrc":"948:16:81","nodeType":"YulBlock","src":"948:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"957:1:81","nodeType":"YulLiteral","src":"957:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"960:1:81","nodeType":"YulLiteral","src":"960:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"950:6:81","nodeType":"YulIdentifier","src":"950:6:81"},"nativeSrc":"950:12:81","nodeType":"YulFunctionCall","src":"950:12:81"},"nativeSrc":"950:12:81","nodeType":"YulExpressionStatement","src":"950:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"927:2:81","nodeType":"YulIdentifier","src":"927:2:81"},{"kind":"number","nativeSrc":"931:4:81","nodeType":"YulLiteral","src":"931:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"923:3:81","nodeType":"YulIdentifier","src":"923:3:81"},"nativeSrc":"923:13:81","nodeType":"YulFunctionCall","src":"923:13:81"},{"name":"dataEnd","nativeSrc":"938:7:81","nodeType":"YulIdentifier","src":"938:7:81"}],"functionName":{"name":"slt","nativeSrc":"919:3:81","nodeType":"YulIdentifier","src":"919:3:81"},"nativeSrc":"919:27:81","nodeType":"YulFunctionCall","src":"919:27:81"}],"functionName":{"name":"iszero","nativeSrc":"912:6:81","nodeType":"YulIdentifier","src":"912:6:81"},"nativeSrc":"912:35:81","nodeType":"YulFunctionCall","src":"912:35:81"},"nativeSrc":"909:55:81","nodeType":"YulIf","src":"909:55:81"},{"nativeSrc":"973:23:81","nodeType":"YulVariableDeclaration","src":"973:23:81","value":{"arguments":[{"name":"_1","nativeSrc":"993:2:81","nodeType":"YulIdentifier","src":"993:2:81"}],"functionName":{"name":"mload","nativeSrc":"987:5:81","nodeType":"YulIdentifier","src":"987:5:81"},"nativeSrc":"987:9:81","nodeType":"YulFunctionCall","src":"987:9:81"},"variables":[{"name":"length","nativeSrc":"977:6:81","nodeType":"YulTypedName","src":"977:6:81","type":""}]},{"body":{"nativeSrc":"1039:22:81","nodeType":"YulBlock","src":"1039:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1041:16:81","nodeType":"YulIdentifier","src":"1041:16:81"},"nativeSrc":"1041:18:81","nodeType":"YulFunctionCall","src":"1041:18:81"},"nativeSrc":"1041:18:81","nodeType":"YulExpressionStatement","src":"1041:18:81"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1011:6:81","nodeType":"YulIdentifier","src":"1011:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1027:2:81","nodeType":"YulLiteral","src":"1027:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1031:1:81","nodeType":"YulLiteral","src":"1031:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1023:3:81","nodeType":"YulIdentifier","src":"1023:3:81"},"nativeSrc":"1023:10:81","nodeType":"YulFunctionCall","src":"1023:10:81"},{"kind":"number","nativeSrc":"1035:1:81","nodeType":"YulLiteral","src":"1035:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1019:3:81","nodeType":"YulIdentifier","src":"1019:3:81"},"nativeSrc":"1019:18:81","nodeType":"YulFunctionCall","src":"1019:18:81"}],"functionName":{"name":"gt","nativeSrc":"1008:2:81","nodeType":"YulIdentifier","src":"1008:2:81"},"nativeSrc":"1008:30:81","nodeType":"YulFunctionCall","src":"1008:30:81"},"nativeSrc":"1005:56:81","nodeType":"YulIf","src":"1005:56:81"},{"nativeSrc":"1070:23:81","nodeType":"YulVariableDeclaration","src":"1070:23:81","value":{"arguments":[{"kind":"number","nativeSrc":"1090:2:81","nodeType":"YulLiteral","src":"1090:2:81","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1084:5:81","nodeType":"YulIdentifier","src":"1084:5:81"},"nativeSrc":"1084:9:81","nodeType":"YulFunctionCall","src":"1084:9:81"},"variables":[{"name":"memPtr","nativeSrc":"1074:6:81","nodeType":"YulTypedName","src":"1074:6:81","type":""}]},{"nativeSrc":"1102:85:81","nodeType":"YulVariableDeclaration","src":"1102:85:81","value":{"arguments":[{"name":"memPtr","nativeSrc":"1124:6:81","nodeType":"YulIdentifier","src":"1124:6:81"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1148:6:81","nodeType":"YulIdentifier","src":"1148:6:81"},{"kind":"number","nativeSrc":"1156:4:81","nodeType":"YulLiteral","src":"1156:4:81","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1144:3:81","nodeType":"YulIdentifier","src":"1144:3:81"},"nativeSrc":"1144:17:81","nodeType":"YulFunctionCall","src":"1144:17:81"},{"arguments":[{"kind":"number","nativeSrc":"1167:2:81","nodeType":"YulLiteral","src":"1167:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1163:3:81","nodeType":"YulIdentifier","src":"1163:3:81"},"nativeSrc":"1163:7:81","nodeType":"YulFunctionCall","src":"1163:7:81"}],"functionName":{"name":"and","nativeSrc":"1140:3:81","nodeType":"YulIdentifier","src":"1140:3:81"},"nativeSrc":"1140:31:81","nodeType":"YulFunctionCall","src":"1140:31:81"},{"kind":"number","nativeSrc":"1173:2:81","nodeType":"YulLiteral","src":"1173:2:81","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1136:3:81","nodeType":"YulIdentifier","src":"1136:3:81"},"nativeSrc":"1136:40:81","nodeType":"YulFunctionCall","src":"1136:40:81"},{"arguments":[{"kind":"number","nativeSrc":"1182:2:81","nodeType":"YulLiteral","src":"1182:2:81","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1178:3:81","nodeType":"YulIdentifier","src":"1178:3:81"},"nativeSrc":"1178:7:81","nodeType":"YulFunctionCall","src":"1178:7:81"}],"functionName":{"name":"and","nativeSrc":"1132:3:81","nodeType":"YulIdentifier","src":"1132:3:81"},"nativeSrc":"1132:54:81","nodeType":"YulFunctionCall","src":"1132:54:81"}],"functionName":{"name":"add","nativeSrc":"1120:3:81","nodeType":"YulIdentifier","src":"1120:3:81"},"nativeSrc":"1120:67:81","nodeType":"YulFunctionCall","src":"1120:67:81"},"variables":[{"name":"newFreePtr","nativeSrc":"1106:10:81","nodeType":"YulTypedName","src":"1106:10:81","type":""}]},{"body":{"nativeSrc":"1262:22:81","nodeType":"YulBlock","src":"1262:22:81","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1264:16:81","nodeType":"YulIdentifier","src":"1264:16:81"},"nativeSrc":"1264:18:81","nodeType":"YulFunctionCall","src":"1264:18:81"},"nativeSrc":"1264:18:81","nodeType":"YulExpressionStatement","src":"1264:18:81"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1205:10:81","nodeType":"YulIdentifier","src":"1205:10:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1225:2:81","nodeType":"YulLiteral","src":"1225:2:81","type":"","value":"64"},{"kind":"number","nativeSrc":"1229:1:81","nodeType":"YulLiteral","src":"1229:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1221:3:81","nodeType":"YulIdentifier","src":"1221:3:81"},"nativeSrc":"1221:10:81","nodeType":"YulFunctionCall","src":"1221:10:81"},{"kind":"number","nativeSrc":"1233:1:81","nodeType":"YulLiteral","src":"1233:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1217:3:81","nodeType":"YulIdentifier","src":"1217:3:81"},"nativeSrc":"1217:18:81","nodeType":"YulFunctionCall","src":"1217:18:81"}],"functionName":{"name":"gt","nativeSrc":"1202:2:81","nodeType":"YulIdentifier","src":"1202:2:81"},"nativeSrc":"1202:34:81","nodeType":"YulFunctionCall","src":"1202:34:81"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1241:10:81","nodeType":"YulIdentifier","src":"1241:10:81"},{"name":"memPtr","nativeSrc":"1253:6:81","nodeType":"YulIdentifier","src":"1253:6:81"}],"functionName":{"name":"lt","nativeSrc":"1238:2:81","nodeType":"YulIdentifier","src":"1238:2:81"},"nativeSrc":"1238:22:81","nodeType":"YulFunctionCall","src":"1238:22:81"}],"functionName":{"name":"or","nativeSrc":"1199:2:81","nodeType":"YulIdentifier","src":"1199:2:81"},"nativeSrc":"1199:62:81","nodeType":"YulFunctionCall","src":"1199:62:81"},"nativeSrc":"1196:88:81","nodeType":"YulIf","src":"1196:88:81"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1300:2:81","nodeType":"YulLiteral","src":"1300:2:81","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1304:10:81","nodeType":"YulIdentifier","src":"1304:10:81"}],"functionName":{"name":"mstore","nativeSrc":"1293:6:81","nodeType":"YulIdentifier","src":"1293:6:81"},"nativeSrc":"1293:22:81","nodeType":"YulFunctionCall","src":"1293:22:81"},"nativeSrc":"1293:22:81","nodeType":"YulExpressionStatement","src":"1293:22:81"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1331:6:81","nodeType":"YulIdentifier","src":"1331:6:81"},{"name":"length","nativeSrc":"1339:6:81","nodeType":"YulIdentifier","src":"1339:6:81"}],"functionName":{"name":"mstore","nativeSrc":"1324:6:81","nodeType":"YulIdentifier","src":"1324:6:81"},"nativeSrc":"1324:22:81","nodeType":"YulFunctionCall","src":"1324:22:81"},"nativeSrc":"1324:22:81","nodeType":"YulExpressionStatement","src":"1324:22:81"},{"body":{"nativeSrc":"1396:16:81","nodeType":"YulBlock","src":"1396:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1405:1:81","nodeType":"YulLiteral","src":"1405:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1408:1:81","nodeType":"YulLiteral","src":"1408:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1398:6:81","nodeType":"YulIdentifier","src":"1398:6:81"},"nativeSrc":"1398:12:81","nodeType":"YulFunctionCall","src":"1398:12:81"},"nativeSrc":"1398:12:81","nodeType":"YulExpressionStatement","src":"1398:12:81"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1369:2:81","nodeType":"YulIdentifier","src":"1369:2:81"},{"name":"length","nativeSrc":"1373:6:81","nodeType":"YulIdentifier","src":"1373:6:81"}],"functionName":{"name":"add","nativeSrc":"1365:3:81","nodeType":"YulIdentifier","src":"1365:3:81"},"nativeSrc":"1365:15:81","nodeType":"YulFunctionCall","src":"1365:15:81"},{"kind":"number","nativeSrc":"1382:2:81","nodeType":"YulLiteral","src":"1382:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1361:3:81","nodeType":"YulIdentifier","src":"1361:3:81"},"nativeSrc":"1361:24:81","nodeType":"YulFunctionCall","src":"1361:24:81"},{"name":"dataEnd","nativeSrc":"1387:7:81","nodeType":"YulIdentifier","src":"1387:7:81"}],"functionName":{"name":"gt","nativeSrc":"1358:2:81","nodeType":"YulIdentifier","src":"1358:2:81"},"nativeSrc":"1358:37:81","nodeType":"YulFunctionCall","src":"1358:37:81"},"nativeSrc":"1355:57:81","nodeType":"YulIf","src":"1355:57:81"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1431:6:81","nodeType":"YulIdentifier","src":"1431:6:81"},{"kind":"number","nativeSrc":"1439:2:81","nodeType":"YulLiteral","src":"1439:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1427:3:81","nodeType":"YulIdentifier","src":"1427:3:81"},"nativeSrc":"1427:15:81","nodeType":"YulFunctionCall","src":"1427:15:81"},{"arguments":[{"name":"_1","nativeSrc":"1448:2:81","nodeType":"YulIdentifier","src":"1448:2:81"},{"kind":"number","nativeSrc":"1452:2:81","nodeType":"YulLiteral","src":"1452:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1444:3:81","nodeType":"YulIdentifier","src":"1444:3:81"},"nativeSrc":"1444:11:81","nodeType":"YulFunctionCall","src":"1444:11:81"},{"name":"length","nativeSrc":"1457:6:81","nodeType":"YulIdentifier","src":"1457:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"1421:5:81","nodeType":"YulIdentifier","src":"1421:5:81"},"nativeSrc":"1421:43:81","nodeType":"YulFunctionCall","src":"1421:43:81"},"nativeSrc":"1421:43:81","nodeType":"YulExpressionStatement","src":"1421:43:81"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1488:6:81","nodeType":"YulIdentifier","src":"1488:6:81"},{"name":"length","nativeSrc":"1496:6:81","nodeType":"YulIdentifier","src":"1496:6:81"}],"functionName":{"name":"add","nativeSrc":"1484:3:81","nodeType":"YulIdentifier","src":"1484:3:81"},"nativeSrc":"1484:19:81","nodeType":"YulFunctionCall","src":"1484:19:81"},{"kind":"number","nativeSrc":"1505:2:81","nodeType":"YulLiteral","src":"1505:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1480:3:81","nodeType":"YulIdentifier","src":"1480:3:81"},"nativeSrc":"1480:28:81","nodeType":"YulFunctionCall","src":"1480:28:81"},{"kind":"number","nativeSrc":"1510:1:81","nodeType":"YulLiteral","src":"1510:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"1473:6:81","nodeType":"YulIdentifier","src":"1473:6:81"},"nativeSrc":"1473:39:81","nodeType":"YulFunctionCall","src":"1473:39:81"},"nativeSrc":"1473:39:81","nodeType":"YulExpressionStatement","src":"1473:39:81"},{"nativeSrc":"1521:16:81","nodeType":"YulAssignment","src":"1521:16:81","value":{"name":"memPtr","nativeSrc":"1531:6:81","nodeType":"YulIdentifier","src":"1531:6:81"},"variableNames":[{"name":"value1","nativeSrc":"1521:6:81","nodeType":"YulIdentifier","src":"1521:6:81"}]},{"nativeSrc":"1546:75:81","nodeType":"YulAssignment","src":"1546:75:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1606:9:81","nodeType":"YulIdentifier","src":"1606:9:81"},{"kind":"number","nativeSrc":"1617:2:81","nodeType":"YulLiteral","src":"1617:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1602:3:81","nodeType":"YulIdentifier","src":"1602:3:81"},"nativeSrc":"1602:18:81","nodeType":"YulFunctionCall","src":"1602:18:81"}],"functionName":{"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"1556:45:81","nodeType":"YulIdentifier","src":"1556:45:81"},"nativeSrc":"1556:65:81","nodeType":"YulFunctionCall","src":"1556:65:81"},"variableNames":[{"name":"value2","nativeSrc":"1546:6:81","nodeType":"YulIdentifier","src":"1546:6:81"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$9511_fromMemory","nativeSrc":"441:1186:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"538:9:81","nodeType":"YulTypedName","src":"538:9:81","type":""},{"name":"dataEnd","nativeSrc":"549:7:81","nodeType":"YulTypedName","src":"549:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"561:6:81","nodeType":"YulTypedName","src":"561:6:81","type":""},{"name":"value1","nativeSrc":"569:6:81","nodeType":"YulTypedName","src":"569:6:81","type":""},{"name":"value2","nativeSrc":"577:6:81","nodeType":"YulTypedName","src":"577:6:81","type":""}],"src":"441:1186:81"},{"body":{"nativeSrc":"1733:102:81","nodeType":"YulBlock","src":"1733:102:81","statements":[{"nativeSrc":"1743:26:81","nodeType":"YulAssignment","src":"1743:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1755:9:81","nodeType":"YulIdentifier","src":"1755:9:81"},{"kind":"number","nativeSrc":"1766:2:81","nodeType":"YulLiteral","src":"1766:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1751:3:81","nodeType":"YulIdentifier","src":"1751:3:81"},"nativeSrc":"1751:18:81","nodeType":"YulFunctionCall","src":"1751:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1743:4:81","nodeType":"YulIdentifier","src":"1743:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1785:9:81","nodeType":"YulIdentifier","src":"1785:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1800:6:81","nodeType":"YulIdentifier","src":"1800:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1816:3:81","nodeType":"YulLiteral","src":"1816:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1821:1:81","nodeType":"YulLiteral","src":"1821:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1812:3:81","nodeType":"YulIdentifier","src":"1812:3:81"},"nativeSrc":"1812:11:81","nodeType":"YulFunctionCall","src":"1812:11:81"},{"kind":"number","nativeSrc":"1825:1:81","nodeType":"YulLiteral","src":"1825:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1808:3:81","nodeType":"YulIdentifier","src":"1808:3:81"},"nativeSrc":"1808:19:81","nodeType":"YulFunctionCall","src":"1808:19:81"}],"functionName":{"name":"and","nativeSrc":"1796:3:81","nodeType":"YulIdentifier","src":"1796:3:81"},"nativeSrc":"1796:32:81","nodeType":"YulFunctionCall","src":"1796:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1778:6:81","nodeType":"YulIdentifier","src":"1778:6:81"},"nativeSrc":"1778:51:81","nodeType":"YulFunctionCall","src":"1778:51:81"},"nativeSrc":"1778:51:81","nodeType":"YulExpressionStatement","src":"1778:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1632:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1702:9:81","nodeType":"YulTypedName","src":"1702:9:81","type":""},{"name":"value0","nativeSrc":"1713:6:81","nodeType":"YulTypedName","src":"1713:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1724:4:81","nodeType":"YulTypedName","src":"1724:4:81","type":""}],"src":"1632:203:81"},{"body":{"nativeSrc":"1977:164:81","nodeType":"YulBlock","src":"1977:164:81","statements":[{"nativeSrc":"1987:27:81","nodeType":"YulVariableDeclaration","src":"1987:27:81","value":{"arguments":[{"name":"value0","nativeSrc":"2007:6:81","nodeType":"YulIdentifier","src":"2007:6:81"}],"functionName":{"name":"mload","nativeSrc":"2001:5:81","nodeType":"YulIdentifier","src":"2001:5:81"},"nativeSrc":"2001:13:81","nodeType":"YulFunctionCall","src":"2001:13:81"},"variables":[{"name":"length","nativeSrc":"1991:6:81","nodeType":"YulTypedName","src":"1991:6:81","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"2029:3:81","nodeType":"YulIdentifier","src":"2029:3:81"},{"arguments":[{"name":"value0","nativeSrc":"2038:6:81","nodeType":"YulIdentifier","src":"2038:6:81"},{"kind":"number","nativeSrc":"2046:4:81","nodeType":"YulLiteral","src":"2046:4:81","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2034:3:81","nodeType":"YulIdentifier","src":"2034:3:81"},"nativeSrc":"2034:17:81","nodeType":"YulFunctionCall","src":"2034:17:81"},{"name":"length","nativeSrc":"2053:6:81","nodeType":"YulIdentifier","src":"2053:6:81"}],"functionName":{"name":"mcopy","nativeSrc":"2023:5:81","nodeType":"YulIdentifier","src":"2023:5:81"},"nativeSrc":"2023:37:81","nodeType":"YulFunctionCall","src":"2023:37:81"},"nativeSrc":"2023:37:81","nodeType":"YulExpressionStatement","src":"2023:37:81"},{"nativeSrc":"2069:26:81","nodeType":"YulVariableDeclaration","src":"2069:26:81","value":{"arguments":[{"name":"pos","nativeSrc":"2083:3:81","nodeType":"YulIdentifier","src":"2083:3:81"},{"name":"length","nativeSrc":"2088:6:81","nodeType":"YulIdentifier","src":"2088:6:81"}],"functionName":{"name":"add","nativeSrc":"2079:3:81","nodeType":"YulIdentifier","src":"2079:3:81"},"nativeSrc":"2079:16:81","nodeType":"YulFunctionCall","src":"2079:16:81"},"variables":[{"name":"_1","nativeSrc":"2073:2:81","nodeType":"YulTypedName","src":"2073:2:81","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"2111:2:81","nodeType":"YulIdentifier","src":"2111:2:81"},{"kind":"number","nativeSrc":"2115:1:81","nodeType":"YulLiteral","src":"2115:1:81","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2104:6:81","nodeType":"YulIdentifier","src":"2104:6:81"},"nativeSrc":"2104:13:81","nodeType":"YulFunctionCall","src":"2104:13:81"},"nativeSrc":"2104:13:81","nodeType":"YulExpressionStatement","src":"2104:13:81"},{"nativeSrc":"2126:9:81","nodeType":"YulAssignment","src":"2126:9:81","value":{"name":"_1","nativeSrc":"2133:2:81","nodeType":"YulIdentifier","src":"2133:2:81"},"variableNames":[{"name":"end","nativeSrc":"2126:3:81","nodeType":"YulIdentifier","src":"2126:3:81"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"1840:301:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"1953:3:81","nodeType":"YulTypedName","src":"1953:3:81","type":""},{"name":"value0","nativeSrc":"1958:6:81","nodeType":"YulTypedName","src":"1958:6:81","type":""}],"returnVariables":[{"name":"end","nativeSrc":"1969:3:81","nodeType":"YulTypedName","src":"1969:3:81","type":""}],"src":"1840:301:81"}]},"contents":"{\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 panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_contract_IAccessManager_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$9511_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value1 := memPtr\n        value2 := abi_decode_contract_IAccessManager_fromMemory(add(headStart, 64))\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_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        mcopy(pos, add(value0, 0x20), length)\n        let _1 := add(pos, length)\n        mstore(_1, 0)\n        end := _1\n    }\n}","id":81,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405260405161062138038061062183398101604081905261002291610274565b828261002e8282610044565b50506001600160a01b03166080525061035d9050565b61004d826100a2565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561009657610091828261011d565b505050565b61009e610190565b5050565b806001600160a01b03163b5f036100dc57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f5f846001600160a01b0316846040516101399190610347565b5f60405180830381855af49150503d805f8114610171576040519150601f19603f3d011682016040523d82523d5f602084013e610176565b606091505b5090925090506101878583836101b1565b95945050505050565b34156101af5760405163b398979f60e01b815260040160405180910390fd5b565b6060826101c6576101c182610210565b610209565b81511580156101dd57506001600160a01b0384163b155b1561020657604051639996b31560e01b81526001600160a01b03851660048201526024016100d3565b50805b9392505050565b8051156102205780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b50565b6001600160a01b0381168114610239575f5ffd5b634e487b7160e01b5f52604160045260245ffd5b805161026f8161023c565b919050565b5f5f5f60608486031215610286575f5ffd5b83516102918161023c565b60208501519093506001600160401b038111156102ac575f5ffd5b8401601f810186136102bc575f5ffd5b80516001600160401b038111156102d5576102d5610250565b604051601f8201601f19908116603f011681016001600160401b038111828210171561030357610303610250565b60405281815282820160200188101561031a575f5ffd5b8160208401602083015e5f6020838301015280945050505061033e60408501610264565b90509250925092565b5f82518060208501845e5f920191825250919050565b6080516102a761037a5f395f81816038015260ca01526102a75ff3fe60806040526004361061001d575f3560e01c80633a7b7a3914610027575b610025610076565b005b348015610032575f5ffd5b5061005a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b610086610081610088565b6100bf565b565b5f6100ba7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b5f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663b700961333306100fe60048636816101ce565b610107916101f5565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610159573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061017d919061022d565b509050806101a35760405162d1953b60e31b815233600482015260240160405180910390fd5b6101ac826101b0565b5050565b365f5f375f5f365f845af43d5f5f3e8080156101ca573d5ff35b3d5ffd5b5f5f858511156101dc575f5ffd5b838611156101e8575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015610226576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f6040838503121561023e575f5ffd5b8251801515811461024d575f5ffd5b602084015190925063ffffffff81168114610266575f5ffd5b80915050925092905056fea2646970667358221220c76a0ca8dfbc8e72ead932afdee81b32ea1886ce86103017e3430c4df913184864736f6c634300081c0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x621 CODESIZE SUB DUP1 PUSH2 0x621 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x274 JUMP JUMPDEST DUP3 DUP3 PUSH2 0x2E DUP3 DUP3 PUSH2 0x44 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE POP PUSH2 0x35D SWAP1 POP JUMP JUMPDEST PUSH2 0x4D DUP3 PUSH2 0xA2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x96 JUMPI PUSH2 0x91 DUP3 DUP3 PUSH2 0x11D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x9E PUSH2 0x190 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xDC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x139 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x171 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x176 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x187 DUP6 DUP4 DUP4 PUSH2 0x1B1 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x1AF JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0x1C6 JUMPI PUSH2 0x1C1 DUP3 PUSH2 0x210 JUMP JUMPDEST PUSH2 0x209 JUMP JUMPDEST DUP2 MLOAD ISZERO DUP1 ISZERO PUSH2 0x1DD JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x206 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xD3 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD ISZERO PUSH2 0x220 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x239 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x26F DUP2 PUSH2 0x23C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x286 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x291 DUP2 PUSH2 0x23C JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2D5 JUMPI PUSH2 0x2D5 PUSH2 0x250 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x303 JUMPI PUSH2 0x303 PUSH2 0x250 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP9 LT ISZERO PUSH2 0x31A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP PUSH2 0x33E PUSH1 0x40 DUP6 ADD PUSH2 0x264 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP6 ADD DUP5 MCOPY PUSH0 SWAP3 ADD SWAP2 DUP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x2A7 PUSH2 0x37A PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH1 0x38 ADD MSTORE PUSH1 0xCA ADD MSTORE PUSH2 0x2A7 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1D JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x27 JUMPI JUMPDEST PUSH2 0x25 PUSH2 0x76 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x86 PUSH2 0x81 PUSH2 0x88 JUMP JUMPDEST PUSH2 0xBF JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0xBA PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xB7009613 CALLER ADDRESS PUSH2 0xFE PUSH1 0x4 DUP7 CALLDATASIZE DUP2 PUSH2 0x1CE JUMP JUMPDEST PUSH2 0x107 SWAP2 PUSH2 0x1F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP6 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH1 0x24 DUP5 ADD MSTORE AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x159 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x17D SWAP2 SWAP1 PUSH2 0x22D JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x1A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1AC DUP3 PUSH2 0x1B0 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x1CA JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x1E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x226 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC7 PUSH11 0xCA8DFBC8E72EAD932AFDE 0xE8 SHL ORIGIN 0xEA XOR DUP7 0xCE DUP7 LT ADDRESS OR 0xE3 NUMBER 0xC 0x4D 0xF9 SGT XOR BASEFEE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"233:943:74:-:0;;;422:175;;;;;;;;;;;;;;;;;;:::i;:::-;539:14;555:5;1155:52:43;539:14:74;555:5;1155:29:43;:52::i;:::-;-1:-1:-1;;;;;;;568:24:74::1;;::::0;-1:-1:-1;233:943:74;;-1:-1:-1;233:943:74;2264:344:44;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:44;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1671:281::-;1748:17;-1:-1:-1;;;;;1748:29:44;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:44;;-1:-1:-1;;;;;1796:32:81;;1805:47:44;;;1778:51:81;1751:18;;1805:47:44;;;;;;;;1744:119;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:44;-1:-1:-1;;;;;1872:73:44;;;;;;;;;;1671:281::o;3916:253:54:-;3999:12;4024;4038:23;4065:6;-1:-1:-1;;;;;4065:19:54;4085:4;4065:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4023:67:54;;-1:-1:-1;4023:67:54;-1:-1:-1;4107:55:54;4134:6;4023:67;;4107:26;:55::i;:::-;4100:62;3916:253;-1:-1:-1;;;;;3916:253:54:o;6113:122:44:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:44;;;;;;;;;;;6159:70;6113:122::o;4437:582:54:-;4581:12;4610:7;4605:408;;4633:19;4641:10;4633:7;:19::i;:::-;4605:408;;;4857:17;;:22;:49;;;;-1:-1:-1;;;;;;4883:18:54;;;:23;4857:49;4853:119;;;4933:24;;-1:-1:-1;;;4933:24:54;;-1:-1:-1;;;;;1796:32:81;;4933:24:54;;;1778:51:81;1751:18;;4933:24:54;1632:203:81;4853:119:54;-1:-1:-1;4992:10:54;4605:408;4437:582;;;;;:::o;5559:487::-;5690:17;;:21;5686:354;;5887:10;5881:17;5943:15;5930:10;5926:2;5922:19;5915:44;5686:354;6010:19;;-1:-1:-1;;;6010:19:54;;;;;;;;;;;5686:354;5559:487;:::o;14:131:81:-;-1:-1:-1;;;;;89:31:81;;79:42;;69:70;;135:1;132;125:12;150:127;211:10;206:3;202:20;199:1;192:31;242:4;239:1;232:15;266:4;263:1;256:15;282:154;377:13;;399:31;377:13;399:31;:::i;:::-;282:154;;;:::o;441:1186::-;561:6;569;577;630:2;618:9;609:7;605:23;601:32;598:52;;;646:1;643;636:12;598:52;678:9;672:16;697:31;722:5;697:31;:::i;:::-;796:2;781:18;;775:25;747:5;;-1:-1:-1;;;;;;812:30:81;;809:50;;;855:1;852;845:12;809:50;878:22;;931:4;923:13;;919:27;-1:-1:-1;909:55:81;;960:1;957;950:12;909:55;987:9;;-1:-1:-1;;;;;1008:30:81;;1005:56;;;1041:18;;:::i;:::-;1090:2;1084:9;1182:2;1144:17;;-1:-1:-1;;1140:31:81;;;1173:2;1136:40;1132:54;1120:67;;-1:-1:-1;;;;;1202:34:81;;1238:22;;;1199:62;1196:88;;;1264:18;;:::i;:::-;1300:2;1293:22;1324;;;1365:15;;;1382:2;1361:24;1358:37;-1:-1:-1;1355:57:81;;;1408:1;1405;1398:12;1355:57;1457:6;1452:2;1448;1444:11;1439:2;1431:6;1427:15;1421:43;1510:1;1505:2;1496:6;1488;1484:19;1480:28;1473:39;1531:6;1521:16;;;;;1556:65;1617:2;1606:9;1602:18;1556:65;:::i;:::-;1546:75;;441:1186;;;;;:::o;1840:301::-;1969:3;2007:6;2001:13;2053:6;2046:4;2038:6;2034:17;2029:3;2023:37;2115:1;2079:16;;2104:13;;;-1:-1:-1;2079:16:81;1840:301;-1:-1:-1;1840:301:81:o;:::-;233:943:74;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ACCESS_MANAGER_25476":{"entryPoint":null,"id":25476,"parameterSlots":0,"returnSlots":0},"@_10461":{"entryPoint":null,"id":10461,"parameterSlots":0,"returnSlots":0},"@_delegate_10437":{"entryPoint":432,"id":10437,"parameterSlots":1,"returnSlots":0},"@_delegate_25541":{"entryPoint":191,"id":25541,"parameterSlots":1,"returnSlots":0},"@_fallback_10453":{"entryPoint":118,"id":10453,"parameterSlots":0,"returnSlots":0},"@_implementation_10131":{"entryPoint":136,"id":10131,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_16461":{"entryPoint":null,"id":16461,"parameterSlots":1,"returnSlots":1},"@getImplementation_10178":{"entryPoint":null,"id":10178,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":557,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_contract$_IAccessManager_$9511__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":462,"id":null,"parameterSlots":4,"returnSlots":2},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":501,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:1977:81","nodeType":"YulBlock","src":"0:1977:81","statements":[{"nativeSrc":"6:3:81","nodeType":"YulBlock","src":"6:3:81","statements":[]},{"body":{"nativeSrc":"138:102:81","nodeType":"YulBlock","src":"138:102:81","statements":[{"nativeSrc":"148:26:81","nodeType":"YulAssignment","src":"148:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"160:9:81","nodeType":"YulIdentifier","src":"160:9:81"},{"kind":"number","nativeSrc":"171:2:81","nodeType":"YulLiteral","src":"171:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"156:3:81","nodeType":"YulIdentifier","src":"156:3:81"},"nativeSrc":"156:18:81","nodeType":"YulFunctionCall","src":"156:18:81"},"variableNames":[{"name":"tail","nativeSrc":"148:4:81","nodeType":"YulIdentifier","src":"148:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"190:9:81","nodeType":"YulIdentifier","src":"190:9:81"},{"arguments":[{"name":"value0","nativeSrc":"205:6:81","nodeType":"YulIdentifier","src":"205:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"221:3:81","nodeType":"YulLiteral","src":"221:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"226:1:81","nodeType":"YulLiteral","src":"226:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"217:3:81","nodeType":"YulIdentifier","src":"217:3:81"},"nativeSrc":"217:11:81","nodeType":"YulFunctionCall","src":"217:11:81"},{"kind":"number","nativeSrc":"230:1:81","nodeType":"YulLiteral","src":"230:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"213:3:81","nodeType":"YulIdentifier","src":"213:3:81"},"nativeSrc":"213:19:81","nodeType":"YulFunctionCall","src":"213:19:81"}],"functionName":{"name":"and","nativeSrc":"201:3:81","nodeType":"YulIdentifier","src":"201:3:81"},"nativeSrc":"201:32:81","nodeType":"YulFunctionCall","src":"201:32:81"}],"functionName":{"name":"mstore","nativeSrc":"183:6:81","nodeType":"YulIdentifier","src":"183:6:81"},"nativeSrc":"183:51:81","nodeType":"YulFunctionCall","src":"183:51:81"},"nativeSrc":"183:51:81","nodeType":"YulExpressionStatement","src":"183:51:81"}]},"name":"abi_encode_tuple_t_contract$_IAccessManager_$9511__to_t_address__fromStack_reversed","nativeSrc":"14:226:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"107:9:81","nodeType":"YulTypedName","src":"107:9:81","type":""},{"name":"value0","nativeSrc":"118:6:81","nodeType":"YulTypedName","src":"118:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"129:4:81","nodeType":"YulTypedName","src":"129:4:81","type":""}],"src":"14:226:81"},{"body":{"nativeSrc":"375:201:81","nodeType":"YulBlock","src":"375:201:81","statements":[{"body":{"nativeSrc":"413:16:81","nodeType":"YulBlock","src":"413:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"422:1:81","nodeType":"YulLiteral","src":"422:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"425:1:81","nodeType":"YulLiteral","src":"425:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"415:6:81","nodeType":"YulIdentifier","src":"415:6:81"},"nativeSrc":"415:12:81","nodeType":"YulFunctionCall","src":"415:12:81"},"nativeSrc":"415:12:81","nodeType":"YulExpressionStatement","src":"415:12:81"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"391:10:81","nodeType":"YulIdentifier","src":"391:10:81"},{"name":"endIndex","nativeSrc":"403:8:81","nodeType":"YulIdentifier","src":"403:8:81"}],"functionName":{"name":"gt","nativeSrc":"388:2:81","nodeType":"YulIdentifier","src":"388:2:81"},"nativeSrc":"388:24:81","nodeType":"YulFunctionCall","src":"388:24:81"},"nativeSrc":"385:44:81","nodeType":"YulIf","src":"385:44:81"},{"body":{"nativeSrc":"462:16:81","nodeType":"YulBlock","src":"462:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"471:1:81","nodeType":"YulLiteral","src":"471:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"474:1:81","nodeType":"YulLiteral","src":"474:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"464:6:81","nodeType":"YulIdentifier","src":"464:6:81"},"nativeSrc":"464:12:81","nodeType":"YulFunctionCall","src":"464:12:81"},"nativeSrc":"464:12:81","nodeType":"YulExpressionStatement","src":"464:12:81"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"444:8:81","nodeType":"YulIdentifier","src":"444:8:81"},{"name":"length","nativeSrc":"454:6:81","nodeType":"YulIdentifier","src":"454:6:81"}],"functionName":{"name":"gt","nativeSrc":"441:2:81","nodeType":"YulIdentifier","src":"441:2:81"},"nativeSrc":"441:20:81","nodeType":"YulFunctionCall","src":"441:20:81"},"nativeSrc":"438:40:81","nodeType":"YulIf","src":"438:40:81"},{"nativeSrc":"487:36:81","nodeType":"YulAssignment","src":"487:36:81","value":{"arguments":[{"name":"offset","nativeSrc":"504:6:81","nodeType":"YulIdentifier","src":"504:6:81"},{"name":"startIndex","nativeSrc":"512:10:81","nodeType":"YulIdentifier","src":"512:10:81"}],"functionName":{"name":"add","nativeSrc":"500:3:81","nodeType":"YulIdentifier","src":"500:3:81"},"nativeSrc":"500:23:81","nodeType":"YulFunctionCall","src":"500:23:81"},"variableNames":[{"name":"offsetOut","nativeSrc":"487:9:81","nodeType":"YulIdentifier","src":"487:9:81"}]},{"nativeSrc":"532:38:81","nodeType":"YulAssignment","src":"532:38:81","value":{"arguments":[{"name":"endIndex","nativeSrc":"549:8:81","nodeType":"YulIdentifier","src":"549:8:81"},{"name":"startIndex","nativeSrc":"559:10:81","nodeType":"YulIdentifier","src":"559:10:81"}],"functionName":{"name":"sub","nativeSrc":"545:3:81","nodeType":"YulIdentifier","src":"545:3:81"},"nativeSrc":"545:25:81","nodeType":"YulFunctionCall","src":"545:25:81"},"variableNames":[{"name":"lengthOut","nativeSrc":"532:9:81","nodeType":"YulIdentifier","src":"532:9:81"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"245:331:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"309:6:81","nodeType":"YulTypedName","src":"309:6:81","type":""},{"name":"length","nativeSrc":"317:6:81","nodeType":"YulTypedName","src":"317:6:81","type":""},{"name":"startIndex","nativeSrc":"325:10:81","nodeType":"YulTypedName","src":"325:10:81","type":""},{"name":"endIndex","nativeSrc":"337:8:81","nodeType":"YulTypedName","src":"337:8:81","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"350:9:81","nodeType":"YulTypedName","src":"350:9:81","type":""},{"name":"lengthOut","nativeSrc":"361:9:81","nodeType":"YulTypedName","src":"361:9:81","type":""}],"src":"245:331:81"},{"body":{"nativeSrc":"681:238:81","nodeType":"YulBlock","src":"681:238:81","statements":[{"nativeSrc":"691:29:81","nodeType":"YulVariableDeclaration","src":"691:29:81","value":{"arguments":[{"name":"array","nativeSrc":"714:5:81","nodeType":"YulIdentifier","src":"714:5:81"}],"functionName":{"name":"calldataload","nativeSrc":"701:12:81","nodeType":"YulIdentifier","src":"701:12:81"},"nativeSrc":"701:19:81","nodeType":"YulFunctionCall","src":"701:19:81"},"variables":[{"name":"_1","nativeSrc":"695:2:81","nodeType":"YulTypedName","src":"695:2:81","type":""}]},{"nativeSrc":"729:38:81","nodeType":"YulAssignment","src":"729:38:81","value":{"arguments":[{"name":"_1","nativeSrc":"742:2:81","nodeType":"YulIdentifier","src":"742:2:81"},{"arguments":[{"kind":"number","nativeSrc":"750:3:81","nodeType":"YulLiteral","src":"750:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"755:10:81","nodeType":"YulLiteral","src":"755:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"746:3:81","nodeType":"YulIdentifier","src":"746:3:81"},"nativeSrc":"746:20:81","nodeType":"YulFunctionCall","src":"746:20:81"}],"functionName":{"name":"and","nativeSrc":"738:3:81","nodeType":"YulIdentifier","src":"738:3:81"},"nativeSrc":"738:29:81","nodeType":"YulFunctionCall","src":"738:29:81"},"variableNames":[{"name":"value","nativeSrc":"729:5:81","nodeType":"YulIdentifier","src":"729:5:81"}]},{"body":{"nativeSrc":"798:115:81","nodeType":"YulBlock","src":"798:115:81","statements":[{"nativeSrc":"812:91:81","nodeType":"YulAssignment","src":"812:91:81","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"829:2:81","nodeType":"YulIdentifier","src":"829:2:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"841:1:81","nodeType":"YulLiteral","src":"841:1:81","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"848:1:81","nodeType":"YulLiteral","src":"848:1:81","type":"","value":"4"},{"name":"len","nativeSrc":"851:3:81","nodeType":"YulIdentifier","src":"851:3:81"}],"functionName":{"name":"sub","nativeSrc":"844:3:81","nodeType":"YulIdentifier","src":"844:3:81"},"nativeSrc":"844:11:81","nodeType":"YulFunctionCall","src":"844:11:81"}],"functionName":{"name":"shl","nativeSrc":"837:3:81","nodeType":"YulIdentifier","src":"837:3:81"},"nativeSrc":"837:19:81","nodeType":"YulFunctionCall","src":"837:19:81"},{"arguments":[{"kind":"number","nativeSrc":"862:3:81","nodeType":"YulLiteral","src":"862:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"867:10:81","nodeType":"YulLiteral","src":"867:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"858:3:81","nodeType":"YulIdentifier","src":"858:3:81"},"nativeSrc":"858:20:81","nodeType":"YulFunctionCall","src":"858:20:81"}],"functionName":{"name":"shl","nativeSrc":"833:3:81","nodeType":"YulIdentifier","src":"833:3:81"},"nativeSrc":"833:46:81","nodeType":"YulFunctionCall","src":"833:46:81"}],"functionName":{"name":"and","nativeSrc":"825:3:81","nodeType":"YulIdentifier","src":"825:3:81"},"nativeSrc":"825:55:81","nodeType":"YulFunctionCall","src":"825:55:81"},{"arguments":[{"kind":"number","nativeSrc":"886:3:81","nodeType":"YulLiteral","src":"886:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"891:10:81","nodeType":"YulLiteral","src":"891:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"882:3:81","nodeType":"YulIdentifier","src":"882:3:81"},"nativeSrc":"882:20:81","nodeType":"YulFunctionCall","src":"882:20:81"}],"functionName":{"name":"and","nativeSrc":"821:3:81","nodeType":"YulIdentifier","src":"821:3:81"},"nativeSrc":"821:82:81","nodeType":"YulFunctionCall","src":"821:82:81"},"variableNames":[{"name":"value","nativeSrc":"812:5:81","nodeType":"YulIdentifier","src":"812:5:81"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"782:3:81","nodeType":"YulIdentifier","src":"782:3:81"},{"kind":"number","nativeSrc":"787:1:81","nodeType":"YulLiteral","src":"787:1:81","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"779:2:81","nodeType":"YulIdentifier","src":"779:2:81"},"nativeSrc":"779:10:81","nodeType":"YulFunctionCall","src":"779:10:81"},"nativeSrc":"776:137:81","nodeType":"YulIf","src":"776:137:81"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"581:338:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"656:5:81","nodeType":"YulTypedName","src":"656:5:81","type":""},{"name":"len","nativeSrc":"663:3:81","nodeType":"YulTypedName","src":"663:3:81","type":""}],"returnVariables":[{"name":"value","nativeSrc":"671:5:81","nodeType":"YulTypedName","src":"671:5:81","type":""}],"src":"581:338:81"},{"body":{"nativeSrc":"1079:241:81","nodeType":"YulBlock","src":"1079:241:81","statements":[{"nativeSrc":"1089:26:81","nodeType":"YulAssignment","src":"1089:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1101:9:81","nodeType":"YulIdentifier","src":"1101:9:81"},{"kind":"number","nativeSrc":"1112:2:81","nodeType":"YulLiteral","src":"1112:2:81","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1097:3:81","nodeType":"YulIdentifier","src":"1097:3:81"},"nativeSrc":"1097:18:81","nodeType":"YulFunctionCall","src":"1097:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1089:4:81","nodeType":"YulIdentifier","src":"1089:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1131:9:81","nodeType":"YulIdentifier","src":"1131:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1146:6:81","nodeType":"YulIdentifier","src":"1146:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1162:3:81","nodeType":"YulLiteral","src":"1162:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1167:1:81","nodeType":"YulLiteral","src":"1167:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1158:3:81","nodeType":"YulIdentifier","src":"1158:3:81"},"nativeSrc":"1158:11:81","nodeType":"YulFunctionCall","src":"1158:11:81"},{"kind":"number","nativeSrc":"1171:1:81","nodeType":"YulLiteral","src":"1171:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1154:3:81","nodeType":"YulIdentifier","src":"1154:3:81"},"nativeSrc":"1154:19:81","nodeType":"YulFunctionCall","src":"1154:19:81"}],"functionName":{"name":"and","nativeSrc":"1142:3:81","nodeType":"YulIdentifier","src":"1142:3:81"},"nativeSrc":"1142:32:81","nodeType":"YulFunctionCall","src":"1142:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1124:6:81","nodeType":"YulIdentifier","src":"1124:6:81"},"nativeSrc":"1124:51:81","nodeType":"YulFunctionCall","src":"1124:51:81"},"nativeSrc":"1124:51:81","nodeType":"YulExpressionStatement","src":"1124:51:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1195:9:81","nodeType":"YulIdentifier","src":"1195:9:81"},{"kind":"number","nativeSrc":"1206:2:81","nodeType":"YulLiteral","src":"1206:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1191:3:81","nodeType":"YulIdentifier","src":"1191:3:81"},"nativeSrc":"1191:18:81","nodeType":"YulFunctionCall","src":"1191:18:81"},{"arguments":[{"name":"value1","nativeSrc":"1215:6:81","nodeType":"YulIdentifier","src":"1215:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1231:3:81","nodeType":"YulLiteral","src":"1231:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1236:1:81","nodeType":"YulLiteral","src":"1236:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1227:3:81","nodeType":"YulIdentifier","src":"1227:3:81"},"nativeSrc":"1227:11:81","nodeType":"YulFunctionCall","src":"1227:11:81"},{"kind":"number","nativeSrc":"1240:1:81","nodeType":"YulLiteral","src":"1240:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1223:3:81","nodeType":"YulIdentifier","src":"1223:3:81"},"nativeSrc":"1223:19:81","nodeType":"YulFunctionCall","src":"1223:19:81"}],"functionName":{"name":"and","nativeSrc":"1211:3:81","nodeType":"YulIdentifier","src":"1211:3:81"},"nativeSrc":"1211:32:81","nodeType":"YulFunctionCall","src":"1211:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1184:6:81","nodeType":"YulIdentifier","src":"1184:6:81"},"nativeSrc":"1184:60:81","nodeType":"YulFunctionCall","src":"1184:60:81"},"nativeSrc":"1184:60:81","nodeType":"YulExpressionStatement","src":"1184:60:81"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1264:9:81","nodeType":"YulIdentifier","src":"1264:9:81"},{"kind":"number","nativeSrc":"1275:2:81","nodeType":"YulLiteral","src":"1275:2:81","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1260:3:81","nodeType":"YulIdentifier","src":"1260:3:81"},"nativeSrc":"1260:18:81","nodeType":"YulFunctionCall","src":"1260:18:81"},{"arguments":[{"name":"value2","nativeSrc":"1284:6:81","nodeType":"YulIdentifier","src":"1284:6:81"},{"arguments":[{"kind":"number","nativeSrc":"1296:3:81","nodeType":"YulLiteral","src":"1296:3:81","type":"","value":"224"},{"kind":"number","nativeSrc":"1301:10:81","nodeType":"YulLiteral","src":"1301:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1292:3:81","nodeType":"YulIdentifier","src":"1292:3:81"},"nativeSrc":"1292:20:81","nodeType":"YulFunctionCall","src":"1292:20:81"}],"functionName":{"name":"and","nativeSrc":"1280:3:81","nodeType":"YulIdentifier","src":"1280:3:81"},"nativeSrc":"1280:33:81","nodeType":"YulFunctionCall","src":"1280:33:81"}],"functionName":{"name":"mstore","nativeSrc":"1253:6:81","nodeType":"YulIdentifier","src":"1253:6:81"},"nativeSrc":"1253:61:81","nodeType":"YulFunctionCall","src":"1253:61:81"},"nativeSrc":"1253:61:81","nodeType":"YulExpressionStatement","src":"1253:61:81"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"924:396:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1032:9:81","nodeType":"YulTypedName","src":"1032:9:81","type":""},{"name":"value2","nativeSrc":"1043:6:81","nodeType":"YulTypedName","src":"1043:6:81","type":""},{"name":"value1","nativeSrc":"1051:6:81","nodeType":"YulTypedName","src":"1051:6:81","type":""},{"name":"value0","nativeSrc":"1059:6:81","nodeType":"YulTypedName","src":"1059:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1070:4:81","nodeType":"YulTypedName","src":"1070:4:81","type":""}],"src":"924:396:81"},{"body":{"nativeSrc":"1419:348:81","nodeType":"YulBlock","src":"1419:348:81","statements":[{"body":{"nativeSrc":"1465:16:81","nodeType":"YulBlock","src":"1465:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1474:1:81","nodeType":"YulLiteral","src":"1474:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1477:1:81","nodeType":"YulLiteral","src":"1477:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1467:6:81","nodeType":"YulIdentifier","src":"1467:6:81"},"nativeSrc":"1467:12:81","nodeType":"YulFunctionCall","src":"1467:12:81"},"nativeSrc":"1467:12:81","nodeType":"YulExpressionStatement","src":"1467:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1440:7:81","nodeType":"YulIdentifier","src":"1440:7:81"},{"name":"headStart","nativeSrc":"1449:9:81","nodeType":"YulIdentifier","src":"1449:9:81"}],"functionName":{"name":"sub","nativeSrc":"1436:3:81","nodeType":"YulIdentifier","src":"1436:3:81"},"nativeSrc":"1436:23:81","nodeType":"YulFunctionCall","src":"1436:23:81"},{"kind":"number","nativeSrc":"1461:2:81","nodeType":"YulLiteral","src":"1461:2:81","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1432:3:81","nodeType":"YulIdentifier","src":"1432:3:81"},"nativeSrc":"1432:32:81","nodeType":"YulFunctionCall","src":"1432:32:81"},"nativeSrc":"1429:52:81","nodeType":"YulIf","src":"1429:52:81"},{"nativeSrc":"1490:29:81","nodeType":"YulVariableDeclaration","src":"1490:29:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1509:9:81","nodeType":"YulIdentifier","src":"1509:9:81"}],"functionName":{"name":"mload","nativeSrc":"1503:5:81","nodeType":"YulIdentifier","src":"1503:5:81"},"nativeSrc":"1503:16:81","nodeType":"YulFunctionCall","src":"1503:16:81"},"variables":[{"name":"value","nativeSrc":"1494:5:81","nodeType":"YulTypedName","src":"1494:5:81","type":""}]},{"body":{"nativeSrc":"1572:16:81","nodeType":"YulBlock","src":"1572:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1581:1:81","nodeType":"YulLiteral","src":"1581:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1584:1:81","nodeType":"YulLiteral","src":"1584:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1574:6:81","nodeType":"YulIdentifier","src":"1574:6:81"},"nativeSrc":"1574:12:81","nodeType":"YulFunctionCall","src":"1574:12:81"},"nativeSrc":"1574:12:81","nodeType":"YulExpressionStatement","src":"1574:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1541:5:81","nodeType":"YulIdentifier","src":"1541:5:81"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1562:5:81","nodeType":"YulIdentifier","src":"1562:5:81"}],"functionName":{"name":"iszero","nativeSrc":"1555:6:81","nodeType":"YulIdentifier","src":"1555:6:81"},"nativeSrc":"1555:13:81","nodeType":"YulFunctionCall","src":"1555:13:81"}],"functionName":{"name":"iszero","nativeSrc":"1548:6:81","nodeType":"YulIdentifier","src":"1548:6:81"},"nativeSrc":"1548:21:81","nodeType":"YulFunctionCall","src":"1548:21:81"}],"functionName":{"name":"eq","nativeSrc":"1538:2:81","nodeType":"YulIdentifier","src":"1538:2:81"},"nativeSrc":"1538:32:81","nodeType":"YulFunctionCall","src":"1538:32:81"}],"functionName":{"name":"iszero","nativeSrc":"1531:6:81","nodeType":"YulIdentifier","src":"1531:6:81"},"nativeSrc":"1531:40:81","nodeType":"YulFunctionCall","src":"1531:40:81"},"nativeSrc":"1528:60:81","nodeType":"YulIf","src":"1528:60:81"},{"nativeSrc":"1597:15:81","nodeType":"YulAssignment","src":"1597:15:81","value":{"name":"value","nativeSrc":"1607:5:81","nodeType":"YulIdentifier","src":"1607:5:81"},"variableNames":[{"name":"value0","nativeSrc":"1597:6:81","nodeType":"YulIdentifier","src":"1597:6:81"}]},{"nativeSrc":"1621:40:81","nodeType":"YulVariableDeclaration","src":"1621:40:81","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1646:9:81","nodeType":"YulIdentifier","src":"1646:9:81"},{"kind":"number","nativeSrc":"1657:2:81","nodeType":"YulLiteral","src":"1657:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1642:3:81","nodeType":"YulIdentifier","src":"1642:3:81"},"nativeSrc":"1642:18:81","nodeType":"YulFunctionCall","src":"1642:18:81"}],"functionName":{"name":"mload","nativeSrc":"1636:5:81","nodeType":"YulIdentifier","src":"1636:5:81"},"nativeSrc":"1636:25:81","nodeType":"YulFunctionCall","src":"1636:25:81"},"variables":[{"name":"value_1","nativeSrc":"1625:7:81","nodeType":"YulTypedName","src":"1625:7:81","type":""}]},{"body":{"nativeSrc":"1719:16:81","nodeType":"YulBlock","src":"1719:16:81","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1728:1:81","nodeType":"YulLiteral","src":"1728:1:81","type":"","value":"0"},{"kind":"number","nativeSrc":"1731:1:81","nodeType":"YulLiteral","src":"1731:1:81","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1721:6:81","nodeType":"YulIdentifier","src":"1721:6:81"},"nativeSrc":"1721:12:81","nodeType":"YulFunctionCall","src":"1721:12:81"},"nativeSrc":"1721:12:81","nodeType":"YulExpressionStatement","src":"1721:12:81"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1683:7:81","nodeType":"YulIdentifier","src":"1683:7:81"},{"arguments":[{"name":"value_1","nativeSrc":"1696:7:81","nodeType":"YulIdentifier","src":"1696:7:81"},{"kind":"number","nativeSrc":"1705:10:81","nodeType":"YulLiteral","src":"1705:10:81","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1692:3:81","nodeType":"YulIdentifier","src":"1692:3:81"},"nativeSrc":"1692:24:81","nodeType":"YulFunctionCall","src":"1692:24:81"}],"functionName":{"name":"eq","nativeSrc":"1680:2:81","nodeType":"YulIdentifier","src":"1680:2:81"},"nativeSrc":"1680:37:81","nodeType":"YulFunctionCall","src":"1680:37:81"}],"functionName":{"name":"iszero","nativeSrc":"1673:6:81","nodeType":"YulIdentifier","src":"1673:6:81"},"nativeSrc":"1673:45:81","nodeType":"YulFunctionCall","src":"1673:45:81"},"nativeSrc":"1670:65:81","nodeType":"YulIf","src":"1670:65:81"},{"nativeSrc":"1744:17:81","nodeType":"YulAssignment","src":"1744:17:81","value":{"name":"value_1","nativeSrc":"1754:7:81","nodeType":"YulIdentifier","src":"1754:7:81"},"variableNames":[{"name":"value1","nativeSrc":"1744:6:81","nodeType":"YulIdentifier","src":"1744:6:81"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"1325:442:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1377:9:81","nodeType":"YulTypedName","src":"1377:9:81","type":""},{"name":"dataEnd","nativeSrc":"1388:7:81","nodeType":"YulTypedName","src":"1388:7:81","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1400:6:81","nodeType":"YulTypedName","src":"1400:6:81","type":""},{"name":"value1","nativeSrc":"1408:6:81","nodeType":"YulTypedName","src":"1408:6:81","type":""}],"src":"1325:442:81"},{"body":{"nativeSrc":"1873:102:81","nodeType":"YulBlock","src":"1873:102:81","statements":[{"nativeSrc":"1883:26:81","nodeType":"YulAssignment","src":"1883:26:81","value":{"arguments":[{"name":"headStart","nativeSrc":"1895:9:81","nodeType":"YulIdentifier","src":"1895:9:81"},{"kind":"number","nativeSrc":"1906:2:81","nodeType":"YulLiteral","src":"1906:2:81","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1891:3:81","nodeType":"YulIdentifier","src":"1891:3:81"},"nativeSrc":"1891:18:81","nodeType":"YulFunctionCall","src":"1891:18:81"},"variableNames":[{"name":"tail","nativeSrc":"1883:4:81","nodeType":"YulIdentifier","src":"1883:4:81"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1925:9:81","nodeType":"YulIdentifier","src":"1925:9:81"},{"arguments":[{"name":"value0","nativeSrc":"1940:6:81","nodeType":"YulIdentifier","src":"1940:6:81"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1956:3:81","nodeType":"YulLiteral","src":"1956:3:81","type":"","value":"160"},{"kind":"number","nativeSrc":"1961:1:81","nodeType":"YulLiteral","src":"1961:1:81","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1952:3:81","nodeType":"YulIdentifier","src":"1952:3:81"},"nativeSrc":"1952:11:81","nodeType":"YulFunctionCall","src":"1952:11:81"},{"kind":"number","nativeSrc":"1965:1:81","nodeType":"YulLiteral","src":"1965:1:81","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1948:3:81","nodeType":"YulIdentifier","src":"1948:3:81"},"nativeSrc":"1948:19:81","nodeType":"YulFunctionCall","src":"1948:19:81"}],"functionName":{"name":"and","nativeSrc":"1936:3:81","nodeType":"YulIdentifier","src":"1936:3:81"},"nativeSrc":"1936:32:81","nodeType":"YulFunctionCall","src":"1936:32:81"}],"functionName":{"name":"mstore","nativeSrc":"1918:6:81","nodeType":"YulIdentifier","src":"1918:6:81"},"nativeSrc":"1918:51:81","nodeType":"YulFunctionCall","src":"1918:51:81"},"nativeSrc":"1918:51:81","nodeType":"YulExpressionStatement","src":"1918:51:81"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1772:203:81","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1842:9:81","nodeType":"YulTypedName","src":"1842:9:81","type":""},{"name":"value0","nativeSrc":"1853:6:81","nodeType":"YulTypedName","src":"1853:6:81","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1864:4:81","nodeType":"YulTypedName","src":"1864:4:81","type":""}],"src":"1772:203:81"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_contract$_IAccessManager_$9511__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 calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut\n    {\n        if gt(startIndex, endIndex) { revert(0, 0) }\n        if gt(endIndex, length) { revert(0, 0) }\n        offsetOut := add(offset, startIndex)\n        lengthOut := sub(endIndex, startIndex)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, shl(224, 0xffffffff))\n        if lt(len, 4)\n        {\n            value := and(and(_1, shl(shl(3, sub(4, len)), shl(224, 0xffffffff))), shl(224, 0xffffffff))\n        }\n    }\n    function abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, shl(224, 0xffffffff)))\n    }\n    function abi_decode_tuple_t_boolt_uint32_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, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffff))) { revert(0, 0) }\n        value1 := value_1\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}","id":81,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"25476":[{"length":32,"start":56},{"length":32,"start":202}]},"linkReferences":{},"object":"60806040526004361061001d575f3560e01c80633a7b7a3914610027575b610025610076565b005b348015610032575f5ffd5b5061005a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b610086610081610088565b6100bf565b565b5f6100ba7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b5f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663b700961333306100fe60048636816101ce565b610107916101f5565b60405160e085901b6001600160e01b031990811682526001600160a01b0394851660048301529290931660248401521660448201526064016040805180830381865afa158015610159573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061017d919061022d565b509050806101a35760405162d1953b60e31b815233600482015260240160405180910390fd5b6101ac826101b0565b5050565b365f5f375f5f365f845af43d5f5f3e8080156101ca573d5ff35b3d5ffd5b5f5f858511156101dc575f5ffd5b838611156101e8575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015610226576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f6040838503121561023e575f5ffd5b8251801515811461024d575f5ffd5b602084015190925063ffffffff81168114610266575f5ffd5b80915050925092905056fea2646970667358221220c76a0ca8dfbc8e72ead932afdee81b32ea1886ce86103017e3430c4df913184864736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1D JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x27 JUMPI JUMPDEST PUSH2 0x25 PUSH2 0x76 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x86 PUSH2 0x81 PUSH2 0x88 JUMP JUMPDEST PUSH2 0xBF JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0xBA PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xB7009613 CALLER ADDRESS PUSH2 0xFE PUSH1 0x4 DUP7 CALLDATASIZE DUP2 PUSH2 0x1CE JUMP JUMPDEST PUSH2 0x107 SWAP2 PUSH2 0x1F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP6 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH1 0x24 DUP5 ADD MSTORE AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x159 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x17D SWAP2 SWAP1 PUSH2 0x22D JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x1A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1AC DUP3 PUSH2 0x1B0 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x1CA JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x1E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x226 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 DUP6 SWAP1 SUB PUSH1 0x3 SHL DUP2 SWAP1 SHL DUP3 AND AND SWAP2 POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC7 PUSH11 0xCA8DFBC8E72EAD932AFDE 0xE8 SHL ORIGIN 0xEA XOR DUP7 0xCE DUP7 LT ADDRESS OR 0xE3 NUMBER 0xC 0x4D 0xF9 SGT XOR BASEFEE PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"233:943:74:-:0;;;;;;;;;;;;;;;;;;2649:11:45;:9;:11::i;:::-;233:943:74;281:46;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;201:32:81;;;183:51;;171:2;156:18;281:46:74;;;;;;;2323:83:45;2371:28;2381:17;:15;:17::i;:::-;2371:9;:28::i;:::-;2323:83::o;1583:132:43:-;1650:7;1676:32;811:66:44;1519:53;-1:-1:-1;;;;;1519:53:44;;1441:138;1676:32:43;1669:39;;1583:132;:::o;898:276:74:-;974:14;-1:-1:-1;;;;;994:14:74;:22;;1017:10;1037:4;1051:13;1062:1;974:14;1051:8;974:14;1051:13;:::i;:::-;1044:21;;;:::i;:::-;994:72;;;;;;-1:-1:-1;;;;;;994:72:74;;;;;-1:-1:-1;;;;;1142:32:81;;;994:72:74;;;1124:51:81;1211:32;;;;1191:18;;;1184:60;1280:33;1260:18;;;1253:61;1097:18;;994:72:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;973:93;;;1077:9;1072:60;;1095:37;;-1:-1:-1;;;1095:37:74;;1121:10;1095:37;;;183:51:81;156:18;;1095:37:74;;;;;;;1072:60;1138:31;1154:14;1138:15;:31::i;:::-;967:207;898:276;:::o;949:895:45:-;1287:14;1284:1;1281;1268:34;1501:1;1498;1482:14;1479:1;1463:14;1456:5;1443:60;1577:16;1574:1;1571;1556:38;1615:6;1682:66;;;;1797:16;1794:1;1787:27;1682:66;1717:16;1714:1;1707:27;245:331:81;350:9;361;403:8;391:10;388:24;385:44;;;425:1;422;415:12;385:44;454:6;444:8;441:20;438:40;;;474:1;471;464:12;438:40;-1:-1:-1;;500:23:81;;;545:25;;;;;-1:-1:-1;245:331:81:o;581:338::-;701:19;;-1:-1:-1;;;;;;738:29:81;;;787:1;779:10;;776:137;;;-1:-1:-1;;;;;;848:1:81;844:11;;;841:1;837:19;833:46;;;825:55;;821:82;;-1:-1:-1;776:137:81;;581:338;;;;:::o;1325:442::-;1400:6;1408;1461:2;1449:9;1440:7;1436:23;1432:32;1429:52;;;1477:1;1474;1467:12;1429:52;1509:9;1503:16;1562:5;1555:13;1548:21;1541:5;1538:32;1528:60;;1584:1;1581;1574:12;1528:60;1657:2;1642:18;;1636:25;1607:5;;-1:-1:-1;1705:10:81;1692:24;;1680:37;;1670:65;;1731:1;1728;1721:12;1670:65;1754:7;1744:17;;;1325:442;;;;;:::o"},"methodIdentifiers":{"ACCESS_MANAGER()":"3a7b7a39"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"},{\"internalType\":\"contract IAccessManager\",\"name\":\"manager\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/dependencies/AccessManagedProxy.sol\":\"AccessManagedProxy\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x9be2d08a326515805bc9cf6315b7953f8d1ebe88abf48c2d645fb1fa8211a0e2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e750d656e37efaefbb2300051ec2c4c725db266c5ff89bc985f7ecb8d214c4f4\",\"dweb:/ipfs/QmT51FsZes2n2nrLLh3d8YkBYKY43CtwScZxixcLGzL9r6\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x8decfa54cec979c824b044b8128cd91d713f72c71fd7dfa54974624d8c949898\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://271f914261a19d87117a777e0924ada545c16191ef9b00cc40b0134fc14ebc70\",\"dweb:/ipfs/QmdvVNWHGHQrGGPonZJs5NuzTevTjZRM2zayKrDJf7WBA2\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0xc3f2ec76a3de8ed7a7007c46166f5550c72c7709e3fc7e8bb3111a7191cdedbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e73efb4c2ca655882dc237c6b4f234a9bd36d97159d8fcaa837eb01171f726ac\",\"dweb:/ipfs/QmTNnnv7Gu5fs5G1ZMh7Fexp8N4XUs3XrNAngjcxgiss3e\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0xaaa1d17c1129b127a4a401db2fbd72960e2671474be3d08cae71ccdc42f7624c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cb2f27cd3952aa667e198fba0d9b7bcec52fbb12c16f013c25fe6fb52b29cc0e\",\"dweb:/ipfs/QmeuohBFoeyDPZA9JNCTEDz3VBfBD4EABWuWXVhHAuEpKR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa00be322d7db5786750ce0ac7e2f5b633ac30a5ed5fa1ced1e74acfc19acecea\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c84e822f87cbdc4082533b626667b6928715bb2b1e8e7eb96954cebb9e38c8d\",\"dweb:/ipfs/QmZmy9dgxLTerBAQDuuHqbL6EpgRxddqgv5KmwpXYVbKz1\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x36776530f012618bc7526ceb28e77b85e582cb12d9b9466a71d4bd6bf952e4cc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f867d046908497287d8a67643dd5d7e38c4027af4ab0a74ffbe1d6790c383c6\",\"dweb:/ipfs/QmQ7s9gMP1nkwThFmoDifnGgpUMsMe5q5ZrAxGDsNnRGza\"]},\"contracts/dependencies/AccessManagedProxy.sol\":{\"keccak256\":\"0x406f4c8b0ace277c677d2d95ceba9b63b92597a81db3f894a037fc0c7294cc97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fba6a5a820fbc56ed11c268b5c97ca3bcad3b66aa4d01ab028be91a6ac05623\",\"dweb:/ipfs/QmSiR8VZr5wPwuXddfGV1dM3QKW94nP9ZForWgnpNHnqYC\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/dependencies/IPolicyPool.sol":{"IPolicyPool":{"abi":[{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"currency()":"e5a6b10f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Minimalistic version of the IPolicyPool interface, just the methods needed for this project\",\"kind\":\"dev\",\"methods\":{\"currency()\":{\"details\":\"Reference to the main currency (ERC20) used in the protocol\",\"returns\":{\"_0\":\"The address of the currency (e.g. USDC) token used in the protocol\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/dependencies/IPolicyPool.sol\":\"IPolicyPool\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"contracts/dependencies/IPolicyPool.sol\":{\"keccak256\":\"0x2cd6afa72791cac7be2cd930ebadec4e906207076960778e59a1160f66a91a0e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe5b8ee24484498806a9b5034ba0b7c33668bb1f52fbb72fc5831b2e71836a86\",\"dweb:/ipfs/QmUmxGeCGZWp1zWFLYGrjychqxzCrLY18MhRkKvviVa3BE\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}}}}}